@purpleschool/gptbot-tools 0.2.8-stage → 0.2.8-stage-2

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 (123) hide show
  1. package/build/common/models/index.js +1 -0
  2. package/build/common/models/locale.schema.js +9 -0
  3. package/build/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.js +1 -0
  4. package/build/image-editor/queries/get-image-editor-config.query.js +3 -2
  5. package/build/image-generation/commands/execute-image-generation.command.js +2 -2
  6. package/build/image-generation/commands/image-generation-model/get-image-generation-model-by-uuid.command.js +1 -0
  7. package/build/image-generation/models/image-generation-job.schema.js +3 -1
  8. package/build/image-generation/queries/find-image-generation-jobs.query.js +2 -2
  9. package/build/image-generation/queries/get-image-generation-config.query.js +3 -4
  10. package/build/index.js +0 -3
  11. package/build/interior-design/commands/interior-design-model/get-interior-design-model-by-uuid.command.js +1 -0
  12. package/build/interior-design/queries/get-interior-design-config.query.js +3 -2
  13. package/build/marketplace-card/queries/get-marketplace-card-config.query.js +1 -2
  14. package/build/music/commands/music-model/get-music-model-by-uuid.command.js +1 -0
  15. package/build/music/queries/get-music-config.query.js +3 -2
  16. package/build/paraphrase/queries/get-paraphrase-tool-config.query.js +3 -2
  17. package/build/presentation/commands/create-presentation.command.js +1 -0
  18. package/build/presentation/queries/get-presentation-config.query.js +1 -0
  19. package/build/solving-edu-task/queries/get-solving-edu-task-config.query.js +1 -2
  20. package/build/spell-corrector/queries/get-spell-corrector-tool-config.query.js +3 -2
  21. package/build/stt/queries/get-stt-config.query.js +3 -2
  22. package/build/tools/enums/index.js +0 -1
  23. package/build/tools/enums/tool-content-type.enum.js +0 -1
  24. package/build/tools/enums/tool-type.enum.js +0 -1
  25. package/build/tools/events/tool-job-complete.event.js +2 -1
  26. package/build/tools/models/global-tools-config.schema.js +0 -2
  27. package/build/tools/models/tools-with-configs.schema.js +0 -5
  28. package/build/tools/queries/find-all-tools.query.js +1 -0
  29. package/build/tools/queries/find-grouped-tools.query.js +1 -0
  30. package/build/tools/queries/get-global-tools-config.query.js +3 -2
  31. package/build/tools/queries/get-tools-with-configs.query.js +3 -2
  32. package/build/tts/queries/get-tts-config.query.js +3 -2
  33. package/build/video/commands/video-model/get-video-model-by-uuid.command.js +1 -0
  34. package/build/video/queries/get-video-config.query.js +3 -2
  35. package/build/video-editor/commands/video-editor-model/get-video-editor-model.command.js +1 -0
  36. package/build/video-editor/queries/get-video-editor-config.query.js +3 -4
  37. package/build/writer/commands/create-writer-document.command.js +1 -0
  38. package/build/writer/commands/generate-document-outline.command.js +2 -0
  39. package/build/writer/queries/get-writer-config.query.js +1 -0
  40. package/common/models/index.ts +1 -0
  41. package/common/models/locale.schema.ts +11 -0
  42. package/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.ts +2 -1
  43. package/image-editor/queries/get-image-editor-config.query.ts +4 -1
  44. package/image-generation/commands/execute-image-generation.command.ts +2 -2
  45. package/image-generation/commands/image-generation-model/get-image-generation-model-by-uuid.command.ts +2 -1
  46. package/image-generation/models/image-generation-job.schema.ts +4 -2
  47. package/image-generation/queries/find-image-generation-jobs.query.ts +2 -2
  48. package/image-generation/queries/get-image-generation-config.query.ts +2 -2
  49. package/index.ts +0 -3
  50. package/interior-design/commands/interior-design-model/get-interior-design-model-by-uuid.command.ts +2 -1
  51. package/interior-design/queries/get-interior-design-config.query.ts +4 -1
  52. package/marketplace-card/queries/get-marketplace-card-config.query.ts +2 -2
  53. package/music/commands/music-model/get-music-model-by-uuid.command.ts +2 -1
  54. package/music/queries/get-music-config.query.ts +4 -1
  55. package/package.json +2 -1
  56. package/paraphrase/queries/get-paraphrase-tool-config.query.ts +4 -1
  57. package/presentation/commands/create-presentation.command.ts +2 -1
  58. package/presentation/queries/get-presentation-config.query.ts +4 -1
  59. package/solving-edu-task/queries/get-solving-edu-task-config.query.ts +2 -2
  60. package/spell-corrector/queries/get-spell-corrector-tool-config.query.ts +4 -1
  61. package/stt/queries/get-stt-config.query.ts +4 -1
  62. package/tools/enums/index.ts +0 -1
  63. package/tools/enums/tool-content-type.enum.ts +0 -1
  64. package/tools/enums/tool-type.enum.ts +0 -1
  65. package/tools/events/tool-job-complete.event.ts +3 -2
  66. package/tools/models/global-tools-config.schema.ts +0 -2
  67. package/tools/models/tools-with-configs.schema.ts +0 -7
  68. package/tools/queries/find-all-tools.query.ts +4 -1
  69. package/tools/queries/find-grouped-tools.query.ts +4 -1
  70. package/tools/queries/get-global-tools-config.query.ts +4 -1
  71. package/tools/queries/get-tools-with-configs.query.ts +4 -1
  72. package/tts/queries/get-tts-config.query.ts +4 -1
  73. package/video/commands/video-model/get-video-model-by-uuid.command.ts +2 -1
  74. package/video/queries/get-video-config.query.ts +4 -1
  75. package/video-editor/commands/video-editor-model/get-video-editor-model.command.ts +2 -1
  76. package/video-editor/queries/get-video-editor-config.query.ts +2 -2
  77. package/writer/commands/create-writer-document.command.ts +2 -1
  78. package/writer/commands/generate-document-outline.command.ts +2 -0
  79. package/writer/queries/get-writer-config.query.ts +4 -1
  80. package/build/html-page-builder/commands/create-html-page-builder-session.command.js +0 -26
  81. package/build/html-page-builder/commands/get-html-page-builder-price.command.js +0 -15
  82. package/build/html-page-builder/commands/html-page-builder-execute.command.js +0 -31
  83. package/build/html-page-builder/commands/index.js +0 -22
  84. package/build/html-page-builder/commands/soft-delete-all-html-page-builder-sessions.command.js +0 -20
  85. package/build/html-page-builder/commands/soft-delete-html-page-builder-session-by-uuid.command.js +0 -14
  86. package/build/html-page-builder/commands/update-html-page-builder-session-title.command.js +0 -16
  87. package/build/html-page-builder/enums/html-page-builder-session-stage.enum.js +0 -8
  88. package/build/html-page-builder/enums/index.js +0 -17
  89. package/build/html-page-builder/index.js +0 -21
  90. package/build/html-page-builder/models/html-page-builder-config.schema.js +0 -8
  91. package/build/html-page-builder/models/html-page-builder-job.schema.js +0 -34
  92. package/build/html-page-builder/models/html-page-builder-model.schema.js +0 -18
  93. package/build/html-page-builder/models/html-page-builder-session.schema.js +0 -18
  94. package/build/html-page-builder/models/index.js +0 -20
  95. package/build/html-page-builder/queries/find-html-page-builder-session-by-id.query.js +0 -24
  96. package/build/html-page-builder/queries/find-html-page-builder-sessions.query.js +0 -28
  97. package/build/html-page-builder/queries/get-html-page-builder-config.query.js +0 -11
  98. package/build/html-page-builder/queries/index.js +0 -19
  99. package/build/html-page-builder/routes/html-page-builder.amqp.routes.js +0 -14
  100. package/build/html-page-builder/routes/index.js +0 -17
  101. package/build/tools/enums/job-request-origin.enum.js +0 -8
  102. package/html-page-builder/commands/create-html-page-builder-session.command.ts +0 -29
  103. package/html-page-builder/commands/get-html-page-builder-price.command.ts +0 -17
  104. package/html-page-builder/commands/html-page-builder-execute.command.ts +0 -34
  105. package/html-page-builder/commands/index.ts +0 -6
  106. package/html-page-builder/commands/soft-delete-all-html-page-builder-sessions.command.ts +0 -23
  107. package/html-page-builder/commands/soft-delete-html-page-builder-session-by-uuid.command.ts +0 -14
  108. package/html-page-builder/commands/update-html-page-builder-session-title.command.ts +0 -16
  109. package/html-page-builder/enums/html-page-builder-session-stage.enum.ts +0 -4
  110. package/html-page-builder/enums/index.ts +0 -1
  111. package/html-page-builder/index.ts +0 -5
  112. package/html-page-builder/models/html-page-builder-config.schema.ts +0 -8
  113. package/html-page-builder/models/html-page-builder-job.schema.ts +0 -37
  114. package/html-page-builder/models/html-page-builder-model.schema.ts +0 -18
  115. package/html-page-builder/models/html-page-builder-session.schema.ts +0 -18
  116. package/html-page-builder/models/index.ts +0 -4
  117. package/html-page-builder/queries/find-html-page-builder-session-by-id.query.ts +0 -25
  118. package/html-page-builder/queries/find-html-page-builder-sessions.query.ts +0 -33
  119. package/html-page-builder/queries/get-html-page-builder-config.query.ts +0 -11
  120. package/html-page-builder/queries/index.ts +0 -3
  121. package/html-page-builder/routes/html-page-builder.amqp.routes.ts +0 -11
  122. package/html-page-builder/routes/index.ts +0 -1
  123. package/tools/enums/job-request-origin.enum.ts +0 -4
