storemw-core-api 1.0.152 → 1.0.154

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.
Files changed (77) hide show
  1. package/dist/controllers/index.d.ts +1 -0
  2. package/dist/controllers/index.js +8 -1
  3. package/dist/controllers/index.js.map +1 -1
  4. package/dist/controllers/scheduler/schedulerRequestController.d.ts +11 -0
  5. package/dist/controllers/scheduler/schedulerRequestController.js +156 -0
  6. package/dist/controllers/scheduler/schedulerRequestController.js.map +1 -0
  7. package/dist/features/index.d.ts +1 -1
  8. package/dist/features/index.js.map +1 -1
  9. package/dist/features/user_me/userMeRegistry.js +4 -0
  10. package/dist/features/user_me/userMeRegistry.js.map +1 -1
  11. package/dist/features/user_me/userMeType.d.ts +17 -3
  12. package/dist/features/user_me/userMeType.js.map +1 -1
  13. package/dist/lib/index.d.ts +1 -1
  14. package/dist/lib/index.js +4 -1
  15. package/dist/lib/index.js.map +1 -1
  16. package/dist/lib/query_builder/queryScheduler.d.ts +13 -0
  17. package/dist/lib/query_builder/queryScheduler.js +47 -1
  18. package/dist/lib/query_builder/queryScheduler.js.map +1 -1
  19. package/dist/middlewares/route/index.d.ts +2 -1
  20. package/dist/middlewares/route/index.js +13 -7
  21. package/dist/middlewares/route/index.js.map +1 -1
  22. package/dist/middlewares/route/validateScheduler.d.ts +10 -0
  23. package/dist/middlewares/route/validateScheduler.js +39 -0
  24. package/dist/middlewares/route/validateScheduler.js.map +1 -0
  25. package/dist/models/index.d.ts +2 -0
  26. package/dist/models/index.js +4 -1
  27. package/dist/models/index.js.map +1 -1
  28. package/dist/models/scheduler/SchedulerRequestModel.d.ts +327 -0
  29. package/dist/models/scheduler/SchedulerRequestModel.js +13 -0
  30. package/dist/models/scheduler/SchedulerRequestModel.js.map +1 -0
  31. package/dist/routes/scheduler/schedulerRequestRoutes.d.ts +2 -0
  32. package/dist/routes/scheduler/schedulerRequestRoutes.js +15 -0
  33. package/dist/routes/scheduler/schedulerRequestRoutes.js.map +1 -0
  34. package/dist/routes/scheduler/schedulerRequestsRoutes.d.ts +2 -0
  35. package/dist/routes/scheduler/schedulerRequestsRoutes.js +13 -0
  36. package/dist/routes/scheduler/schedulerRequestsRoutes.js.map +1 -0
  37. package/dist/routes/scheduler/schedulersRoutes.js +5 -0
  38. package/dist/routes/scheduler/schedulersRoutes.js.map +1 -1
  39. package/dist/schema/middleware/route/index.d.ts +2 -2
  40. package/dist/schema/middleware/route/index.js +4 -3
  41. package/dist/schema/middleware/route/index.js.map +1 -1
  42. package/dist/schema/middleware/route/schemaScheduler.d.ts +7 -0
  43. package/dist/schema/middleware/route/schemaScheduler.js +15 -0
  44. package/dist/schema/middleware/route/schemaScheduler.js.map +1 -0
  45. package/dist/schema/payload/index.d.ts +2 -0
  46. package/dist/schema/payload/index.js +5 -1
  47. package/dist/schema/payload/index.js.map +1 -1
  48. package/dist/schema/payload/scheduler/schemaSchedulerRequest.d.ts +254 -0
  49. package/dist/schema/payload/scheduler/schemaSchedulerRequest.js +46 -0
  50. package/dist/schema/payload/scheduler/schemaSchedulerRequest.js.map +1 -0
  51. package/dist/services/auth/AuthService.js +2 -2
  52. package/dist/services/auth/AuthService.js.map +1 -1
  53. package/dist/services/file/FileService.js +4 -4
  54. package/dist/services/file/FileService.js.map +1 -1
  55. package/dist/services/gateway/SmtpEmailService.js +5 -4
  56. package/dist/services/gateway/SmtpEmailService.js.map +1 -1
  57. package/dist/services/index.d.ts +2 -0
  58. package/dist/services/index.js +3 -1
  59. package/dist/services/index.js.map +1 -1
  60. package/dist/services/reset_password/ResetPasswordService.js +4 -4
  61. package/dist/services/reset_password/ResetPasswordService.js.map +1 -1
  62. package/dist/services/scheduler/SchedulerRequestService.d.ts +109 -0
  63. package/dist/services/scheduler/SchedulerRequestService.js +141 -0
  64. package/dist/services/scheduler/SchedulerRequestService.js.map +1 -0
  65. package/dist/services/user/UserMeService.js +29 -8
  66. package/dist/services/user/UserMeService.js.map +1 -1
  67. package/dist/utils/featureUtils.d.ts +3 -0
  68. package/dist/utils/featureUtils.js +11 -0
  69. package/dist/utils/featureUtils.js.map +1 -1
  70. package/dist/utils/index.d.ts +1 -0
  71. package/dist/utils/index.js +3 -1
  72. package/dist/utils/index.js.map +1 -1
  73. package/dist/utils/serviceUtils.d.ts +1 -0
  74. package/dist/utils/serviceUtils.js +2 -1
  75. package/dist/utils/serviceUtils.js.map +1 -1
  76. package/package.json +1 -1
  77. package/prisma/schema.prisma +80 -54
@@ -5,8 +5,13 @@ const express_1 = require("express");
5
5
  const router = (0, express_1.Router)();
6
6
  const schedulerLogRoutes_1 = require("./schedulerLogRoutes");
7
7
  const schedulerLogsRoutes_1 = require("./schedulerLogsRoutes");
8
+ const schedulerRequestRoutes_1 = require("./schedulerRequestRoutes");
9
+ const schedulerRequestsRoutes_1 = require("./schedulerRequestsRoutes");
8
10
  /** scheduler logs - Merge Scheduler Logs Routes */
9
11
  router.use(["/log"], schedulerLogRoutes_1.schedulerLogRoutes);
10
12
  router.use(["/logs"], schedulerLogsRoutes_1.schedulerLogsRoutes);
13
+ /** scheduler requests - Merge Scheduler Requests Routes */
14
+ router.use(["/request"], schedulerRequestRoutes_1.schedulerRequestRoutes);
15
+ router.use(["/requests"], schedulerRequestsRoutes_1.schedulerRequestsRoutes);
11
16
  exports.schedulersRoutes = router;
12
17
  //# sourceMappingURL=schedulersRoutes.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"schedulersRoutes.js","sourceRoot":"","sources":["../../../src/routes/scheduler/schedulersRoutes.ts"],"names":[],"mappings":";;;AAAA,qCAAiC;AAEjC,MAAM,MAAM,GAAG,IAAA,gBAAM,GAAE,CAAC;AAExB,6DAAyD;AACzD,+DAA2D;AAE3D,mDAAmD;AACnD,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,uCAAkB,CAAC,CAAA;AACxC,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,EAAE,yCAAmB,CAAC,CAAA;AAE7B,QAAA,gBAAgB,GAAW,MAAM,CAAA","sourcesContent":["import { Router } from \"express\";\n\nconst router = Router();\n\nimport { schedulerLogRoutes } from \"./schedulerLogRoutes\"\nimport { schedulerLogsRoutes } from \"./schedulerLogsRoutes\"\n\n/** scheduler logs - Merge Scheduler Logs Routes */\nrouter.use([\"/log\"], schedulerLogRoutes)\nrouter.use([\"/logs\"], schedulerLogsRoutes)\n\nexport const schedulersRoutes: Router = router\n"]}
1
+ {"version":3,"file":"schedulersRoutes.js","sourceRoot":"","sources":["../../../src/routes/scheduler/schedulersRoutes.ts"],"names":[],"mappings":";;;AAAA,qCAAiC;AAEjC,MAAM,MAAM,GAAG,IAAA,gBAAM,GAAE,CAAC;AAExB,6DAAyD;AACzD,+DAA2D;AAC3D,qEAAiE;AACjE,uEAAmE;AAEnE,mDAAmD;AACnD,MAAM,CAAC,GAAG,CAAC,CAAC,MAAM,CAAC,EAAE,uCAAkB,CAAC,CAAA;AACxC,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,CAAC,EAAE,yCAAmB,CAAC,CAAA;AAC1C,2DAA2D;AAC3D,MAAM,CAAC,GAAG,CAAC,CAAC,UAAU,CAAC,EAAE,+CAAsB,CAAC,CAAA;AAChD,MAAM,CAAC,GAAG,CAAC,CAAC,WAAW,CAAC,EAAE,iDAAuB,CAAC,CAAA;AAErC,QAAA,gBAAgB,GAAW,MAAM,CAAA","sourcesContent":["import { Router } from \"express\";\n\nconst router = Router();\n\nimport { schedulerLogRoutes } from \"./schedulerLogRoutes\"\nimport { schedulerLogsRoutes } from \"./schedulerLogsRoutes\"\nimport { schedulerRequestRoutes } from \"./schedulerRequestRoutes\"\nimport { schedulerRequestsRoutes } from \"./schedulerRequestsRoutes\"\n\n/** scheduler logs - Merge Scheduler Logs Routes */\nrouter.use([\"/log\"], schedulerLogRoutes)\nrouter.use([\"/logs\"], schedulerLogsRoutes)\n/** scheduler requests - Merge Scheduler Requests Routes */\nrouter.use([\"/request\"], schedulerRequestRoutes)\nrouter.use([\"/requests\"], schedulerRequestsRoutes)\n\nexport const schedulersRoutes: Router = router\n"]}
@@ -2,7 +2,7 @@ export { schemaRouteDocumentList } from "./schemaDocument";
2
2
  export { schemaRouteRepositoryList } from "./schemaRepository";
