@purpleschool/gptbot 0.15.56 → 0.15.57
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/product/create-product.command.d.ts +76 -0
- package/build/commands/product/find-product.command.d.ts +76 -0
- package/build/commands/product/get-my-products.command.d.ts +38 -0
- package/build/commands/product/update-product.command.d.ts +76 -0
- package/build/commands/subscription/create-subscription.command.d.ts +76 -0
- package/build/commands/subscription/find-subscription.command.d.ts +114 -0
- package/build/commands/subscription/get-available-upgrades.command.d.ts +76 -0
- package/build/commands/subscription/get-free-subscription.command.d.ts +38 -0
- package/build/commands/subscription/get-subscriptions-summary.command.d.ts +190 -0
- package/build/commands/subscription/update-subscription.command.d.ts +76 -0
- package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +76 -0
- package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +38 -0
- package/build/commands/team-to-product/get-team-to-products.command.d.ts +38 -0
- package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +38 -0
- package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
- package/build/commands/user/get-user-products.command.d.ts +38 -0
- package/build/commands/user/get-user-subscriptions.command.d.ts +38 -0
- package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +38 -0
- package/build/models/product.schema.d.ts +38 -0
- package/build/models/subscription-feature.schema.d.ts +77 -0
- package/build/models/subscription-feature.schema.js +1 -0
- package/build/models/subscription-upgrade-schema.d.ts +38 -0
- package/build/models/subscription.schema.d.ts +190 -0
- package/build/models/team-account/team-to-product.schema.d.ts +38 -0
- package/build/models/team-account/team-to-subscription.schema.d.ts +38 -0
- package/build/models/tool-group.schema.d.ts +1 -0
- package/build/models/tool-group.schema.js +1 -0
- package/build/models/user-to-product.schema.d.ts +38 -0
- package/build/models/user-to-subscription.schema.d.ts +114 -0
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare namespace CreateProductCommand {
|
|
|
20
20
|
}, z.core.$strip>;
|
|
21
21
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
22
22
|
title: z.ZodString;
|
|
23
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
23
24
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
24
25
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
25
26
|
order: z.ZodNumber;
|
|
@@ -28,76 +29,90 @@ export declare namespace CreateProductCommand {
|
|
|
28
29
|
maxInputLength: z.ZodNumber;
|
|
29
30
|
}, z.core.$strip>, z.ZodObject<{
|
|
30
31
|
title: z.ZodString;
|
|
32
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
31
33
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
32
34
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
33
35
|
value: z.ZodNumber;
|
|
34
36
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
35
37
|
}, z.core.$strip>, z.ZodObject<{
|
|
36
38
|
title: z.ZodString;
|
|
39
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
37
40
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
38
41
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
39
42
|
tooltip: z.ZodString;
|
|
40
43
|
value: z.ZodNumber;
|
|
41
44
|
}, z.core.$strip>, z.ZodObject<{
|
|
42
45
|
title: z.ZodString;
|
|
46
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
43
47
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
44
48
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
45
49
|
isAvailable: z.ZodBoolean;
|
|
46
50
|
}, z.core.$strip>, z.ZodObject<{
|
|
47
51
|
title: z.ZodString;
|
|
52
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
48
53
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
49
54
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
50
55
|
isAvailable: z.ZodBoolean;
|
|
51
56
|
}, z.core.$strip>, z.ZodObject<{
|
|
52
57
|
title: z.ZodString;
|
|
58
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
53
59
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
54
60
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
55
61
|
isAvailable: z.ZodBoolean;
|
|
56
62
|
modelId: z.ZodString;
|
|
57
63
|
}, z.core.$strip>, z.ZodObject<{
|
|
58
64
|
title: z.ZodString;
|
|
65
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
59
66
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
60
67
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
61
68
|
value: z.ZodNumber;
|
|
62
69
|
}, z.core.$strip>, z.ZodObject<{
|
|
63
70
|
title: z.ZodString;
|
|
71
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
64
72
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
65
73
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
66
74
|
value: z.ZodNumber;
|
|
67
75
|
}, z.core.$strip>, z.ZodObject<{
|
|
68
76
|
title: z.ZodString;
|
|
77
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
69
78
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
70
79
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
71
80
|
isAvailable: z.ZodBoolean;
|
|
72
81
|
modelId: z.ZodString;
|
|
73
82
|
}, z.core.$strip>, z.ZodObject<{
|
|
74
83
|
title: z.ZodString;
|
|
84
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
75
85
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
76
86
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
77
87
|
value: z.ZodNumber;
|
|
78
88
|
}, z.core.$strip>, z.ZodObject<{
|
|
79
89
|
title: z.ZodString;
|
|
90
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
80
91
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
81
92
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
82
93
|
value: z.ZodNumber;
|
|
83
94
|
}, z.core.$strip>, z.ZodObject<{
|
|
84
95
|
title: z.ZodString;
|
|
96
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
85
97
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
86
98
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
87
99
|
isAvailable: z.ZodBoolean;
|
|
88
100
|
modelId: z.ZodString;
|
|
89
101
|
}, z.core.$strip>, z.ZodObject<{
|
|
90
102
|
title: z.ZodString;
|
|
103
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
91
104
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
92
105
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
93
106
|
isAvailable: z.ZodBoolean;
|
|
94
107
|
}, z.core.$strip>, z.ZodObject<{
|
|
95
108
|
title: z.ZodString;
|
|
109
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
96
110
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
97
111
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
98
112
|
value: z.ZodNumber;
|
|
99
113
|
}, z.core.$strip>, z.ZodObject<{
|
|
100
114
|
title: z.ZodString;
|
|
115
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
101
116
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
102
117
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
103
118
|
tokens: z.ZodNumber;
|
|
@@ -113,6 +128,7 @@ export declare namespace CreateProductCommand {
|
|
|
113
128
|
}, z.core.$strip>;
|
|
114
129
|
}, z.core.$strip>, z.ZodObject<{
|
|
115
130
|
title: z.ZodString;
|
|
131
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
116
132
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
117
133
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
118
134
|
isAvailable: z.ZodBoolean;
|
|
@@ -129,50 +145,59 @@ export declare namespace CreateProductCommand {
|
|
|
129
145
|
}, z.core.$strip>;
|
|
130
146
|
}, z.core.$strip>, z.ZodObject<{
|
|
131
147
|
title: z.ZodString;
|
|
148
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
132
149
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
133
150
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
134
151
|
value: z.ZodNumber;
|
|
135
152
|
}, z.core.$strip>, z.ZodObject<{
|
|
136
153
|
title: z.ZodString;
|
|
154
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
137
155
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
138
156
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
139
157
|
isAvailable: z.ZodBoolean;
|
|
140
158
|
modelId: z.ZodString;
|
|
141
159
|
}, z.core.$strip>, z.ZodObject<{
|
|
142
160
|
title: z.ZodString;
|
|
161
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
143
162
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
144
163
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
145
164
|
value: z.ZodNumber;
|
|
146
165
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
166
|
title: z.ZodString;
|
|
167
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
168
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
149
169
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
150
170
|
isAvailable: z.ZodBoolean;
|
|
151
171
|
modelId: z.ZodString;
|
|
152
172
|
}, z.core.$strip>, z.ZodObject<{
|
|
153
173
|
title: z.ZodString;
|
|
174
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
154
175
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
155
176
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
156
177
|
value: z.ZodNumber;
|
|
157
178
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
179
|
title: z.ZodString;
|
|
180
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
181
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
160
182
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
161
183
|
isAvailable: z.ZodBoolean;
|
|
162
184
|
modelId: z.ZodString;
|
|
163
185
|
}, z.core.$strip>, z.ZodObject<{
|
|
164
186
|
title: z.ZodString;
|
|
187
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
165
188
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
166
189
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
167
190
|
value: z.ZodNumber;
|
|
168
191
|
}, z.core.$strip>, z.ZodObject<{
|
|
169
192
|
title: z.ZodString;
|
|
193
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
170
194
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
171
195
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
172
196
|
isAvailable: z.ZodBoolean;
|
|
173
197
|
modelId: z.ZodString;
|
|
174
198
|
}, z.core.$strip>, z.ZodObject<{
|
|
175
199
|
title: z.ZodString;
|
|
200
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
176
201
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
177
202
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
178
203
|
order: z.ZodNumber;
|
|
@@ -180,74 +205,87 @@ export declare namespace CreateProductCommand {
|
|
|
180
205
|
isAvailable: z.ZodBoolean;
|
|
181
206
|
}, z.core.$strip>, z.ZodObject<{
|
|
182
207
|
title: z.ZodString;
|
|
208
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
183
209
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
184
210
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
185
211
|
value: z.ZodNumber;
|
|
186
212
|
}, z.core.$strip>, z.ZodObject<{
|
|
187
213
|
title: z.ZodString;
|
|
214
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
188
215
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
189
216
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
190
217
|
isAvailable: z.ZodBoolean;
|
|
191
218
|
modelId: z.ZodString;
|
|
192
219
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
220
|
title: z.ZodString;
|
|
221
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
222
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
195
223
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
196
224
|
isAvailable: z.ZodBoolean;
|
|
197
225
|
modelId: z.ZodString;
|
|
198
226
|
}, z.core.$strip>, z.ZodObject<{
|
|
199
227
|
title: z.ZodString;
|
|
228
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
200
229
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
201
230
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
202
231
|
value: z.ZodNumber;
|
|
203
232
|
}, z.core.$strip>, z.ZodObject<{
|
|
204
233
|
title: z.ZodString;
|
|
234
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
205
235
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
206
236
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
207
237
|
isAvailable: z.ZodBoolean;
|
|
208
238
|
modelId: z.ZodString;
|
|
209
239
|
}, z.core.$strip>, z.ZodObject<{
|
|
210
240
|
title: z.ZodString;
|
|
241
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
211
242
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
212
243
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
213
244
|
value: z.ZodNumber;
|
|
214
245
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
246
|
title: z.ZodString;
|
|
247
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
248
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
217
249
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
218
250
|
isAvailable: z.ZodBoolean;
|
|
219
251
|
modelId: z.ZodString;
|
|
220
252
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
253
|
title: z.ZodString;
|
|
254
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
255
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
223
256
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
224
257
|
value: z.ZodNumber;
|
|
225
258
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
259
|
title: z.ZodString;
|
|
260
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
261
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
228
262
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
229
263
|
isAvailable: z.ZodBoolean;
|
|
230
264
|
modelId: z.ZodString;
|
|
231
265
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
266
|
title: z.ZodString;
|
|
267
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
233
268
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
234
269
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
235
270
|
isAvailable: z.ZodBoolean;
|
|
236
271
|
modelId: z.ZodString;
|
|
237
272
|
}, z.core.$strip>, z.ZodObject<{
|
|
238
273
|
title: z.ZodString;
|
|
274
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
239
275
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
240
276
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
241
277
|
isAvailable: z.ZodBoolean;
|
|
242
278
|
modelId: z.ZodString;
|
|
243
279
|
}, z.core.$strip>, z.ZodObject<{
|
|
244
280
|
title: z.ZodString;
|
|
281
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
245
282
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
246
283
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
247
284
|
isAvailable: z.ZodBoolean;
|
|
248
285
|
modelId: z.ZodString;
|
|
249
286
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
287
|
title: z.ZodString;
|
|
288
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
251
289
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
252
290
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
253
291
|
value: z.ZodNumber;
|
|
@@ -278,6 +316,7 @@ export declare namespace CreateProductCommand {
|
|
|
278
316
|
}, z.core.$strip>;
|
|
279
317
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
280
318
|
title: z.ZodString;
|
|
319
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
281
320
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
282
321
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
283
322
|
order: z.ZodNumber;
|
|
@@ -286,76 +325,90 @@ export declare namespace CreateProductCommand {
|
|
|
286
325
|
maxInputLength: z.ZodNumber;
|
|
287
326
|
}, z.core.$strip>, z.ZodObject<{
|
|
288
327
|
title: z.ZodString;
|
|
328
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
289
329
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
290
330
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
291
331
|
value: z.ZodNumber;
|
|
292
332
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
293
333
|
}, z.core.$strip>, z.ZodObject<{
|
|
294
334
|
title: z.ZodString;
|
|
335
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
295
336
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
296
337
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
297
338
|
tooltip: z.ZodString;
|
|
298
339
|
value: z.ZodNumber;
|
|
299
340
|
}, z.core.$strip>, z.ZodObject<{
|
|
300
341
|
title: z.ZodString;
|
|
342
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
301
343
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
302
344
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
303
345
|
isAvailable: z.ZodBoolean;
|
|
304
346
|
}, z.core.$strip>, z.ZodObject<{
|
|
305
347
|
title: z.ZodString;
|
|
348
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
306
349
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
307
350
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
308
351
|
isAvailable: z.ZodBoolean;
|
|
309
352
|
}, z.core.$strip>, z.ZodObject<{
|
|
310
353
|
title: z.ZodString;
|
|
354
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
311
355
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
312
356
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
313
357
|
isAvailable: z.ZodBoolean;
|
|
314
358
|
modelId: z.ZodString;
|
|
315
359
|
}, z.core.$strip>, z.ZodObject<{
|
|
316
360
|
title: z.ZodString;
|
|
361
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
317
362
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
318
363
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
319
364
|
value: z.ZodNumber;
|
|
320
365
|
}, z.core.$strip>, z.ZodObject<{
|
|
321
366
|
title: z.ZodString;
|
|
367
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
322
368
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
323
369
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
324
370
|
value: z.ZodNumber;
|
|
325
371
|
}, z.core.$strip>, z.ZodObject<{
|
|
326
372
|
title: z.ZodString;
|
|
373
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
327
374
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
328
375
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
329
376
|
isAvailable: z.ZodBoolean;
|
|
330
377
|
modelId: z.ZodString;
|
|
331
378
|
}, z.core.$strip>, z.ZodObject<{
|
|
332
379
|
title: z.ZodString;
|
|
380
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
333
381
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
334
382
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
335
383
|
value: z.ZodNumber;
|
|
336
384
|
}, z.core.$strip>, z.ZodObject<{
|
|
337
385
|
title: z.ZodString;
|
|
386
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
338
387
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
339
388
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
340
389
|
value: z.ZodNumber;
|
|
341
390
|
}, z.core.$strip>, z.ZodObject<{
|
|
342
391
|
title: z.ZodString;
|
|
392
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
343
393
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
344
394
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
345
395
|
isAvailable: z.ZodBoolean;
|
|
346
396
|
modelId: z.ZodString;
|
|
347
397
|
}, z.core.$strip>, z.ZodObject<{
|
|
348
398
|
title: z.ZodString;
|
|
399
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
349
400
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
350
401
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
351
402
|
isAvailable: z.ZodBoolean;
|
|
352
403
|
}, z.core.$strip>, z.ZodObject<{
|
|
353
404
|
title: z.ZodString;
|
|
405
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
354
406
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
355
407
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
356
408
|
value: z.ZodNumber;
|
|
357
409
|
}, z.core.$strip>, z.ZodObject<{
|
|
358
410
|
title: z.ZodString;
|
|
411
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
359
412
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
360
413
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
361
414
|
tokens: z.ZodNumber;
|
|
@@ -371,6 +424,7 @@ export declare namespace CreateProductCommand {
|
|
|
371
424
|
}, z.core.$strip>;
|
|
372
425
|
}, z.core.$strip>, z.ZodObject<{
|
|
373
426
|
title: z.ZodString;
|
|
427
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
374
428
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
375
429
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
376
430
|
isAvailable: z.ZodBoolean;
|
|
@@ -387,50 +441,59 @@ export declare namespace CreateProductCommand {
|
|
|
387
441
|
}, z.core.$strip>;
|
|
388
442
|
}, z.core.$strip>, z.ZodObject<{
|
|
389
443
|
title: z.ZodString;
|
|
444
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
390
445
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
391
446
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
392
447
|
value: z.ZodNumber;
|
|
393
448
|
}, z.core.$strip>, z.ZodObject<{
|
|
394
449
|
title: z.ZodString;
|
|
450
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
395
451
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
396
452
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
397
453
|
isAvailable: z.ZodBoolean;
|
|
398
454
|
modelId: z.ZodString;
|
|
399
455
|
}, z.core.$strip>, z.ZodObject<{
|
|
400
456
|
title: z.ZodString;
|
|
457
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
401
458
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
402
459
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
403
460
|
value: z.ZodNumber;
|
|
404
461
|
}, z.core.$strip>, z.ZodObject<{
|
|
405
462
|
title: z.ZodString;
|
|
463
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
406
464
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
407
465
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
408
466
|
isAvailable: z.ZodBoolean;
|
|
409
467
|
modelId: z.ZodString;
|
|
410
468
|
}, z.core.$strip>, z.ZodObject<{
|
|
411
469
|
title: z.ZodString;
|
|
470
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
412
471
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
413
472
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
414
473
|
value: z.ZodNumber;
|
|
415
474
|
}, z.core.$strip>, z.ZodObject<{
|
|
416
475
|
title: z.ZodString;
|
|
476
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
417
477
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
418
478
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
419
479
|
isAvailable: z.ZodBoolean;
|
|
420
480
|
modelId: z.ZodString;
|
|
421
481
|
}, z.core.$strip>, z.ZodObject<{
|
|
422
482
|
title: z.ZodString;
|
|
483
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
423
484
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
424
485
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
425
486
|
value: z.ZodNumber;
|
|
426
487
|
}, z.core.$strip>, z.ZodObject<{
|
|
427
488
|
title: z.ZodString;
|
|
489
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
428
490
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
429
491
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
430
492
|
isAvailable: z.ZodBoolean;
|
|
431
493
|
modelId: z.ZodString;
|
|
432
494
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
495
|
title: z.ZodString;
|
|
496
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
497
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
435
498
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
436
499
|
order: z.ZodNumber;
|
|
@@ -438,74 +501,87 @@ export declare namespace CreateProductCommand {
|
|
|
438
501
|
isAvailable: z.ZodBoolean;
|
|
439
502
|
}, z.core.$strip>, z.ZodObject<{
|
|
440
503
|
title: z.ZodString;
|
|
504
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
441
505
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
442
506
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
443
507
|
value: z.ZodNumber;
|
|
444
508
|
}, z.core.$strip>, z.ZodObject<{
|
|
445
509
|
title: z.ZodString;
|
|
510
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
446
511
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
447
512
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
448
513
|
isAvailable: z.ZodBoolean;
|
|
449
514
|
modelId: z.ZodString;
|
|
450
515
|
}, z.core.$strip>, z.ZodObject<{
|
|
451
516
|
title: z.ZodString;
|
|
517
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
452
518
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
453
519
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
454
520
|
isAvailable: z.ZodBoolean;
|
|
455
521
|
modelId: z.ZodString;
|
|
456
522
|
}, z.core.$strip>, z.ZodObject<{
|
|
457
523
|
title: z.ZodString;
|
|
524
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
458
525
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
459
526
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
460
527
|
value: z.ZodNumber;
|
|
461
528
|
}, z.core.$strip>, z.ZodObject<{
|
|
462
529
|
title: z.ZodString;
|
|
530
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
463
531
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
464
532
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
465
533
|
isAvailable: z.ZodBoolean;
|
|
466
534
|
modelId: z.ZodString;
|
|
467
535
|
}, z.core.$strip>, z.ZodObject<{
|
|
468
536
|
title: z.ZodString;
|
|
537
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
469
538
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
470
539
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
471
540
|
value: z.ZodNumber;
|
|
472
541
|
}, z.core.$strip>, z.ZodObject<{
|
|
473
542
|
title: z.ZodString;
|
|
543
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
474
544
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
475
545
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
476
546
|
isAvailable: z.ZodBoolean;
|
|
477
547
|
modelId: z.ZodString;
|
|
478
548
|
}, z.core.$strip>, z.ZodObject<{
|
|
479
549
|
title: z.ZodString;
|
|
550
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
480
551
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
481
552
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
482
553
|
value: z.ZodNumber;
|
|
483
554
|
}, z.core.$strip>, z.ZodObject<{
|
|
484
555
|
title: z.ZodString;
|
|
556
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
485
557
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
486
558
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
487
559
|
isAvailable: z.ZodBoolean;
|
|
488
560
|
modelId: z.ZodString;
|
|
489
561
|
}, z.core.$strip>, z.ZodObject<{
|
|
490
562
|
title: z.ZodString;
|
|
563
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
491
564
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
492
565
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
493
566
|
isAvailable: z.ZodBoolean;
|
|
494
567
|
modelId: z.ZodString;
|
|
495
568
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
569
|
title: z.ZodString;
|
|
570
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
571
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
498
572
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
499
573
|
isAvailable: z.ZodBoolean;
|
|
500
574
|
modelId: z.ZodString;
|
|
501
575
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
576
|
title: z.ZodString;
|
|
577
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
503
578
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
504
579
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
505
580
|
isAvailable: z.ZodBoolean;
|
|
506
581
|
modelId: z.ZodString;
|
|
507
582
|
}, z.core.$strip>, z.ZodObject<{
|
|
508
583
|
title: z.ZodString;
|
|
584
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
509
585
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
510
586
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
511
587
|
value: z.ZodNumber;
|