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