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