@purpleschool/gptbot 0.15.56 → 0.15.58
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 +100 -0
- package/build/commands/product/find-product.command.d.ts +100 -0
- package/build/commands/product/get-my-products.command.d.ts +50 -0
- package/build/commands/product/update-product.command.d.ts +100 -0
- package/build/commands/subscription/create-subscription.command.d.ts +100 -0
- package/build/commands/subscription/find-subscription.command.d.ts +150 -0
- package/build/commands/subscription/get-available-upgrades.command.d.ts +100 -0
- package/build/commands/subscription/get-free-subscription.command.d.ts +50 -0
- package/build/commands/subscription/get-subscriptions-summary.command.d.ts +250 -0
- package/build/commands/subscription/update-subscription.command.d.ts +100 -0
- package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +50 -0
- package/build/commands/team-account/find-current-team-account-products.command.d.ts +50 -0
- package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +50 -0
- package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +50 -0
- package/build/commands/team-account/find-team-account-products.command.d.ts +50 -0
- package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +100 -0
- package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +50 -0
- package/build/commands/team-to-product/get-team-to-products.command.d.ts +50 -0
- package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +50 -0
- package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
- package/build/commands/user/get-user-products.command.d.ts +50 -0
- package/build/commands/user/get-user-subscriptions.command.d.ts +50 -0
- package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +50 -0
- package/build/constants/subscription/enums/subscription-feature-type.enum.d.ts +2 -0
- package/build/constants/subscription/enums/subscription-feature-type.enum.js +2 -0
- package/build/models/product.schema.d.ts +50 -0
- package/build/models/subscription-feature.schema.d.ts +103 -0
- package/build/models/subscription-feature.schema.js +14 -1
- package/build/models/subscription-upgrade-schema.d.ts +50 -0
- package/build/models/subscription.schema.d.ts +250 -0
- package/build/models/team-account/team-to-product.schema.d.ts +50 -0
- package/build/models/team-account/team-to-subscription.schema.d.ts +50 -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 +50 -0
- package/build/models/user-to-subscription.schema.d.ts +150 -0
- package/package.json +1 -1
|
@@ -59,6 +59,7 @@ export declare const UserToSubscriptionWithSubscriptionSchema: z.ZodIntersection
|
|
|
59
59
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("..").SUBSCRIPTION_ACTION>>>;
|
|
60
60
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
61
61
|
title: z.ZodString;
|
|
62
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
62
63
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
63
64
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
64
65
|
order: z.ZodNumber;
|
|
@@ -67,76 +68,90 @@ export declare const UserToSubscriptionWithSubscriptionSchema: z.ZodIntersection
|
|
|
67
68
|
maxInputLength: z.ZodNumber;
|
|
68
69
|
}, z.core.$strip>, z.ZodObject<{
|
|
69
70
|
title: z.ZodString;
|
|
71
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
70
72
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
71
73
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
72
74
|
value: z.ZodNumber;
|
|
73
75
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
74
76
|
}, z.core.$strip>, z.ZodObject<{
|
|
75
77
|
title: z.ZodString;
|
|
78
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
76
79
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
77
80
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
78
81
|
tooltip: z.ZodString;
|
|
79
82
|
value: z.ZodNumber;
|
|
80
83
|
}, z.core.$strip>, z.ZodObject<{
|
|
81
84
|
title: z.ZodString;
|
|
85
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
82
86
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
83
87
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
84
88
|
isAvailable: z.ZodBoolean;
|
|
85
89
|
}, z.core.$strip>, z.ZodObject<{
|
|
86
90
|
title: z.ZodString;
|
|
91
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
87
92
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
88
93
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
89
94
|
isAvailable: z.ZodBoolean;
|
|
90
95
|
}, z.core.$strip>, z.ZodObject<{
|
|
91
96
|
title: z.ZodString;
|
|
97
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
92
98
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
93
99
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
94
100
|
isAvailable: z.ZodBoolean;
|
|
95
101
|
modelId: z.ZodString;
|
|
96
102
|
}, z.core.$strip>, z.ZodObject<{
|
|
97
103
|
title: z.ZodString;
|
|
104
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
98
105
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
99
106
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
100
107
|
value: z.ZodNumber;
|
|
101
108
|
}, z.core.$strip>, z.ZodObject<{
|
|
102
109
|
title: z.ZodString;
|
|
110
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
103
111
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
104
112
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
105
113
|
value: z.ZodNumber;
|
|
106
114
|
}, z.core.$strip>, z.ZodObject<{
|
|
107
115
|
title: z.ZodString;
|
|
116
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
108
117
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
109
118
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
110
119
|
isAvailable: z.ZodBoolean;
|
|
111
120
|
modelId: z.ZodString;
|
|
112
121
|
}, z.core.$strip>, z.ZodObject<{
|
|
113
122
|
title: z.ZodString;
|
|
123
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
114
124
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
115
125
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
116
126
|
value: z.ZodNumber;
|
|
117
127
|
}, z.core.$strip>, z.ZodObject<{
|
|
118
128
|
title: z.ZodString;
|
|
129
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
119
130
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
120
131
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
121
132
|
value: z.ZodNumber;
|
|
122
133
|
}, z.core.$strip>, z.ZodObject<{
|
|
123
134
|
title: z.ZodString;
|
|
135
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
124
136
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
125
137
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
126
138
|
isAvailable: z.ZodBoolean;
|
|
127
139
|
modelId: z.ZodString;
|
|
128
140
|
}, z.core.$strip>, z.ZodObject<{
|
|
129
141
|
title: z.ZodString;
|
|
142
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
130
143
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
131
144
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
132
145
|
isAvailable: z.ZodBoolean;
|
|
133
146
|
}, z.core.$strip>, z.ZodObject<{
|
|
134
147
|
title: z.ZodString;
|
|
148
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
135
149
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
136
150
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
137
151
|
value: z.ZodNumber;
|
|
138
152
|
}, z.core.$strip>, z.ZodObject<{
|
|
139
153
|
title: z.ZodString;
|
|
154
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
140
155
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
141
156
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
142
157
|
tokens: z.ZodNumber;
|
|
@@ -152,6 +167,7 @@ export declare const UserToSubscriptionWithSubscriptionSchema: z.ZodIntersection
|
|
|
152
167
|
}, z.core.$strip>;
|
|
153
168
|
}, z.core.$strip>, z.ZodObject<{
|
|
154
169
|
title: z.ZodString;
|
|
170
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
155
171
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
156
172
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
157
173
|
isAvailable: z.ZodBoolean;
|
|
@@ -168,50 +184,59 @@ export declare const UserToSubscriptionWithSubscriptionSchema: z.ZodIntersection
|
|
|
168
184
|
}, z.core.$strip>;
|
|
169
185
|
}, z.core.$strip>, z.ZodObject<{
|
|
170
186
|
title: z.ZodString;
|
|
187
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
171
188
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
172
189
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
173
190
|
value: z.ZodNumber;
|
|
174
191
|
}, z.core.$strip>, z.ZodObject<{
|
|
175
192
|
title: z.ZodString;
|
|
193
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
176
194
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
177
195
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
178
196
|
isAvailable: z.ZodBoolean;
|
|
179
197
|
modelId: z.ZodString;
|
|
180
198
|
}, z.core.$strip>, z.ZodObject<{
|
|
181
199
|
title: z.ZodString;
|
|
200
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
182
201
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
183
202
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
184
203
|
value: z.ZodNumber;
|
|
185
204
|
}, z.core.$strip>, z.ZodObject<{
|
|
186
205
|
title: z.ZodString;
|
|
206
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
187
207
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
188
208
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
189
209
|
isAvailable: z.ZodBoolean;
|
|
190
210
|
modelId: z.ZodString;
|
|
191
211
|
}, z.core.$strip>, z.ZodObject<{
|
|
192
212
|
title: z.ZodString;
|
|
213
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
193
214
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
194
215
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
195
216
|
value: z.ZodNumber;
|
|
196
217
|
}, z.core.$strip>, z.ZodObject<{
|
|
197
218
|
title: z.ZodString;
|
|
219
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
198
220
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
199
221
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
200
222
|
isAvailable: z.ZodBoolean;
|
|
201
223
|
modelId: z.ZodString;
|
|
202
224
|
}, z.core.$strip>, z.ZodObject<{
|
|
203
225
|
title: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
204
227
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
205
228
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
206
229
|
value: z.ZodNumber;
|
|
207
230
|
}, z.core.$strip>, z.ZodObject<{
|
|
208
231
|
title: z.ZodString;
|
|
232
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
209
233
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
210
234
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
211
235
|
isAvailable: z.ZodBoolean;
|
|
212
236
|
modelId: z.ZodString;
|
|
213
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
214
238
|
title: z.ZodString;
|
|
239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
215
240
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
216
241
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
217
242
|
order: z.ZodNumber;
|
|
@@ -219,74 +244,99 @@ export declare const UserToSubscriptionWithSubscriptionSchema: z.ZodIntersection
|
|
|
219
244
|
isAvailable: z.ZodBoolean;
|
|
220
245
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
246
|
title: z.ZodString;
|
|
247
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
248
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
223
249
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
224
250
|
value: z.ZodNumber;
|
|
225
251
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
252
|
title: z.ZodString;
|
|
253
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
254
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
228
255
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
229
256
|
isAvailable: z.ZodBoolean;
|
|
230
257
|
modelId: z.ZodString;
|
|
231
258
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
259
|
title: z.ZodString;
|
|
260
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
233
261
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
234
262
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
235
263
|
isAvailable: z.ZodBoolean;
|
|
236
264
|
modelId: z.ZodString;
|
|
237
265
|
}, z.core.$strip>, z.ZodObject<{
|
|
238
266
|
title: z.ZodString;
|
|
267
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
239
268
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
240
269
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
241
270
|
value: z.ZodNumber;
|
|
242
271
|
}, z.core.$strip>, z.ZodObject<{
|
|
243
272
|
title: z.ZodString;
|
|
273
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
244
274
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
245
275
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
246
276
|
isAvailable: z.ZodBoolean;
|
|
247
277
|
modelId: z.ZodString;
|
|
248
278
|
}, z.core.$strip>, z.ZodObject<{
|
|
249
279
|
title: z.ZodString;
|
|
280
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
250
281
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
251
282
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
252
283
|
value: z.ZodNumber;
|
|
253
284
|
}, z.core.$strip>, z.ZodObject<{
|
|
254
285
|
title: z.ZodString;
|
|
286
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
255
287
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
256
288
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
257
289
|
isAvailable: z.ZodBoolean;
|
|
258
290
|
modelId: z.ZodString;
|
|
259
291
|
}, z.core.$strip>, z.ZodObject<{
|
|
260
292
|
title: z.ZodString;
|
|
293
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
261
294
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
262
295
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
263
296
|
value: z.ZodNumber;
|
|
264
297
|
}, z.core.$strip>, z.ZodObject<{
|
|
265
298
|
title: z.ZodString;
|
|
299
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
266
300
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
267
301
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
268
302
|
isAvailable: z.ZodBoolean;
|
|
269
303
|
modelId: z.ZodString;
|
|
270
304
|
}, z.core.$strip>, z.ZodObject<{
|
|
271
305
|
title: z.ZodString;
|
|
306
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
272
307
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
273
308
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
274
309
|
isAvailable: z.ZodBoolean;
|
|
275
310
|
modelId: z.ZodString;
|
|
276
311
|
}, z.core.$strip>, z.ZodObject<{
|
|
277
312
|
title: z.ZodString;
|
|
313
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
314
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
315
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
316
|
+
value: z.ZodNumber;
|
|
317
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
318
|
+
title: z.ZodString;
|
|
319
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
278
320
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
279
321
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
280
322
|
isAvailable: z.ZodBoolean;
|
|
281
323
|
modelId: z.ZodString;
|
|
282
324
|
}, z.core.$strip>, z.ZodObject<{
|
|
283
325
|
title: z.ZodString;
|
|
326
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
327
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
328
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
329
|
+
value: z.ZodNumber;
|
|
330
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
331
|
+
title: z.ZodString;
|
|
332
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
284
333
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
285
334
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
286
335
|
isAvailable: z.ZodBoolean;
|
|
287
336
|
modelId: z.ZodString;
|
|
288
337
|
}, z.core.$strip>, z.ZodObject<{
|
|
289
338
|
title: z.ZodString;
|
|
339
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
290
340
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
291
341
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
292
342
|
value: z.ZodNumber;
|
|
@@ -358,6 +408,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
358
408
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("..").SUBSCRIPTION_ACTION>>>;
|
|
359
409
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
360
410
|
title: z.ZodString;
|
|
411
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
361
412
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
362
413
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
363
414
|
order: z.ZodNumber;
|
|
@@ -366,76 +417,90 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
366
417
|
maxInputLength: z.ZodNumber;
|
|
367
418
|
}, z.core.$strip>, z.ZodObject<{
|
|
368
419
|
title: z.ZodString;
|
|
420
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
369
421
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
370
422
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
371
423
|
value: z.ZodNumber;
|
|
372
424
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
373
425
|
}, z.core.$strip>, z.ZodObject<{
|
|
374
426
|
title: z.ZodString;
|
|
427
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
375
428
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
376
429
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
377
430
|
tooltip: z.ZodString;
|
|
378
431
|
value: z.ZodNumber;
|
|
379
432
|
}, z.core.$strip>, z.ZodObject<{
|
|
380
433
|
title: z.ZodString;
|
|
434
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
381
435
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
382
436
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
383
437
|
isAvailable: z.ZodBoolean;
|
|
384
438
|
}, z.core.$strip>, z.ZodObject<{
|
|
385
439
|
title: z.ZodString;
|
|
440
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
386
441
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
387
442
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
388
443
|
isAvailable: z.ZodBoolean;
|
|
389
444
|
}, z.core.$strip>, z.ZodObject<{
|
|
390
445
|
title: z.ZodString;
|
|
446
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
391
447
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
392
448
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
393
449
|
isAvailable: z.ZodBoolean;
|
|
394
450
|
modelId: z.ZodString;
|
|
395
451
|
}, z.core.$strip>, z.ZodObject<{
|
|
396
452
|
title: z.ZodString;
|
|
453
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
397
454
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
398
455
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
399
456
|
value: z.ZodNumber;
|
|
400
457
|
}, z.core.$strip>, z.ZodObject<{
|
|
401
458
|
title: z.ZodString;
|
|
459
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
402
460
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
403
461
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
404
462
|
value: z.ZodNumber;
|
|
405
463
|
}, z.core.$strip>, z.ZodObject<{
|
|
406
464
|
title: z.ZodString;
|
|
465
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
407
466
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
408
467
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
409
468
|
isAvailable: z.ZodBoolean;
|
|
410
469
|
modelId: z.ZodString;
|
|
411
470
|
}, z.core.$strip>, z.ZodObject<{
|
|
412
471
|
title: z.ZodString;
|
|
472
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
413
473
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
414
474
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
415
475
|
value: z.ZodNumber;
|
|
416
476
|
}, z.core.$strip>, z.ZodObject<{
|
|
417
477
|
title: z.ZodString;
|
|
478
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
418
479
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
419
480
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
420
481
|
value: z.ZodNumber;
|
|
421
482
|
}, z.core.$strip>, z.ZodObject<{
|
|
422
483
|
title: z.ZodString;
|
|
484
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
423
485
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
424
486
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
425
487
|
isAvailable: z.ZodBoolean;
|
|
426
488
|
modelId: z.ZodString;
|
|
427
489
|
}, z.core.$strip>, z.ZodObject<{
|
|
428
490
|
title: z.ZodString;
|
|
491
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
429
492
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
430
493
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
431
494
|
isAvailable: z.ZodBoolean;
|
|
432
495
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
496
|
title: z.ZodString;
|
|
497
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
498
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
435
499
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
436
500
|
value: z.ZodNumber;
|
|
437
501
|
}, z.core.$strip>, z.ZodObject<{
|
|
438
502
|
title: z.ZodString;
|
|
503
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
439
504
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
440
505
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
441
506
|
tokens: z.ZodNumber;
|
|
@@ -451,6 +516,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
451
516
|
}, z.core.$strip>;
|
|
452
517
|
}, z.core.$strip>, z.ZodObject<{
|
|
453
518
|
title: z.ZodString;
|
|
519
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
454
520
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
455
521
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
456
522
|
isAvailable: z.ZodBoolean;
|
|
@@ -467,50 +533,59 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
467
533
|
}, z.core.$strip>;
|
|
468
534
|
}, z.core.$strip>, z.ZodObject<{
|
|
469
535
|
title: z.ZodString;
|
|
536
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
470
537
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
471
538
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
472
539
|
value: z.ZodNumber;
|
|
473
540
|
}, z.core.$strip>, z.ZodObject<{
|
|
474
541
|
title: z.ZodString;
|
|
542
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
475
543
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
476
544
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
477
545
|
isAvailable: z.ZodBoolean;
|
|
478
546
|
modelId: z.ZodString;
|
|
479
547
|
}, z.core.$strip>, z.ZodObject<{
|
|
480
548
|
title: z.ZodString;
|
|
549
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
481
550
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
482
551
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
483
552
|
value: z.ZodNumber;
|
|
484
553
|
}, z.core.$strip>, z.ZodObject<{
|
|
485
554
|
title: z.ZodString;
|
|
555
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
486
556
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
487
557
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
488
558
|
isAvailable: z.ZodBoolean;
|
|
489
559
|
modelId: z.ZodString;
|
|
490
560
|
}, z.core.$strip>, z.ZodObject<{
|
|
491
561
|
title: z.ZodString;
|
|
562
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
492
563
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
493
564
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
494
565
|
value: z.ZodNumber;
|
|
495
566
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
567
|
title: z.ZodString;
|
|
568
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
569
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
498
570
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
499
571
|
isAvailable: z.ZodBoolean;
|
|
500
572
|
modelId: z.ZodString;
|
|
501
573
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
574
|
title: z.ZodString;
|
|
575
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
503
576
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
504
577
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
505
578
|
value: z.ZodNumber;
|
|
506
579
|
}, z.core.$strip>, z.ZodObject<{
|
|
507
580
|
title: z.ZodString;
|
|
581
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
508
582
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
509
583
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
510
584
|
isAvailable: z.ZodBoolean;
|
|
511
585
|
modelId: z.ZodString;
|
|
512
586
|
}, z.core.$strip>, z.ZodObject<{
|
|
513
587
|
title: z.ZodString;
|
|
588
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
514
589
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
515
590
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
516
591
|
order: z.ZodNumber;
|
|
@@ -518,74 +593,99 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
518
593
|
isAvailable: z.ZodBoolean;
|
|
519
594
|
}, z.core.$strip>, z.ZodObject<{
|
|
520
595
|
title: z.ZodString;
|
|
596
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
521
597
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
522
598
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
523
599
|
value: z.ZodNumber;
|
|
524
600
|
}, z.core.$strip>, z.ZodObject<{
|
|
525
601
|
title: z.ZodString;
|
|
602
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
526
603
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
527
604
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
528
605
|
isAvailable: z.ZodBoolean;
|
|
529
606
|
modelId: z.ZodString;
|
|
530
607
|
}, z.core.$strip>, z.ZodObject<{
|
|
531
608
|
title: z.ZodString;
|
|
609
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
532
610
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
533
611
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
534
612
|
isAvailable: z.ZodBoolean;
|
|
535
613
|
modelId: z.ZodString;
|
|
536
614
|
}, z.core.$strip>, z.ZodObject<{
|
|
537
615
|
title: z.ZodString;
|
|
616
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
538
617
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
539
618
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
540
619
|
value: z.ZodNumber;
|
|
541
620
|
}, z.core.$strip>, z.ZodObject<{
|
|
542
621
|
title: z.ZodString;
|
|
622
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
543
623
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
544
624
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
545
625
|
isAvailable: z.ZodBoolean;
|
|
546
626
|
modelId: z.ZodString;
|
|
547
627
|
}, z.core.$strip>, z.ZodObject<{
|
|
548
628
|
title: z.ZodString;
|
|
629
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
549
630
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
550
631
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
551
632
|
value: z.ZodNumber;
|
|
552
633
|
}, z.core.$strip>, z.ZodObject<{
|
|
553
634
|
title: z.ZodString;
|
|
635
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
554
636
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
555
637
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
556
638
|
isAvailable: z.ZodBoolean;
|
|
557
639
|
modelId: z.ZodString;
|
|
558
640
|
}, z.core.$strip>, z.ZodObject<{
|
|
559
641
|
title: z.ZodString;
|
|
642
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
560
643
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
561
644
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
562
645
|
value: z.ZodNumber;
|
|
563
646
|
}, z.core.$strip>, z.ZodObject<{
|
|
564
647
|
title: z.ZodString;
|
|
648
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
565
649
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
566
650
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
567
651
|
isAvailable: z.ZodBoolean;
|
|
568
652
|
modelId: z.ZodString;
|
|
569
653
|
}, z.core.$strip>, z.ZodObject<{
|
|
570
654
|
title: z.ZodString;
|
|
655
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
571
656
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
572
657
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
573
658
|
isAvailable: z.ZodBoolean;
|
|
574
659
|
modelId: z.ZodString;
|
|
575
660
|
}, z.core.$strip>, z.ZodObject<{
|
|
576
661
|
title: z.ZodString;
|
|
662
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
663
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
664
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
665
|
+
value: z.ZodNumber;
|
|
666
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
667
|
+
title: z.ZodString;
|
|
668
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
577
669
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
578
670
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
579
671
|
isAvailable: z.ZodBoolean;
|
|
580
672
|
modelId: z.ZodString;
|
|
581
673
|
}, z.core.$strip>, z.ZodObject<{
|
|
582
674
|
title: z.ZodString;
|
|
675
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
676
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
677
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
678
|
+
value: z.ZodNumber;
|
|
679
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
680
|
+
title: z.ZodString;
|
|
681
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
583
682
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
584
683
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
585
684
|
isAvailable: z.ZodBoolean;
|
|
586
685
|
modelId: z.ZodString;
|
|
587
686
|
}, z.core.$strip>, z.ZodObject<{
|
|
588
687
|
title: z.ZodString;
|
|
688
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
589
689
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
590
690
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
591
691
|
value: z.ZodNumber;
|
|
@@ -640,6 +740,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
640
740
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("..").SUBSCRIPTION_ACTION>>>;
|
|
641
741
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
642
742
|
title: z.ZodString;
|
|
743
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
643
744
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
644
745
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
645
746
|
order: z.ZodNumber;
|
|
@@ -648,76 +749,90 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
648
749
|
maxInputLength: z.ZodNumber;
|
|
649
750
|
}, z.core.$strip>, z.ZodObject<{
|
|
650
751
|
title: z.ZodString;
|
|
752
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
651
753
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
652
754
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
653
755
|
value: z.ZodNumber;
|
|
654
756
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
655
757
|
}, z.core.$strip>, z.ZodObject<{
|
|
656
758
|
title: z.ZodString;
|
|
759
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
657
760
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
658
761
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
659
762
|
tooltip: z.ZodString;
|
|
660
763
|
value: z.ZodNumber;
|
|
661
764
|
}, z.core.$strip>, z.ZodObject<{
|
|
662
765
|
title: z.ZodString;
|
|
766
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
663
767
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
664
768
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
665
769
|
isAvailable: z.ZodBoolean;
|
|
666
770
|
}, z.core.$strip>, z.ZodObject<{
|
|
667
771
|
title: z.ZodString;
|
|
772
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
668
773
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
669
774
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
670
775
|
isAvailable: z.ZodBoolean;
|
|
671
776
|
}, z.core.$strip>, z.ZodObject<{
|
|
672
777
|
title: z.ZodString;
|
|
778
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
673
779
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
674
780
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
675
781
|
isAvailable: z.ZodBoolean;
|
|
676
782
|
modelId: z.ZodString;
|
|
677
783
|
}, z.core.$strip>, z.ZodObject<{
|
|
678
784
|
title: z.ZodString;
|
|
785
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
679
786
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
680
787
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
681
788
|
value: z.ZodNumber;
|
|
682
789
|
}, z.core.$strip>, z.ZodObject<{
|
|
683
790
|
title: z.ZodString;
|
|
791
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
684
792
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
685
793
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
686
794
|
value: z.ZodNumber;
|
|
687
795
|
}, z.core.$strip>, z.ZodObject<{
|
|
688
796
|
title: z.ZodString;
|
|
797
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
689
798
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
690
799
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
691
800
|
isAvailable: z.ZodBoolean;
|
|
692
801
|
modelId: z.ZodString;
|
|
693
802
|
}, z.core.$strip>, z.ZodObject<{
|
|
694
803
|
title: z.ZodString;
|
|
804
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
695
805
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
696
806
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
697
807
|
value: z.ZodNumber;
|
|
698
808
|
}, z.core.$strip>, z.ZodObject<{
|
|
699
809
|
title: z.ZodString;
|
|
810
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
700
811
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
701
812
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
702
813
|
value: z.ZodNumber;
|
|
703
814
|
}, z.core.$strip>, z.ZodObject<{
|
|
704
815
|
title: z.ZodString;
|
|
816
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
705
817
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
706
818
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
707
819
|
isAvailable: z.ZodBoolean;
|
|
708
820
|
modelId: z.ZodString;
|
|
709
821
|
}, z.core.$strip>, z.ZodObject<{
|
|
710
822
|
title: z.ZodString;
|
|
823
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
711
824
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
712
825
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
713
826
|
isAvailable: z.ZodBoolean;
|
|
714
827
|
}, z.core.$strip>, z.ZodObject<{
|
|
715
828
|
title: z.ZodString;
|
|
829
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
716
830
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
717
831
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
718
832
|
value: z.ZodNumber;
|
|
719
833
|
}, z.core.$strip>, z.ZodObject<{
|
|
720
834
|
title: z.ZodString;
|
|
835
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
721
836
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
722
837
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
723
838
|
tokens: z.ZodNumber;
|
|
@@ -733,6 +848,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
733
848
|
}, z.core.$strip>;
|
|
734
849
|
}, z.core.$strip>, z.ZodObject<{
|
|
735
850
|
title: z.ZodString;
|
|
851
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
736
852
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
737
853
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
738
854
|
isAvailable: z.ZodBoolean;
|
|
@@ -749,50 +865,59 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
749
865
|
}, z.core.$strip>;
|
|
750
866
|
}, z.core.$strip>, z.ZodObject<{
|
|
751
867
|
title: z.ZodString;
|
|
868
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
752
869
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
753
870
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
754
871
|
value: z.ZodNumber;
|
|
755
872
|
}, z.core.$strip>, z.ZodObject<{
|
|
756
873
|
title: z.ZodString;
|
|
874
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
757
875
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
758
876
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
759
877
|
isAvailable: z.ZodBoolean;
|
|
760
878
|
modelId: z.ZodString;
|
|
761
879
|
}, z.core.$strip>, z.ZodObject<{
|
|
762
880
|
title: z.ZodString;
|
|
881
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
763
882
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
764
883
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
765
884
|
value: z.ZodNumber;
|
|
766
885
|
}, z.core.$strip>, z.ZodObject<{
|
|
767
886
|
title: z.ZodString;
|
|
887
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
768
888
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
769
889
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
770
890
|
isAvailable: z.ZodBoolean;
|
|
771
891
|
modelId: z.ZodString;
|
|
772
892
|
}, z.core.$strip>, z.ZodObject<{
|
|
773
893
|
title: z.ZodString;
|
|
894
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
774
895
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
775
896
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
776
897
|
value: z.ZodNumber;
|
|
777
898
|
}, z.core.$strip>, z.ZodObject<{
|
|
778
899
|
title: z.ZodString;
|
|
900
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
779
901
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
780
902
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
781
903
|
isAvailable: z.ZodBoolean;
|
|
782
904
|
modelId: z.ZodString;
|
|
783
905
|
}, z.core.$strip>, z.ZodObject<{
|
|
784
906
|
title: z.ZodString;
|
|
907
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
785
908
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
786
909
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
787
910
|
value: z.ZodNumber;
|
|
788
911
|
}, z.core.$strip>, z.ZodObject<{
|
|
789
912
|
title: z.ZodString;
|
|
913
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
790
914
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
791
915
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
792
916
|
isAvailable: z.ZodBoolean;
|
|
793
917
|
modelId: z.ZodString;
|
|
794
918
|
}, z.core.$strip>, z.ZodObject<{
|
|
795
919
|
title: z.ZodString;
|
|
920
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
796
921
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
797
922
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
798
923
|
order: z.ZodNumber;
|
|
@@ -800,74 +925,99 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
800
925
|
isAvailable: z.ZodBoolean;
|
|
801
926
|
}, z.core.$strip>, z.ZodObject<{
|
|
802
927
|
title: z.ZodString;
|
|
928
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
803
929
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
804
930
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
805
931
|
value: z.ZodNumber;
|
|
806
932
|
}, z.core.$strip>, z.ZodObject<{
|
|
807
933
|
title: z.ZodString;
|
|
934
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
808
935
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
809
936
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
810
937
|
isAvailable: z.ZodBoolean;
|
|
811
938
|
modelId: z.ZodString;
|
|
812
939
|
}, z.core.$strip>, z.ZodObject<{
|
|
813
940
|
title: z.ZodString;
|
|
941
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
814
942
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
815
943
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
816
944
|
isAvailable: z.ZodBoolean;
|
|
817
945
|
modelId: z.ZodString;
|
|
818
946
|
}, z.core.$strip>, z.ZodObject<{
|
|
819
947
|
title: z.ZodString;
|
|
948
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
820
949
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
821
950
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
822
951
|
value: z.ZodNumber;
|
|
823
952
|
}, z.core.$strip>, z.ZodObject<{
|
|
824
953
|
title: z.ZodString;
|
|
954
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
825
955
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
826
956
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
827
957
|
isAvailable: z.ZodBoolean;
|
|
828
958
|
modelId: z.ZodString;
|
|
829
959
|
}, z.core.$strip>, z.ZodObject<{
|
|
830
960
|
title: z.ZodString;
|
|
961
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
831
962
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
832
963
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
833
964
|
value: z.ZodNumber;
|
|
834
965
|
}, z.core.$strip>, z.ZodObject<{
|
|
835
966
|
title: z.ZodString;
|
|
967
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
836
968
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
837
969
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
838
970
|
isAvailable: z.ZodBoolean;
|
|
839
971
|
modelId: z.ZodString;
|
|
840
972
|
}, z.core.$strip>, z.ZodObject<{
|
|
841
973
|
title: z.ZodString;
|
|
974
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
842
975
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
843
976
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
844
977
|
value: z.ZodNumber;
|
|
845
978
|
}, z.core.$strip>, z.ZodObject<{
|
|
846
979
|
title: z.ZodString;
|
|
980
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
847
981
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
848
982
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
849
983
|
isAvailable: z.ZodBoolean;
|
|
850
984
|
modelId: z.ZodString;
|
|
851
985
|
}, z.core.$strip>, z.ZodObject<{
|
|
852
986
|
title: z.ZodString;
|
|
987
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
853
988
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
854
989
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
855
990
|
isAvailable: z.ZodBoolean;
|
|
856
991
|
modelId: z.ZodString;
|
|
857
992
|
}, z.core.$strip>, z.ZodObject<{
|
|
858
993
|
title: z.ZodString;
|
|
994
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
995
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
996
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
997
|
+
value: z.ZodNumber;
|
|
998
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
999
|
+
title: z.ZodString;
|
|
1000
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
859
1001
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
860
1002
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
861
1003
|
isAvailable: z.ZodBoolean;
|
|
862
1004
|
modelId: z.ZodString;
|
|
863
1005
|
}, z.core.$strip>, z.ZodObject<{
|
|
864
1006
|
title: z.ZodString;
|
|
1007
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1008
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1009
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
1010
|
+
value: z.ZodNumber;
|
|
1011
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1012
|
+
title: z.ZodString;
|
|
1013
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
865
1014
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
866
1015
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
867
1016
|
isAvailable: z.ZodBoolean;
|
|
868
1017
|
modelId: z.ZodString;
|
|
869
1018
|
}, z.core.$strip>, z.ZodObject<{
|
|
870
1019
|
title: z.ZodString;
|
|
1020
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
871
1021
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
872
1022
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
873
1023
|
value: z.ZodNumber;
|