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