3
3
  export { schemaRouteUserList } from "./schemaUser";
4
4
  export { schemaRouteBusinessList } from "./schemaBusiness";
5
- export { schemaRouteSchedulerLogList } from "./schemaSchedulerLog";
5
+ export { schemaRouteSchedulerLogList, schemaRouteSchedulerRequestList } from "./schemaScheduler";
6
6
  export { schemaRouteAccessKeyList } from "./schemaAccessKey";
7
7
  export { schemaRouteOneTimeCodeList } from "./schemaOneTimeCode";
8
8
  export { schemaRouteAccountList } from "./schemaAccount";
@@ -21,7 +21,7 @@ export type { SchemaRouteAccountList } from "./schemaAccount";
21
21
  export type { SchemaRouteSubscriptionPlanList } from "./schemaSubscriptionPlan";
22
22
  export type { SchemaRouteSubscriptionAccountList } from "./schemaSubscriptionAccount";
23
23
  export type { SchemaRouteBusinessList } from "./schemaBusiness";
24
- export type { SchemaRouteSchedulerLogList } from "./schemaSchedulerLog";
24
+ export type { SchemaRouteSchedulerLogList, SchemaRouteSchedulerRequestList } from "./schemaScheduler";
25
25
  export type { SchemaRouteAccessKeyList } from "./schemaAccessKey";
26
26
  export type { SchemaRouteOneTimeCodeList } from "./schemaOneTimeCode";
27
27
  export type { SchemaRouteUserBranchList } from "./schemaUserBranch";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.schemaRouteAccessControlRoleList = exports.schemaRouteAccessControlListPolicyOptions = exports.schemaQueryList = exports.schemaRouteRegionList = exports.schemaRouteLocationList = exports.schemaRouteFileList = exports.schemaRouteItemList = exports.schemaRouteUserBranchList = exports.schemaRouteSubscriptionAccountList = exports.schemaRouteSubscriptionPlanList = exports.schemaRouteAccountList = exports.schemaRouteOneTimeCodeList = exports.schemaRouteAccessKeyList = exports.schemaRouteSchedulerLogList = exports.schemaRouteBusinessList = exports.schemaRouteUserList = exports.schemaRouteRepositoryList = exports.schemaRouteDocumentList = void 0;
3
+ exports.schemaRouteAccessControlRoleList = exports.schemaRouteAccessControlListPolicyOptions = exports.schemaQueryList = exports.schemaRouteRegionList = exports.schemaRouteLocationList = exports.schemaRouteFileList = exports.schemaRouteItemList = exports.schemaRouteUserBranchList = exports.schemaRouteSubscriptionAccountList = exports.schemaRouteSubscriptionPlanList = exports.schemaRouteAccountList = exports.schemaRouteOneTimeCodeList = exports.schemaRouteAccessKeyList = exports.schemaRouteSchedulerRequestList = exports.schemaRouteSchedulerLogList = exports.schemaRouteBusinessList = exports.schemaRouteUserList = exports.schemaRouteRepositoryList = exports.schemaRouteDocumentList = void 0;
4
4
  var schemaDocument_1 = require("./schemaDocument");
5
5
  Object.defineProperty(exports, "schemaRouteDocumentList", { enumerable: true, get: function () { return schemaDocument_1.schemaRouteDocumentList; } });
6
6
  var schemaRepository_1 = require("./schemaRepository");
@@ -9,8 +9,9 @@ var schemaUser_1 = require("./schemaUser");
9
9
  Object.defineProperty(exports, "schemaRouteUserList", { enumerable: true, get: function () { return schemaUser_1.schemaRouteUserList; } });
10
10
  var schemaBusiness_1 = require("./schemaBusiness");
11
11
  Object.defineProperty(exports, "schemaRouteBusinessList", { enumerable: true, get: function () { return schemaBusiness_1.schemaRouteBusinessList; } });
12
- var schemaSchedulerLog_1 = require("./schemaSchedulerLog");
13
- Object.defineProperty(exports, "schemaRouteSchedulerLogList", { enumerable: true, get: function () { return schemaSchedulerLog_1.schemaRouteSchedulerLogList; } });
12
+ var schemaScheduler_1 = require("./schemaScheduler");
13
+ Object.defineProperty(exports, "schemaRouteSchedulerLogList", { enumerable: true, get: function () { return schemaScheduler_1.schemaRouteSchedulerLogList; } });
14
+ Object.defineProperty(exports, "schemaRouteSchedulerRequestList", { enumerable: true, get: function () { return schemaScheduler_1.schemaRouteSchedulerRequestList; } });
14
15
  var schemaAccessKey_1 = require("./schemaAccessKey");
15
16
  Object.defineProperty(exports, "schemaRouteAccessKeyList", { enumerable: true, get: function () { return schemaAccessKey_1.schemaRouteAccessKeyList; } });
16
17
  var schemaOneTimeCode_1 = require("./schemaOneTimeCode");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/middleware/route/index.ts"],"names":[],"mappings":";;;AAAA,mDAA0D;AAAjD,yHAAA,uBAAuB,OAAA;AAChC,uDAA8D;AAArD,6HAAA,yBAAyB,OAAA;AAClC,2CAAkD;AAAzC,iHAAA,mBAAmB,OAAA;AAC5B,mDAA0D;AAAjD,yHAAA,uBAAuB,OAAA;AAChC,2DAAkE;AAAzD,iIAAA,2BAA2B,OAAA;AACpC,qDAA4D;AAAnD,2HAAA,wBAAwB,OAAA;AACjC,yDAAgE;AAAvD,+HAAA,0BAA0B,OAAA;AACnC,iDAAwD;AAA/C,uHAAA,sBAAsB,OAAA;AAC/B,mEAA0E;AAAjE,yIAAA,+BAA+B,OAAA;AACxC,yEAAgF;AAAvE,+IAAA,kCAAkC,OAAA;AAC3C,uDAA8D;AAArD,6HAAA,yBAAyB,OAAA;AAClC,2CAAkD;AAAzC,iHAAA,mBAAmB,OAAA;AAC5B,2CAAkD;AAAzC,iHAAA,mBAAmB,OAAA;AAC5B,mDAA0D;AAAjD,yHAAA,uBAAuB,OAAA;AAChC,+CAAsD;AAA7C,qHAAA,qBAAqB,OAAA;AAC9B,qDAAmD;AAA1C,kHAAA,eAAe,OAAA;AACxB,6DAAmH;AAA1G,gJAAA,yCAAyC,OAAA;AAAE,uIAAA,gCAAgC,OAAA","sourcesContent":["export { schemaRouteDocumentList } from \"./schemaDocument\"\nexport { schemaRouteRepositoryList } from \"./schemaRepository\"\nexport { schemaRouteUserList } from \"./schemaUser\"\nexport { schemaRouteBusinessList } from \"./schemaBusiness\"\nexport { schemaRouteSchedulerLogList } from \"./schemaSchedulerLog\"\nexport { schemaRouteAccessKeyList } from \"./schemaAccessKey\"\nexport { schemaRouteOneTimeCodeList } from \"./schemaOneTimeCode\"\nexport { schemaRouteAccountList } from \"./schemaAccount\"\nexport { schemaRouteSubscriptionPlanList } from \"./schemaSubscriptionPlan\"\nexport { schemaRouteSubscriptionAccountList } from \"./schemaSubscriptionAccount\"\nexport { schemaRouteUserBranchList } from \"./schemaUserBranch\"\nexport { schemaRouteItemList } from \"./schemaItem\"\nexport { schemaRouteFileList } from \"./schemaFile\"\nexport { schemaRouteLocationList } from \"./schemaLocation\"\nexport { schemaRouteRegionList } from \"./schemaRegion\"\nexport { schemaQueryList } from \"./schemaQueryList\"\nexport { schemaRouteAccessControlListPolicyOptions, schemaRouteAccessControlRoleList } from \"./schemaAccessControl\"\n\nexport type { QueryList } from \"./schemaQueryList\"\nexport type { SchemaRouteUserList } from \"./schemaUser\"\nexport type { SchemaRouteAccountList } from \"./schemaAccount\"\nexport type { SchemaRouteSubscriptionPlanList } from \"./schemaSubscriptionPlan\"\nexport type { SchemaRouteSubscriptionAccountList } from \"./schemaSubscriptionAccount\"\nexport type { SchemaRouteBusinessList } from \"./schemaBusiness\"\nexport type { SchemaRouteSchedulerLogList } from \"./schemaSchedulerLog\"\nexport type { SchemaRouteAccessKeyList } from \"./schemaAccessKey\"\nexport type { SchemaRouteOneTimeCodeList } from \"./schemaOneTimeCode\"\nexport type { SchemaRouteUserBranchList } from \"./schemaUserBranch\"\nexport type { SchemaRouteItemList } from \"./schemaItem\"\nexport type { SchemaRouteFileList } from \"./schemaFile\"\nexport type { SchemaRouteRegionList } from \"./schemaRegion\"\nexport type { SchemaRouteDocumentList } from \"./schemaDocument\"\nexport type { SchemaRouteRepositoryList } from \"./schemaRepository\"\nexport type { SchemaRouteAccessControlListPolicyOptions, SchemaRouteAccessControlRoleList } from \"./schemaAccessControl\""]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/schema/middleware/route/index.ts"],"names":[],"mappings":";;;AAAA,mDAA0D;AAAjD,yHAAA,uBAAuB,OAAA;AAChC,uDAA8D;AAArD,6HAAA,yBAAyB,OAAA;AAClC,2CAAkD;AAAzC,iHAAA,mBAAmB,OAAA;AAC5B,mDAA0D;AAAjD,yHAAA,uBAAuB,OAAA;AAChC,qDAAgG;AAAvF,8HAAA,2BAA2B,OAAA;AAAE,kIAAA,+BAA+B,OAAA;AACrE,qDAA4D;AAAnD,2HAAA,wBAAwB,OAAA;AACjC,yDAAgE;AAAvD,+HAAA,0BAA0B,OAAA;AACnC,iDAAwD;AAA/C,uHAAA,sBAAsB,OAAA;AAC/B,mEAA0E;AAAjE,yIAAA,+BAA+B,OAAA;AACxC,yEAAgF;AAAvE,+IAAA,kCAAkC,OAAA;AAC3C,uDAA8D;AAArD,6HAAA,yBAAyB,OAAA;AAClC,2CAAkD;AAAzC,iHAAA,mBAAmB,OAAA;AAC5B,2CAAkD;AAAzC,iHAAA,mBAAmB,OAAA;AAC5B,mDAA0D;AAAjD,yHAAA,uBAAuB,OAAA;AAChC,+CAAsD;AAA7C,qHAAA,qBAAqB,OAAA;AAC9B,qDAAmD;AAA1C,kHAAA,eAAe,OAAA;AACxB,6DAAmH;AAA1G,gJAAA,yCAAyC,OAAA;AAAE,uIAAA,gCAAgC,OAAA","sourcesContent":["export { schemaRouteDocumentList } from \"./schemaDocument\"\nexport { schemaRouteRepositoryList } from \"./schemaRepository\"\nexport { schemaRouteUserList } from \"./schemaUser\"\nexport { schemaRouteBusinessList } from \"./schemaBusiness\"\nexport { schemaRouteSchedulerLogList, schemaRouteSchedulerRequestList } from \"./schemaScheduler\"\nexport { schemaRouteAccessKeyList } from \"./schemaAccessKey\"\nexport { schemaRouteOneTimeCodeList } from \"./schemaOneTimeCode\"\nexport { schemaRouteAccountList } from \"./schemaAccount\"\nexport { schemaRouteSubscriptionPlanList } from \"./schemaSubscriptionPlan\"\nexport { schemaRouteSubscriptionAccountList } from \"./schemaSubscriptionAccount\"\nexport { schemaRouteUserBranchList } from \"./schemaUserBranch\"\nexport { schemaRouteItemList } from \"./schemaItem\"\nexport { schemaRouteFileList } from \"./schemaFile\"\nexport { schemaRouteLocationList } from \"./schemaLocation\"\nexport { schemaRouteRegionList } from \"./schemaRegion\"\nexport { schemaQueryList } from \"./schemaQueryList\"\nexport { schemaRouteAccessControlListPolicyOptions, schemaRouteAccessControlRoleList } from \"./schemaAccessControl\"\n\nexport type { QueryList } from \"./schemaQueryList\"\nexport type { SchemaRouteUserList } from \"./schemaUser\"\nexport type { SchemaRouteAccountList } from \"./schemaAccount\"\nexport type { SchemaRouteSubscriptionPlanList } from \"./schemaSubscriptionPlan\"\nexport type { SchemaRouteSubscriptionAccountList } from \"./schemaSubscriptionAccount\"\nexport type { SchemaRouteBusinessList } from \"./schemaBusiness\"\nexport type { SchemaRouteSchedulerLogList, SchemaRouteSchedulerRequestList } from \"./schemaScheduler\"\nexport type { SchemaRouteAccessKeyList } from \"./schemaAccessKey\"\nexport type { SchemaRouteOneTimeCodeList } from \"./schemaOneTimeCode\"\nexport type { SchemaRouteUserBranchList } from \"./schemaUserBranch\"\nexport type { SchemaRouteItemList } from \"./schemaItem\"\nexport type { SchemaRouteFileList } from \"./schemaFile\"\nexport type { SchemaRouteRegionList } from \"./schemaRegion\"\nexport type { SchemaRouteDocumentList } from \"./schemaDocument\"\nexport type { SchemaRouteRepositoryList } from \"./schemaRepository\"\nexport type { SchemaRouteAccessControlListPolicyOptions, SchemaRouteAccessControlRoleList } from \"./schemaAccessControl\""]}
