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