@@ -17,3 +17,4 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./command-response.schema"), exports);
18
18
  __exportStar(require("./icon-variants.schema"), exports);
19
19
  __exportStar(require("./attached-file.schema"), exports);
20
+ __exportStar(require("./locale.schema"), exports);
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LocaleRequestSchema = exports.LocaleSchema = void 0;
4
+ const rugpt_lib_common_1 = require("@purpleschool/rugpt-lib-common");
5
+ const zod_1 = require("zod");
6
+ exports.LocaleSchema = zod_1.z.nativeEnum(rugpt_lib_common_1.LOCALE);
7
+ exports.LocaleRequestSchema = zod_1.z.object({
8
+ locale: exports.LocaleSchema,
9
+ });
@@ -8,6 +8,7 @@ var GetImageEditorModelByUuidCommand;
8
8
  (function (GetImageEditorModelByUuidCommand) {
9
9
  GetImageEditorModelByUuidCommand.RequestSchema = zod_1.z.object({
10
10
  uuid: zod_1.z.string().uuid(),
11
+ locale: common_1.LocaleSchema,
11
12
  });
12
13
  GetImageEditorModelByUuidCommand.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ImageEditorModelSchema);
13
14
  })(GetImageEditorModelByUuidCommand || (exports.GetImageEditorModelByUuidCommand = GetImageEditorModelByUuidCommand = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetImageEditorConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetImageEditorConfigQuery;
7
7
  (function (GetImageEditorConfigQuery) {
8
- GetImageEditorConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.ImageEditorConfigSchema);
8
+ GetImageEditorConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetImageEditorConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ImageEditorConfigSchema);
9
10
  })(GetImageEditorConfigQuery || (exports.GetImageEditorConfigQuery = GetImageEditorConfigQuery = {}));
