@purpleschool/gptbot 0.15.56 → 0.15.58

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.
Files changed (37) hide show
  1. package/build/commands/product/create-product.command.d.ts +100 -0
  2. package/build/commands/product/find-product.command.d.ts +100 -0
  3. package/build/commands/product/get-my-products.command.d.ts +50 -0
  4. package/build/commands/product/update-product.command.d.ts +100 -0
  5. package/build/commands/subscription/create-subscription.command.d.ts +100 -0
  6. package/build/commands/subscription/find-subscription.command.d.ts +150 -0
  7. package/build/commands/subscription/get-available-upgrades.command.d.ts +100 -0
  8. package/build/commands/subscription/get-free-subscription.command.d.ts +50 -0
  9. package/build/commands/subscription/get-subscriptions-summary.command.d.ts +250 -0
  10. package/build/commands/subscription/update-subscription.command.d.ts +100 -0
  11. package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +50 -0
  12. package/build/commands/team-account/find-current-team-account-products.command.d.ts +50 -0
  13. package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +50 -0
  14. package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +50 -0
  15. package/build/commands/team-account/find-team-account-products.command.d.ts +50 -0
  16. package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +100 -0
  17. package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +50 -0
  18. package/build/commands/team-to-product/get-team-to-products.command.d.ts +50 -0
  19. package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +50 -0
  20. package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
  21. package/build/commands/user/get-user-products.command.d.ts +50 -0
  22. package/build/commands/user/get-user-subscriptions.command.d.ts +50 -0
  23. package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +50 -0
  24. package/build/constants/subscription/enums/subscription-feature-type.enum.d.ts +2 -0
  25. package/build/constants/subscription/enums/subscription-feature-type.enum.js +2 -0
  26. package/build/models/product.schema.d.ts +50 -0
  27. package/build/models/subscription-feature.schema.d.ts +103 -0
  28. package/build/models/subscription-feature.schema.js +14 -1
  29. package/build/models/subscription-upgrade-schema.d.ts +50 -0
  30. package/build/models/subscription.schema.d.ts +250 -0
  31. package/build/models/team-account/team-to-product.schema.d.ts +50 -0
  32. package/build/models/team-account/team-to-subscription.schema.d.ts +50 -0
  33. package/build/models/tool-group.schema.d.ts +1 -0
  34. package/build/models/tool-group.schema.js +1 -0
  35. package/build/models/user-to-product.schema.d.ts +50 -0
  36. package/build/models/user-to-subscription.schema.d.ts +150 -0
  37. package/package.json +1 -1
@@ -20,6 +20,7 @@ export declare namespace UpdateProductCommand {
20
20
  }, z.core.$strip>>;
