@purpleschool/gptbot 0.14.40 → 0.14.41
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/commands/ai-model/find-ai-model.command.d.ts +1 -1
- package/build/commands/ai-studio/canvas-node/find-canvas-node-definitions-with-configs.query.d.ts +2 -2
- package/build/commands/ai-studio/canvas-tool/text-gen/get-text-generation-config.command.d.ts +1 -1
- package/build/commands/ai-vendor/create-ai-vendor.command.d.ts +2 -2
- package/build/commands/ai-vendor/find-ai-vendor-by-uuid.query.d.ts +1 -1
- package/build/commands/ai-vendor/find-ai-vendors-by-criteria.query.d.ts +2 -2
- package/build/commands/ai-vendor/find-all-ai-vendors.command.d.ts +1 -1
- package/build/commands/ai-vendor/update-ai-vendor.command.d.ts +2 -2
- package/build/commands/tools/video-editor/get-video-editor-config.command.d.ts +1 -1
- package/build/commands/user/index.d.ts +2 -0
- package/build/commands/user/index.js +2 -0
- package/build/constants/index.d.ts +1 -0
- package/build/constants/index.js +1 -0
- package/build/constants/order/enums/index.d.ts +1 -0
- package/build/constants/order/enums/index.js +1 -0
- package/build/constants/tool-video-editor/enums/index.d.ts +1 -0
- package/build/constants/tool-video-editor/enums/index.js +1 -0
- package/build/models/canvas-node-definition.schema.d.ts +7 -7
- package/build/models/tools/presentation/index.d.ts +4 -0
- package/build/models/tools/presentation/index.js +4 -0
- package/build/models/tools/video-editor/video-editor-config.schema.d.ts +1 -1
- package/build/models/tools/writer/index.d.ts +1 -0
- package/build/models/tools/writer/index.js +1 -0
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@ export declare namespace FindAIModelCommand {
|
|
|
19
19
|
}, z.core.$strip>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
order: z.ZodNumber;
|
|
22
|
-
status: z.ZodEnum<typeof import("
|
|
22
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
23
23
|
createdAt: z.ZodDate;
|
|
24
24
|
updatedAt: z.ZodDate;
|
|
25
25
|
models: z.ZodArray<z.ZodObject<{
|
package/build/commands/ai-studio/canvas-node/find-canvas-node-definitions-with-configs.query.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export declare namespace FindCanvasNodeDefinitionsWithConfigsQuery {
|
|
|
56
56
|
}, z.core.$strip>;
|
|
57
57
|
}, z.core.$strip>;
|
|
58
58
|
order: z.ZodNumber;
|
|
59
|
-
status: z.ZodEnum<typeof import("
|
|
59
|
+
status: z.ZodEnum<typeof import("../../..").AI_VENDOR_STATUS>;
|
|
60
60
|
createdAt: z.ZodDate;
|
|
61
61
|
updatedAt: z.ZodDate;
|
|
62
62
|
models: z.ZodArray<z.ZodObject<{
|
|
@@ -574,7 +574,7 @@ export declare namespace FindCanvasNodeDefinitionsWithConfigsQuery {
|
|
|
574
574
|
uuid: z.ZodString;
|
|
575
575
|
name: z.ZodString;
|
|
576
576
|
}, z.core.$strip>>;
|
|
577
|
-
limitations: z.ZodArray<z.ZodEnum<typeof import("
|
|
577
|
+
limitations: z.ZodArray<z.ZodEnum<typeof import("../../..").VIDEO_EDITOR_MODEL_LIMITATION>>;
|
|
578
578
|
canUse: z.ZodBoolean;
|
|
579
579
|
status: z.ZodString;
|
|
580
580
|
}, z.core.$strip>>;
|
package/build/commands/ai-studio/canvas-tool/text-gen/get-text-generation-config.command.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export declare namespace GetTextGenerationConfigCommand {
|
|
|
15
15
|
}, z.core.$strip>;
|
|
16
16
|
}, z.core.$strip>;
|
|
17
17
|
order: z.ZodNumber;
|
|
18
|
-
status: z.ZodEnum<typeof import("
|
|
18
|
+
status: z.ZodEnum<typeof import("../../../..").AI_VENDOR_STATUS>;
|
|
19
19
|
createdAt: z.ZodDate;
|
|
20
20
|
updatedAt: z.ZodDate;
|
|
21
21
|
models: z.ZodArray<z.ZodObject<{
|
|
@@ -13,7 +13,7 @@ export declare namespace CreateAiVendorCommand {
|
|
|
13
13
|
}, z.core.$strip>;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
order: z.ZodNumber;
|
|
16
|
-
status: z.ZodEnum<typeof import("
|
|
16
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
17
17
|
}, z.core.$strip>;
|
|
18
18
|
type Request = z.infer<typeof RequestSchema>;
|
|
19
19
|
const ResponseSchema: z.ZodObject<{
|
|
@@ -31,7 +31,7 @@ export declare namespace CreateAiVendorCommand {
|
|
|
31
31
|
}, z.core.$strip>;
|
|
32
32
|
}, z.core.$strip>;
|
|
33
33
|
order: z.ZodNumber;
|
|
34
|
-
status: z.ZodEnum<typeof import("
|
|
34
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
35
35
|
createdAt: z.ZodDate;
|
|
36
36
|
updatedAt: z.ZodDate;
|
|
37
37
|
}, z.core.$strip>;
|
|
@@ -19,7 +19,7 @@ export declare namespace FindAiVendorByUuidCommand {
|
|
|
19
19
|
}, z.core.$strip>;
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
order: z.ZodNumber;
|
|
22
|
-
status: z.ZodEnum<typeof import("
|
|
22
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
23
23
|
createdAt: z.ZodDate;
|
|
24
24
|
updatedAt: z.ZodDate;
|
|
25
25
|
}, z.core.$strip>;
|
|
@@ -13,7 +13,7 @@ export declare namespace FindAiVendorsByCriteriaCommand {
|
|
|
13
13
|
}, z.core.$strip>;
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
order: z.ZodNumber;
|
|
16
|
-
status: z.ZodEnum<typeof import("
|
|
16
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
17
17
|
}, z.core.$strip>;
|
|
18
18
|
type Request = z.infer<typeof RequestSchema>;
|
|
19
19
|
const ResponseSchema: z.ZodObject<{
|
|
@@ -31,7 +31,7 @@ export declare namespace FindAiVendorsByCriteriaCommand {
|
|
|
31
31
|
}, z.core.$strip>;
|
|
32
32
|
}, z.core.$strip>;
|
|
33
33
|
order: z.ZodNumber;
|
|
34
|
-
status: z.ZodEnum<typeof import("
|
|
34
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
35
35
|
createdAt: z.ZodDate;
|
|
36
36
|
updatedAt: z.ZodDate;
|
|
37
37
|
}, z.core.$strip>>;
|
|
@@ -15,7 +15,7 @@ export declare namespace FindAllAiVendorsCommand {
|
|
|
15
15
|
}, z.core.$strip>;
|
|
16
16
|
}, z.core.$strip>;
|
|
17
17
|
order: z.ZodNumber;
|
|
18
|
-
status: z.ZodEnum<typeof import("
|
|
18
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
19
19
|
createdAt: z.ZodDate;
|
|
20
20
|
updatedAt: z.ZodDate;
|
|
21
21
|
}, z.core.$strip>>;
|
|
@@ -13,7 +13,7 @@ export declare namespace UpdateAiVendorCommand {
|
|
|
13
13
|
}, z.core.$strip>;
|
|
14
14
|
}, z.core.$strip>>;
|
|
15
15
|
order: z.ZodOptional<z.ZodNumber>;
|
|
16
|
-
status: z.ZodOptional<z.ZodEnum<typeof import("
|
|
16
|
+
status: z.ZodOptional<z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>>;
|
|
17
17
|
createdAt: z.ZodOptional<z.ZodDate>;
|
|
18
18
|
updatedAt: z.ZodOptional<z.ZodDate>;
|
|
19
19
|
}, z.core.$strip>;
|
|
@@ -33,7 +33,7 @@ export declare namespace UpdateAiVendorCommand {
|
|
|
33
33
|
}, z.core.$strip>;
|
|
34
34
|
}, z.core.$strip>;
|
|
35
35
|
order: z.ZodNumber;
|
|
36
|
-
status: z.ZodEnum<typeof import("
|
|
36
|
+
status: z.ZodEnum<typeof import("../..").AI_VENDOR_STATUS>;
|
|
37
37
|
createdAt: z.ZodDate;
|
|
38
38
|
updatedAt: z.ZodDate;
|
|
39
39
|
}, z.core.$strip>;
|
|
@@ -47,7 +47,7 @@ export declare namespace GetVideoEditorConfigCommand {
|
|
|
47
47
|
uuid: z.ZodString;
|
|
48
48
|
name: z.ZodString;
|
|
49
49
|
}, z.core.$strip>>;
|
|
50
|
-
limitations: z.ZodArray<z.ZodEnum<typeof import("
|
|
50
|
+
limitations: z.ZodArray<z.ZodEnum<typeof import("../../..").VIDEO_EDITOR_MODEL_LIMITATION>>;
|
|
51
51
|
canUse: z.ZodBoolean;
|
|
52
52
|
status: z.ZodString;
|
|
53
53
|
}, z.core.$strip>>;
|
|
@@ -10,6 +10,8 @@ export * from './get-user-balance.command';
|
|
|
10
10
|
export * from './get-user-orders.command';
|
|
11
11
|
export * from './get-user-subscriptions.command';
|
|
12
12
|
export * from './get-user-products.command';
|
|
13
|
+
export * from './get-telegram-notification.command';
|
|
14
|
+
export * from './send-telegram-notification.command';
|
|
13
15
|
export * from './delete-account.command';
|
|
14
16
|
export * from './get-aggregated-user-data.command';
|
|
15
17
|
export * from './get-user-payments.command';
|
|
@@ -26,6 +26,8 @@ __exportStar(require("./get-user-balance.command"), exports);
|
|
|
26
26
|
__exportStar(require("./get-user-orders.command"), exports);
|
|
27
27
|
__exportStar(require("./get-user-subscriptions.command"), exports);
|
|
28
28
|
__exportStar(require("./get-user-products.command"), exports);
|
|
29
|
+
__exportStar(require("./get-telegram-notification.command"), exports);
|
|
30
|
+
__exportStar(require("./send-telegram-notification.command"), exports);
|
|
29
31
|
__exportStar(require("./delete-account.command"), exports);
|
|
30
32
|
__exportStar(require("./get-aggregated-user-data.command"), exports);
|
|
31
33
|
__exportStar(require("./get-user-payments.command"), exports);
|
package/build/constants/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./ai-model"), exports);
|
|
18
|
+
__exportStar(require("./ai-vendor"), exports);
|
|
18
19
|
__exportStar(require("./b2b"), exports);
|
|
19
20
|
__exportStar(require("./api-key"), exports);
|
|
20
21
|
__exportStar(require("./avatar-studio"), exports);
|
|
@@ -15,4 +15,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./order-status.enum"), exports);
|
|
18
|
+
__exportStar(require("./order-sort-by.enum"), exports);
|
|
18
19
|
__exportStar(require("./order-type.enum"), exports);
|
|
@@ -14,5 +14,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("./video-editor-model-limitation.enum"), exports);
|
|
17
18
|
__exportStar(require("./video-editor-model-strategy.enum"), exports);
|
|
18
19
|
__exportStar(require("./video-editor-pricing-rule-type.enum"), exports);
|
|
@@ -14,7 +14,7 @@ export declare const CanvasTextGenerationConfigSchema: z.ZodArray<z.ZodObject<{
|
|
|
14
14
|
}, z.core.$strip>;
|
|
15
15
|
}, z.core.$strip>;
|
|
16
16
|
order: z.ZodNumber;
|
|
17
|
-
status: z.ZodEnum<typeof import("
|
|
17
|
+
status: z.ZodEnum<typeof import("..").AI_VENDOR_STATUS>;
|
|
18
18
|
createdAt: z.ZodDate;
|
|
19
19
|
updatedAt: z.ZodDate;
|
|
20
20
|
models: z.ZodArray<z.ZodObject<{
|
|
@@ -103,7 +103,7 @@ export declare const CanvasNodeDefinitionToolConfigSchema: z.ZodDiscriminatedUni
|
|
|
103
103
|
}, z.core.$strip>;
|
|
104
104
|
}, z.core.$strip>;
|
|
105
105
|
order: z.ZodNumber;
|
|
106
|
-
status: z.ZodEnum<typeof import("
|
|
106
|
+
status: z.ZodEnum<typeof import("..").AI_VENDOR_STATUS>;
|
|
107
107
|
createdAt: z.ZodDate;
|
|
108
108
|
updatedAt: z.ZodDate;
|
|
109
109
|
models: z.ZodArray<z.ZodObject<{
|
|
@@ -621,7 +621,7 @@ export declare const CanvasNodeDefinitionToolConfigSchema: z.ZodDiscriminatedUni
|
|
|
621
621
|
uuid: z.ZodString;
|
|
622
622
|
name: z.ZodString;
|
|
623
623
|
}, z.core.$strip>>;
|
|
624
|
-
limitations: z.ZodArray<z.ZodEnum<typeof import("
|
|
624
|
+
limitations: z.ZodArray<z.ZodEnum<typeof import("..").VIDEO_EDITOR_MODEL_LIMITATION>>;
|
|
625
625
|
canUse: z.ZodBoolean;
|
|
626
626
|
status: z.ZodString;
|
|
627
627
|
}, z.core.$strip>>;
|
|
@@ -793,7 +793,7 @@ export declare const CanvasNodeDefinitionWithConfigSchema: z.ZodObject<{
|
|
|
793
793
|
}, z.core.$strip>;
|
|
794
794
|
}, z.core.$strip>;
|
|
795
795
|
order: z.ZodNumber;
|
|
796
|
-
status: z.ZodEnum<typeof import("
|
|
796
|
+
status: z.ZodEnum<typeof import("..").AI_VENDOR_STATUS>;
|
|
797
797
|
createdAt: z.ZodDate;
|
|
798
798
|
updatedAt: z.ZodDate;
|
|
799
799
|
models: z.ZodArray<z.ZodObject<{
|
|
@@ -1311,7 +1311,7 @@ export declare const CanvasNodeDefinitionWithConfigSchema: z.ZodObject<{
|
|
|
1311
1311
|
uuid: z.ZodString;
|
|
1312
1312
|
name: z.ZodString;
|
|
1313
1313
|
}, z.core.$strip>>;
|
|
1314
|
-
limitations: z.ZodArray<z.ZodEnum<typeof import("
|
|
1314
|
+
limitations: z.ZodArray<z.ZodEnum<typeof import("..").VIDEO_EDITOR_MODEL_LIMITATION>>;
|
|
1315
1315
|
canUse: z.ZodBoolean;
|
|
1316
1316
|
status: z.ZodString;
|
|
1317
1317
|
}, z.core.$strip>>;
|
|
@@ -1441,7 +1441,7 @@ export declare const CanvasNodeDefinitionsWithConfigsSchema: z.ZodRecord<z.ZodEn
|
|
|
1441
1441
|
}, z.core.$strip>;
|
|
1442
1442
|
}, z.core.$strip>;
|
|
1443
1443
|
order: z.ZodNumber;
|
|
1444
|
-
status: z.ZodEnum<typeof import("
|
|
1444
|
+
status: z.ZodEnum<typeof import("..").AI_VENDOR_STATUS>;
|
|
1445
1445
|
createdAt: z.ZodDate;
|
|
1446
1446
|
updatedAt: z.ZodDate;
|
|
1447
1447
|
models: z.ZodArray<z.ZodObject<{
|
|
@@ -1959,7 +1959,7 @@ export declare const CanvasNodeDefinitionsWithConfigsSchema: z.ZodRecord<z.ZodEn
|
|
|
1959
1959
|
uuid: z.ZodString;
|
|
1960
1960
|
name: z.ZodString;
|
|
1961
1961
|
}, z.core.$strip>>;
|
|
1962
|
-
limitations: z.ZodArray<z.ZodEnum<typeof import("
|
|
1962
|
+
limitations: z.ZodArray<z.ZodEnum<typeof import("..").VIDEO_EDITOR_MODEL_LIMITATION>>;
|
|
1963
1963
|
canUse: z.ZodBoolean;
|
|
1964
1964
|
status: z.ZodString;
|
|
1965
1965
|
}, z.core.$strip>>;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
export * from './pptx-export-payload.schema';
|
|
2
|
+
export * from './presentation-template.schema';
|
|
2
3
|
export * from './presentation.schema';
|
|
4
|
+
export * from './slide-content-edit.schema';
|
|
3
5
|
export * from './slide-content-type.schema';
|
|
6
|
+
export * from './slide-icon-slot.schema';
|
|
7
|
+
export * from './slide-image-slot.schema';
|
|
4
8
|
export * from './slide-outline.schema';
|
|
5
9
|
export * from './slide.schema';
|
|
6
10
|
export * from './slide-content.schema';
|
|
@@ -15,8 +15,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./pptx-export-payload.schema"), exports);
|
|
18
|
+
__exportStar(require("./presentation-template.schema"), exports);
|
|
18
19
|
__exportStar(require("./presentation.schema"), exports);
|
|
20
|
+
__exportStar(require("./slide-content-edit.schema"), exports);
|
|
19
21
|
__exportStar(require("./slide-content-type.schema"), exports);
|
|
22
|
+
__exportStar(require("./slide-icon-slot.schema"), exports);
|
|
23
|
+
__exportStar(require("./slide-image-slot.schema"), exports);
|
|
20
24
|
__exportStar(require("./slide-outline.schema"), exports);
|
|
21
25
|
__exportStar(require("./slide.schema"), exports);
|
|
22
26
|
__exportStar(require("./slide-content.schema"), exports);
|
|
@@ -43,7 +43,7 @@ export declare const VideoEditorConfigSchema: z.ZodObject<{
|
|
|
43
43
|
uuid: z.ZodString;
|
|
44
44
|
name: z.ZodString;
|
|
45
45
|
}, z.core.$strip>>;
|
|
46
|
-
limitations: z.ZodArray<z.ZodEnum<typeof import("
|
|
46
|
+
limitations: z.ZodArray<z.ZodEnum<typeof import("../../..").VIDEO_EDITOR_MODEL_LIMITATION>>;
|
|
47
47
|
canUse: z.ZodBoolean;
|
|
48
48
|
status: z.ZodString;
|
|
49
49
|
}, z.core.$strip>>;
|
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./writer-config.schema"), exports);
|
|
18
|
+
__exportStar(require("./writer-model.schema"), exports);
|
|
18
19
|
__exportStar(require("./writer-ai-action.schema"), exports);
|
|
19
20
|
__exportStar(require("./writer-document-outline.schema"), exports);
|
|
20
21
|
__exportStar(require("./writer-document.schema"), exports);
|