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