21
21
  features: z.ZodOptional<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 UpdateProductCommand {
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 UpdateProductCommand {
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 UpdateProductCommand {
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,99 @@ export declare namespace UpdateProductCommand {
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>;
275
+ kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
276
+ type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
277
+ value: z.ZodNumber;
278
+ }, z.core.$strip>, z.ZodObject<{
279
+ title: z.ZodString;
280
+ icon: z.ZodOptional<z.ZodString>;
239
281
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
240
282
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
241
283
  isAvailable: z.ZodBoolean;
242
284
  modelId: z.ZodString;
243
285
  }, z.core.$strip>, z.ZodObject<{
244
286
  title: z.ZodString;
287
+ icon: z.ZodOptional<z.ZodString>;
288
+ kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
289
+ type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
290
+ value: z.ZodNumber;
291
+ }, z.core.$strip>, z.ZodObject<{
292
+ title: z.ZodString;
293
+ icon: z.ZodOptional<z.ZodString>;
245
294
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
246
295
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
247
296
  isAvailable: z.ZodBoolean;
248
297
  modelId: z.ZodString;
249
298
  }, z.core.$strip>, z.ZodObject<{
250
299
  title: z.ZodString;
300
+ icon: z.ZodOptional<z.ZodString>;
251
301
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
252
302
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
253
303
  value: z.ZodNumber;
@@ -282,6 +332,7 @@ export declare namespace UpdateProductCommand {
282
332
  }, z.core.$strip>;
283
333
  features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
284
334
  title: z.ZodString;
335
+ icon: z.ZodOptional<z.ZodString>;
285
336
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
286
337
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
287
338
  order: z.ZodNumber;
@@ -290,76 +341,90 @@ export declare namespace UpdateProductCommand {
290
341
  maxInputLength: z.ZodNumber;
291
342
  }, z.core.$strip>, z.ZodObject<{
292
343
  title: z.ZodString;
344
+ icon: z.ZodOptional<z.ZodString>;
293
345
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
294
346
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
295
347
  value: z.ZodNumber;
296
348
  tooltip: z.ZodNullable<z.ZodString>;
297
349
  }, z.core.$strip>, z.ZodObject<{
298
350
  title: z.ZodString;
351
+ icon: z.ZodOptional<z.ZodString>;
299
352
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
300
353
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
301
354
  tooltip: z.ZodString;
302
355
  value: z.ZodNumber;
303
356
  }, z.core.$strip>, z.ZodObject<{
304
357
  title: z.ZodString;
358
+ icon: z.ZodOptional<z.ZodString>;
305
359
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
306
360
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
307
361
  isAvailable: z.ZodBoolean;
308
362
  }, z.core.$strip>, z.ZodObject<{
309
363
  title: z.ZodString;
364
+ icon: z.ZodOptional<z.ZodString>;
310
365
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
311
366
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
312
367
  isAvailable: z.ZodBoolean;
313
368
  }, z.core.$strip>, z.ZodObject<{
314
369
  title: z.ZodString;
370
+ icon: z.ZodOptional<z.ZodString>;
315
371
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
316
372
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
317
373
  isAvailable: z.ZodBoolean;
318
374
  modelId: z.ZodString;
319
375
  }, z.core.$strip>, z.ZodObject<{
320
376
  title: z.ZodString;
377
+ icon: z.ZodOptional<z.ZodString>;
321
378
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
322
379
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
323
380
  value: z.ZodNumber;
324
381
  }, z.core.$strip>, z.ZodObject<{
325
382
  title: z.ZodString;
383
+ icon: z.ZodOptional<z.ZodString>;
326
384
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
327
385
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
328
386
  value: z.ZodNumber;
329
387
  }, z.core.$strip>, z.ZodObject<{
330
388
  title: z.ZodString;
389
+ icon: z.ZodOptional<z.ZodString>;
331
390
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
332
391
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
333
392
  isAvailable: z.ZodBoolean;
334
393
  modelId: z.ZodString;
335
394
  }, z.core.$strip>, z.ZodObject<{
336
395
  title: z.ZodString;
396
+ icon: z.ZodOptional<z.ZodString>;
337
397
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
338
398
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
339
399
  value: z.ZodNumber;
340
400
  }, z.core.$strip>, z.ZodObject<{
341
401
  title: z.ZodString;
402
+ icon: z.ZodOptional<z.ZodString>;
342
403
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
343
404
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
344
405
  value: z.ZodNumber;
345
406
  }, z.core.$strip>, z.ZodObject<{
346
407
  title: z.ZodString;
408
+ icon: z.ZodOptional<z.ZodString>;
347
409
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
348
410
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
349
411
  isAvailable: z.ZodBoolean;
350
412
  modelId: z.ZodString;
351
413
  }, z.core.$strip>, z.ZodObject<{
352
414
  title: z.ZodString;
415
+ icon: z.ZodOptional<z.ZodString>;
353
416
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
354
417
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
355
418
  isAvailable: z.ZodBoolean;
356
419
  }, z.core.$strip>, z.ZodObject<{
357
420
  title: z.ZodString;
421
+ icon: z.ZodOptional<z.ZodString>;
358
422
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
359
423
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
360
424
  value: z.ZodNumber;
361
425
  }, z.core.$strip>, z.ZodObject<{
362
426
  title: z.ZodString;
427
+ icon: z.ZodOptional<z.ZodString>;
363
428
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
364
429
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
365
430
  tokens: z.ZodNumber;
@@ -375,6 +440,7 @@ export declare namespace UpdateProductCommand {
375
440
  }, z.core.$strip>;
376
441
  }, z.core.$strip>, z.ZodObject<{
377
442
  title: z.ZodString;
443
+ icon: z.ZodOptional<z.ZodString>;
378
444
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
379
445
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
380
446
  isAvailable: z.ZodBoolean;
@@ -391,50 +457,59 @@ export declare namespace UpdateProductCommand {
391
457
  }, z.core.$strip>;
392
458
  }, z.core.$strip>, z.ZodObject<{
393
459
  title: z.ZodString;
460
+ icon: z.ZodOptional<z.ZodString>;
394
461
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
395
462
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
396
463
  value: z.ZodNumber;
397
464
  }, z.core.$strip>, z.ZodObject<{
398
465
  title: z.ZodString;
466
+ icon: z.ZodOptional<z.ZodString>;
399
467
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
400
468
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
401
469
  isAvailable: z.ZodBoolean;
402
470
  modelId: z.ZodString;
403
471
  }, z.core.$strip>, z.ZodObject<{
404
472
  title: z.ZodString;
473
+ icon: z.ZodOptional<z.ZodString>;
405
474
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
406
475
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
407
476
  value: z.ZodNumber;
408
477
  }, z.core.$strip>, z.ZodObject<{
409
478
  title: z.ZodString;
479
+ icon: z.ZodOptional<z.ZodString>;
410
480
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
411
481
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
412
482
  isAvailable: z.ZodBoolean;
413
483
  modelId: z.ZodString;
414
484
  }, z.core.$strip>, z.ZodObject<{
415
485
  title: z.ZodString;
486
+ icon: z.ZodOptional<z.ZodString>;
416
487
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
417
488
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
418
489
  value: z.ZodNumber;
419
490
  }, z.core.$strip>, z.ZodObject<{
420
491
  title: z.ZodString;
492
+ icon: z.ZodOptional<z.ZodString>;
421
493
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
422
494
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
423
495
  isAvailable: z.ZodBoolean;
424
496
  modelId: z.ZodString;
425
497
  }, z.core.$strip>, z.ZodObject<{
426
498
  title: z.ZodString;
499
+ icon: z.ZodOptional<z.ZodString>;
427
500
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
428
501
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
429
502
  value: z.ZodNumber;
430
503
  }, z.core.$strip>, z.ZodObject<{
431
504
  title: z.ZodString;
505
+ icon: z.ZodOptional<z.ZodString>;
432
506
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
433
507
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
434
508
  isAvailable: z.ZodBoolean;
435
509
  modelId: z.ZodString;
436
510
  }, z.core.$strip>, z.ZodObject<{
437
511
  title: z.ZodString;
512
+ icon: z.ZodOptional<z.ZodString>;
438
513
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
439
514
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
440
515
  order: z.ZodNumber;
@@ -442,74 +517,99 @@ export declare namespace UpdateProductCommand {
442
517
  isAvailable: z.ZodBoolean;
443
518
  }, z.core.$strip>, z.ZodObject<{
444
519
  title: z.ZodString;
520
+ icon: z.ZodOptional<z.ZodString>;
445
521
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
446
522
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
447
523
  value: z.ZodNumber;
448
524
  }, z.core.$strip>, z.ZodObject<{
449
525
  title: z.ZodString;
526
+ icon: z.ZodOptional<z.ZodString>;
450
527
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
451
528
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
452
529
  isAvailable: z.ZodBoolean;
453
530
  modelId: z.ZodString;
454
531
  }, z.core.$strip>, z.ZodObject<{
455
532
  title: z.ZodString;
533
+ icon: z.ZodOptional<z.ZodString>;
456
534
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
457
535
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
458
536
  isAvailable: z.ZodBoolean;
459
537
  modelId: z.ZodString;
460
538
  }, z.core.$strip>, z.ZodObject<{
461
539
  title: z.ZodString;
540
+ icon: z.ZodOptional<z.ZodString>;
462
541
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
463
542
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
464
543
  value: z.ZodNumber;
465
544
  }, z.core.$strip>, z.ZodObject<{
466
545
  title: z.ZodString;
546
+ icon: z.ZodOptional<z.ZodString>;
467
547
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
468
548
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
469
549
  isAvailable: z.ZodBoolean;
470
550
  modelId: z.ZodString;
471
551
  }, z.core.$strip>, z.ZodObject<{
472
552
  title: z.ZodString;
553
+ icon: z.ZodOptional<z.ZodString>;
473
554
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
474
555
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
475
556
  value: z.ZodNumber;
476
557
  }, z.core.$strip>, z.ZodObject<{
477
558
  title: z.ZodString;
559
+ icon: z.ZodOptional<z.ZodString>;
478
560
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
479
561
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
480
562
  isAvailable: z.ZodBoolean;
481
563
  modelId: z.ZodString;
482
564
  }, z.core.$strip>, z.ZodObject<{
483
565
  title: z.ZodString;
566
+ icon: z.ZodOptional<z.ZodString>;
484
567
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
485
568
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
486
569
  value: z.ZodNumber;
487
570
  }, z.core.$strip>, z.ZodObject<{
488
571
  title: z.ZodString;
572
+ icon: z.ZodOptional<z.ZodString>;
489
573
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
490
574
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
491
575
  isAvailable: z.ZodBoolean;
492
576
  modelId: z.ZodString;
493
577
  }, z.core.$strip>, z.ZodObject<{
494
578
  title: z.ZodString;
579
+ icon: z.ZodOptional<z.ZodString>;
495
580
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
496
581
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
497
582
  isAvailable: z.ZodBoolean;
498
583
  modelId: z.ZodString;
499
584
  }, z.core.$strip>, z.ZodObject<{
500
585
  title: z.ZodString;
586
+ icon: z.ZodOptional<z.ZodString>;
587
+ kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
588
+ type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
589
+ value: z.ZodNumber;
590
+ }, z.core.$strip>, z.ZodObject<{
591
+ title: z.ZodString;
592
+ icon: z.ZodOptional<z.ZodString>;
501
593
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
502
594
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
503
595
  isAvailable: z.ZodBoolean;
504
596
  modelId: z.ZodString;
505
597
  }, z.core.$strip>, z.ZodObject<{
506
598
  title: z.ZodString;
599
+ icon: z.ZodOptional<z.ZodString>;
600
+ kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
601
+ type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
602
+ value: z.ZodNumber;
603
+ }, z.core.$strip>, z.ZodObject<{
604
+ title: z.ZodString;
605
+ icon: z.ZodOptional<z.ZodString>;
507
606
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
508
607
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
509
608
  isAvailable: z.ZodBoolean;
510
609
  modelId: z.ZodString;
511
610
  }, z.core.$strip>, z.ZodObject<{
512
611
  title: z.ZodString;
612
+ icon: z.ZodOptional<z.ZodString>;
513
613
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
514
614
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
515
615
  value: z.ZodNumber;