@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
|
@@ -26,6 +26,7 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
|
26
26
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
27
27
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
28
28
|
title: z.ZodString;
|
|
29
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
29
30
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
30
31
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
31
32
|
order: z.ZodNumber;
|
|
@@ -34,76 +35,90 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
|
34
35
|
maxInputLength: z.ZodNumber;
|
|
35
36
|
}, z.core.$strip>, z.ZodObject<{
|
|
36
37
|
title: z.ZodString;
|
|
38
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
37
39
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
38
40
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
39
41
|
value: z.ZodNumber;
|
|
40
42
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
41
43
|
}, z.core.$strip>, z.ZodObject<{
|
|
42
44
|
title: z.ZodString;
|
|
45
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
43
46
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
44
47
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
45
48
|
tooltip: z.ZodString;
|
|
46
49
|
value: z.ZodNumber;
|
|
47
50
|
}, z.core.$strip>, z.ZodObject<{
|
|
48
51
|
title: z.ZodString;
|
|
52
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
49
53
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
50
54
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
51
55
|
isAvailable: z.ZodBoolean;
|
|
52
56
|
}, z.core.$strip>, z.ZodObject<{
|
|
53
57
|
title: z.ZodString;
|
|
58
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
54
59
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
55
60
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
56
61
|
isAvailable: z.ZodBoolean;
|
|
57
62
|
}, z.core.$strip>, z.ZodObject<{
|
|
58
63
|
title: z.ZodString;
|
|
64
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
59
65
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
60
66
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
61
67
|
isAvailable: z.ZodBoolean;
|
|
62
68
|
modelId: z.ZodString;
|
|
63
69
|
}, z.core.$strip>, z.ZodObject<{
|
|
64
70
|
title: z.ZodString;
|
|
71
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
65
72
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
66
73
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
67
74
|
value: z.ZodNumber;
|
|
68
75
|
}, z.core.$strip>, z.ZodObject<{
|
|
69
76
|
title: z.ZodString;
|
|
77
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
70
78
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
71
79
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
72
80
|
value: z.ZodNumber;
|
|
73
81
|
}, z.core.$strip>, z.ZodObject<{
|
|
74
82
|
title: z.ZodString;
|
|
83
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
75
84
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
76
85
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
77
86
|
isAvailable: z.ZodBoolean;
|
|
78
87
|
modelId: z.ZodString;
|
|
79
88
|
}, z.core.$strip>, z.ZodObject<{
|
|
80
89
|
title: z.ZodString;
|
|
90
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
81
91
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
82
92
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
83
93
|
value: z.ZodNumber;
|
|
84
94
|
}, z.core.$strip>, z.ZodObject<{
|
|
85
95
|
title: z.ZodString;
|
|
96
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
86
97
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
87
98
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
88
99
|
value: z.ZodNumber;
|
|
89
100
|
}, z.core.$strip>, z.ZodObject<{
|
|
90
101
|
title: z.ZodString;
|
|
102
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
91
103
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
92
104
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
93
105
|
isAvailable: z.ZodBoolean;
|
|
94
106
|
modelId: z.ZodString;
|
|
95
107
|
}, z.core.$strip>, z.ZodObject<{
|
|
96
108
|
title: z.ZodString;
|
|
109
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
97
110
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
98
111
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
99
112
|
isAvailable: z.ZodBoolean;
|
|
100
113
|
}, z.core.$strip>, z.ZodObject<{
|
|
101
114
|
title: z.ZodString;
|
|
115
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
102
116
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
103
117
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
104
118
|
value: z.ZodNumber;
|
|
105
119
|
}, z.core.$strip>, z.ZodObject<{
|
|
106
120
|
title: z.ZodString;
|
|
121
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
107
122
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
108
123
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
109
124
|
tokens: z.ZodNumber;
|
|
@@ -119,6 +134,7 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
|
119
134
|
}, z.core.$strip>;
|
|
120
135
|
}, z.core.$strip>, z.ZodObject<{
|
|
121
136
|
title: z.ZodString;
|
|
137
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
122
138
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
123
139
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
124
140
|
isAvailable: z.ZodBoolean;
|
|
@@ -135,50 +151,59 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
|
135
151
|
}, z.core.$strip>;
|
|
136
152
|
}, z.core.$strip>, z.ZodObject<{
|
|
137
153
|
title: z.ZodString;
|
|
154
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
138
155
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
139
156
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
140
157
|
value: z.ZodNumber;
|
|
141
158
|
}, z.core.$strip>, z.ZodObject<{
|
|
142
159
|
title: z.ZodString;
|
|
160
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
143
161
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
144
162
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
145
163
|
isAvailable: z.ZodBoolean;
|
|
146
164
|
modelId: z.ZodString;
|
|
147
165
|
}, z.core.$strip>, z.ZodObject<{
|
|
148
166
|
title: z.ZodString;
|
|
167
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
149
168
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
150
169
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
151
170
|
value: z.ZodNumber;
|
|
152
171
|
}, z.core.$strip>, z.ZodObject<{
|
|
153
172
|
title: z.ZodString;
|
|
173
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
154
174
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
155
175
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
156
176
|
isAvailable: z.ZodBoolean;
|
|
157
177
|
modelId: z.ZodString;
|
|
158
178
|
}, z.core.$strip>, z.ZodObject<{
|
|
159
179
|
title: z.ZodString;
|
|
180
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
160
181
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
161
182
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
162
183
|
value: z.ZodNumber;
|
|
163
184
|
}, z.core.$strip>, z.ZodObject<{
|
|
164
185
|
title: z.ZodString;
|
|
186
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
165
187
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
166
188
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
167
189
|
isAvailable: z.ZodBoolean;
|
|
168
190
|
modelId: z.ZodString;
|
|
169
191
|
}, z.core.$strip>, z.ZodObject<{
|
|
170
192
|
title: z.ZodString;
|
|
193
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
171
194
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
172
195
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
173
196
|
value: z.ZodNumber;
|
|
174
197
|
}, z.core.$strip>, z.ZodObject<{
|
|
175
198
|
title: z.ZodString;
|
|
199
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
176
200
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
177
201
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
178
202
|
isAvailable: z.ZodBoolean;
|
|
179
203
|
modelId: z.ZodString;
|
|
180
204
|
}, z.core.$strip>, z.ZodObject<{
|
|
181
205
|
title: z.ZodString;
|
|
206
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
182
207
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
183
208
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
184
209
|
order: z.ZodNumber;
|
|
@@ -186,74 +211,87 @@ export declare const SubscriptionSchema: z.ZodObject<{
|
|
|
186
211
|
isAvailable: z.ZodBoolean;
|
|
187
212
|
}, z.core.$strip>, z.ZodObject<{
|
|
188
213
|
title: z.ZodString;
|
|
214
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
189
215
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
190
216
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
191
217
|
value: z.ZodNumber;
|
|
192
218
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
219
|
title: z.ZodString;
|
|
220
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
221
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
195
222
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
196
223
|
isAvailable: z.ZodBoolean;
|
|
197
224
|
modelId: z.ZodString;
|
|
198
225
|
}, z.core.$strip>, z.ZodObject<{
|
|
199
226
|
title: z.ZodString;
|
|
227
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
200
228
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
201
229
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
202
230
|
isAvailable: z.ZodBoolean;
|
|
203
231
|
modelId: z.ZodString;
|
|
204
232
|
}, z.core.$strip>, z.ZodObject<{
|
|
205
233
|
title: z.ZodString;
|
|
234
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
206
235
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
207
236
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
208
237
|
value: z.ZodNumber;
|
|
209
238
|
}, z.core.$strip>, z.ZodObject<{
|
|
210
239
|
title: z.ZodString;
|
|
240
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
211
241
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
212
242
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
213
243
|
isAvailable: z.ZodBoolean;
|
|
214
244
|
modelId: z.ZodString;
|
|
215
245
|
}, z.core.$strip>, z.ZodObject<{
|
|
216
246
|
title: z.ZodString;
|
|
247
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
217
248
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
218
249
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
219
250
|
value: z.ZodNumber;
|
|
220
251
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
252
|
title: z.ZodString;
|
|
253
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
254
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
223
255
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
224
256
|
isAvailable: z.ZodBoolean;
|
|
225
257
|
modelId: z.ZodString;
|
|
226
258
|
}, z.core.$strip>, z.ZodObject<{
|
|
227
259
|
title: z.ZodString;
|
|
260
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
228
261
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
229
262
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
230
263
|
value: z.ZodNumber;
|
|
231
264
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
265
|
title: z.ZodString;
|
|
266
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
233
267
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
234
268
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
235
269
|
isAvailable: z.ZodBoolean;
|
|
236
270
|
modelId: z.ZodString;
|
|
237
271
|
}, z.core.$strip>, z.ZodObject<{
|
|
238
272
|
title: z.ZodString;
|
|
273
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
239
274
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
240
275
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
241
276
|
isAvailable: z.ZodBoolean;
|
|
242
277
|
modelId: z.ZodString;
|
|
243
278
|
}, z.core.$strip>, z.ZodObject<{
|
|
244
279
|
title: z.ZodString;
|
|
280
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
245
281
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
246
282
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
247
283
|
isAvailable: z.ZodBoolean;
|
|
248
284
|
modelId: z.ZodString;
|
|
249
285
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
286
|
title: z.ZodString;
|
|
287
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
251
288
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
252
289
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
253
290
|
isAvailable: z.ZodBoolean;
|
|
254
291
|
modelId: z.ZodString;
|
|
255
292
|
}, z.core.$strip>, z.ZodObject<{
|
|
256
293
|
title: z.ZodString;
|
|
294
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
257
295
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
258
296
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
259
297
|
value: z.ZodNumber;
|
|
@@ -307,6 +345,7 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
307
345
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
308
346
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
309
347
|
title: z.ZodString;
|
|
348
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
310
349
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
311
350
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
312
351
|
order: z.ZodNumber;
|
|
@@ -315,76 +354,90 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
315
354
|
maxInputLength: z.ZodNumber;
|
|
316
355
|
}, z.core.$strip>, z.ZodObject<{
|
|
317
356
|
title: z.ZodString;
|
|
357
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
318
358
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
319
359
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
320
360
|
value: z.ZodNumber;
|
|
321
361
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
322
362
|
}, z.core.$strip>, z.ZodObject<{
|
|
323
363
|
title: z.ZodString;
|
|
364
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
324
365
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
325
366
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
326
367
|
tooltip: z.ZodString;
|
|
327
368
|
value: z.ZodNumber;
|
|
328
369
|
}, z.core.$strip>, z.ZodObject<{
|
|
329
370
|
title: z.ZodString;
|
|
371
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
330
372
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
331
373
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
332
374
|
isAvailable: z.ZodBoolean;
|
|
333
375
|
}, z.core.$strip>, z.ZodObject<{
|
|
334
376
|
title: z.ZodString;
|
|
377
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
335
378
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
336
379
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
337
380
|
isAvailable: z.ZodBoolean;
|
|
338
381
|
}, z.core.$strip>, z.ZodObject<{
|
|
339
382
|
title: z.ZodString;
|
|
383
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
340
384
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
341
385
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
342
386
|
isAvailable: z.ZodBoolean;
|
|
343
387
|
modelId: z.ZodString;
|
|
344
388
|
}, z.core.$strip>, z.ZodObject<{
|
|
345
389
|
title: z.ZodString;
|
|
390
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
346
391
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
347
392
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
348
393
|
value: z.ZodNumber;
|
|
349
394
|
}, z.core.$strip>, z.ZodObject<{
|
|
350
395
|
title: z.ZodString;
|
|
396
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
351
397
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
352
398
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
353
399
|
value: z.ZodNumber;
|
|
354
400
|
}, z.core.$strip>, z.ZodObject<{
|
|
355
401
|
title: z.ZodString;
|
|
402
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
356
403
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
357
404
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
358
405
|
isAvailable: z.ZodBoolean;
|
|
359
406
|
modelId: z.ZodString;
|
|
360
407
|
}, z.core.$strip>, z.ZodObject<{
|
|
361
408
|
title: z.ZodString;
|
|
409
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
362
410
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
363
411
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
364
412
|
value: z.ZodNumber;
|
|
365
413
|
}, z.core.$strip>, z.ZodObject<{
|
|
366
414
|
title: z.ZodString;
|
|
415
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
367
416
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
368
417
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
369
418
|
value: z.ZodNumber;
|
|
370
419
|
}, z.core.$strip>, z.ZodObject<{
|
|
371
420
|
title: z.ZodString;
|
|
421
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
372
422
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
373
423
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
374
424
|
isAvailable: z.ZodBoolean;
|
|
375
425
|
modelId: z.ZodString;
|
|
376
426
|
}, z.core.$strip>, z.ZodObject<{
|
|
377
427
|
title: z.ZodString;
|
|
428
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
378
429
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
379
430
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
380
431
|
isAvailable: z.ZodBoolean;
|
|
381
432
|
}, z.core.$strip>, z.ZodObject<{
|
|
382
433
|
title: z.ZodString;
|
|
434
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
383
435
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
384
436
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
385
437
|
value: z.ZodNumber;
|
|
386
438
|
}, z.core.$strip>, z.ZodObject<{
|
|
387
439
|
title: z.ZodString;
|
|
440
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
388
441
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
389
442
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
390
443
|
tokens: z.ZodNumber;
|
|
@@ -400,6 +453,7 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
400
453
|
}, z.core.$strip>;
|
|
401
454
|
}, z.core.$strip>, z.ZodObject<{
|
|
402
455
|
title: z.ZodString;
|
|
456
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
403
457
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
404
458
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
405
459
|
isAvailable: z.ZodBoolean;
|
|
@@ -416,50 +470,59 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
416
470
|
}, z.core.$strip>;
|
|
417
471
|
}, z.core.$strip>, z.ZodObject<{
|
|
418
472
|
title: z.ZodString;
|
|
473
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
419
474
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
420
475
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
421
476
|
value: z.ZodNumber;
|
|
422
477
|
}, z.core.$strip>, z.ZodObject<{
|
|
423
478
|
title: z.ZodString;
|
|
479
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
424
480
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
425
481
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
426
482
|
isAvailable: z.ZodBoolean;
|
|
427
483
|
modelId: z.ZodString;
|
|
428
484
|
}, z.core.$strip>, z.ZodObject<{
|
|
429
485
|
title: z.ZodString;
|
|
486
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
430
487
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
431
488
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
432
489
|
value: z.ZodNumber;
|
|
433
490
|
}, z.core.$strip>, z.ZodObject<{
|
|
434
491
|
title: z.ZodString;
|
|
492
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
435
493
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
436
494
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
437
495
|
isAvailable: z.ZodBoolean;
|
|
438
496
|
modelId: z.ZodString;
|
|
439
497
|
}, z.core.$strip>, z.ZodObject<{
|
|
440
498
|
title: z.ZodString;
|
|
499
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
441
500
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
442
501
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
443
502
|
value: z.ZodNumber;
|
|
444
503
|
}, z.core.$strip>, z.ZodObject<{
|
|
445
504
|
title: z.ZodString;
|
|
505
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
446
506
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
447
507
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
448
508
|
isAvailable: z.ZodBoolean;
|
|
449
509
|
modelId: z.ZodString;
|
|
450
510
|
}, z.core.$strip>, z.ZodObject<{
|
|
451
511
|
title: z.ZodString;
|
|
512
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
452
513
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
453
514
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
454
515
|
value: z.ZodNumber;
|
|
455
516
|
}, z.core.$strip>, z.ZodObject<{
|
|
456
517
|
title: z.ZodString;
|
|
518
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
457
519
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
458
520
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
459
521
|
isAvailable: z.ZodBoolean;
|
|
460
522
|
modelId: z.ZodString;
|
|
461
523
|
}, z.core.$strip>, z.ZodObject<{
|
|
462
524
|
title: z.ZodString;
|
|
525
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
463
526
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
464
527
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
465
528
|
order: z.ZodNumber;
|
|
@@ -467,74 +530,87 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
467
530
|
isAvailable: z.ZodBoolean;
|
|
468
531
|
}, z.core.$strip>, z.ZodObject<{
|
|
469
532
|
title: z.ZodString;
|
|
533
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
470
534
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
471
535
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
472
536
|
value: z.ZodNumber;
|
|
473
537
|
}, z.core.$strip>, z.ZodObject<{
|
|
474
538
|
title: z.ZodString;
|
|
539
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
475
540
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
476
541
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
477
542
|
isAvailable: z.ZodBoolean;
|
|
478
543
|
modelId: z.ZodString;
|
|
479
544
|
}, z.core.$strip>, z.ZodObject<{
|
|
480
545
|
title: z.ZodString;
|
|
546
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
481
547
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
482
548
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
483
549
|
isAvailable: z.ZodBoolean;
|
|
484
550
|
modelId: z.ZodString;
|
|
485
551
|
}, z.core.$strip>, z.ZodObject<{
|
|
486
552
|
title: z.ZodString;
|
|
553
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
487
554
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
488
555
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
489
556
|
value: z.ZodNumber;
|
|
490
557
|
}, z.core.$strip>, z.ZodObject<{
|
|
491
558
|
title: z.ZodString;
|
|
559
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
492
560
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
493
561
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
494
562
|
isAvailable: z.ZodBoolean;
|
|
495
563
|
modelId: z.ZodString;
|
|
496
564
|
}, z.core.$strip>, z.ZodObject<{
|
|
497
565
|
title: z.ZodString;
|
|
566
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
498
567
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
499
568
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
500
569
|
value: z.ZodNumber;
|
|
501
570
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
571
|
title: z.ZodString;
|
|
572
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
503
573
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
504
574
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
505
575
|
isAvailable: z.ZodBoolean;
|
|
506
576
|
modelId: z.ZodString;
|
|
507
577
|
}, z.core.$strip>, z.ZodObject<{
|
|
508
578
|
title: z.ZodString;
|
|
579
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
509
580
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
510
581
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
511
582
|
value: z.ZodNumber;
|
|
512
583
|
}, z.core.$strip>, z.ZodObject<{
|
|
513
584
|
title: z.ZodString;
|
|
585
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
514
586
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
515
587
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
516
588
|
isAvailable: z.ZodBoolean;
|
|
517
589
|
modelId: z.ZodString;
|
|
518
590
|
}, z.core.$strip>, z.ZodObject<{
|
|
519
591
|
title: z.ZodString;
|
|
592
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
520
593
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
521
594
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
522
595
|
isAvailable: z.ZodBoolean;
|
|
523
596
|
modelId: z.ZodString;
|
|
524
597
|
}, z.core.$strip>, z.ZodObject<{
|
|
525
598
|
title: z.ZodString;
|
|
599
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
526
600
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
527
601
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
528
602
|
isAvailable: z.ZodBoolean;
|
|
529
603
|
modelId: z.ZodString;
|
|
530
604
|
}, z.core.$strip>, z.ZodObject<{
|
|
531
605
|
title: z.ZodString;
|
|
606
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
532
607
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
533
608
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
534
609
|
isAvailable: z.ZodBoolean;
|
|
535
610
|
modelId: z.ZodString;
|
|
536
611
|
}, z.core.$strip>, z.ZodObject<{
|
|
537
612
|
title: z.ZodString;
|
|
613
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
538
614
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
539
615
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
540
616
|
value: z.ZodNumber;
|
|
@@ -590,6 +666,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
590
666
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
591
667
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
592
668
|
title: z.ZodString;
|
|
669
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
593
670
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
594
671
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
595
672
|
order: z.ZodNumber;
|
|
@@ -598,76 +675,90 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
598
675
|
maxInputLength: z.ZodNumber;
|
|
599
676
|
}, z.core.$strip>, z.ZodObject<{
|
|
600
677
|
title: z.ZodString;
|
|
678
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
601
679
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
602
680
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
603
681
|
value: z.ZodNumber;
|
|
604
682
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
605
683
|
}, z.core.$strip>, z.ZodObject<{
|
|
606
684
|
title: z.ZodString;
|
|
685
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
607
686
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
608
687
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
609
688
|
tooltip: z.ZodString;
|
|
610
689
|
value: z.ZodNumber;
|
|
611
690
|
}, z.core.$strip>, z.ZodObject<{
|
|
612
691
|
title: z.ZodString;
|
|
692
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
613
693
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
614
694
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
615
695
|
isAvailable: z.ZodBoolean;
|
|
616
696
|
}, z.core.$strip>, z.ZodObject<{
|
|
617
697
|
title: z.ZodString;
|
|
698
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
618
699
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
619
700
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
620
701
|
isAvailable: z.ZodBoolean;
|
|
621
702
|
}, z.core.$strip>, z.ZodObject<{
|
|
622
703
|
title: z.ZodString;
|
|
704
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
623
705
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
624
706
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
625
707
|
isAvailable: z.ZodBoolean;
|
|
626
708
|
modelId: z.ZodString;
|
|
627
709
|
}, z.core.$strip>, z.ZodObject<{
|
|
628
710
|
title: z.ZodString;
|
|
711
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
629
712
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
630
713
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
631
714
|
value: z.ZodNumber;
|
|
632
715
|
}, z.core.$strip>, z.ZodObject<{
|
|
633
716
|
title: z.ZodString;
|
|
717
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
634
718
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
635
719
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
636
720
|
value: z.ZodNumber;
|
|
637
721
|
}, z.core.$strip>, z.ZodObject<{
|
|
638
722
|
title: z.ZodString;
|
|
723
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
639
724
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
640
725
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
641
726
|
isAvailable: z.ZodBoolean;
|
|
642
727
|
modelId: z.ZodString;
|
|
643
728
|
}, z.core.$strip>, z.ZodObject<{
|
|
644
729
|
title: z.ZodString;
|
|
730
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
645
731
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
646
732
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
647
733
|
value: z.ZodNumber;
|
|
648
734
|
}, z.core.$strip>, z.ZodObject<{
|
|
649
735
|
title: z.ZodString;
|
|
736
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
650
737
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
651
738
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
652
739
|
value: z.ZodNumber;
|
|
653
740
|
}, z.core.$strip>, z.ZodObject<{
|
|
654
741
|
title: z.ZodString;
|
|
742
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
655
743
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
656
744
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
657
745
|
isAvailable: z.ZodBoolean;
|
|
658
746
|
modelId: z.ZodString;
|
|
659
747
|
}, z.core.$strip>, z.ZodObject<{
|
|
660
748
|
title: z.ZodString;
|
|
749
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
661
750
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
662
751
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
663
752
|
isAvailable: z.ZodBoolean;
|
|
664
753
|
}, z.core.$strip>, z.ZodObject<{
|
|
665
754
|
title: z.ZodString;
|
|
755
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
666
756
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
667
757
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
668
758
|
value: z.ZodNumber;
|
|
669
759
|
}, z.core.$strip>, z.ZodObject<{
|
|
670
760
|
title: z.ZodString;
|
|
761
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
671
762
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
672
763
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
673
764
|
tokens: z.ZodNumber;
|
|
@@ -683,6 +774,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
683
774
|
}, z.core.$strip>;
|
|
684
775
|
}, z.core.$strip>, z.ZodObject<{
|
|
685
776
|
title: z.ZodString;
|
|
777
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
686
778
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
687
779
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
688
780
|
isAvailable: z.ZodBoolean;
|
|
@@ -699,50 +791,59 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
699
791
|
}, z.core.$strip>;
|
|
700
792
|
}, z.core.$strip>, z.ZodObject<{
|
|
701
793
|
title: z.ZodString;
|
|
794
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
702
795
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
703
796
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
704
797
|
value: z.ZodNumber;
|
|
705
798
|
}, z.core.$strip>, z.ZodObject<{
|
|
706
799
|
title: z.ZodString;
|
|
800
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
707
801
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
708
802
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
709
803
|
isAvailable: z.ZodBoolean;
|
|
710
804
|
modelId: z.ZodString;
|
|
711
805
|
}, z.core.$strip>, z.ZodObject<{
|
|
712
806
|
title: z.ZodString;
|
|
807
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
713
808
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
714
809
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
715
810
|
value: z.ZodNumber;
|
|
716
811
|
}, z.core.$strip>, z.ZodObject<{
|
|
717
812
|
title: z.ZodString;
|
|
813
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
718
814
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
719
815
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
720
816
|
isAvailable: z.ZodBoolean;
|
|
721
817
|
modelId: z.ZodString;
|
|
722
818
|
}, z.core.$strip>, z.ZodObject<{
|
|
723
819
|
title: z.ZodString;
|
|
820
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
724
821
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
725
822
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
726
823
|
value: z.ZodNumber;
|
|
727
824
|
}, z.core.$strip>, z.ZodObject<{
|
|
728
825
|
title: z.ZodString;
|
|
826
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
729
827
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
730
828
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
731
829
|
isAvailable: z.ZodBoolean;
|
|
732
830
|
modelId: z.ZodString;
|
|
733
831
|
}, z.core.$strip>, z.ZodObject<{
|
|
734
832
|
title: z.ZodString;
|
|
833
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
735
834
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
736
835
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
737
836
|
value: z.ZodNumber;
|
|
738
837
|
}, z.core.$strip>, z.ZodObject<{
|
|
739
838
|
title: z.ZodString;
|
|
839
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
740
840
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
741
841
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
742
842
|
isAvailable: z.ZodBoolean;
|
|
743
843
|
modelId: z.ZodString;
|
|
744
844
|
}, z.core.$strip>, z.ZodObject<{
|
|
745
845
|
title: z.ZodString;
|
|
846
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
746
847
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
747
848
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
748
849
|
order: z.ZodNumber;
|
|
@@ -750,74 +851,87 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
750
851
|
isAvailable: z.ZodBoolean;
|
|
751
852
|
}, z.core.$strip>, z.ZodObject<{
|
|
752
853
|
title: z.ZodString;
|
|
854
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
753
855
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
754
856
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
755
857
|
value: z.ZodNumber;
|
|
756
858
|
}, z.core.$strip>, z.ZodObject<{
|
|
757
859
|
title: z.ZodString;
|
|
860
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
758
861
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
759
862
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
760
863
|
isAvailable: z.ZodBoolean;
|
|
761
864
|
modelId: z.ZodString;
|
|
762
865
|
}, z.core.$strip>, z.ZodObject<{
|
|
763
866
|
title: z.ZodString;
|
|
867
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
764
868
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
765
869
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
766
870
|
isAvailable: z.ZodBoolean;
|
|
767
871
|
modelId: z.ZodString;
|
|
768
872
|
}, z.core.$strip>, z.ZodObject<{
|
|
769
873
|
title: z.ZodString;
|
|
874
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
770
875
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
771
876
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
772
877
|
value: z.ZodNumber;
|
|
773
878
|
}, z.core.$strip>, z.ZodObject<{
|
|
774
879
|
title: z.ZodString;
|
|
880
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
775
881
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
776
882
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
777
883
|
isAvailable: z.ZodBoolean;
|
|
778
884
|
modelId: z.ZodString;
|
|
779
885
|
}, z.core.$strip>, z.ZodObject<{
|
|
780
886
|
title: z.ZodString;
|
|
887
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
781
888
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
782
889
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
783
890
|
value: z.ZodNumber;
|
|
784
891
|
}, z.core.$strip>, z.ZodObject<{
|
|
785
892
|
title: z.ZodString;
|
|
893
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
786
894
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
787
895
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
788
896
|
isAvailable: z.ZodBoolean;
|
|
789
897
|
modelId: z.ZodString;
|
|
790
898
|
}, z.core.$strip>, z.ZodObject<{
|
|
791
899
|
title: z.ZodString;
|
|
900
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
792
901
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
793
902
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
794
903
|
value: z.ZodNumber;
|
|
795
904
|
}, z.core.$strip>, z.ZodObject<{
|
|
796
905
|
title: z.ZodString;
|
|
906
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
797
907
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
798
908
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
799
909
|
isAvailable: z.ZodBoolean;
|
|
800
910
|
modelId: z.ZodString;
|
|
801
911
|
}, z.core.$strip>, z.ZodObject<{
|
|
802
912
|
title: z.ZodString;
|
|
913
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
803
914
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
804
915
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
805
916
|
isAvailable: z.ZodBoolean;
|
|
806
917
|
modelId: z.ZodString;
|
|
807
918
|
}, z.core.$strip>, z.ZodObject<{
|
|
808
919
|
title: z.ZodString;
|
|
920
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
809
921
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
810
922
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
811
923
|
isAvailable: z.ZodBoolean;
|
|
812
924
|
modelId: z.ZodString;
|
|
813
925
|
}, z.core.$strip>, z.ZodObject<{
|
|
814
926
|
title: z.ZodString;
|
|
927
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
815
928
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
816
929
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
817
930
|
isAvailable: z.ZodBoolean;
|
|
818
931
|
modelId: z.ZodString;
|
|
819
932
|
}, z.core.$strip>, z.ZodObject<{
|
|
820
933
|
title: z.ZodString;
|
|
934
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
821
935
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
822
936
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
823
937
|
value: z.ZodNumber;
|
|
@@ -871,6 +985,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
871
985
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
872
986
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
873
987
|
title: z.ZodString;
|
|
988
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
874
989
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
875
990
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
876
991
|
order: z.ZodNumber;
|
|
@@ -879,76 +994,90 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
879
994
|
maxInputLength: z.ZodNumber;
|
|
880
995
|
}, z.core.$strip>, z.ZodObject<{
|
|
881
996
|
title: z.ZodString;
|
|
997
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
882
998
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
883
999
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
884
1000
|
value: z.ZodNumber;
|
|
885
1001
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
886
1002
|
}, z.core.$strip>, z.ZodObject<{
|
|
887
1003
|
title: z.ZodString;
|
|
1004
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
888
1005
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
889
1006
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
890
1007
|
tooltip: z.ZodString;
|
|
891
1008
|
value: z.ZodNumber;
|
|
892
1009
|
}, z.core.$strip>, z.ZodObject<{
|
|
893
1010
|
title: z.ZodString;
|
|
1011
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
894
1012
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
895
1013
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
896
1014
|
isAvailable: z.ZodBoolean;
|
|
897
1015
|
}, z.core.$strip>, z.ZodObject<{
|
|
898
1016
|
title: z.ZodString;
|
|
1017
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
899
1018
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
900
1019
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
901
1020
|
isAvailable: z.ZodBoolean;
|
|
902
1021
|
}, z.core.$strip>, z.ZodObject<{
|
|
903
1022
|
title: z.ZodString;
|
|
1023
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
904
1024
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
905
1025
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
906
1026
|
isAvailable: z.ZodBoolean;
|
|
907
1027
|
modelId: z.ZodString;
|
|
908
1028
|
}, z.core.$strip>, z.ZodObject<{
|
|
909
1029
|
title: z.ZodString;
|
|
1030
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
910
1031
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
911
1032
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
912
1033
|
value: z.ZodNumber;
|
|
913
1034
|
}, z.core.$strip>, z.ZodObject<{
|
|
914
1035
|
title: z.ZodString;
|
|
1036
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
915
1037
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
916
1038
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
917
1039
|
value: z.ZodNumber;
|
|
918
1040
|
}, z.core.$strip>, z.ZodObject<{
|
|
919
1041
|
title: z.ZodString;
|
|
1042
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
920
1043
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
921
1044
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
922
1045
|
isAvailable: z.ZodBoolean;
|
|
923
1046
|
modelId: z.ZodString;
|
|
924
1047
|
}, z.core.$strip>, z.ZodObject<{
|
|
925
1048
|
title: z.ZodString;
|
|
1049
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
926
1050
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
927
1051
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
928
1052
|
value: z.ZodNumber;
|
|
929
1053
|
}, z.core.$strip>, z.ZodObject<{
|
|
930
1054
|
title: z.ZodString;
|
|
1055
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
931
1056
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
932
1057
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
933
1058
|
value: z.ZodNumber;
|
|
934
1059
|
}, z.core.$strip>, z.ZodObject<{
|
|
935
1060
|
title: z.ZodString;
|
|
1061
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
936
1062
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
937
1063
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
938
1064
|
isAvailable: z.ZodBoolean;
|
|
939
1065
|
modelId: z.ZodString;
|
|
940
1066
|
}, z.core.$strip>, z.ZodObject<{
|
|
941
1067
|
title: z.ZodString;
|
|
1068
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
942
1069
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
943
1070
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
944
1071
|
isAvailable: z.ZodBoolean;
|
|
945
1072
|
}, z.core.$strip>, z.ZodObject<{
|
|
946
1073
|
title: z.ZodString;
|
|
1074
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
947
1075
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
948
1076
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
949
1077
|
value: z.ZodNumber;
|
|
950
1078
|
}, z.core.$strip>, z.ZodObject<{
|
|
951
1079
|
title: z.ZodString;
|
|
1080
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
952
1081
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
953
1082
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
954
1083
|
tokens: z.ZodNumber;
|
|
@@ -964,6 +1093,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
964
1093
|
}, z.core.$strip>;
|
|
965
1094
|
}, z.core.$strip>, z.ZodObject<{
|
|
966
1095
|
title: z.ZodString;
|
|
1096
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
967
1097
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
968
1098
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
969
1099
|
isAvailable: z.ZodBoolean;
|
|
@@ -980,50 +1110,59 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
980
1110
|
}, z.core.$strip>;
|
|
981
1111
|
}, z.core.$strip>, z.ZodObject<{
|
|
982
1112
|
title: z.ZodString;
|
|
1113
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
983
1114
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
984
1115
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
985
1116
|
value: z.ZodNumber;
|
|
986
1117
|
}, z.core.$strip>, z.ZodObject<{
|
|
987
1118
|
title: z.ZodString;
|
|
1119
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
988
1120
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
989
1121
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
990
1122
|
isAvailable: z.ZodBoolean;
|
|
991
1123
|
modelId: z.ZodString;
|
|
992
1124
|
}, z.core.$strip>, z.ZodObject<{
|
|
993
1125
|
title: z.ZodString;
|
|
1126
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
994
1127
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
995
1128
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
996
1129
|
value: z.ZodNumber;
|
|
997
1130
|
}, z.core.$strip>, z.ZodObject<{
|
|
998
1131
|
title: z.ZodString;
|
|
1132
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
999
1133
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1000
1134
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
1001
1135
|
isAvailable: z.ZodBoolean;
|
|
1002
1136
|
modelId: z.ZodString;
|
|
1003
1137
|
}, z.core.$strip>, z.ZodObject<{
|
|
1004
1138
|
title: z.ZodString;
|
|
1139
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1005
1140
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1006
1141
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
1007
1142
|
value: z.ZodNumber;
|
|
1008
1143
|
}, z.core.$strip>, z.ZodObject<{
|
|
1009
1144
|
title: z.ZodString;
|
|
1145
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1010
1146
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1011
1147
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
1012
1148
|
isAvailable: z.ZodBoolean;
|
|
1013
1149
|
modelId: z.ZodString;
|
|
1014
1150
|
}, z.core.$strip>, z.ZodObject<{
|
|
1015
1151
|
title: z.ZodString;
|
|
1152
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1016
1153
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1017
1154
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
1018
1155
|
value: z.ZodNumber;
|
|
1019
1156
|
}, z.core.$strip>, z.ZodObject<{
|
|
1020
1157
|
title: z.ZodString;
|
|
1158
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1021
1159
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1022
1160
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
1023
1161
|
isAvailable: z.ZodBoolean;
|
|
1024
1162
|
modelId: z.ZodString;
|
|
1025
1163
|
}, z.core.$strip>, z.ZodObject<{
|
|
1026
1164
|
title: z.ZodString;
|
|
1165
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1027
1166
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1028
1167
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1029
1168
|
order: z.ZodNumber;
|
|
@@ -1031,74 +1170,87 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
1031
1170
|
isAvailable: z.ZodBoolean;
|
|
1032
1171
|
}, z.core.$strip>, z.ZodObject<{
|
|
1033
1172
|
title: z.ZodString;
|
|
1173
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1034
1174
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1035
1175
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1036
1176
|
value: z.ZodNumber;
|
|
1037
1177
|
}, z.core.$strip>, z.ZodObject<{
|
|
1038
1178
|
title: z.ZodString;
|
|
1179
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1039
1180
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1040
1181
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1041
1182
|
isAvailable: z.ZodBoolean;
|
|
1042
1183
|
modelId: z.ZodString;
|
|
1043
1184
|
}, z.core.$strip>, z.ZodObject<{
|
|
1044
1185
|
title: z.ZodString;
|
|
1186
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1045
1187
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1046
1188
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1047
1189
|
isAvailable: z.ZodBoolean;
|
|
1048
1190
|
modelId: z.ZodString;
|
|
1049
1191
|
}, z.core.$strip>, z.ZodObject<{
|
|
1050
1192
|
title: z.ZodString;
|
|
1193
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1051
1194
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1052
1195
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1053
1196
|
value: z.ZodNumber;
|
|
1054
1197
|
}, z.core.$strip>, z.ZodObject<{
|
|
1055
1198
|
title: z.ZodString;
|
|
1199
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1056
1200
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1057
1201
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1058
1202
|
isAvailable: z.ZodBoolean;
|
|
1059
1203
|
modelId: z.ZodString;
|
|
1060
1204
|
}, z.core.$strip>, z.ZodObject<{
|
|
1061
1205
|
title: z.ZodString;
|
|
1206
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1062
1207
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1063
1208
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1064
1209
|
value: z.ZodNumber;
|
|
1065
1210
|
}, z.core.$strip>, z.ZodObject<{
|
|
1066
1211
|
title: z.ZodString;
|
|
1212
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1067
1213
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1068
1214
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1069
1215
|
isAvailable: z.ZodBoolean;
|
|
1070
1216
|
modelId: z.ZodString;
|
|
1071
1217
|
}, z.core.$strip>, z.ZodObject<{
|
|
1072
1218
|
title: z.ZodString;
|
|
1219
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1073
1220
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1074
1221
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1075
1222
|
value: z.ZodNumber;
|
|
1076
1223
|
}, z.core.$strip>, z.ZodObject<{
|
|
1077
1224
|
title: z.ZodString;
|
|
1225
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1078
1226
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1079
1227
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1080
1228
|
isAvailable: z.ZodBoolean;
|
|
1081
1229
|
modelId: z.ZodString;
|
|
1082
1230
|
}, z.core.$strip>, z.ZodObject<{
|
|
1083
1231
|
title: z.ZodString;
|
|
1232
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1084
1233
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1085
1234
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1086
1235
|
isAvailable: z.ZodBoolean;
|
|
1087
1236
|
modelId: z.ZodString;
|
|
1088
1237
|
}, z.core.$strip>, z.ZodObject<{
|
|
1089
1238
|
title: z.ZodString;
|
|
1239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1090
1240
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1091
1241
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1092
1242
|
isAvailable: z.ZodBoolean;
|
|
1093
1243
|
modelId: z.ZodString;
|
|
1094
1244
|
}, z.core.$strip>, z.ZodObject<{
|
|
1095
1245
|
title: z.ZodString;
|
|
1246
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1096
1247
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1097
1248
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1098
1249
|
isAvailable: z.ZodBoolean;
|
|
1099
1250
|
modelId: z.ZodString;
|
|
1100
1251
|
}, z.core.$strip>, z.ZodObject<{
|
|
1101
1252
|
title: z.ZodString;
|
|
1253
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1102
1254
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1103
1255
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1104
1256
|
value: z.ZodNumber;
|
|
@@ -1175,6 +1327,7 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1175
1327
|
updatedAt: z.ZodDate;
|
|
1176
1328
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1177
1329
|
title: z.ZodString;
|
|
1330
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1178
1331
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
1179
1332
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
1180
1333
|
order: z.ZodNumber;
|
|
@@ -1183,76 +1336,90 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1183
1336
|
maxInputLength: z.ZodNumber;
|
|
1184
1337
|
}, z.core.$strip>, z.ZodObject<{
|
|
1185
1338
|
title: z.ZodString;
|
|
1339
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1186
1340
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
1187
1341
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1188
1342
|
value: z.ZodNumber;
|
|
1189
1343
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
1190
1344
|
}, z.core.$strip>, z.ZodObject<{
|
|
1191
1345
|
title: z.ZodString;
|
|
1346
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1192
1347
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
1193
1348
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1194
1349
|
tooltip: z.ZodString;
|
|
1195
1350
|
value: z.ZodNumber;
|
|
1196
1351
|
}, z.core.$strip>, z.ZodObject<{
|
|
1197
1352
|
title: z.ZodString;
|
|
1353
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1198
1354
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1199
1355
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
1200
1356
|
isAvailable: z.ZodBoolean;
|
|
1201
1357
|
}, z.core.$strip>, z.ZodObject<{
|
|
1202
1358
|
title: z.ZodString;
|
|
1359
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1203
1360
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1204
1361
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
1205
1362
|
isAvailable: z.ZodBoolean;
|
|
1206
1363
|
}, z.core.$strip>, z.ZodObject<{
|
|
1207
1364
|
title: z.ZodString;
|
|
1365
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1208
1366
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1209
1367
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
1210
1368
|
isAvailable: z.ZodBoolean;
|
|
1211
1369
|
modelId: z.ZodString;
|
|
1212
1370
|
}, z.core.$strip>, z.ZodObject<{
|
|
1213
1371
|
title: z.ZodString;
|
|
1372
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1214
1373
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1215
1374
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
1216
1375
|
value: z.ZodNumber;
|
|
1217
1376
|
}, z.core.$strip>, z.ZodObject<{
|
|
1218
1377
|
title: z.ZodString;
|
|
1378
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1219
1379
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1220
1380
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
1221
1381
|
value: z.ZodNumber;
|
|
1222
1382
|
}, z.core.$strip>, z.ZodObject<{
|
|
1223
1383
|
title: z.ZodString;
|
|
1384
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1224
1385
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1225
1386
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
1226
1387
|
isAvailable: z.ZodBoolean;
|
|
1227
1388
|
modelId: z.ZodString;
|
|
1228
1389
|
}, z.core.$strip>, z.ZodObject<{
|
|
1229
1390
|
title: z.ZodString;
|
|
1391
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1230
1392
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1231
1393
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
1232
1394
|
value: z.ZodNumber;
|
|
1233
1395
|
}, z.core.$strip>, z.ZodObject<{
|
|
1234
1396
|
title: z.ZodString;
|
|
1397
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1235
1398
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1236
1399
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
1237
1400
|
value: z.ZodNumber;
|
|
1238
1401
|
}, z.core.$strip>, z.ZodObject<{
|
|
1239
1402
|
title: z.ZodString;
|
|
1403
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1240
1404
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1241
1405
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
1242
1406
|
isAvailable: z.ZodBoolean;
|
|
1243
1407
|
modelId: z.ZodString;
|
|
1244
1408
|
}, z.core.$strip>, z.ZodObject<{
|
|
1245
1409
|
title: z.ZodString;
|
|
1410
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1246
1411
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
1247
1412
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1248
1413
|
isAvailable: z.ZodBoolean;
|
|
1249
1414
|
}, z.core.$strip>, z.ZodObject<{
|
|
1250
1415
|
title: z.ZodString;
|
|
1416
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1251
1417
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
1252
1418
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
1253
1419
|
value: z.ZodNumber;
|
|
1254
1420
|
}, z.core.$strip>, z.ZodObject<{
|
|
1255
1421
|
title: z.ZodString;
|
|
1422
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1256
1423
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1257
1424
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
1258
1425
|
tokens: z.ZodNumber;
|
|
@@ -1268,6 +1435,7 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1268
1435
|
}, z.core.$strip>;
|
|
1269
1436
|
}, z.core.$strip>, z.ZodObject<{
|
|
1270
1437
|
title: z.ZodString;
|
|
1438
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1271
1439
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1272
1440
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
1273
1441
|
isAvailable: z.ZodBoolean;
|
|
@@ -1284,50 +1452,59 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1284
1452
|
}, z.core.$strip>;
|
|
1285
1453
|
}, z.core.$strip>, z.ZodObject<{
|
|
1286
1454
|
title: z.ZodString;
|
|
1455
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1287
1456
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1288
1457
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
1289
1458
|
value: z.ZodNumber;
|
|
1290
1459
|
}, z.core.$strip>, z.ZodObject<{
|
|
1291
1460
|
title: z.ZodString;
|
|
1461
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1292
1462
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1293
1463
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
1294
1464
|
isAvailable: z.ZodBoolean;
|
|
1295
1465
|
modelId: z.ZodString;
|
|
1296
1466
|
}, z.core.$strip>, z.ZodObject<{
|
|
1297
1467
|
title: z.ZodString;
|
|
1468
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1298
1469
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1299
1470
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
1300
1471
|
value: z.ZodNumber;
|
|
1301
1472
|
}, z.core.$strip>, z.ZodObject<{
|
|
1302
1473
|
title: z.ZodString;
|
|
1474
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1303
1475
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1304
1476
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
1305
1477
|
isAvailable: z.ZodBoolean;
|
|
1306
1478
|
modelId: z.ZodString;
|
|
1307
1479
|
}, z.core.$strip>, z.ZodObject<{
|
|
1308
1480
|
title: z.ZodString;
|
|
1481
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1309
1482
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1310
1483
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
1311
1484
|
value: z.ZodNumber;
|
|
1312
1485
|
}, z.core.$strip>, z.ZodObject<{
|
|
1313
1486
|
title: z.ZodString;
|
|
1487
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1314
1488
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1315
1489
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
1316
1490
|
isAvailable: z.ZodBoolean;
|
|
1317
1491
|
modelId: z.ZodString;
|
|
1318
1492
|
}, z.core.$strip>, z.ZodObject<{
|
|
1319
1493
|
title: z.ZodString;
|
|
1494
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1320
1495
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1321
1496
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
1322
1497
|
value: z.ZodNumber;
|
|
1323
1498
|
}, z.core.$strip>, z.ZodObject<{
|
|
1324
1499
|
title: z.ZodString;
|
|
1500
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1325
1501
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1326
1502
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
1327
1503
|
isAvailable: z.ZodBoolean;
|
|
1328
1504
|
modelId: z.ZodString;
|
|
1329
1505
|
}, z.core.$strip>, z.ZodObject<{
|
|
1330
1506
|
title: z.ZodString;
|
|
1507
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1331
1508
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1332
1509
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1333
1510
|
order: z.ZodNumber;
|
|
@@ -1335,74 +1512,87 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1335
1512
|
isAvailable: z.ZodBoolean;
|
|
1336
1513
|
}, z.core.$strip>, z.ZodObject<{
|
|
1337
1514
|
title: z.ZodString;
|
|
1515
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1338
1516
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1339
1517
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1340
1518
|
value: z.ZodNumber;
|
|
1341
1519
|
}, z.core.$strip>, z.ZodObject<{
|
|
1342
1520
|
title: z.ZodString;
|
|
1521
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1343
1522
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1344
1523
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1345
1524
|
isAvailable: z.ZodBoolean;
|
|
1346
1525
|
modelId: z.ZodString;
|
|
1347
1526
|
}, z.core.$strip>, z.ZodObject<{
|
|
1348
1527
|
title: z.ZodString;
|
|
1528
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1349
1529
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1350
1530
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1351
1531
|
isAvailable: z.ZodBoolean;
|
|
1352
1532
|
modelId: z.ZodString;
|
|
1353
1533
|
}, z.core.$strip>, z.ZodObject<{
|
|
1354
1534
|
title: z.ZodString;
|
|
1535
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1355
1536
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1356
1537
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1357
1538
|
value: z.ZodNumber;
|
|
1358
1539
|
}, z.core.$strip>, z.ZodObject<{
|
|
1359
1540
|
title: z.ZodString;
|
|
1541
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1360
1542
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1361
1543
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1362
1544
|
isAvailable: z.ZodBoolean;
|
|
1363
1545
|
modelId: z.ZodString;
|
|
1364
1546
|
}, z.core.$strip>, z.ZodObject<{
|
|
1365
1547
|
title: z.ZodString;
|
|
1548
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1366
1549
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1367
1550
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1368
1551
|
value: z.ZodNumber;
|
|
1369
1552
|
}, z.core.$strip>, z.ZodObject<{
|
|
1370
1553
|
title: z.ZodString;
|
|
1554
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1371
1555
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1372
1556
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1373
1557
|
isAvailable: z.ZodBoolean;
|
|
1374
1558
|
modelId: z.ZodString;
|
|
1375
1559
|
}, z.core.$strip>, z.ZodObject<{
|
|
1376
1560
|
title: z.ZodString;
|
|
1561
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1377
1562
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1378
1563
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1379
1564
|
value: z.ZodNumber;
|
|
1380
1565
|
}, z.core.$strip>, z.ZodObject<{
|
|
1381
1566
|
title: z.ZodString;
|
|
1567
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1382
1568
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1383
1569
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1384
1570
|
isAvailable: z.ZodBoolean;
|
|
1385
1571
|
modelId: z.ZodString;
|
|
1386
1572
|
}, z.core.$strip>, z.ZodObject<{
|
|
1387
1573
|
title: z.ZodString;
|
|
1574
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1388
1575
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1389
1576
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1390
1577
|
isAvailable: z.ZodBoolean;
|
|
1391
1578
|
modelId: z.ZodString;
|
|
1392
1579
|
}, z.core.$strip>, z.ZodObject<{
|
|
1393
1580
|
title: z.ZodString;
|
|
1581
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1394
1582
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1395
1583
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1396
1584
|
isAvailable: z.ZodBoolean;
|
|
1397
1585
|
modelId: z.ZodString;
|
|
1398
1586
|
}, z.core.$strip>, z.ZodObject<{
|
|
1399
1587
|
title: z.ZodString;
|
|
1588
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1400
1589
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1401
1590
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1402
1591
|
isAvailable: z.ZodBoolean;
|
|
1403
1592
|
modelId: z.ZodString;
|
|
1404
1593
|
}, z.core.$strip>, z.ZodObject<{
|
|
1405
1594
|
title: z.ZodString;
|
|
1595
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1406
1596
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1407
1597
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1408
1598
|
value: z.ZodNumber;
|