@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
@@ -55,6 +55,7 @@ export declare namespace FindCurrentTeamAccountSubscriptionsByTeamAccountIdComma
55
55
  action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
56
56
  features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
57
57
  title: z.ZodString;
58
+ icon: z.ZodOptional<z.ZodString>;
58
59
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
59
60
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
60
61
  order: z.ZodNumber;
@@ -63,76 +64,90 @@ export declare namespace FindCurrentTeamAccountSubscriptionsByTeamAccountIdComma
63
64
  maxInputLength: z.ZodNumber;
64
65
  }, z.core.$strip>, z.ZodObject<{
65
66
  title: z.ZodString;
67
+ icon: z.ZodOptional<z.ZodString>;
66
68
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
67
69
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
68
70
  value: z.ZodNumber;
69
71
  tooltip: z.ZodNullable<z.ZodString>;
70
72
  }, z.core.$strip>, z.ZodObject<{
71
73
  title: z.ZodString;
74
+ icon: z.ZodOptional<z.ZodString>;
72
75
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
73
76
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
74
77
  tooltip: z.ZodString;
75
78
  value: z.ZodNumber;
76
79
  }, z.core.$strip>, z.ZodObject<{
77
80
  title: z.ZodString;
81
+ icon: z.ZodOptional<z.ZodString>;
78
82
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
79
83
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
80
84
  isAvailable: z.ZodBoolean;
81
85
  }, z.core.$strip>, z.ZodObject<{
82
86
  title: z.ZodString;
87
+ icon: z.ZodOptional<z.ZodString>;
83
88
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
84
89
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
85
90
  isAvailable: z.ZodBoolean;
86
91
  }, z.core.$strip>, z.ZodObject<{
87
92
  title: z.ZodString;
93
+ icon: z.ZodOptional<z.ZodString>;
88
94
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
89
95
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
90
96
  isAvailable: z.ZodBoolean;
91
97
  modelId: z.ZodString;
92
98
  }, z.core.$strip>, z.ZodObject<{
93
99
  title: z.ZodString;
100
+ icon: z.ZodOptional<z.ZodString>;
94
101
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
95
102
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
96
103
  value: z.ZodNumber;
97
104
  }, z.core.$strip>, z.ZodObject<{
98
105
  title: z.ZodString;
106
+ icon: z.ZodOptional<z.ZodString>;
99
107
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
100
108
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
101
109
  value: z.ZodNumber;
102
110
  }, z.core.$strip>, z.ZodObject<{
103
111
  title: z.ZodString;
112
+ icon: z.ZodOptional<z.ZodString>;
104
113
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
105
114
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
106
115
  isAvailable: z.ZodBoolean;
107
116
  modelId: z.ZodString;
108
117
  }, z.core.$strip>, z.ZodObject<{
109
118
  title: z.ZodString;
119
+ icon: z.ZodOptional<z.ZodString>;
110
120
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
111
121
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
112
122
  value: z.ZodNumber;
113
123
  }, z.core.$strip>, z.ZodObject<{
114
124
  title: z.ZodString;
125
+ icon: z.ZodOptional<z.ZodString>;
115
126
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
116
127
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
117
128
  value: z.ZodNumber;
118
129
  }, z.core.$strip>, z.ZodObject<{
119
130
  title: z.ZodString;
131
+ icon: z.ZodOptional<z.ZodString>;
120
132
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
121
133
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
122
134
  isAvailable: z.ZodBoolean;
123
135
  modelId: z.ZodString;
124
136
  }, z.core.$strip>, z.ZodObject<{
125
137
  title: z.ZodString;
138
+ icon: z.ZodOptional<z.ZodString>;
126
139
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
127
140
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
128
141
  isAvailable: z.ZodBoolean;
129
142
  }, z.core.$strip>, z.ZodObject<{
130
143
  title: z.ZodString;
144
+ icon: z.ZodOptional<z.ZodString>;
131
145
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
132
146
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
133
147
  value: z.ZodNumber;
134
148
  }, z.core.$strip>, z.ZodObject<{
135
149
  title: z.ZodString;
150
+ icon: z.ZodOptional<z.ZodString>;
136
151
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
137
152
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
138
153
  tokens: z.ZodNumber;
@@ -148,6 +163,7 @@ export declare namespace FindCurrentTeamAccountSubscriptionsByTeamAccountIdComma
148
163
  }, z.core.$strip>;
