Compare commits

..

No commits in common. "83abb95f17a832356045b974003f307c0afb7d58" and "5adeaa0dc73efe868af7c40279267063fc06abea" have entirely different histories.

4 changed files with 4 additions and 3 deletions

View File

@ -29,6 +29,7 @@
"react-dom": "^19.1.0",
"react-hook-form": "^7.58.1",
"react-i18next": "^15.5.1",
"sequelize": "^6.37.5",
"zod": "^4.1.11"
},
"devDependencies": {

View File

@ -10,9 +10,7 @@ const CustomersLayout = lazy(() =>
const CustomersList = lazy(() => import("./pages").then((m) => ({ default: m.CustomersListPage })));
const CustomerView = lazy(() => import("./pages").then((m) => ({ default: m.CustomerViewPage })));
const CustomerAdd = lazy(() => import("./pages").then((m) => ({ default: m.CustomerCreatePage })));
const CustomerUpdate = lazy(() =>
import("./pages").then((m) => ({ default: m.CustomerUpdatePage }))
);
const CustomerUpdate = lazy(() => import("./pages").then((m) => ({ default: m.CustomerUpdatePage })));
export const CustomerRoutes = (params: ModuleClientParams): RouteObject[] => {
return [

View File

@ -13,6 +13,7 @@
"./api": "./src/api/index.ts"
},
"peerDependencies": {
"sequelize": "^6.37.5",
"express": "^4.18.2",
"zod": "^4.1.11"
},

View File

@ -14,6 +14,7 @@
"./common": "./src/common/index.ts"
},
"peerDependencies": {
"sequelize": "^6.37.5",
"express": "^4.18.2",
"zod": "^4.1.11"
},