@@ -3,8 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ExecuteImageGenerationCommand = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const command_response_schema_1 = require("../../common/models/command-response.schema");
6
- const tools_1 = require("../../tools");
7
6
  const models_1 = require("../models");
7
+ const rugpt_lib_common_1 = require("@purpleschool/rugpt-lib-common");
8
8
  var ExecuteImageGenerationCommand;
9
9
  (function (ExecuteImageGenerationCommand) {
10
10
  ExecuteImageGenerationCommand.RequestSchema = zod_1.z.object({
@@ -14,7 +14,7 @@ var ExecuteImageGenerationCommand;
14
14
  modelId: zod_1.z.string().uuid(),
15
15
  params: models_1.ImageGenerationRequestParamsSchema,
16
16
  presetId: zod_1.z.string().uuid().nullable().optional(),
17
- origin: zod_1.z.nativeEnum(tools_1.JOB_REQUEST_ORIGIN).default(tools_1.JOB_REQUEST_ORIGIN.API),
17
+ callOrigin: zod_1.z.nativeEnum(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN).default(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN.WEB),
18
18
  userHasActiveSubscriptionOrProduct: zod_1.z.boolean(),
19
19
  tokenReservationId: zod_1.z.string().uuid(),
20
20
  precalculatedPrice: zod_1.z.number(),
@@ -8,6 +8,7 @@ var GetImageGenerationModelByUuidCommand;
8
8
  (function (GetImageGenerationModelByUuidCommand) {
9
9
  GetImageGenerationModelByUuidCommand.RequestSchema = zod_1.z.object({
10
10
  uuid: zod_1.z.string().uuid(),
11
+ locale: common_1.LocaleSchema,
11
12
  });
12
13
  GetImageGenerationModelByUuidCommand.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ImageGenerationModelSchema);
13
14
  })(GetImageGenerationModelByUuidCommand || (exports.GetImageGenerationModelByUuidCommand = GetImageGenerationModelByUuidCommand = {}));
@@ -5,6 +5,7 @@ const zod_1 = require("zod");
5
5
  const tools_1 = require("../../tools");
6
6
  const common_1 = require("../../common");
7
7
  const enums_1 = require("../enums");
8
+ const rugpt_lib_common_1 = require("@purpleschool/rugpt-lib-common");
8
9
  exports.ImageGenerationJobParamsSchema = zod_1.z.object({
9
10
  aspectRatio: zod_1.z.string(),
10
11
  attachedFiles: zod_1.z.array(common_1.AttachedFileSchema),
@@ -30,7 +31,8 @@ exports.ImageGenerationJobSchema = zod_1.z.object({
30
31
  userId: zod_1.z.string().nullable().optional(),
31
32
  unregisteredUserId: zod_1.z.string().nullable().optional(),
32
33
  isPublished: zod_1.z.boolean(),
33
- origin: zod_1.z.nativeEnum(tools_1.JOB_REQUEST_ORIGIN),
34
+ origin: zod_1.z.string(),
35
+ callOrigin: zod_1.z.nativeEnum(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN),
34
36
  postId: zod_1.z.string().nullable(),
35
37
  isDeleted: zod_1.z.boolean(),
36
38
  internalError: zod_1.z.string().nullable(),
@@ -4,7 +4,7 @@ exports.FindImageGenerationJobsQuery = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const command_response_schema_1 = require("../../common/models/command-response.schema");
6
6
  const models_1 = require("../models");
7
- const job_request_origin_enum_1 = require("../../tools/enums/job-request-origin.enum");
7
+ const rugpt_lib_common_1 = require("@purpleschool/rugpt-lib-common");
8
8
  var FindImageGenerationJobsQuery;
9
9
  (function (FindImageGenerationJobsQuery) {
10
10
  FindImageGenerationJobsQuery.RequestSchema = zod_1.z
@@ -14,7 +14,7 @@ var FindImageGenerationJobsQuery;
14
14
  title: zod_1.z.string().optional(),
15
15
  limit: zod_1.z.coerce.number().min(1).optional(),
16
16
  offset: zod_1.z.coerce.number().min(0).default(0).optional(),
17
- origin: zod_1.z.nativeEnum(job_request_origin_enum_1.JOB_REQUEST_ORIGIN).optional(),
17
+ callOrigin: zod_1.z.nativeEnum(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN).optional(),
18
18
  })
19
19
  .refine((data) => {
20
20
  return Boolean(data.userId) !== Boolean(data.unregisteredUserId);
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetImageGenerationConfigQuery = void 0;
4
- const zod_1 = require("zod");
5
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
6
5
  const models_1 = require("../models");
7
6
  var GetImageGenerationConfigQuery;
8
7
  (function (GetImageGenerationConfigQuery) {
9
- GetImageGenerationConfigQuery.RequestSchema = zod_1.z.object({});
10
- GetImageGenerationConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.ImageGenerationConfigSchema);
8
+ GetImageGenerationConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetImageGenerationConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ImageGenerationConfigSchema);
11
10
  })(GetImageGenerationConfigQuery || (exports.GetImageGenerationConfigQuery = GetImageGenerationConfigQuery = {}));
package/build/index.js CHANGED
@@ -57,7 +57,6 @@ __exportStar(require("./marketplace-card"), exports);
57
57
  __exportStar(require("./analytics"), exports);
58
58
  __exportStar(require("./solving-edu-task"), exports);
59
59
  __exportStar(require("./spell-corrector"), exports);
60
- __exportStar(require("./html-page-builder"), exports);
61
60
  __exportStar(require("./tool-workspace"), exports);
62
61
  const common = __importStar(require("./common"));
63
62
  const paraphrase = __importStar(require("./paraphrase"));
@@ -78,7 +77,6 @@ const marketplaceCard = __importStar(require("./marketplace-card"));
78
77
  const analytics = __importStar(require("./analytics"));
79
78
  const solvingEduTask = __importStar(require("./solving-edu-task"));
80
79
  const spellCorrector = __importStar(require("./spell-corrector"));
81
- const htmlPageBuilder = __importStar(require("./html-page-builder"));
82
80
  const accountMerge = __importStar(require("./account-merge"));
83
81
  const toolWorkspace = __importStar(require("./tool-workspace"));
84
82
  var ToolService;
@@ -102,7 +100,6 @@ var ToolService;
102
100
  ToolService.Analytics = analytics;
103
101
  ToolService.SolvingEduTask = solvingEduTask;
104
102
  ToolService.SpellCorrector = spellCorrector;
105
- ToolService.HtmlPageBuilder = htmlPageBuilder;
106
103
  ToolService.AccountMerge = accountMerge;
107
104
  ToolService.ToolWorkspace = toolWorkspace;
108
105
  })(ToolService || (exports.ToolService = ToolService = {}));
@@ -8,6 +8,7 @@ var GetInteriorDesignModelByUuidCommand;
8
8
  (function (GetInteriorDesignModelByUuidCommand) {
9
9
  GetInteriorDesignModelByUuidCommand.RequestSchema = zod_1.z.object({
10
10
  uuid: zod_1.z.string().uuid(),
11
+ locale: common_1.LocaleSchema,
11
12
  });
12
13
  GetInteriorDesignModelByUuidCommand.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.InteriorDesignModelSchema);
13
14
  })(GetInteriorDesignModelByUuidCommand || (exports.GetInteriorDesignModelByUuidCommand = GetInteriorDesignModelByUuidCommand = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetInteriorDesignConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const interior_design_config_schema_1 = require("../models/interior-design-config.schema");
6
6
  var GetInteriorDesignConfigQuery;
7
7
  (function (GetInteriorDesignConfigQuery) {
8
- GetInteriorDesignConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(interior_design_config_schema_1.InteriorDesignConfigSchema);
8
+ GetInteriorDesignConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetInteriorDesignConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(interior_design_config_schema_1.InteriorDesignConfigSchema);
9
10
  })(GetInteriorDesignConfigQuery || (exports.GetInteriorDesignConfigQuery = GetInteriorDesignConfigQuery = {}));
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetMarketplaceCardConfigQuery = void 0;
4
- const zod_1 = require("zod");
5
4
  const common_1 = require("../../common");
6
5
  const models_1 = require("../models");
7
6
  var GetMarketplaceCardConfigQuery;
8
7
  (function (GetMarketplaceCardConfigQuery) {
9
- GetMarketplaceCardConfigQuery.RequestSchema = zod_1.z.object({});
8
+ GetMarketplaceCardConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
10
9
  GetMarketplaceCardConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.MarketplaceCardConfigSchema);
11
10
  })(GetMarketplaceCardConfigQuery || (exports.GetMarketplaceCardConfigQuery = GetMarketplaceCardConfigQuery = {}));
@@ -8,6 +8,7 @@ var GetMusicModelByUuidCommand;
8
8
  (function (GetMusicModelByUuidCommand) {
9
9
  GetMusicModelByUuidCommand.RequestSchema = zod_1.z.object({
10
10
  uuid: zod_1.z.string().uuid(),
11
+ locale: common_1.LocaleSchema,
11
12
  });
12
13
  GetMusicModelByUuidCommand.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.MusicModelSchema);
13
14
  })(GetMusicModelByUuidCommand || (exports.GetMusicModelByUuidCommand = GetMusicModelByUuidCommand = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetMusicConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetMusicConfigQuery;
7
7
  (function (GetMusicConfigQuery) {
8
- GetMusicConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.MusicConfigSchema);
8
+ GetMusicConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetMusicConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.MusicConfigSchema);
9
10
  })(GetMusicConfigQuery || (exports.GetMusicConfigQuery = GetMusicConfigQuery = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetParaphraseToolConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetParaphraseToolConfigQuery;
7
7
  (function (GetParaphraseToolConfigQuery) {
8
- GetParaphraseToolConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.ParaphraseToolConfigSchema);
8
+ GetParaphraseToolConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetParaphraseToolConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ParaphraseToolConfigSchema);
9
10
  })(GetParaphraseToolConfigQuery || (exports.GetParaphraseToolConfigQuery = GetParaphraseToolConfigQuery = {}));
@@ -8,6 +8,7 @@ const enums_1 = require("../enums");
8
8
  var CreatePresentationCommand;
9
9
  (function (CreatePresentationCommand) {
10
10
  CreatePresentationCommand.RequestSchema = zod_1.z.object({
11
+ locale: common_1.LocaleSchema,
11
12
  userId: zod_1.z.string().uuid().nullable().optional(),
12
13
  unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
13
14
  templateId: zod_1.z.string().uuid(),
@@ -5,5 +5,6 @@ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetPresentationConfigQuery;
7
7
  (function (GetPresentationConfigQuery) {
8
+ GetPresentationConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
8
9
  GetPresentationConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.PresentationConfigSchema);
9
10
  })(GetPresentationConfigQuery || (exports.GetPresentationConfigQuery = GetPresentationConfigQuery = {}));
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetSolvingEduTaskConfigQuery = void 0;
4
- const zod_1 = require("zod");
5
4
  const common_1 = require("../../common");
6
5
  const models_1 = require("../models");
7
6
  var GetSolvingEduTaskConfigQuery;
8
7
  (function (GetSolvingEduTaskConfigQuery) {
9
- GetSolvingEduTaskConfigQuery.RequestSchema = zod_1.z.object({});
8
+ GetSolvingEduTaskConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
10
9
  GetSolvingEduTaskConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.SolvingEduTaskConfigSchema);
11
10
  })(GetSolvingEduTaskConfigQuery || (exports.GetSolvingEduTaskConfigQuery = GetSolvingEduTaskConfigQuery = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetSpellCorrectorToolConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetSpellCorrectorToolConfigQuery;
7
7
  (function (GetSpellCorrectorToolConfigQuery) {
8
- GetSpellCorrectorToolConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.SpellCorrectorToolConfigSchema);
8
+ GetSpellCorrectorToolConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetSpellCorrectorToolConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.SpellCorrectorToolConfigSchema);
9
10
  })(GetSpellCorrectorToolConfigQuery || (exports.GetSpellCorrectorToolConfigQuery = GetSpellCorrectorToolConfigQuery = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetSTTConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetSTTConfigQuery;
7
7
  (function (GetSTTConfigQuery) {
8
- GetSTTConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.STTConfigSchema);
8
+ GetSTTConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetSTTConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.STTConfigSchema);
9
10
  })(GetSTTConfigQuery || (exports.GetSTTConfigQuery = GetSTTConfigQuery = {}));
@@ -18,4 +18,3 @@ __exportStar(require("./job-status.enum"), exports);
18
18
  __exportStar(require("./tool-type.enum"), exports);
19
19
  __exportStar(require("./tool-content-type.enum"), exports);
20
20
  __exportStar(require("./tool-group.enum"), exports);
21
- __exportStar(require("./job-request-origin.enum"), exports);
@@ -18,5 +18,4 @@ var TOOL_CONTENT_TYPE;
18
18
  TOOL_CONTENT_TYPE["MARKETPLACE_CARD_GENERATION"] = "MARKETPLACE_CARD";
19
19
  TOOL_CONTENT_TYPE["SOLVING_EDU_TASK"] = "SOLVING_EDU_TASK";
20
20
  TOOL_CONTENT_TYPE["SPELL_CORRECTOR"] = "SPELL_CORRECTOR";
21
- TOOL_CONTENT_TYPE["HTML_PAGE_BUILDER"] = "HTML_PAGE_BUILDER";
22
21
  })(TOOL_CONTENT_TYPE || (exports.TOOL_CONTENT_TYPE = TOOL_CONTENT_TYPE = {}));
@@ -20,5 +20,4 @@ var TOOL_TYPE;
20
20
  TOOL_TYPE["INTERIOR_DESIGN"] = "INTERIOR_DESIGN";
21
21
  TOOL_TYPE["SPELL_CORRECTOR"] = "SPELL_CORRECTOR";
22
22
  TOOL_TYPE["SOLVING_EDU_TASK"] = "SOLVING_EDU_TASK";
23
- TOOL_TYPE["HTML_PAGE_BUILDER"] = "HTML_PAGE_BUILDER";
24
23
  })(TOOL_TYPE || (exports.TOOL_TYPE = TOOL_TYPE = {}));
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ToolJobCompleteEvent = void 0;
4
+ const rugpt_lib_common_1 = require("@purpleschool/rugpt-lib-common");
4
5
  const enums_1 = require("../enums");
5
6
  const models_1 = require("../models");
6
7
  const zod_1 = require("zod");
@@ -9,7 +10,7 @@ var ToolJobCompleteEvent;
9
10
  ToolJobCompleteEvent.PayloadSchema = zod_1.z.object({
10
11
  job: models_1.ToolJobSchema.extend({
11
12
  toolType: zod_1.z.nativeEnum(enums_1.TOOL_TYPE),
12
- origin: zod_1.z.nativeEnum(enums_1.JOB_REQUEST_ORIGIN).optional(),
13
+ callOrigin: zod_1.z.nativeEnum(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN).optional(),
13
14
  }),
14
15
  });
15
16
  })(ToolJobCompleteEvent || (exports.ToolJobCompleteEvent = ToolJobCompleteEvent = {}));
