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