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