@@ -0,0 +1,7 @@
1
+ import { z } from "zod";
2
+ /** Route Parameters */
3
+ export declare const schemaRouteSchedulerLogList: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
4
+ export type SchemaRouteSchedulerLogList = z.infer<typeof schemaRouteSchedulerLogList>;
5
+ /** Route Parameters */
6
+ export declare const schemaRouteSchedulerRequestList: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
7
+ export type SchemaRouteSchedulerRequestList = z.infer<typeof schemaRouteSchedulerRequestList>;
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.schemaRouteSchedulerRequestList = exports.schemaRouteSchedulerLogList = void 0;
4
+ const zod_1 = require("zod");
5
+ /** Route Parameters */
6
+ exports.schemaRouteSchedulerLogList = zod_1.z.object({
7
+ // userType: z
8
+ // .enum(["administrator", "customer", "worker", "retailer"])
9
+ });
10
+ /** Route Parameters */
11
+ exports.schemaRouteSchedulerRequestList = zod_1.z.object({
12
+ // userType: z
13
+ // .enum(["administrator", "customer", "worker", "retailer"])
14
+ });
15
+ //# sourceMappingURL=schemaScheduler.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemaScheduler.js","sourceRoot":"","sources":["../../../../src/schema/middleware/route/schemaScheduler.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,uBAAuB;AACV,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;AAChD,cAAc;AACd,iEAAiE;CACpE,CAAC,CAAC;AAIH,uBAAuB;AACV,QAAA,+BAA+B,GAAG,OAAC,CAAC,MAAM,CAAC;AACpD,cAAc;AACd,iEAAiE;CACpE,CAAC,CAAC","sourcesContent":["import { z } from \"zod\";\n\n/** Route Parameters */\nexport const schemaRouteSchedulerLogList = z.object({\n // userType: z\n // .enum([\"administrator\", \"customer\", \"worker\", \"retailer\"])\n});\n\nexport type SchemaRouteSchedulerLogList = z.infer<typeof schemaRouteSchedulerLogList>;\n\n/** Route Parameters */\nexport const schemaRouteSchedulerRequestList = z.object({\n // userType: z\n // .enum([\"administrator\", \"customer\", \"worker\", \"retailer\"])\n});\n\nexport type SchemaRouteSchedulerRequestList = z.infer<typeof schemaRouteSchedulerRequestList>;"]}
@@ -84,5 +84,7 @@ export { schemaRegionAreaCreatePayload, schemaRegionAreaDeletePayload, schemaReg
84
84
  export type { SchemaRegionAreaCreatePayload, SchemaRegionAreaDeletePayload, SchemaRegionAreaUpdatePayload } from "./region/schemaRegionArea";
85
85
  export { schemaSchedulerLogCreatePayload, schemaSchedulerLogDeletePayload } from "./scheduler/schemaSchedulerLog";
86
86
  export type { SchemaSchedulerLogCreatePayload, SchedulerLogFlowTypeEnum, SchemaSchedulerLogDeletePayload } from "./scheduler/schemaSchedulerLog";
87
+ export { schemaSchedulerRequestCreatePayload, schemaSchedulerRequestExecutePayload, schemaSchedulerRequestDeletePayload } from "./scheduler/schemaSchedulerRequest";
88
+ export type { SchemaSchedulerRequestCreatePayload, SchemaSchedulerRequestExecutePayload, SchemaSchedulerRequestDeletePayload } from "./scheduler/schemaSchedulerRequest";
87
89
  export { schemaAccessKeyUtilValidatePayload, schemaAccessKeyUtilAccountOwnerPayload } from "./utils/schemaAccessKeyUtil";
88
90
  export type { SchemaAccessKeyUtilValidatePayload, SchemaAccessKeyUtilAccountOwnerPayload } from "./utils/schemaAccessKeyUtil";
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.schemaDocumentDeletePayload = exports.schemaFileDeletePayload = exports.schemaFileUploadPayload = exports.schemaAccessControlUserScope = exports.schemaAccessControlUserAssignRolesPayload = exports.schemaAccessControlRoleScope = exports.schemaAccessControlRoleUpdatePayload = exports.schemaAccessControlRoleDeletePayload = exports.schemaAccessControlRoleCreatePayload = exports.schemaAccessControlRole = exports.schemaUserAgentUpdatePayload = exports.schemaUserAgentCreatePayload = exports.schemaUserMemberUpdatePayload = exports.schemaUserMemberCreatePayload = exports.schemaUserDriverUpdatePayload = exports.schemaUserDriverCreatePayload = exports.schemaUserWorkerUpdatePayload = exports.schemaUserWorkerCreatePayload = exports.schemaUserAdministratorUpdatePayload = exports.schemaUserAdministratorCreatePayload = exports.schemaUserRetailerUpdatePayload = exports.schemaUserRetailerCreatePayload = exports.schemaUserCustomerUpdatePayload = exports.schemaUserCustomerCreatePayload = exports.schemaUserOperatorUpdatePayload = exports.schemaUserOperatorCreatePayload = exports.schemaUserMeUpdatePayload = exports.schemaUserMeChangePasswordPayload = exports.schemaUserCredential = exports.schemaUserDeletePayload = exports.schemaAccountSubscribeCancelPayload = exports.schemaAccountSubscribeCreatePayload = exports.schemaSubscribePlanDeletePayload = exports.schemaSubscribePlanUpdatePayload = exports.schemaSubscribePlanCreatePayload = exports.schemaBusinessDeletePayload = exports.schemaBusinessUpdatePayload = exports.schemaBusiness = exports.schemaBusinessCreatePayload = exports.schemaAccountDeletePayload = exports.schemaAccountUpdatePayload = exports.schemaAccountCreatePayload = exports.schemaResetPasswordPerformPayload = exports.schemaResetPasswordValidateCodePayload = exports.schemaResetPasswordRequestPayload = exports.schemaAccessKeyRevokePayload = exports.schemaAccessKeyCreatePayload = exports.schemaAuthTokenOperatorPayload = exports.schemaAuthTokenOptionalAccountPayload = exports.schemaAuthTokenPayload = void 0;
4
4
  exports.schemaRegionAreaDeletePayload = exports.schemaRegionAreaCreatePayload = exports.schemaRegionStateUpdatePayload = exports.schemaRegionStateDeletePayload = exports.schemaRegionStateCreatePayload = exports.schemaRegionCountryDeletePayload = exports.schemaRegionCountryUpdatePayload = exports.schemaRegionCountryCreatePayload = exports.schemaInjectionFieldDeletePayload = exports.schemaInjectionFieldCreatePayload = exports.schemaInjectionFieldReplacePayload = exports.schemaSlot = exports.schemaLocationSlotDeletePayload = exports.schemaLocationSlotUpdatePayload = exports.schemaLocationSlotCreatePayload = exports.schemaLocationRackDeletePayload = exports.schemaLocationRackUpdatePayload = exports.schemaLocationRackCreatePayload = exports.schemaLocationLocationDeletePayload = exports.schemaLocationLocationUpdatePayload = exports.schemaLocationLocationCreatePayload = exports.schemaItemUomUpdatePayload = exports.schemaItemUomCreatePayload = exports.schemaItemBrandUpdatePayload = exports.schemaItemBrandCreatePayload = exports.schemaItemCategoryUpdatePayload = exports.schemaItemCategoryCreatePayload = exports.schemaItemItem = exports.schemaItemItemUpdatePayload = exports.schemaItemItemCreatePayload = exports.schemaItemProductUpdatePayload = exports.schemaItemProductCreatePayload = exports.schemaItemDeletePayload = exports.schemaRepositoryContainerUpdatePayload = exports.schemaRepositoryContainerCreatePayload = exports.schemaRepositoryScope = exports.schemaRepositoryDeletePayload = exports.schemaDocumentTripOrderUpdatePayload = exports.schemaDocumentTripOrderCreatePayload = exports.schemaDocumentCashSalesUpdatePayload = exports.schemaDocumentCashSalesCreatePayload = exports.schemaDocumentReplacementDeliveryOrderUpdatePayload = exports.schemaDocumentReplacementDeliveryOrderCreatePayload = exports.schemaDocumentDeliveryOrderUpdatePayload = exports.schemaDocumentDeliveryOrderCreatePayload = exports.schemaDocumentProformaSalesUpdatePayload = exports.schemaDocumentProformaSalesCreatePayload = exports.schemaDocumentSalesOrderUpdatePayload = exports.schemaDocumentSalesOrderCreatePayload = exports.eNumDocumentTypes = void 0;
5
- exports.schemaAccessKeyUtilAccountOwnerPayload = exports.schemaAccessKeyUtilValidatePayload = exports.schemaSchedulerLogDeletePayload = exports.schemaSchedulerLogCreatePayload = exports.schemaRegionAreaUpdatePayload = void 0;
5
+ exports.schemaAccessKeyUtilAccountOwnerPayload = exports.schemaAccessKeyUtilValidatePayload = exports.schemaSchedulerRequestDeletePayload = exports.schemaSchedulerRequestExecutePayload = exports.schemaSchedulerRequestCreatePayload = exports.schemaSchedulerLogDeletePayload = exports.schemaSchedulerLogCreatePayload = exports.schemaRegionAreaUpdatePayload = void 0;
6
6
  var schemaAuthToken_1 = require("./auth/schemaAuthToken");
7
7
  Object.defineProperty(exports, "schemaAuthTokenPayload", { enumerable: true, get: function () { return schemaAuthToken_1.schemaAuthTokenPayload; } });
8
8
  Object.defineProperty(exports, "schemaAuthTokenOptionalAccountPayload", { enumerable: true, get: function () { return schemaAuthToken_1.schemaAuthTokenOptionalAccountPayload; } });
@@ -149,6 +149,10 @@ Object.defineProperty(exports, "schemaRegionAreaUpdatePayload", { enumerable: tr
149
149
  var schemaSchedulerLog_1 = require("./scheduler/schemaSchedulerLog");
150
150
  Object.defineProperty(exports, "schemaSchedulerLogCreatePayload", { enumerable: true, get: function () { return schemaSchedulerLog_1.schemaSchedulerLogCreatePayload; } });
151
151
  Object.defineProperty(exports, "schemaSchedulerLogDeletePayload", { enumerable: true, get: function () { return schemaSchedulerLog_1.schemaSchedulerLogDeletePayload; } });
152
+ var schemaSchedulerRequest_1 = require("./scheduler/schemaSchedulerRequest");
153
+ Object.defineProperty(exports, "schemaSchedulerRequestCreatePayload", { enumerable: true, get: function () { return schemaSchedulerRequest_1.schemaSchedulerRequestCreatePayload; } });
154
+ Object.defineProperty(exports, "schemaSchedulerRequestExecutePayload", { enumerable: true, get: function () { return schemaSchedulerRequest_1.schemaSchedulerRequestExecutePayload; } });
155
+ Object.defineProperty(exports, "schemaSchedulerRequestDeletePayload", { enumerable: true, get: function () { return schemaSchedulerRequest_1.schemaSchedulerRequestDeletePayload; } });
152
156
  // export { schemaChangePasswordUtilPayload } from "./utils/unuse/schemaChangePasswordUtil";
153
157
  // export type { SchemaChangePasswordUtilPayload } from "./utils/unuse/schemaChangePasswordUtil";
154
158
  var schemaAccessKeyUtil_1 = require("./utils/schemaAccessKeyUtil");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schema/payload/index.ts"],"names":[],"mappings":"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","sourcesContent":["export { schemaAuthTokenPayload, schemaAuthTokenOptionalAccountPayload, schemaAuthTokenOperatorPayload } from \"./auth/schemaAuthToken\";\nexport type { SchemaAuthTokenPayload, SchemaAuthTokenOptionalAccountPayload, SchemaAuthTokenOperatorPayload } from \"./auth/schemaAuthToken\";\n\nexport { schemaAccessKeyCreatePayload, schemaAccessKeyRevokePayload } from \"./access_key/schemaAccessKey\";\nexport type { SchemaAccessKeyCreatePayload, SchemaAccessKeyRevokePayload } from \"./access_key/schemaAccessKey\";\n\nexport { schemaResetPasswordRequestPayload, schemaResetPasswordValidateCodePayload, schemaResetPasswordPerformPayload } from \"./reset_password/schemaResetPassword\";\nexport type { SchemaResetPasswordRequestPayload, SchemaResetPasswordValidateCodePayload, SchemaResetPasswordPerformPayload } from \"./reset_password/schemaResetPassword\";\n\nexport { schemaAccountCreatePayload, schemaAccountUpdatePayload, schemaAccountDeletePayload } from \"./account/schemaAccount\";\nexport type { SchemaAccountCreatePayload, SchemaAccountUpdatePayload, SchemaAccountDeletePayload } from \"./account/schemaAccount\";\n\nexport { schemaBusinessCreatePayload, schemaBusiness, schemaBusinessUpdatePayload, schemaBusinessDeletePayload } from \"./business/schemaBusiness\";\nexport type { SchemaBusinessCreatePayload, SchemaBusinessUpdatePayload, SchemaBusinessDeletePayload } from \"./business/schemaBusiness\";\n\nexport { schemaSubscribePlanCreatePayload, schemaSubscribePlanUpdatePayload, schemaSubscribePlanDeletePayload } from \"./subscription/schemaSubscribePlan\";\nexport type { SchemaSubscribePlanCreatePayload, SchemaSubscribePlanUpdatePayload, SchemaSubscribePlanDeletePayload } from \"./subscription/schemaSubscribePlan\";\nexport { schemaAccountSubscribeCreatePayload, schemaAccountSubscribeCancelPayload } from \"./subscription/schemaAccountSubscribe\";\nexport type { SchemaAccountSubscribeCreatePayload, SchemaAccountSubscribeCancelPayload } from \"./subscription/schemaAccountSubscribe\";\n\nexport { schemaUserDeletePayload, schemaUserCredential } from \"./user/schemaUser\";\nexport type { SchemaUserDeletePayload } from \"./user/schemaUser\";\nexport { schemaUserMeChangePasswordPayload, schemaUserMeUpdatePayload } from \"./user/schemaUserMe\";\nexport type { SchemaUserMeChangePasswordPayload, SchemaUserMeUpdatePayload } from \"./user/schemaUserMe\";\nexport { schemaUserOperatorCreatePayload, schemaUserOperatorUpdatePayload } from \"./user/schemaUserOperator\";\nexport type { SchemaUserOperatorCreatePayload, SchemaUserOperatorUpdatePayload } from \"./user/schemaUserOperator\";\nexport { schemaUserCustomerCreatePayload, schemaUserCustomerUpdatePayload } from \"./user/schemaUserCustomer\";\nexport type { SchemaUserCustomerCreatePayload, SchemaUserCustomerUpdatePayload } from \"./user/schemaUserCustomer\";\nexport { schemaUserRetailerCreatePayload, schemaUserRetailerUpdatePayload } from \"./user/schemaUserRetailer\";\nexport type { SchemaUserRetailerCreatePayload, SchemaUserRetailerUpdatePayload } from \"./user/schemaUserRetailer\";\nexport { schemaUserAdministratorCreatePayload, schemaUserAdministratorUpdatePayload } from \"./user/schemaUserAdministrator\";\nexport type { SchemaUserAdministratorCreatePayload, SchemaUserAdministratorUpdatePayload } from \"./user/schemaUserAdministrator\";\nexport { schemaUserWorkerCreatePayload, schemaUserWorkerUpdatePayload } from \"./user/schemaUserWorker\";\nexport type { SchemaUserWorkerCreatePayload, SchemaUserWorkerUpdatePayload } from \"./user/schemaUserWorker\";\nexport { schemaUserDriverCreatePayload, schemaUserDriverUpdatePayload } from \"./user/schemaUserDriver\";\nexport type { SchemaUserDriverCreatePayload, SchemaUserDriverUpdatePayload } from \"./user/schemaUserDriver\";\nexport { schemaUserMemberCreatePayload, schemaUserMemberUpdatePayload } from \"./user/schemaUserMember\";\nexport type { SchemaUserMemberCreatePayload, SchemaUserMemberUpdatePayload } from \"./user/schemaUserMember\";\nexport { schemaUserAgentCreatePayload, schemaUserAgentUpdatePayload } from \"./user/schemaUserAgent\";\nexport type { SchemaUserAgentCreatePayload, SchemaUserAgentUpdatePayload } from \"./user/schemaUserAgent\";\n\nexport { schemaAccessControlRole, schemaAccessControlRoleCreatePayload, schemaAccessControlRoleDeletePayload, schemaAccessControlRoleUpdatePayload, schemaAccessControlRoleScope } from \"./access_control/schemaAccessControlRole\";\nexport type { SchemaAccessControlRoleCreatePayload, SchemaAccessControlRoleDeletePayload, SchemaAccessControlRoleUpdatePayload } from \"./access_control/schemaAccessControlRole\";\n\nexport { schemaAccessControlUserAssignRolesPayload, schemaAccessControlUserScope } from \"./access_control/schemaAccessControlUser\";\nexport type { SchemaAccessControlUserAssignRolesPayload } from \"./access_control/schemaAccessControlUser\";\n\nexport { schemaFileUploadPayload, schemaFileDeletePayload } from \"./file/schemaFile\";\nexport type { SchemaFileUploadPayload, SchemaFileDeletePayload } from \"./file/schemaFile\";\n\nexport { schemaDocumentDeletePayload, eNumDocumentTypes } from \"./document/schemaDocument\";\nexport type { SchemaDocumentDeletePayload } from \"./document/schemaDocument\";\nexport { schemaDocumentSalesOrderCreatePayload, schemaDocumentSalesOrderUpdatePayload } from \"./document/schemaDocumentSalesOrder\";\nexport type { SchemaDocumentSalesOrderCreatePayload, SchemaDocumentSalesOrderUpdatePayload } from \"./document/schemaDocumentSalesOrder\";\nexport { schemaDocumentProformaSalesCreatePayload, schemaDocumentProformaSalesUpdatePayload } from \"./document/schemaDocumentProformaSales\";\nexport type { SchemaDocumentProformaSalesCreatePayload, SchemaDocumentProformaSalesUpdatePayload } from \"./document/schemaDocumentProformaSales\";\nexport { schemaDocumentDeliveryOrderCreatePayload, schemaDocumentDeliveryOrderUpdatePayload } from \"./document/schemaDocumentDeliveryOrder\";\nexport type { SchemaDocumentDeliveryOrderCreatePayload, SchemaDocumentDeliveryOrderUpdatePayload } from \"./document/schemaDocumentDeliveryOrder\";\nexport { schemaDocumentReplacementDeliveryOrderCreatePayload, schemaDocumentReplacementDeliveryOrderUpdatePayload } from \"./document/schemaDocumentReplacementDeliveryOrder\";\nexport type { SchemaDocumentReplacementDeliveryOrderCreatePayload, SchemaDocumentReplacementDeliveryOrderUpdatePayload } from \"./document/schemaDocumentReplacementDeliveryOrder\";\nexport { schemaDocumentCashSalesCreatePayload, schemaDocumentCashSalesUpdatePayload } from \"./document/schemaDocumentCashSales\";\nexport type { SchemaDocumentCashSalesCreatePayload, SchemaDocumentCashSalesUpdatePayload } from \"./document/schemaDocumentCashSales\";\nexport { schemaDocumentTripOrderCreatePayload, schemaDocumentTripOrderUpdatePayload } from \"./document/schemaDocumentTripOrder\";\nexport type { SchemaDocumentTripOrderCreatePayload, SchemaDocumentTripOrderUpdatePayload } from \"./document/schemaDocumentTripOrder\";\n\nexport { schemaRepositoryDeletePayload, schemaRepositoryScope } from \"./repository/schemaRepository\";\nexport type { SchemaRepositoryDeletePayload } from \"./repository/schemaRepository\";\nexport { schemaRepositoryContainerCreatePayload, schemaRepositoryContainerUpdatePayload } from \"./repository/schemaRepositoryContainer\";\nexport type { SchemaRepositoryContainerCreatePayload, SchemaRepositoryContainerUpdatePayload } from \"./repository/schemaRepositoryContainer\";\n\nexport { schemaItemDeletePayload } from \"./item/schemaItem\";\nexport type { SchemaItemDeletePayload } from \"./item/schemaItem\";\nexport { schemaItemProductCreatePayload, schemaItemProductUpdatePayload } from \"./item/schemaItemProduct\";\nexport type { SchemaItemProductCreatePayload, SchemaItemProductUpdatePayload } from \"./item/schemaItemProduct\";\nexport { schemaItemItemCreatePayload, schemaItemItemUpdatePayload, schemaItemItem } from \"./item/schemaItemItem\";\nexport type { SchemaItemItemCreatePayload, SchemaItemItemUpdatePayload } from \"./item/schemaItemItem\";\nexport { schemaItemCategoryCreatePayload, schemaItemCategoryUpdatePayload } from \"./item/schemaItemCategory\";\nexport type { SchemaItemCategoryCreatePayload, SchemaItemCategoryUpdatePayload } from \"./item/schemaItemCategory\";\nexport { schemaItemBrandCreatePayload, schemaItemBrandUpdatePayload } from \"./item/schemaItemBrand\";\nexport type { SchemaItemBrandCreatePayload, SchemaItemBrandUpdatePayload } from \"./item/schemaItemBrand\";\nexport { schemaItemUomCreatePayload, schemaItemUomUpdatePayload } from \"./item/schemaItemUom\";\nexport type { SchemaItemUomCreatePayload, SchemaItemUomUpdatePayload } from \"./item/schemaItemUom\";\n\nexport { schemaLocationLocationCreatePayload, schemaLocationLocationUpdatePayload, schemaLocationLocationDeletePayload, } from \"./location/schemaLocationLocation\";\nexport type { SchemaLocationLocationCreatePayload, SchemaLocationLocationUpdatePayload, SchemaLocationLocationDeletePayload } from \"./location/schemaLocationLocation\";\nexport { schemaLocationRackCreatePayload, schemaLocationRackUpdatePayload, schemaLocationRackDeletePayload, } from \"./location/schemaLocationRack\";\nexport type { SchemaLocationRackCreatePayload, SchemaLocationRackUpdatePayload, SchemaLocationRackDeletePayload } from \"./location/schemaLocationRack\";\nexport { schemaLocationSlotCreatePayload, schemaLocationSlotUpdatePayload, schemaLocationSlotDeletePayload, schemaSlot } from \"./location/schemaLocationSlot\";\nexport type { SchemaLocationSlotCreatePayload, SchemaLocationSlotUpdatePayload, SchemaLocationSlotDeletePayload } from \"./location/schemaLocationSlot\";\n\nexport { schemaInjectionFieldReplacePayload, schemaInjectionFieldCreatePayload, schemaInjectionFieldDeletePayload } from \"./injection_field/schemaInjectionField\";\nexport type { SchemaInjectionFieldReplacePayload, SchemaInjectionFieldCreatePayload, SchemaInjectionFieldDeletePayload } from \"./injection_field/schemaInjectionField\";\n\nexport { schemaRegionCountryCreatePayload, schemaRegionCountryUpdatePayload, schemaRegionCountryDeletePayload } from \"./region/schemaRegionCountry\";\nexport type { SchemaRegionCountryCreatePayload, SchemaRegionCountryDeletePayload } from \"./region/schemaRegionCountry\";\nexport { schemaRegionStateCreatePayload, schemaRegionStateDeletePayload, schemaRegionStateUpdatePayload } from \"./region/schemaRegionState\";\nexport type { SchemaRegionStateCreatePayload, SchemaRegionStateDeletePayload } from \"./region/schemaRegionState\";\nexport { schemaRegionAreaCreatePayload, schemaRegionAreaDeletePayload, schemaRegionAreaUpdatePayload, } from \"./region/schemaRegionArea\";\nexport type { SchemaRegionAreaCreatePayload, SchemaRegionAreaDeletePayload, SchemaRegionAreaUpdatePayload } from \"./region/schemaRegionArea\";\n\nexport { schemaSchedulerLogCreatePayload, schemaSchedulerLogDeletePayload } from \"./scheduler/schemaSchedulerLog\";\nexport type { SchemaSchedulerLogCreatePayload, SchedulerLogFlowTypeEnum, SchemaSchedulerLogDeletePayload } from \"./scheduler/schemaSchedulerLog\";\n\n// export { schemaChangePasswordUtilPayload } from \"./utils/unuse/schemaChangePasswordUtil\";\n// export type { SchemaChangePasswordUtilPayload } from \"./utils/unuse/schemaChangePasswordUtil\";\nexport { schemaAccessKeyUtilValidatePayload, schemaAccessKeyUtilAccountOwnerPayload } from \"./utils/schemaAccessKeyUtil\";\nexport type { SchemaAccessKeyUtilValidatePayload, SchemaAccessKeyUtilAccountOwnerPayload } from \"./utils/schemaAccessKeyUtil\";"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/schema/payload/index.ts"],"names":[],"mappings":"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","sourcesContent":["export { schemaAuthTokenPayload, schemaAuthTokenOptionalAccountPayload, schemaAuthTokenOperatorPayload } from \"./auth/schemaAuthToken\";\nexport type { SchemaAuthTokenPayload, SchemaAuthTokenOptionalAccountPayload, SchemaAuthTokenOperatorPayload } from \"./auth/schemaAuthToken\";\n\nexport { schemaAccessKeyCreatePayload, schemaAccessKeyRevokePayload } from \"./access_key/schemaAccessKey\";\nexport type { SchemaAccessKeyCreatePayload, SchemaAccessKeyRevokePayload } from \"./access_key/schemaAccessKey\";\n\nexport { schemaResetPasswordRequestPayload, schemaResetPasswordValidateCodePayload, schemaResetPasswordPerformPayload } from \"./reset_password/schemaResetPassword\";\nexport type { SchemaResetPasswordRequestPayload, SchemaResetPasswordValidateCodePayload, SchemaResetPasswordPerformPayload } from \"./reset_password/schemaResetPassword\";\n\nexport { schemaAccountCreatePayload, schemaAccountUpdatePayload, schemaAccountDeletePayload } from \"./account/schemaAccount\";\nexport type { SchemaAccountCreatePayload, SchemaAccountUpdatePayload, SchemaAccountDeletePayload } from \"./account/schemaAccount\";\n\nexport { schemaBusinessCreatePayload, schemaBusiness, schemaBusinessUpdatePayload, schemaBusinessDeletePayload } from \"./business/schemaBusiness\";\nexport type { SchemaBusinessCreatePayload, SchemaBusinessUpdatePayload, SchemaBusinessDeletePayload } from \"./business/schemaBusiness\";\n\nexport { schemaSubscribePlanCreatePayload, schemaSubscribePlanUpdatePayload, schemaSubscribePlanDeletePayload } from \"./subscription/schemaSubscribePlan\";\nexport type { SchemaSubscribePlanCreatePayload, SchemaSubscribePlanUpdatePayload, SchemaSubscribePlanDeletePayload } from \"./subscription/schemaSubscribePlan\";\nexport { schemaAccountSubscribeCreatePayload, schemaAccountSubscribeCancelPayload } from \"./subscription/schemaAccountSubscribe\";\nexport type { SchemaAccountSubscribeCreatePayload, SchemaAccountSubscribeCancelPayload } from \"./subscription/schemaAccountSubscribe\";\n\nexport { schemaUserDeletePayload, schemaUserCredential } from \"./user/schemaUser\";\nexport type { SchemaUserDeletePayload } from \"./user/schemaUser\";\nexport { schemaUserMeChangePasswordPayload, schemaUserMeUpdatePayload } from \"./user/schemaUserMe\";\nexport type { SchemaUserMeChangePasswordPayload, SchemaUserMeUpdatePayload } from \"./user/schemaUserMe\";\nexport { schemaUserOperatorCreatePayload, schemaUserOperatorUpdatePayload } from \"./user/schemaUserOperator\";\nexport type { SchemaUserOperatorCreatePayload, SchemaUserOperatorUpdatePayload } from \"./user/schemaUserOperator\";\nexport { schemaUserCustomerCreatePayload, schemaUserCustomerUpdatePayload } from \"./user/schemaUserCustomer\";\nexport type { SchemaUserCustomerCreatePayload, SchemaUserCustomerUpdatePayload } from \"./user/schemaUserCustomer\";\nexport { schemaUserRetailerCreatePayload, schemaUserRetailerUpdatePayload } from \"./user/schemaUserRetailer\";\nexport type { SchemaUserRetailerCreatePayload, SchemaUserRetailerUpdatePayload } from \"./user/schemaUserRetailer\";\nexport { schemaUserAdministratorCreatePayload, schemaUserAdministratorUpdatePayload } from \"./user/schemaUserAdministrator\";\nexport type { SchemaUserAdministratorCreatePayload, SchemaUserAdministratorUpdatePayload } from \"./user/schemaUserAdministrator\";\nexport { schemaUserWorkerCreatePayload, schemaUserWorkerUpdatePayload } from \"./user/schemaUserWorker\";\nexport type { SchemaUserWorkerCreatePayload, SchemaUserWorkerUpdatePayload } from \"./user/schemaUserWorker\";\nexport { schemaUserDriverCreatePayload, schemaUserDriverUpdatePayload } from \"./user/schemaUserDriver\";\nexport type { SchemaUserDriverCreatePayload, SchemaUserDriverUpdatePayload } from \"./user/schemaUserDriver\";\nexport { schemaUserMemberCreatePayload, schemaUserMemberUpdatePayload } from \"./user/schemaUserMember\";\nexport type { SchemaUserMemberCreatePayload, SchemaUserMemberUpdatePayload } from \"./user/schemaUserMember\";\nexport { schemaUserAgentCreatePayload, schemaUserAgentUpdatePayload } from \"./user/schemaUserAgent\";\nexport type { SchemaUserAgentCreatePayload, SchemaUserAgentUpdatePayload } from \"./user/schemaUserAgent\";\n\nexport { schemaAccessControlRole, schemaAccessControlRoleCreatePayload, schemaAccessControlRoleDeletePayload, schemaAccessControlRoleUpdatePayload, schemaAccessControlRoleScope } from \"./access_control/schemaAccessControlRole\";\nexport type { SchemaAccessControlRoleCreatePayload, SchemaAccessControlRoleDeletePayload, SchemaAccessControlRoleUpdatePayload } from \"./access_control/schemaAccessControlRole\";\n\nexport { schemaAccessControlUserAssignRolesPayload, schemaAccessControlUserScope } from \"./access_control/schemaAccessControlUser\";\nexport type { SchemaAccessControlUserAssignRolesPayload } from \"./access_control/schemaAccessControlUser\";\n\nexport { schemaFileUploadPayload, schemaFileDeletePayload } from \"./file/schemaFile\";\nexport type { SchemaFileUploadPayload, SchemaFileDeletePayload } from \"./file/schemaFile\";\n\nexport { schemaDocumentDeletePayload, eNumDocumentTypes } from \"./document/schemaDocument\";\nexport type { SchemaDocumentDeletePayload } from \"./document/schemaDocument\";\nexport { schemaDocumentSalesOrderCreatePayload, schemaDocumentSalesOrderUpdatePayload } from \"./document/schemaDocumentSalesOrder\";\nexport type { SchemaDocumentSalesOrderCreatePayload, SchemaDocumentSalesOrderUpdatePayload } from \"./document/schemaDocumentSalesOrder\";\nexport { schemaDocumentProformaSalesCreatePayload, schemaDocumentProformaSalesUpdatePayload } from \"./document/schemaDocumentProformaSales\";\nexport type { SchemaDocumentProformaSalesCreatePayload, SchemaDocumentProformaSalesUpdatePayload } from \"./document/schemaDocumentProformaSales\";\nexport { schemaDocumentDeliveryOrderCreatePayload, schemaDocumentDeliveryOrderUpdatePayload } from \"./document/schemaDocumentDeliveryOrder\";\nexport type { SchemaDocumentDeliveryOrderCreatePayload, SchemaDocumentDeliveryOrderUpdatePayload } from \"./document/schemaDocumentDeliveryOrder\";\nexport { schemaDocumentReplacementDeliveryOrderCreatePayload, schemaDocumentReplacementDeliveryOrderUpdatePayload } from \"./document/schemaDocumentReplacementDeliveryOrder\";\nexport type { SchemaDocumentReplacementDeliveryOrderCreatePayload, SchemaDocumentReplacementDeliveryOrderUpdatePayload } from \"./document/schemaDocumentReplacementDeliveryOrder\";\nexport { schemaDocumentCashSalesCreatePayload, schemaDocumentCashSalesUpdatePayload } from \"./document/schemaDocumentCashSales\";\nexport type { SchemaDocumentCashSalesCreatePayload, SchemaDocumentCashSalesUpdatePayload } from \"./document/schemaDocumentCashSales\";\nexport { schemaDocumentTripOrderCreatePayload, schemaDocumentTripOrderUpdatePayload } from \"./document/schemaDocumentTripOrder\";\nexport type { SchemaDocumentTripOrderCreatePayload, SchemaDocumentTripOrderUpdatePayload } from \"./document/schemaDocumentTripOrder\";\n\nexport { schemaRepositoryDeletePayload, schemaRepositoryScope } from \"./repository/schemaRepository\";\nexport type { SchemaRepositoryDeletePayload } from \"./repository/schemaRepository\";\nexport { schemaRepositoryContainerCreatePayload, schemaRepositoryContainerUpdatePayload } from \"./repository/schemaRepositoryContainer\";\nexport type { SchemaRepositoryContainerCreatePayload, SchemaRepositoryContainerUpdatePayload } from \"./repository/schemaRepositoryContainer\";\n\nexport { schemaItemDeletePayload } from \"./item/schemaItem\";\nexport type { SchemaItemDeletePayload } from \"./item/schemaItem\";\nexport { schemaItemProductCreatePayload, schemaItemProductUpdatePayload } from \"./item/schemaItemProduct\";\nexport type { SchemaItemProductCreatePayload, SchemaItemProductUpdatePayload } from \"./item/schemaItemProduct\";\nexport { schemaItemItemCreatePayload, schemaItemItemUpdatePayload, schemaItemItem } from \"./item/schemaItemItem\";\nexport type { SchemaItemItemCreatePayload, SchemaItemItemUpdatePayload } from \"./item/schemaItemItem\";\nexport { schemaItemCategoryCreatePayload, schemaItemCategoryUpdatePayload } from \"./item/schemaItemCategory\";\nexport type { SchemaItemCategoryCreatePayload, SchemaItemCategoryUpdatePayload } from \"./item/schemaItemCategory\";\nexport { schemaItemBrandCreatePayload, schemaItemBrandUpdatePayload } from \"./item/schemaItemBrand\";\nexport type { SchemaItemBrandCreatePayload, SchemaItemBrandUpdatePayload } from \"./item/schemaItemBrand\";\nexport { schemaItemUomCreatePayload, schemaItemUomUpdatePayload } from \"./item/schemaItemUom\";\nexport type { SchemaItemUomCreatePayload, SchemaItemUomUpdatePayload } from \"./item/schemaItemUom\";\n\nexport { schemaLocationLocationCreatePayload, schemaLocationLocationUpdatePayload, schemaLocationLocationDeletePayload, } from \"./location/schemaLocationLocation\";\nexport type { SchemaLocationLocationCreatePayload, SchemaLocationLocationUpdatePayload, SchemaLocationLocationDeletePayload } from \"./location/schemaLocationLocation\";\nexport { schemaLocationRackCreatePayload, schemaLocationRackUpdatePayload, schemaLocationRackDeletePayload, } from \"./location/schemaLocationRack\";\nexport type { SchemaLocationRackCreatePayload, SchemaLocationRackUpdatePayload, SchemaLocationRackDeletePayload } from \"./location/schemaLocationRack\";\nexport { schemaLocationSlotCreatePayload, schemaLocationSlotUpdatePayload, schemaLocationSlotDeletePayload, schemaSlot } from \"./location/schemaLocationSlot\";\nexport type { SchemaLocationSlotCreatePayload, SchemaLocationSlotUpdatePayload, SchemaLocationSlotDeletePayload } from \"./location/schemaLocationSlot\";\n\nexport { schemaInjectionFieldReplacePayload, schemaInjectionFieldCreatePayload, schemaInjectionFieldDeletePayload } from \"./injection_field/schemaInjectionField\";\nexport type { SchemaInjectionFieldReplacePayload, SchemaInjectionFieldCreatePayload, SchemaInjectionFieldDeletePayload } from \"./injection_field/schemaInjectionField\";\n\nexport { schemaRegionCountryCreatePayload, schemaRegionCountryUpdatePayload, schemaRegionCountryDeletePayload } from \"./region/schemaRegionCountry\";\nexport type { SchemaRegionCountryCreatePayload, SchemaRegionCountryDeletePayload } from \"./region/schemaRegionCountry\";\nexport { schemaRegionStateCreatePayload, schemaRegionStateDeletePayload, schemaRegionStateUpdatePayload } from \"./region/schemaRegionState\";\nexport type { SchemaRegionStateCreatePayload, SchemaRegionStateDeletePayload } from \"./region/schemaRegionState\";\nexport { schemaRegionAreaCreatePayload, schemaRegionAreaDeletePayload, schemaRegionAreaUpdatePayload, } from \"./region/schemaRegionArea\";\nexport type { SchemaRegionAreaCreatePayload, SchemaRegionAreaDeletePayload, SchemaRegionAreaUpdatePayload } from \"./region/schemaRegionArea\";\n\nexport { schemaSchedulerLogCreatePayload, schemaSchedulerLogDeletePayload } from \"./scheduler/schemaSchedulerLog\";\nexport type { SchemaSchedulerLogCreatePayload, SchedulerLogFlowTypeEnum, SchemaSchedulerLogDeletePayload } from \"./scheduler/schemaSchedulerLog\";\nexport { schemaSchedulerRequestCreatePayload, schemaSchedulerRequestExecutePayload, schemaSchedulerRequestDeletePayload } from \"./scheduler/schemaSchedulerRequest\";\nexport type { SchemaSchedulerRequestCreatePayload, SchemaSchedulerRequestExecutePayload, SchemaSchedulerRequestDeletePayload } from \"./scheduler/schemaSchedulerRequest\";\n\n// export { schemaChangePasswordUtilPayload } from \"./utils/unuse/schemaChangePasswordUtil\";\n// export type { SchemaChangePasswordUtilPayload } from \"./utils/unuse/schemaChangePasswordUtil\";\nexport { schemaAccessKeyUtilValidatePayload, schemaAccessKeyUtilAccountOwnerPayload } from \"./utils/schemaAccessKeyUtil\";\nexport type { SchemaAccessKeyUtilValidatePayload, SchemaAccessKeyUtilAccountOwnerPayload } from \"./utils/schemaAccessKeyUtil\";"]}
@@ -0,0 +1,254 @@
1
+ import { z } from "zod";
2
+ export declare const schemaSchedulerRequest: z.ZodObject<{
3
+ fieldRef: z.ZodString;
4
+ fieldModule: z.ZodString;
5
+ sourceEntityId: z.ZodString;
6
+ sourceEntityLabel: z.ZodString;
7
+ sourceEntityData: z.ZodString;
8
+ integrationId: z.ZodString;
9
+ requestAction: z.ZodString;
10
+ }, "strip", z.ZodTypeAny, {
11
+ fieldRef: string;
12
+ fieldModule: string;
13
+ sourceEntityId: string;
14
+ sourceEntityLabel: string;
15
+ sourceEntityData: string;
16
+ integrationId: string;
17
+ requestAction: string;
18
+ }, {
19
+ fieldRef: string;
20
+ fieldModule: string;
21
+ sourceEntityId: string;
22
+ sourceEntityLabel: string;
23
+ sourceEntityData: string;
24
+ integrationId: string;
25
+ requestAction: string;
26
+ }>;
27
+ export declare const schemaSchedulerRequestExecute: z.ZodObject<{
28
+ destinationEntityId: z.ZodString;
29
+ destinationEntityLabel: z.ZodString;
30
+ attemptStatus: z.ZodDefault<z.ZodBoolean>;
31
+ attemptResult: z.ZodString;
32
+ }, "strip", z.ZodTypeAny, {
33
+ destinationEntityId: string;
34
+ destinationEntityLabel: string;
35
+ attemptStatus: boolean;
36
+ attemptResult: string;
37
+ }, {
38
+ destinationEntityId: string;
39
+ destinationEntityLabel: string;
40
+ attemptResult: string;
41
+ attemptStatus?: boolean | undefined;
42
+ }>;
43
+ export declare const schemaSchedulerRequestScope: z.ZodObject<{
44
+ target: z.ZodLiteral<"scheduler_request">;
45
+ action: z.ZodString;
46
+ }, "strip", z.ZodTypeAny, {
47
+ target: "scheduler_request";
48
+ action: string;
49
+ }, {
50
+ target: "scheduler_request";
51
+ action: string;
52
+ }>;
53
+ /** Create */
54
+ export declare const schemaSchedulerRequestCreatePayload: z.ZodObject<{
55
+ scope: z.ZodObject<{
56
+ target: z.ZodLiteral<"scheduler_request">;
57
+ action: z.ZodString;
58
+ }, "strip", z.ZodTypeAny, {
59
+ target: "scheduler_request";
60
+ action: string;
61
+ }, {
62
+ target: "scheduler_request";
63
+ action: string;
64
+ }>;
65
+ payload: z.ZodObject<{
66
+ schedulerRequest: z.ZodObject<{
67
+ fieldRef: z.ZodString;
68
+ fieldModule: z.ZodString;
69
+ sourceEntityId: z.ZodString;
70
+ sourceEntityLabel: z.ZodString;
71
+ sourceEntityData: z.ZodString;
72
+ integrationId: z.ZodString;
73
+ requestAction: z.ZodString;
74
+ }, "strip", z.ZodTypeAny, {
75
+ fieldRef: string;
76
+ fieldModule: string;
77
+ sourceEntityId: string;
78
+ sourceEntityLabel: string;
79
+ sourceEntityData: string;
80
+ integrationId: string;
81
+ requestAction: string;
82
+ }, {
83
+ fieldRef: string;
84
+ fieldModule: string;
85
+ sourceEntityId: string;
86
+ sourceEntityLabel: string;
87
+ sourceEntityData: string;
88
+ integrationId: string;
89
+ requestAction: string;
90
+ }>;
91
+ }, "strip", z.ZodTypeAny, {
92
+ schedulerRequest: {
93
+ fieldRef: string;
94
+ fieldModule: string;
95
+ sourceEntityId: string;
96
+ sourceEntityLabel: string;
97
+ sourceEntityData: string;
98
+ integrationId: string;
99
+ requestAction: string;
100
+ };
101
+ }, {
102
+ schedulerRequest: {
103
+ fieldRef: string;
104
+ fieldModule: string;
105
+ sourceEntityId: string;
106
+ sourceEntityLabel: string;
107
+ sourceEntityData: string;
108
+ integrationId: string;
109
+ requestAction: string;
110
+ };
111
+ }>;
112
+ }, "strip", z.ZodTypeAny, {
113
+ scope: {
114
+ target: "scheduler_request";
115
+ action: string;
116
+ };
117
+ payload: {
118
+ schedulerRequest: {
119
+ fieldRef: string;
120
+ fieldModule: string;
121
+ sourceEntityId: string;
122
+ sourceEntityLabel: string;
123
+ sourceEntityData: string;
124
+ integrationId: string;
125
+ requestAction: string;
126
+ };
127
+ };
128
+ }, {
129
+ scope: {
130
+ target: "scheduler_request";
131
+ action: string;
132
+ };
133
+ payload: {
134
+ schedulerRequest: {
135
+ fieldRef: string;
136
+ fieldModule: string;
137
+ sourceEntityId: string;
138
+ sourceEntityLabel: string;
139
+ sourceEntityData: string;
140
+ integrationId: string;
141
+ requestAction: string;
142
+ };
143
+ };
144
+ }>;
145
+ export type SchemaSchedulerRequestCreatePayload = z.infer<typeof schemaSchedulerRequestCreatePayload>;
146
+ /** Execute */
147
+ export declare const schemaSchedulerRequestExecutePayload: z.ZodObject<{
148
+ scope: z.ZodObject<{
149
+ target: z.ZodLiteral<"scheduler_request">;
150
+ action: z.ZodString;
151
+ }, "strip", z.ZodTypeAny, {
152
+ target: "scheduler_request";
153
+ action: string;
154
+ }, {
155
+ target: "scheduler_request";
156
+ action: string;
157
+ }>;
158
+ payload: z.ZodObject<{
159
+ schedulerRequest: z.ZodObject<{
160
+ destinationEntityId: z.ZodString;
161
+ destinationEntityLabel: z.ZodString;
162
+ attemptStatus: z.ZodDefault<z.ZodBoolean>;
163
+ attemptResult: z.ZodString;
164
+ }, "strip", z.ZodTypeAny, {
165
+ destinationEntityId: string;
166
+ destinationEntityLabel: string;
167
+ attemptStatus: boolean;
168
+ attemptResult: string;
169
+ }, {
170
+ destinationEntityId: string;
171
+ destinationEntityLabel: string;
172
+ attemptResult: string;
173
+ attemptStatus?: boolean | undefined;
174
+ }>;
175
+ }, "strip", z.ZodTypeAny, {
176
+ schedulerRequest: {
177
+ destinationEntityId: string;
178
+ destinationEntityLabel: string;
179
+ attemptStatus: boolean;
180
+ attemptResult: string;
181
+ };
182
+ }, {
183
+ schedulerRequest: {
184
+ destinationEntityId: string;
185
+ destinationEntityLabel: string;
186
+ attemptResult: string;
187
+ attemptStatus?: boolean | undefined;
188
+ };
189
+ }>;
190
+ }, "strip", z.ZodTypeAny, {
191
+ scope: {
192
+ target: "scheduler_request";
193
+ action: string;
194
+ };
195
+ payload: {
196
+ schedulerRequest: {
197
+ destinationEntityId: string;
198
+ destinationEntityLabel: string;
199
+ attemptStatus: boolean;
200
+ attemptResult: string;
201
+ };
202
+ };
203
+ }, {
204
+ scope: {
205
+ target: "scheduler_request";
206
+ action: string;
207
+ };
208
+ payload: {
209
+ schedulerRequest: {
210
+ destinationEntityId: string;
211
+ destinationEntityLabel: string;
212
+ attemptResult: string;
213
+ attemptStatus?: boolean | undefined;
214
+ };
215
+ };
216
+ }>;
217
+ export type SchemaSchedulerRequestExecutePayload = z.infer<typeof schemaSchedulerRequestExecutePayload>;
218
+ /** Delete */
219
+ export declare const schemaSchedulerRequestDeletePayload: z.ZodObject<{
220
+ scope: z.ZodObject<{
221
+ target: z.ZodLiteral<"scheduler_request">;
222
+ action: z.ZodString;
223
+ }, "strip", z.ZodTypeAny, {
224
+ target: "scheduler_request";
225
+ action: string;
226
+ }, {
227
+ target: "scheduler_request";
228
+ action: string;
229
+ }>;
230
+ payload: z.ZodObject<{
231
+ ids: z.ZodArray<z.ZodNumber, "many">;
232
+ }, "strip", z.ZodTypeAny, {
233
+ ids: number[];
234
+ }, {
235
+ ids: number[];
236
+ }>;
237
+ }, "strip", z.ZodTypeAny, {
238
+ scope: {
239
+ target: "scheduler_request";
240
+ action: string;
241
+ };
242
+ payload: {
243
+ ids: number[];
244
+ };
245
+ }, {
246
+ scope: {
247
+ target: "scheduler_request";
248
+ action: string;
249
+ };
250
+ payload: {
251
+ ids: number[];
252
+ };
253
+ }>;
254
+ export type SchemaSchedulerRequestDeletePayload = z.infer<typeof schemaSchedulerRequestDeletePayload>;
@@ -0,0 +1,46 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.schemaSchedulerRequestDeletePayload = exports.schemaSchedulerRequestExecutePayload = exports.schemaSchedulerRequestCreatePayload = exports.schemaSchedulerRequestScope = exports.schemaSchedulerRequestExecute = exports.schemaSchedulerRequest = void 0;
4
+ const zod_1 = require("zod");
5
+ // import { _ } from "../../../utils";
6
+ exports.schemaSchedulerRequest = zod_1.z.object({
7
+ fieldRef: zod_1.z.string().min(1, "field_ref is required"),
8
+ fieldModule: zod_1.z.string().min(1, "field_module is required"),
9
+ sourceEntityId: zod_1.z.string().min(1),
10
+ sourceEntityLabel: zod_1.z.string().min(1),
11
+ sourceEntityData: zod_1.z.string().min(1),
12
+ integrationId: zod_1.z.string().min(1),
13
+ requestAction: zod_1.z.string().min(1),
14
+ });
15
+ exports.schemaSchedulerRequestExecute = zod_1.z.object({
16
+ destinationEntityId: zod_1.z.string().min(1),
17
+ destinationEntityLabel: zod_1.z.string().min(1),
18
+ attemptStatus: zod_1.z.boolean().default(false),
19
+ attemptResult: zod_1.z.string().min(1),
20
+ });
21
+ exports.schemaSchedulerRequestScope = zod_1.z.object({
22
+ target: zod_1.z.literal("scheduler_request"),
23
+ action: zod_1.z.string(),
24
+ });
25
+ /** Create */
26
+ exports.schemaSchedulerRequestCreatePayload = zod_1.z.object({
27
+ scope: exports.schemaSchedulerRequestScope,
28
+ payload: zod_1.z.object({
29
+ schedulerRequest: exports.schemaSchedulerRequest
30
+ })
31
+ });
32
+ /** Execute */
33
+ exports.schemaSchedulerRequestExecutePayload = zod_1.z.object({
34
+ scope: exports.schemaSchedulerRequestScope,
35
+ payload: zod_1.z.object({
36
+ schedulerRequest: exports.schemaSchedulerRequestExecute
37
+ })
38
+ });
39
+ /** Delete */
40
+ exports.schemaSchedulerRequestDeletePayload = zod_1.z.object({
41
+ scope: exports.schemaSchedulerRequestScope,
42
+ payload: zod_1.z.object({
43
+ ids: zod_1.z.array(zod_1.z.number()).min(1, "ids must contain at least one number"),
44
+ }),
45
+ });
46
+ //# sourceMappingURL=schemaSchedulerRequest.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schemaSchedulerRequest.js","sourceRoot":"","sources":["../../../../src/schema/payload/scheduler/schemaSchedulerRequest.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAExB,+BAA+B;AAElB,QAAA,sBAAsB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3C,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,uBAAuB,CAAC;IACpD,WAAW,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,EAAE,0BAA0B,CAAC;IAE1D,cAAc,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACjC,iBAAiB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACpC,gBAAgB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAEnC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAEhC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACnC,CAAC,CAAA;AAEW,QAAA,6BAA6B,GAAG,OAAC,CAAC,MAAM,CAAC;IAClD,mBAAmB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACtC,sBAAsB,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IACzC,aAAa,EAAE,OAAC,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,KAAK,CAAC;IACzC,aAAa,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;CACnC,CAAC,CAAA;AAEW,QAAA,2BAA2B,GAAG,OAAC,CAAC,MAAM,CAAC;IAChD,MAAM,EAAE,OAAC,CAAC,OAAO,CAAC,mBAAmB,CAAC;IACtC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAA;AAEF,aAAa;AACA,QAAA,mCAAmC,GAAG,OAAC,CAAC,MAAM,CAAC;IACxD,KAAK,EAAE,mCAA2B;IAClC,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QACd,gBAAgB,EAAE,8BAAsB;KAC3C,CAAC;CACL,CAAC,CAAC;AAIH,cAAc;AACD,QAAA,oCAAoC,GAAG,OAAC,CAAC,MAAM,CAAC;IACzD,KAAK,EAAE,mCAA2B;IAClC,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QACd,gBAAgB,EAAE,qCAA6B;KAClD,CAAC;CACL,CAAC,CAAC;AAIH,aAAa;AACA,QAAA,mCAAmC,GAAG,OAAC,CAAC,MAAM,CAAC;IACxD,KAAK,EAAE,mCAA2B;IAClC,OAAO,EAAE,OAAC,CAAC,MAAM,CAAC;QACd,GAAG,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,EAAE,sCAAsC,CAAC;KAC1E,CAAC;CACL,CAAC,CAAC","sourcesContent":["import { z } from \"zod\";\n\n// import { _ } from \"@/utils\";\n\nexport const schemaSchedulerRequest = z.object({\n fieldRef: z.string().min(1, \"field_ref is required\"),\n fieldModule: z.string().min(1, \"field_module is required\"),\n\n sourceEntityId: z.string().min(1),\n sourceEntityLabel: z.string().min(1),\n sourceEntityData: z.string().min(1),\n\n integrationId: z.string().min(1),\n\n requestAction: z.string().min(1),\n})\n\nexport const schemaSchedulerRequestExecute = z.object({\n destinationEntityId: z.string().min(1),\n destinationEntityLabel: z.string().min(1),\n attemptStatus: z.boolean().default(false),\n attemptResult: z.string().min(1),\n})\n\nexport const schemaSchedulerRequestScope = z.object({\n target: z.literal(\"scheduler_request\"),\n action: z.string(),\n})\n\n/** Create */\nexport const schemaSchedulerRequestCreatePayload = z.object({\n scope: schemaSchedulerRequestScope,\n payload: z.object({\n schedulerRequest: schemaSchedulerRequest\n })\n});\n\nexport type SchemaSchedulerRequestCreatePayload = z.infer<typeof schemaSchedulerRequestCreatePayload>;\n\n/** Execute */\nexport const schemaSchedulerRequestExecutePayload = z.object({\n scope: schemaSchedulerRequestScope,\n payload: z.object({\n schedulerRequest: schemaSchedulerRequestExecute\n })\n});\n\nexport type SchemaSchedulerRequestExecutePayload = z.infer<typeof schemaSchedulerRequestExecutePayload>;\n\n/** Delete */\nexport const schemaSchedulerRequestDeletePayload = z.object({\n scope: schemaSchedulerRequestScope,\n payload: z.object({\n ids: z.array(z.number()).min(1, \"ids must contain at least one number\"),\n }),\n});\n\nexport type SchemaSchedulerRequestDeletePayload = z.infer<typeof schemaSchedulerRequestDeletePayload>;"]}
@@ -198,7 +198,7 @@ const AuthService = (props) => {
198
198
  // Call the consumer hook, if registered
199
199
  if (features_1.AuthTokenHook?.onSuccessAuthenticate) {
200
200
  const userType = user?.user_type ?? "administrator";
201
- newResult = await features_1.AuthTokenHook.onSuccessAuthenticate({
201
+ newResult = await features_1.AuthTokenHook.onSuccessAuthenticate((0, utils_1.buildFeatureCallbackProps)({
202
202
  defaultServiceProps: {
203
203
  accountId: Number(account?.account_id),
204
204
  actionUserId: Number(user?.user_id),
@@ -209,7 +209,7 @@ const AuthService = (props) => {
209
209
  accessKeyId: ""
210
210
  },
211
211
  callbackParams: result
212
- });
212
+ }));
213
213
  }
214
214
  return newResult ? newResult : result;
215
215
  };