149
164
  }, z.core.$strip>, z.ZodObject<{
150
165
  title: z.ZodString;
166
+ icon: z.ZodOptional<z.ZodString>;
151
167
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
152
168
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
153
169
  isAvailable: z.ZodBoolean;
@@ -164,50 +180,59 @@ export declare namespace FindCurrentTeamAccountSubscriptionsByTeamAccountIdComma
164
180
  }, z.core.$strip>;
165
181
  }, z.core.$strip>, z.ZodObject<{
166
182
  title: z.ZodString;
183
+ icon: z.ZodOptional<z.ZodString>;
167
184
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
168
185
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
169
186
  value: z.ZodNumber;
170
187
  }, z.core.$strip>, z.ZodObject<{
171
188
  title: z.ZodString;
189
+ icon: z.ZodOptional<z.ZodString>;
172
190
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
173
191
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
174
192
  isAvailable: z.ZodBoolean;
175
193
  modelId: z.ZodString;
176
194
  }, z.core.$strip>, z.ZodObject<{
177
195
  title: z.ZodString;
196
+ icon: z.ZodOptional<z.ZodString>;
178
197
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
179
198
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
180
199
  value: z.ZodNumber;
181
200
  }, z.core.$strip>, z.ZodObject<{
182
201
  title: z.ZodString;
202
+ icon: z.ZodOptional<z.ZodString>;
183
203
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
184
204
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
185
205
  isAvailable: z.ZodBoolean;
186
206
  modelId: z.ZodString;
187
207
  }, z.core.$strip>, z.ZodObject<{
188
208
  title: z.ZodString;
209
+ icon: z.ZodOptional<z.ZodString>;
189
210
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
190
211
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
191
212
  value: z.ZodNumber;
192
213
  }, z.core.$strip>, z.ZodObject<{
193
214
  title: z.ZodString;
215
+ icon: z.ZodOptional<z.ZodString>;
194
216
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
195
217
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
196
218
  isAvailable: z.ZodBoolean;
197
219
  modelId: z.ZodString;
198
220
  }, z.core.$strip>, z.ZodObject<{
199
221
  title: z.ZodString;
222
+ icon: z.ZodOptional<z.ZodString>;
200
223
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
201
224
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
202
225
  value: z.ZodNumber;
203
226
  }, z.core.$strip>, z.ZodObject<{
204
227
  title: z.ZodString;
228
+ icon: z.ZodOptional<z.ZodString>;
205
229
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
206
230
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
207
231
  isAvailable: z.ZodBoolean;
208
232
  modelId: z.ZodString;
209
233
  }, z.core.$strip>, z.ZodObject<{
210
234
  title: z.ZodString;
235
+ icon: z.ZodOptional<z.ZodString>;
211
236
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
212
237
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
213
238
  order: z.ZodNumber;
@@ -215,74 +240,87 @@ export declare namespace FindCurrentTeamAccountSubscriptionsByTeamAccountIdComma
215
240
  isAvailable: z.ZodBoolean;
216
241
  }, z.core.$strip>, z.ZodObject<{
217
242
  title: z.ZodString;
243
+ icon: z.ZodOptional<z.ZodString>;
218
244
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
219
245
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
220
246
  value: z.ZodNumber;
221
247
  }, z.core.$strip>, z.ZodObject<{
222
248
  title: z.ZodString;
249
+ icon: z.ZodOptional<z.ZodString>;
223
250
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
224
251
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
225
252
  isAvailable: z.ZodBoolean;
226
253
  modelId: z.ZodString;
227
254
  }, z.core.$strip>, z.ZodObject<{
228
255
  title: z.ZodString;
256
+ icon: z.ZodOptional<z.ZodString>;
229
257
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
230
258
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
231
259
  isAvailable: z.ZodBoolean;
232
260
  modelId: z.ZodString;
233
261
  }, z.core.$strip>, z.ZodObject<{
234
262
  title: z.ZodString;
263
+ icon: z.ZodOptional<z.ZodString>;
235
264
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
236
265
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
237
266
  value: z.ZodNumber;
238
267
  }, z.core.$strip>, z.ZodObject<{
239
268
  title: z.ZodString;
269
+ icon: z.ZodOptional<z.ZodString>;
240
270
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
241
271
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
242
272
  isAvailable: z.ZodBoolean;
243
273
  modelId: z.ZodString;
244
274
  }, z.core.$strip>, z.ZodObject<{
245
275
  title: z.ZodString;
276
+ icon: z.ZodOptional<z.ZodString>;
246
277
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
247
278
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
248
279
  value: z.ZodNumber;
249
280
  }, z.core.$strip>, z.ZodObject<{
250
281
  title: z.ZodString;
282
+ icon: z.ZodOptional<z.ZodString>;
251
283
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
252
284
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
253
285
  isAvailable: z.ZodBoolean;
254
286
  modelId: z.ZodString;
255
287
  }, z.core.$strip>, z.ZodObject<{
256
288
  title: z.ZodString;
289
+ icon: z.ZodOptional<z.ZodString>;
257
290
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
258
291
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
259
292
  value: z.ZodNumber;
260
293
  }, z.core.$strip>, z.ZodObject<{
261
294
  title: z.ZodString;
295
+ icon: z.ZodOptional<z.ZodString>;
262
296
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
263
297
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
264
298
  isAvailable: z.ZodBoolean;
265
299
  modelId: z.ZodString;
266
300
  }, z.core.$strip>, z.ZodObject<{
267
301
  title: z.ZodString;
302
+ icon: z.ZodOptional<z.ZodString>;
268
303
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
269
304
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
270
305
  isAvailable: z.ZodBoolean;
271
306
  modelId: z.ZodString;
272
307
  }, z.core.$strip>, z.ZodObject<{
273
308
  title: z.ZodString;
309
+ icon: z.ZodOptional<z.ZodString>;
274
310
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
275
311
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
276
312
  isAvailable: z.ZodBoolean;
277
313
  modelId: z.ZodString;
278
314
  }, z.core.$strip>, z.ZodObject<{
279
315
  title: z.ZodString;
316
+ icon: z.ZodOptional<z.ZodString>;
280
317
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
281
318
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
282
319
  isAvailable: z.ZodBoolean;
283
320
  modelId: z.ZodString;
284
321
  }, z.core.$strip>, z.ZodObject<{
285
322
  title: z.ZodString;
323
+ icon: z.ZodOptional<z.ZodString>;
286
324
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
287
325
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
288
326
  value: z.ZodNumber;
@@ -51,6 +51,7 @@ export declare namespace FindCurrentTeamAccountSubscriptionsCommand {
51
51
  action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
52
52
  features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
53
53
  title: z.ZodString;
54
+ icon: z.ZodOptional<z.ZodString>;
54
55
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
55
56
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
56
57
  order: z.ZodNumber;
@@ -59,76 +60,90 @@ export declare namespace FindCurrentTeamAccountSubscriptionsCommand {
59
60
  maxInputLength: z.ZodNumber;
60
61
  }, z.core.$strip>, z.ZodObject<{
61
62
  title: z.ZodString;
63
+ icon: z.ZodOptional<z.ZodString>;
62
64
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
63
65
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
64
66
  value: z.ZodNumber;
65
67
  tooltip: z.ZodNullable<z.ZodString>;
66
68
  }, z.core.$strip>, z.ZodObject<{
67
69
  title: z.ZodString;
70
+ icon: z.ZodOptional<z.ZodString>;
68
71
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
69
72
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
70
73
  tooltip: z.ZodString;
71
74
  value: z.ZodNumber;
72
75
  }, z.core.$strip>, z.ZodObject<{
73
76
  title: z.ZodString;
77
+ icon: z.ZodOptional<z.ZodString>;
74
78
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
75
79
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
76
80
  isAvailable: z.ZodBoolean;
77
81
  }, z.core.$strip>, z.ZodObject<{
78
82
  title: z.ZodString;
83
+ icon: z.ZodOptional<z.ZodString>;
79
84
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
80
85
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
81
86
  isAvailable: z.ZodBoolean;
82
87
  }, z.core.$strip>, z.ZodObject<{
83
88
  title: z.ZodString;
89
+ icon: z.ZodOptional<z.ZodString>;
84
90
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
85
91
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
86
92
  isAvailable: z.ZodBoolean;
87
93
  modelId: z.ZodString;
88
94
  }, z.core.$strip>, z.ZodObject<{
89
95
  title: z.ZodString;
96
+ icon: z.ZodOptional<z.ZodString>;
90
97
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
91
98
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
92
99
  value: z.ZodNumber;
93
100
  }, z.core.$strip>, z.ZodObject<{
94
101
  title: z.ZodString;
102
+ icon: z.ZodOptional<z.ZodString>;
95
103
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
96
104
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
97
105
  value: z.ZodNumber;
98
106
  }, z.core.$strip>, z.ZodObject<{
99
107
  title: z.ZodString;
108
+ icon: z.ZodOptional<z.ZodString>;
100
109
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
101
110
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
102
111
  isAvailable: z.ZodBoolean;
103
112
  modelId: z.ZodString;
104
113
  }, z.core.$strip>, z.ZodObject<{
105
114
  title: z.ZodString;
115
+ icon: z.ZodOptional<z.ZodString>;
106
116
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
107
117
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
108
118
  value: z.ZodNumber;
109
119
  }, z.core.$strip>, z.ZodObject<{
110
120
  title: z.ZodString;
121
+ icon: z.ZodOptional<z.ZodString>;
111
122
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
112
123
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
113
124
  value: z.ZodNumber;
114
125
  }, z.core.$strip>, z.ZodObject<{
115
126
  title: z.ZodString;
127
+ icon: z.ZodOptional<z.ZodString>;
116
128
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
117
129
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
118
130
  isAvailable: z.ZodBoolean;
119
131
  modelId: z.ZodString;
120
132
  }, z.core.$strip>, z.ZodObject<{
121
133
  title: z.ZodString;
134
+ icon: z.ZodOptional<z.ZodString>;
122
135
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
123
136
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
124
137
  isAvailable: z.ZodBoolean;
125
138
  }, z.core.$strip>, z.ZodObject<{
126
139
  title: z.ZodString;
140
+ icon: z.ZodOptional<z.ZodString>;
127
141
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
128
142
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
129
143
  value: z.ZodNumber;
130
144
  }, z.core.$strip>, z.ZodObject<{
131
145
  title: z.ZodString;
146
+ icon: z.ZodOptional<z.ZodString>;
132
147
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
133
148
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
134
149
  tokens: z.ZodNumber;
@@ -144,6 +159,7 @@ export declare namespace FindCurrentTeamAccountSubscriptionsCommand {
144
159
  }, z.core.$strip>;
145
160
  }, z.core.$strip>, z.ZodObject<{
146
161
  title: z.ZodString;
162
+ icon: z.ZodOptional<z.ZodString>;
147
163
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
148
164
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
149
165
  isAvailable: z.ZodBoolean;
@@ -160,50 +176,59 @@ export declare namespace FindCurrentTeamAccountSubscriptionsCommand {
160
176
  }, z.core.$strip>;
161
177
  }, z.core.$strip>, z.ZodObject<{
162
178
  title: z.ZodString;
179
+ icon: z.ZodOptional<z.ZodString>;
163
180
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
164
181
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
165
182
  value: z.ZodNumber;
166
183
  }, z.core.$strip>, z.ZodObject<{
167
184
  title: z.ZodString;
185
+ icon: z.ZodOptional<z.ZodString>;
168
186
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
169
187
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
170
188
  isAvailable: z.ZodBoolean;
171
189
  modelId: z.ZodString;
172
190
  }, z.core.$strip>, z.ZodObject<{
173
191
  title: z.ZodString;
192
+ icon: z.ZodOptional<z.ZodString>;
174
193
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
175
194
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
176
195
  value: z.ZodNumber;
177
196
  }, z.core.$strip>, z.ZodObject<{
178
197
  title: z.ZodString;
198
+ icon: z.ZodOptional<z.ZodString>;
179
199
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
180
200
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
181
201
  isAvailable: z.ZodBoolean;
182
202
  modelId: z.ZodString;
183
203
  }, z.core.$strip>, z.ZodObject<{
184
204
  title: z.ZodString;
205
+ icon: z.ZodOptional<z.ZodString>;
185
206
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
186
207
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
187
208
  value: z.ZodNumber;
188
209
  }, z.core.$strip>, z.ZodObject<{
189
210
  title: z.ZodString;
211
+ icon: z.ZodOptional<z.ZodString>;
190
212
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
191
213
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
192
214
  isAvailable: z.ZodBoolean;
193
215
  modelId: z.ZodString;
194
216
  }, z.core.$strip>, z.ZodObject<{
195
217
  title: z.ZodString;
218
+ icon: z.ZodOptional<z.ZodString>;
196
219
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
197
220
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
198
221
  value: z.ZodNumber;
199
222
  }, z.core.$strip>, z.ZodObject<{
200
223
  title: z.ZodString;
224
+ icon: z.ZodOptional<z.ZodString>;
201
225
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
202
226
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
203
227
  isAvailable: z.ZodBoolean;
204
228
  modelId: z.ZodString;
205
229
  }, z.core.$strip>, z.ZodObject<{
206
230
  title: z.ZodString;
231
+ icon: z.ZodOptional<z.ZodString>;
207
232
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
208
233
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
209
234
  order: z.ZodNumber;
@@ -211,74 +236,87 @@ export declare namespace FindCurrentTeamAccountSubscriptionsCommand {
211
236
  isAvailable: z.ZodBoolean;
212
237
  }, z.core.$strip>, z.ZodObject<{
213
238
  title: z.ZodString;
239
+ icon: z.ZodOptional<z.ZodString>;
214
240
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
215
241
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
216
242
  value: z.ZodNumber;
217
243
  }, z.core.$strip>, z.ZodObject<{
218
244
  title: z.ZodString;
245
+ icon: z.ZodOptional<z.ZodString>;
219
246
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
220
247
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
221
248
  isAvailable: z.ZodBoolean;
222
249
  modelId: z.ZodString;
223
250
  }, z.core.$strip>, z.ZodObject<{
224
251
  title: z.ZodString;
252
+ icon: z.ZodOptional<z.ZodString>;
225
253
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
226
254
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
227
255
  isAvailable: z.ZodBoolean;
228
256
  modelId: z.ZodString;
229
257
  }, z.core.$strip>, z.ZodObject<{
230
258
  title: z.ZodString;
259
+ icon: z.ZodOptional<z.ZodString>;
231
260
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
232
261
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
233
262
  value: z.ZodNumber;
234
263
  }, z.core.$strip>, z.ZodObject<{
235
264
  title: z.ZodString;
265
+ icon: z.ZodOptional<z.ZodString>;
236
266
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
237
267
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
238
268
  isAvailable: z.ZodBoolean;
239
269
  modelId: z.ZodString;
240
270
  }, z.core.$strip>, z.ZodObject<{
241
271
  title: z.ZodString;
272
+ icon: z.ZodOptional<z.ZodString>;
242
273
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
243
274
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
244
275
  value: z.ZodNumber;
245
276
  }, z.core.$strip>, z.ZodObject<{
246
277
  title: z.ZodString;
278
+ icon: z.ZodOptional<z.ZodString>;
247
279
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
248
280
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
249
281
  isAvailable: z.ZodBoolean;
250
282
  modelId: z.ZodString;
251
283
  }, z.core.$strip>, z.ZodObject<{
252
284
  title: z.ZodString;
285
+ icon: z.ZodOptional<z.ZodString>;
253
286
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
254
287
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
255
288
  value: z.ZodNumber;
256
289
  }, z.core.$strip>, z.ZodObject<{
257
290
  title: z.ZodString;
291
+ icon: z.ZodOptional<z.ZodString>;
258
292
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
259
293
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
260
294
  isAvailable: z.ZodBoolean;
261
295
  modelId: z.ZodString;
262
296
  }, z.core.$strip>, z.ZodObject<{
263
297
  title: z.ZodString;
298
+ icon: z.ZodOptional<z.ZodString>;
264
299
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
265
300
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
266
301
  isAvailable: z.ZodBoolean;
267
302
  modelId: z.ZodString;
268
303
  }, z.core.$strip>, z.ZodObject<{
269
304
  title: z.ZodString;
305
+ icon: z.ZodOptional<z.ZodString>;
270
306
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
271
307
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
272
308
  isAvailable: z.ZodBoolean;
273
309
  modelId: z.ZodString;
274
310
  }, z.core.$strip>, z.ZodObject<{
275
311
  title: z.ZodString;
312
+ icon: z.ZodOptional<z.ZodString>;
276
313
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
277
314
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
278
315
  isAvailable: z.ZodBoolean;
279
316
  modelId: z.ZodString;
280
317
  }, z.core.$strip>, z.ZodObject<{
281
318
  title: z.ZodString;
319
+ icon: z.ZodOptional<z.ZodString>;
282
320
  kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
283
321
  type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
284
322
  value: z.ZodNumber;