@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
|
@@ -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,87 @@ 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>;
|
|
278
314
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
279
315
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
280
316
|
isAvailable: z.ZodBoolean;
|
|
281
317
|
modelId: z.ZodString;
|
|
282
318
|
}, z.core.$strip>, z.ZodObject<{
|
|
283
319
|
title: z.ZodString;
|
|
320
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
284
321
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
285
322
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
286
323
|
isAvailable: z.ZodBoolean;
|
|
287
324
|
modelId: z.ZodString;
|
|
288
325
|
}, z.core.$strip>, z.ZodObject<{
|
|
289
326
|
title: z.ZodString;
|
|
327
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
290
328
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
291
329
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
292
330
|
value: z.ZodNumber;
|
|
@@ -358,6 +396,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
358
396
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("..").SUBSCRIPTION_ACTION>>>;
|
|
359
397
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
360
398
|
title: z.ZodString;
|
|
399
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
361
400
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
362
401
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
363
402
|
order: z.ZodNumber;
|
|
@@ -366,76 +405,90 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
366
405
|
maxInputLength: z.ZodNumber;
|
|
367
406
|
}, z.core.$strip>, z.ZodObject<{
|
|
368
407
|
title: z.ZodString;
|
|
408
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
369
409
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
370
410
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
371
411
|
value: z.ZodNumber;
|
|
372
412
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
373
413
|
}, z.core.$strip>, z.ZodObject<{
|
|
374
414
|
title: z.ZodString;
|
|
415
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
375
416
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
376
417
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
377
418
|
tooltip: z.ZodString;
|
|
378
419
|
value: z.ZodNumber;
|
|
379
420
|
}, z.core.$strip>, z.ZodObject<{
|
|
380
421
|
title: z.ZodString;
|
|
422
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
381
423
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
382
424
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
383
425
|
isAvailable: z.ZodBoolean;
|
|
384
426
|
}, z.core.$strip>, z.ZodObject<{
|
|
385
427
|
title: z.ZodString;
|
|
428
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
386
429
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
387
430
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
388
431
|
isAvailable: z.ZodBoolean;
|
|
389
432
|
}, z.core.$strip>, z.ZodObject<{
|
|
390
433
|
title: z.ZodString;
|
|
434
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
391
435
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
392
436
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
393
437
|
isAvailable: z.ZodBoolean;
|
|
394
438
|
modelId: z.ZodString;
|
|
395
439
|
}, z.core.$strip>, z.ZodObject<{
|
|
396
440
|
title: z.ZodString;
|
|
441
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
397
442
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
398
443
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
399
444
|
value: z.ZodNumber;
|
|
400
445
|
}, z.core.$strip>, z.ZodObject<{
|
|
401
446
|
title: z.ZodString;
|
|
447
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
402
448
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
403
449
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
404
450
|
value: z.ZodNumber;
|
|
405
451
|
}, z.core.$strip>, z.ZodObject<{
|
|
406
452
|
title: z.ZodString;
|
|
453
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
407
454
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
408
455
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
409
456
|
isAvailable: z.ZodBoolean;
|
|
410
457
|
modelId: z.ZodString;
|
|
411
458
|
}, z.core.$strip>, z.ZodObject<{
|
|
412
459
|
title: z.ZodString;
|
|
460
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
413
461
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
414
462
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
415
463
|
value: z.ZodNumber;
|
|
416
464
|
}, z.core.$strip>, z.ZodObject<{
|
|
417
465
|
title: z.ZodString;
|
|
466
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
418
467
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
419
468
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
420
469
|
value: z.ZodNumber;
|
|
421
470
|
}, z.core.$strip>, z.ZodObject<{
|
|
422
471
|
title: z.ZodString;
|
|
472
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
423
473
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
424
474
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
425
475
|
isAvailable: z.ZodBoolean;
|
|
426
476
|
modelId: z.ZodString;
|
|
427
477
|
}, z.core.$strip>, z.ZodObject<{
|
|
428
478
|
title: z.ZodString;
|
|
479
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
429
480
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
430
481
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
431
482
|
isAvailable: z.ZodBoolean;
|
|
432
483
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
484
|
title: z.ZodString;
|
|
485
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
486
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
435
487
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
436
488
|
value: z.ZodNumber;
|
|
437
489
|
}, z.core.$strip>, z.ZodObject<{
|
|
438
490
|
title: z.ZodString;
|
|
491
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
439
492
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
440
493
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
441
494
|
tokens: z.ZodNumber;
|
|
@@ -451,6 +504,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
451
504
|
}, z.core.$strip>;
|
|
452
505
|
}, z.core.$strip>, z.ZodObject<{
|
|
453
506
|
title: z.ZodString;
|
|
507
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
454
508
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
455
509
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
456
510
|
isAvailable: z.ZodBoolean;
|
|
@@ -467,50 +521,59 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
467
521
|
}, z.core.$strip>;
|
|
468
522
|
}, z.core.$strip>, z.ZodObject<{
|
|
469
523
|
title: z.ZodString;
|
|
524
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
470
525
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
471
526
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
472
527
|
value: z.ZodNumber;
|
|
473
528
|
}, z.core.$strip>, z.ZodObject<{
|
|
474
529
|
title: z.ZodString;
|
|
530
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
475
531
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
476
532
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
477
533
|
isAvailable: z.ZodBoolean;
|
|
478
534
|
modelId: z.ZodString;
|
|
479
535
|
}, z.core.$strip>, z.ZodObject<{
|
|
480
536
|
title: z.ZodString;
|
|
537
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
481
538
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
482
539
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
483
540
|
value: z.ZodNumber;
|
|
484
541
|
}, z.core.$strip>, z.ZodObject<{
|
|
485
542
|
title: z.ZodString;
|
|
543
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
486
544
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
487
545
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
488
546
|
isAvailable: z.ZodBoolean;
|
|
489
547
|
modelId: z.ZodString;
|
|
490
548
|
}, z.core.$strip>, z.ZodObject<{
|
|
491
549
|
title: z.ZodString;
|
|
550
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
492
551
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
493
552
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
494
553
|
value: z.ZodNumber;
|
|
495
554
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
555
|
title: z.ZodString;
|
|
556
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
557
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
498
558
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
499
559
|
isAvailable: z.ZodBoolean;
|
|
500
560
|
modelId: z.ZodString;
|
|
501
561
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
562
|
title: z.ZodString;
|
|
563
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
503
564
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
504
565
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
505
566
|
value: z.ZodNumber;
|
|
506
567
|
}, z.core.$strip>, z.ZodObject<{
|
|
507
568
|
title: z.ZodString;
|
|
569
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
508
570
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
509
571
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
510
572
|
isAvailable: z.ZodBoolean;
|
|
511
573
|
modelId: z.ZodString;
|
|
512
574
|
}, z.core.$strip>, z.ZodObject<{
|
|
513
575
|
title: z.ZodString;
|
|
576
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
514
577
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
515
578
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
516
579
|
order: z.ZodNumber;
|
|
@@ -518,74 +581,87 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
518
581
|
isAvailable: z.ZodBoolean;
|
|
519
582
|
}, z.core.$strip>, z.ZodObject<{
|
|
520
583
|
title: z.ZodString;
|
|
584
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
521
585
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
522
586
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
523
587
|
value: z.ZodNumber;
|
|
524
588
|
}, z.core.$strip>, z.ZodObject<{
|
|
525
589
|
title: z.ZodString;
|
|
590
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
526
591
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
527
592
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
528
593
|
isAvailable: z.ZodBoolean;
|
|
529
594
|
modelId: z.ZodString;
|
|
530
595
|
}, z.core.$strip>, z.ZodObject<{
|
|
531
596
|
title: z.ZodString;
|
|
597
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
532
598
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
533
599
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
534
600
|
isAvailable: z.ZodBoolean;
|
|
535
601
|
modelId: z.ZodString;
|
|
536
602
|
}, z.core.$strip>, z.ZodObject<{
|
|
537
603
|
title: z.ZodString;
|
|
604
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
538
605
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
539
606
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
540
607
|
value: z.ZodNumber;
|
|
541
608
|
}, z.core.$strip>, z.ZodObject<{
|
|
542
609
|
title: z.ZodString;
|
|
610
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
543
611
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
544
612
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
545
613
|
isAvailable: z.ZodBoolean;
|
|
546
614
|
modelId: z.ZodString;
|
|
547
615
|
}, z.core.$strip>, z.ZodObject<{
|
|
548
616
|
title: z.ZodString;
|
|
617
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
549
618
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
550
619
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
551
620
|
value: z.ZodNumber;
|
|
552
621
|
}, z.core.$strip>, z.ZodObject<{
|
|
553
622
|
title: z.ZodString;
|
|
623
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
554
624
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
555
625
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
556
626
|
isAvailable: z.ZodBoolean;
|
|
557
627
|
modelId: z.ZodString;
|
|
558
628
|
}, z.core.$strip>, z.ZodObject<{
|
|
559
629
|
title: z.ZodString;
|
|
630
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
560
631
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
561
632
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
562
633
|
value: z.ZodNumber;
|
|
563
634
|
}, z.core.$strip>, z.ZodObject<{
|
|
564
635
|
title: z.ZodString;
|
|
636
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
565
637
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
566
638
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
567
639
|
isAvailable: z.ZodBoolean;
|
|
568
640
|
modelId: z.ZodString;
|
|
569
641
|
}, z.core.$strip>, z.ZodObject<{
|
|
570
642
|
title: z.ZodString;
|
|
643
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
571
644
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
572
645
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
573
646
|
isAvailable: z.ZodBoolean;
|
|
574
647
|
modelId: z.ZodString;
|
|
575
648
|
}, z.core.$strip>, z.ZodObject<{
|
|
576
649
|
title: z.ZodString;
|
|
650
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
577
651
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
578
652
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
579
653
|
isAvailable: z.ZodBoolean;
|
|
580
654
|
modelId: z.ZodString;
|
|
581
655
|
}, z.core.$strip>, z.ZodObject<{
|
|
582
656
|
title: z.ZodString;
|
|
657
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
583
658
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
584
659
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
585
660
|
isAvailable: z.ZodBoolean;
|
|
586
661
|
modelId: z.ZodString;
|
|
587
662
|
}, z.core.$strip>, z.ZodObject<{
|
|
588
663
|
title: z.ZodString;
|
|
664
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
589
665
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
590
666
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
591
667
|
value: z.ZodNumber;
|
|
@@ -640,6 +716,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
640
716
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("..").SUBSCRIPTION_ACTION>>>;
|
|
641
717
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
642
718
|
title: z.ZodString;
|
|
719
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
643
720
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
644
721
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
645
722
|
order: z.ZodNumber;
|
|
@@ -648,76 +725,90 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
648
725
|
maxInputLength: z.ZodNumber;
|
|
649
726
|
}, z.core.$strip>, z.ZodObject<{
|
|
650
727
|
title: z.ZodString;
|
|
728
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
651
729
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
652
730
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
653
731
|
value: z.ZodNumber;
|
|
654
732
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
655
733
|
}, z.core.$strip>, z.ZodObject<{
|
|
656
734
|
title: z.ZodString;
|
|
735
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
657
736
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
658
737
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
659
738
|
tooltip: z.ZodString;
|
|
660
739
|
value: z.ZodNumber;
|
|
661
740
|
}, z.core.$strip>, z.ZodObject<{
|
|
662
741
|
title: z.ZodString;
|
|
742
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
663
743
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
664
744
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
665
745
|
isAvailable: z.ZodBoolean;
|
|
666
746
|
}, z.core.$strip>, z.ZodObject<{
|
|
667
747
|
title: z.ZodString;
|
|
748
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
668
749
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
669
750
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
670
751
|
isAvailable: z.ZodBoolean;
|
|
671
752
|
}, z.core.$strip>, z.ZodObject<{
|
|
672
753
|
title: z.ZodString;
|
|
754
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
673
755
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
674
756
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
675
757
|
isAvailable: z.ZodBoolean;
|
|
676
758
|
modelId: z.ZodString;
|
|
677
759
|
}, z.core.$strip>, z.ZodObject<{
|
|
678
760
|
title: z.ZodString;
|
|
761
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
679
762
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
680
763
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
681
764
|
value: z.ZodNumber;
|
|
682
765
|
}, z.core.$strip>, z.ZodObject<{
|
|
683
766
|
title: z.ZodString;
|
|
767
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
684
768
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
685
769
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
686
770
|
value: z.ZodNumber;
|
|
687
771
|
}, z.core.$strip>, z.ZodObject<{
|
|
688
772
|
title: z.ZodString;
|
|
773
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
689
774
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
690
775
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
691
776
|
isAvailable: z.ZodBoolean;
|
|
692
777
|
modelId: z.ZodString;
|
|
693
778
|
}, z.core.$strip>, z.ZodObject<{
|
|
694
779
|
title: z.ZodString;
|
|
780
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
695
781
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
696
782
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
697
783
|
value: z.ZodNumber;
|
|
698
784
|
}, z.core.$strip>, z.ZodObject<{
|
|
699
785
|
title: z.ZodString;
|
|
786
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
700
787
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
701
788
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
702
789
|
value: z.ZodNumber;
|
|
703
790
|
}, z.core.$strip>, z.ZodObject<{
|
|
704
791
|
title: z.ZodString;
|
|
792
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
705
793
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
706
794
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
707
795
|
isAvailable: z.ZodBoolean;
|
|
708
796
|
modelId: z.ZodString;
|
|
709
797
|
}, z.core.$strip>, z.ZodObject<{
|
|
710
798
|
title: z.ZodString;
|
|
799
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
711
800
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
712
801
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
713
802
|
isAvailable: z.ZodBoolean;
|
|
714
803
|
}, z.core.$strip>, z.ZodObject<{
|
|
715
804
|
title: z.ZodString;
|
|
805
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
716
806
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
717
807
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
718
808
|
value: z.ZodNumber;
|
|
719
809
|
}, z.core.$strip>, z.ZodObject<{
|
|
720
810
|
title: z.ZodString;
|
|
811
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
721
812
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
722
813
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
723
814
|
tokens: z.ZodNumber;
|
|
@@ -733,6 +824,7 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
733
824
|
}, z.core.$strip>;
|
|
734
825
|
}, z.core.$strip>, z.ZodObject<{
|
|
735
826
|
title: z.ZodString;
|
|
827
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
736
828
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
737
829
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
738
830
|
isAvailable: z.ZodBoolean;
|
|
@@ -749,50 +841,59 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
749
841
|
}, z.core.$strip>;
|
|
750
842
|
}, z.core.$strip>, z.ZodObject<{
|
|
751
843
|
title: z.ZodString;
|
|
844
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
752
845
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
753
846
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
754
847
|
value: z.ZodNumber;
|
|
755
848
|
}, z.core.$strip>, z.ZodObject<{
|
|
756
849
|
title: z.ZodString;
|
|
850
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
757
851
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
758
852
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
759
853
|
isAvailable: z.ZodBoolean;
|
|
760
854
|
modelId: z.ZodString;
|
|
761
855
|
}, z.core.$strip>, z.ZodObject<{
|
|
762
856
|
title: z.ZodString;
|
|
857
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
763
858
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
764
859
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
765
860
|
value: z.ZodNumber;
|
|
766
861
|
}, z.core.$strip>, z.ZodObject<{
|
|
767
862
|
title: z.ZodString;
|
|
863
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
768
864
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
769
865
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
770
866
|
isAvailable: z.ZodBoolean;
|
|
771
867
|
modelId: z.ZodString;
|
|
772
868
|
}, z.core.$strip>, z.ZodObject<{
|
|
773
869
|
title: z.ZodString;
|
|
870
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
774
871
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
775
872
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
776
873
|
value: z.ZodNumber;
|
|
777
874
|
}, z.core.$strip>, z.ZodObject<{
|
|
778
875
|
title: z.ZodString;
|
|
876
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
779
877
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
780
878
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
781
879
|
isAvailable: z.ZodBoolean;
|
|
782
880
|
modelId: z.ZodString;
|
|
783
881
|
}, z.core.$strip>, z.ZodObject<{
|
|
784
882
|
title: z.ZodString;
|
|
883
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
785
884
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
786
885
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
787
886
|
value: z.ZodNumber;
|
|
788
887
|
}, z.core.$strip>, z.ZodObject<{
|
|
789
888
|
title: z.ZodString;
|
|
889
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
790
890
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
791
891
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
792
892
|
isAvailable: z.ZodBoolean;
|
|
793
893
|
modelId: z.ZodString;
|
|
794
894
|
}, z.core.$strip>, z.ZodObject<{
|
|
795
895
|
title: z.ZodString;
|
|
896
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
796
897
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
797
898
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
798
899
|
order: z.ZodNumber;
|
|
@@ -800,74 +901,87 @@ export declare const UserToSubscriptionWithDowngradeSubscriptionSchema: z.ZodInt
|
|
|
800
901
|
isAvailable: z.ZodBoolean;
|
|
801
902
|
}, z.core.$strip>, z.ZodObject<{
|
|
802
903
|
title: z.ZodString;
|
|
904
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
803
905
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
804
906
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
805
907
|
value: z.ZodNumber;
|
|
806
908
|
}, z.core.$strip>, z.ZodObject<{
|
|
807
909
|
title: z.ZodString;
|
|
910
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
808
911
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
809
912
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
810
913
|
isAvailable: z.ZodBoolean;
|
|
811
914
|
modelId: z.ZodString;
|
|
812
915
|
}, z.core.$strip>, z.ZodObject<{
|
|
813
916
|
title: z.ZodString;
|
|
917
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
814
918
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
815
919
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
816
920
|
isAvailable: z.ZodBoolean;
|
|
817
921
|
modelId: z.ZodString;
|
|
818
922
|
}, z.core.$strip>, z.ZodObject<{
|
|
819
923
|
title: z.ZodString;
|
|
924
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
820
925
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
821
926
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
822
927
|
value: z.ZodNumber;
|
|
823
928
|
}, z.core.$strip>, z.ZodObject<{
|
|
824
929
|
title: z.ZodString;
|
|
930
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
825
931
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
826
932
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
827
933
|
isAvailable: z.ZodBoolean;
|
|
828
934
|
modelId: z.ZodString;
|
|
829
935
|
}, z.core.$strip>, z.ZodObject<{
|
|
830
936
|
title: z.ZodString;
|
|
937
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
831
938
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
832
939
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
833
940
|
value: z.ZodNumber;
|
|
834
941
|
}, z.core.$strip>, z.ZodObject<{
|
|
835
942
|
title: z.ZodString;
|
|
943
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
836
944
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
837
945
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
838
946
|
isAvailable: z.ZodBoolean;
|
|
839
947
|
modelId: z.ZodString;
|
|
840
948
|
}, z.core.$strip>, z.ZodObject<{
|
|
841
949
|
title: z.ZodString;
|
|
950
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
842
951
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
843
952
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
844
953
|
value: z.ZodNumber;
|
|
845
954
|
}, z.core.$strip>, z.ZodObject<{
|
|
846
955
|
title: z.ZodString;
|
|
956
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
847
957
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
848
958
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
849
959
|
isAvailable: z.ZodBoolean;
|
|
850
960
|
modelId: z.ZodString;
|
|
851
961
|
}, z.core.$strip>, z.ZodObject<{
|
|
852
962
|
title: z.ZodString;
|
|
963
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
853
964
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
854
965
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
855
966
|
isAvailable: z.ZodBoolean;
|
|
856
967
|
modelId: z.ZodString;
|
|
857
968
|
}, z.core.$strip>, z.ZodObject<{
|
|
858
969
|
title: z.ZodString;
|
|
970
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
859
971
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
860
972
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
861
973
|
isAvailable: z.ZodBoolean;
|
|
862
974
|
modelId: z.ZodString;
|
|
863
975
|
}, z.core.$strip>, z.ZodObject<{
|
|
864
976
|
title: z.ZodString;
|
|
977
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
865
978
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
866
979
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
867
980
|
isAvailable: z.ZodBoolean;
|
|
868
981
|
modelId: z.ZodString;
|
|
869
982
|
}, z.core.$strip>, z.ZodObject<{
|
|
870
983
|
title: z.ZodString;
|
|
984
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
871
985
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
872
986
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
873
987
|
value: z.ZodNumber;
|