storemw-core-api 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app.d.ts +2 -0
- package/dist/app.js +46 -0
- package/dist/configs/config.d.ts +7 -0
- package/dist/configs/config.js +30 -0
- package/dist/configs/index.d.ts +1 -0
- package/dist/configs/index.js +5 -0
- package/dist/configs/production.env +6 -0
- package/dist/controllers/auth/authController.d.ts +3 -0
- package/dist/controllers/auth/authController.js +53 -0
- package/dist/controllers/index.d.ts +6 -0
- package/dist/controllers/index.js +39 -0
- package/dist/controllers/injection_field/injectionFieldController.d.ts +11 -0
- package/dist/controllers/injection_field/injectionFieldController.js +183 -0
- package/dist/controllers/item/itemController.d.ts +13 -0
- package/dist/controllers/item/itemController.js +344 -0
- package/dist/controllers/location/locationController.d.ts +13 -0
- package/dist/controllers/location/locationController.js +383 -0
- package/dist/controllers/region/regionController.d.ts +13 -0
- package/dist/controllers/region/regionController.js +328 -0
- package/dist/controllers/user/userController.d.ts +13 -0
- package/dist/controllers/user/userController.js +474 -0
- package/dist/generated/generated/prisma/client.d.ts +1 -0
- package/dist/generated/generated/prisma/client.js +4 -0
- package/dist/generated/generated/prisma/default.d.ts +1 -0
- package/dist/generated/generated/prisma/default.js +4 -0
- package/dist/generated/generated/prisma/edge.d.ts +1 -0
- package/dist/generated/generated/prisma/edge.js +2470 -0
- package/dist/generated/generated/prisma/index-browser.js +2456 -0
- package/dist/generated/generated/prisma/index.d.ts +198861 -0
- package/dist/generated/generated/prisma/index.js +2491 -0
- package/dist/generated/generated/prisma/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/generated/generated/prisma/package.json +183 -0
- package/dist/generated/generated/prisma/query_engine_bg.js +2 -0
- package/dist/generated/generated/prisma/query_engine_bg.wasm +0 -0
- package/dist/generated/generated/prisma/runtime/edge-esm.js +34 -0
- package/dist/generated/generated/prisma/runtime/edge.js +34 -0
- package/dist/generated/generated/prisma/runtime/index-browser.d.ts +370 -0
- package/dist/generated/generated/prisma/runtime/index-browser.js +16 -0
- package/dist/generated/generated/prisma/runtime/library.d.ts +3976 -0
- package/dist/generated/generated/prisma/runtime/library.js +146 -0
- package/dist/generated/generated/prisma/runtime/react-native.js +83 -0
- package/dist/generated/generated/prisma/runtime/wasm-compiler-edge.js +84 -0
- package/dist/generated/generated/prisma/runtime/wasm-engine-edge.js +36 -0
- package/dist/generated/generated/prisma/schema.prisma +2663 -0
- package/dist/generated/generated/prisma/wasm-edge-light-loader.mjs +4 -0
- package/dist/generated/generated/prisma/wasm-worker-loader.mjs +4 -0
- package/dist/generated/generated/prisma/wasm.d.ts +1 -0
- package/dist/generated/generated/prisma/wasm.js +2477 -0
- package/dist/generated/prisma/client.d.ts +1 -0
- package/dist/generated/prisma/client.js +4 -0
- package/dist/generated/prisma/default.d.ts +1 -0
- package/dist/generated/prisma/default.js +4 -0
- package/dist/generated/prisma/edge.d.ts +1 -0
- package/dist/generated/prisma/edge.js +2467 -0
- package/dist/generated/prisma/index-browser.js +2453 -0
- package/dist/generated/prisma/index.d.ts +185588 -0
- package/dist/generated/prisma/index.js +2488 -0
- package/dist/generated/prisma/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/generated/prisma/package.json +183 -0
- package/dist/generated/prisma/query_engine_bg.js +2 -0
- package/dist/generated/prisma/query_engine_bg.wasm +0 -0
- package/dist/generated/prisma/runtime/edge-esm.js +34 -0
- package/dist/generated/prisma/runtime/edge.js +34 -0
- package/dist/generated/prisma/runtime/index-browser.d.ts +370 -0
- package/dist/generated/prisma/runtime/index-browser.js +16 -0
- package/dist/generated/prisma/runtime/library.d.ts +3976 -0
- package/dist/generated/prisma/runtime/library.js +146 -0
- package/dist/generated/prisma/runtime/react-native.js +83 -0
- package/dist/generated/prisma/runtime/wasm-compiler-edge.js +84 -0
- package/dist/generated/prisma/runtime/wasm-engine-edge.js +36 -0
- package/dist/generated/prisma/schema.prisma +2597 -0
- package/dist/generated/prisma/wasm-edge-light-loader.mjs +4 -0
- package/dist/generated/prisma/wasm-worker-loader.mjs +4 -0
- package/dist/generated/prisma/wasm.d.ts +1 -0
- package/dist/generated/prisma/wasm.js +2474 -0
- package/dist/helpers/index.d.ts +1 -0
- package/dist/helpers/index.js +5 -0
- package/dist/helpers/prismaHelper.d.ts +2 -0
- package/dist/helpers/prismaHelper.js +75 -0
- package/dist/helpers/unuse/queryHelper.d.ts +19 -0
- package/dist/helpers/unuse/queryHelper.js +60 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +13 -0
- package/dist/lib/prisma.d.ts +13 -0
- package/dist/lib/prisma.js +32 -0
- package/dist/middlewares/request/index.d.ts +3 -0
- package/dist/middlewares/request/index.js +12 -0
- package/dist/middlewares/request/initialPrisma.d.ts +2 -0
- package/dist/middlewares/request/initialPrisma.js +10 -0
- package/dist/middlewares/request/validateAuthorization.d.ts +2 -0
- package/dist/middlewares/request/validateAuthorization.js +40 -0
- package/dist/middlewares/request/validateCors.d.ts +6 -0
- package/dist/middlewares/request/validateCors.js +20 -0
- package/dist/middlewares/request/validateHeader.d.ts +2 -0
- package/dist/middlewares/request/validateHeader.js +49 -0
- package/dist/middlewares/request/validateSignature.d.ts +10 -0
- package/dist/middlewares/request/validateSignature.js +48 -0
- package/dist/middlewares/route/index.d.ts +6 -0
- package/dist/middlewares/route/index.js +33 -0
- package/dist/middlewares/route/validateAuth.d.ts +2 -0
- package/dist/middlewares/route/validateAuth.js +8 -0
- package/dist/middlewares/route/validateDocument.d.ts +2 -0
- package/dist/middlewares/route/validateDocument.js +33 -0
- package/dist/middlewares/route/validateInjectionField.d.ts +3 -0
- package/dist/middlewares/route/validateInjectionField.js +38 -0
- package/dist/middlewares/route/validateItem.d.ts +6 -0
- package/dist/middlewares/route/validateItem.js +23 -0
- package/dist/middlewares/route/validateLocation.d.ts +6 -0
- package/dist/middlewares/route/validateLocation.js +22 -0
- package/dist/middlewares/route/validateRegion.d.ts +5 -0
- package/dist/middlewares/route/validateRegion.js +39 -0
- package/dist/middlewares/route/validateRepository.d.ts +2 -0
- package/dist/middlewares/route/validateRepository.js +33 -0
- package/dist/middlewares/route/validateUser.d.ts +6 -0
- package/dist/middlewares/route/validateUser.js +23 -0
- package/dist/middlewares/unuse/errorHandler.d.ts +2 -0
- package/dist/middlewares/unuse/errorHandler.js +9 -0
- package/dist/models/ModelFactory.d.ts +38 -0
- package/dist/models/ModelFactory.js +137 -0
- package/dist/models/account/AccountModel.d.ts +144 -0
- package/dist/models/account/AccountModel.js +15 -0
- package/dist/models/branch/BranchModel.d.ts +259 -0
- package/dist/models/branch/BranchModel.js +15 -0
- package/dist/models/branch_user/BranchUserModel.d.ts +140 -0
- package/dist/models/branch_user/BranchUserModel.js +15 -0
- package/dist/models/business/BusinessModel.d.ts +214 -0
- package/dist/models/business/BusinessModel.js +15 -0
- package/dist/models/default.d.ts +41 -0
- package/dist/models/default.js +54 -0
- package/dist/models/group/GroupModel.d.ts +158 -0
- package/dist/models/group/GroupModel.js +15 -0
- package/dist/models/group/GroupOwnerModel.d.ts +151 -0
- package/dist/models/group/GroupOwnerModel.js +15 -0
- package/dist/models/index.d.ts +58 -0
- package/dist/models/index.js +91 -0
- package/dist/models/injection_field/DocumentInjectionFieldModel.d.ts +431 -0
- package/dist/models/injection_field/DocumentInjectionFieldModel.js +15 -0
- package/dist/models/injection_field/InjectionFieldModel.d.ts +193 -0
- package/dist/models/injection_field/InjectionFieldModel.js +46 -0
- package/dist/models/injection_field/ItemInjectionFieldModel.d.ts +347 -0
- package/dist/models/injection_field/ItemInjectionFieldModel.js +15 -0
- package/dist/models/injection_field/LogisticInjectionFieldModel.d.ts +158 -0
- package/dist/models/injection_field/LogisticInjectionFieldModel.js +15 -0
- package/dist/models/injection_field/RepositoryInjectionFieldModel.d.ts +193 -0
- package/dist/models/injection_field/RepositoryInjectionFieldModel.js +15 -0
- package/dist/models/injection_field/UserInjectionFieldModel.d.ts +263 -0
- package/dist/models/injection_field/UserInjectionFieldModel.js +15 -0
- package/dist/models/item/BrandModel.d.ts +147 -0
- package/dist/models/item/BrandModel.js +15 -0
- package/dist/models/item/CategoryModel.d.ts +154 -0
- package/dist/models/item/CategoryModel.js +15 -0
- package/dist/models/item/ItemModel.d.ts +294 -0
- package/dist/models/item/ItemModel.js +15 -0
- package/dist/models/item/ProductModel.d.ts +182 -0
- package/dist/models/item/ProductModel.js +15 -0
- package/dist/models/item/UomModel.d.ts +168 -0
- package/dist/models/item/UomModel.js +15 -0
- package/dist/models/location/LocationModel.d.ts +235 -0
- package/dist/models/location/LocationModel.js +15 -0
- package/dist/models/location/LocationRackModel.d.ts +172 -0
- package/dist/models/location/LocationRackModel.js +15 -0
- package/dist/models/location/LocationSlotModel.d.ts +165 -0
- package/dist/models/location/LocationSlotModel.js +15 -0
- package/dist/models/region/AreaModel.d.ts +154 -0
- package/dist/models/region/AreaModel.js +15 -0
- package/dist/models/region/CountryModel.d.ts +154 -0
- package/dist/models/region/CountryModel.js +15 -0
- package/dist/models/region/StateModel.d.ts +147 -0
- package/dist/models/region/StateModel.js +15 -0
- package/dist/models/user/AdministratorModel.d.ts +133 -0
- package/dist/models/user/AdministratorModel.js +15 -0
- package/dist/models/user/CustomerModel.d.ts +196 -0
- package/dist/models/user/CustomerModel.js +15 -0
- package/dist/models/user/UserModel.d.ts +189 -0
- package/dist/models/user/UserModel.js +15 -0
- package/dist/models/user/UserPropModel.d.ts +175 -0
- package/dist/models/user/UserPropModel.js +15 -0
- package/dist/models/user/UserStatusModel.d.ts +154 -0
- package/dist/models/user/UserStatusModel.js +15 -0
- package/dist/models/user/WorkerModel.d.ts +140 -0
- package/dist/models/user/WorkerModel.js +15 -0
- package/dist/models/user/bk_UserModel.d.ts +43 -0
- package/dist/models/user/bk_UserModel.js +79 -0
- package/dist/routes/auth/authRoutes.d.ts +1 -0
- package/dist/routes/auth/authRoutes.js +13 -0
- package/dist/routes/index.d.ts +11 -0
- package/dist/routes/index.js +25 -0
- package/dist/routes/injection_field/injectionFieldRoutes.d.ts +1 -0
- package/dist/routes/injection_field/injectionFieldRoutes.js +22 -0
- package/dist/routes/injection_field/injectionFieldsRoutes.d.ts +1 -0
- package/dist/routes/injection_field/injectionFieldsRoutes.js +15 -0
- package/dist/routes/item/itemRoutes.d.ts +1 -0
- package/dist/routes/item/itemRoutes.js +20 -0
- package/dist/routes/item/itemsRoutes.d.ts +1 -0
- package/dist/routes/item/itemsRoutes.js +15 -0
- package/dist/routes/location/locationRoutes.d.ts +1 -0
- package/dist/routes/location/locationRoutes.js +20 -0
- package/dist/routes/location/locationsRoutes.d.ts +1 -0
- package/dist/routes/location/locationsRoutes.js +25 -0
- package/dist/routes/region/regionRoutes.d.ts +1 -0
- package/dist/routes/region/regionRoutes.js +25 -0
- package/dist/routes/region/regionsRoutes.d.ts +1 -0
- package/dist/routes/region/regionsRoutes.js +33 -0
- package/dist/routes/user/userRoutes.d.ts +1 -0
- package/dist/routes/user/userRoutes.js +19 -0
- package/dist/routes/user/usersRoutes.d.ts +1 -0
- package/dist/routes/user/usersRoutes.js +15 -0
- package/dist/schema/common/index.d.ts +2 -0
- package/dist/schema/common/index.js +9 -0
- package/dist/schema/common/unuse/response.d.ts +54 -0
- package/dist/schema/common/unuse/response.js +22 -0
- package/dist/schema/middleware/request/index.d.ts +2 -0
- package/dist/schema/middleware/request/index.js +6 -0
- package/dist/schema/middleware/request/schemaAuthorization.d.ts +1 -0
- package/dist/schema/middleware/request/schemaAuthorization.js +8 -0
- package/dist/schema/middleware/request/schemaHeader.d.ts +9 -0
- package/dist/schema/middleware/request/schemaHeader.js +10 -0
- package/dist/schema/middleware/request/validateQuery_bk250827.d.ts +27 -0
- package/dist/schema/middleware/request/validateQuery_bk250827.js +62 -0
- package/dist/schema/middleware/route/index.d.ts +13 -0
- package/dist/schema/middleware/route/index.js +17 -0
- package/dist/schema/middleware/route/schemaDocument.d.ts +10 -0
- package/dist/schema/middleware/route/schemaDocument.js +9 -0
- package/dist/schema/middleware/route/schemaItem.d.ts +10 -0
- package/dist/schema/middleware/route/schemaItem.js +9 -0
- package/dist/schema/middleware/route/schemaLocation.d.ts +10 -0
- package/dist/schema/middleware/route/schemaLocation.js +9 -0
- package/dist/schema/middleware/route/schemaQueryList.d.ts +88 -0
- package/dist/schema/middleware/route/schemaQueryList.js +139 -0
- package/dist/schema/middleware/route/schemaRegion.d.ts +10 -0
- package/dist/schema/middleware/route/schemaRegion.js +9 -0
- package/dist/schema/middleware/route/schemaRepository.d.ts +10 -0
- package/dist/schema/middleware/route/schemaRepository.js +9 -0
- package/dist/schema/middleware/route/schemaUser.d.ts +10 -0
- package/dist/schema/middleware/route/schemaUser.js +9 -0
- package/dist/schema/payload/auth/schemaAuthToken.d.ts +43 -0
- package/dist/schema/payload/auth/schemaAuthToken.js +16 -0
- package/dist/schema/payload/index.d.ts +28 -0
- package/dist/schema/payload/index.js +48 -0
- package/dist/schema/payload/injection_field/schemaInjectionField.d.ts +548 -0
- package/dist/schema/payload/injection_field/schemaInjectionField.js +141 -0
- package/dist/schema/payload/item/schemaItem.d.ts +33 -0
- package/dist/schema/payload/item/schemaItem.js +13 -0
- package/dist/schema/payload/item/schemaItemBrand.d.ts +131 -0
- package/dist/schema/payload/item/schemaItemBrand.js +32 -0
- package/dist/schema/payload/item/schemaItemCategory.d.ts +145 -0
- package/dist/schema/payload/item/schemaItemCategory.js +34 -0
- package/dist/schema/payload/item/schemaItemItem.d.ts +244 -0
- package/dist/schema/payload/item/schemaItemItem.js +70 -0
- package/dist/schema/payload/item/schemaItemUom.d.ts +173 -0
- package/dist/schema/payload/item/schemaItemUom.js +38 -0
- package/dist/schema/payload/location/schemaLocationLocation.d.ts +297 -0
- package/dist/schema/payload/location/schemaLocationLocation.js +61 -0
- package/dist/schema/payload/region/schemaRegionArea.d.ts +91 -0
- package/dist/schema/payload/region/schemaRegionArea.js +32 -0
- package/dist/schema/payload/region/schemaRegionCountry.d.ts +62 -0
- package/dist/schema/payload/region/schemaRegionCountry.js +28 -0
- package/dist/schema/payload/region/schemaRegionState.d.ts +127 -0
- package/dist/schema/payload/region/schemaRegionState.js +44 -0
- package/dist/schema/payload/schemaUser.d.ts +101 -0
- package/dist/schema/payload/schemaUser.js +78 -0
- package/dist/schema/payload/user/schemaUser.d.ts +33 -0
- package/dist/schema/payload/user/schemaUser.js +13 -0
- package/dist/schema/payload/user/schemaUserAdministrator.d.ts +244 -0
- package/dist/schema/payload/user/schemaUserAdministrator.js +70 -0
- package/dist/schema/payload/user/schemaUserCustomer.d.ts +389 -0
- package/dist/schema/payload/user/schemaUserCustomer.js +70 -0
- package/dist/schema/payload/user/schemaUserWorker.d.ts +277 -0
- package/dist/schema/payload/user/schemaUserWorker.js +71 -0
- package/dist/services/account/AccountService.d.ts +28 -0
- package/dist/services/account/AccountService.js +152 -0
- package/dist/services/auth/AuthService.d.ts +39 -0
- package/dist/services/auth/AuthService.js +123 -0
- package/dist/services/branch/BranchService.d.ts +32 -0
- package/dist/services/branch/BranchService.js +120 -0
- package/dist/services/branch_user/BranchUserService.d.ts +12 -0
- package/dist/services/branch_user/BranchUserService.js +148 -0
- package/dist/services/index.d.ts +14 -0
- package/dist/services/index.js +21 -0
- package/dist/services/injection_field/DocumentInjectionFieldService.d.ts +135 -0
- package/dist/services/injection_field/DocumentInjectionFieldService.js +79 -0
- package/dist/services/injection_field/InjectionFieldService.d.ts +137 -0
- package/dist/services/injection_field/InjectionFieldService.js +266 -0
- package/dist/services/injection_field/ItemInjectionFieldService.d.ts +92 -0
- package/dist/services/injection_field/ItemInjectionFieldService.js +68 -0
- package/dist/services/injection_field/LogisticInjectionFieldService.d.ts +45 -0
- package/dist/services/injection_field/LogisticInjectionFieldService.js +72 -0
- package/dist/services/injection_field/RepositoryInjectionFieldService.d.ts +61 -0
- package/dist/services/injection_field/RepositoryInjectionFieldService.js +66 -0
- package/dist/services/injection_field/UserInjectionFieldService.d.ts +98 -0
- package/dist/services/injection_field/UserInjectionFieldService.js +79 -0
- package/dist/services/item/ItemBrandService.d.ts +84 -0
- package/dist/services/item/ItemBrandService.js +151 -0
- package/dist/services/item/ItemCategoryService.d.ts +89 -0
- package/dist/services/item/ItemCategoryService.js +234 -0
- package/dist/services/item/ItemItemService.d.ts +141 -0
- package/dist/services/item/ItemItemService.js +263 -0
- package/dist/services/item/ItemProductService.d.ts +146 -0
- package/dist/services/item/ItemProductService.js +284 -0
- package/dist/services/item/ItemService.d.ts +65 -0
- package/dist/services/item/ItemService.js +226 -0
- package/dist/services/item/ItemUomService.d.ts +101 -0
- package/dist/services/item/ItemUomService.js +159 -0
- package/dist/services/location/LocationLocationService.d.ts +144 -0
- package/dist/services/location/LocationLocationService.js +270 -0
- package/dist/services/location/LocationRackService.d.ts +98 -0
- package/dist/services/location/LocationRackService.js +275 -0
- package/dist/services/location/LocationService.d.ts +52 -0
- package/dist/services/location/LocationService.js +152 -0
- package/dist/services/location/LocationSlotService.d.ts +91 -0
- package/dist/services/location/LocationSlotService.js +142 -0
- package/dist/services/region/AreaService.d.ts +87 -0
- package/dist/services/region/AreaService.js +142 -0
- package/dist/services/region/CountryService.d.ts +103 -0
- package/dist/services/region/CountryService.js +155 -0
- package/dist/services/region/RegionService.d.ts +45 -0
- package/dist/services/region/RegionService.js +152 -0
- package/dist/services/region/StateService.d.ts +85 -0
- package/dist/services/region/StateService.js +189 -0
- package/dist/services/supabase/supabaseClient.d.ts +1 -0
- package/dist/services/supabase/supabaseClient.js +8 -0
- package/dist/services/user/AdministratorService.d.ts +73 -0
- package/dist/services/user/AdministratorService.js +263 -0
- package/dist/services/user/CustomerService.d.ts +123 -0
- package/dist/services/user/CustomerService.js +268 -0
- package/dist/services/user/UserPropService.d.ts +40 -0
- package/dist/services/user/UserPropService.js +139 -0
- package/dist/services/user/UserService.d.ts +92 -0
- package/dist/services/user/UserService.js +260 -0
- package/dist/services/user/WorkerService.d.ts +83 -0
- package/dist/services/user/WorkerService.js +227 -0
- package/dist/utils/dateUtils.d.ts +4 -0
- package/dist/utils/dateUtils.js +23 -0
- package/dist/utils/exceptionUtils.d.ts +8 -0
- package/dist/utils/exceptionUtils.js +25 -0
- package/dist/utils/index.d.ts +15 -0
- package/dist/utils/index.js +52 -0
- package/dist/utils/injectionFieldUtils.d.ts +1 -0
- package/dist/utils/injectionFieldUtils.js +22 -0
- package/dist/utils/jwtUtils.d.ts +3 -0
- package/dist/utils/jwtUtils.js +22 -0
- package/dist/utils/logUtils.d.ts +3 -0
- package/dist/utils/logUtils.js +60 -0
- package/dist/utils/queryBuilder.d.ts +74 -0
- package/dist/utils/queryBuilder.js +163 -0
- package/dist/utils/requestUtils.d.ts +3 -0
- package/dist/utils/requestUtils.js +11 -0
- package/dist/utils/responseUtils.d.ts +14 -0
- package/dist/utils/responseUtils.js +42 -0
- package/dist/utils/schemaUtils.d.ts +21 -0
- package/dist/utils/schemaUtils.js +95 -0
- package/dist/utils/serviceUtils.d.ts +12 -0
- package/dist/utils/serviceUtils.js +11 -0
- package/dist/utils/services/storage.d.ts +22 -0
- package/dist/utils/services/storage.js +64 -0
- package/dist/utils/shapeUtils.d.ts +1 -0
- package/dist/utils/shapeUtils.js +36 -0
- package/dist/utils/smwUtils.d.ts +1 -0
- package/dist/utils/smwUtils.js +9 -0
- package/dist/utils/zodUtils.d.ts +6 -0
- package/dist/utils/zodUtils.js +17 -0
- package/package.json +94 -0
|
@@ -0,0 +1,2477 @@
|
|
|
1
|
+
|
|
2
|
+
/* !!! This is code generated by Prisma. Do not edit directly. !!!
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const {
|
|
8
|
+
PrismaClientKnownRequestError,
|
|
9
|
+
PrismaClientUnknownRequestError,
|
|
10
|
+
PrismaClientRustPanicError,
|
|
11
|
+
PrismaClientInitializationError,
|
|
12
|
+
PrismaClientValidationError,
|
|
13
|
+
getPrismaClient,
|
|
14
|
+
sqltag,
|
|
15
|
+
empty,
|
|
16
|
+
join,
|
|
17
|
+
raw,
|
|
18
|
+
skip,
|
|
19
|
+
Decimal,
|
|
20
|
+
Debug,
|
|
21
|
+
objectEnumValues,
|
|
22
|
+
makeStrictEnum,
|
|
23
|
+
Extensions,
|
|
24
|
+
warnOnce,
|
|
25
|
+
defineDmmfProperty,
|
|
26
|
+
Public,
|
|
27
|
+
getRuntime,
|
|
28
|
+
createParam,
|
|
29
|
+
} = require('./runtime/wasm-engine-edge.js')
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
const Prisma = {}
|
|
33
|
+
|
|
34
|
+
exports.Prisma = Prisma
|
|
35
|
+
exports.$Enums = {}
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Prisma Client JS version: 6.16.2
|
|
39
|
+
* Query Engine version: 1c57fdcd7e44b29b9313256c76699e91c3ac3c43
|
|
40
|
+
*/
|
|
41
|
+
Prisma.prismaVersion = {
|
|
42
|
+
client: "6.16.2",
|
|
43
|
+
engine: "1c57fdcd7e44b29b9313256c76699e91c3ac3c43"
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError;
|
|
47
|
+
Prisma.PrismaClientUnknownRequestError = PrismaClientUnknownRequestError
|
|
48
|
+
Prisma.PrismaClientRustPanicError = PrismaClientRustPanicError
|
|
49
|
+
Prisma.PrismaClientInitializationError = PrismaClientInitializationError
|
|
50
|
+
Prisma.PrismaClientValidationError = PrismaClientValidationError
|
|
51
|
+
Prisma.Decimal = Decimal
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Re-export of sql-template-tag
|
|
55
|
+
*/
|
|
56
|
+
Prisma.sql = sqltag
|
|
57
|
+
Prisma.empty = empty
|
|
58
|
+
Prisma.join = join
|
|
59
|
+
Prisma.raw = raw
|
|
60
|
+
Prisma.validator = Public.validator
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Extensions
|
|
64
|
+
*/
|
|
65
|
+
Prisma.getExtensionContext = Extensions.getExtensionContext
|
|
66
|
+
Prisma.defineExtension = Extensions.defineExtension
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Shorthand utilities for JSON filtering
|
|
70
|
+
*/
|
|
71
|
+
Prisma.DbNull = objectEnumValues.instances.DbNull
|
|
72
|
+
Prisma.JsonNull = objectEnumValues.instances.JsonNull
|
|
73
|
+
Prisma.AnyNull = objectEnumValues.instances.AnyNull
|
|
74
|
+
|
|
75
|
+
Prisma.NullTypes = {
|
|
76
|
+
DbNull: objectEnumValues.classes.DbNull,
|
|
77
|
+
JsonNull: objectEnumValues.classes.JsonNull,
|
|
78
|
+
AnyNull: objectEnumValues.classes.AnyNull
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Enums
|
|
87
|
+
*/
|
|
88
|
+
exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
89
|
+
ReadUncommitted: 'ReadUncommitted',
|
|
90
|
+
ReadCommitted: 'ReadCommitted',
|
|
91
|
+
RepeatableRead: 'RepeatableRead',
|
|
92
|
+
Serializable: 'Serializable'
|
|
93
|
+
});
|
|
94
|
+
|
|
95
|
+
exports.Prisma.AccountsScalarFieldEnum = {
|
|
96
|
+
account_id: 'account_id',
|
|
97
|
+
name: 'name',
|
|
98
|
+
createdatetime: 'createdatetime',
|
|
99
|
+
createuserid: 'createuserid',
|
|
100
|
+
updatedatetime: 'updatedatetime',
|
|
101
|
+
updateuserid: 'updateuserid',
|
|
102
|
+
isdelete: 'isdelete',
|
|
103
|
+
istrash: 'istrash',
|
|
104
|
+
accountid: 'accountid',
|
|
105
|
+
business_id: 'business_id'
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
exports.Prisma.AdministratorsScalarFieldEnum = {
|
|
109
|
+
administrator_id: 'administrator_id',
|
|
110
|
+
user_id: 'user_id',
|
|
111
|
+
createdatetime: 'createdatetime',
|
|
112
|
+
createuserid: 'createuserid',
|
|
113
|
+
updatedatetime: 'updatedatetime',
|
|
114
|
+
updateuserid: 'updateuserid',
|
|
115
|
+
isdelete: 'isdelete',
|
|
116
|
+
istrash: 'istrash',
|
|
117
|
+
accountid: 'accountid'
|
|
118
|
+
};
|
|
119
|
+
|
|
120
|
+
exports.Prisma.BusinessesScalarFieldEnum = {
|
|
121
|
+
business_id: 'business_id',
|
|
122
|
+
company_name: 'company_name',
|
|
123
|
+
id_number: 'id_number',
|
|
124
|
+
website: 'website',
|
|
125
|
+
email: 'email',
|
|
126
|
+
company_contact: 'company_contact',
|
|
127
|
+
address_1: 'address_1',
|
|
128
|
+
address_2: 'address_2',
|
|
129
|
+
state_id: 'state_id',
|
|
130
|
+
area_id: 'area_id',
|
|
131
|
+
country_id: 'country_id',
|
|
132
|
+
postcode: 'postcode',
|
|
133
|
+
status: 'status',
|
|
134
|
+
createdatetime: 'createdatetime',
|
|
135
|
+
createuserid: 'createuserid',
|
|
136
|
+
updatedatetime: 'updatedatetime',
|
|
137
|
+
updateuserid: 'updateuserid',
|
|
138
|
+
isdelete: 'isdelete',
|
|
139
|
+
istrash: 'istrash',
|
|
140
|
+
accountid: 'accountid'
|
|
141
|
+
};
|
|
142
|
+
|
|
143
|
+
exports.Prisma.Cl_a_testScalarFieldEnum = {
|
|
144
|
+
id: 'id',
|
|
145
|
+
value_1: 'value_1',
|
|
146
|
+
value_2: 'value_2',
|
|
147
|
+
value_3: 'value_3'
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
exports.Prisma.Cl_account_propsScalarFieldEnum = {
|
|
151
|
+
account_props_id: 'account_props_id',
|
|
152
|
+
account_id: 'account_id',
|
|
153
|
+
type: 'type',
|
|
154
|
+
props_value_type: 'props_value_type',
|
|
155
|
+
props_value: 'props_value',
|
|
156
|
+
props_id: 'props_id',
|
|
157
|
+
props_numeric: 'props_numeric',
|
|
158
|
+
props_timestamp: 'props_timestamp',
|
|
159
|
+
is_multiple: 'is_multiple',
|
|
160
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
161
|
+
ax_createuserid: 'ax_createuserid',
|
|
162
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
163
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
164
|
+
ax_isdelete: 'ax_isdelete',
|
|
165
|
+
ax_istrash: 'ax_istrash',
|
|
166
|
+
ax_accountid: 'ax_accountid'
|
|
167
|
+
};
|
|
168
|
+
|
|
169
|
+
exports.Prisma.Cl_audit_item_uidsScalarFieldEnum = {
|
|
170
|
+
audit_uid_id: 'audit_uid_id',
|
|
171
|
+
item_uid_id: 'item_uid_id',
|
|
172
|
+
slot_id: 'slot_id',
|
|
173
|
+
move_type: 'move_type',
|
|
174
|
+
is_latest_move: 'is_latest_move',
|
|
175
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
176
|
+
ax_createuserid: 'ax_createuserid',
|
|
177
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
178
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
179
|
+
ax_isdelete: 'ax_isdelete',
|
|
180
|
+
ax_istrash: 'ax_istrash',
|
|
181
|
+
ax_accountid: 'ax_accountid',
|
|
182
|
+
move_document_item_id: 'move_document_item_id',
|
|
183
|
+
qty: 'qty',
|
|
184
|
+
move_document_id: 'move_document_id',
|
|
185
|
+
move_document_doc_id: 'move_document_doc_id',
|
|
186
|
+
item_id: 'item_id',
|
|
187
|
+
location_id: 'location_id',
|
|
188
|
+
rack_id: 'rack_id',
|
|
189
|
+
balance_qty: 'balance_qty'
|
|
190
|
+
};
|
|
191
|
+
|
|
192
|
+
exports.Prisma.Cl_audit_trail_propsScalarFieldEnum = {
|
|
193
|
+
audit_trail_props_id: 'audit_trail_props_id',
|
|
194
|
+
audit_trail_id: 'audit_trail_id',
|
|
195
|
+
type: 'type',
|
|
196
|
+
props_value: 'props_value',
|
|
197
|
+
props_id: 'props_id',
|
|
198
|
+
props_numeric: 'props_numeric',
|
|
199
|
+
props_timestamp: 'props_timestamp',
|
|
200
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
201
|
+
ax_createuserid: 'ax_createuserid',
|
|
202
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
203
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
204
|
+
ax_isdelete: 'ax_isdelete',
|
|
205
|
+
ax_istrash: 'ax_istrash',
|
|
206
|
+
ax_accountid: 'ax_accountid'
|
|
207
|
+
};
|
|
208
|
+
|
|
209
|
+
exports.Prisma.Cl_audit_trail_tagsScalarFieldEnum = {
|
|
210
|
+
audit_trail_tag_id: 'audit_trail_tag_id',
|
|
211
|
+
audit_trail_id: 'audit_trail_id',
|
|
212
|
+
tag_key: 'tag_key',
|
|
213
|
+
tag_value: 'tag_value',
|
|
214
|
+
tag_label: 'tag_label',
|
|
215
|
+
tag_description: 'tag_description',
|
|
216
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
217
|
+
ax_createuserid: 'ax_createuserid',
|
|
218
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
219
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
220
|
+
ax_isdelete: 'ax_isdelete',
|
|
221
|
+
ax_istrash: 'ax_istrash',
|
|
222
|
+
ax_accountid: 'ax_accountid'
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
exports.Prisma.Cl_audit_trailsScalarFieldEnum = {
|
|
226
|
+
audit_trail_id: 'audit_trail_id',
|
|
227
|
+
target: 'target',
|
|
228
|
+
module: 'module',
|
|
229
|
+
trail_ref: 'trail_ref',
|
|
230
|
+
type: 'type',
|
|
231
|
+
description: 'description',
|
|
232
|
+
refer_id: 'refer_id',
|
|
233
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
234
|
+
ax_createuserid: 'ax_createuserid',
|
|
235
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
236
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
237
|
+
ax_isdelete: 'ax_isdelete',
|
|
238
|
+
ax_istrash: 'ax_istrash',
|
|
239
|
+
ax_accountid: 'ax_accountid'
|
|
240
|
+
};
|
|
241
|
+
|
|
242
|
+
exports.Prisma.Cl_branch_propsScalarFieldEnum = {
|
|
243
|
+
branch_props_id: 'branch_props_id',
|
|
244
|
+
branch_id: 'branch_id',
|
|
245
|
+
type: 'type',
|
|
246
|
+
props_value: 'props_value',
|
|
247
|
+
props_id: 'props_id',
|
|
248
|
+
props_numeric: 'props_numeric',
|
|
249
|
+
props_timestamp: 'props_timestamp',
|
|
250
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
251
|
+
ax_createuserid: 'ax_createuserid',
|
|
252
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
253
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
254
|
+
ax_isdelete: 'ax_isdelete',
|
|
255
|
+
ax_istrash: 'ax_istrash',
|
|
256
|
+
ax_accountid: 'ax_accountid'
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
exports.Prisma.Cl_countersScalarFieldEnum = {
|
|
260
|
+
counter_id: 'counter_id',
|
|
261
|
+
counter_module: 'counter_module',
|
|
262
|
+
module_type: 'module_type',
|
|
263
|
+
increment_no: 'increment_no',
|
|
264
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
265
|
+
ax_createuserid: 'ax_createuserid',
|
|
266
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
267
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
268
|
+
ax_isdelete: 'ax_isdelete',
|
|
269
|
+
ax_istrash: 'ax_istrash',
|
|
270
|
+
ax_accountid: 'ax_accountid',
|
|
271
|
+
year_lbl: 'year_lbl',
|
|
272
|
+
month_lbl: 'month_lbl'
|
|
273
|
+
};
|
|
274
|
+
|
|
275
|
+
exports.Prisma.Cl_custom_field_optionsScalarFieldEnum = {
|
|
276
|
+
custom_field_option_id: 'custom_field_option_id',
|
|
277
|
+
custom_field_id: 'custom_field_id',
|
|
278
|
+
option_key: 'option_key',
|
|
279
|
+
option_value: 'option_value',
|
|
280
|
+
option_name: 'option_name',
|
|
281
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
282
|
+
ax_createuserid: 'ax_createuserid',
|
|
283
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
284
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
285
|
+
ax_isdelete: 'ax_isdelete',
|
|
286
|
+
ax_istrash: 'ax_istrash',
|
|
287
|
+
ax_accountid: 'ax_accountid'
|
|
288
|
+
};
|
|
289
|
+
|
|
290
|
+
exports.Prisma.Cl_custom_field_rulesScalarFieldEnum = {
|
|
291
|
+
custom_field_rule_id: 'custom_field_rule_id',
|
|
292
|
+
custom_field_id: 'custom_field_id',
|
|
293
|
+
rule_key: 'rule_key',
|
|
294
|
+
rule_value: 'rule_value',
|
|
295
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
296
|
+
ax_createuserid: 'ax_createuserid',
|
|
297
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
298
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
299
|
+
ax_isdelete: 'ax_isdelete',
|
|
300
|
+
ax_istrash: 'ax_istrash',
|
|
301
|
+
ax_accountid: 'ax_accountid'
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
exports.Prisma.Cl_custom_fieldsScalarFieldEnum = {
|
|
305
|
+
custom_field_id: 'custom_field_id',
|
|
306
|
+
field_key: 'field_key',
|
|
307
|
+
field_module: 'field_module',
|
|
308
|
+
module_function: 'module_function',
|
|
309
|
+
field_name: 'field_name',
|
|
310
|
+
field_label: 'field_label',
|
|
311
|
+
field_type: 'field_type',
|
|
312
|
+
field_description: 'field_description',
|
|
313
|
+
default_value: 'default_value',
|
|
314
|
+
status: 'status',
|
|
315
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
316
|
+
ax_createuserid: 'ax_createuserid',
|
|
317
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
318
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
319
|
+
ax_isdelete: 'ax_isdelete',
|
|
320
|
+
ax_istrash: 'ax_istrash',
|
|
321
|
+
ax_accountid: 'ax_accountid'
|
|
322
|
+
};
|
|
323
|
+
|
|
324
|
+
exports.Prisma.Cl_doc_numbersScalarFieldEnum = {
|
|
325
|
+
doc_number_id: 'doc_number_id',
|
|
326
|
+
year_lbl: 'year_lbl',
|
|
327
|
+
month_lbl: 'month_lbl',
|
|
328
|
+
increment_no: 'increment_no',
|
|
329
|
+
type: 'type',
|
|
330
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
331
|
+
ax_createuserid: 'ax_createuserid',
|
|
332
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
333
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
334
|
+
ax_isdelete: 'ax_isdelete',
|
|
335
|
+
ax_istrash: 'ax_istrash',
|
|
336
|
+
ax_accountid: 'ax_accountid'
|
|
337
|
+
};
|
|
338
|
+
|
|
339
|
+
exports.Prisma.Cl_document_adjustmentsScalarFieldEnum = {
|
|
340
|
+
document_adjustment_id: 'document_adjustment_id',
|
|
341
|
+
adjustment_module: 'adjustment_module',
|
|
342
|
+
adjustment_ref: 'adjustment_ref',
|
|
343
|
+
adjustment_type: 'adjustment_type',
|
|
344
|
+
adjustment_action: 'adjustment_action',
|
|
345
|
+
target_id: 'target_id',
|
|
346
|
+
refer_id: 'refer_id',
|
|
347
|
+
adjustment_description: 'adjustment_description',
|
|
348
|
+
adjustment_amount: 'adjustment_amount',
|
|
349
|
+
adjustment_percentage: 'adjustment_percentage',
|
|
350
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
351
|
+
ax_createuserid: 'ax_createuserid',
|
|
352
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
353
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
354
|
+
ax_isdelete: 'ax_isdelete',
|
|
355
|
+
ax_istrash: 'ax_istrash',
|
|
356
|
+
ax_accountid: 'ax_accountid'
|
|
357
|
+
};
|
|
358
|
+
|
|
359
|
+
exports.Prisma.Cl_document_amountsScalarFieldEnum = {
|
|
360
|
+
document_amount_id: 'document_amount_id',
|
|
361
|
+
document_id: 'document_id',
|
|
362
|
+
type: 'type',
|
|
363
|
+
display_name: 'display_name',
|
|
364
|
+
description: 'description',
|
|
365
|
+
amount: 'amount',
|
|
366
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
367
|
+
ax_createuserid: 'ax_createuserid',
|
|
368
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
369
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
370
|
+
ax_isdelete: 'ax_isdelete',
|
|
371
|
+
ax_istrash: 'ax_istrash',
|
|
372
|
+
ax_accountid: 'ax_accountid'
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
exports.Prisma.Cl_document_dependenciesScalarFieldEnum = {
|
|
376
|
+
document_dependency_id: 'document_dependency_id',
|
|
377
|
+
document_id: 'document_id',
|
|
378
|
+
document_item_id: 'document_item_id',
|
|
379
|
+
document_doc_id: 'document_doc_id',
|
|
380
|
+
module: 'module',
|
|
381
|
+
target: 'target',
|
|
382
|
+
type: 'type',
|
|
383
|
+
target_id: 'target_id',
|
|
384
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
385
|
+
ax_createuserid: 'ax_createuserid',
|
|
386
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
387
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
388
|
+
ax_isdelete: 'ax_isdelete',
|
|
389
|
+
ax_istrash: 'ax_istrash',
|
|
390
|
+
ax_accountid: 'ax_accountid',
|
|
391
|
+
dependency_ref: 'dependency_ref'
|
|
392
|
+
};
|
|
393
|
+
|
|
394
|
+
exports.Prisma.Cl_document_docsScalarFieldEnum = {
|
|
395
|
+
document_doc_id: 'document_doc_id',
|
|
396
|
+
document_id: 'document_id',
|
|
397
|
+
doc_id: 'doc_id',
|
|
398
|
+
doc_number: 'doc_number',
|
|
399
|
+
doc_date: 'doc_date',
|
|
400
|
+
doc_type: 'doc_type',
|
|
401
|
+
doc_remark: 'doc_remark',
|
|
402
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
403
|
+
ax_createuserid: 'ax_createuserid',
|
|
404
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
405
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
406
|
+
ax_isdelete: 'ax_isdelete',
|
|
407
|
+
ax_istrash: 'ax_istrash',
|
|
408
|
+
ax_accountid: 'ax_accountid'
|
|
409
|
+
};
|
|
410
|
+
|
|
411
|
+
exports.Prisma.Cl_document_injection_field_itemsScalarFieldEnum = {
|
|
412
|
+
document_injection_field_item_id: 'document_injection_field_item_id',
|
|
413
|
+
document_injection_field_id: 'document_injection_field_id',
|
|
414
|
+
field_name: 'field_name',
|
|
415
|
+
field_value: 'field_value',
|
|
416
|
+
field_id: 'field_id',
|
|
417
|
+
field_text: 'field_text',
|
|
418
|
+
field_numeric: 'field_numeric',
|
|
419
|
+
field_timestamp: 'field_timestamp',
|
|
420
|
+
field_date: 'field_date',
|
|
421
|
+
field_date_time: 'field_date_time',
|
|
422
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
423
|
+
ax_createuserid: 'ax_createuserid',
|
|
424
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
425
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
426
|
+
ax_isdelete: 'ax_isdelete',
|
|
427
|
+
ax_istrash: 'ax_istrash',
|
|
428
|
+
ax_accountid: 'ax_accountid'
|
|
429
|
+
};
|
|
430
|
+
|
|
431
|
+
exports.Prisma.Cl_document_injection_propsScalarFieldEnum = {
|
|
432
|
+
document_injection_props_id: 'document_injection_props_id',
|
|
433
|
+
props_module: 'props_module',
|
|
434
|
+
props_ref: 'props_ref',
|
|
435
|
+
is_multiple: 'is_multiple',
|
|
436
|
+
document_id: 'document_id',
|
|
437
|
+
document_item_id: 'document_item_id',
|
|
438
|
+
document_doc_id: 'document_doc_id',
|
|
439
|
+
type: 'type',
|
|
440
|
+
props_field: 'props_field',
|
|
441
|
+
props_value: 'props_value',
|
|
442
|
+
props_id: 'props_id',
|
|
443
|
+
props_text: 'props_text',
|
|
444
|
+
props_numeric: 'props_numeric',
|
|
445
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
446
|
+
ax_createuserid: 'ax_createuserid',
|
|
447
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
448
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
449
|
+
ax_isdelete: 'ax_isdelete',
|
|
450
|
+
ax_istrash: 'ax_istrash',
|
|
451
|
+
ax_accountid: 'ax_accountid',
|
|
452
|
+
props_date: 'props_date',
|
|
453
|
+
props_date_time: 'props_date_time',
|
|
454
|
+
props_timestamp: 'props_timestamp',
|
|
455
|
+
props_integer: 'props_integer',
|
|
456
|
+
has_multiple_inline: 'has_multiple_inline'
|
|
457
|
+
};
|
|
458
|
+
|
|
459
|
+
exports.Prisma.Cl_document_itemsScalarFieldEnum = {
|
|
460
|
+
document_item_id: 'document_item_id',
|
|
461
|
+
document_id: 'document_id',
|
|
462
|
+
item_id: 'item_id',
|
|
463
|
+
item_name: 'item_name',
|
|
464
|
+
code: 'code',
|
|
465
|
+
description: 'description',
|
|
466
|
+
unit_amount: 'unit_amount',
|
|
467
|
+
quantity: 'quantity',
|
|
468
|
+
total_amount: 'total_amount',
|
|
469
|
+
uom: 'uom',
|
|
470
|
+
uom_id: 'uom_id',
|
|
471
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
472
|
+
ax_createuserid: 'ax_createuserid',
|
|
473
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
474
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
475
|
+
ax_isdelete: 'ax_isdelete',
|
|
476
|
+
ax_istrash: 'ax_istrash',
|
|
477
|
+
ax_accountid: 'ax_accountid',
|
|
478
|
+
document_doc_id: 'document_doc_id'
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
exports.Prisma.Cl_document_paymentsScalarFieldEnum = {
|
|
482
|
+
document_payment_id: 'document_payment_id',
|
|
483
|
+
payment_type: 'payment_type',
|
|
484
|
+
payment_date: 'payment_date',
|
|
485
|
+
payment_amount: 'payment_amount',
|
|
486
|
+
receive_amount: 'receive_amount',
|
|
487
|
+
document_id: 'document_id',
|
|
488
|
+
type: 'type',
|
|
489
|
+
payment_action: 'payment_action',
|
|
490
|
+
bank_name: 'bank_name',
|
|
491
|
+
bank_account_name: 'bank_account_name',
|
|
492
|
+
bank_account_no: 'bank_account_no',
|
|
493
|
+
payment_reference: 'payment_reference',
|
|
494
|
+
payment_post_date: 'payment_post_date',
|
|
495
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
496
|
+
ax_createuserid: 'ax_createuserid',
|
|
497
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
498
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
499
|
+
ax_isdelete: 'ax_isdelete',
|
|
500
|
+
ax_istrash: 'ax_istrash',
|
|
501
|
+
ax_accountid: 'ax_accountid'
|
|
502
|
+
};
|
|
503
|
+
|
|
504
|
+
exports.Prisma.Cl_document_profilesScalarFieldEnum = {
|
|
505
|
+
document_profile_id: 'document_profile_id',
|
|
506
|
+
user_id: 'user_id',
|
|
507
|
+
document_id: 'document_id',
|
|
508
|
+
type: 'type',
|
|
509
|
+
code: 'code',
|
|
510
|
+
profile_name: 'profile_name',
|
|
511
|
+
address_1: 'address_1',
|
|
512
|
+
address_2: 'address_2',
|
|
513
|
+
state_id: 'state_id',
|
|
514
|
+
postcode: 'postcode',
|
|
515
|
+
area: 'area',
|
|
516
|
+
country_id: 'country_id',
|
|
517
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
518
|
+
ax_createuserid: 'ax_createuserid',
|
|
519
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
520
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
521
|
+
ax_isdelete: 'ax_isdelete',
|
|
522
|
+
ax_istrash: 'ax_istrash',
|
|
523
|
+
ax_accountid: 'ax_accountid',
|
|
524
|
+
user_branch_id: 'user_branch_id',
|
|
525
|
+
area_id: 'area_id',
|
|
526
|
+
contact: 'contact',
|
|
527
|
+
email: 'email',
|
|
528
|
+
name: 'name'
|
|
529
|
+
};
|
|
530
|
+
|
|
531
|
+
exports.Prisma.Cl_document_propsScalarFieldEnum = {
|
|
532
|
+
document_props_id: 'document_props_id',
|
|
533
|
+
document_id: 'document_id',
|
|
534
|
+
document_item_id: 'document_item_id',
|
|
535
|
+
type: 'type',
|
|
536
|
+
props_value: 'props_value',
|
|
537
|
+
props_id: 'props_id',
|
|
538
|
+
props_numeric: 'props_numeric',
|
|
539
|
+
props_timestamp: 'props_timestamp',
|
|
540
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
541
|
+
ax_createuserid: 'ax_createuserid',
|
|
542
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
543
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
544
|
+
ax_isdelete: 'ax_isdelete',
|
|
545
|
+
ax_istrash: 'ax_istrash',
|
|
546
|
+
ax_accountid: 'ax_accountid',
|
|
547
|
+
document_doc_id: 'document_doc_id',
|
|
548
|
+
props_text: 'props_text',
|
|
549
|
+
props_integer: 'props_integer'
|
|
550
|
+
};
|
|
551
|
+
|
|
552
|
+
exports.Prisma.Cl_document_statusScalarFieldEnum = {
|
|
553
|
+
document_status_id: 'document_status_id',
|
|
554
|
+
document_id: 'document_id',
|
|
555
|
+
type: 'type',
|
|
556
|
+
status: 'status',
|
|
557
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
558
|
+
ax_createuserid: 'ax_createuserid',
|
|
559
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
560
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
561
|
+
ax_isdelete: 'ax_isdelete',
|
|
562
|
+
ax_istrash: 'ax_istrash',
|
|
563
|
+
ax_accountid: 'ax_accountid',
|
|
564
|
+
document_item_id: 'document_item_id',
|
|
565
|
+
document_doc_id: 'document_doc_id'
|
|
566
|
+
};
|
|
567
|
+
|
|
568
|
+
exports.Prisma.Cl_documentsScalarFieldEnum = {
|
|
569
|
+
document_id: 'document_id',
|
|
570
|
+
doc_number: 'doc_number',
|
|
571
|
+
doc_date: 'doc_date',
|
|
572
|
+
doc_type: 'doc_type',
|
|
573
|
+
doc_remark: 'doc_remark',
|
|
574
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
575
|
+
ax_createuserid: 'ax_createuserid',
|
|
576
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
577
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
578
|
+
ax_isdelete: 'ax_isdelete',
|
|
579
|
+
ax_istrash: 'ax_istrash',
|
|
580
|
+
ax_accountid: 'ax_accountid',
|
|
581
|
+
doc_reference1_id: 'doc_reference1_id',
|
|
582
|
+
doc_reference1_label: 'doc_reference1_label',
|
|
583
|
+
doc_reference2_id: 'doc_reference2_id',
|
|
584
|
+
doc_reference2_label: 'doc_reference2_label'
|
|
585
|
+
};
|
|
586
|
+
|
|
587
|
+
exports.Prisma.Cl_driversScalarFieldEnum = {
|
|
588
|
+
driver_id: 'driver_id',
|
|
589
|
+
user_id: 'user_id',
|
|
590
|
+
company_name: 'company_name',
|
|
591
|
+
remark: 'remark',
|
|
592
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
593
|
+
ax_createuserid: 'ax_createuserid',
|
|
594
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
595
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
596
|
+
ax_isdelete: 'ax_isdelete',
|
|
597
|
+
ax_istrash: 'ax_istrash',
|
|
598
|
+
ax_accountid: 'ax_accountid'
|
|
599
|
+
};
|
|
600
|
+
|
|
601
|
+
exports.Prisma.Cl_filesScalarFieldEnum = {
|
|
602
|
+
file_id: 'file_id',
|
|
603
|
+
target: 'target',
|
|
604
|
+
module: 'module',
|
|
605
|
+
file_ref: 'file_ref',
|
|
606
|
+
type: 'type',
|
|
607
|
+
action: 'action',
|
|
608
|
+
tag: 'tag',
|
|
609
|
+
description: 'description',
|
|
610
|
+
folder_path: 'folder_path',
|
|
611
|
+
folder_url: 'folder_url',
|
|
612
|
+
name: 'name',
|
|
613
|
+
actual_name: 'actual_name',
|
|
614
|
+
refer_id: 'refer_id',
|
|
615
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
616
|
+
ax_createuserid: 'ax_createuserid',
|
|
617
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
618
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
619
|
+
ax_isdelete: 'ax_isdelete',
|
|
620
|
+
ax_istrash: 'ax_istrash',
|
|
621
|
+
ax_accountid: 'ax_accountid'
|
|
622
|
+
};
|
|
623
|
+
|
|
624
|
+
exports.Prisma.Cl_files2ScalarFieldEnum = {
|
|
625
|
+
file_id: 'file_id',
|
|
626
|
+
target: 'target',
|
|
627
|
+
action: 'action',
|
|
628
|
+
tag: 'tag',
|
|
629
|
+
description: 'description',
|
|
630
|
+
folder_path: 'folder_path',
|
|
631
|
+
folder_url: 'folder_url',
|
|
632
|
+
name: 'name',
|
|
633
|
+
refer_id: 'refer_id',
|
|
634
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
635
|
+
ax_createuserid: 'ax_createuserid',
|
|
636
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
637
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
638
|
+
ax_isdelete: 'ax_isdelete',
|
|
639
|
+
ax_istrash: 'ax_istrash',
|
|
640
|
+
ax_accountid: 'ax_accountid',
|
|
641
|
+
type: 'type',
|
|
642
|
+
actual_name: 'actual_name'
|
|
643
|
+
};
|
|
644
|
+
|
|
645
|
+
exports.Prisma.Cl_group_propsScalarFieldEnum = {
|
|
646
|
+
group_props_id: 'group_props_id',
|
|
647
|
+
group_id: 'group_id',
|
|
648
|
+
type: 'type',
|
|
649
|
+
reference_id: 'reference_id',
|
|
650
|
+
props_value: 'props_value',
|
|
651
|
+
props_id: 'props_id',
|
|
652
|
+
props_numeric: 'props_numeric',
|
|
653
|
+
props_timestamp: 'props_timestamp',
|
|
654
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
655
|
+
ax_createuserid: 'ax_createuserid',
|
|
656
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
657
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
658
|
+
ax_isdelete: 'ax_isdelete',
|
|
659
|
+
ax_istrash: 'ax_istrash',
|
|
660
|
+
ax_accountid: 'ax_accountid',
|
|
661
|
+
group_item_id: 'group_item_id',
|
|
662
|
+
props_integer: 'props_integer'
|
|
663
|
+
};
|
|
664
|
+
|
|
665
|
+
exports.Prisma.Cl_item_amountsScalarFieldEnum = {
|
|
666
|
+
item_amount_id: 'item_amount_id',
|
|
667
|
+
item_id: 'item_id',
|
|
668
|
+
item_uid_id: 'item_uid_id',
|
|
669
|
+
type: 'type',
|
|
670
|
+
display_name: 'display_name',
|
|
671
|
+
description: 'description',
|
|
672
|
+
amount: 'amount',
|
|
673
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
674
|
+
ax_createuserid: 'ax_createuserid',
|
|
675
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
676
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
677
|
+
ax_isdelete: 'ax_isdelete',
|
|
678
|
+
ax_istrash: 'ax_istrash',
|
|
679
|
+
ax_accountid: 'ax_accountid'
|
|
680
|
+
};
|
|
681
|
+
|
|
682
|
+
exports.Prisma.Cl_item_injection_propsScalarFieldEnum = {
|
|
683
|
+
item_injection_props_id: 'item_injection_props_id',
|
|
684
|
+
props_module: 'props_module',
|
|
685
|
+
props_ref: 'props_ref',
|
|
686
|
+
is_multiple: 'is_multiple',
|
|
687
|
+
item_id: 'item_id',
|
|
688
|
+
item_uid_id: 'item_uid_id',
|
|
689
|
+
product_id: 'product_id',
|
|
690
|
+
reference_id: 'reference_id',
|
|
691
|
+
type: 'type',
|
|
692
|
+
props_field: 'props_field',
|
|
693
|
+
props_value: 'props_value',
|
|
694
|
+
props_id: 'props_id',
|
|
695
|
+
props_text: 'props_text',
|
|
696
|
+
props_numeric: 'props_numeric',
|
|
697
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
698
|
+
ax_createuserid: 'ax_createuserid',
|
|
699
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
700
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
701
|
+
ax_isdelete: 'ax_isdelete',
|
|
702
|
+
ax_istrash: 'ax_istrash',
|
|
703
|
+
ax_accountid: 'ax_accountid',
|
|
704
|
+
brand_id: 'brand_id',
|
|
705
|
+
category_id: 'category_id',
|
|
706
|
+
uom_id: 'uom_id',
|
|
707
|
+
props_date: 'props_date',
|
|
708
|
+
props_date_time: 'props_date_time',
|
|
709
|
+
props_timestamp: 'props_timestamp',
|
|
710
|
+
props_integer: 'props_integer',
|
|
711
|
+
has_multiple_inline: 'has_multiple_inline'
|
|
712
|
+
};
|
|
713
|
+
|
|
714
|
+
exports.Prisma.Cl_item_propsScalarFieldEnum = {
|
|
715
|
+
item_props_id: 'item_props_id',
|
|
716
|
+
item_id: 'item_id',
|
|
717
|
+
type: 'type',
|
|
718
|
+
props_value: 'props_value',
|
|
719
|
+
props_id: 'props_id',
|
|
720
|
+
props_numeric: 'props_numeric',
|
|
721
|
+
props_timestamp: 'props_timestamp',
|
|
722
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
723
|
+
ax_createuserid: 'ax_createuserid',
|
|
724
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
725
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
726
|
+
ax_isdelete: 'ax_isdelete',
|
|
727
|
+
ax_istrash: 'ax_istrash',
|
|
728
|
+
ax_accountid: 'ax_accountid',
|
|
729
|
+
item_uid_id: 'item_uid_id',
|
|
730
|
+
product_id: 'product_id',
|
|
731
|
+
reference_id: 'reference_id',
|
|
732
|
+
props_integer: 'props_integer'
|
|
733
|
+
};
|
|
734
|
+
|
|
735
|
+
exports.Prisma.Cl_item_statusScalarFieldEnum = {
|
|
736
|
+
item_status_id: 'item_status_id',
|
|
737
|
+
item_id: 'item_id',
|
|
738
|
+
type: 'type',
|
|
739
|
+
status: 'status',
|
|
740
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
741
|
+
ax_createuserid: 'ax_createuserid',
|
|
742
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
743
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
744
|
+
ax_isdelete: 'ax_isdelete',
|
|
745
|
+
ax_istrash: 'ax_istrash',
|
|
746
|
+
ax_accountid: 'ax_accountid',
|
|
747
|
+
item_uid_id: 'item_uid_id'
|
|
748
|
+
};
|
|
749
|
+
|
|
750
|
+
exports.Prisma.Cl_item_uidsScalarFieldEnum = {
|
|
751
|
+
item_uid_id: 'item_uid_id',
|
|
752
|
+
item_id: 'item_id',
|
|
753
|
+
barcode: 'barcode',
|
|
754
|
+
slot_id: 'slot_id',
|
|
755
|
+
cost: 'cost',
|
|
756
|
+
status_type: 'status_type',
|
|
757
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
758
|
+
ax_createuserid: 'ax_createuserid',
|
|
759
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
760
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
761
|
+
ax_isdelete: 'ax_isdelete',
|
|
762
|
+
ax_istrash: 'ax_istrash',
|
|
763
|
+
ax_accountid: 'ax_accountid',
|
|
764
|
+
custom_batch_no: 'custom_batch_no',
|
|
765
|
+
expiry_date: 'expiry_date'
|
|
766
|
+
};
|
|
767
|
+
|
|
768
|
+
exports.Prisma.Cl_location_zone_itemsScalarFieldEnum = {
|
|
769
|
+
location_zone_item_id: 'location_zone_item_id',
|
|
770
|
+
location_zone_id: 'location_zone_id',
|
|
771
|
+
item_type: 'item_type',
|
|
772
|
+
reference_id: 'reference_id',
|
|
773
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
774
|
+
ax_createuserid: 'ax_createuserid',
|
|
775
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
776
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
777
|
+
ax_isdelete: 'ax_isdelete',
|
|
778
|
+
ax_istrash: 'ax_istrash',
|
|
779
|
+
ax_accountid: 'ax_accountid'
|
|
780
|
+
};
|
|
781
|
+
|
|
782
|
+
exports.Prisma.Cl_logistic_injection_propsScalarFieldEnum = {
|
|
783
|
+
logistic_injection_props_id: 'logistic_injection_props_id',
|
|
784
|
+
props_module: 'props_module',
|
|
785
|
+
props_ref: 'props_ref',
|
|
786
|
+
is_multiple: 'is_multiple',
|
|
787
|
+
logistic_id: 'logistic_id',
|
|
788
|
+
type: 'type',
|
|
789
|
+
props_field: 'props_field',
|
|
790
|
+
props_value: 'props_value',
|
|
791
|
+
props_id: 'props_id',
|
|
792
|
+
props_text: 'props_text',
|
|
793
|
+
props_numeric: 'props_numeric',
|
|
794
|
+
props_timestamp: 'props_timestamp',
|
|
795
|
+
props_date: 'props_date',
|
|
796
|
+
props_date_time: 'props_date_time',
|
|
797
|
+
props_integer: 'props_integer',
|
|
798
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
799
|
+
ax_createuserid: 'ax_createuserid',
|
|
800
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
801
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
802
|
+
ax_isdelete: 'ax_isdelete',
|
|
803
|
+
ax_istrash: 'ax_istrash',
|
|
804
|
+
ax_accountid: 'ax_accountid',
|
|
805
|
+
has_multiple_inline: 'has_multiple_inline'
|
|
806
|
+
};
|
|
807
|
+
|
|
808
|
+
exports.Prisma.Cl_logistic_propsScalarFieldEnum = {
|
|
809
|
+
logistic_props_id: 'logistic_props_id',
|
|
810
|
+
logistic_id: 'logistic_id',
|
|
811
|
+
type: 'type',
|
|
812
|
+
props_value: 'props_value',
|
|
813
|
+
props_id: 'props_id',
|
|
814
|
+
props_numeric: 'props_numeric',
|
|
815
|
+
props_timestamp: 'props_timestamp',
|
|
816
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
817
|
+
ax_createuserid: 'ax_createuserid',
|
|
818
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
819
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
820
|
+
ax_isdelete: 'ax_isdelete',
|
|
821
|
+
ax_istrash: 'ax_istrash',
|
|
822
|
+
ax_accountid: 'ax_accountid',
|
|
823
|
+
props_integer: 'props_integer'
|
|
824
|
+
};
|
|
825
|
+
|
|
826
|
+
exports.Prisma.Cl_logisticsScalarFieldEnum = {
|
|
827
|
+
logistic_id: 'logistic_id',
|
|
828
|
+
label: 'label',
|
|
829
|
+
type: 'type',
|
|
830
|
+
description: 'description',
|
|
831
|
+
remark: 'remark',
|
|
832
|
+
status: 'status',
|
|
833
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
834
|
+
ax_createuserid: 'ax_createuserid',
|
|
835
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
836
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
837
|
+
ax_isdelete: 'ax_isdelete',
|
|
838
|
+
ax_istrash: 'ax_istrash',
|
|
839
|
+
ax_accountid: 'ax_accountid'
|
|
840
|
+
};
|
|
841
|
+
|
|
842
|
+
exports.Prisma.Cl_membersScalarFieldEnum = {
|
|
843
|
+
member_id: 'member_id',
|
|
844
|
+
user_id: 'user_id',
|
|
845
|
+
owner_user_type: 'owner_user_type',
|
|
846
|
+
owner_user_id: 'owner_user_id',
|
|
847
|
+
company_name: 'company_name',
|
|
848
|
+
code: 'code',
|
|
849
|
+
address_1: 'address_1',
|
|
850
|
+
address_2: 'address_2',
|
|
851
|
+
postcode: 'postcode',
|
|
852
|
+
state_id: 'state_id',
|
|
853
|
+
area: 'area',
|
|
854
|
+
country_id: 'country_id',
|
|
855
|
+
remark: 'remark',
|
|
856
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
857
|
+
ax_createuserid: 'ax_createuserid',
|
|
858
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
859
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
860
|
+
ax_isdelete: 'ax_isdelete',
|
|
861
|
+
ax_istrash: 'ax_istrash',
|
|
862
|
+
ax_accountid: 'ax_accountid',
|
|
863
|
+
area_id: 'area_id',
|
|
864
|
+
identity_no: 'identity_no',
|
|
865
|
+
gender: 'gender',
|
|
866
|
+
dob: 'dob'
|
|
867
|
+
};
|
|
868
|
+
|
|
869
|
+
exports.Prisma.Cl_messagesScalarFieldEnum = {
|
|
870
|
+
message_id: 'message_id',
|
|
871
|
+
message: 'message',
|
|
872
|
+
message_type: 'message_type',
|
|
873
|
+
message_key: 'message_key',
|
|
874
|
+
target: 'target',
|
|
875
|
+
module: 'module',
|
|
876
|
+
message_ref: 'message_ref',
|
|
877
|
+
ref_id: 'ref_id',
|
|
878
|
+
send_key: 'send_key',
|
|
879
|
+
send_destination: 'send_destination',
|
|
880
|
+
send_status: 'send_status',
|
|
881
|
+
send_attempt: 'send_attempt',
|
|
882
|
+
send_datetime: 'send_datetime',
|
|
883
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
884
|
+
ax_createuserid: 'ax_createuserid',
|
|
885
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
886
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
887
|
+
ax_isdelete: 'ax_isdelete',
|
|
888
|
+
ax_istrash: 'ax_istrash',
|
|
889
|
+
ax_accountid: 'ax_accountid'
|
|
890
|
+
};
|
|
891
|
+
|
|
892
|
+
exports.Prisma.Cl_module_propsScalarFieldEnum = {
|
|
893
|
+
module_props_id: 'module_props_id',
|
|
894
|
+
module_id: 'module_id',
|
|
895
|
+
type: 'type',
|
|
896
|
+
props_value: 'props_value',
|
|
897
|
+
props_id: 'props_id',
|
|
898
|
+
props_numeric: 'props_numeric',
|
|
899
|
+
props_timestamp: 'props_timestamp',
|
|
900
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
901
|
+
ax_createuserid: 'ax_createuserid',
|
|
902
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
903
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
904
|
+
ax_isdelete: 'ax_isdelete',
|
|
905
|
+
ax_istrash: 'ax_istrash',
|
|
906
|
+
ax_accountid: 'ax_accountid',
|
|
907
|
+
props_value_type: 'props_value_type',
|
|
908
|
+
is_multiple: 'is_multiple',
|
|
909
|
+
props_integer: 'props_integer'
|
|
910
|
+
};
|
|
911
|
+
|
|
912
|
+
exports.Prisma.Cl_module_statusScalarFieldEnum = {
|
|
913
|
+
module_status_id: 'module_status_id',
|
|
914
|
+
module_id: 'module_id',
|
|
915
|
+
type: 'type',
|
|
916
|
+
status: 'status',
|
|
917
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
918
|
+
ax_createuserid: 'ax_createuserid',
|
|
919
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
920
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
921
|
+
ax_isdelete: 'ax_isdelete',
|
|
922
|
+
ax_istrash: 'ax_istrash',
|
|
923
|
+
ax_accountid: 'ax_accountid'
|
|
924
|
+
};
|
|
925
|
+
|
|
926
|
+
exports.Prisma.Cl_modulesScalarFieldEnum = {
|
|
927
|
+
module_id: 'module_id',
|
|
928
|
+
module_name: 'module_name',
|
|
929
|
+
module_key: 'module_key',
|
|
930
|
+
module_description: 'module_description',
|
|
931
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
932
|
+
ax_createuserid: 'ax_createuserid',
|
|
933
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
934
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
935
|
+
ax_isdelete: 'ax_isdelete',
|
|
936
|
+
ax_istrash: 'ax_istrash',
|
|
937
|
+
ax_accountid: 'ax_accountid'
|
|
938
|
+
};
|
|
939
|
+
|
|
940
|
+
exports.Prisma.Cl_packagesScalarFieldEnum = {
|
|
941
|
+
package_id: 'package_id',
|
|
942
|
+
main_item_id: 'main_item_id',
|
|
943
|
+
item_id: 'item_id',
|
|
944
|
+
code: 'code',
|
|
945
|
+
description: 'description',
|
|
946
|
+
qty: 'qty',
|
|
947
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
948
|
+
ax_createuserid: 'ax_createuserid',
|
|
949
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
950
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
951
|
+
ax_isdelete: 'ax_isdelete',
|
|
952
|
+
ax_istrash: 'ax_istrash',
|
|
953
|
+
ax_accountid: 'ax_accountid'
|
|
954
|
+
};
|
|
955
|
+
|
|
956
|
+
exports.Prisma.Cl_passcodesScalarFieldEnum = {
|
|
957
|
+
passcode_id: 'passcode_id',
|
|
958
|
+
code: 'code',
|
|
959
|
+
code_type: 'code_type',
|
|
960
|
+
code_key: 'code_key',
|
|
961
|
+
target: 'target',
|
|
962
|
+
module: 'module',
|
|
963
|
+
code_ref: 'code_ref',
|
|
964
|
+
ref_id: 'ref_id',
|
|
965
|
+
output_length: 'output_length',
|
|
966
|
+
pattern: 'pattern',
|
|
967
|
+
claim_status: 'claim_status',
|
|
968
|
+
claim_attempt: 'claim_attempt',
|
|
969
|
+
claim_datetime: 'claim_datetime',
|
|
970
|
+
claim_user_id: 'claim_user_id',
|
|
971
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
972
|
+
ax_createuserid: 'ax_createuserid',
|
|
973
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
974
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
975
|
+
ax_isdelete: 'ax_isdelete',
|
|
976
|
+
ax_istrash: 'ax_istrash',
|
|
977
|
+
ax_accountid: 'ax_accountid'
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
exports.Prisma.Cl_payment_methodsScalarFieldEnum = {
|
|
981
|
+
payment_method_id: 'payment_method_id',
|
|
982
|
+
name: 'name',
|
|
983
|
+
merchant_code: 'merchant_code',
|
|
984
|
+
merchant_key: 'merchant_key',
|
|
985
|
+
response_url: 'response_url',
|
|
986
|
+
backend_url: 'backend_url',
|
|
987
|
+
description: 'description',
|
|
988
|
+
status: 'status',
|
|
989
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
990
|
+
ax_createuserid: 'ax_createuserid',
|
|
991
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
992
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
993
|
+
ax_isdelete: 'ax_isdelete',
|
|
994
|
+
ax_istrash: 'ax_istrash',
|
|
995
|
+
ax_accountid: 'ax_accountid'
|
|
996
|
+
};
|
|
997
|
+
|
|
998
|
+
exports.Prisma.Cl_permission_routesScalarFieldEnum = {
|
|
999
|
+
permission_route_id: 'permission_route_id',
|
|
1000
|
+
group_id: 'group_id',
|
|
1001
|
+
public_route: 'public_route',
|
|
1002
|
+
is_allow: 'is_allow',
|
|
1003
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1004
|
+
ax_createuserid: 'ax_createuserid',
|
|
1005
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1006
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1007
|
+
ax_isdelete: 'ax_isdelete',
|
|
1008
|
+
ax_istrash: 'ax_istrash',
|
|
1009
|
+
ax_accountid: 'ax_accountid'
|
|
1010
|
+
};
|
|
1011
|
+
|
|
1012
|
+
exports.Prisma.Cl_rate_amountsScalarFieldEnum = {
|
|
1013
|
+
rate_amount_id: 'rate_amount_id',
|
|
1014
|
+
rate_id: 'rate_id',
|
|
1015
|
+
rate_item_id: 'rate_item_id',
|
|
1016
|
+
type: 'type',
|
|
1017
|
+
display_name: 'display_name',
|
|
1018
|
+
description: 'description',
|
|
1019
|
+
amount: 'amount',
|
|
1020
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1021
|
+
ax_createuserid: 'ax_createuserid',
|
|
1022
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1023
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1024
|
+
ax_isdelete: 'ax_isdelete',
|
|
1025
|
+
ax_istrash: 'ax_istrash',
|
|
1026
|
+
ax_accountid: 'ax_accountid'
|
|
1027
|
+
};
|
|
1028
|
+
|
|
1029
|
+
exports.Prisma.Cl_rate_itemsScalarFieldEnum = {
|
|
1030
|
+
rate_item_id: 'rate_item_id',
|
|
1031
|
+
rate_id: 'rate_id',
|
|
1032
|
+
scope_type: 'scope_type',
|
|
1033
|
+
scope_id: 'scope_id',
|
|
1034
|
+
group_id: 'group_id',
|
|
1035
|
+
item_rate: 'item_rate',
|
|
1036
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1037
|
+
ax_createuserid: 'ax_createuserid',
|
|
1038
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1039
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1040
|
+
ax_isdelete: 'ax_isdelete',
|
|
1041
|
+
ax_istrash: 'ax_istrash',
|
|
1042
|
+
ax_accountid: 'ax_accountid'
|
|
1043
|
+
};
|
|
1044
|
+
|
|
1045
|
+
exports.Prisma.Cl_rate_propsScalarFieldEnum = {
|
|
1046
|
+
rate_props_id: 'rate_props_id',
|
|
1047
|
+
rate_id: 'rate_id',
|
|
1048
|
+
rate_item_id: 'rate_item_id',
|
|
1049
|
+
type: 'type',
|
|
1050
|
+
props_value: 'props_value',
|
|
1051
|
+
props_id: 'props_id',
|
|
1052
|
+
props_numeric: 'props_numeric',
|
|
1053
|
+
props_timestamp: 'props_timestamp',
|
|
1054
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1055
|
+
ax_createuserid: 'ax_createuserid',
|
|
1056
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1057
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1058
|
+
ax_isdelete: 'ax_isdelete',
|
|
1059
|
+
ax_istrash: 'ax_istrash',
|
|
1060
|
+
ax_accountid: 'ax_accountid',
|
|
1061
|
+
target: 'target',
|
|
1062
|
+
props_integer: 'props_integer'
|
|
1063
|
+
};
|
|
1064
|
+
|
|
1065
|
+
exports.Prisma.Cl_rate_rule_amountsScalarFieldEnum = {
|
|
1066
|
+
rate_rule_amount_id: 'rate_rule_amount_id',
|
|
1067
|
+
rate_rule_id: 'rate_rule_id',
|
|
1068
|
+
rate_rule_item_id: 'rate_rule_item_id',
|
|
1069
|
+
type: 'type',
|
|
1070
|
+
display_name: 'display_name',
|
|
1071
|
+
description: 'description',
|
|
1072
|
+
amount: 'amount',
|
|
1073
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1074
|
+
ax_createuserid: 'ax_createuserid',
|
|
1075
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1076
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1077
|
+
ax_isdelete: 'ax_isdelete',
|
|
1078
|
+
ax_istrash: 'ax_istrash',
|
|
1079
|
+
ax_accountid: 'ax_accountid'
|
|
1080
|
+
};
|
|
1081
|
+
|
|
1082
|
+
exports.Prisma.Cl_rate_rule_itemsScalarFieldEnum = {
|
|
1083
|
+
rate_rule_item_id: 'rate_rule_item_id',
|
|
1084
|
+
rate_rule_id: 'rate_rule_id',
|
|
1085
|
+
min_value: 'min_value',
|
|
1086
|
+
max_value: 'max_value',
|
|
1087
|
+
item_rate: 'item_rate',
|
|
1088
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1089
|
+
ax_createuserid: 'ax_createuserid',
|
|
1090
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1091
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1092
|
+
ax_isdelete: 'ax_isdelete',
|
|
1093
|
+
ax_istrash: 'ax_istrash',
|
|
1094
|
+
ax_accountid: 'ax_accountid'
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1097
|
+
exports.Prisma.Cl_rate_rule_propsScalarFieldEnum = {
|
|
1098
|
+
rate_rule_props_id: 'rate_rule_props_id',
|
|
1099
|
+
rate_rule_id: 'rate_rule_id',
|
|
1100
|
+
rate_rule_item_id: 'rate_rule_item_id',
|
|
1101
|
+
type: 'type',
|
|
1102
|
+
props_value: 'props_value',
|
|
1103
|
+
props_id: 'props_id',
|
|
1104
|
+
props_numeric: 'props_numeric',
|
|
1105
|
+
props_timestamp: 'props_timestamp',
|
|
1106
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1107
|
+
ax_createuserid: 'ax_createuserid',
|
|
1108
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1109
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1110
|
+
ax_isdelete: 'ax_isdelete',
|
|
1111
|
+
ax_istrash: 'ax_istrash',
|
|
1112
|
+
ax_accountid: 'ax_accountid',
|
|
1113
|
+
props_integer: 'props_integer'
|
|
1114
|
+
};
|
|
1115
|
+
|
|
1116
|
+
exports.Prisma.Cl_rate_rulesScalarFieldEnum = {
|
|
1117
|
+
rate_rule_id: 'rate_rule_id',
|
|
1118
|
+
rule_name: 'rule_name',
|
|
1119
|
+
type: 'type',
|
|
1120
|
+
calculation_type: 'calculation_type',
|
|
1121
|
+
description: 'description',
|
|
1122
|
+
status: 'status',
|
|
1123
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1124
|
+
ax_createuserid: 'ax_createuserid',
|
|
1125
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1126
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1127
|
+
ax_isdelete: 'ax_isdelete',
|
|
1128
|
+
ax_istrash: 'ax_istrash',
|
|
1129
|
+
ax_accountid: 'ax_accountid',
|
|
1130
|
+
base_fee: 'base_fee'
|
|
1131
|
+
};
|
|
1132
|
+
|
|
1133
|
+
exports.Prisma.Cl_ratesScalarFieldEnum = {
|
|
1134
|
+
rate_id: 'rate_id',
|
|
1135
|
+
rate_name: 'rate_name',
|
|
1136
|
+
type: 'type',
|
|
1137
|
+
scope_type: 'scope_type',
|
|
1138
|
+
scope_id: 'scope_id',
|
|
1139
|
+
description: 'description',
|
|
1140
|
+
status: 'status',
|
|
1141
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1142
|
+
ax_createuserid: 'ax_createuserid',
|
|
1143
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1144
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1145
|
+
ax_isdelete: 'ax_isdelete',
|
|
1146
|
+
ax_istrash: 'ax_istrash',
|
|
1147
|
+
ax_accountid: 'ax_accountid'
|
|
1148
|
+
};
|
|
1149
|
+
|
|
1150
|
+
exports.Prisma.Cl_ratingsScalarFieldEnum = {
|
|
1151
|
+
rating_id: 'rating_id',
|
|
1152
|
+
target: 'target',
|
|
1153
|
+
module: 'module',
|
|
1154
|
+
rating_ref: 'rating_ref',
|
|
1155
|
+
type: 'type',
|
|
1156
|
+
evaluator_id: 'evaluator_id',
|
|
1157
|
+
recipient_id: 'recipient_id',
|
|
1158
|
+
description: 'description',
|
|
1159
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1160
|
+
ax_createuserid: 'ax_createuserid',
|
|
1161
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1162
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1163
|
+
ax_isdelete: 'ax_isdelete',
|
|
1164
|
+
ax_istrash: 'ax_istrash',
|
|
1165
|
+
ax_accountid: 'ax_accountid',
|
|
1166
|
+
rating_numeric: 'rating_numeric',
|
|
1167
|
+
rating_value: 'rating_value'
|
|
1168
|
+
};
|
|
1169
|
+
|
|
1170
|
+
exports.Prisma.Cl_repositoriesScalarFieldEnum = {
|
|
1171
|
+
repository_id: 'repository_id',
|
|
1172
|
+
repo_number: 'repo_number',
|
|
1173
|
+
number_alternative: 'number_alternative',
|
|
1174
|
+
number_seal: 'number_seal',
|
|
1175
|
+
number_marking: 'number_marking',
|
|
1176
|
+
repo_date: 'repo_date',
|
|
1177
|
+
load_date: 'load_date',
|
|
1178
|
+
person: 'person',
|
|
1179
|
+
provider: 'provider',
|
|
1180
|
+
type: 'type',
|
|
1181
|
+
remark: 'remark',
|
|
1182
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1183
|
+
ax_createuserid: 'ax_createuserid',
|
|
1184
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1185
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1186
|
+
ax_isdelete: 'ax_isdelete',
|
|
1187
|
+
ax_istrash: 'ax_istrash',
|
|
1188
|
+
ax_accountid: 'ax_accountid',
|
|
1189
|
+
eta_date: 'eta_date'
|
|
1190
|
+
};
|
|
1191
|
+
|
|
1192
|
+
exports.Prisma.Cl_repository_injection_propsScalarFieldEnum = {
|
|
1193
|
+
repository_injection_props_id: 'repository_injection_props_id',
|
|
1194
|
+
props_module: 'props_module',
|
|
1195
|
+
props_ref: 'props_ref',
|
|
1196
|
+
is_multiple: 'is_multiple',
|
|
1197
|
+
repository_id: 'repository_id',
|
|
1198
|
+
repository_item_id: 'repository_item_id',
|
|
1199
|
+
type: 'type',
|
|
1200
|
+
props_field: 'props_field',
|
|
1201
|
+
props_value: 'props_value',
|
|
1202
|
+
props_id: 'props_id',
|
|
1203
|
+
props_text: 'props_text',
|
|
1204
|
+
props_numeric: 'props_numeric',
|
|
1205
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1206
|
+
ax_createuserid: 'ax_createuserid',
|
|
1207
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1208
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1209
|
+
ax_isdelete: 'ax_isdelete',
|
|
1210
|
+
ax_istrash: 'ax_istrash',
|
|
1211
|
+
ax_accountid: 'ax_accountid',
|
|
1212
|
+
props_date: 'props_date',
|
|
1213
|
+
props_date_time: 'props_date_time',
|
|
1214
|
+
props_timestamp: 'props_timestamp',
|
|
1215
|
+
props_integer: 'props_integer',
|
|
1216
|
+
has_multiple_inline: 'has_multiple_inline'
|
|
1217
|
+
};
|
|
1218
|
+
|
|
1219
|
+
exports.Prisma.Cl_repository_itemsScalarFieldEnum = {
|
|
1220
|
+
repository_item_id: 'repository_item_id',
|
|
1221
|
+
repository_id: 'repository_id',
|
|
1222
|
+
item_id: 'item_id',
|
|
1223
|
+
quantity: 'quantity',
|
|
1224
|
+
item_name: 'item_name',
|
|
1225
|
+
code: 'code',
|
|
1226
|
+
description: 'description',
|
|
1227
|
+
remark: 'remark',
|
|
1228
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1229
|
+
ax_createuserid: 'ax_createuserid',
|
|
1230
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1231
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1232
|
+
ax_isdelete: 'ax_isdelete',
|
|
1233
|
+
ax_istrash: 'ax_istrash',
|
|
1234
|
+
ax_accountid: 'ax_accountid',
|
|
1235
|
+
unit_amount: 'unit_amount',
|
|
1236
|
+
total_amount: 'total_amount',
|
|
1237
|
+
uom: 'uom',
|
|
1238
|
+
uom_id: 'uom_id'
|
|
1239
|
+
};
|
|
1240
|
+
|
|
1241
|
+
exports.Prisma.Cl_repository_propsScalarFieldEnum = {
|
|
1242
|
+
repository_props_id: 'repository_props_id',
|
|
1243
|
+
repository_id: 'repository_id',
|
|
1244
|
+
repository_item_id: 'repository_item_id',
|
|
1245
|
+
type: 'type',
|
|
1246
|
+
props_value: 'props_value',
|
|
1247
|
+
props_id: 'props_id',
|
|
1248
|
+
props_numeric: 'props_numeric',
|
|
1249
|
+
props_timestamp: 'props_timestamp',
|
|
1250
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1251
|
+
ax_createuserid: 'ax_createuserid',
|
|
1252
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1253
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1254
|
+
ax_isdelete: 'ax_isdelete',
|
|
1255
|
+
ax_istrash: 'ax_istrash',
|
|
1256
|
+
ax_accountid: 'ax_accountid',
|
|
1257
|
+
props_integer: 'props_integer'
|
|
1258
|
+
};
|
|
1259
|
+
|
|
1260
|
+
exports.Prisma.Cl_repository_statusScalarFieldEnum = {
|
|
1261
|
+
repository_status_id: 'repository_status_id',
|
|
1262
|
+
repository_id: 'repository_id',
|
|
1263
|
+
repository_item_id: 'repository_item_id',
|
|
1264
|
+
type: 'type',
|
|
1265
|
+
status: 'status',
|
|
1266
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1267
|
+
ax_createuserid: 'ax_createuserid',
|
|
1268
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1269
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1270
|
+
ax_isdelete: 'ax_isdelete',
|
|
1271
|
+
ax_istrash: 'ax_istrash',
|
|
1272
|
+
ax_accountid: 'ax_accountid'
|
|
1273
|
+
};
|
|
1274
|
+
|
|
1275
|
+
exports.Prisma.Cl_retailersScalarFieldEnum = {
|
|
1276
|
+
retailer_id: 'retailer_id',
|
|
1277
|
+
user_id: 'user_id',
|
|
1278
|
+
company_name: 'company_name',
|
|
1279
|
+
code: 'code',
|
|
1280
|
+
account_code: 'account_code',
|
|
1281
|
+
reg_no: 'reg_no',
|
|
1282
|
+
gst_no: 'gst_no',
|
|
1283
|
+
remark: 'remark',
|
|
1284
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1285
|
+
ax_createuserid: 'ax_createuserid',
|
|
1286
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1287
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1288
|
+
ax_isdelete: 'ax_isdelete',
|
|
1289
|
+
ax_istrash: 'ax_istrash',
|
|
1290
|
+
ax_accountid: 'ax_accountid'
|
|
1291
|
+
};
|
|
1292
|
+
|
|
1293
|
+
exports.Prisma.Cl_role_permissionsScalarFieldEnum = {
|
|
1294
|
+
role_permission_id: 'role_permission_id',
|
|
1295
|
+
role_id: 'role_id',
|
|
1296
|
+
permission_type: 'permission_type',
|
|
1297
|
+
permission_name: 'permission_name',
|
|
1298
|
+
scope_type: 'scope_type',
|
|
1299
|
+
scope_name: 'scope_name',
|
|
1300
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1301
|
+
ax_createuserid: 'ax_createuserid',
|
|
1302
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1303
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1304
|
+
ax_isdelete: 'ax_isdelete',
|
|
1305
|
+
ax_istrash: 'ax_istrash',
|
|
1306
|
+
ax_accountid: 'ax_accountid',
|
|
1307
|
+
is_custom: 'is_custom'
|
|
1308
|
+
};
|
|
1309
|
+
|
|
1310
|
+
exports.Prisma.Cl_role_usersScalarFieldEnum = {
|
|
1311
|
+
role_user_id: 'role_user_id',
|
|
1312
|
+
user_id: 'user_id',
|
|
1313
|
+
role_id: 'role_id',
|
|
1314
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1315
|
+
ax_createuserid: 'ax_createuserid',
|
|
1316
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1317
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1318
|
+
ax_isdelete: 'ax_isdelete',
|
|
1319
|
+
ax_istrash: 'ax_istrash',
|
|
1320
|
+
ax_accountid: 'ax_accountid'
|
|
1321
|
+
};
|
|
1322
|
+
|
|
1323
|
+
exports.Prisma.Cl_rolesScalarFieldEnum = {
|
|
1324
|
+
role_id: 'role_id',
|
|
1325
|
+
role_name: 'role_name',
|
|
1326
|
+
role_type: 'role_type',
|
|
1327
|
+
description: 'description',
|
|
1328
|
+
status: 'status',
|
|
1329
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1330
|
+
ax_createuserid: 'ax_createuserid',
|
|
1331
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1332
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1333
|
+
ax_isdelete: 'ax_isdelete',
|
|
1334
|
+
ax_istrash: 'ax_istrash',
|
|
1335
|
+
ax_accountid: 'ax_accountid'
|
|
1336
|
+
};
|
|
1337
|
+
|
|
1338
|
+
exports.Prisma.Cl_salesScalarFieldEnum = {
|
|
1339
|
+
sales_id: 'sales_id',
|
|
1340
|
+
customer_id: 'customer_id',
|
|
1341
|
+
doc_number: 'doc_number',
|
|
1342
|
+
doc_date: 'doc_date',
|
|
1343
|
+
customer_code: 'customer_code',
|
|
1344
|
+
customer_company: 'customer_company',
|
|
1345
|
+
customer_address: 'customer_address',
|
|
1346
|
+
customer_credit_limit: 'customer_credit_limit',
|
|
1347
|
+
customer_agent: 'customer_agent',
|
|
1348
|
+
salesperson_id: 'salesperson_id',
|
|
1349
|
+
reference: 'reference',
|
|
1350
|
+
branch_id: 'branch_id',
|
|
1351
|
+
branch_name: 'branch_name',
|
|
1352
|
+
branch_address: 'branch_address',
|
|
1353
|
+
state_id: 'state_id',
|
|
1354
|
+
area_id: 'area_id',
|
|
1355
|
+
postcode: 'postcode',
|
|
1356
|
+
total_price: 'total_price',
|
|
1357
|
+
status: 'status',
|
|
1358
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1359
|
+
ax_createuserid: 'ax_createuserid',
|
|
1360
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1361
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1362
|
+
ax_isdelete: 'ax_isdelete',
|
|
1363
|
+
ax_istrash: 'ax_istrash',
|
|
1364
|
+
ax_accountid: 'ax_accountid'
|
|
1365
|
+
};
|
|
1366
|
+
|
|
1367
|
+
exports.Prisma.Cl_sales_itemsScalarFieldEnum = {
|
|
1368
|
+
sales_item_id: 'sales_item_id',
|
|
1369
|
+
sales_id: 'sales_id',
|
|
1370
|
+
item_id: 'item_id',
|
|
1371
|
+
item_code: 'item_code',
|
|
1372
|
+
item_description: 'item_description',
|
|
1373
|
+
description_2: 'description_2',
|
|
1374
|
+
remark_2: 'remark_2',
|
|
1375
|
+
packing_1: 'packing_1',
|
|
1376
|
+
packing_2: 'packing_2',
|
|
1377
|
+
sales_price: 'sales_price',
|
|
1378
|
+
quantity: 'quantity',
|
|
1379
|
+
discount: 'discount',
|
|
1380
|
+
discount_text: 'discount_text',
|
|
1381
|
+
uom: 'uom',
|
|
1382
|
+
note: 'note',
|
|
1383
|
+
sorting: 'sorting',
|
|
1384
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1385
|
+
ax_createuserid: 'ax_createuserid',
|
|
1386
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1387
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1388
|
+
ax_isdelete: 'ax_isdelete',
|
|
1389
|
+
ax_istrash: 'ax_istrash',
|
|
1390
|
+
ax_accountid: 'ax_accountid'
|
|
1391
|
+
};
|
|
1392
|
+
|
|
1393
|
+
exports.Prisma.Cl_scheduler_logsScalarFieldEnum = {
|
|
1394
|
+
scheduler_log_id: 'scheduler_log_id',
|
|
1395
|
+
scheduler_task_id: 'scheduler_task_id',
|
|
1396
|
+
flow_type: 'flow_type',
|
|
1397
|
+
target: 'target',
|
|
1398
|
+
module: 'module',
|
|
1399
|
+
log_ref: 'log_ref',
|
|
1400
|
+
action: 'action',
|
|
1401
|
+
log_status: 'log_status',
|
|
1402
|
+
log_message: 'log_message',
|
|
1403
|
+
source_id: 'source_id',
|
|
1404
|
+
source_type: 'source_type',
|
|
1405
|
+
destination_id: 'destination_id',
|
|
1406
|
+
destination_type: 'destination_type',
|
|
1407
|
+
source_data: 'source_data',
|
|
1408
|
+
destination_result: 'destination_result',
|
|
1409
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1410
|
+
ax_createuserid: 'ax_createuserid',
|
|
1411
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1412
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1413
|
+
ax_isdelete: 'ax_isdelete',
|
|
1414
|
+
ax_istrash: 'ax_istrash',
|
|
1415
|
+
ax_accountid: 'ax_accountid',
|
|
1416
|
+
destination_submit_data: 'destination_submit_data'
|
|
1417
|
+
};
|
|
1418
|
+
|
|
1419
|
+
exports.Prisma.Cl_scheduler_requestsScalarFieldEnum = {
|
|
1420
|
+
scheduler_request_id: 'scheduler_request_id',
|
|
1421
|
+
source_id: 'source_id',
|
|
1422
|
+
request_ref: 'request_ref',
|
|
1423
|
+
module: 'module',
|
|
1424
|
+
target: 'target',
|
|
1425
|
+
integration_id: 'integration_id',
|
|
1426
|
+
destination_id: 'destination_id',
|
|
1427
|
+
source_data: 'source_data',
|
|
1428
|
+
action: 'action',
|
|
1429
|
+
attempt_no: 'attempt_no',
|
|
1430
|
+
attempt_status: 'attempt_status',
|
|
1431
|
+
attempt_result: 'attempt_result',
|
|
1432
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1433
|
+
ax_createuserid: 'ax_createuserid',
|
|
1434
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1435
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1436
|
+
ax_isdelete: 'ax_isdelete',
|
|
1437
|
+
ax_istrash: 'ax_istrash',
|
|
1438
|
+
ax_accountid: 'ax_accountid',
|
|
1439
|
+
attempt_datetime: 'attempt_datetime'
|
|
1440
|
+
};
|
|
1441
|
+
|
|
1442
|
+
exports.Prisma.Cl_scheduler_tasksScalarFieldEnum = {
|
|
1443
|
+
scheduler_task_id: 'scheduler_task_id',
|
|
1444
|
+
task_key: 'task_key',
|
|
1445
|
+
name: 'name',
|
|
1446
|
+
description: 'description',
|
|
1447
|
+
status: 'status',
|
|
1448
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1449
|
+
ax_createuserid: 'ax_createuserid',
|
|
1450
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1451
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1452
|
+
ax_isdelete: 'ax_isdelete',
|
|
1453
|
+
ax_istrash: 'ax_istrash',
|
|
1454
|
+
ax_accountid: 'ax_accountid',
|
|
1455
|
+
integration_id: 'integration_id'
|
|
1456
|
+
};
|
|
1457
|
+
|
|
1458
|
+
exports.Prisma.Cl_setting_amountsScalarFieldEnum = {
|
|
1459
|
+
setting_amount_id: 'setting_amount_id',
|
|
1460
|
+
setting_id: 'setting_id',
|
|
1461
|
+
setting_item_id: 'setting_item_id',
|
|
1462
|
+
type: 'type',
|
|
1463
|
+
display_name: 'display_name',
|
|
1464
|
+
description: 'description',
|
|
1465
|
+
amount: 'amount',
|
|
1466
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1467
|
+
ax_createuserid: 'ax_createuserid',
|
|
1468
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1469
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1470
|
+
ax_isdelete: 'ax_isdelete',
|
|
1471
|
+
ax_istrash: 'ax_istrash',
|
|
1472
|
+
ax_accountid: 'ax_accountid'
|
|
1473
|
+
};
|
|
1474
|
+
|
|
1475
|
+
exports.Prisma.Cl_setting_itemsScalarFieldEnum = {
|
|
1476
|
+
setting_item_id: 'setting_item_id',
|
|
1477
|
+
setting_id: 'setting_id',
|
|
1478
|
+
item_name: 'item_name',
|
|
1479
|
+
description: 'description',
|
|
1480
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1481
|
+
ax_createuserid: 'ax_createuserid',
|
|
1482
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1483
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1484
|
+
ax_isdelete: 'ax_isdelete',
|
|
1485
|
+
ax_istrash: 'ax_istrash',
|
|
1486
|
+
ax_accountid: 'ax_accountid'
|
|
1487
|
+
};
|
|
1488
|
+
|
|
1489
|
+
exports.Prisma.Cl_setting_propsScalarFieldEnum = {
|
|
1490
|
+
setting_props_id: 'setting_props_id',
|
|
1491
|
+
setting_id: 'setting_id',
|
|
1492
|
+
setting_item_id: 'setting_item_id',
|
|
1493
|
+
props_value: 'props_value',
|
|
1494
|
+
type: 'type',
|
|
1495
|
+
props_id: 'props_id',
|
|
1496
|
+
props_numeric: 'props_numeric',
|
|
1497
|
+
props_timestamp: 'props_timestamp',
|
|
1498
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1499
|
+
ax_createuserid: 'ax_createuserid',
|
|
1500
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1501
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1502
|
+
ax_isdelete: 'ax_isdelete',
|
|
1503
|
+
ax_istrash: 'ax_istrash',
|
|
1504
|
+
ax_accountid: 'ax_accountid',
|
|
1505
|
+
props_integer: 'props_integer'
|
|
1506
|
+
};
|
|
1507
|
+
|
|
1508
|
+
exports.Prisma.Cl_setting_statusScalarFieldEnum = {
|
|
1509
|
+
setting_status_id: 'setting_status_id',
|
|
1510
|
+
setting_id: 'setting_id',
|
|
1511
|
+
setting_item_id: 'setting_item_id',
|
|
1512
|
+
type: 'type',
|
|
1513
|
+
status: 'status',
|
|
1514
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1515
|
+
ax_createuserid: 'ax_createuserid',
|
|
1516
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1517
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1518
|
+
ax_isdelete: 'ax_isdelete',
|
|
1519
|
+
ax_istrash: 'ax_istrash',
|
|
1520
|
+
ax_accountid: 'ax_accountid'
|
|
1521
|
+
};
|
|
1522
|
+
|
|
1523
|
+
exports.Prisma.Cl_settingsScalarFieldEnum = {
|
|
1524
|
+
setting_id: 'setting_id',
|
|
1525
|
+
setting_type: 'setting_type',
|
|
1526
|
+
setting_title: 'setting_title',
|
|
1527
|
+
setting_key: 'setting_key',
|
|
1528
|
+
setting_label: 'setting_label',
|
|
1529
|
+
field_key: 'field_key',
|
|
1530
|
+
field_label: 'field_label',
|
|
1531
|
+
field_value: 'field_value',
|
|
1532
|
+
is_default: 'is_default',
|
|
1533
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1534
|
+
ax_createuserid: 'ax_createuserid',
|
|
1535
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1536
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1537
|
+
ax_isdelete: 'ax_isdelete',
|
|
1538
|
+
ax_istrash: 'ax_istrash',
|
|
1539
|
+
ax_accountid: 'ax_accountid'
|
|
1540
|
+
};
|
|
1541
|
+
|
|
1542
|
+
exports.Prisma.Cl_settings_oldScalarFieldEnum = {
|
|
1543
|
+
setting_id: 'setting_id',
|
|
1544
|
+
setting_type: 'setting_type',
|
|
1545
|
+
setting_name: 'setting_name',
|
|
1546
|
+
setting_remark: 'setting_remark',
|
|
1547
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1548
|
+
ax_createuserid: 'ax_createuserid',
|
|
1549
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1550
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1551
|
+
ax_isdelete: 'ax_isdelete',
|
|
1552
|
+
ax_istrash: 'ax_istrash',
|
|
1553
|
+
ax_accountid: 'ax_accountid'
|
|
1554
|
+
};
|
|
1555
|
+
|
|
1556
|
+
exports.Prisma.Cl_suppliersScalarFieldEnum = {
|
|
1557
|
+
supplier_id: 'supplier_id',
|
|
1558
|
+
user_id: 'user_id',
|
|
1559
|
+
company_name: 'company_name',
|
|
1560
|
+
code: 'code',
|
|
1561
|
+
reg_no: 'reg_no',
|
|
1562
|
+
address_1: 'address_1',
|
|
1563
|
+
address_2: 'address_2',
|
|
1564
|
+
postcode: 'postcode',
|
|
1565
|
+
state_id: 'state_id',
|
|
1566
|
+
area: 'area',
|
|
1567
|
+
country_id: 'country_id',
|
|
1568
|
+
bank_name: 'bank_name',
|
|
1569
|
+
bank_acc: 'bank_acc',
|
|
1570
|
+
remark: 'remark',
|
|
1571
|
+
gst_no: 'gst_no',
|
|
1572
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1573
|
+
ax_createuserid: 'ax_createuserid',
|
|
1574
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1575
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1576
|
+
ax_isdelete: 'ax_isdelete',
|
|
1577
|
+
ax_istrash: 'ax_istrash',
|
|
1578
|
+
ax_accountid: 'ax_accountid',
|
|
1579
|
+
contact: 'contact',
|
|
1580
|
+
area_id: 'area_id',
|
|
1581
|
+
type: 'type'
|
|
1582
|
+
};
|
|
1583
|
+
|
|
1584
|
+
exports.Prisma.Cl_transactionsScalarFieldEnum = {
|
|
1585
|
+
transaction_id: 'transaction_id',
|
|
1586
|
+
type: 'type',
|
|
1587
|
+
source_target: 'source_target',
|
|
1588
|
+
source_module: 'source_module',
|
|
1589
|
+
source_ref: 'source_ref',
|
|
1590
|
+
source_refer_id: 'source_refer_id',
|
|
1591
|
+
destination_target: 'destination_target',
|
|
1592
|
+
destination_module: 'destination_module',
|
|
1593
|
+
destination_ref: 'destination_ref',
|
|
1594
|
+
destination_refer_id: 'destination_refer_id',
|
|
1595
|
+
action: 'action',
|
|
1596
|
+
transaction_amount: 'transaction_amount',
|
|
1597
|
+
reference_no: 'reference_no',
|
|
1598
|
+
description: 'description',
|
|
1599
|
+
transaction_status: 'transaction_status',
|
|
1600
|
+
remark: 'remark',
|
|
1601
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1602
|
+
ax_createuserid: 'ax_createuserid',
|
|
1603
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1604
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1605
|
+
ax_isdelete: 'ax_isdelete',
|
|
1606
|
+
ax_istrash: 'ax_istrash',
|
|
1607
|
+
ax_accountid: 'ax_accountid',
|
|
1608
|
+
transaction_no: 'transaction_no',
|
|
1609
|
+
transaction_date: 'transaction_date',
|
|
1610
|
+
internal_reference_no: 'internal_reference_no',
|
|
1611
|
+
internal_remark: 'internal_remark'
|
|
1612
|
+
};
|
|
1613
|
+
|
|
1614
|
+
exports.Prisma.Cl_user_api_keysScalarFieldEnum = {
|
|
1615
|
+
user_api_key_id: 'user_api_key_id',
|
|
1616
|
+
user_id: 'user_id',
|
|
1617
|
+
key_label: 'key_label',
|
|
1618
|
+
api_key: 'api_key',
|
|
1619
|
+
secret_key: 'secret_key',
|
|
1620
|
+
status: 'status',
|
|
1621
|
+
expiry_date: 'expiry_date',
|
|
1622
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1623
|
+
ax_createuserid: 'ax_createuserid',
|
|
1624
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1625
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1626
|
+
ax_isdelete: 'ax_isdelete',
|
|
1627
|
+
ax_istrash: 'ax_istrash',
|
|
1628
|
+
ax_accountid: 'ax_accountid',
|
|
1629
|
+
role_id: 'role_id'
|
|
1630
|
+
};
|
|
1631
|
+
|
|
1632
|
+
exports.Prisma.Cl_user_injection_propsScalarFieldEnum = {
|
|
1633
|
+
user_injection_props_id: 'user_injection_props_id',
|
|
1634
|
+
props_module: 'props_module',
|
|
1635
|
+
props_ref: 'props_ref',
|
|
1636
|
+
is_multiple: 'is_multiple',
|
|
1637
|
+
user_id: 'user_id',
|
|
1638
|
+
branch_id: 'branch_id',
|
|
1639
|
+
type: 'type',
|
|
1640
|
+
props_field: 'props_field',
|
|
1641
|
+
props_value: 'props_value',
|
|
1642
|
+
props_id: 'props_id',
|
|
1643
|
+
props_text: 'props_text',
|
|
1644
|
+
props_numeric: 'props_numeric',
|
|
1645
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1646
|
+
ax_createuserid: 'ax_createuserid',
|
|
1647
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1648
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1649
|
+
ax_isdelete: 'ax_isdelete',
|
|
1650
|
+
ax_istrash: 'ax_istrash',
|
|
1651
|
+
ax_accountid: 'ax_accountid',
|
|
1652
|
+
member_id: 'member_id',
|
|
1653
|
+
props_date: 'props_date',
|
|
1654
|
+
props_date_time: 'props_date_time',
|
|
1655
|
+
props_timestamp: 'props_timestamp',
|
|
1656
|
+
props_integer: 'props_integer',
|
|
1657
|
+
has_multiple_inline: 'has_multiple_inline'
|
|
1658
|
+
};
|
|
1659
|
+
|
|
1660
|
+
exports.Prisma.Cl_user_numbersScalarFieldEnum = {
|
|
1661
|
+
user_number_id: 'user_number_id',
|
|
1662
|
+
year_lbl: 'year_lbl',
|
|
1663
|
+
month_lbl: 'month_lbl',
|
|
1664
|
+
increment_no: 'increment_no',
|
|
1665
|
+
type: 'type',
|
|
1666
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1667
|
+
ax_createuserid: 'ax_createuserid',
|
|
1668
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1669
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1670
|
+
ax_isdelete: 'ax_isdelete',
|
|
1671
|
+
ax_istrash: 'ax_istrash',
|
|
1672
|
+
ax_accountid: 'ax_accountid'
|
|
1673
|
+
};
|
|
1674
|
+
|
|
1675
|
+
exports.Prisma.Cl_wallet_usersScalarFieldEnum = {
|
|
1676
|
+
wallet_user_id: 'wallet_user_id',
|
|
1677
|
+
wallet_id: 'wallet_id',
|
|
1678
|
+
user_id: 'user_id',
|
|
1679
|
+
wallet_amount: 'wallet_amount',
|
|
1680
|
+
status: 'status',
|
|
1681
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1682
|
+
ax_createuserid: 'ax_createuserid',
|
|
1683
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1684
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1685
|
+
ax_isdelete: 'ax_isdelete',
|
|
1686
|
+
ax_istrash: 'ax_istrash',
|
|
1687
|
+
ax_accountid: 'ax_accountid'
|
|
1688
|
+
};
|
|
1689
|
+
|
|
1690
|
+
exports.Prisma.Cl_walletsScalarFieldEnum = {
|
|
1691
|
+
wallet_id: 'wallet_id',
|
|
1692
|
+
name: 'name',
|
|
1693
|
+
currency: 'currency',
|
|
1694
|
+
currency_symbol: 'currency_symbol',
|
|
1695
|
+
primary_wallet: 'primary_wallet',
|
|
1696
|
+
conversion_rate: 'conversion_rate',
|
|
1697
|
+
description: 'description',
|
|
1698
|
+
status: 'status',
|
|
1699
|
+
ax_createdatetime: 'ax_createdatetime',
|
|
1700
|
+
ax_createuserid: 'ax_createuserid',
|
|
1701
|
+
ax_updatedatetime: 'ax_updatedatetime',
|
|
1702
|
+
ax_updateuserid: 'ax_updateuserid',
|
|
1703
|
+
ax_isdelete: 'ax_isdelete',
|
|
1704
|
+
ax_istrash: 'ax_istrash',
|
|
1705
|
+
ax_accountid: 'ax_accountid',
|
|
1706
|
+
wallet_key: 'wallet_key'
|
|
1707
|
+
};
|
|
1708
|
+
|
|
1709
|
+
exports.Prisma.CustomersScalarFieldEnum = {
|
|
1710
|
+
customer_id: 'customer_id',
|
|
1711
|
+
user_id: 'user_id',
|
|
1712
|
+
company_name: 'company_name',
|
|
1713
|
+
code: 'code',
|
|
1714
|
+
reg_no: 'reg_no',
|
|
1715
|
+
gst_no: 'gst_no',
|
|
1716
|
+
remark: 'remark',
|
|
1717
|
+
createdatetime: 'createdatetime',
|
|
1718
|
+
createuserid: 'createuserid',
|
|
1719
|
+
updatedatetime: 'updatedatetime',
|
|
1720
|
+
updateuserid: 'updateuserid',
|
|
1721
|
+
isdelete: 'isdelete',
|
|
1722
|
+
istrash: 'istrash',
|
|
1723
|
+
accountid: 'accountid',
|
|
1724
|
+
account_code: 'account_code',
|
|
1725
|
+
tax_identification_no: 'tax_identification_no',
|
|
1726
|
+
tax_registration_no: 'tax_registration_no',
|
|
1727
|
+
secondary_reg_no: 'secondary_reg_no'
|
|
1728
|
+
};
|
|
1729
|
+
|
|
1730
|
+
exports.Prisma.UsersScalarFieldEnum = {
|
|
1731
|
+
user_id: 'user_id',
|
|
1732
|
+
login_username: 'login_username',
|
|
1733
|
+
login_password: 'login_password',
|
|
1734
|
+
user_type: 'user_type',
|
|
1735
|
+
firstname: 'firstname',
|
|
1736
|
+
lastname: 'lastname',
|
|
1737
|
+
contact: 'contact',
|
|
1738
|
+
email: 'email',
|
|
1739
|
+
address: 'address',
|
|
1740
|
+
status: 'status',
|
|
1741
|
+
createdatetime: 'createdatetime',
|
|
1742
|
+
createuserid: 'createuserid',
|
|
1743
|
+
updatedatetime: 'updatedatetime',
|
|
1744
|
+
updateuserid: 'updateuserid',
|
|
1745
|
+
isdelete: 'isdelete',
|
|
1746
|
+
istrash: 'istrash',
|
|
1747
|
+
accountid: 'accountid'
|
|
1748
|
+
};
|
|
1749
|
+
|
|
1750
|
+
exports.Prisma.AreasScalarFieldEnum = {
|
|
1751
|
+
area_id: 'area_id',
|
|
1752
|
+
area_name: 'area_name',
|
|
1753
|
+
state_id: 'state_id',
|
|
1754
|
+
postcode_string: 'postcode_string',
|
|
1755
|
+
status: 'status',
|
|
1756
|
+
createdatetime: 'createdatetime',
|
|
1757
|
+
createuserid: 'createuserid',
|
|
1758
|
+
updatedatetime: 'updatedatetime',
|
|
1759
|
+
updateuserid: 'updateuserid',
|
|
1760
|
+
isdelete: 'isdelete',
|
|
1761
|
+
istrash: 'istrash',
|
|
1762
|
+
accountid: 'accountid'
|
|
1763
|
+
};
|
|
1764
|
+
|
|
1765
|
+
exports.Prisma.BranchesScalarFieldEnum = {
|
|
1766
|
+
branch_id: 'branch_id',
|
|
1767
|
+
user_id: 'user_id',
|
|
1768
|
+
type: 'type',
|
|
1769
|
+
branch_name: 'branch_name',
|
|
1770
|
+
branch_code: 'branch_code',
|
|
1771
|
+
address_1: 'address_1',
|
|
1772
|
+
address_2: 'address_2',
|
|
1773
|
+
state_id: 'state_id',
|
|
1774
|
+
area: 'area',
|
|
1775
|
+
country_id: 'country_id',
|
|
1776
|
+
postcode: 'postcode',
|
|
1777
|
+
pic_name: 'pic_name',
|
|
1778
|
+
pic_contact: 'pic_contact',
|
|
1779
|
+
pic_email: 'pic_email',
|
|
1780
|
+
remark: 'remark',
|
|
1781
|
+
is_hq: 'is_hq',
|
|
1782
|
+
createdatetime: 'createdatetime',
|
|
1783
|
+
createuserid: 'createuserid',
|
|
1784
|
+
updatedatetime: 'updatedatetime',
|
|
1785
|
+
updateuserid: 'updateuserid',
|
|
1786
|
+
isdelete: 'isdelete',
|
|
1787
|
+
istrash: 'istrash',
|
|
1788
|
+
accountid: 'accountid',
|
|
1789
|
+
area_id: 'area_id',
|
|
1790
|
+
branch_contact: 'branch_contact',
|
|
1791
|
+
branch_email: 'branch_email',
|
|
1792
|
+
status: 'status'
|
|
1793
|
+
};
|
|
1794
|
+
|
|
1795
|
+
exports.Prisma.CountriesScalarFieldEnum = {
|
|
1796
|
+
country_id: 'country_id',
|
|
1797
|
+
sort_name: 'sort_name',
|
|
1798
|
+
country_name: 'country_name',
|
|
1799
|
+
phone_code: 'phone_code',
|
|
1800
|
+
status: 'status',
|
|
1801
|
+
createdatetime: 'createdatetime',
|
|
1802
|
+
createuserid: 'createuserid',
|
|
1803
|
+
updatedatetime: 'updatedatetime',
|
|
1804
|
+
updateuserid: 'updateuserid',
|
|
1805
|
+
isdelete: 'isdelete',
|
|
1806
|
+
istrash: 'istrash',
|
|
1807
|
+
accountid: 'accountid'
|
|
1808
|
+
};
|
|
1809
|
+
|
|
1810
|
+
exports.Prisma.StatesScalarFieldEnum = {
|
|
1811
|
+
state_id: 'state_id',
|
|
1812
|
+
state_name: 'state_name',
|
|
1813
|
+
country_id: 'country_id',
|
|
1814
|
+
createdatetime: 'createdatetime',
|
|
1815
|
+
createuserid: 'createuserid',
|
|
1816
|
+
updatedatetime: 'updatedatetime',
|
|
1817
|
+
updateuserid: 'updateuserid',
|
|
1818
|
+
isdelete: 'isdelete',
|
|
1819
|
+
istrash: 'istrash',
|
|
1820
|
+
accountid: 'accountid',
|
|
1821
|
+
status: 'status'
|
|
1822
|
+
};
|
|
1823
|
+
|
|
1824
|
+
exports.Prisma.Branch_usersScalarFieldEnum = {
|
|
1825
|
+
branch_user_id: 'branch_user_id',
|
|
1826
|
+
user_id: 'user_id',
|
|
1827
|
+
createdatetime: 'createdatetime',
|
|
1828
|
+
createuserid: 'createuserid',
|
|
1829
|
+
updatedatetime: 'updatedatetime',
|
|
1830
|
+
updateuserid: 'updateuserid',
|
|
1831
|
+
isdelete: 'isdelete',
|
|
1832
|
+
istrash: 'istrash',
|
|
1833
|
+
accountid: 'accountid',
|
|
1834
|
+
parent_user_id: 'parent_user_id'
|
|
1835
|
+
};
|
|
1836
|
+
|
|
1837
|
+
exports.Prisma.User_injection_fieldsScalarFieldEnum = {
|
|
1838
|
+
user_injection_field_id: 'user_injection_field_id',
|
|
1839
|
+
field_module: 'field_module',
|
|
1840
|
+
field_ref: 'field_ref',
|
|
1841
|
+
user_id: 'user_id',
|
|
1842
|
+
branch_id: 'branch_id',
|
|
1843
|
+
member_id: 'member_id',
|
|
1844
|
+
createdatetime: 'createdatetime',
|
|
1845
|
+
createuserid: 'createuserid',
|
|
1846
|
+
updatedatetime: 'updatedatetime',
|
|
1847
|
+
updateuserid: 'updateuserid',
|
|
1848
|
+
isdelete: 'isdelete',
|
|
1849
|
+
istrash: 'istrash',
|
|
1850
|
+
accountid: 'accountid',
|
|
1851
|
+
usr_cust_cust_qty: 'usr_cust_cust_qty',
|
|
1852
|
+
br_cust_branch_qty: 'br_cust_branch_qty',
|
|
1853
|
+
usr_cust_customer_branch_marking: 'usr_cust_customer_branch_marking',
|
|
1854
|
+
br_cust_customer_branch_marking: 'br_cust_customer_branch_marking',
|
|
1855
|
+
usr_cust_customer_marking: 'usr_cust_customer_marking',
|
|
1856
|
+
br_cust_postcode: 'br_cust_postcode',
|
|
1857
|
+
usr_cust_source_agent_remid: 'usr_cust_source_agent_remid',
|
|
1858
|
+
usr_cust_source_client_remid: 'usr_cust_source_client_remid',
|
|
1859
|
+
br_cust_source_marking_remid: 'br_cust_source_marking_remid',
|
|
1860
|
+
usr_cust_source_profile_type: 'usr_cust_source_profile_type',
|
|
1861
|
+
br_cust_branch3_qty: 'br_cust_branch3_qty',
|
|
1862
|
+
usr_mb_member_test: 'usr_mb_member_test',
|
|
1863
|
+
removed_usr_cust_222333223: 'removed_usr_cust_222333223',
|
|
1864
|
+
removed_br_ret_4sdfsdfd7s: 'removed_br_ret_4sdfsdfd7s'
|
|
1865
|
+
};
|
|
1866
|
+
|
|
1867
|
+
exports.Prisma.Group_ownersScalarFieldEnum = {
|
|
1868
|
+
group_owner_id: 'group_owner_id',
|
|
1869
|
+
group_id: 'group_id',
|
|
1870
|
+
user_id: 'user_id',
|
|
1871
|
+
type: 'type',
|
|
1872
|
+
createdatetime: 'createdatetime',
|
|
1873
|
+
createuserid: 'createuserid',
|
|
1874
|
+
updatedatetime: 'updatedatetime',
|
|
1875
|
+
updateuserid: 'updateuserid',
|
|
1876
|
+
isdelete: 'isdelete',
|
|
1877
|
+
istrash: 'istrash',
|
|
1878
|
+
accountid: 'accountid'
|
|
1879
|
+
};
|
|
1880
|
+
|
|
1881
|
+
exports.Prisma.GroupsScalarFieldEnum = {
|
|
1882
|
+
group_id: 'group_id',
|
|
1883
|
+
group_label: 'group_label',
|
|
1884
|
+
group_description: 'group_description',
|
|
1885
|
+
group_type: 'group_type',
|
|
1886
|
+
status: 'status',
|
|
1887
|
+
createdatetime: 'createdatetime',
|
|
1888
|
+
createuserid: 'createuserid',
|
|
1889
|
+
updatedatetime: 'updatedatetime',
|
|
1890
|
+
updateuserid: 'updateuserid',
|
|
1891
|
+
isdelete: 'isdelete',
|
|
1892
|
+
istrash: 'istrash',
|
|
1893
|
+
accountid: 'accountid'
|
|
1894
|
+
};
|
|
1895
|
+
|
|
1896
|
+
exports.Prisma.User_statusScalarFieldEnum = {
|
|
1897
|
+
user_status_id: 'user_status_id',
|
|
1898
|
+
user_id: 'user_id',
|
|
1899
|
+
member_id: 'member_id',
|
|
1900
|
+
type: 'type',
|
|
1901
|
+
status: 'status',
|
|
1902
|
+
createdatetime: 'createdatetime',
|
|
1903
|
+
createuserid: 'createuserid',
|
|
1904
|
+
updatedatetime: 'updatedatetime',
|
|
1905
|
+
updateuserid: 'updateuserid',
|
|
1906
|
+
isdelete: 'isdelete',
|
|
1907
|
+
istrash: 'istrash',
|
|
1908
|
+
accountid: 'accountid'
|
|
1909
|
+
};
|
|
1910
|
+
|
|
1911
|
+
exports.Prisma.LocationsScalarFieldEnum = {
|
|
1912
|
+
location_id: 'location_id',
|
|
1913
|
+
location_name: 'location_name',
|
|
1914
|
+
address_1: 'address_1',
|
|
1915
|
+
address_2: 'address_2',
|
|
1916
|
+
postcode: 'postcode',
|
|
1917
|
+
state_id: 'state_id',
|
|
1918
|
+
area: 'area',
|
|
1919
|
+
country_id: 'country_id',
|
|
1920
|
+
person_name: 'person_name',
|
|
1921
|
+
person_contact: 'person_contact',
|
|
1922
|
+
person_email: 'person_email',
|
|
1923
|
+
status: 'status',
|
|
1924
|
+
createdatetime: 'createdatetime',
|
|
1925
|
+
createuserid: 'createuserid',
|
|
1926
|
+
updatedatetime: 'updatedatetime',
|
|
1927
|
+
updateuserid: 'updateuserid',
|
|
1928
|
+
isdelete: 'isdelete',
|
|
1929
|
+
istrash: 'istrash',
|
|
1930
|
+
accountid: 'accountid',
|
|
1931
|
+
is_default: 'is_default',
|
|
1932
|
+
location_type: 'location_type',
|
|
1933
|
+
area_id: 'area_id',
|
|
1934
|
+
location_code: 'location_code'
|
|
1935
|
+
};
|
|
1936
|
+
|
|
1937
|
+
exports.Prisma.User_propsScalarFieldEnum = {
|
|
1938
|
+
user_props_id: 'user_props_id',
|
|
1939
|
+
user_id: 'user_id',
|
|
1940
|
+
type: 'type',
|
|
1941
|
+
props_value: 'props_value',
|
|
1942
|
+
props_id: 'props_id',
|
|
1943
|
+
props_numeric: 'props_numeric',
|
|
1944
|
+
props_timestamp: 'props_timestamp',
|
|
1945
|
+
createdatetime: 'createdatetime',
|
|
1946
|
+
createuserid: 'createuserid',
|
|
1947
|
+
updatedatetime: 'updatedatetime',
|
|
1948
|
+
updateuserid: 'updateuserid',
|
|
1949
|
+
isdelete: 'isdelete',
|
|
1950
|
+
istrash: 'istrash',
|
|
1951
|
+
accountid: 'accountid',
|
|
1952
|
+
props_integer: 'props_integer'
|
|
1953
|
+
};
|
|
1954
|
+
|
|
1955
|
+
exports.Prisma.WorkersScalarFieldEnum = {
|
|
1956
|
+
worker_id: 'worker_id',
|
|
1957
|
+
user_id: 'user_id',
|
|
1958
|
+
remark: 'remark',
|
|
1959
|
+
createdatetime: 'createdatetime',
|
|
1960
|
+
createuserid: 'createuserid',
|
|
1961
|
+
updatedatetime: 'updatedatetime',
|
|
1962
|
+
updateuserid: 'updateuserid',
|
|
1963
|
+
isdelete: 'isdelete',
|
|
1964
|
+
istrash: 'istrash',
|
|
1965
|
+
accountid: 'accountid'
|
|
1966
|
+
};
|
|
1967
|
+
|
|
1968
|
+
exports.Prisma.Location_racksScalarFieldEnum = {
|
|
1969
|
+
location_rack_id: 'location_rack_id',
|
|
1970
|
+
location_id: 'location_id',
|
|
1971
|
+
rack_name: 'rack_name',
|
|
1972
|
+
rack_sequence: 'rack_sequence',
|
|
1973
|
+
status: 'status',
|
|
1974
|
+
createdatetime: 'createdatetime',
|
|
1975
|
+
createuserid: 'createuserid',
|
|
1976
|
+
updatedatetime: 'updatedatetime',
|
|
1977
|
+
updateuserid: 'updateuserid',
|
|
1978
|
+
isdelete: 'isdelete',
|
|
1979
|
+
istrash: 'istrash',
|
|
1980
|
+
accountid: 'accountid',
|
|
1981
|
+
is_default: 'is_default',
|
|
1982
|
+
rack_type: 'rack_type'
|
|
1983
|
+
};
|
|
1984
|
+
|
|
1985
|
+
exports.Prisma.Location_slotsScalarFieldEnum = {
|
|
1986
|
+
location_slot_id: 'location_slot_id',
|
|
1987
|
+
rack_id: 'rack_id',
|
|
1988
|
+
slot_name: 'slot_name',
|
|
1989
|
+
slot_sequence: 'slot_sequence',
|
|
1990
|
+
status: 'status',
|
|
1991
|
+
createdatetime: 'createdatetime',
|
|
1992
|
+
createuserid: 'createuserid',
|
|
1993
|
+
updatedatetime: 'updatedatetime',
|
|
1994
|
+
updateuserid: 'updateuserid',
|
|
1995
|
+
isdelete: 'isdelete',
|
|
1996
|
+
istrash: 'istrash',
|
|
1997
|
+
accountid: 'accountid',
|
|
1998
|
+
is_default: 'is_default'
|
|
1999
|
+
};
|
|
2000
|
+
|
|
2001
|
+
exports.Prisma.Location_zonesScalarFieldEnum = {
|
|
2002
|
+
location_zone_id: 'location_zone_id',
|
|
2003
|
+
location_id: 'location_id',
|
|
2004
|
+
zone_name: 'zone_name',
|
|
2005
|
+
zone_sequence: 'zone_sequence',
|
|
2006
|
+
is_default: 'is_default',
|
|
2007
|
+
status: 'status',
|
|
2008
|
+
createdatetime: 'createdatetime',
|
|
2009
|
+
createuserid: 'createuserid',
|
|
2010
|
+
updatedatetime: 'updatedatetime',
|
|
2011
|
+
updateuserid: 'updateuserid',
|
|
2012
|
+
isdelete: 'isdelete',
|
|
2013
|
+
istrash: 'istrash',
|
|
2014
|
+
accountid: 'accountid',
|
|
2015
|
+
zone_code: 'zone_code'
|
|
2016
|
+
};
|
|
2017
|
+
|
|
2018
|
+
exports.Prisma.Document_injection_fieldsScalarFieldEnum = {
|
|
2019
|
+
document_injection_field_id: 'document_injection_field_id',
|
|
2020
|
+
field_module: 'field_module',
|
|
2021
|
+
field_ref: 'field_ref',
|
|
2022
|
+
document_id: 'document_id',
|
|
2023
|
+
document_item_id: 'document_item_id',
|
|
2024
|
+
document_doc_id: 'document_doc_id',
|
|
2025
|
+
createdatetime: 'createdatetime',
|
|
2026
|
+
createuserid: 'createuserid',
|
|
2027
|
+
updatedatetime: 'updatedatetime',
|
|
2028
|
+
updateuserid: 'updateuserid',
|
|
2029
|
+
isdelete: 'isdelete',
|
|
2030
|
+
istrash: 'istrash',
|
|
2031
|
+
ax_accountid: 'ax_accountid',
|
|
2032
|
+
doc_do_pack_qty2_bk_39: 'doc_do_pack_qty2_bk_39',
|
|
2033
|
+
doc_do_pack_qty2: 'doc_do_pack_qty2',
|
|
2034
|
+
doci_do_pack_item_qty: 'doci_do_pack_item_qty',
|
|
2035
|
+
doc_do_pack_item_qty: 'doc_do_pack_item_qty',
|
|
2036
|
+
doc_so_test: 'doc_so_test',
|
|
2037
|
+
doci_so_testitem: 'doci_so_testitem',
|
|
2038
|
+
doc_so_pack_qty2: 'doc_so_pack_qty2',
|
|
2039
|
+
doc_do_aaaa: 'doc_do_aaaa',
|
|
2040
|
+
doc_do_remark_ids: 'doc_do_remark_ids',
|
|
2041
|
+
doc_do_remark_id: 'doc_do_remark_id',
|
|
2042
|
+
doci_ir_batch_no: 'doci_ir_batch_no',
|
|
2043
|
+
doci_ir_expiry_date: 'doci_ir_expiry_date',
|
|
2044
|
+
doci_ir_production_date: 'doci_ir_production_date',
|
|
2045
|
+
doc_scn_is_adhoc: 'doc_scn_is_adhoc',
|
|
2046
|
+
doc_scn_shipment_address: 'doc_scn_shipment_address',
|
|
2047
|
+
doci_scn_existing_mp_quantity: 'doci_scn_existing_mp_quantity',
|
|
2048
|
+
doci_scn_is_bulk: 'doci_scn_is_bulk',
|
|
2049
|
+
doc_do_is_adhoc: 'doc_do_is_adhoc',
|
|
2050
|
+
doc_do_shipment_address: 'doc_do_shipment_address',
|
|
2051
|
+
doci_do_existing_mp_quantity: 'doci_do_existing_mp_quantity',
|
|
2052
|
+
doci_do_is_bulk: 'doci_do_is_bulk',
|
|
2053
|
+
doc_cs_is_adhoc: 'doc_cs_is_adhoc',
|
|
2054
|
+
doc_cs_shipment_address: 'doc_cs_shipment_address',
|
|
2055
|
+
doci_cs_existing_mp_quantity: 'doci_cs_existing_mp_quantity',
|
|
2056
|
+
doci_cs_is_bulk: 'doci_cs_is_bulk',
|
|
2057
|
+
doc_rdo_is_adhoc: 'doc_rdo_is_adhoc',
|
|
2058
|
+
doc_rdo_shipment_address: 'doc_rdo_shipment_address',
|
|
2059
|
+
doci_rdo_existing_mp_quantity: 'doci_rdo_existing_mp_quantity',
|
|
2060
|
+
doci_rdo_is_bulk: 'doci_rdo_is_bulk',
|
|
2061
|
+
doc_pr_is_adhoc: 'doc_pr_is_adhoc',
|
|
2062
|
+
doc_pr_shipment_address: 'doc_pr_shipment_address',
|
|
2063
|
+
doci_pr_existing_mp_quantity: 'doci_pr_existing_mp_quantity',
|
|
2064
|
+
doci_pr_is_bulk: 'doci_pr_is_bulk',
|
|
2065
|
+
doc_sdn_is_adhoc: 'doc_sdn_is_adhoc',
|
|
2066
|
+
doc_sdn_shipment_address: 'doc_sdn_shipment_address',
|
|
2067
|
+
doci_sdn_existing_mp_quantity: 'doci_sdn_existing_mp_quantity',
|
|
2068
|
+
doci_sdn_is_bulk: 'doci_sdn_is_bulk',
|
|
2069
|
+
removed_doci_do_4sdfsdfd7s: 'removed_doci_do_4sdfsdfd7s'
|
|
2070
|
+
};
|
|
2071
|
+
|
|
2072
|
+
exports.Prisma.Injection_fieldsScalarFieldEnum = {
|
|
2073
|
+
injection_field_id: 'injection_field_id',
|
|
2074
|
+
field_module: 'field_module',
|
|
2075
|
+
field_ref: 'field_ref',
|
|
2076
|
+
field_key: 'field_key',
|
|
2077
|
+
field_name: 'field_name',
|
|
2078
|
+
field_type: 'field_type',
|
|
2079
|
+
is_multiple: 'is_multiple',
|
|
2080
|
+
multiple_count: 'multiple_count',
|
|
2081
|
+
merge_multiple_inline: 'merge_multiple_inline',
|
|
2082
|
+
createdatetime: 'createdatetime',
|
|
2083
|
+
createuserid: 'createuserid',
|
|
2084
|
+
updatedatetime: 'updatedatetime',
|
|
2085
|
+
updateuserid: 'updateuserid',
|
|
2086
|
+
isdelete: 'isdelete',
|
|
2087
|
+
istrash: 'istrash',
|
|
2088
|
+
accountid: 'accountid'
|
|
2089
|
+
};
|
|
2090
|
+
|
|
2091
|
+
exports.Prisma.Item_injection_fieldsScalarFieldEnum = {
|
|
2092
|
+
item_injection_field_id: 'item_injection_field_id',
|
|
2093
|
+
field_module: 'field_module',
|
|
2094
|
+
field_ref: 'field_ref',
|
|
2095
|
+
item_id: 'item_id',
|
|
2096
|
+
item_uid_id: 'item_uid_id',
|
|
2097
|
+
product_id: 'product_id',
|
|
2098
|
+
category_id: 'category_id',
|
|
2099
|
+
brand_id: 'brand_id',
|
|
2100
|
+
uom_id: 'uom_id',
|
|
2101
|
+
createdatetime: 'createdatetime',
|
|
2102
|
+
createuserid: 'createuserid',
|
|
2103
|
+
updatedatetime: 'updatedatetime',
|
|
2104
|
+
updateuserid: 'updateuserid',
|
|
2105
|
+
isdelete: 'isdelete',
|
|
2106
|
+
istrash: 'istrash',
|
|
2107
|
+
accountid: 'accountid',
|
|
2108
|
+
itm_itm_inttest: 'itm_itm_inttest',
|
|
2109
|
+
itm_itm_id1: 'itm_itm_id1',
|
|
2110
|
+
itm_itm_value1: 'itm_itm_value1',
|
|
2111
|
+
itm_itm_date1: 'itm_itm_date1',
|
|
2112
|
+
itm_itm_text1_bk_20: 'itm_itm_text1_bk_20',
|
|
2113
|
+
itm_itm_num1_bk_21: 'itm_itm_num1_bk_21',
|
|
2114
|
+
itm_itm_inttest123: 'itm_itm_inttest123',
|
|
2115
|
+
itm_itm_inttest1234: 'itm_itm_inttest1234',
|
|
2116
|
+
itm_itm_inttest12345: 'itm_itm_inttest12345',
|
|
2117
|
+
itm_itm_inttest123456: 'itm_itm_inttest123456',
|
|
2118
|
+
itm_itm_inttest08: 'itm_itm_inttest08',
|
|
2119
|
+
itm_itm_inttest1234756: 'itm_itm_inttest1234756',
|
|
2120
|
+
itm_itm_test123: 'itm_itm_test123',
|
|
2121
|
+
itm_itm_test1234: 'itm_itm_test1234',
|
|
2122
|
+
itm_itm_pack_qty: 'itm_itm_pack_qty',
|
|
2123
|
+
itm_prt_pack_qty2: 'itm_prt_pack_qty2',
|
|
2124
|
+
itm_itm_test008: 'itm_itm_test008',
|
|
2125
|
+
itm_prt_pack_qty10: 'itm_prt_pack_qty10',
|
|
2126
|
+
itm_prt_50: 'itm_prt_50',
|
|
2127
|
+
itm_prt_500: 'itm_prt_500',
|
|
2128
|
+
itm_prt_rtdsfsdf_bk_37: 'itm_prt_rtdsfsdf_bk_37',
|
|
2129
|
+
yes_bk_38: 'yes_bk_38',
|
|
2130
|
+
itm_itm_customer_marking: 'itm_itm_customer_marking'
|
|
2131
|
+
};
|
|
2132
|
+
|
|
2133
|
+
exports.Prisma.Logistic_injection_fieldsScalarFieldEnum = {
|
|
2134
|
+
logistic_injection_field_id: 'logistic_injection_field_id',
|
|
2135
|
+
field_module: 'field_module',
|
|
2136
|
+
field_ref: 'field_ref',
|
|
2137
|
+
logistic_id: 'logistic_id',
|
|
2138
|
+
createdatetime: 'createdatetime',
|
|
2139
|
+
createuserid: 'createuserid',
|
|
2140
|
+
updatedatetime: 'updatedatetime',
|
|
2141
|
+
updateuserid: 'updateuserid',
|
|
2142
|
+
isdelete: 'isdelete',
|
|
2143
|
+
istrash: 'istrash',
|
|
2144
|
+
accountid: 'accountid',
|
|
2145
|
+
lgt_tpt_repo_t3e2s2: 'lgt_tpt_repo_t3e2s2'
|
|
2146
|
+
};
|
|
2147
|
+
|
|
2148
|
+
exports.Prisma.Repository_injection_fieldsScalarFieldEnum = {
|
|
2149
|
+
repository_injection_field_id: 'repository_injection_field_id',
|
|
2150
|
+
field_module: 'field_module',
|
|
2151
|
+
field_ref: 'field_ref',
|
|
2152
|
+
repository_id: 'repository_id',
|
|
2153
|
+
repository_item_id: 'repository_item_id',
|
|
2154
|
+
createdatetime: 'createdatetime',
|
|
2155
|
+
createuserid: 'createuserid',
|
|
2156
|
+
updatedatetime: 'updatedatetime',
|
|
2157
|
+
updateuserid: 'updateuserid',
|
|
2158
|
+
isdelete: 'isdelete',
|
|
2159
|
+
istrash: 'istrash',
|
|
2160
|
+
accountid: 'accountid',
|
|
2161
|
+
cont_repo_tes: 'cont_repo_tes',
|
|
2162
|
+
repo_cont_repo_t3es: 'repo_cont_repo_t3es',
|
|
2163
|
+
repo_pk_pk_cont: 'repo_pk_pk_cont',
|
|
2164
|
+
repo_itme_pk_pk_cont_item: 'repo_itme_pk_pk_cont_item',
|
|
2165
|
+
repo_itme_cont_pk_cont_item: 'repo_itme_cont_pk_cont_item'
|
|
2166
|
+
};
|
|
2167
|
+
|
|
2168
|
+
exports.Prisma.BrandsScalarFieldEnum = {
|
|
2169
|
+
brand_id: 'brand_id',
|
|
2170
|
+
name: 'name',
|
|
2171
|
+
description: 'description',
|
|
2172
|
+
status: 'status',
|
|
2173
|
+
createdatetime: 'createdatetime',
|
|
2174
|
+
createuserid: 'createuserid',
|
|
2175
|
+
updatedatetime: 'updatedatetime',
|
|
2176
|
+
updateuserid: 'updateuserid',
|
|
2177
|
+
isdelete: 'isdelete',
|
|
2178
|
+
istrash: 'istrash',
|
|
2179
|
+
accountid: 'accountid'
|
|
2180
|
+
};
|
|
2181
|
+
|
|
2182
|
+
exports.Prisma.CategoriesScalarFieldEnum = {
|
|
2183
|
+
category_id: 'category_id',
|
|
2184
|
+
parent_category_id: 'parent_category_id',
|
|
2185
|
+
name: 'name',
|
|
2186
|
+
description: 'description',
|
|
2187
|
+
status: 'status',
|
|
2188
|
+
createdatetime: 'createdatetime',
|
|
2189
|
+
createuserid: 'createuserid',
|
|
2190
|
+
updatedatetime: 'updatedatetime',
|
|
2191
|
+
updateuserid: 'updateuserid',
|
|
2192
|
+
isdelete: 'isdelete',
|
|
2193
|
+
istrash: 'istrash',
|
|
2194
|
+
accountid: 'accountid'
|
|
2195
|
+
};
|
|
2196
|
+
|
|
2197
|
+
exports.Prisma.ItemsScalarFieldEnum = {
|
|
2198
|
+
item_id: 'item_id',
|
|
2199
|
+
item_name: 'item_name',
|
|
2200
|
+
sku_code: 'sku_code',
|
|
2201
|
+
category_id: 'category_id',
|
|
2202
|
+
brand_id: 'brand_id',
|
|
2203
|
+
uom_id: 'uom_id',
|
|
2204
|
+
code: 'code',
|
|
2205
|
+
model: 'model',
|
|
2206
|
+
item_description: 'item_description',
|
|
2207
|
+
cost: 'cost',
|
|
2208
|
+
uom_price: 'uom_price',
|
|
2209
|
+
remark: 'remark',
|
|
2210
|
+
summary: 'summary',
|
|
2211
|
+
gross_weight: 'gross_weight',
|
|
2212
|
+
net_weight: 'net_weight',
|
|
2213
|
+
uom_bal: 'uom_bal',
|
|
2214
|
+
status: 'status',
|
|
2215
|
+
is_package: 'is_package',
|
|
2216
|
+
createdatetime: 'createdatetime',
|
|
2217
|
+
createuserid: 'createuserid',
|
|
2218
|
+
updatedatetime: 'updatedatetime',
|
|
2219
|
+
updateuserid: 'updateuserid',
|
|
2220
|
+
isdelete: 'isdelete',
|
|
2221
|
+
istrash: 'istrash',
|
|
2222
|
+
accountid: 'accountid',
|
|
2223
|
+
product_id: 'product_id',
|
|
2224
|
+
floor_price: 'floor_price',
|
|
2225
|
+
dimension_width: 'dimension_width',
|
|
2226
|
+
dimension_height: 'dimension_height',
|
|
2227
|
+
dimension_length: 'dimension_length',
|
|
2228
|
+
cbm: 'cbm',
|
|
2229
|
+
volume_weight: 'volume_weight'
|
|
2230
|
+
};
|
|
2231
|
+
|
|
2232
|
+
exports.Prisma.ProductsScalarFieldEnum = {
|
|
2233
|
+
product_id: 'product_id',
|
|
2234
|
+
item_name: 'item_name',
|
|
2235
|
+
category_id: 'category_id',
|
|
2236
|
+
brand_id: 'brand_id',
|
|
2237
|
+
model: 'model',
|
|
2238
|
+
description: 'description',
|
|
2239
|
+
summary: 'summary',
|
|
2240
|
+
status: 'status',
|
|
2241
|
+
createdatetime: 'createdatetime',
|
|
2242
|
+
createuserid: 'createuserid',
|
|
2243
|
+
updatedatetime: 'updatedatetime',
|
|
2244
|
+
updateuserid: 'updateuserid',
|
|
2245
|
+
isdelete: 'isdelete',
|
|
2246
|
+
istrash: 'istrash',
|
|
2247
|
+
accountid: 'accountid',
|
|
2248
|
+
product_code: 'product_code'
|
|
2249
|
+
};
|
|
2250
|
+
|
|
2251
|
+
exports.Prisma.UomsScalarFieldEnum = {
|
|
2252
|
+
uom_id: 'uom_id',
|
|
2253
|
+
name: 'name',
|
|
2254
|
+
description: 'description',
|
|
2255
|
+
metric_type: 'metric_type',
|
|
2256
|
+
status: 'status',
|
|
2257
|
+
createdatetime: 'createdatetime',
|
|
2258
|
+
createuserid: 'createuserid',
|
|
2259
|
+
updatedatetime: 'updatedatetime',
|
|
2260
|
+
updateuserid: 'updateuserid',
|
|
2261
|
+
isdelete: 'isdelete',
|
|
2262
|
+
istrash: 'istrash',
|
|
2263
|
+
accountid: 'accountid',
|
|
2264
|
+
metric_type_display_name: 'metric_type_display_name',
|
|
2265
|
+
decimal_digit: 'decimal_digit'
|
|
2266
|
+
};
|
|
2267
|
+
|
|
2268
|
+
exports.Prisma.SortOrder = {
|
|
2269
|
+
asc: 'asc',
|
|
2270
|
+
desc: 'desc'
|
|
2271
|
+
};
|
|
2272
|
+
|
|
2273
|
+
exports.Prisma.QueryMode = {
|
|
2274
|
+
default: 'default',
|
|
2275
|
+
insensitive: 'insensitive'
|
|
2276
|
+
};
|
|
2277
|
+
|
|
2278
|
+
exports.Prisma.NullsOrder = {
|
|
2279
|
+
first: 'first',
|
|
2280
|
+
last: 'last'
|
|
2281
|
+
};
|
|
2282
|
+
|
|
2283
|
+
|
|
2284
|
+
exports.Prisma.ModelName = {
|
|
2285
|
+
accounts: 'accounts',
|
|
2286
|
+
administrators: 'administrators',
|
|
2287
|
+
businesses: 'businesses',
|
|
2288
|
+
cl_a_test: 'cl_a_test',
|
|
2289
|
+
cl_account_props: 'cl_account_props',
|
|
2290
|
+
cl_audit_item_uids: 'cl_audit_item_uids',
|
|
2291
|
+
cl_audit_trail_props: 'cl_audit_trail_props',
|
|
2292
|
+
cl_audit_trail_tags: 'cl_audit_trail_tags',
|
|
2293
|
+
cl_audit_trails: 'cl_audit_trails',
|
|
2294
|
+
cl_branch_props: 'cl_branch_props',
|
|
2295
|
+
cl_counters: 'cl_counters',
|
|
2296
|
+
cl_custom_field_options: 'cl_custom_field_options',
|
|
2297
|
+
cl_custom_field_rules: 'cl_custom_field_rules',
|
|
2298
|
+
cl_custom_fields: 'cl_custom_fields',
|
|
2299
|
+
cl_doc_numbers: 'cl_doc_numbers',
|
|
2300
|
+
cl_document_adjustments: 'cl_document_adjustments',
|
|
2301
|
+
cl_document_amounts: 'cl_document_amounts',
|
|
2302
|
+
cl_document_dependencies: 'cl_document_dependencies',
|
|
2303
|
+
cl_document_docs: 'cl_document_docs',
|
|
2304
|
+
cl_document_injection_field_items: 'cl_document_injection_field_items',
|
|
2305
|
+
cl_document_injection_props: 'cl_document_injection_props',
|
|
2306
|
+
cl_document_items: 'cl_document_items',
|
|
2307
|
+
cl_document_payments: 'cl_document_payments',
|
|
2308
|
+
cl_document_profiles: 'cl_document_profiles',
|
|
2309
|
+
cl_document_props: 'cl_document_props',
|
|
2310
|
+
cl_document_status: 'cl_document_status',
|
|
2311
|
+
cl_documents: 'cl_documents',
|
|
2312
|
+
cl_drivers: 'cl_drivers',
|
|
2313
|
+
cl_files: 'cl_files',
|
|
2314
|
+
cl_files2: 'cl_files2',
|
|
2315
|
+
cl_group_props: 'cl_group_props',
|
|
2316
|
+
cl_item_amounts: 'cl_item_amounts',
|
|
2317
|
+
cl_item_injection_props: 'cl_item_injection_props',
|
|
2318
|
+
cl_item_props: 'cl_item_props',
|
|
2319
|
+
cl_item_status: 'cl_item_status',
|
|
2320
|
+
cl_item_uids: 'cl_item_uids',
|
|
2321
|
+
cl_location_zone_items: 'cl_location_zone_items',
|
|
2322
|
+
cl_logistic_injection_props: 'cl_logistic_injection_props',
|
|
2323
|
+
cl_logistic_props: 'cl_logistic_props',
|
|
2324
|
+
cl_logistics: 'cl_logistics',
|
|
2325
|
+
cl_members: 'cl_members',
|
|
2326
|
+
cl_messages: 'cl_messages',
|
|
2327
|
+
cl_module_props: 'cl_module_props',
|
|
2328
|
+
cl_module_status: 'cl_module_status',
|
|
2329
|
+
cl_modules: 'cl_modules',
|
|
2330
|
+
cl_packages: 'cl_packages',
|
|
2331
|
+
cl_passcodes: 'cl_passcodes',
|
|
2332
|
+
cl_payment_methods: 'cl_payment_methods',
|
|
2333
|
+
cl_permission_routes: 'cl_permission_routes',
|
|
2334
|
+
cl_rate_amounts: 'cl_rate_amounts',
|
|
2335
|
+
cl_rate_items: 'cl_rate_items',
|
|
2336
|
+
cl_rate_props: 'cl_rate_props',
|
|
2337
|
+
cl_rate_rule_amounts: 'cl_rate_rule_amounts',
|
|
2338
|
+
cl_rate_rule_items: 'cl_rate_rule_items',
|
|
2339
|
+
cl_rate_rule_props: 'cl_rate_rule_props',
|
|
2340
|
+
cl_rate_rules: 'cl_rate_rules',
|
|
2341
|
+
cl_rates: 'cl_rates',
|
|
2342
|
+
cl_ratings: 'cl_ratings',
|
|
2343
|
+
cl_repositories: 'cl_repositories',
|
|
2344
|
+
cl_repository_injection_props: 'cl_repository_injection_props',
|
|
2345
|
+
cl_repository_items: 'cl_repository_items',
|
|
2346
|
+
cl_repository_props: 'cl_repository_props',
|
|
2347
|
+
cl_repository_status: 'cl_repository_status',
|
|
2348
|
+
cl_retailers: 'cl_retailers',
|
|
2349
|
+
cl_role_permissions: 'cl_role_permissions',
|
|
2350
|
+
cl_role_users: 'cl_role_users',
|
|
2351
|
+
cl_roles: 'cl_roles',
|
|
2352
|
+
cl_sales: 'cl_sales',
|
|
2353
|
+
cl_sales_items: 'cl_sales_items',
|
|
2354
|
+
cl_scheduler_logs: 'cl_scheduler_logs',
|
|
2355
|
+
cl_scheduler_requests: 'cl_scheduler_requests',
|
|
2356
|
+
cl_scheduler_tasks: 'cl_scheduler_tasks',
|
|
2357
|
+
cl_setting_amounts: 'cl_setting_amounts',
|
|
2358
|
+
cl_setting_items: 'cl_setting_items',
|
|
2359
|
+
cl_setting_props: 'cl_setting_props',
|
|
2360
|
+
cl_setting_status: 'cl_setting_status',
|
|
2361
|
+
cl_settings: 'cl_settings',
|
|
2362
|
+
cl_settings_old: 'cl_settings_old',
|
|
2363
|
+
cl_suppliers: 'cl_suppliers',
|
|
2364
|
+
cl_transactions: 'cl_transactions',
|
|
2365
|
+
cl_user_api_keys: 'cl_user_api_keys',
|
|
2366
|
+
cl_user_injection_props: 'cl_user_injection_props',
|
|
2367
|
+
cl_user_numbers: 'cl_user_numbers',
|
|
2368
|
+
cl_wallet_users: 'cl_wallet_users',
|
|
2369
|
+
cl_wallets: 'cl_wallets',
|
|
2370
|
+
customers: 'customers',
|
|
2371
|
+
users: 'users',
|
|
2372
|
+
areas: 'areas',
|
|
2373
|
+
branches: 'branches',
|
|
2374
|
+
countries: 'countries',
|
|
2375
|
+
states: 'states',
|
|
2376
|
+
branch_users: 'branch_users',
|
|
2377
|
+
user_injection_fields: 'user_injection_fields',
|
|
2378
|
+
group_owners: 'group_owners',
|
|
2379
|
+
groups: 'groups',
|
|
2380
|
+
user_status: 'user_status',
|
|
2381
|
+
locations: 'locations',
|
|
2382
|
+
user_props: 'user_props',
|
|
2383
|
+
workers: 'workers',
|
|
2384
|
+
location_racks: 'location_racks',
|
|
2385
|
+
location_slots: 'location_slots',
|
|
2386
|
+
location_zones: 'location_zones',
|
|
2387
|
+
document_injection_fields: 'document_injection_fields',
|
|
2388
|
+
injection_fields: 'injection_fields',
|
|
2389
|
+
item_injection_fields: 'item_injection_fields',
|
|
2390
|
+
logistic_injection_fields: 'logistic_injection_fields',
|
|
2391
|
+
repository_injection_fields: 'repository_injection_fields',
|
|
2392
|
+
brands: 'brands',
|
|
2393
|
+
categories: 'categories',
|
|
2394
|
+
items: 'items',
|
|
2395
|
+
products: 'products',
|
|
2396
|
+
uoms: 'uoms'
|
|
2397
|
+
};
|
|
2398
|
+
/**
|
|
2399
|
+
* Create the Client
|
|
2400
|
+
*/
|
|
2401
|
+
const config = {
|
|
2402
|
+
"generator": {
|
|
2403
|
+
"name": "client",
|
|
2404
|
+
"provider": {
|
|
2405
|
+
"fromEnvVar": null,
|
|
2406
|
+
"value": "prisma-client-js"
|
|
2407
|
+
},
|
|
2408
|
+
"output": {
|
|
2409
|
+
"value": "/Volumes/Projects/nodejs/storemw-api/core-api/src/generated/prisma",
|
|
2410
|
+
"fromEnvVar": null
|
|
2411
|
+
},
|
|
2412
|
+
"config": {
|
|
2413
|
+
"engineType": "library"
|
|
2414
|
+
},
|
|
2415
|
+
"binaryTargets": [
|
|
2416
|
+
{
|
|
2417
|
+
"fromEnvVar": null,
|
|
2418
|
+
"value": "darwin-arm64",
|
|
2419
|
+
"native": true
|
|
2420
|
+
}
|
|
2421
|
+
],
|
|
2422
|
+
"previewFeatures": [],
|
|
2423
|
+
"sourceFilePath": "/Volumes/Projects/nodejs/storemw-api/core-api/prisma/schema.prisma",
|
|
2424
|
+
"isCustomOutput": true
|
|
2425
|
+
},
|
|
2426
|
+
"relativeEnvPaths": {
|
|
2427
|
+
"rootEnvPath": null,
|
|
2428
|
+
"schemaEnvPath": "../../../.env"
|
|
2429
|
+
},
|
|
2430
|
+
"relativePath": "../../../prisma",
|
|
2431
|
+
"clientVersion": "6.16.2",
|
|
2432
|
+
"engineVersion": "1c57fdcd7e44b29b9313256c76699e91c3ac3c43",
|
|
2433
|
+
"datasourceNames": [
|
|
2434
|
+
"db"
|
|
2435
|
+
],
|
|
2436
|
+
"activeProvider": "postgresql",
|
|
2437
|
+
"postinstall": false,
|
|
2438
|
+
"inlineDatasources": {
|
|
2439
|
+
"db": {
|
|
2440
|
+
"url": {
|
|
2441
|
+
"fromEnvVar": "DATABASE_URL",
|
|
2442
|
+
"value": null
|
|
2443
|
+
}
|
|
2444
|
+
}
|
|
2445
|
+
},
|
|
2446
|
+
"inlineSchema": "generator client {\n provider = \"prisma-client-js\"\n output = \"../src/generated/prisma\"\n}\n\ndatasource db {\n provider = \"postgresql\"\n url = env(\"DATABASE_URL\")\n schemas = [\"public\"]\n}\n\nmodel accounts {\n account_id BigInt @id(map: \"cl_accounts_pkey\") @default(autoincrement())\n name String @db.VarChar(128)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n business_id BigInt?\n users_accounts_createuseridTousers users @relation(\"accounts_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"accounts_users_createuserid_fk\")\n users_accounts_updateuseridTousers users @relation(\"accounts_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"accounts_users_updateuserid_fk\")\n businesses_accounts_business_idTobusinesses businesses? @relation(\"accounts_business_idTobusinesses\", fields: [business_id], references: [business_id], onUpdate: NoAction, map: \"users_businesses_fk\")\n administrators administrators[]\n areas areas[]\n branches branches[]\n businesses_businesses_accountidToaccounts businesses[] @relation(\"businesses_accountidToaccounts\")\n countries countries[]\n customers customers[]\n states states[]\n users_users_accountidToaccounts users[] @relation(\"users_accountidToaccounts\")\n\n @@schema(\"public\")\n}\n\nmodel administrators {\n administrator_id BigInt @id(map: \"cl_administrators_pkey\") @default(autoincrement())\n user_id BigInt @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n accounts accounts @relation(fields: [accountid], references: [account_id], onDelete: SetNull, onUpdate: NoAction, map: \"account\")\n users_administrators_createuseridTousers users @relation(\"administrators_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"creator\")\n users_administrators_updateuseridTousers users @relation(\"administrators_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"updater\")\n users_administrators_user_idTousers users @relation(\"administrators_user_idTousers\", fields: [user_id], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"user\")\n\n @@schema(\"public\")\n}\n\nmodel businesses {\n business_id BigInt @id(map: \"cl_businesses_pkey\") @default(autoincrement())\n company_name String? @db.VarChar(256)\n id_number String? @db.VarChar(256)\n website String? @db.VarChar(256)\n email String? @db.VarChar(256)\n company_contact String? @db.VarChar(256)\n address_1 String? @db.VarChar(256)\n address_2 String? @db.VarChar(256)\n state_id BigInt? @default(0)\n area_id BigInt? @default(0)\n country_id BigInt? @default(0)\n postcode String? @db.VarChar(64)\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n accounts_accounts_business_idTobusinesses accounts[] @relation(\"accounts_business_idTobusinesses\")\n accounts_businesses_accountidToaccounts accounts @relation(\"businesses_accountidToaccounts\", fields: [accountid], references: [account_id], onDelete: SetNull, onUpdate: NoAction, map: \"businesses_accounts_fk\")\n users_businesses_createuseridTousers users @relation(\"businesses_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"businesses_users_createuserid_fk\")\n users_businesses_updateuseridTousers users @relation(\"businesses_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"businesses_users_updateuserid_fk\")\n\n @@schema(\"public\")\n}\n\nmodel cl_a_test {\n id BigInt @id(map: \"a_test_pkey\")\n value_1 String? @db.VarChar\n value_2 String? @db.VarChar\n value_3 String? @db.VarChar\n\n @@schema(\"public\")\n}\n\nmodel cl_account_props {\n account_props_id BigInt @id @default(autoincrement())\n account_id BigInt @default(0)\n type String? @db.VarChar(32)\n props_value_type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n is_multiple Boolean? @default(false)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_audit_item_uids {\n audit_uid_id BigInt @id @default(autoincrement())\n item_uid_id BigInt @default(0)\n slot_id BigInt @default(0)\n move_type String @db.VarChar(255)\n is_latest_move BigInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n move_document_item_id BigInt @default(0)\n qty Decimal @default(0) @db.Decimal(10, 4)\n move_document_id BigInt?\n move_document_doc_id BigInt?\n item_id BigInt @default(0)\n location_id BigInt @default(0)\n rack_id BigInt @default(0)\n balance_qty Decimal @default(0) @db.Decimal(10, 4)\n\n @@schema(\"public\")\n}\n\nmodel cl_audit_trail_props {\n audit_trail_props_id BigInt @id @default(autoincrement())\n audit_trail_id BigInt? @default(0)\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_audit_trail_tags {\n audit_trail_tag_id BigInt @id @default(autoincrement())\n audit_trail_id BigInt? @default(0)\n tag_key String @db.VarChar(256)\n tag_value String? @db.VarChar(256)\n tag_label String? @db.VarChar(256)\n tag_description String? @default(\"\")\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_audit_trails {\n audit_trail_id BigInt @id @default(autoincrement())\n target String @db.VarChar(255)\n module String @db.VarChar(255)\n trail_ref String @db.VarChar(255)\n type String @db.VarChar(100)\n description String? @default(\"\")\n refer_id BigInt @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\n/// The underlying table does not contain a valid unique identifier and can therefore currently not be handled by Prisma Client.\nmodel cl_ax {\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@ignore\n @@schema(\"public\")\n}\n\nmodel cl_branch_props {\n branch_props_id BigInt @id @default(autoincrement())\n branch_id BigInt?\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@index([props_id, type], map: \"ids_branch_props_props_id_type\")\n @@index([branch_id, type], map: \"ids_branch_props_type_branch_id\")\n @@schema(\"public\")\n}\n\n/// The underlying table does not contain a valid unique identifier and can therefore currently not be handled by Prisma Client.\nmodel cl_ci_sessions {\n id String @db.VarChar(128)\n ip_address String @db.VarChar(45)\n timestamp Int @default(0)\n data String\n\n @@ignore\n @@schema(\"public\")\n}\n\nmodel cl_counters {\n counter_id BigInt @id @default(autoincrement())\n counter_module String? @db.VarChar(128)\n module_type String? @db.VarChar(256)\n increment_no BigInt?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n year_lbl String? @db.VarChar\n month_lbl String? @db.VarChar\n\n @@schema(\"public\")\n}\n\nmodel cl_custom_field_options {\n custom_field_option_id BigInt @id @default(autoincrement())\n custom_field_id BigInt @default(autoincrement())\n option_key String? @db.VarChar(255)\n option_value String? @db.VarChar(255)\n option_name String? @db.VarChar(255)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_custom_field_rules {\n custom_field_rule_id BigInt @id @default(autoincrement())\n custom_field_id BigInt @default(autoincrement())\n rule_key String @db.VarChar(255)\n rule_value String? @db.VarChar(255)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_custom_fields {\n custom_field_id BigInt @id @default(autoincrement())\n field_key String? @db.VarChar(255)\n field_module String @db.VarChar(255)\n module_function String? @db.VarChar(255)\n field_name String? @db.VarChar(255)\n field_label String? @db.VarChar(255)\n field_type String? @db.VarChar(255)\n field_description String? @db.VarChar(255)\n default_value String? @db.VarChar(255)\n status Int? @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_doc_numbers {\n doc_number_id BigInt @id @default(autoincrement())\n year_lbl String? @db.VarChar(10)\n month_lbl String? @db.VarChar(255)\n increment_no Int? @default(0)\n type String? @db.VarChar(25)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_document_adjustments {\n document_adjustment_id BigInt @id @default(autoincrement())\n adjustment_module String? @db.VarChar(128)\n adjustment_ref String? @db.VarChar(128)\n adjustment_type String? @db.VarChar(128)\n adjustment_action String? @db.VarChar(128)\n target_id BigInt @default(0)\n refer_id BigInt? @default(0)\n adjustment_description String?\n adjustment_amount Decimal? @default(0.00) @db.Decimal(10, 2)\n adjustment_percentage Decimal? @default(0.00) @db.Decimal(10, 2)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_document_amounts {\n document_amount_id BigInt @id(map: \"cl_document_amount_pkey\") @default(autoincrement())\n document_id BigInt @default(0)\n type String @db.VarChar(32)\n display_name String? @db.VarChar(32)\n description String? @db.VarChar(256)\n amount Decimal @default(0.0000) @db.Decimal(20, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@index([document_amount_id], map: \"idx_document_amounts_document_amount_id\")\n @@index([document_id], map: \"idx_document_amounts_document_id\")\n @@index([type], map: \"idx_document_amounts_type\")\n @@schema(\"public\")\n}\n\nmodel cl_document_dependencies {\n document_dependency_id BigInt @id(map: \"cl_document_dependancies_pkey\") @default(autoincrement())\n document_id BigInt @default(0)\n document_item_id BigInt? @default(0)\n document_doc_id BigInt @default(0)\n module String? @db.VarChar(255)\n target String? @db.VarChar(255)\n type String @db.VarChar(32)\n target_id BigInt @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n dependency_ref String? @default(\"\") @db.VarChar(255)\n\n @@schema(\"public\")\n}\n\n/// This model or at least one of its fields has comments in the database, and requires an additional setup for migrations: Read more: https://pris.ly/d/database-comments\nmodel cl_document_docs {\n document_doc_id BigInt @id @default(autoincrement())\n document_id BigInt @default(0)\n doc_id BigInt @default(0)\n doc_number String? @db.VarChar(32)\n doc_date DateTime? @db.Date\n doc_type String? @db.VarChar(32)\n doc_remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@index([document_doc_id, doc_type], map: \"cl_document_docs_document_id_doc_type_index\")\n @@index([doc_id], map: \"ids_document_docs_doc_id\")\n @@index([document_id, doc_id, ax_isdelete], map: \"ids_document_docs_document_id_doc_id_isdelete\")\n @@schema(\"public\")\n}\n\nmodel cl_document_injection_field_items {\n document_injection_field_item_id BigInt @id @default(autoincrement())\n document_injection_field_id BigInt @default(autoincrement())\n field_name String? @db.VarChar(200)\n field_value String? @db.VarChar(256)\n field_id BigInt @default(0)\n field_text String?\n field_numeric Decimal @default(0.0000) @db.Decimal(20, 4)\n field_timestamp BigInt?\n field_date DateTime? @db.Date\n field_date_time DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_document_injection_props {\n document_injection_props_id BigInt @id @default(autoincrement())\n props_module String? @db.VarChar(200)\n props_ref String? @db.VarChar(200)\n is_multiple Int? @default(0) @db.SmallInt\n document_id BigInt @default(0)\n document_item_id BigInt @default(0)\n document_doc_id BigInt @default(0)\n type String? @db.VarChar(200)\n props_field String? @db.VarChar(200)\n props_value String? @db.VarChar(256)\n props_id BigInt? @default(0)\n props_text String?\n props_numeric Decimal? @default(0.0000) @db.Decimal(20, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n props_date DateTime? @db.Date\n props_date_time DateTime? @db.Timestamp(6)\n props_timestamp BigInt?\n props_integer BigInt?\n has_multiple_inline Int? @default(0) @db.SmallInt\n\n @@index([document_id, props_module, props_ref, document_item_id, type, ax_isdelete], map: \"idx_document_injection_props_doc_id_type_ref_module\")\n @@index([type], map: \"idx_document_injection_props_type\")\n @@schema(\"public\")\n}\n\nmodel cl_document_items {\n document_item_id BigInt @id @default(autoincrement())\n document_id BigInt @default(0)\n item_id BigInt @default(0)\n item_name String? @db.VarChar(255)\n code String? @db.VarChar(256)\n description String? @db.VarChar(256)\n unit_amount Decimal? @default(0.0000) @db.Decimal(10, 4)\n quantity Decimal? @default(0.0000) @db.Decimal(10, 4)\n total_amount Decimal? @default(0.0000) @db.Decimal(20, 4)\n uom String? @db.VarChar(256)\n uom_id BigInt? @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n document_doc_id BigInt?\n\n @@index([item_id], map: \"cl_document_items_item_id_index\")\n @@index([document_id], map: \"ids_document_items_document_id\")\n @@schema(\"public\")\n}\n\nmodel cl_document_payments {\n document_payment_id BigInt @id @default(autoincrement())\n payment_type String? @db.VarChar(128)\n payment_date DateTime? @db.Date\n payment_amount Decimal? @default(0.00) @db.Decimal(10, 2)\n receive_amount Decimal? @default(0.00) @db.Decimal(10, 2)\n document_id BigInt @default(0)\n type String? @db.VarChar(128)\n payment_action String? @db.VarChar(128)\n bank_name String? @db.VarChar(128)\n bank_account_name String? @db.VarChar(128)\n bank_account_no String? @db.VarChar(128)\n payment_reference String? @db.VarChar(256)\n payment_post_date DateTime? @db.Date\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_document_profiles {\n document_profile_id BigInt @id @default(autoincrement())\n user_id BigInt @default(0)\n document_id BigInt @default(0)\n type String @db.VarChar(32)\n code String? @db.VarChar(255)\n profile_name String? @db.VarChar(255)\n address_1 String? @db.VarChar(255)\n address_2 String? @db.VarChar(255)\n state_id BigInt? @default(0)\n postcode String? @db.VarChar(11)\n area String? @db.VarChar(255)\n country_id BigInt? @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n user_branch_id BigInt?\n area_id BigInt?\n contact String? @db.VarChar(255)\n email String? @db.VarChar(255)\n name String? @db.VarChar(255)\n\n @@index([country_id], map: \"idx_document_profiles_country_id\")\n @@index([state_id], map: \"idx_document_profiles_state_id\")\n @@schema(\"public\")\n}\n\nmodel cl_document_props {\n document_props_id BigInt @id @default(autoincrement())\n document_id BigInt @default(0)\n document_item_id BigInt?\n type String? @db.VarChar(200)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(20, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n document_doc_id BigInt?\n props_text String?\n props_integer BigInt?\n\n @@index([type], map: \"cl_document_props_type_index\", type: Hash)\n @@schema(\"public\")\n}\n\nmodel cl_document_status {\n document_status_id BigInt @id @default(autoincrement())\n document_id BigInt @default(0)\n type String @db.VarChar(32)\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n document_item_id BigInt @default(0)\n document_doc_id BigInt?\n\n @@index([document_id, type], map: \"ids_document_status_document_id_type\")\n @@index([document_id, type], map: \"idx_document_status_document_id_type_rdoverifyout\")\n @@schema(\"public\")\n}\n\n/// This model or at least one of its fields has comments in the database, and requires an additional setup for migrations: Read more: https://pris.ly/d/database-comments\nmodel cl_documents {\n document_id BigInt @id @default(autoincrement())\n doc_number String? @db.VarChar(32)\n doc_date DateTime? @db.Date\n doc_type String? @db.VarChar(32)\n doc_remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n doc_reference1_id BigInt? @default(0)\n doc_reference1_label String? @db.VarChar(256)\n doc_reference2_id BigInt? @default(0)\n doc_reference2_label String? @db.VarChar(256)\n\n @@index([document_id, doc_type], map: \"cl_documents_document_id_doc_type_index\")\n @@index([ax_createdatetime], map: \"idx_document_created_date\")\n @@index([document_id, ax_createuserid], map: \"idx_document_createuserid\")\n @@index([document_id, ax_updateuserid], map: \"idx_document_updateuserid\")\n @@schema(\"public\")\n}\n\nmodel cl_drivers {\n driver_id BigInt @id @default(autoincrement())\n user_id BigInt @default(0)\n company_name String? @db.VarChar(100)\n remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_files {\n file_id BigInt @id(map: \"cl_files_pkey1\") @default(autoincrement())\n target String @db.VarChar(255)\n module String @db.VarChar(255)\n file_ref String @db.VarChar(255)\n type String @db.VarChar(100)\n action String @db.VarChar(255)\n tag String @db.VarChar(255)\n description String? @db.VarChar(256)\n folder_path String? @db.VarChar(256)\n folder_url String? @db.VarChar(256)\n name String @db.VarChar(256)\n actual_name String @db.VarChar(256)\n refer_id BigInt @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_files2 {\n file_id BigInt @id(map: \"cl_files_pkey\") @default(autoincrement())\n target String @db.VarChar(20)\n action String @db.VarChar(20)\n tag String @db.VarChar(50)\n description String? @db.VarChar(256)\n folder_path String? @db.VarChar(256)\n folder_url String? @db.VarChar(256)\n name String @db.VarChar(256)\n refer_id BigInt @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n type String? @db.VarChar\n actual_name String? @db.VarChar\n\n @@index([target, action, tag, refer_id], map: \"ids_files_target_action_tag_refer_id\")\n @@schema(\"public\")\n}\n\nmodel cl_group_props {\n group_props_id BigInt @id @default(autoincrement())\n group_id BigInt @default(0)\n type String? @db.VarChar(128)\n reference_id BigInt @default(0)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt @default(0)\n group_item_id BigInt?\n props_integer BigInt?\n\n @@index([props_value], map: \"idx_group_props_props_value\")\n @@index([reference_id, type], map: \"idx_group_props_reference_id_type\")\n @@index([group_id], map: \"idxl_group_props_group_id\")\n @@schema(\"public\")\n}\n\nmodel cl_item_amounts {\n item_amount_id BigInt @id(map: \"cl_item_amounts_pk\") @default(autoincrement())\n item_id BigInt?\n item_uid_id BigInt?\n type String? @db.VarChar(32)\n display_name String? @db.VarChar(32)\n description String? @db.VarChar(256)\n amount Decimal? @db.Decimal(15, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@index([item_id, type], map: \"cl_item_amounts_item_id_type_index\")\n @@index([item_uid_id, type], map: \"cl_item_amounts_item_uid_id_type_index\")\n @@index([item_uid_id, type, item_id], map: \"cl_item_amounts_item_uid_id_type_item_id_index\")\n @@index([type], map: \"cl_item_amounts_type_index\", type: Hash)\n @@index([amount], map: \"ids_item_amounts_amount\")\n @@schema(\"public\")\n}\n\nmodel cl_item_injection_props {\n item_injection_props_id BigInt @id @default(autoincrement())\n props_module String? @db.VarChar(200)\n props_ref String? @db.VarChar(200)\n is_multiple Int? @default(0) @db.SmallInt\n item_id BigInt @default(0)\n item_uid_id BigInt @default(0)\n product_id BigInt @default(0)\n reference_id BigInt @default(0)\n type String? @db.VarChar(200)\n props_field String? @db.VarChar(200)\n props_value String? @db.VarChar(256)\n props_id BigInt? @default(0)\n props_text String?\n props_numeric Decimal? @default(0.0000) @db.Decimal(20, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n brand_id BigInt @default(0)\n category_id BigInt @default(0)\n uom_id BigInt @default(0)\n props_date DateTime? @db.Date\n props_date_time DateTime? @db.Timestamp(6)\n props_timestamp BigInt?\n props_integer BigInt?\n has_multiple_inline Int? @default(0) @db.SmallInt\n\n @@index([item_id, product_id, item_uid_id, props_module, props_ref, type, ax_isdelete], map: \"idx_item_injection_props_item_id_type_ref_module\")\n @@schema(\"public\")\n}\n\nmodel cl_item_props {\n item_props_id BigInt @id @default(autoincrement())\n item_id BigInt @default(0)\n type String? @db.VarChar(128)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(20, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt @default(0)\n item_uid_id BigInt? @default(0)\n product_id BigInt?\n reference_id BigInt?\n props_integer BigInt?\n\n @@index([type], map: \"cl_item_props_type_index\", type: Hash)\n @@index([ax_isdelete], map: \"ids_item_props_is_delete\")\n @@index([item_id, ax_isdelete, type], map: \"ids_item_props_item_id_delete_type\")\n @@index([item_id, type], map: \"ids_item_props_item_id_type\")\n @@index([product_id], map: \"ids_item_props_product_id\")\n @@index([props_id], map: \"ids_item_props_props_id\")\n @@index([props_id, props_value], map: \"ids_item_props_props_id_props_value\")\n @@index([props_numeric], map: \"ids_item_props_props_numeric\")\n @@index([props_timestamp], map: \"ids_item_props_props_timestamp\")\n @@index([props_value], map: \"ids_item_props_props_value\")\n @@index([item_id], map: \"idx_item_props_item_id\")\n @@index([item_uid_id], map: \"idx_item_props_item_uid_id\")\n @@index([item_uid_id], map: \"idx_item_uid_id\")\n @@schema(\"public\")\n}\n\nmodel cl_item_status {\n item_status_id BigInt @id @default(autoincrement())\n item_id BigInt @default(0)\n type String @db.VarChar(128)\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt @default(0)\n item_uid_id BigInt?\n\n @@index([item_id], map: \"ids_item_status_item_id\")\n @@index([item_id, type], map: \"ids_item_status_item_id_type\")\n @@index([item_uid_id], map: \"ids_item_status_item_uid_id\")\n @@index([status], map: \"ids_item_status_status\")\n @@schema(\"public\")\n}\n\n/// This model or at least one of its fields has comments in the database, and requires an additional setup for migrations: Read more: https://pris.ly/d/database-comments\nmodel cl_item_uids {\n item_uid_id BigInt @id @default(autoincrement())\n item_id BigInt @default(0)\n barcode String @db.VarChar(255)\n slot_id BigInt @default(0)\n cost Decimal? @default(0.0000) @db.Decimal(10, 4)\n status_type String? @default(dbgenerated(\"0\")) @db.VarChar(255)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n custom_batch_no String? @db.VarChar\n expiry_date DateTime? @db.Date\n\n @@index([slot_id], map: \"idx_item_uids_slot_id\")\n @@index([slot_id], map: \"idx_slot_id\")\n @@schema(\"public\")\n}\n\nmodel cl_location_zone_items {\n location_zone_item_id BigInt @id @default(autoincrement())\n location_zone_id BigInt @default(0)\n item_type String @db.VarChar(255)\n reference_id BigInt?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_logistic_injection_props {\n logistic_injection_props_id BigInt @id @default(autoincrement())\n props_module String? @db.VarChar(200)\n props_ref String? @db.VarChar(200)\n is_multiple Int? @default(0) @db.SmallInt\n logistic_id BigInt @default(0)\n type String? @db.VarChar(200)\n props_field String? @db.VarChar(200)\n props_value String? @db.VarChar(256)\n props_id BigInt? @default(0)\n props_text String?\n props_numeric Decimal? @default(0.0000) @db.Decimal(20, 4)\n props_timestamp BigInt?\n props_date DateTime? @db.Date\n props_date_time DateTime? @db.Timestamp(6)\n props_integer BigInt? @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n has_multiple_inline Int? @default(0) @db.SmallInt\n\n @@schema(\"public\")\n}\n\nmodel cl_logistic_props {\n logistic_props_id BigInt @id @default(autoincrement())\n logistic_id BigInt? @default(0)\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n props_integer BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_logistics {\n logistic_id BigInt @id @default(autoincrement())\n label String? @db.VarChar(100)\n type String? @db.VarChar(32)\n description String? @db.VarChar(256)\n remark String? @db.VarChar(256)\n status Int? @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_members {\n member_id BigInt @id @default(autoincrement())\n user_id BigInt @default(0)\n owner_user_type String? @db.VarChar(100)\n owner_user_id BigInt? @default(0)\n company_name String? @db.VarChar(100)\n code String? @db.VarChar(64)\n address_1 String? @db.VarChar(255)\n address_2 String? @db.VarChar(255)\n postcode String? @db.VarChar(255)\n state_id BigInt? @default(0)\n area String? @db.VarChar(255)\n country_id BigInt? @default(0)\n remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n area_id BigInt?\n identity_no String? @db.VarChar(255)\n gender String? @db.VarChar\n dob DateTime? @db.Date\n\n @@schema(\"public\")\n}\n\nmodel cl_messages {\n message_id BigInt @id @default(autoincrement())\n message String?\n message_type String? @db.VarChar(256)\n message_key String? @db.VarChar(256)\n target String @db.VarChar(255)\n module String @db.VarChar(255)\n message_ref String @db.VarChar(255)\n ref_id BigInt @default(0)\n send_key String? @db.VarChar(256)\n send_destination String @db.VarChar(255)\n send_status String? @db.VarChar(256)\n send_attempt BigInt? @default(0)\n send_datetime DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_module_props {\n module_props_id BigInt @id @default(autoincrement())\n module_id BigInt @default(0)\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n props_value_type String? @db.VarChar(32)\n is_multiple Boolean?\n props_integer BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_module_status {\n module_status_id BigInt @id @default(autoincrement())\n module_id BigInt @default(0)\n type String @db.VarChar(32)\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_modules {\n module_id BigInt @id @default(autoincrement())\n module_name String? @db.VarChar(256)\n module_key String? @db.VarChar(256)\n module_description String?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_packages {\n package_id BigInt @id @default(autoincrement())\n main_item_id BigInt @default(0)\n item_id BigInt @default(0)\n code String? @db.VarChar(32)\n description String? @db.VarChar(128)\n qty Decimal @default(0.0000) @db.Decimal(10, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_passcodes {\n passcode_id BigInt @id @default(autoincrement())\n code String @db.VarChar(256)\n code_type String? @db.VarChar(256)\n code_key String? @db.VarChar(256)\n target String @db.VarChar(255)\n module String @db.VarChar(255)\n code_ref String @db.VarChar(255)\n ref_id BigInt @default(0)\n output_length BigInt @default(autoincrement())\n pattern String? @db.VarChar(256)\n claim_status String? @db.VarChar(256)\n claim_attempt BigInt? @default(0)\n claim_datetime DateTime? @db.Timestamp(6)\n claim_user_id BigInt @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_payment_methods {\n payment_method_id BigInt @id @default(autoincrement())\n name String @db.VarChar(256)\n merchant_code String? @db.VarChar(256)\n merchant_key String? @db.VarChar(256)\n response_url String?\n backend_url String?\n description String?\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_permission_routes {\n permission_route_id BigInt @id @default(autoincrement())\n group_id BigInt @default(0)\n public_route String? @db.VarChar(256)\n is_allow Boolean @default(false)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_amounts {\n rate_amount_id BigInt @id @default(autoincrement())\n rate_id BigInt @default(0)\n rate_item_id BigInt @default(0)\n type String @db.VarChar(32)\n display_name String? @db.VarChar(32)\n description String? @db.VarChar(256)\n amount Decimal @default(0.0000) @db.Decimal(10, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_items {\n rate_item_id BigInt @id @default(autoincrement())\n rate_id BigInt @default(0)\n scope_type String? @db.VarChar(32)\n scope_id BigInt @default(0)\n group_id BigInt @default(0)\n item_rate Decimal? @default(0.0000) @db.Decimal(10, 2)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_props {\n rate_props_id BigInt @id @default(autoincrement())\n rate_id BigInt @default(0)\n rate_item_id BigInt?\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n target String? @db.VarChar(32)\n props_integer BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_rule_amounts {\n rate_rule_amount_id BigInt @id @default(autoincrement())\n rate_rule_id BigInt @default(0)\n rate_rule_item_id BigInt @default(0)\n type String @db.VarChar(32)\n display_name String? @db.VarChar(32)\n description String? @db.VarChar(256)\n amount Decimal @default(0.0000) @db.Decimal(10, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_rule_items {\n rate_rule_item_id BigInt @id @default(autoincrement())\n rate_rule_id BigInt @default(0)\n min_value Decimal @default(0.0000) @db.Decimal(10, 4)\n max_value Decimal @default(0.0000) @db.Decimal(10, 4)\n item_rate Decimal @default(0.0000) @db.Decimal(10, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_rule_props {\n rate_rule_props_id BigInt @id @default(autoincrement())\n rate_rule_id BigInt @default(0)\n rate_rule_item_id BigInt?\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n props_integer BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_rate_rules {\n rate_rule_id BigInt @id @default(autoincrement())\n rule_name String? @db.VarChar(200)\n type String? @db.VarChar(32)\n calculation_type String? @db.VarChar(32)\n description String? @db.VarChar(256)\n status Int? @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n base_fee Decimal? @db.Decimal\n\n @@schema(\"public\")\n}\n\nmodel cl_rates {\n rate_id BigInt @id @default(autoincrement())\n rate_name String? @db.VarChar(200)\n type String? @db.VarChar(32)\n scope_type String? @db.VarChar(32)\n scope_id BigInt? @default(0)\n description String? @db.VarChar(256)\n status Int? @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_ratings {\n rating_id BigInt @id @default(autoincrement())\n target String @db.VarChar(255)\n module String @db.VarChar(255)\n rating_ref String @db.VarChar(255)\n type String @db.VarChar(100)\n evaluator_id BigInt @default(0)\n recipient_id BigInt @default(0)\n description String?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n rating_numeric Decimal? @default(0) @db.Decimal(10, 1)\n rating_value String? @db.VarChar(256)\n\n @@schema(\"public\")\n}\n\nmodel cl_repositories {\n repository_id BigInt @id(map: \"cl_repository_pkey\") @default(autoincrement())\n repo_number String? @db.VarChar(32)\n number_alternative String? @db.VarChar(256)\n number_seal String? @db.VarChar(32)\n number_marking String? @db.VarChar(32)\n repo_date DateTime? @db.Date\n load_date DateTime? @db.Date\n person String? @db.VarChar(256)\n provider String? @db.VarChar(256)\n type String? @db.VarChar(32)\n remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n eta_date DateTime? @db.Date\n\n @@schema(\"public\")\n}\n\nmodel cl_repository_injection_props {\n repository_injection_props_id BigInt @id @default(autoincrement())\n props_module String? @db.VarChar(200)\n props_ref String? @db.VarChar(200)\n is_multiple Int? @default(0) @db.SmallInt\n repository_id BigInt @default(0)\n repository_item_id BigInt @default(0)\n type String? @db.VarChar(200)\n props_field String? @db.VarChar(200)\n props_value String? @db.VarChar(256)\n props_id BigInt? @default(0)\n props_text String?\n props_numeric Decimal? @default(0.0000) @db.Decimal(20, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n props_date DateTime? @db.Date\n props_date_time DateTime? @db.Timestamp(6)\n props_timestamp BigInt?\n props_integer BigInt?\n has_multiple_inline Int? @default(0) @db.SmallInt\n\n @@index([repository_id, repository_item_id, props_module, props_ref, type, ax_isdelete], map: \"idx_repository_injection_props_repository_id_type_ref_module\")\n @@schema(\"public\")\n}\n\nmodel cl_repository_items {\n repository_item_id BigInt @id @default(autoincrement())\n repository_id BigInt @default(0)\n item_id BigInt @default(0)\n quantity Decimal? @default(0.0000) @db.Decimal(10, 4)\n item_name String? @db.VarChar(255)\n code String? @db.VarChar(32)\n description String? @db.VarChar(256)\n remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n unit_amount Decimal? @db.Decimal\n total_amount Decimal? @db.Decimal\n uom String? @db.VarChar(256)\n uom_id BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_repository_props {\n repository_props_id BigInt @id @default(autoincrement())\n repository_id BigInt @default(0)\n repository_item_id BigInt?\n type String? @db.VarChar(32)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(20, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n props_integer BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_repository_status {\n repository_status_id BigInt @id(map: \"cl_repository_status_pk\") @default(autoincrement())\n repository_id BigInt?\n repository_item_id Int?\n type String? @db.VarChar(32)\n status Int? @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_retailers {\n retailer_id BigInt @id @default(autoincrement())\n user_id BigInt @default(0)\n company_name String? @db.VarChar(100)\n code String? @db.VarChar(64)\n account_code String? @db.VarChar(64)\n reg_no String? @db.VarChar(20)\n gst_no String? @db.VarChar(32)\n remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_role_permissions {\n role_permission_id BigInt @id @default(autoincrement())\n role_id BigInt @default(autoincrement())\n permission_type String @db.VarChar(128)\n permission_name String? @db.VarChar(128)\n scope_type String @db.VarChar(128)\n scope_name String @db.VarChar(128)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n is_custom Int? @default(0) @db.SmallInt\n\n @@schema(\"public\")\n}\n\nmodel cl_role_users {\n role_user_id BigInt @id @default(autoincrement())\n user_id BigInt @default(autoincrement())\n role_id BigInt @default(autoincrement())\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_roles {\n role_id BigInt @id @default(autoincrement())\n role_name String @db.VarChar(128)\n role_type String @db.VarChar(128)\n description String?\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_sales {\n sales_id BigInt @id @default(autoincrement())\n customer_id BigInt @default(0)\n doc_number String? @db.VarChar(32)\n doc_date DateTime? @db.Date\n customer_code String? @db.VarChar(64)\n customer_company String? @db.VarChar(64)\n customer_address String? @db.VarChar(1024)\n customer_credit_limit String? @db.VarChar(64)\n customer_agent String? @db.VarChar(256)\n salesperson_id BigInt @default(0)\n reference String? @db.VarChar(256)\n branch_id BigInt @default(0)\n branch_name String? @db.VarChar(256)\n branch_address String? @db.VarChar(1024)\n state_id BigInt @default(0)\n area_id BigInt @default(0)\n postcode String? @db.VarChar(16)\n total_price Decimal @default(0.00) @db.Decimal(10, 2)\n status Int? @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_sales_items {\n sales_item_id BigInt @id @default(autoincrement())\n sales_id BigInt @default(0)\n item_id BigInt @default(0)\n item_code String? @db.VarChar(32)\n item_description String? @db.VarChar(256)\n description_2 String?\n remark_2 String? @db.VarChar(1024)\n packing_1 String? @db.VarChar(256)\n packing_2 String? @db.VarChar(256)\n sales_price Decimal @db.Decimal(10, 4)\n quantity Decimal @db.Decimal(10, 4)\n discount Decimal @db.Decimal(10, 2)\n discount_text String? @db.VarChar(256)\n uom String? @db.VarChar(256)\n note String\n sorting BigInt @default(0)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_scheduler_logs {\n scheduler_log_id BigInt @id @default(autoincrement())\n scheduler_task_id BigInt @default(autoincrement())\n flow_type String @db.VarChar(256)\n target String @db.VarChar(256)\n module String @db.VarChar(256)\n log_ref String @db.VarChar(256)\n action String @db.VarChar(256)\n log_status Int @default(0) @db.SmallInt\n log_message String?\n source_id String? @db.VarChar(256)\n source_type String? @db.VarChar(256)\n destination_id String? @db.VarChar(256)\n destination_type String? @db.VarChar(256)\n source_data String?\n destination_result String?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n destination_submit_data String?\n\n @@index([scheduler_task_id], map: \"idx_scheduler_logs_scheduler_task_id\")\n @@schema(\"public\")\n}\n\nmodel cl_scheduler_requests {\n scheduler_request_id BigInt @id @default(autoincrement())\n source_id BigInt? @default(0)\n request_ref String @db.VarChar(256)\n module String @db.VarChar(256)\n target String @db.VarChar(256)\n integration_id String @db.VarChar(256)\n destination_id String? @db.VarChar(256)\n source_data String?\n action String @db.VarChar(256)\n attempt_no BigInt? @default(0)\n attempt_status Int @default(0) @db.SmallInt\n attempt_result String?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n attempt_datetime DateTime? @db.Timestamp(6)\n\n @@schema(\"public\")\n}\n\nmodel cl_scheduler_tasks {\n scheduler_task_id BigInt @id @default(autoincrement())\n task_key String @db.VarChar(256)\n name String? @db.VarChar(256)\n description String? @db.VarChar(256)\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n integration_id String? @db.VarChar(256)\n\n @@schema(\"public\")\n}\n\nmodel cl_setting_amounts {\n setting_amount_id BigInt @id(map: \"cl_setting_amounts_pk\") @default(autoincrement())\n setting_id BigInt?\n setting_item_id Int?\n type String? @db.VarChar(32)\n display_name String? @db.VarChar(32)\n description String? @db.VarChar(256)\n amount Decimal? @db.Decimal(10, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_setting_items {\n setting_item_id BigInt @id(map: \"cl_setting_items_pk\") @default(autoincrement())\n setting_id BigInt?\n item_name String? @db.VarChar(255)\n description String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_setting_props {\n setting_props_id BigInt @id(map: \"cl_setting_props_pk\") @default(autoincrement())\n setting_id BigInt?\n setting_item_id BigInt?\n props_value String? @db.VarChar(256)\n type String? @db.VarChar(32)\n props_id BigInt?\n props_numeric Decimal? @db.Decimal(10, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n props_integer BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_setting_status {\n setting_status_id BigInt @id(map: \"cl_setting_status_pk\") @default(autoincrement())\n setting_id BigInt?\n setting_item_id Int?\n type String? @db.VarChar(32)\n status Int? @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_settings {\n setting_id BigInt @id @default(autoincrement())\n setting_type String? @db.VarChar(256)\n setting_title String? @db.VarChar(256)\n setting_key String? @db.VarChar(256)\n setting_label String? @db.VarChar(256)\n field_key String? @db.VarChar(256)\n field_label String? @db.VarChar(256)\n field_value String?\n is_default Boolean?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_settings_old {\n setting_id BigInt @id(map: \"cl_settings_pk\") @default(autoincrement())\n setting_type String? @db.VarChar(32)\n setting_name String? @db.VarChar(256)\n setting_remark String? @db.VarChar(256)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt?\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt?\n ax_isdelete Boolean?\n ax_istrash Boolean?\n ax_accountid BigInt?\n\n @@schema(\"public\")\n}\n\nmodel cl_suppliers {\n supplier_id BigInt @id @default(autoincrement())\n user_id BigInt @default(0)\n company_name String? @db.VarChar(100)\n code String? @db.VarChar(64)\n reg_no String? @db.VarChar(255)\n address_1 String? @db.VarChar(255)\n address_2 String? @db.VarChar(255)\n postcode String? @db.VarChar(255)\n state_id BigInt? @default(0)\n area String? @db.VarChar(255)\n country_id BigInt? @default(0)\n bank_name String? @db.VarChar(255)\n bank_acc String? @db.VarChar(255)\n remark String? @db.VarChar(256)\n gst_no String? @db.VarChar(32)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n contact String? @db.VarChar(20)\n area_id BigInt?\n type String? @db.VarChar(256)\n\n @@schema(\"public\")\n}\n\nmodel cl_transactions {\n transaction_id BigInt @id @default(autoincrement())\n type String @db.VarChar(100)\n source_target String? @db.VarChar(255)\n source_module String? @db.VarChar(255)\n source_ref String? @db.VarChar(255)\n source_refer_id BigInt? @default(0)\n destination_target String? @db.VarChar(255)\n destination_module String? @db.VarChar(255)\n destination_ref String? @db.VarChar(255)\n destination_refer_id BigInt? @default(0)\n action String @db.VarChar(255)\n transaction_amount Decimal? @default(0) @db.Decimal(10, 4)\n reference_no String? @db.VarChar(256)\n description String?\n transaction_status String? @db.VarChar(255)\n remark String?\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n transaction_no String? @db.VarChar(256)\n transaction_date DateTime? @db.Date\n internal_reference_no String? @db.VarChar(256)\n internal_remark String?\n\n @@schema(\"public\")\n}\n\nmodel cl_user_api_keys {\n user_api_key_id BigInt @id @default(autoincrement())\n user_id BigInt @default(0)\n key_label String @db.VarChar(255)\n api_key String @db.VarChar(32)\n secret_key String @db.VarChar(32)\n status Int @default(0) @db.SmallInt\n expiry_date DateTime? @db.Timestamp(6)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n role_id Int? @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_user_injection_props {\n user_injection_props_id BigInt @id @default(autoincrement())\n props_module String? @db.VarChar(200)\n props_ref String? @db.VarChar(200)\n is_multiple Int? @default(0) @db.SmallInt\n user_id BigInt @default(0)\n branch_id BigInt @default(0)\n type String? @db.VarChar(200)\n props_field String? @db.VarChar(200)\n props_value String? @db.VarChar(256)\n props_id BigInt? @default(0)\n props_text String?\n props_numeric Decimal? @default(0.0000) @db.Decimal(20, 4)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n member_id BigInt?\n props_date DateTime? @db.Date\n props_date_time DateTime? @db.Timestamp(6)\n props_timestamp BigInt?\n props_integer BigInt?\n has_multiple_inline Int? @default(0) @db.SmallInt\n\n @@index([user_id], map: \"idx_cl_user_injection_props_user_id\")\n @@index([branch_id, props_module, props_ref, type, ax_isdelete], map: \"idx_user_injection_props_branch_id_type_ref_module\")\n @@index([user_id, props_module, props_ref, type, ax_isdelete], map: \"idx_user_injection_props_user_id_type_ref_module\")\n @@schema(\"public\")\n}\n\nmodel cl_user_numbers {\n user_number_id BigInt @id @default(autoincrement())\n year_lbl String? @db.VarChar(10)\n month_lbl String? @db.VarChar(255)\n increment_no Int? @default(0)\n type String? @db.VarChar(25)\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_wallet_users {\n wallet_user_id BigInt @id @default(autoincrement())\n wallet_id BigInt @default(0)\n user_id BigInt @default(0)\n wallet_amount Decimal? @default(0) @db.Decimal(10, 4)\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel cl_wallets {\n wallet_id BigInt @id @default(autoincrement())\n name String @db.VarChar(256)\n currency String? @db.VarChar(256)\n currency_symbol String? @db.VarChar(256)\n primary_wallet Int @default(0) @db.SmallInt\n conversion_rate Decimal? @default(0) @db.Decimal(10, 4)\n description String?\n status Int @default(0) @db.SmallInt\n ax_createdatetime DateTime? @db.Timestamp(6)\n ax_createuserid BigInt @default(0)\n ax_updatedatetime DateTime? @db.Timestamp(6)\n ax_updateuserid BigInt @default(0)\n ax_isdelete Boolean? @default(false)\n ax_istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n wallet_key String? @db.VarChar(255)\n\n @@schema(\"public\")\n}\n\n/// This model has constraints using non-default deferring rules and requires additional setup for migrations. Visit https://pris.ly/d/constraint-deferring for more info.\nmodel customers {\n customer_id BigInt @id(map: \"cl_customers_pkey\") @default(autoincrement())\n user_id BigInt @default(0)\n company_name String? @db.VarChar(100)\n code String? @db.VarChar(64)\n reg_no String? @db.VarChar(20)\n gst_no String? @db.VarChar(32)\n remark String? @db.VarChar(256)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n account_code String? @db.VarChar(256)\n tax_identification_no String? @db.VarChar(256)\n tax_registration_no String? @db.VarChar(256)\n secondary_reg_no String? @db.VarChar(256)\n accounts accounts @relation(fields: [accountid], references: [account_id], onDelete: SetNull, onUpdate: NoAction, map: \"customers_accounts_fk\")\n users_customers_createuseridTousers users @relation(\"customers_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"customers_users_createuserid_fk\")\n users_customers_user_idTousers users @relation(\"customers_user_idTousers\", fields: [user_id], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"customers_users_fk\")\n users_customers_updateuseridTousers users @relation(\"customers_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: SetNull, onUpdate: NoAction, map: \"customers_users_updateuserid_fk\")\n\n @@index([createuserid], map: \"idx_cl_customers_ax_createuserid\")\n @@index([customer_id, createuserid], map: \"idx_cl_customers_ax_createuserid2\")\n @@index([isdelete], map: \"idx_cl_customers_ax_isdelete\")\n @@index([updateuserid], map: \"idx_cl_customers_ax_updateuserid\")\n @@index([customer_id, updateuserid], map: \"idx_cl_customers_ax_updateuserid2\")\n @@index([user_id], map: \"idx_cl_customers_user_id\")\n @@index([createuserid], map: \"idx_customer_ax_createuserid\")\n @@index([updateuserid], map: \"idx_customer_ax_updateuserid\")\n @@index([customer_id, user_id], map: \"idx_customer_user_id\")\n @@index([user_id], map: \"idx_customer_user_id2\")\n @@index([code], map: \"idx_customers_code\")\n @@index([customer_id], map: \"idx_customers_customer_id\")\n @@schema(\"public\")\n}\n\nmodel users {\n user_id BigInt @id(map: \"cl_users_pkey\") @default(autoincrement())\n login_username String? @db.VarChar(30)\n login_password String?\n user_type String? @db.VarChar(255)\n firstname String? @db.VarChar(50)\n lastname String? @db.VarChar(50)\n contact String? @db.VarChar(50)\n email String? @db.VarChar(256)\n address String? @db.VarChar(512)\n status Int? @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n accounts_accounts_createuseridTousers accounts[] @relation(\"accounts_createuseridTousers\")\n accounts_accounts_updateuseridTousers accounts[] @relation(\"accounts_updateuseridTousers\")\n administrators_administrators_createuseridTousers administrators[] @relation(\"administrators_createuseridTousers\")\n administrators_administrators_updateuseridTousers administrators[] @relation(\"administrators_updateuseridTousers\")\n administrators_administrators_user_idTousers administrators[] @relation(\"administrators_user_idTousers\")\n areas_areas_createuseridTousers areas[] @relation(\"areas_createuseridTousers\")\n areas_areas_updateuseridTousers areas[] @relation(\"areas_updateuseridTousers\")\n branches_branches_createuseridTousers branches[] @relation(\"branches_createuseridTousers\")\n branches_branches_updateuseridTousers branches[] @relation(\"branches_updateuseridTousers\")\n branches_branches_user_idTousers branches[] @relation(\"branches_user_idTousers\")\n businesses_businesses_createuseridTousers businesses[] @relation(\"businesses_createuseridTousers\")\n businesses_businesses_updateuseridTousers businesses[] @relation(\"businesses_updateuseridTousers\")\n countries_countries_createuseridTousers countries[] @relation(\"countries_createuseridTousers\")\n countries_countries_updateuseridTousers countries[] @relation(\"countries_updateuseridTousers\")\n customers_customers_createuseridTousers customers[] @relation(\"customers_createuseridTousers\")\n customers_customers_user_idTousers customers[] @relation(\"customers_user_idTousers\")\n customers_customers_updateuseridTousers customers[] @relation(\"customers_updateuseridTousers\")\n states_states_createuseridTousers states[] @relation(\"states_createuseridTousers\")\n states_states_updateuseridTousers states[] @relation(\"states_updateuseridTousers\")\n accounts_users_accountidToaccounts accounts @relation(\"users_accountidToaccounts\", fields: [accountid], references: [account_id], onDelete: SetNull, onUpdate: NoAction, map: \"users_accounts_fk\")\n\n @@schema(\"public\")\n}\n\nmodel areas {\n area_id BigInt @id(map: \"cl_areas_pkey\") @default(autoincrement())\n area_name String @db.VarChar(30)\n state_id BigInt @default(1)\n postcode_string String?\n status Int? @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n accounts accounts @relation(fields: [accountid], references: [account_id], onDelete: NoAction, onUpdate: NoAction, map: \"account\")\n users_areas_createuseridTousers users @relation(\"areas_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"creator\")\n users_areas_updateuseridTousers users @relation(\"areas_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"updater\")\n branches branches[]\n\n @@schema(\"public\")\n}\n\nmodel branches {\n branch_id BigInt @id(map: \"cl_branches_pkey\") @default(autoincrement())\n user_id BigInt @default(0)\n type String? @db.VarChar(32)\n branch_name String? @db.VarChar(128)\n branch_code String? @db.VarChar(128)\n address_1 String? @db.VarChar(256)\n address_2 String? @db.VarChar(256)\n state_id BigInt? @default(0)\n area String? @db.VarChar(255)\n country_id BigInt? @default(0)\n postcode String? @db.VarChar(64)\n pic_name String? @db.VarChar(255)\n pic_contact String? @db.VarChar(255)\n pic_email String? @db.VarChar(255)\n remark String? @db.VarChar(256)\n is_hq Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n area_id BigInt?\n branch_contact String? @db.VarChar\n branch_email String? @db.VarChar\n status Int? @db.SmallInt\n accounts accounts @relation(fields: [accountid], references: [account_id], onDelete: NoAction, onUpdate: NoAction, map: \"account\")\n areas areas? @relation(fields: [area_id], references: [area_id], onDelete: NoAction, onUpdate: NoAction, map: \"area\")\n countries countries? @relation(fields: [country_id], references: [country_id], onDelete: NoAction, onUpdate: NoAction, map: \"country\")\n users_branches_createuseridTousers users @relation(\"branches_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"creator\")\n states states? @relation(fields: [state_id], references: [state_id], onDelete: NoAction, onUpdate: NoAction, map: \"state\")\n users_branches_updateuseridTousers users @relation(\"branches_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"updater\")\n users_branches_user_idTousers users @relation(\"branches_user_idTousers\", fields: [user_id], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"user\")\n\n @@index([branch_id, accountid, isdelete], map: \"idx_cl_branches_account_isdelete\")\n @@schema(\"public\")\n}\n\nmodel countries {\n country_id BigInt @id(map: \"cl_countries_pkey\") @default(autoincrement())\n sort_name String @db.VarChar(3)\n country_name String @db.VarChar(150)\n phone_code Int @default(0)\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n branches branches[]\n accounts accounts @relation(fields: [accountid], references: [account_id], onDelete: NoAction, onUpdate: NoAction, map: \"account\")\n users_countries_createuseridTousers users @relation(\"countries_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"creator\")\n users_countries_updateuseridTousers users @relation(\"countries_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"updater\")\n\n @@schema(\"public\")\n}\n\nmodel states {\n state_id BigInt @id(map: \"cl_states_pkey\") @default(autoincrement())\n state_name String @db.VarChar(30)\n country_id BigInt @default(1)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n status Int? @default(0) @db.SmallInt\n branches branches[]\n accounts accounts @relation(fields: [accountid], references: [account_id], onDelete: NoAction, onUpdate: NoAction, map: \"account\")\n users_states_createuseridTousers users @relation(\"states_createuseridTousers\", fields: [createuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"creator\")\n users_states_updateuseridTousers users @relation(\"states_updateuseridTousers\", fields: [updateuserid], references: [user_id], onDelete: NoAction, onUpdate: NoAction, map: \"updater\")\n\n @@schema(\"public\")\n}\n\nmodel branch_users {\n branch_user_id BigInt @id(map: \"branch_user_pkey\") @unique(map: \"cl_branch_users_customer_id_uindex\") @default(autoincrement())\n user_id BigInt?\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt?\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt?\n isdelete Boolean?\n istrash Boolean?\n accountid BigInt?\n parent_user_id BigInt?\n\n @@schema(\"public\")\n}\n\nmodel user_injection_fields {\n user_injection_field_id BigInt @id(map: \"cl_user_injection_fields_pkey\") @default(autoincrement())\n field_module String? @db.VarChar(200)\n field_ref String? @db.VarChar(200)\n user_id BigInt @default(0)\n branch_id BigInt? @default(0)\n member_id BigInt? @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n usr_cust_cust_qty BigInt? @default(0)\n br_cust_branch_qty BigInt? @default(0)\n usr_cust_customer_branch_marking String? @db.VarChar(255)\n br_cust_customer_branch_marking String? @db.VarChar(255)\n usr_cust_customer_marking String?\n br_cust_postcode String?\n usr_cust_source_agent_remid String? @db.VarChar(255)\n usr_cust_source_client_remid String? @db.VarChar(255)\n br_cust_source_marking_remid String? @db.VarChar(255)\n usr_cust_source_profile_type String? @db.VarChar(255)\n br_cust_branch3_qty Decimal? @default(0) @db.Decimal(20, 4)\n usr_mb_member_test BigInt? @default(0)\n removed_usr_cust_222333223 DateTime? @db.Date\n removed_br_ret_4sdfsdfd7s String?\n\n @@index([branch_id, br_cust_branch3_qty], map: \"idx_inj_fields_customer_br_cust_branch3_qty\")\n @@index([branch_id, br_cust_branch_qty], map: \"idx_inj_fields_customer_br_cust_branch_qty\")\n @@index([branch_id, br_cust_customer_branch_marking], map: \"idx_inj_fields_customer_br_cust_customer_branch_marking\")\n @@index([branch_id, br_cust_postcode], map: \"idx_inj_fields_customer_br_cust_postcode\")\n @@index([branch_id, br_cust_source_marking_remid], map: \"idx_inj_fields_customer_br_cust_source_marking_remid\")\n @@index([user_id, usr_cust_cust_qty], map: \"idx_inj_fields_customer_usr_cust_cust_qty\")\n @@index([user_id, usr_cust_customer_branch_marking], map: \"idx_inj_fields_customer_usr_cust_customer_branch_marking\")\n @@index([user_id, usr_cust_customer_marking], map: \"idx_inj_fields_customer_usr_cust_customer_marking\")\n @@index([user_id, usr_cust_source_agent_remid], map: \"idx_inj_fields_customer_usr_cust_source_agent_remid\")\n @@index([user_id, usr_cust_source_client_remid], map: \"idx_inj_fields_customer_usr_cust_source_client_remid\")\n @@index([user_id, usr_cust_source_profile_type], map: \"idx_inj_fields_customer_usr_cust_source_profile_type\")\n @@index([user_id, usr_mb_member_test], map: \"idx_inj_fields_member_usr_mb_member_test\")\n @@index([branch_id], map: \"idx_user_injection_fields_branch_id\")\n @@index([member_id], map: \"idx_user_injection_fields_member_id\")\n @@index([user_id], map: \"idx_user_injection_fields_user_id\")\n @@schema(\"public\")\n}\n\nmodel group_owners {\n group_owner_id BigInt @id(map: \"cl_group_owners_pkey\") @default(autoincrement())\n group_id BigInt @default(0)\n user_id BigInt @default(0)\n type String @db.VarChar(32)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@index([isdelete], map: \"ids_group_owners_ax_isdelete\")\n @@index([group_id], map: \"idx_group_owners_group_id\")\n @@index([group_id, user_id, isdelete], map: \"idx_group_owners_group_id_user_id\")\n @@index([user_id], map: \"idx_group_owners_user_id\")\n @@schema(\"public\")\n}\n\nmodel groups {\n group_id BigInt @id(map: \"cl_groups_pkey\") @default(autoincrement())\n group_label String? @db.VarChar(30)\n group_description String? @db.VarChar(255)\n group_type String? @db.VarChar(255)\n status Int? @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel user_status {\n user_status_id BigInt @id(map: \"cl_user_status_pkey\") @default(autoincrement())\n user_id BigInt @default(0)\n member_id BigInt @default(0)\n type String @db.VarChar(32)\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel locations {\n location_id BigInt @id(map: \"cl_locations_pkey\") @default(autoincrement())\n location_name String @db.VarChar(255)\n address_1 String? @db.VarChar(255)\n address_2 String? @db.VarChar(255)\n postcode String? @db.VarChar(255)\n state_id BigInt @default(0)\n area String? @db.VarChar(255)\n country_id BigInt @default(0)\n person_name String? @db.VarChar(255)\n person_contact String? @db.VarChar(255)\n person_email String? @db.VarChar(256)\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n is_default Int? @db.SmallInt\n location_type String? @db.VarChar(255)\n area_id BigInt?\n location_code String? @db.VarChar\n\n @@schema(\"public\")\n}\n\nmodel user_props {\n user_props_id BigInt @id(map: \"cl_user_props_pkey\") @default(autoincrement())\n user_id BigInt?\n type String? @db.VarChar(256)\n props_value String? @db.VarChar(256)\n props_id BigInt @default(0)\n props_numeric Decimal @default(0.0000) @db.Decimal(20, 4)\n props_timestamp DateTime? @db.Timestamp(6)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n props_integer BigInt?\n\n @@index([isdelete], map: \"ids_user_props_is_delete\")\n @@index([props_value, props_id, props_numeric, props_timestamp], map: \"idx_cl_user_props_all_value2\")\n @@index([user_id], map: \"idx_cl_user_props_user_id\")\n @@index([user_id], map: \"idx_user_props_user_id\")\n @@schema(\"public\")\n}\n\nmodel workers {\n worker_id BigInt @id(map: \"cl_workers_pkey\") @default(autoincrement())\n user_id BigInt @default(0)\n remark String? @db.VarChar(256)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel location_racks {\n location_rack_id BigInt @id(map: \"cl_location_racks_pkey\") @default(autoincrement())\n location_id BigInt @default(0)\n rack_name String @db.VarChar(255)\n rack_sequence BigInt?\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n is_default Int? @db.SmallInt\n rack_type String? @db.VarChar(255)\n\n @@schema(\"public\")\n}\n\nmodel location_slots {\n location_slot_id BigInt @id(map: \"cl_location_slots_pkey\") @default(autoincrement())\n rack_id BigInt @default(0)\n slot_name String @db.VarChar(255)\n slot_sequence Int? @default(0)\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n is_default Int? @db.SmallInt\n\n @@schema(\"public\")\n}\n\nmodel location_zones {\n location_zone_id BigInt @id(map: \"cl_location_zones_pkey\") @default(autoincrement())\n location_id BigInt @default(0)\n zone_name String @db.VarChar(255)\n zone_sequence BigInt?\n is_default Int @default(0) @db.SmallInt\n status Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n zone_code String? @db.VarChar\n\n @@schema(\"public\")\n}\n\nmodel document_injection_fields {\n document_injection_field_id BigInt @id(map: \"cl_document_injection_fields_pkey\") @default(autoincrement())\n field_module String? @db.VarChar(200)\n field_ref String? @db.VarChar(200)\n document_id BigInt @default(0)\n document_item_id BigInt @default(0)\n document_doc_id BigInt @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n ax_accountid BigInt @default(0)\n doc_do_pack_qty2_bk_39 BigInt @default(0)\n doc_do_pack_qty2 BigInt? @default(0)\n doci_do_pack_item_qty BigInt? @default(0)\n doc_do_pack_item_qty BigInt? @default(0)\n doc_so_test String? @default(\"\") @db.VarChar(256)\n doci_so_testitem String? @default(\"\") @db.VarChar(256)\n doc_so_pack_qty2 BigInt? @default(0)\n doc_do_aaaa BigInt? @default(0)\n doc_do_remark_ids String? @default(\"\") @db.VarChar(256)\n doc_do_remark_id String? @default(\"\") @db.VarChar(256)\n doci_ir_batch_no String? @default(\"\") @db.VarChar(256)\n doci_ir_expiry_date String? @default(\"\") @db.VarChar(256)\n doci_ir_production_date String? @default(\"\") @db.VarChar(256)\n doc_scn_is_adhoc BigInt? @default(0)\n doc_scn_shipment_address String? @default(\"\")\n doci_scn_existing_mp_quantity Decimal? @default(0) @db.Decimal(20, 4)\n doci_scn_is_bulk BigInt? @default(0)\n doc_do_is_adhoc BigInt? @default(0)\n doc_do_shipment_address String? @default(\"\")\n doci_do_existing_mp_quantity Decimal? @default(0) @db.Decimal(20, 4)\n doci_do_is_bulk BigInt? @default(0)\n doc_cs_is_adhoc BigInt? @default(0)\n doc_cs_shipment_address String? @default(\"\")\n doci_cs_existing_mp_quantity Decimal? @default(0) @db.Decimal(20, 4)\n doci_cs_is_bulk BigInt? @default(0)\n doc_rdo_is_adhoc BigInt? @default(0)\n doc_rdo_shipment_address String? @default(\"\")\n doci_rdo_existing_mp_quantity Decimal? @default(0) @db.Decimal(20, 4)\n doci_rdo_is_bulk BigInt? @default(0)\n doc_pr_is_adhoc BigInt? @default(0)\n doc_pr_shipment_address String? @default(\"\")\n doci_pr_existing_mp_quantity Decimal? @default(0) @db.Decimal(20, 4)\n doci_pr_is_bulk BigInt? @default(0)\n doc_sdn_is_adhoc BigInt? @default(0)\n doc_sdn_shipment_address String? @default(\"\")\n doci_sdn_existing_mp_quantity Decimal? @default(0) @db.Decimal(20, 4)\n doci_sdn_is_bulk BigInt? @default(0)\n removed_doci_do_4sdfsdfd7s DateTime? @db.Date\n\n @@index([document_doc_id], map: \"idx_document_injection_fields_document_doc_id\")\n @@index([document_id], map: \"idx_document_injection_fields_document_id\")\n @@index([document_item_id], map: \"idx_document_injection_fields_document_item_id\")\n @@index([document_id, doc_cs_is_adhoc], map: \"idx_inj_fields_cash_sales_doc_cs_is_adhoc\")\n @@index([document_item_id, doci_cs_existing_mp_quantity], map: \"idx_inj_fields_cash_sales_doci_cs_existing_mp_quantity\")\n @@index([document_item_id, doci_cs_is_bulk], map: \"idx_inj_fields_cash_sales_doci_cs_is_bulk\")\n @@index([document_id, doc_do_aaaa], map: \"idx_inj_fields_delivery_doc_do_aaaa\")\n @@index([document_id, doc_do_is_adhoc], map: \"idx_inj_fields_delivery_doc_do_is_adhoc\")\n @@index([document_id, doc_do_pack_item_qty], map: \"idx_inj_fields_delivery_doc_do_pack_item_qty\")\n @@index([document_id, doc_do_pack_qty2_bk_39], map: \"idx_inj_fields_delivery_doc_do_pack_qty2\")\n @@index([document_id, doc_do_remark_id], map: \"idx_inj_fields_delivery_doc_do_remark_id\")\n @@index([document_id, doc_do_remark_ids], map: \"idx_inj_fields_delivery_doc_do_remark_ids\")\n @@index([document_item_id, doci_do_existing_mp_quantity], map: \"idx_inj_fields_delivery_doci_do_existing_mp_quantity\")\n @@index([document_item_id, doci_do_is_bulk], map: \"idx_inj_fields_delivery_doci_do_is_bulk\")\n @@index([document_item_id, doci_do_pack_item_qty], map: \"idx_inj_fields_delivery_doci_do_pack_item_qty\")\n @@index([document_item_id, doci_ir_batch_no], map: \"idx_inj_fields_item_receive_doci_ir_batch_no\")\n @@index([document_item_id, doci_ir_expiry_date], map: \"idx_inj_fields_item_receive_doci_ir_expiry_date\")\n @@index([document_item_id, doci_ir_production_date], map: \"idx_inj_fields_item_receive_doci_ir_production_date\")\n @@index([document_id, doc_pr_is_adhoc], map: \"idx_inj_fields_purchase_return_doc_pr_is_adhoc\")\n @@index([document_item_id, doci_pr_existing_mp_quantity], map: \"idx_inj_fields_purchase_return_doci_pr_existing_mp_quantity\")\n @@index([document_item_id, doci_pr_is_bulk], map: \"idx_inj_fields_purchase_return_doci_pr_is_bulk\")\n @@index([document_id, doc_rdo_is_adhoc], map: \"idx_inj_fields_replacement_delivery_doc_rdo_is_adhoc\")\n @@index([document_item_id, doci_rdo_existing_mp_quantity], map: \"idx_inj_fields_replacement_delivery_doci_rdo_existing_mp_quanti\")\n @@index([document_item_id, doci_rdo_is_bulk], map: \"idx_inj_fields_replacement_delivery_doci_rdo_is_bulk\")\n @@index([document_id, doc_scn_is_adhoc], map: \"idx_inj_fields_sales_credit_note_doc_scn_is_adhoc\")\n @@index([document_item_id, doci_scn_existing_mp_quantity], map: \"idx_inj_fields_sales_credit_note_doci_scn_existing_mp_quantity\")\n @@index([document_item_id, doci_scn_is_bulk], map: \"idx_inj_fields_sales_credit_note_doci_scn_is_bulk\")\n @@index([document_id, doc_sdn_is_adhoc], map: \"idx_inj_fields_sales_debit_note_doc_sdn_is_adhoc\")\n @@index([document_item_id, doci_sdn_existing_mp_quantity], map: \"idx_inj_fields_sales_debit_note_doci_sdn_existing_mp_quantity\")\n @@index([document_item_id, doci_sdn_is_bulk], map: \"idx_inj_fields_sales_debit_note_doci_sdn_is_bulk\")\n @@index([document_id, doc_so_pack_qty2], map: \"idx_inj_fields_sales_doc_so_pack_qty2\")\n @@index([document_id, doc_so_test], map: \"idx_inj_fields_sales_doc_so_test\")\n @@index([document_item_id, doci_so_testitem], map: \"idx_inj_fields_sales_doci_so_testitem\")\n @@schema(\"public\")\n}\n\nmodel injection_fields {\n injection_field_id BigInt @id(map: \"cl_injection_field_definations_pkey\") @default(autoincrement())\n field_module String? @db.VarChar(200)\n field_ref String? @db.VarChar(200)\n field_key String? @db.VarChar(256)\n field_name String? @db.VarChar(256)\n field_type String? @db.VarChar(256)\n is_multiple BigInt? @default(0)\n multiple_count BigInt? @default(0)\n merge_multiple_inline BigInt @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel item_injection_fields {\n item_injection_field_id BigInt @id(map: \"cl_item_injection_fields_pkey\") @default(autoincrement())\n field_module String? @db.VarChar(200)\n field_ref String? @db.VarChar(200)\n item_id BigInt @default(0)\n item_uid_id BigInt @default(0)\n product_id BigInt @default(0)\n category_id BigInt @default(0)\n brand_id BigInt @default(0)\n uom_id BigInt @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n itm_itm_inttest BigInt? @default(0)\n itm_itm_id1 BigInt? @default(0)\n itm_itm_value1 String? @default(\"\") @db.VarChar(256)\n itm_itm_date1 DateTime? @db.Date\n itm_itm_text1_bk_20 String @default(\"\")\n itm_itm_num1_bk_21 Decimal @default(0) @db.Decimal(20, 0)\n itm_itm_inttest123 BigInt? @default(0)\n itm_itm_inttest1234 BigInt? @default(0)\n itm_itm_inttest12345 BigInt? @default(0)\n itm_itm_inttest123456 BigInt? @default(0)\n itm_itm_inttest08 BigInt? @default(0)\n itm_itm_inttest1234756 BigInt? @default(0)\n itm_itm_test123 BigInt? @default(0)\n itm_itm_test1234 BigInt? @default(0)\n itm_itm_pack_qty BigInt? @default(0)\n itm_prt_pack_qty2 BigInt? @default(0)\n itm_itm_test008 BigInt? @default(0)\n itm_prt_pack_qty10 BigInt? @default(0)\n itm_prt_50 Decimal? @default(0) @db.Decimal(20, 0)\n itm_prt_500 Decimal? @default(0) @db.Decimal(20, 0)\n itm_prt_rtdsfsdf_bk_37 String @default(\"\")\n yes_bk_38 BigInt @default(0)\n itm_itm_customer_marking String? @default(\"\") @db.VarChar(256)\n\n @@index([item_id, itm_itm_customer_marking], map: \"idx_inj_fields_item_itm_itm_customer_marking\")\n @@index([item_id, itm_itm_inttest08], map: \"idx_inj_fields_item_itm_itm_inttest08\")\n @@index([item_id, itm_itm_inttest12345], map: \"idx_inj_fields_item_itm_itm_inttest12345\")\n @@index([item_id, itm_itm_inttest123456], map: \"idx_inj_fields_item_itm_itm_inttest123456\")\n @@index([item_id, itm_itm_inttest1234756], map: \"idx_inj_fields_item_itm_itm_inttest1234756\")\n @@index([item_id, itm_itm_pack_qty], map: \"idx_inj_fields_item_itm_itm_pack_qty\")\n @@index([item_id, itm_itm_test008], map: \"idx_inj_fields_item_itm_itm_test008\")\n @@index([item_id, itm_itm_test123], map: \"idx_inj_fields_item_itm_itm_test123\")\n @@index([item_id, itm_itm_test1234], map: \"idx_inj_fields_item_itm_itm_test1234\")\n @@index([product_id, itm_prt_50], map: \"idx_inj_fields_product_itm_prt_50\")\n @@index([product_id, itm_prt_500], map: \"idx_inj_fields_product_itm_prt_500\")\n @@index([product_id, itm_prt_pack_qty10], map: \"idx_inj_fields_product_itm_prt_pack_qty10\")\n @@index([product_id, itm_prt_pack_qty2], map: \"idx_inj_fields_product_itm_prt_pack_qty2\")\n @@index([product_id, itm_prt_rtdsfsdf_bk_37], map: \"idx_inj_fields_product_itm_prt_rtdsfsdf\")\n @@index([product_id, yes_bk_38], map: \"idx_inj_fields_product_itm_prt_yes\")\n @@index([brand_id], map: \"idx_item_injection_fields_brand_id\")\n @@index([category_id], map: \"idx_item_injection_fields_category_id\")\n @@index([item_id], map: \"idx_item_injection_fields_item_id\")\n @@index([product_id], map: \"idx_item_injection_fields_product_id\")\n @@index([uom_id], map: \"idx_item_injection_fields_uom_id\")\n @@schema(\"public\")\n}\n\nmodel logistic_injection_fields {\n logistic_injection_field_id BigInt @id(map: \"cl_logistic_injection_fields_pkey\") @default(autoincrement())\n field_module String? @db.VarChar(200)\n field_ref String? @db.VarChar(200)\n logistic_id BigInt @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n lgt_tpt_repo_t3e2s2 Decimal? @default(0) @db.Decimal(20, 4)\n\n @@index([logistic_id, lgt_tpt_repo_t3e2s2], map: \"idx_inj_fields_transporter_lgt_tpt_repo_t3e2s2\")\n @@index([logistic_id], map: \"idx_logistic_injection_fields_logistic_id\")\n @@schema(\"public\")\n}\n\nmodel repository_injection_fields {\n repository_injection_field_id BigInt @id(map: \"cl_repository_injection_fields_pkey\") @default(autoincrement())\n field_module String? @db.VarChar(200)\n field_ref String? @db.VarChar(200)\n repository_id BigInt @default(0)\n repository_item_id BigInt? @default(0)\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n cont_repo_tes Decimal? @default(0) @map(\"_cont_repo_tes\") @db.Decimal(20, 4)\n repo_cont_repo_t3es Decimal? @default(0) @db.Decimal(20, 4)\n repo_pk_pk_cont Decimal? @default(0) @db.Decimal(20, 4)\n repo_itme_pk_pk_cont_item Decimal? @default(0) @db.Decimal(20, 4)\n repo_itme_cont_pk_cont_item Decimal? @default(0) @db.Decimal(20, 4)\n\n @@index([repository_id, cont_repo_tes], map: \"idx_inj_fields_container__cont_repo_tes\")\n @@index([repository_id, repo_cont_repo_t3es], map: \"idx_inj_fields_container_repo_cont_repo_t3es\")\n @@index([repository_item_id, repo_itme_cont_pk_cont_item], map: \"idx_inj_fields_container_repo_itme_cont_pk_cont_item\")\n @@index([repository_item_id, repo_itme_pk_pk_cont_item], map: \"idx_inj_fields_package_repo_itme_pk_pk_cont_item\")\n @@index([repository_id, repo_pk_pk_cont], map: \"idx_inj_fields_package_repo_pk_pk_cont\")\n @@index([repository_id], map: \"idx_repository_injection_fields_repository_id\")\n @@index([repository_item_id], map: \"idx_repository_injection_fields_repository_item_id\")\n @@schema(\"public\")\n}\n\nmodel brands {\n brand_id BigInt @id(map: \"cl_brands_pkey\") @default(autoincrement())\n name String? @db.VarChar(128)\n description String? @db.VarChar(256)\n status Int? @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@schema(\"public\")\n}\n\nmodel categories {\n category_id BigInt @id(map: \"cl_categories_pkey\") @default(autoincrement())\n parent_category_id BigInt @default(0)\n name String? @db.VarChar(128)\n description String? @db.VarChar(256)\n status Int? @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n\n @@index([category_id], map: \"ids_categories_category_id\")\n @@schema(\"public\")\n}\n\nmodel items {\n item_id BigInt @id(map: \"cl_items_pkey\") @default(autoincrement())\n item_name String? @db.VarChar(255)\n sku_code String? @db.VarChar(255)\n category_id BigInt @default(0)\n brand_id BigInt @default(0)\n uom_id BigInt @default(0)\n code String? @db.VarChar(256)\n model String? @db.VarChar(128)\n item_description String?\n cost Decimal? @default(0.0000) @db.Decimal(10, 4)\n uom_price Decimal? @default(0.0000) @db.Decimal(15, 4)\n remark String?\n summary String? @db.VarChar(256)\n gross_weight Decimal? @default(0.0000) @db.Decimal(10, 4)\n net_weight Decimal? @default(0.0000) @db.Decimal(10, 4)\n uom_bal Decimal @default(0.0000) @db.Decimal(10, 4)\n status Int? @default(0) @db.SmallInt\n is_package Int @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n product_id BigInt @default(0)\n floor_price Decimal? @db.Decimal(10, 4)\n dimension_width Decimal? @default(0.0000) @db.Decimal(10, 4)\n dimension_height Decimal? @db.Decimal(10, 4)\n dimension_length Decimal? @db.Decimal(10, 4)\n cbm Decimal? @db.Decimal(10, 4)\n volume_weight Decimal? @db.Decimal(10, 4)\n\n @@index([product_id], map: \"cl_items_product_id_index\")\n @@index([accountid], map: \"ids_items_account_id\")\n @@index([accountid, isdelete, status], map: \"ids_items_account_status_is_delete\")\n @@index([isdelete], map: \"ids_items_is_delete\")\n @@index([status], map: \"ids_items_status\")\n @@index([uom_id], map: \"ids_items_uom_id\")\n @@schema(\"public\")\n}\n\nmodel products {\n product_id BigInt @id(map: \"cl_goods_pkey\") @default(autoincrement())\n item_name String @db.VarChar(256)\n category_id BigInt @default(0)\n brand_id BigInt? @default(0)\n model String? @db.VarChar(256)\n description String?\n summary String?\n status Int? @default(0) @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n product_code String? @db.VarChar\n\n @@index([brand_id], map: \"ids_products_brand_id\")\n @@index([category_id], map: \"ids_products_category_id\")\n @@index([item_name], map: \"ids_products_item_name\")\n @@index([product_code], map: \"ids_products_product_code\")\n @@schema(\"public\")\n}\n\nmodel uoms {\n uom_id BigInt @id(map: \"cl_uoms_pkey\") @default(autoincrement())\n name String? @db.VarChar(128)\n description String? @db.VarChar(256)\n metric_type String? @db.VarChar(256)\n status Int? @db.SmallInt\n createdatetime DateTime? @db.Timestamp(6)\n createuserid BigInt @default(0)\n updatedatetime DateTime? @db.Timestamp(6)\n updateuserid BigInt @default(0)\n isdelete Boolean? @default(false)\n istrash Boolean? @default(false)\n accountid BigInt @default(0)\n metric_type_display_name String? @db.VarChar(128)\n decimal_digit Int? @default(2) @db.SmallInt\n\n @@index([metric_type], map: \"ids_uoms_metric_type\")\n @@schema(\"public\")\n}\n",
|
|
2447
|
+
"inlineSchemaHash": "d877ec50e612eec00a9d2ab4e68481539917a6481626dacda165b81f5347ad4b",
|
|
2448
|
+
"copyEngine": true
|
|
2449
|
+
}
|
|
2450
|
+
config.dirname = '/'
|
|
2451
|
+
|
|
2452
|
+
config.runtimeDataModel = JSON.parse("{\"models\":{\"accounts\":{\"fields\":[{\"name\":\"account_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"business_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"users_accounts_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"accounts_createuseridTousers\"},{\"name\":\"users_accounts_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"accounts_updateuseridTousers\"},{\"name\":\"businesses_accounts_business_idTobusinesses\",\"kind\":\"object\",\"type\":\"businesses\",\"relationName\":\"accounts_business_idTobusinesses\"},{\"name\":\"administrators\",\"kind\":\"object\",\"type\":\"administrators\",\"relationName\":\"accountsToadministrators\"},{\"name\":\"areas\",\"kind\":\"object\",\"type\":\"areas\",\"relationName\":\"accountsToareas\"},{\"name\":\"branches\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"accountsTobranches\"},{\"name\":\"businesses_businesses_accountidToaccounts\",\"kind\":\"object\",\"type\":\"businesses\",\"relationName\":\"businesses_accountidToaccounts\"},{\"name\":\"countries\",\"kind\":\"object\",\"type\":\"countries\",\"relationName\":\"accountsTocountries\"},{\"name\":\"customers\",\"kind\":\"object\",\"type\":\"customers\",\"relationName\":\"accountsTocustomers\"},{\"name\":\"states\",\"kind\":\"object\",\"type\":\"states\",\"relationName\":\"accountsTostates\"},{\"name\":\"users_users_accountidToaccounts\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"users_accountidToaccounts\"}],\"dbName\":null},\"administrators\":{\"fields\":[{\"name\":\"administrator_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"accounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accountsToadministrators\"},{\"name\":\"users_administrators_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"administrators_createuseridTousers\"},{\"name\":\"users_administrators_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"administrators_updateuseridTousers\"},{\"name\":\"users_administrators_user_idTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"administrators_user_idTousers\"}],\"dbName\":null},\"businesses\":{\"fields\":[{\"name\":\"business_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"company_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"id_number\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"website\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"company_contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"accounts_accounts_business_idTobusinesses\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accounts_business_idTobusinesses\"},{\"name\":\"accounts_businesses_accountidToaccounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"businesses_accountidToaccounts\"},{\"name\":\"users_businesses_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"businesses_createuseridTousers\"},{\"name\":\"users_businesses_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"businesses_updateuseridTousers\"}],\"dbName\":null},\"cl_a_test\":{\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"value_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"value_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"value_3\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_account_props\":{\"fields\":[{\"name\":\"account_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"account_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_audit_item_uids\":{\"fields\":[{\"name\":\"audit_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"slot_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"move_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_latest_move\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"move_document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"qty\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"move_document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"move_document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"location_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rack_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"balance_qty\",\"kind\":\"scalar\",\"type\":\"Decimal\"}],\"dbName\":null},\"cl_audit_trail_props\":{\"fields\":[{\"name\":\"audit_trail_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"audit_trail_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_audit_trail_tags\":{\"fields\":[{\"name\":\"audit_trail_tag_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"audit_trail_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"tag_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tag_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tag_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tag_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_audit_trails\":{\"fields\":[{\"name\":\"audit_trail_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"trail_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"refer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_branch_props\":{\"fields\":[{\"name\":\"branch_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"branch_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_counters\":{\"fields\":[{\"name\":\"counter_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"counter_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"increment_no\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"year_lbl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"month_lbl\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_custom_field_options\":{\"fields\":[{\"name\":\"custom_field_option_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"custom_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"option_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"option_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"option_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_custom_field_rules\":{\"fields\":[{\"name\":\"custom_field_rule_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"custom_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rule_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"rule_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_custom_fields\":{\"fields\":[{\"name\":\"custom_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module_function\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"default_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_doc_numbers\":{\"fields\":[{\"name\":\"doc_number_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"year_lbl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"month_lbl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"increment_no\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_adjustments\":{\"fields\":[{\"name\":\"document_adjustment_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"adjustment_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"adjustment_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"adjustment_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"adjustment_action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"refer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"adjustment_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"adjustment_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"adjustment_percentage\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_amounts\":{\"fields\":[{\"name\":\"document_amount_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"display_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_dependencies\":{\"fields\":[{\"name\":\"document_dependency_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"dependency_ref\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_document_docs\":{\"fields\":[{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_number\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"doc_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_injection_field_items\":{\"fields\":[{\"name\":\"document_injection_field_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"field_timestamp\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"field_date_time\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_injection_props\":{\"fields\":[{\"name\":\"document_injection_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_field\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_date_time\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"has_multiple_inline\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_document_items\":{\"fields\":[{\"name\":\"document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"unit_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"total_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"uom\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uom_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_payments\":{\"fields\":[{\"name\":\"document_payment_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"payment_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"payment_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"payment_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"receive_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"payment_action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"bank_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"bank_account_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"bank_account_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"payment_reference\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"payment_post_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_profiles\":{\"fields\":[{\"name\":\"document_profile_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"profile_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"area\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_branch_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_document_props\":{\"fields\":[{\"name\":\"document_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_document_status\":{\"fields\":[{\"name\":\"document_status_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_documents\":{\"fields\":[{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_number\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"doc_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_reference1_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_reference1_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_reference2_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_reference2_label\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_drivers\":{\"fields\":[{\"name\":\"driver_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"company_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_files\":{\"fields\":[{\"name\":\"file_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"file_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tag\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"folder_path\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"folder_url\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"actual_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"refer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_files2\":{\"fields\":[{\"name\":\"file_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tag\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"folder_path\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"folder_url\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"refer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"actual_name\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_group_props\":{\"fields\":[{\"name\":\"group_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"group_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"reference_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"group_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_item_amounts\":{\"fields\":[{\"name\":\"item_amount_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"display_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_item_injection_props\":{\"fields\":[{\"name\":\"item_injection_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"product_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"reference_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_field\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"brand_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"category_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"uom_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_date_time\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"has_multiple_inline\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_item_props\":{\"fields\":[{\"name\":\"item_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"product_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"reference_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_item_status\":{\"fields\":[{\"name\":\"item_status_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_item_uids\":{\"fields\":[{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"barcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"slot_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"cost\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"custom_batch_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"expiry_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"cl_location_zone_items\":{\"fields\":[{\"name\":\"location_zone_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"location_zone_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"reference_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_logistic_injection_props\":{\"fields\":[{\"name\":\"logistic_injection_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"logistic_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_field\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_date_time\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"has_multiple_inline\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_logistic_props\":{\"fields\":[{\"name\":\"logistic_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"logistic_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_logistics\":{\"fields\":[{\"name\":\"logistic_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_members\":{\"fields\":[{\"name\":\"member_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"owner_user_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"owner_user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"company_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"identity_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"gender\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"dob\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"cl_messages\":{\"fields\":[{\"name\":\"message_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"message\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"message_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"message_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"message_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ref_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"send_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"send_destination\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"send_status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"send_attempt\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"send_datetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_module_props\":{\"fields\":[{\"name\":\"module_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"module_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_value_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_module_status\":{\"fields\":[{\"name\":\"module_status_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"module_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_modules\":{\"fields\":[{\"name\":\"module_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"module_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_packages\":{\"fields\":[{\"name\":\"package_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"main_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"qty\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_passcodes\":{\"fields\":[{\"name\":\"passcode_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ref_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"output_length\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"pattern\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claim_status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"claim_attempt\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"claim_datetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"claim_user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_payment_methods\":{\"fields\":[{\"name\":\"payment_method_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"merchant_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"merchant_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"response_url\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"backend_url\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_permission_routes\":{\"fields\":[{\"name\":\"permission_route_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"group_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"public_route\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_allow\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_amounts\":{\"fields\":[{\"name\":\"rate_amount_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"display_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_items\":{\"fields\":[{\"name\":\"rate_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"scope_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"scope_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"group_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_rate\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_props\":{\"fields\":[{\"name\":\"rate_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_rule_amounts\":{\"fields\":[{\"name\":\"rate_rule_amount_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_rule_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_rule_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"display_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_rule_items\":{\"fields\":[{\"name\":\"rate_rule_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_rule_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"min_value\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"max_value\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"item_rate\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_rule_props\":{\"fields\":[{\"name\":\"rate_rule_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_rule_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_rule_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_rate_rules\":{\"fields\":[{\"name\":\"rate_rule_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rule_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"calculation_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"base_fee\",\"kind\":\"scalar\",\"type\":\"Decimal\"}],\"dbName\":null},\"cl_rates\":{\"fields\":[{\"name\":\"rate_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rate_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"scope_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"scope_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_ratings\":{\"fields\":[{\"name\":\"rating_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"rating_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"evaluator_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"recipient_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rating_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"rating_value\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_repositories\":{\"fields\":[{\"name\":\"repository_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repo_number\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"number_alternative\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"number_seal\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"number_marking\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"repo_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"load_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"person\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"provider\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"eta_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"cl_repository_injection_props\":{\"fields\":[{\"name\":\"repository_injection_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"repository_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_field\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_date_time\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"has_multiple_inline\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_repository_items\":{\"fields\":[{\"name\":\"repository_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"item_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"unit_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"total_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"uom\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uom_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_repository_props\":{\"fields\":[{\"name\":\"repository_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_repository_status\":{\"fields\":[{\"name\":\"repository_status_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_item_id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_retailers\":{\"fields\":[{\"name\":\"retailer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"company_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"account_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"reg_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"gst_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_role_permissions\":{\"fields\":[{\"name\":\"role_permission_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"role_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"permission_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"permission_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"scope_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"scope_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"is_custom\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_role_users\":{\"fields\":[{\"name\":\"role_user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"role_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_roles\":{\"fields\":[{\"name\":\"role_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"role_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"role_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_sales\":{\"fields\":[{\"name\":\"sales_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"customer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_number\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"customer_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"customer_company\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"customer_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"customer_credit_limit\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"customer_agent\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"salesperson_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"reference\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"branch_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"branch_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"branch_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"total_price\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_sales_items\":{\"fields\":[{\"name\":\"sales_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"sales_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"item_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"packing_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"packing_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sales_price\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"discount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"discount_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"uom\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"note\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sorting\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_scheduler_logs\":{\"fields\":[{\"name\":\"scheduler_log_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"scheduler_task_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"flow_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"log_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"log_status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"log_message\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_data\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_result\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"destination_submit_data\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_scheduler_requests\":{\"fields\":[{\"name\":\"scheduler_request_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"source_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"request_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"integration_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_data\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"attempt_no\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"attempt_status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"attempt_result\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"attempt_datetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"cl_scheduler_tasks\":{\"fields\":[{\"name\":\"scheduler_task_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"task_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"integration_id\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_setting_amounts\":{\"fields\":[{\"name\":\"setting_amount_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_item_id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"display_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_setting_items\":{\"fields\":[{\"name\":\"setting_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_setting_props\":{\"fields\":[{\"name\":\"setting_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_setting_status\":{\"fields\":[{\"name\":\"setting_status_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_item_id\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_settings\":{\"fields\":[{\"name\":\"setting_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"setting_title\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"setting_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"setting_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_default\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_settings_old\":{\"fields\":[{\"name\":\"setting_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"setting_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"setting_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"setting_remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_suppliers\":{\"fields\":[{\"name\":\"supplier_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"company_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"reg_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"bank_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"bank_acc\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"gst_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_transactions\":{\"fields\":[{\"name\":\"transaction_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"source_refer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"destination_target\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"destination_refer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"action\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"transaction_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"reference_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"transaction_status\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"transaction_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"transaction_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"internal_reference_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"internal_remark\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"cl_user_api_keys\":{\"fields\":[{\"name\":\"user_api_key_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"key_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"api_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"secret_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"expiry_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"role_id\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_user_injection_props\":{\"fields\":[{\"name\":\"user_injection_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"branch_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_field\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_text\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"member_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_date\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_date_time\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"has_multiple_inline\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"cl_user_numbers\":{\"fields\":[{\"name\":\"user_number_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"year_lbl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"month_lbl\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"increment_no\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_wallet_users\":{\"fields\":[{\"name\":\"wallet_user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"wallet_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"wallet_amount\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"cl_wallets\":{\"fields\":[{\"name\":\"wallet_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"currency\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"currency_symbol\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"primary_wallet\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"conversion_rate\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"ax_createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"ax_updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"ax_isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"wallet_key\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"customers\":{\"fields\":[{\"name\":\"customer_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"company_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"reg_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"gst_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"account_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tax_identification_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"tax_registration_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"secondary_reg_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"accounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accountsTocustomers\"},{\"name\":\"users_customers_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"customers_createuseridTousers\"},{\"name\":\"users_customers_user_idTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"customers_user_idTousers\"},{\"name\":\"users_customers_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"customers_updateuseridTousers\"}],\"dbName\":null},\"users\":{\"fields\":[{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"login_username\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"login_password\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"firstname\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"lastname\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"accounts_accounts_createuseridTousers\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accounts_createuseridTousers\"},{\"name\":\"accounts_accounts_updateuseridTousers\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accounts_updateuseridTousers\"},{\"name\":\"administrators_administrators_createuseridTousers\",\"kind\":\"object\",\"type\":\"administrators\",\"relationName\":\"administrators_createuseridTousers\"},{\"name\":\"administrators_administrators_updateuseridTousers\",\"kind\":\"object\",\"type\":\"administrators\",\"relationName\":\"administrators_updateuseridTousers\"},{\"name\":\"administrators_administrators_user_idTousers\",\"kind\":\"object\",\"type\":\"administrators\",\"relationName\":\"administrators_user_idTousers\"},{\"name\":\"areas_areas_createuseridTousers\",\"kind\":\"object\",\"type\":\"areas\",\"relationName\":\"areas_createuseridTousers\"},{\"name\":\"areas_areas_updateuseridTousers\",\"kind\":\"object\",\"type\":\"areas\",\"relationName\":\"areas_updateuseridTousers\"},{\"name\":\"branches_branches_createuseridTousers\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"branches_createuseridTousers\"},{\"name\":\"branches_branches_updateuseridTousers\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"branches_updateuseridTousers\"},{\"name\":\"branches_branches_user_idTousers\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"branches_user_idTousers\"},{\"name\":\"businesses_businesses_createuseridTousers\",\"kind\":\"object\",\"type\":\"businesses\",\"relationName\":\"businesses_createuseridTousers\"},{\"name\":\"businesses_businesses_updateuseridTousers\",\"kind\":\"object\",\"type\":\"businesses\",\"relationName\":\"businesses_updateuseridTousers\"},{\"name\":\"countries_countries_createuseridTousers\",\"kind\":\"object\",\"type\":\"countries\",\"relationName\":\"countries_createuseridTousers\"},{\"name\":\"countries_countries_updateuseridTousers\",\"kind\":\"object\",\"type\":\"countries\",\"relationName\":\"countries_updateuseridTousers\"},{\"name\":\"customers_customers_createuseridTousers\",\"kind\":\"object\",\"type\":\"customers\",\"relationName\":\"customers_createuseridTousers\"},{\"name\":\"customers_customers_user_idTousers\",\"kind\":\"object\",\"type\":\"customers\",\"relationName\":\"customers_user_idTousers\"},{\"name\":\"customers_customers_updateuseridTousers\",\"kind\":\"object\",\"type\":\"customers\",\"relationName\":\"customers_updateuseridTousers\"},{\"name\":\"states_states_createuseridTousers\",\"kind\":\"object\",\"type\":\"states\",\"relationName\":\"states_createuseridTousers\"},{\"name\":\"states_states_updateuseridTousers\",\"kind\":\"object\",\"type\":\"states\",\"relationName\":\"states_updateuseridTousers\"},{\"name\":\"accounts_users_accountidToaccounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"users_accountidToaccounts\"}],\"dbName\":null},\"areas\":{\"fields\":[{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"postcode_string\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"accounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accountsToareas\"},{\"name\":\"users_areas_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"areas_createuseridTousers\"},{\"name\":\"users_areas_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"areas_updateuseridTousers\"},{\"name\":\"branches\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"areasTobranches\"}],\"dbName\":null},\"branches\":{\"fields\":[{\"name\":\"branch_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"branch_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"branch_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pic_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pic_contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"pic_email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_hq\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"branch_contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"branch_email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"accounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accountsTobranches\"},{\"name\":\"areas\",\"kind\":\"object\",\"type\":\"areas\",\"relationName\":\"areasTobranches\"},{\"name\":\"countries\",\"kind\":\"object\",\"type\":\"countries\",\"relationName\":\"branchesTocountries\"},{\"name\":\"users_branches_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"branches_createuseridTousers\"},{\"name\":\"states\",\"kind\":\"object\",\"type\":\"states\",\"relationName\":\"branchesTostates\"},{\"name\":\"users_branches_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"branches_updateuseridTousers\"},{\"name\":\"users_branches_user_idTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"branches_user_idTousers\"}],\"dbName\":null},\"countries\":{\"fields\":[{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"sort_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"phone_code\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"branches\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"branchesTocountries\"},{\"name\":\"accounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accountsTocountries\"},{\"name\":\"users_countries_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"countries_createuseridTousers\"},{\"name\":\"users_countries_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"countries_updateuseridTousers\"}],\"dbName\":null},\"states\":{\"fields\":[{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"state_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"branches\",\"kind\":\"object\",\"type\":\"branches\",\"relationName\":\"branchesTostates\"},{\"name\":\"accounts\",\"kind\":\"object\",\"type\":\"accounts\",\"relationName\":\"accountsTostates\"},{\"name\":\"users_states_createuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"states_createuseridTousers\"},{\"name\":\"users_states_updateuseridTousers\",\"kind\":\"object\",\"type\":\"users\",\"relationName\":\"states_updateuseridTousers\"}],\"dbName\":null},\"branch_users\":{\"fields\":[{\"name\":\"branch_user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"parent_user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"user_injection_fields\":{\"fields\":[{\"name\":\"user_injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"branch_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"member_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"usr_cust_cust_qty\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"br_cust_branch_qty\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"usr_cust_customer_branch_marking\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"br_cust_customer_branch_marking\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"usr_cust_customer_marking\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"br_cust_postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"usr_cust_source_agent_remid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"usr_cust_source_client_remid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"br_cust_source_marking_remid\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"usr_cust_source_profile_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"br_cust_branch3_qty\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"usr_mb_member_test\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"removed_usr_cust_222333223\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"removed_br_ret_4sdfsdfd7s\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"group_owners\":{\"fields\":[{\"name\":\"group_owner_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"group_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"groups\":{\"fields\":[{\"name\":\"group_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"group_label\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"group_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"group_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"user_status\":{\"fields\":[{\"name\":\"user_status_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"member_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"locations\":{\"fields\":[{\"name\":\"location_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"location_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"address_2\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"postcode\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"state_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"area\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"country_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"person_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"person_contact\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"person_email\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"is_default\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"location_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"area_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"location_code\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"user_props\":{\"fields\":[{\"name\":\"user_props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_value\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"props_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_numeric\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"props_timestamp\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"props_integer\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"workers\":{\"fields\":[{\"name\":\"worker_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"user_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"location_racks\":{\"fields\":[{\"name\":\"location_rack_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"location_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rack_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"rack_sequence\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"is_default\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"rack_type\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"location_slots\":{\"fields\":[{\"name\":\"location_slot_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"rack_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"slot_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"slot_sequence\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"is_default\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null},\"location_zones\":{\"fields\":[{\"name\":\"location_zone_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"location_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"zone_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"zone_sequence\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"is_default\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"zone_code\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"document_injection_fields\":{\"fields\":[{\"name\":\"document_injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"document_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"document_doc_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"ax_accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_pack_qty2_bk_39\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_pack_qty2\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doci_do_pack_item_qty\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_pack_item_qty\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_so_test\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_so_testitem\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_so_pack_qty2\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_aaaa\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_remark_ids\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_do_remark_id\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_ir_batch_no\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_ir_expiry_date\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_ir_production_date\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doc_scn_is_adhoc\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_scn_shipment_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_scn_existing_mp_quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"doci_scn_is_bulk\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_is_adhoc\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_do_shipment_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_do_existing_mp_quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"doci_do_is_bulk\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_cs_is_adhoc\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_cs_shipment_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_cs_existing_mp_quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"doci_cs_is_bulk\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_rdo_is_adhoc\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_rdo_shipment_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_rdo_existing_mp_quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"doci_rdo_is_bulk\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_pr_is_adhoc\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_pr_shipment_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_pr_existing_mp_quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"doci_pr_is_bulk\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_sdn_is_adhoc\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"doc_sdn_shipment_address\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"doci_sdn_existing_mp_quantity\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"doci_sdn_is_bulk\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"removed_doci_do_4sdfsdfd7s\",\"kind\":\"scalar\",\"type\":\"DateTime\"}],\"dbName\":null},\"injection_fields\":{\"fields\":[{\"name\":\"injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_key\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"is_multiple\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"multiple_count\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"merge_multiple_inline\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"item_injection_fields\":{\"fields\":[{\"name\":\"item_injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_uid_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"product_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"category_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"brand_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"uom_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_inttest\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_id1\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_value1\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"itm_itm_date1\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"itm_itm_text1_bk_20\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"itm_itm_num1_bk_21\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"itm_itm_inttest123\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_inttest1234\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_inttest12345\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_inttest123456\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_inttest08\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_inttest1234756\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_test123\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_test1234\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_pack_qty\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_prt_pack_qty2\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_test008\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_prt_pack_qty10\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_prt_50\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"itm_prt_500\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"itm_prt_rtdsfsdf_bk_37\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"yes_bk_38\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"itm_itm_customer_marking\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"logistic_injection_fields\":{\"fields\":[{\"name\":\"logistic_injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"logistic_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"lgt_tpt_repo_t3e2s2\",\"kind\":\"scalar\",\"type\":\"Decimal\"}],\"dbName\":null},\"repository_injection_fields\":{\"fields\":[{\"name\":\"repository_injection_field_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"field_module\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"field_ref\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"repository_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"repository_item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"cont_repo_tes\",\"kind\":\"scalar\",\"type\":\"Decimal\",\"dbName\":\"_cont_repo_tes\"},{\"name\":\"repo_cont_repo_t3es\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"repo_pk_pk_cont\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"repo_itme_pk_pk_cont_item\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"repo_itme_cont_pk_cont_item\",\"kind\":\"scalar\",\"type\":\"Decimal\"}],\"dbName\":null},\"brands\":{\"fields\":[{\"name\":\"brand_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"categories\":{\"fields\":[{\"name\":\"category_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"parent_category_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"}],\"dbName\":null},\"items\":{\"fields\":[{\"name\":\"item_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"sku_code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"category_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"brand_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"uom_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"code\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"model\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"item_description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"cost\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"uom_price\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"remark\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"summary\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"gross_weight\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"net_weight\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"uom_bal\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"is_package\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"product_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"floor_price\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"dimension_width\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"dimension_height\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"dimension_length\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"cbm\",\"kind\":\"scalar\",\"type\":\"Decimal\"},{\"name\":\"volume_weight\",\"kind\":\"scalar\",\"type\":\"Decimal\"}],\"dbName\":null},\"products\":{\"fields\":[{\"name\":\"product_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"item_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"category_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"brand_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"model\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"summary\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"product_code\",\"kind\":\"scalar\",\"type\":\"String\"}],\"dbName\":null},\"uoms\":{\"fields\":[{\"name\":\"uom_id\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"description\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"metric_type\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"status\",\"kind\":\"scalar\",\"type\":\"Int\"},{\"name\":\"createdatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"createuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"updatedatetime\",\"kind\":\"scalar\",\"type\":\"DateTime\"},{\"name\":\"updateuserid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"isdelete\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"istrash\",\"kind\":\"scalar\",\"type\":\"Boolean\"},{\"name\":\"accountid\",\"kind\":\"scalar\",\"type\":\"BigInt\"},{\"name\":\"metric_type_display_name\",\"kind\":\"scalar\",\"type\":\"String\"},{\"name\":\"decimal_digit\",\"kind\":\"scalar\",\"type\":\"Int\"}],\"dbName\":null}},\"enums\":{},\"types\":{}}")
|
|
2453
|
+
defineDmmfProperty(exports.Prisma, config.runtimeDataModel)
|
|
2454
|
+
config.engineWasm = {
|
|
2455
|
+
getRuntime: async () => require('./query_engine_bg.js'),
|
|
2456
|
+
getQueryEngineWasmModule: async () => {
|
|
2457
|
+
const loader = (await import('#wasm-engine-loader')).default
|
|
2458
|
+
const engine = (await loader).default
|
|
2459
|
+
return engine
|
|
2460
|
+
}
|
|
2461
|
+
}
|
|
2462
|
+
config.compilerWasm = undefined
|
|
2463
|
+
|
|
2464
|
+
config.injectableEdgeEnv = () => ({
|
|
2465
|
+
parsed: {
|
|
2466
|
+
DATABASE_URL: typeof globalThis !== 'undefined' && globalThis['DATABASE_URL'] || typeof process !== 'undefined' && process.env && process.env.DATABASE_URL || undefined
|
|
2467
|
+
}
|
|
2468
|
+
})
|
|
2469
|
+
|
|
2470
|
+
if (typeof globalThis !== 'undefined' && globalThis['DEBUG'] || typeof process !== 'undefined' && process.env && process.env.DEBUG || undefined) {
|
|
2471
|
+
Debug.enable(typeof globalThis !== 'undefined' && globalThis['DEBUG'] || typeof process !== 'undefined' && process.env && process.env.DEBUG || undefined)
|
|
2472
|
+
}
|
|
2473
|
+
|
|
2474
|
+
const PrismaClient = getPrismaClient(config)
|
|
2475
|
+
exports.PrismaClient = PrismaClient
|
|
2476
|
+
Object.assign(exports, Prisma)
|
|
2477
|
+
|