@@ -17,7 +17,6 @@ const models_1 = require("../../marketplace-card/models");
17
17
  const interior_design_1 = require("../../interior-design");
18
18
  const solving_edu_task_1 = require("../../solving-edu-task");
19
19
  const spell_corrector_1 = require("../../spell-corrector");
20
- const models_2 = require("../../html-page-builder/models");
21
20
  exports.GlobalToolsConfigSchema = zod_1.z.object({
22
21
  [enums_1.TOOL_CONTENT_TYPE.VIDEO]: video_1.VideoConfigSchema,
23
22
  [enums_1.TOOL_CONTENT_TYPE.MUSIC]: music_1.MusicConfigSchema,
@@ -33,5 +32,4 @@ exports.GlobalToolsConfigSchema = zod_1.z.object({
33
32
  [enums_1.TOOL_CONTENT_TYPE.INTERIOR_DESIGN]: interior_design_1.InteriorDesignConfigSchema,
34
33
  [enums_1.TOOL_CONTENT_TYPE.SOLVING_EDU_TASK]: solving_edu_task_1.SolvingEduTaskConfigSchema,
35
34
  [enums_1.TOOL_CONTENT_TYPE.SPELL_CORRECTOR]: spell_corrector_1.SpellCorrectorToolConfigSchema,
36
- [enums_1.TOOL_CONTENT_TYPE.HTML_PAGE_BUILDER]: models_2.HtmlPageBuilderConfigSchema,
37
35
  });
@@ -18,7 +18,6 @@ const tool_schema_1 = require("./tool.schema");
18
18
  const interior_design_1 = require("../../interior-design");
19
19
  const solving_edu_task_1 = require("../../solving-edu-task");
20
20
  const spell_corrector_1 = require("../../spell-corrector");
21
- const models_2 = require("../../html-page-builder/models");
22
21
  // Discriminated union array: Tools with their configs
23
22
  exports.ToolWithConfigSchema = zod_1.z.discriminatedUnion('contentType', [
24
23
  tool_schema_1.ToolSchema.merge(zod_1.z.object({
@@ -77,9 +76,5 @@ exports.ToolWithConfigSchema = zod_1.z.discriminatedUnion('contentType', [
77
76
  contentType: zod_1.z.literal(enums_1.TOOL_CONTENT_TYPE.SPELL_CORRECTOR),
78
77
  config: spell_corrector_1.SpellCorrectorToolConfigSchema,
79
78
  })),
80
- tool_schema_1.ToolSchema.merge(zod_1.z.object({
81
- contentType: zod_1.z.literal(enums_1.TOOL_CONTENT_TYPE.HTML_PAGE_BUILDER),
82
- config: models_2.HtmlPageBuilderConfigSchema,
83
- })),
84
79
  ]);
85
80
  exports.ToolsWithConfigsSchema = zod_1.z.array(exports.ToolWithConfigSchema);
@@ -6,5 +6,6 @@ const models_1 = require("../models");
6
6
  const common_1 = require("../../common");
7
7
  var FindAllToolsQuery;
8
8
  (function (FindAllToolsQuery) {
9
+ FindAllToolsQuery.RequestSchema = common_1.LocaleRequestSchema;
9
10
  FindAllToolsQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(zod_1.z.array(models_1.ToolSchema));
10
11
  })(FindAllToolsQuery || (exports.FindAllToolsQuery = FindAllToolsQuery = {}));
@@ -6,5 +6,6 @@ const models_1 = require("../models");
6
6
  const common_1 = require("../../common");
7
7
  var FindGroupedToolsQuery;
8
8
  (function (FindGroupedToolsQuery) {
9
+ FindGroupedToolsQuery.RequestSchema = common_1.LocaleRequestSchema;
9
10
  FindGroupedToolsQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(zod_1.z.array(models_1.ToolGroupSchema));
10
11
  })(FindGroupedToolsQuery || (exports.FindGroupedToolsQuery = FindGroupedToolsQuery = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetGlobalToolsConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetGlobalToolsConfigQuery;
7
7
  (function (GetGlobalToolsConfigQuery) {
8
- GetGlobalToolsConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.GlobalToolsConfigSchema);
8
+ GetGlobalToolsConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetGlobalToolsConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.GlobalToolsConfigSchema);
9
10
  })(GetGlobalToolsConfigQuery || (exports.GetGlobalToolsConfigQuery = GetGlobalToolsConfigQuery = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetToolsWithConfigsQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetToolsWithConfigsQuery;
7
7
  (function (GetToolsWithConfigsQuery) {
8
- GetToolsWithConfigsQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.ToolsWithConfigsSchema);
8
+ GetToolsWithConfigsQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetToolsWithConfigsQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ToolsWithConfigsSchema);
9
10
  })(GetToolsWithConfigsQuery || (exports.GetToolsWithConfigsQuery = GetToolsWithConfigsQuery = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetTTSConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetTTSConfigQuery;
7
7
  (function (GetTTSConfigQuery) {
8
- GetTTSConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.TTSConfigSchema);
8
+ GetTTSConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetTTSConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.TTSConfigSchema);
9
10
  })(GetTTSConfigQuery || (exports.GetTTSConfigQuery = GetTTSConfigQuery = {}));
@@ -8,6 +8,7 @@ var GetVideoModelByUuidCommand;
8
8
  (function (GetVideoModelByUuidCommand) {
9
9
  GetVideoModelByUuidCommand.RequestSchema = zod_1.z.object({
10
10
  uuid: zod_1.z.string().uuid(),
11
+ locale: common_1.LocaleSchema,
11
12
  });
12
13
  GetVideoModelByUuidCommand.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.VideoModelSchema);
13
14
  })(GetVideoModelByUuidCommand || (exports.GetVideoModelByUuidCommand = GetVideoModelByUuidCommand = {}));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetVideoConfigQuery = void 0;
4
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetVideoConfigQuery;
7
7
  (function (GetVideoConfigQuery) {
8
- GetVideoConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.VideoConfigSchema);
8
+ GetVideoConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetVideoConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.VideoConfigSchema);
9
10
  })(GetVideoConfigQuery || (exports.GetVideoConfigQuery = GetVideoConfigQuery = {}));
@@ -8,6 +8,7 @@ var GetVideoEditorModelByUuidCommand;
8
8
  (function (GetVideoEditorModelByUuidCommand) {
9
9
  GetVideoEditorModelByUuidCommand.RequestSchema = zod_1.z.object({
10
10
  uuid: zod_1.z.string().uuid(),
11
+ locale: common_1.LocaleSchema,
11
12
  });
12
13
  GetVideoEditorModelByUuidCommand.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.VideoEditorModelSchema);
13
14
  })(GetVideoEditorModelByUuidCommand || (exports.GetVideoEditorModelByUuidCommand = GetVideoEditorModelByUuidCommand = {}));
