@purpleschool/gptbot-tools 0.2.13-stage → 0.2.13-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.
- package/build/common/models/index.js +1 -0
- package/build/common/models/locale.schema.js +9 -0
- package/build/diagrams/commands/diagrams.command.js +1 -0
- package/build/diagrams/commands/edit-diagrams-job.command.js +1 -0
- package/build/diagrams/commands/retry-diagrams-job.command.js +2 -0
- package/build/diagrams/queries/get-diagrams-config.query.js +3 -4
- package/build/html-page-builder/queries/get-html-page-builder-config.query.js +1 -2
- package/build/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.js +1 -0
- package/build/image-editor/commands/image-editor.command.js +2 -0
- package/build/image-editor/commands/retry-image-editor-job.command.js +2 -0
- package/build/image-editor/queries/get-image-editor-config.query.js +3 -2
- package/build/image-generation/commands/execute-image-generation.command.js +4 -2
- package/build/image-generation/commands/image-generation-model/get-image-generation-model-by-uuid.command.js +1 -0
- package/build/image-generation/commands/retry-image-generation-job.command.js +2 -0
- package/build/image-generation/models/image-generation-job.schema.js +3 -1
- package/build/image-generation/queries/find-image-generation-jobs.query.js +2 -2
- package/build/image-generation/queries/get-image-generation-config.query.js +3 -4
- package/build/interior-design/commands/get-interior-design-price.command.js +1 -0
- package/build/interior-design/commands/interior-design-model/get-interior-design-model-by-uuid.command.js +1 -0
- package/build/interior-design/commands/interior-design.command.js +1 -0
- package/build/interior-design/commands/retry-interior-design-job.command.js +2 -0
- package/build/interior-design/queries/get-interior-design-config.query.js +3 -2
- package/build/marketplace-card/commands/execute-marketplace-card.command.js +1 -0
- package/build/marketplace-card/commands/retry-marketplace-card-job.command.js +1 -0
- package/build/marketplace-card/queries/get-marketplace-card-config.query.js +1 -2
- package/build/music/commands/generate-lyrics.command.js +2 -0
- package/build/music/commands/generate-music.command.js +2 -0
- package/build/music/commands/music-model/get-music-model-by-uuid.command.js +1 -0
- package/build/music/commands/retry-music-job.command.js +2 -0
- package/build/music/queries/get-music-config.query.js +3 -2
- package/build/paraphrase/queries/get-paraphrase-tool-config.query.js +3 -2
- package/build/presentation/commands/create-presentation.command.js +1 -0
- package/build/presentation/commands/generate-and-insert-slide.command.js +1 -0
- package/build/presentation/commands/generate-slides.command.js +1 -0
- package/build/presentation/queries/get-presentation-config.query.js +1 -0
- package/build/solving-edu-task/commands/retry-solving-edu-task-job.command.js +2 -0
- package/build/solving-edu-task/commands/solving-edu-task.command.js +1 -0
- package/build/solving-edu-task/queries/get-solving-edu-task-config.query.js +1 -2
- package/build/spell-corrector/queries/get-spell-corrector-tool-config.query.js +3 -2
- package/build/stt/queries/get-stt-config.query.js +3 -2
- package/build/tools/enums/index.js +0 -1
- package/build/tools/events/tool-job-complete.event.js +2 -1
- package/build/tools/queries/find-all-tools.query.js +1 -0
- package/build/tools/queries/find-grouped-tools.query.js +1 -0
- package/build/tools/queries/get-global-tools-config.query.js +3 -2
- package/build/tools/queries/get-tools-with-configs.query.js +3 -2
- package/build/tts/queries/get-tts-config.query.js +3 -2
- package/build/video/commands/retry-video-job.command.js +2 -0
- package/build/video/commands/video-model/get-video-model-by-uuid.command.js +1 -0
- package/build/video/commands/video.command.js +2 -0
- package/build/video/enums/video-generation-model-limitation.enum.js +0 -1
- package/build/video/models/video-job.schema.js +0 -4
- package/build/video/models/video-model.schema.js +0 -10
- package/build/video/queries/get-video-config.query.js +3 -2
- package/build/video-editor/commands/video-editor-model/get-video-editor-model.command.js +1 -0
- package/build/video-editor/queries/get-video-editor-config.query.js +3 -4
- package/build/writer/commands/create-writer-document.command.js +1 -0
- package/build/writer/commands/generate-document-outline.command.js +2 -0
- package/build/writer/queries/get-writer-config.query.js +1 -0
- package/common/models/index.ts +1 -0
- package/common/models/locale.schema.ts +11 -0
- package/diagrams/commands/diagrams.command.ts +2 -1
- package/diagrams/commands/edit-diagrams-job.command.ts +2 -1
- package/diagrams/commands/retry-diagrams-job.command.ts +2 -0
- package/diagrams/queries/get-diagrams-config.query.ts +3 -3
- package/html-page-builder/queries/get-html-page-builder-config.query.ts +2 -2
- package/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.ts +2 -1
- package/image-editor/commands/image-editor.command.ts +2 -0
- package/image-editor/commands/retry-image-editor-job.command.ts +2 -0
- package/image-editor/queries/get-image-editor-config.query.ts +4 -1
- package/image-generation/commands/execute-image-generation.command.ts +4 -2
- package/image-generation/commands/image-generation-model/get-image-generation-model-by-uuid.command.ts +2 -1
- package/image-generation/commands/retry-image-generation-job.command.ts +2 -0
- package/image-generation/models/image-generation-job.schema.ts +4 -2
- package/image-generation/queries/find-image-generation-jobs.query.ts +2 -2
- package/image-generation/queries/get-image-generation-config.query.ts +2 -2
- package/interior-design/commands/get-interior-design-price.command.ts +2 -1
- package/interior-design/commands/interior-design-model/get-interior-design-model-by-uuid.command.ts +2 -1
- package/interior-design/commands/interior-design.command.ts +2 -1
- package/interior-design/commands/retry-interior-design-job.command.ts +2 -0
- package/interior-design/queries/get-interior-design-config.query.ts +4 -1
- package/marketplace-card/commands/execute-marketplace-card.command.ts +2 -1
- package/marketplace-card/commands/retry-marketplace-card-job.command.ts +2 -1
- package/marketplace-card/queries/get-marketplace-card-config.query.ts +2 -2
- package/music/commands/generate-lyrics.command.ts +2 -0
- package/music/commands/generate-music.command.ts +2 -0
- package/music/commands/music-model/get-music-model-by-uuid.command.ts +2 -1
- package/music/commands/retry-music-job.command.ts +2 -0
- package/music/queries/get-music-config.query.ts +4 -1
- package/package.json +2 -1
- package/paraphrase/queries/get-paraphrase-tool-config.query.ts +4 -1
- package/presentation/commands/create-presentation.command.ts +2 -1
- package/presentation/commands/generate-and-insert-slide.command.ts +2 -1
- package/presentation/commands/generate-slides.command.ts +2 -1
- package/presentation/queries/get-presentation-config.query.ts +4 -1
- package/solving-edu-task/commands/retry-solving-edu-task-job.command.ts +2 -0
- package/solving-edu-task/commands/solving-edu-task.command.ts +2 -1
- package/solving-edu-task/queries/get-solving-edu-task-config.query.ts +2 -2
- package/spell-corrector/queries/get-spell-corrector-tool-config.query.ts +4 -1
- package/stt/queries/get-stt-config.query.ts +4 -1
- package/tools/enums/index.ts +0 -1
- package/tools/events/tool-job-complete.event.ts +3 -2
- package/tools/queries/find-all-tools.query.ts +4 -1
- package/tools/queries/find-grouped-tools.query.ts +4 -1
- package/tools/queries/get-global-tools-config.query.ts +4 -1
- package/tools/queries/get-tools-with-configs.query.ts +4 -1
- package/tts/queries/get-tts-config.query.ts +4 -1
- package/video/commands/retry-video-job.command.ts +2 -0
- package/video/commands/video-model/get-video-model-by-uuid.command.ts +2 -1
- package/video/commands/video.command.ts +2 -0
- package/video/enums/video-generation-model-limitation.enum.ts +0 -1
- package/video/models/video-job.schema.ts +0 -4
- package/video/models/video-model.schema.ts +0 -10
- package/video/queries/get-video-config.query.ts +4 -1
- package/video-editor/commands/video-editor-model/get-video-editor-model.command.ts +2 -1
- package/video-editor/queries/get-video-editor-config.query.ts +2 -2
- package/writer/commands/create-writer-document.command.ts +2 -1
- package/writer/commands/generate-document-outline.command.ts +2 -0
- package/writer/queries/get-writer-config.query.ts +4 -1
- package/build/tools/enums/job-request-origin.enum.js +0 -8
- 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
|
+
});
|
|
@@ -7,6 +7,7 @@ const models_1 = require("../models");
|
|
|
7
7
|
var DiagramsCommand;
|
|
8
8
|
(function (DiagramsCommand) {
|
|
9
9
|
DiagramsCommand.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(),
|
|
@@ -7,6 +7,7 @@ const models_1 = require("../models");
|
|
|
7
7
|
var EditDiagramsJobCommand;
|
|
8
8
|
(function (EditDiagramsJobCommand) {
|
|
9
9
|
EditDiagramsJobCommand.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
|
uuid: zod_1.z.string().uuid(),
|
|
@@ -3,10 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.RetryDiagramsJobCommand = 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 RetryDiagramsJobCommand;
|
|
8
9
|
(function (RetryDiagramsJobCommand) {
|
|
9
10
|
RetryDiagramsJobCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
locale: locale_schema_1.LocaleSchema,
|
|
10
12
|
uuid: zod_1.z.string().uuid(),
|
|
11
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GetDiagramsConfigQuery = void 0;
|
|
4
|
-
const
|
|
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 GetDiagramsConfigQuery;
|
|
8
7
|
(function (GetDiagramsConfigQuery) {
|
|
9
|
-
GetDiagramsConfigQuery.
|
|
10
|
-
GetDiagramsConfigQuery.ResponseSchema = (0,
|
|
8
|
+
GetDiagramsConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
|
|
9
|
+
GetDiagramsConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.DiagramsConfigSchema);
|
|
11
10
|
})(GetDiagramsConfigQuery || (exports.GetDiagramsConfigQuery = GetDiagramsConfigQuery = {}));
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GetHtmlPageBuilderConfigQuery = 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 GetHtmlPageBuilderConfigQuery;
|
|
8
7
|
(function (GetHtmlPageBuilderConfigQuery) {
|
|
9
|
-
GetHtmlPageBuilderConfigQuery.RequestSchema =
|
|
8
|
+
GetHtmlPageBuilderConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
|
|
10
9
|
GetHtmlPageBuilderConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.HtmlPageBuilderConfigSchema);
|
|
11
10
|
})(GetHtmlPageBuilderConfigQuery || (exports.GetHtmlPageBuilderConfigQuery = GetHtmlPageBuilderConfigQuery = {}));
|
package/build/image-editor/commands/image-editor-model/get-image-editor-model-by-uuid.command.js
CHANGED
|
@@ -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 = {}));
|
|
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ImageEditorCommand = 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
|
const common_1 = require("../../common");
|
|
8
9
|
const tool_workspace_1 = require("../../tool-workspace");
|
|
@@ -10,6 +11,7 @@ const tools_1 = require("../../tools");
|
|
|
10
11
|
var ImageEditorCommand;
|
|
11
12
|
(function (ImageEditorCommand) {
|
|
12
13
|
ImageEditorCommand.RequestSchema = zod_1.z.object({
|
|
14
|
+
locale: locale_schema_1.LocaleSchema,
|
|
13
15
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
14
16
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
15
17
|
workspaceId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -4,9 +4,11 @@ exports.RetryImageEditorJobCommand = 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 common_1 = require("../../common");
|
|
7
8
|
var RetryImageEditorJobCommand;
|
|
8
9
|
(function (RetryImageEditorJobCommand) {
|
|
9
10
|
RetryImageEditorJobCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
locale: common_1.LocaleSchema,
|
|
10
12
|
uuid: zod_1.z.string().uuid(),
|
|
11
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GetImageEditorConfigQuery = void 0;
|
|
4
|
-
const
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetImageEditorConfigQuery;
|
|
7
7
|
(function (GetImageEditorConfigQuery) {
|
|
8
|
-
GetImageEditorConfigQuery.
|
|
8
|
+
GetImageEditorConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
|
|
9
|
+
GetImageEditorConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ImageEditorConfigSchema);
|
|
9
10
|
})(GetImageEditorConfigQuery || (exports.GetImageEditorConfigQuery = GetImageEditorConfigQuery = {}));
|
|
@@ -3,18 +3,20 @@ 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
|
|
6
|
+
const locale_schema_1 = require("../../common/models/locale.schema");
|
|
7
7
|
const models_1 = require("../models");
|
|
8
|
+
const rugpt_lib_common_1 = require("@purpleschool/rugpt-lib-common");
|
|
8
9
|
var ExecuteImageGenerationCommand;
|
|
9
10
|
(function (ExecuteImageGenerationCommand) {
|
|
10
11
|
ExecuteImageGenerationCommand.RequestSchema = zod_1.z.object({
|
|
12
|
+
locale: locale_schema_1.LocaleSchema,
|
|
11
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
13
15
|
prompt: zod_1.z.string(),
|
|
14
16
|
modelId: zod_1.z.string().uuid(),
|
|
15
17
|
params: models_1.ImageGenerationRequestParamsSchema,
|
|
16
18
|
presetId: zod_1.z.string().uuid().nullable().optional(),
|
|
17
|
-
|
|
19
|
+
callOrigin: zod_1.z.nativeEnum(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN).default(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN.WEB),
|
|
18
20
|
userHasActiveSubscriptionOrProduct: zod_1.z.boolean(),
|
|
19
21
|
tokenReservationId: zod_1.z.string().uuid(),
|
|
20
22
|
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 = {}));
|
|
@@ -4,9 +4,11 @@ exports.RetryImageGenerationJobCommand = 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 common_1 = require("../../common");
|
|
7
8
|
var RetryImageGenerationJobCommand;
|
|
8
9
|
(function (RetryImageGenerationJobCommand) {
|
|
9
10
|
RetryImageGenerationJobCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
locale: common_1.LocaleSchema,
|
|
10
12
|
uuid: zod_1.z.string().uuid(),
|
|
11
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -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.
|
|
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
|
|
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
|
-
|
|
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
|
|
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 =
|
|
10
|
-
GetImageGenerationConfigQuery.ResponseSchema = (0,
|
|
8
|
+
GetImageGenerationConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
|
|
9
|
+
GetImageGenerationConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.ImageGenerationConfigSchema);
|
|
11
10
|
})(GetImageGenerationConfigQuery || (exports.GetImageGenerationConfigQuery = GetImageGenerationConfigQuery = {}));
|
|
@@ -7,6 +7,7 @@ const common_1 = require("../../common");
|
|
|
7
7
|
var GetInteriorDesignPriceCommand;
|
|
8
8
|
(function (GetInteriorDesignPriceCommand) {
|
|
9
9
|
GetInteriorDesignPriceCommand.RequestSchema = zod_1.z.object({
|
|
10
|
+
locale: common_1.LocaleSchema,
|
|
10
11
|
modelId: zod_1.z.string().uuid(),
|
|
11
12
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
13
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -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 = {}));
|
|
@@ -9,6 +9,7 @@ const enums_1 = require("../enums");
|
|
|
9
9
|
var InteriorDesignCommand;
|
|
10
10
|
(function (InteriorDesignCommand) {
|
|
11
11
|
InteriorDesignCommand.RequestSchema = zod_1.z.object({
|
|
12
|
+
locale: common_1.LocaleSchema,
|
|
12
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
13
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
14
15
|
prompt: zod_1.z.string(),
|
|
@@ -3,10 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.RetryInteriorDesignJobCommand = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const command_response_schema_1 = require("../../common/models/command-response.schema");
|
|
6
|
+
const common_1 = require("../../common");
|
|
6
7
|
const models_1 = require("../models");
|
|
7
8
|
var RetryInteriorDesignJobCommand;
|
|
8
9
|
(function (RetryInteriorDesignJobCommand) {
|
|
9
10
|
RetryInteriorDesignJobCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
locale: common_1.LocaleSchema,
|
|
10
12
|
uuid: zod_1.z.string().uuid(),
|
|
11
13
|
tokenReservationId: zod_1.z.string().uuid(),
|
|
12
14
|
precalculatedPrice: zod_1.z.number(),
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GetInteriorDesignConfigQuery = void 0;
|
|
4
|
-
const
|
|
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.
|
|
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 = {}));
|
|
@@ -10,6 +10,7 @@ const common_1 = require("../../common");
|
|
|
10
10
|
var ExecuteMarketplaceCardCommand;
|
|
11
11
|
(function (ExecuteMarketplaceCardCommand) {
|
|
12
12
|
ExecuteMarketplaceCardCommand.RequestSchema = zod_1.z.object({
|
|
13
|
+
locale: common_1.LocaleSchema,
|
|
13
14
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
14
15
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
15
16
|
workspaceId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -8,6 +8,7 @@ const models_1 = require("../models");
|
|
|
8
8
|
var RetryMarketplaceCardJobCommand;
|
|
9
9
|
(function (RetryMarketplaceCardJobCommand) {
|
|
10
10
|
RetryMarketplaceCardJobCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
locale: common_1.LocaleSchema,
|
|
11
12
|
uuid: zod_1.z.string().uuid(),
|
|
12
13
|
tokenReservationId: zod_1.z.string().uuid(),
|
|
13
14
|
precalculatedPrice: zod_1.z.number(),
|
|
@@ -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 =
|
|
8
|
+
GetMarketplaceCardConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
|
|
10
9
|
GetMarketplaceCardConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.MarketplaceCardConfigSchema);
|
|
11
10
|
})(GetMarketplaceCardConfigQuery || (exports.GetMarketplaceCardConfigQuery = GetMarketplaceCardConfigQuery = {}));
|
|
@@ -3,9 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GenerateLyricsCommand = 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
|
var GenerateLyricsCommand;
|
|
7
8
|
(function (GenerateLyricsCommand) {
|
|
8
9
|
GenerateLyricsCommand.RequestSchema = zod_1.z.object({
|
|
10
|
+
locale: locale_schema_1.LocaleSchema,
|
|
9
11
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
10
12
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
11
13
|
userBalance: zod_1.z.number(),
|
|
@@ -3,11 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GenerateMusicCommand = 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 music_job_schema_1 = require("../models/music-job.schema");
|
|
7
8
|
const models_1 = require("../models");
|
|
8
9
|
var GenerateMusicCommand;
|
|
9
10
|
(function (GenerateMusicCommand) {
|
|
10
11
|
GenerateMusicCommand.RequestSchema = zod_1.z.object({
|
|
12
|
+
locale: locale_schema_1.LocaleSchema,
|
|
11
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
13
15
|
modelId: zod_1.z.string(),
|
|
@@ -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 = {}));
|
|
@@ -4,9 +4,11 @@ exports.RetryMusicJobCommand = 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 music_job_schema_1 = require("../models/music-job.schema");
|
|
7
|
+
const common_1 = require("../../common");
|
|
7
8
|
var RetryMusicJobCommand;
|
|
8
9
|
(function (RetryMusicJobCommand) {
|
|
9
10
|
RetryMusicJobCommand.RequestSchema = zod_1.z.object({
|
|
11
|
+
locale: common_1.LocaleSchema,
|
|
10
12
|
uuid: zod_1.z.string().uuid(),
|
|
11
13
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
14
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.GetMusicConfigQuery = void 0;
|
|
4
|
-
const
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetMusicConfigQuery;
|
|
7
7
|
(function (GetMusicConfigQuery) {
|
|
8
|
-
GetMusicConfigQuery.
|
|
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
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetParaphraseToolConfigQuery;
|
|
7
7
|
(function (GetParaphraseToolConfigQuery) {
|
|
8
|
-
GetParaphraseToolConfigQuery.
|
|
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(),
|
|
@@ -8,6 +8,7 @@ const models_1 = require("../models");
|
|
|
8
8
|
var GenerateAndInsertSlideCommand;
|
|
9
9
|
(function (GenerateAndInsertSlideCommand) {
|
|
10
10
|
GenerateAndInsertSlideCommand.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
|
userBalance: zod_1.z.number(),
|
|
@@ -7,6 +7,7 @@ const models_1 = require("../models");
|
|
|
7
7
|
var GenerateSlidesCommand;
|
|
8
8
|
(function (GenerateSlidesCommand) {
|
|
9
9
|
GenerateSlidesCommand.RequestSchema = zod_1.z.object({
|
|
10
|
+
locale: common_1.LocaleSchema,
|
|
10
11
|
uuid: zod_1.z.string().uuid(),
|
|
11
12
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
12
13
|
unregisteredUserId: 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 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 = {}));
|
|
@@ -3,11 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.RetrySolvingEduTaskJobCommand = 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
|
const common_1 = require("../../common");
|
|
8
9
|
var RetrySolvingEduTaskJobCommand;
|
|
9
10
|
(function (RetrySolvingEduTaskJobCommand) {
|
|
10
11
|
RetrySolvingEduTaskJobCommand.RequestSchema = zod_1.z.object({
|
|
12
|
+
locale: locale_schema_1.LocaleSchema,
|
|
11
13
|
uuid: zod_1.z.string().uuid(),
|
|
12
14
|
tokenReservationId: zod_1.z.string().uuid().optional(),
|
|
13
15
|
precalculatedPrice: zod_1.z.number().optional(),
|
|
@@ -8,6 +8,7 @@ const common_1 = require("../../common");
|
|
|
8
8
|
var SolvingEduTaskCommand;
|
|
9
9
|
(function (SolvingEduTaskCommand) {
|
|
10
10
|
SolvingEduTaskCommand.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
|
prompt: zod_1.z.string(),
|
|
@@ -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 =
|
|
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
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetSpellCorrectorToolConfigQuery;
|
|
7
7
|
(function (GetSpellCorrectorToolConfigQuery) {
|
|
8
|
-
GetSpellCorrectorToolConfigQuery.
|
|
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
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetSTTConfigQuery;
|
|
7
7
|
(function (GetSTTConfigQuery) {
|
|
8
|
-
GetSTTConfigQuery.
|
|
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);
|
|
@@ -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
|
-
|
|
13
|
+
callOrigin: zod_1.z.nativeEnum(rugpt_lib_common_1.STATISTICS_CALL_ORIGIN).optional(),
|
|
13
14
|
}),
|
|
14
15
|
});
|
|
15
16
|
})(ToolJobCompleteEvent || (exports.ToolJobCompleteEvent = ToolJobCompleteEvent = {}));
|
|
@@ -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
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetGlobalToolsConfigQuery;
|
|
7
7
|
(function (GetGlobalToolsConfigQuery) {
|
|
8
|
-
GetGlobalToolsConfigQuery.
|
|
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
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetToolsWithConfigsQuery;
|
|
7
7
|
(function (GetToolsWithConfigsQuery) {
|
|
8
|
-
GetToolsWithConfigsQuery.
|
|
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
|
|
4
|
+
const common_1 = require("../../common");
|
|
5
5
|
const models_1 = require("../models");
|
|
6
6
|
var GetTTSConfigQuery;
|
|
7
7
|
(function (GetTTSConfigQuery) {
|
|
8
|
-
GetTTSConfigQuery.
|
|
8
|
+
GetTTSConfigQuery.RequestSchema = common_1.LocaleRequestSchema;
|
|
9
|
+
GetTTSConfigQuery.ResponseSchema = (0, common_1.ICommandResponseSchema)(models_1.TTSConfigSchema);
|
|
9
10
|
})(GetTTSConfigQuery || (exports.GetTTSConfigQuery = GetTTSConfigQuery = {}));
|
|
@@ -5,9 +5,11 @@ const zod_1 = require("zod");
|
|
|
5
5
|
const command_response_schema_1 = require("../../common/models/command-response.schema");
|
|
6
6
|
const video_job_schema_1 = require("../models/video-job.schema");
|
|
7
7
|
const models_1 = require("../models");
|
|
8
|
+
const common_1 = require("../../common");
|
|
8
9
|
var RetryVideoJobCommand;
|
|
9
10
|
(function (RetryVideoJobCommand) {
|
|
10
11
|
RetryVideoJobCommand.RequestSchema = zod_1.z.object({
|
|
12
|
+
locale: common_1.LocaleSchema,
|
|
11
13
|
uuid: zod_1.z.string().uuid(),
|
|
12
14
|
userId: zod_1.z.string().uuid().nullable().optional(),
|
|
13
15
|
unregisteredUserId: zod_1.z.string().uuid().nullable().optional(),
|
|
@@ -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 = {}));
|