@purpleschool/gptbot 0.14.53 → 0.14.56
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/create-ai-model.command.d.ts +6 -0
- package/build/commands/ai-model/find-ai-model.command.d.ts +6 -0
- package/build/commands/ai-model/find-ai-models-available-to-user.comand.d.ts +3 -0
- package/build/commands/ai-model/find-formatted-ai-model.command.d.ts +6 -0
- package/build/commands/ai-model/update-ai-model.command.d.ts +6 -0
- package/build/commands/ai-studio/canvas-node/find-canvas-node-definitions-with-configs.query.d.ts +3 -0
- package/build/commands/ai-studio/canvas-tool/text-gen/get-text-generation-config.command.d.ts +3 -0
- package/build/commands/ai-studio/canvas-tool/var-gen/get-var-gen-config.command.d.ts +3 -0
- package/build/commands/b2b/get-b2b-documentation.command.d.ts +6 -0
- package/build/commands/page/find-page-by-alias.command.d.ts +6 -0
- package/build/commands/page/find-page.command.d.ts +3 -0
- package/build/commands/page/find-pages-by-criteria.command.d.ts +6 -0
- package/build/constants/ai-model/enums/ai-model-config-selector-type.enum.d.ts +2 -1
- package/build/constants/ai-model/enums/ai-model-config-selector-type.enum.js +1 -0
- package/build/constants/tool/enums/tool-content-type.enum.d.ts +1 -1
- package/build/constants/tool/enums/tool-content-type.enum.js +1 -1
- package/build/models/ai-model-config.schema.d.ts +7 -0
- package/build/models/ai-model-config.schema.js +6 -1
- package/build/models/ai-model-formatted.schema.d.ts +3 -0
- package/build/models/ai-model.schema.d.ts +9 -0
- package/build/models/canvas-node-definition.schema.d.ts +12 -0
- package/package.json +1 -1
|
@@ -55,6 +55,9 @@ export declare namespace CreateAIModelCommand {
|
|
|
55
55
|
stepPrice: z.ZodNumber;
|
|
56
56
|
isActive: z.ZodBoolean;
|
|
57
57
|
}, z.core.$strip>>;
|
|
58
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
59
|
+
multiplier: z.ZodNumber;
|
|
60
|
+
}, z.core.$strip>>;
|
|
58
61
|
}, z.core.$strict>;
|
|
59
62
|
}, z.core.$strip>;
|
|
60
63
|
tags: z.ZodDefault<z.ZodArray<z.ZodEnum<typeof import("../..").AI_MODEL_TAG>>>;
|
|
@@ -122,6 +125,9 @@ export declare namespace CreateAIModelCommand {
|
|
|
122
125
|
stepPrice: z.ZodNumber;
|
|
123
126
|
isActive: z.ZodBoolean;
|
|
124
127
|
}, z.core.$strip>>;
|
|
128
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
129
|
+
multiplier: z.ZodNumber;
|
|
130
|
+
}, z.core.$strip>>;
|
|
125
131
|
}, z.core.$strict>;
|
|
126
132
|
}, z.core.$strip>;
|
|
127
133
|
createdAt: z.ZodDate;
|
|
@@ -80,6 +80,9 @@ export declare namespace FindAIModelCommand {
|
|
|
80
80
|
stepPrice: z.ZodNumber;
|
|
81
81
|
isActive: z.ZodBoolean;
|
|
82
82
|
}, z.core.$strip>>;
|
|
83
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
84
|
+
multiplier: z.ZodNumber;
|
|
85
|
+
}, z.core.$strip>>;
|
|
83
86
|
}, z.core.$strict>;
|
|
84
87
|
}, z.core.$strip>;
|
|
85
88
|
createdAt: z.ZodDate;
|
|
@@ -151,6 +154,9 @@ export declare namespace FindAIModelCommand {
|
|
|
151
154
|
stepPrice: z.ZodNumber;
|
|
152
155
|
isActive: z.ZodBoolean;
|
|
153
156
|
}, z.core.$strip>>;
|
|
157
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
158
|
+
multiplier: z.ZodNumber;
|
|
159
|
+
}, z.core.$strip>>;
|
|
154
160
|
}, z.core.$strict>;
|
|
155
161
|
}, z.core.$strip>;
|
|
156
162
|
createdAt: z.ZodDate;
|
|
@@ -61,6 +61,9 @@ export declare namespace FindAiModelsAvailableToUserCommand {
|
|
|
61
61
|
stepPrice: z.ZodNumber;
|
|
62
62
|
isActive: z.ZodBoolean;
|
|
63
63
|
}, z.core.$strip>>;
|
|
64
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
65
|
+
multiplier: z.ZodNumber;
|
|
66
|
+
}, z.core.$strip>>;
|
|
64
67
|
}, z.core.$strict>;
|
|
65
68
|
}, z.core.$strip>;
|
|
66
69
|
createdAt: z.ZodDate;
|
|
@@ -63,6 +63,9 @@ export declare namespace FindFormattedAIModelCommand {
|
|
|
63
63
|
stepPrice: z.ZodNumber;
|
|
64
64
|
isActive: z.ZodBoolean;
|
|
65
65
|
}, z.core.$strip>>;
|
|
66
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
67
|
+
multiplier: z.ZodNumber;
|
|
68
|
+
}, z.core.$strip>>;
|
|
66
69
|
}, z.core.$strict>;
|
|
67
70
|
}, z.core.$strip>;
|
|
68
71
|
createdAt: z.ZodDate;
|
|
@@ -133,6 +136,9 @@ export declare namespace FindFormattedAIModelCommand {
|
|
|
133
136
|
stepPrice: z.ZodNumber;
|
|
134
137
|
isActive: z.ZodBoolean;
|
|
135
138
|
}, z.core.$strip>>;
|
|
139
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
140
|
+
multiplier: z.ZodNumber;
|
|
141
|
+
}, z.core.$strip>>;
|
|
136
142
|
}, z.core.$strict>;
|
|
137
143
|
}, z.core.$strip>;
|
|
138
144
|
createdAt: z.ZodDate;
|
|
@@ -55,6 +55,9 @@ export declare namespace UpdateAIModelCommand {
|
|
|
55
55
|
stepPrice: z.ZodNumber;
|
|
56
56
|
isActive: z.ZodBoolean;
|
|
57
57
|
}, z.core.$strip>>;
|
|
58
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
59
|
+
multiplier: z.ZodNumber;
|
|
60
|
+
}, z.core.$strip>>;
|
|
58
61
|
}, z.core.$strict>;
|
|
59
62
|
}, z.core.$strip>>;
|
|
60
63
|
tags: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodEnum<typeof import("../..").AI_MODEL_TAG>>>>;
|
|
@@ -126,6 +129,9 @@ export declare namespace UpdateAIModelCommand {
|
|
|
126
129
|
stepPrice: z.ZodNumber;
|
|
127
130
|
isActive: z.ZodBoolean;
|
|
128
131
|
}, z.core.$strip>>;
|
|
132
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
133
|
+
multiplier: z.ZodNumber;
|
|
134
|
+
}, z.core.$strip>>;
|
|
129
135
|
}, z.core.$strict>;
|
|
130
136
|
}, z.core.$strip>;
|
|
131
137
|
createdAt: z.ZodDate;
|
package/build/commands/ai-studio/canvas-node/find-canvas-node-definitions-with-configs.query.d.ts
CHANGED
|
@@ -117,6 +117,9 @@ export declare namespace FindCanvasNodeDefinitionsWithConfigsQuery {
|
|
|
117
117
|
stepPrice: z.ZodNumber;
|
|
118
118
|
isActive: z.ZodBoolean;
|
|
119
119
|
}, z.core.$strip>>;
|
|
120
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
121
|
+
multiplier: z.ZodNumber;
|
|
122
|
+
}, z.core.$strip>>;
|
|
120
123
|
}, z.core.$strict>;
|
|
121
124
|
}, z.core.$strip>;
|
|
122
125
|
createdAt: z.ZodDate;
|
package/build/commands/ai-studio/canvas-tool/text-gen/get-text-generation-config.command.d.ts
CHANGED
|
@@ -76,6 +76,9 @@ export declare namespace GetTextGenerationConfigCommand {
|
|
|
76
76
|
stepPrice: z.ZodNumber;
|
|
77
77
|
isActive: z.ZodBoolean;
|
|
78
78
|
}, z.core.$strip>>;
|
|
79
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
80
|
+
multiplier: z.ZodNumber;
|
|
81
|
+
}, z.core.$strip>>;
|
|
79
82
|
}, z.core.$strict>;
|
|
80
83
|
}, z.core.$strip>;
|
|
81
84
|
createdAt: z.ZodDate;
|
|
@@ -59,6 +59,9 @@ export declare namespace GetVarGenConfigCommand {
|
|
|
59
59
|
stepPrice: z.ZodNumber;
|
|
60
60
|
isActive: z.ZodBoolean;
|
|
61
61
|
}, z.core.$strip>>;
|
|
62
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
63
|
+
multiplier: z.ZodNumber;
|
|
64
|
+
}, z.core.$strip>>;
|
|
62
65
|
}, z.core.$strict>;
|
|
63
66
|
}, z.core.$strip>;
|
|
64
67
|
createdAt: z.ZodDate;
|
|
@@ -162,6 +162,9 @@ export declare namespace GetB2bDocumentationCommand {
|
|
|
162
162
|
stepPrice: z.ZodNumber;
|
|
163
163
|
isActive: z.ZodBoolean;
|
|
164
164
|
}, z.core.$strip>>;
|
|
165
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
166
|
+
multiplier: z.ZodNumber;
|
|
167
|
+
}, z.core.$strip>>;
|
|
165
168
|
}, z.core.$strict>;
|
|
166
169
|
}, z.core.$strip>;
|
|
167
170
|
createdAt: z.ZodString;
|
|
@@ -343,6 +346,9 @@ export declare namespace GetB2bDocumentationCommand {
|
|
|
343
346
|
stepPrice: z.ZodNumber;
|
|
344
347
|
isActive: z.ZodBoolean;
|
|
345
348
|
}, z.core.$strip>>;
|
|
349
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
350
|
+
multiplier: z.ZodNumber;
|
|
351
|
+
}, z.core.$strip>>;
|
|
346
352
|
}, z.core.$strict>;
|
|
347
353
|
}, z.core.$strip>;
|
|
348
354
|
createdAt: z.ZodString;
|
|
@@ -118,6 +118,9 @@ export declare namespace FindPageByAliasCommand {
|
|
|
118
118
|
stepPrice: z.ZodNumber;
|
|
119
119
|
isActive: z.ZodBoolean;
|
|
120
120
|
}, z.core.$strip>>;
|
|
121
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
122
|
+
multiplier: z.ZodNumber;
|
|
123
|
+
}, z.core.$strip>>;
|
|
121
124
|
}, z.core.$strict>;
|
|
122
125
|
}, z.core.$strip>;
|
|
123
126
|
createdAt: z.ZodDate;
|
|
@@ -238,6 +241,9 @@ export declare namespace FindPageByAliasCommand {
|
|
|
238
241
|
stepPrice: z.ZodNumber;
|
|
239
242
|
isActive: z.ZodBoolean;
|
|
240
243
|
}, z.core.$strip>>;
|
|
244
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
245
|
+
multiplier: z.ZodNumber;
|
|
246
|
+
}, z.core.$strip>>;
|
|
241
247
|
}, z.core.$strict>;
|
|
242
248
|
}, z.core.$strip>;
|
|
243
249
|
createdAt: z.ZodDate;
|
|
@@ -142,6 +142,9 @@ export declare namespace FindPageCommand {
|
|
|
142
142
|
stepPrice: z.ZodNumber;
|
|
143
143
|
isActive: z.ZodBoolean;
|
|
144
144
|
}, z.core.$strip>>;
|
|
145
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
146
|
+
multiplier: z.ZodNumber;
|
|
147
|
+
}, z.core.$strip>>;
|
|
145
148
|
}, z.core.$strict>;
|
|
146
149
|
}, z.core.$strip>;
|
|
147
150
|
createdAt: z.ZodDate;
|
|
@@ -129,6 +129,9 @@ export declare namespace FindPagesByCriteriaCommand {
|
|
|
129
129
|
stepPrice: z.ZodNumber;
|
|
130
130
|
isActive: z.ZodBoolean;
|
|
131
131
|
}, z.core.$strip>>;
|
|
132
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
133
|
+
multiplier: z.ZodNumber;
|
|
134
|
+
}, z.core.$strip>>;
|
|
132
135
|
}, z.core.$strict>;
|
|
133
136
|
}, z.core.$strip>;
|
|
134
137
|
createdAt: z.ZodDate;
|
|
@@ -248,6 +251,9 @@ export declare namespace FindPagesByCriteriaCommand {
|
|
|
248
251
|
stepPrice: z.ZodNumber;
|
|
249
252
|
isActive: z.ZodBoolean;
|
|
250
253
|
}, z.core.$strip>>;
|
|
254
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
255
|
+
multiplier: z.ZodNumber;
|
|
256
|
+
}, z.core.$strip>>;
|
|
251
257
|
}, z.core.$strict>;
|
|
252
258
|
}, z.core.$strip>;
|
|
253
259
|
createdAt: z.ZodDate;
|
|
@@ -3,5 +3,6 @@ export declare enum AI_MODEL_CONFIG_PARAM {
|
|
|
3
3
|
IMAGE_STYLE = "image-style",
|
|
4
4
|
WEB_SEARCH = "web-search",
|
|
5
5
|
EXTRA_SYMBOLS_PRICING = "extra-symbols-pricing",
|
|
6
|
-
REASONING = "reasoning"
|
|
6
|
+
REASONING = "reasoning",
|
|
7
|
+
NO_ACTIVE_SUBSCRIPTION_OR_PRODUCT_MULTIPLIER = "no-active-subscription-or-product-multiplier"
|
|
7
8
|
}
|
|
@@ -8,4 +8,5 @@ var AI_MODEL_CONFIG_PARAM;
|
|
|
8
8
|
AI_MODEL_CONFIG_PARAM["WEB_SEARCH"] = "web-search";
|
|
9
9
|
AI_MODEL_CONFIG_PARAM["EXTRA_SYMBOLS_PRICING"] = "extra-symbols-pricing";
|
|
10
10
|
AI_MODEL_CONFIG_PARAM["REASONING"] = "reasoning";
|
|
11
|
+
AI_MODEL_CONFIG_PARAM["NO_ACTIVE_SUBSCRIPTION_OR_PRODUCT_MULTIPLIER"] = "no-active-subscription-or-product-multiplier";
|
|
11
12
|
})(AI_MODEL_CONFIG_PARAM || (exports.AI_MODEL_CONFIG_PARAM = AI_MODEL_CONFIG_PARAM = {}));
|
|
@@ -10,7 +10,7 @@ export declare enum TOOL_CONTENT_TYPE {
|
|
|
10
10
|
VIDEO_EDITOR = "VIDEO_EDITOR",
|
|
11
11
|
MUSIC = "MUSIC",
|
|
12
12
|
INTERIOR_DESIGN = "INTERIOR_DESIGN",
|
|
13
|
-
|
|
13
|
+
TEXT = "TEXT",
|
|
14
14
|
MARKETPLACE_CARD_GENERATION = "MARKETPLACE_CARD",
|
|
15
15
|
SOLVING_EDU_TASK = "SOLVING_EDU_TASK",
|
|
16
16
|
SPELL_CORRECTOR = "SPELL_CORRECTOR",
|
|
@@ -14,7 +14,7 @@ var TOOL_CONTENT_TYPE;
|
|
|
14
14
|
TOOL_CONTENT_TYPE["VIDEO_EDITOR"] = "VIDEO_EDITOR";
|
|
15
15
|
TOOL_CONTENT_TYPE["MUSIC"] = "MUSIC";
|
|
16
16
|
TOOL_CONTENT_TYPE["INTERIOR_DESIGN"] = "INTERIOR_DESIGN";
|
|
17
|
-
TOOL_CONTENT_TYPE["
|
|
17
|
+
TOOL_CONTENT_TYPE["TEXT"] = "TEXT";
|
|
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";
|
|
@@ -50,6 +50,9 @@ export declare const AiModelExtraSymbolsPricingParameter: z.ZodObject<{
|
|
|
50
50
|
stepPrice: z.ZodNumber;
|
|
51
51
|
isActive: z.ZodBoolean;
|
|
52
52
|
}, z.core.$strip>;
|
|
53
|
+
export declare const AiModelNoActiveSubscriptionOrProductMultiplierParameter: z.ZodObject<{
|
|
54
|
+
multiplier: z.ZodNumber;
|
|
55
|
+
}, z.core.$strip>;
|
|
53
56
|
export declare const AiModelConfigSchema: z.ZodObject<{
|
|
54
57
|
parameters: z.ZodObject<{
|
|
55
58
|
"image-size": z.ZodOptional<z.ZodObject<{
|
|
@@ -82,6 +85,9 @@ export declare const AiModelConfigSchema: z.ZodObject<{
|
|
|
82
85
|
stepPrice: z.ZodNumber;
|
|
83
86
|
isActive: z.ZodBoolean;
|
|
84
87
|
}, z.core.$strip>>;
|
|
88
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
89
|
+
multiplier: z.ZodNumber;
|
|
90
|
+
}, z.core.$strip>>;
|
|
85
91
|
}, z.core.$strict>;
|
|
86
92
|
}, z.core.$strip>;
|
|
87
93
|
export type AiModelConfigParameter = z.infer<typeof AiModelConfigParameterSchema>;
|
|
@@ -91,4 +97,5 @@ export type AiModelImageStyleOption = z.infer<typeof AiModelImageStyleOptionSche
|
|
|
91
97
|
export type AiModelImageStyleParameter = z.infer<typeof AiModelImageStyleParameter>;
|
|
92
98
|
export type AiModelWebSeachParameter = z.infer<typeof AiModelWebSearchParameter>;
|
|
93
99
|
export type AiModelExtraSymbolsPricingParameter = z.infer<typeof AiModelExtraSymbolsPricingParameter>;
|
|
100
|
+
export type AiModelNoActiveSubscriptionOrProductMultiplierParameter = z.infer<typeof AiModelNoActiveSubscriptionOrProductMultiplierParameter>;
|
|
94
101
|
export type AiModelConfig = z.infer<typeof AiModelConfigSchema>;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AiModelConfigSchema = exports.AiModelExtraSymbolsPricingParameter = exports.AiModelWebSearchParameter = exports.AiModelImageStyleParameter = exports.AiModelImageStyleOptionSchema = exports.AiModelImageSizeParameter = exports.AiModelImageSizeOptionSchema = exports.AiModelConfigParameterSchema = void 0;
|
|
3
|
+
exports.AiModelConfigSchema = exports.AiModelNoActiveSubscriptionOrProductMultiplierParameter = exports.AiModelExtraSymbolsPricingParameter = exports.AiModelWebSearchParameter = exports.AiModelImageStyleParameter = exports.AiModelImageStyleOptionSchema = exports.AiModelImageSizeParameter = exports.AiModelImageSizeOptionSchema = exports.AiModelConfigParameterSchema = void 0;
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const constants_1 = require("../constants");
|
|
6
6
|
exports.AiModelConfigParameterSchema = zod_1.z.object({
|
|
@@ -38,6 +38,10 @@ exports.AiModelExtraSymbolsPricingParameter = zod_1.z.object({
|
|
|
38
38
|
stepPrice: zod_1.z.number(),
|
|
39
39
|
isActive: zod_1.z.boolean(),
|
|
40
40
|
});
|
|
41
|
+
// NO ACTIVE SUBSCRIPTION OR PRODUCT MULTIPLIER
|
|
42
|
+
exports.AiModelNoActiveSubscriptionOrProductMultiplierParameter = zod_1.z.object({
|
|
43
|
+
multiplier: zod_1.z.number(),
|
|
44
|
+
});
|
|
41
45
|
// CONFIG
|
|
42
46
|
exports.AiModelConfigSchema = zod_1.z.object({
|
|
43
47
|
parameters: zod_1.z
|
|
@@ -46,6 +50,7 @@ exports.AiModelConfigSchema = zod_1.z.object({
|
|
|
46
50
|
[constants_1.AI_MODEL_CONFIG_PARAM.IMAGE_STYLE]: exports.AiModelImageStyleParameter.optional(),
|
|
47
51
|
[constants_1.AI_MODEL_CONFIG_PARAM.WEB_SEARCH]: exports.AiModelWebSearchParameter.optional(),
|
|
48
52
|
[constants_1.AI_MODEL_CONFIG_PARAM.EXTRA_SYMBOLS_PRICING]: exports.AiModelExtraSymbolsPricingParameter.optional(),
|
|
53
|
+
[constants_1.AI_MODEL_CONFIG_PARAM.NO_ACTIVE_SUBSCRIPTION_OR_PRODUCT_MULTIPLIER]: exports.AiModelNoActiveSubscriptionOrProductMultiplierParameter.optional(),
|
|
49
54
|
})
|
|
50
55
|
.strict(),
|
|
51
56
|
});
|
|
@@ -57,6 +57,9 @@ export declare const AiModelFormmattedSchema: z.ZodIntersection<z.ZodObject<{
|
|
|
57
57
|
stepPrice: z.ZodNumber;
|
|
58
58
|
isActive: z.ZodBoolean;
|
|
59
59
|
}, z.core.$strip>>;
|
|
60
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
61
|
+
multiplier: z.ZodNumber;
|
|
62
|
+
}, z.core.$strip>>;
|
|
60
63
|
}, z.core.$strict>;
|
|
61
64
|
}, z.core.$strip>;
|
|
62
65
|
createdAt: z.ZodDate;
|
|
@@ -58,6 +58,9 @@ export declare const AiModelSchema: z.ZodObject<{
|
|
|
58
58
|
stepPrice: z.ZodNumber;
|
|
59
59
|
isActive: z.ZodBoolean;
|
|
60
60
|
}, z.core.$strip>>;
|
|
61
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
62
|
+
multiplier: z.ZodNumber;
|
|
63
|
+
}, z.core.$strip>>;
|
|
61
64
|
}, z.core.$strict>;
|
|
62
65
|
}, z.core.$strip>;
|
|
63
66
|
createdAt: z.ZodDate;
|
|
@@ -120,6 +123,9 @@ export declare const CreateAiModelSchema: z.ZodObject<{
|
|
|
120
123
|
stepPrice: z.ZodNumber;
|
|
121
124
|
isActive: z.ZodBoolean;
|
|
122
125
|
}, z.core.$strip>>;
|
|
126
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
127
|
+
multiplier: z.ZodNumber;
|
|
128
|
+
}, z.core.$strip>>;
|
|
123
129
|
}, z.core.$strict>;
|
|
124
130
|
}, z.core.$strip>;
|
|
125
131
|
createdAt: z.ZodDate;
|
|
@@ -187,6 +193,9 @@ export declare const AiModelWithUnlockedBySchema: z.ZodObject<{
|
|
|
187
193
|
stepPrice: z.ZodNumber;
|
|
188
194
|
isActive: z.ZodBoolean;
|
|
189
195
|
}, z.core.$strip>>;
|
|
196
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
197
|
+
multiplier: z.ZodNumber;
|
|
198
|
+
}, z.core.$strip>>;
|
|
190
199
|
}, z.core.$strict>;
|
|
191
200
|
}, z.core.$strip>;
|
|
192
201
|
createdAt: z.ZodDate;
|
|
@@ -75,6 +75,9 @@ export declare const CanvasTextGenerationConfigSchema: z.ZodArray<z.ZodObject<{
|
|
|
75
75
|
stepPrice: z.ZodNumber;
|
|
76
76
|
isActive: z.ZodBoolean;
|
|
77
77
|
}, z.core.$strip>>;
|
|
78
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
79
|
+
multiplier: z.ZodNumber;
|
|
80
|
+
}, z.core.$strip>>;
|
|
78
81
|
}, z.core.$strict>;
|
|
79
82
|
}, z.core.$strip>;
|
|
80
83
|
createdAt: z.ZodDate;
|
|
@@ -164,6 +167,9 @@ export declare const CanvasNodeDefinitionToolConfigSchema: z.ZodDiscriminatedUni
|
|
|
164
167
|
stepPrice: z.ZodNumber;
|
|
165
168
|
isActive: z.ZodBoolean;
|
|
166
169
|
}, z.core.$strip>>;
|
|
170
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
171
|
+
multiplier: z.ZodNumber;
|
|
172
|
+
}, z.core.$strip>>;
|
|
167
173
|
}, z.core.$strict>;
|
|
168
174
|
}, z.core.$strip>;
|
|
169
175
|
createdAt: z.ZodDate;
|
|
@@ -891,6 +897,9 @@ export declare const CanvasNodeDefinitionWithConfigSchema: z.ZodObject<{
|
|
|
891
897
|
stepPrice: z.ZodNumber;
|
|
892
898
|
isActive: z.ZodBoolean;
|
|
893
899
|
}, z.core.$strip>>;
|
|
900
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
901
|
+
multiplier: z.ZodNumber;
|
|
902
|
+
}, z.core.$strip>>;
|
|
894
903
|
}, z.core.$strict>;
|
|
895
904
|
}, z.core.$strip>;
|
|
896
905
|
createdAt: z.ZodDate;
|
|
@@ -1576,6 +1585,9 @@ export declare const CanvasNodeDefinitionsWithConfigsSchema: z.ZodRecord<z.ZodEn
|
|
|
1576
1585
|
stepPrice: z.ZodNumber;
|
|
1577
1586
|
isActive: z.ZodBoolean;
|
|
1578
1587
|
}, z.core.$strip>>;
|
|
1588
|
+
"no-active-subscription-or-product-multiplier": z.ZodOptional<z.ZodObject<{
|
|
1589
|
+
multiplier: z.ZodNumber;
|
|
1590
|
+
}, z.core.$strip>>;
|
|
1579
1591
|
}, z.core.$strict>;
|
|
1580
1592
|
}, z.core.$strip>;
|
|
1581
1593
|
createdAt: z.ZodDate;
|