@@ -1,11 +1,10 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GetVideoEditorConfigQuery = void 0;
4
- const zod_1 = require("zod");
5
- const command_response_schema_1 = require("../../common/models/command-response.schema");
4
+ const common_1 = require("../../common");
6
5
  const models_1 = require("../models");
7
6
  var GetVideoEditorConfigQuery;
8
7
  (function (GetVideoEditorConfigQuery) {
9
- GetVideoEditorConfigQuery.RequestSchema = zod_1.z.object({});
10
- GetVideoEditorConfigQuery.ResponseSchema = (0, command_response_schema_1.ICommandResponseSchema)(models_1.VideoEditorConfigSchema);
8
+ GetVideoEditorConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
9
+ GetVideoEditorConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.VideoEditorConfigSchema);
11
10
  })(GetVideoEditorConfigQuery || (exports.GetVideoEditorConfigQuery = GetVideoEditorConfigQuery = {}));
@@ -7,6 +7,7 @@ const models_1 = require("../models");
7
7
  var CreateWriterDocumentCommand;
8
8
  (function (CreateWriterDocumentCommand) {
9
9
  CreateWriterDocumentCommand.RequestSchema = zod_1.z.object({
10
+ locale: common_1.LocaleSchema,
10
11
  userId: zod_1.z.string().uuid().nullable().optional(),
11
12
  unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
12
13
  prompt: zod_1.z.string(),
@@ -3,11 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.GenerateWriterDocumentOutlineCommand = void 0;
4
4
  const zod_1 = require("zod");
5
5
  const command_response_schema_1 = require("../../common/models/command-response.schema");
6
+ const locale_schema_1 = require("../../common/models/locale.schema");
6
7
  const models_1 = require("../models");
7
8
  var GenerateWriterDocumentOutlineCommand;
8
9
  (function (GenerateWriterDocumentOutlineCommand) {
9
10
  GenerateWriterDocumentOutlineCommand.RequestSchema = zod_1.z.object({
10
11
  uuid: zod_1.z.string().uuid(),
12
+ locale: locale_schema_1.LocaleSchema,
11
13
  numPages: zod_1.z.number(),
12
14
  description: zod_1.z.string().nullable().optional(),
13
15
  userId: zod_1.z.string().uuid().nullable().optional(),
@@ -5,5 +5,6 @@ const common_1 = require("../../common");
5
5
  const models_1 = require("../models");
6
6
  var GetWriterConfigQuery;
7
7
  (function (GetWriterConfigQuery) {
8
+ GetWriterConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
8
9
  GetWriterConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.WriterConfigSchema);
9
10
  })(GetWriterConfigQuery || (exports.GetWriterConfigQuery = GetWriterConfigQuery = {}));
@@ -1,3 +1,4 @@
1
1
  export * from './command-response.schema';
2
2
  export * from './icon-variants.schema';
3
3
  export * from './attached-file.schema';
4
+ export * from './locale.schema';
@@ -0,0 +1,11 @@
1
+ import { LOCALE } from '@purpleschool/rugpt-lib-common';
2
+ import { z } from 'zod';
3
+
4
+ export const LocaleSchema = z.nativeEnum(LOCALE);
5
+
6
+ export const LocaleRequestSchema = z.object({
7
+ locale: LocaleSchema,
8
+ });
9
+
10
+ export type Locale = z.infer<typeof LocaleSchema>;
11
+ export type LocaleRequest = z.infer<typeof LocaleRequestSchema>;
@@ -1,10 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { ImageEditorModelSchema } from '../../models';
3
- import { ICommandResponseSchema } from '../../../common';
3
+ import { ICommandResponseSchema, LocaleSchema } from '../../../common';
4
4
 
5
5
  export namespace GetImageEditorModelByUuidCommand {
6
6
  export const RequestSchema = z.object({
7
7
  uuid: z.string().uuid(),
8
+ locale: LocaleSchema,
8
9
  });
9
10
  export type Request = z.infer<typeof RequestSchema>;
10
11
 
@@ -1,8 +1,11 @@
1
1
  import { z } from 'zod';
2
- import { ICommandResponseSchema } from '../../common/models/command-response.schema';
2
+ import { ICommandResponseSchema, LocaleRequestSchema } from '../../common';
3
3
  import { ImageEditorConfigSchema } from '../models';
4
4
 
5
5
  export namespace GetImageEditorConfigQuery {
6
+ export const RequestSchema = LocaleRequestSchema;
7
+ export type Request = z.infer<typeof RequestSchema>;
8
+
6
9
  export const ResponseSchema = ICommandResponseSchema(ImageEditorConfigSchema);
7
10
  export type Response = z.infer<typeof ResponseSchema>;
8
11
  }
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import { ICommandResponseSchema } from '../../common/models/command-response.schema';
3
- import { JOB_REQUEST_ORIGIN } from '../../tools';
4
3
  import { ImageGenerationJobSchema, ImageGenerationRequestParamsSchema } from '../models';
4
+ import { STATISTICS_CALL_ORIGIN } from '@purpleschool/rugpt-lib-common';
5
5
 
6
6
  export namespace ExecuteImageGenerationCommand {
7
7
  export const RequestSchema = z.object({
@@ -11,7 +11,7 @@ export namespace ExecuteImageGenerationCommand {
11
11
  modelId: z.string().uuid(),
12
12
  params: ImageGenerationRequestParamsSchema,
13
13
  presetId: z.string().uuid().nullable().optional(),
14
- origin: z.nativeEnum(JOB_REQUEST_ORIGIN).default(JOB_REQUEST_ORIGIN.API),
14
+ callOrigin: z.nativeEnum(STATISTICS_CALL_ORIGIN).default(STATISTICS_CALL_ORIGIN.WEB),
15
15
  userHasActiveSubscriptionOrProduct: z.boolean(),
16
16
  tokenReservationId: z.string().uuid(),
17
17
  precalculatedPrice: z.number(),
@@ -1,10 +1,11 @@
1
1
  import { z } from 'zod';
2
2
  import { ImageGenerationModelSchema } from '../../models';
3
- import { ICommandResponseSchema } from '../../../common';
3
+ import { ICommandResponseSchema, LocaleSchema } from '../../../common';
4
4
 
5
5
  export namespace GetImageGenerationModelByUuidCommand {
6
6
  export const RequestSchema = z.object({
7
7
  uuid: z.string().uuid(),
8
+ locale: LocaleSchema,
8
9
  });
9
10
  export type Request = z.infer<typeof RequestSchema>;
10
11
 
@@ -1,7 +1,8 @@
1
1
  import { z } from 'zod';
2
- import { JOB_REQUEST_ORIGIN, JOB_STATUS } from '../../tools';
2
+ import { JOB_STATUS } from '../../tools';
3
3
  import { AttachedFileSchema, USER_REACTION } from '../../common';
4
4
  import { IMAGE_GENERATION_RESOLUTION } from '../enums';
5
+ import { STATISTICS_CALL_ORIGIN } from '@purpleschool/rugpt-lib-common';
5
6
 
6
7
  export const ImageGenerationJobParamsSchema = z.object({
7
8
  aspectRatio: z.string(),
@@ -30,7 +31,8 @@ export const ImageGenerationJobSchema = z.object({
30
31
  userId: z.string().nullable().optional(),
31
32
  unregisteredUserId: z.string().nullable().optional(),
32
33
  isPublished: z.boolean(),
33
- origin: z.nativeEnum(JOB_REQUEST_ORIGIN),
34
+ origin: z.string(),
35
+ callOrigin: z.nativeEnum(STATISTICS_CALL_ORIGIN),
34
36
  postId: z.string().nullable(),
35
37
  isDeleted: z.boolean(),
36
38
  internalError: z.string().nullable(),