@purpleschool/gptbot 0.15.56 → 0.15.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commands/product/create-product.command.d.ts +100 -0
- package/build/commands/product/find-product.command.d.ts +100 -0
- package/build/commands/product/get-my-products.command.d.ts +50 -0
- package/build/commands/product/update-product.command.d.ts +100 -0
- package/build/commands/subscription/create-subscription.command.d.ts +100 -0
- package/build/commands/subscription/find-subscription.command.d.ts +150 -0
- package/build/commands/subscription/get-available-upgrades.command.d.ts +100 -0
- package/build/commands/subscription/get-free-subscription.command.d.ts +50 -0
- package/build/commands/subscription/get-subscriptions-summary.command.d.ts +250 -0
- package/build/commands/subscription/update-subscription.command.d.ts +100 -0
- package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +50 -0
- package/build/commands/team-account/find-current-team-account-products.command.d.ts +50 -0
- package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +50 -0
- package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +50 -0
- package/build/commands/team-account/find-team-account-products.command.d.ts +50 -0
- package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +100 -0
- package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +50 -0
- package/build/commands/team-to-product/get-team-to-products.command.d.ts +50 -0
- package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +50 -0
- package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
- package/build/commands/user/get-user-products.command.d.ts +50 -0
- package/build/commands/user/get-user-subscriptions.command.d.ts +50 -0
- package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +50 -0
- package/build/constants/subscription/enums/subscription-feature-type.enum.d.ts +2 -0
- package/build/constants/subscription/enums/subscription-feature-type.enum.js +2 -0
- package/build/models/product.schema.d.ts +50 -0
- package/build/models/subscription-feature.schema.d.ts +103 -0
- package/build/models/subscription-feature.schema.js +14 -1
- package/build/models/subscription-upgrade-schema.d.ts +50 -0
- package/build/models/subscription.schema.d.ts +250 -0
- package/build/models/team-account/team-to-product.schema.d.ts +50 -0
- package/build/models/team-account/team-to-subscription.schema.d.ts +50 -0
- package/build/models/tool-group.schema.d.ts +1 -0
- package/build/models/tool-group.schema.js +1 -0
- package/build/models/user-to-product.schema.d.ts +50 -0
- package/build/models/user-to-subscription.schema.d.ts +150 -0
- package/package.json +1 -1
|
@@ -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,99 @@ 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>;
|
|
281
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
282
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
283
|
+
value: z.ZodNumber;
|
|
284
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
285
|
+
title: z.ZodString;
|
|
286
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
245
287
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
246
288
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
247
289
|
isAvailable: z.ZodBoolean;
|
|
248
290
|
modelId: z.ZodString;
|
|
249
291
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
292
|
title: z.ZodString;
|
|
293
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
294
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
295
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
296
|
+
value: z.ZodNumber;
|
|
297
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
298
|
+
title: z.ZodString;
|
|
299
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
251
300
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
252
301
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
253
302
|
isAvailable: z.ZodBoolean;
|
|
254
303
|
modelId: z.ZodString;
|
|
255
304
|
}, z.core.$strip>, z.ZodObject<{
|
|
256
305
|
title: z.ZodString;
|
|
306
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
257
307
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
258
308
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
259
309
|
value: z.ZodNumber;
|
|
@@ -307,6 +357,7 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
307
357
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
308
358
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
309
359
|
title: z.ZodString;
|
|
360
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
310
361
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
311
362
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
312
363
|
order: z.ZodNumber;
|
|
@@ -315,76 +366,90 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
315
366
|
maxInputLength: z.ZodNumber;
|
|
316
367
|
}, z.core.$strip>, z.ZodObject<{
|
|
317
368
|
title: z.ZodString;
|
|
369
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
318
370
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
319
371
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
320
372
|
value: z.ZodNumber;
|
|
321
373
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
322
374
|
}, z.core.$strip>, z.ZodObject<{
|
|
323
375
|
title: z.ZodString;
|
|
376
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
324
377
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
325
378
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
326
379
|
tooltip: z.ZodString;
|
|
327
380
|
value: z.ZodNumber;
|
|
328
381
|
}, z.core.$strip>, z.ZodObject<{
|
|
329
382
|
title: z.ZodString;
|
|
383
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
330
384
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
331
385
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
332
386
|
isAvailable: z.ZodBoolean;
|
|
333
387
|
}, z.core.$strip>, z.ZodObject<{
|
|
334
388
|
title: z.ZodString;
|
|
389
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
335
390
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
336
391
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
337
392
|
isAvailable: z.ZodBoolean;
|
|
338
393
|
}, z.core.$strip>, z.ZodObject<{
|
|
339
394
|
title: z.ZodString;
|
|
395
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
340
396
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
341
397
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
342
398
|
isAvailable: z.ZodBoolean;
|
|
343
399
|
modelId: z.ZodString;
|
|
344
400
|
}, z.core.$strip>, z.ZodObject<{
|
|
345
401
|
title: z.ZodString;
|
|
402
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
346
403
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
347
404
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
348
405
|
value: z.ZodNumber;
|
|
349
406
|
}, z.core.$strip>, z.ZodObject<{
|
|
350
407
|
title: z.ZodString;
|
|
408
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
351
409
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
352
410
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
353
411
|
value: z.ZodNumber;
|
|
354
412
|
}, z.core.$strip>, z.ZodObject<{
|
|
355
413
|
title: z.ZodString;
|
|
414
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
356
415
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
357
416
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
358
417
|
isAvailable: z.ZodBoolean;
|
|
359
418
|
modelId: z.ZodString;
|
|
360
419
|
}, z.core.$strip>, z.ZodObject<{
|
|
361
420
|
title: z.ZodString;
|
|
421
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
362
422
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
363
423
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
364
424
|
value: z.ZodNumber;
|
|
365
425
|
}, z.core.$strip>, z.ZodObject<{
|
|
366
426
|
title: z.ZodString;
|
|
427
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
367
428
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
368
429
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
369
430
|
value: z.ZodNumber;
|
|
370
431
|
}, z.core.$strip>, z.ZodObject<{
|
|
371
432
|
title: z.ZodString;
|
|
433
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
372
434
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
373
435
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
374
436
|
isAvailable: z.ZodBoolean;
|
|
375
437
|
modelId: z.ZodString;
|
|
376
438
|
}, z.core.$strip>, z.ZodObject<{
|
|
377
439
|
title: z.ZodString;
|
|
440
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
378
441
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
379
442
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
380
443
|
isAvailable: z.ZodBoolean;
|
|
381
444
|
}, z.core.$strip>, z.ZodObject<{
|
|
382
445
|
title: z.ZodString;
|
|
446
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
383
447
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
384
448
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
385
449
|
value: z.ZodNumber;
|
|
386
450
|
}, z.core.$strip>, z.ZodObject<{
|
|
387
451
|
title: z.ZodString;
|
|
452
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
388
453
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
389
454
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
390
455
|
tokens: z.ZodNumber;
|
|
@@ -400,6 +465,7 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
400
465
|
}, z.core.$strip>;
|
|
401
466
|
}, z.core.$strip>, z.ZodObject<{
|
|
402
467
|
title: z.ZodString;
|
|
468
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
403
469
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
404
470
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
405
471
|
isAvailable: z.ZodBoolean;
|
|
@@ -416,50 +482,59 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
416
482
|
}, z.core.$strip>;
|
|
417
483
|
}, z.core.$strip>, z.ZodObject<{
|
|
418
484
|
title: z.ZodString;
|
|
485
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
419
486
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
420
487
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
421
488
|
value: z.ZodNumber;
|
|
422
489
|
}, z.core.$strip>, z.ZodObject<{
|
|
423
490
|
title: z.ZodString;
|
|
491
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
424
492
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
425
493
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
426
494
|
isAvailable: z.ZodBoolean;
|
|
427
495
|
modelId: z.ZodString;
|
|
428
496
|
}, z.core.$strip>, z.ZodObject<{
|
|
429
497
|
title: z.ZodString;
|
|
498
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
430
499
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
431
500
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
432
501
|
value: z.ZodNumber;
|
|
433
502
|
}, z.core.$strip>, z.ZodObject<{
|
|
434
503
|
title: z.ZodString;
|
|
504
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
435
505
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
436
506
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
437
507
|
isAvailable: z.ZodBoolean;
|
|
438
508
|
modelId: z.ZodString;
|
|
439
509
|
}, z.core.$strip>, z.ZodObject<{
|
|
440
510
|
title: z.ZodString;
|
|
511
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
441
512
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
442
513
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
443
514
|
value: z.ZodNumber;
|
|
444
515
|
}, z.core.$strip>, z.ZodObject<{
|
|
445
516
|
title: z.ZodString;
|
|
517
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
446
518
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
447
519
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
448
520
|
isAvailable: z.ZodBoolean;
|
|
449
521
|
modelId: z.ZodString;
|
|
450
522
|
}, z.core.$strip>, z.ZodObject<{
|
|
451
523
|
title: z.ZodString;
|
|
524
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
452
525
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
453
526
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
454
527
|
value: z.ZodNumber;
|
|
455
528
|
}, z.core.$strip>, z.ZodObject<{
|
|
456
529
|
title: z.ZodString;
|
|
530
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
457
531
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
458
532
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
459
533
|
isAvailable: z.ZodBoolean;
|
|
460
534
|
modelId: z.ZodString;
|
|
461
535
|
}, z.core.$strip>, z.ZodObject<{
|
|
462
536
|
title: z.ZodString;
|
|
537
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
463
538
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
464
539
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
465
540
|
order: z.ZodNumber;
|
|
@@ -467,74 +542,99 @@ export declare const SubscriptionWithActionSchema: z.ZodIntersection<z.ZodObject
|
|
|
467
542
|
isAvailable: z.ZodBoolean;
|
|
468
543
|
}, z.core.$strip>, z.ZodObject<{
|
|
469
544
|
title: z.ZodString;
|
|
545
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
470
546
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
471
547
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
472
548
|
value: z.ZodNumber;
|
|
473
549
|
}, z.core.$strip>, z.ZodObject<{
|
|
474
550
|
title: z.ZodString;
|
|
551
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
475
552
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
476
553
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
477
554
|
isAvailable: z.ZodBoolean;
|
|
478
555
|
modelId: z.ZodString;
|
|
479
556
|
}, z.core.$strip>, z.ZodObject<{
|
|
480
557
|
title: z.ZodString;
|
|
558
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
481
559
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
482
560
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
483
561
|
isAvailable: z.ZodBoolean;
|
|
484
562
|
modelId: z.ZodString;
|
|
485
563
|
}, z.core.$strip>, z.ZodObject<{
|
|
486
564
|
title: z.ZodString;
|
|
565
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
487
566
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
488
567
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
489
568
|
value: z.ZodNumber;
|
|
490
569
|
}, z.core.$strip>, z.ZodObject<{
|
|
491
570
|
title: z.ZodString;
|
|
571
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
492
572
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
493
573
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
494
574
|
isAvailable: z.ZodBoolean;
|
|
495
575
|
modelId: z.ZodString;
|
|
496
576
|
}, z.core.$strip>, z.ZodObject<{
|
|
497
577
|
title: z.ZodString;
|
|
578
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
498
579
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
499
580
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
500
581
|
value: z.ZodNumber;
|
|
501
582
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
583
|
title: z.ZodString;
|
|
584
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
503
585
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
504
586
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
505
587
|
isAvailable: z.ZodBoolean;
|
|
506
588
|
modelId: z.ZodString;
|
|
507
589
|
}, z.core.$strip>, z.ZodObject<{
|
|
508
590
|
title: z.ZodString;
|
|
591
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
509
592
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
510
593
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
511
594
|
value: z.ZodNumber;
|
|
512
595
|
}, z.core.$strip>, z.ZodObject<{
|
|
513
596
|
title: z.ZodString;
|
|
597
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
514
598
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
515
599
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
516
600
|
isAvailable: z.ZodBoolean;
|
|
517
601
|
modelId: z.ZodString;
|
|
518
602
|
}, z.core.$strip>, z.ZodObject<{
|
|
519
603
|
title: z.ZodString;
|
|
604
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
520
605
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
521
606
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
522
607
|
isAvailable: z.ZodBoolean;
|
|
523
608
|
modelId: z.ZodString;
|
|
524
609
|
}, z.core.$strip>, z.ZodObject<{
|
|
525
610
|
title: z.ZodString;
|
|
611
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
612
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
613
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
614
|
+
value: z.ZodNumber;
|
|
615
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
616
|
+
title: z.ZodString;
|
|
617
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
526
618
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
527
619
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
528
620
|
isAvailable: z.ZodBoolean;
|
|
529
621
|
modelId: z.ZodString;
|
|
530
622
|
}, z.core.$strip>, z.ZodObject<{
|
|
531
623
|
title: z.ZodString;
|
|
624
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
625
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
626
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
627
|
+
value: z.ZodNumber;
|
|
628
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
629
|
+
title: z.ZodString;
|
|
630
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
532
631
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
533
632
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
534
633
|
isAvailable: z.ZodBoolean;
|
|
535
634
|
modelId: z.ZodString;
|
|
536
635
|
}, z.core.$strip>, z.ZodObject<{
|
|
537
636
|
title: z.ZodString;
|
|
637
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
538
638
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
539
639
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
540
640
|
value: z.ZodNumber;
|
|
@@ -590,6 +690,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
590
690
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
591
691
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
592
692
|
title: z.ZodString;
|
|
693
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
593
694
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
594
695
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
595
696
|
order: z.ZodNumber;
|
|
@@ -598,76 +699,90 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
598
699
|
maxInputLength: z.ZodNumber;
|
|
599
700
|
}, z.core.$strip>, z.ZodObject<{
|
|
600
701
|
title: z.ZodString;
|
|
702
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
601
703
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
602
704
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
603
705
|
value: z.ZodNumber;
|
|
604
706
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
605
707
|
}, z.core.$strip>, z.ZodObject<{
|
|
606
708
|
title: z.ZodString;
|
|
709
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
607
710
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
608
711
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
609
712
|
tooltip: z.ZodString;
|
|
610
713
|
value: z.ZodNumber;
|
|
611
714
|
}, z.core.$strip>, z.ZodObject<{
|
|
612
715
|
title: z.ZodString;
|
|
716
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
613
717
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
614
718
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
615
719
|
isAvailable: z.ZodBoolean;
|
|
616
720
|
}, z.core.$strip>, z.ZodObject<{
|
|
617
721
|
title: z.ZodString;
|
|
722
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
618
723
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
619
724
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
620
725
|
isAvailable: z.ZodBoolean;
|
|
621
726
|
}, z.core.$strip>, z.ZodObject<{
|
|
622
727
|
title: z.ZodString;
|
|
728
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
623
729
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
624
730
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
625
731
|
isAvailable: z.ZodBoolean;
|
|
626
732
|
modelId: z.ZodString;
|
|
627
733
|
}, z.core.$strip>, z.ZodObject<{
|
|
628
734
|
title: z.ZodString;
|
|
735
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
629
736
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
630
737
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
631
738
|
value: z.ZodNumber;
|
|
632
739
|
}, z.core.$strip>, z.ZodObject<{
|
|
633
740
|
title: z.ZodString;
|
|
741
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
634
742
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
635
743
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
636
744
|
value: z.ZodNumber;
|
|
637
745
|
}, z.core.$strip>, z.ZodObject<{
|
|
638
746
|
title: z.ZodString;
|
|
747
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
639
748
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
640
749
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
641
750
|
isAvailable: z.ZodBoolean;
|
|
642
751
|
modelId: z.ZodString;
|
|
643
752
|
}, z.core.$strip>, z.ZodObject<{
|
|
644
753
|
title: z.ZodString;
|
|
754
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
645
755
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
646
756
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
647
757
|
value: z.ZodNumber;
|
|
648
758
|
}, z.core.$strip>, z.ZodObject<{
|
|
649
759
|
title: z.ZodString;
|
|
760
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
650
761
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
651
762
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
652
763
|
value: z.ZodNumber;
|
|
653
764
|
}, z.core.$strip>, z.ZodObject<{
|
|
654
765
|
title: z.ZodString;
|
|
766
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
655
767
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
656
768
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
657
769
|
isAvailable: z.ZodBoolean;
|
|
658
770
|
modelId: z.ZodString;
|
|
659
771
|
}, z.core.$strip>, z.ZodObject<{
|
|
660
772
|
title: z.ZodString;
|
|
773
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
661
774
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
662
775
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
663
776
|
isAvailable: z.ZodBoolean;
|
|
664
777
|
}, z.core.$strip>, z.ZodObject<{
|
|
665
778
|
title: z.ZodString;
|
|
779
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
666
780
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
667
781
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
668
782
|
value: z.ZodNumber;
|
|
669
783
|
}, z.core.$strip>, z.ZodObject<{
|
|
670
784
|
title: z.ZodString;
|
|
785
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
671
786
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
672
787
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
673
788
|
tokens: z.ZodNumber;
|
|
@@ -683,6 +798,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
683
798
|
}, z.core.$strip>;
|
|
684
799
|
}, z.core.$strip>, z.ZodObject<{
|
|
685
800
|
title: z.ZodString;
|
|
801
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
686
802
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
687
803
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
688
804
|
isAvailable: z.ZodBoolean;
|
|
@@ -699,50 +815,59 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
699
815
|
}, z.core.$strip>;
|
|
700
816
|
}, z.core.$strip>, z.ZodObject<{
|
|
701
817
|
title: z.ZodString;
|
|
818
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
702
819
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
703
820
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
704
821
|
value: z.ZodNumber;
|
|
705
822
|
}, z.core.$strip>, z.ZodObject<{
|
|
706
823
|
title: z.ZodString;
|
|
824
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
707
825
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
708
826
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
709
827
|
isAvailable: z.ZodBoolean;
|
|
710
828
|
modelId: z.ZodString;
|
|
711
829
|
}, z.core.$strip>, z.ZodObject<{
|
|
712
830
|
title: z.ZodString;
|
|
831
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
713
832
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
714
833
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
715
834
|
value: z.ZodNumber;
|
|
716
835
|
}, z.core.$strip>, z.ZodObject<{
|
|
717
836
|
title: z.ZodString;
|
|
837
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
718
838
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
719
839
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
720
840
|
isAvailable: z.ZodBoolean;
|
|
721
841
|
modelId: z.ZodString;
|
|
722
842
|
}, z.core.$strip>, z.ZodObject<{
|
|
723
843
|
title: z.ZodString;
|
|
844
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
724
845
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
725
846
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
726
847
|
value: z.ZodNumber;
|
|
727
848
|
}, z.core.$strip>, z.ZodObject<{
|
|
728
849
|
title: z.ZodString;
|
|
850
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
729
851
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
730
852
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
731
853
|
isAvailable: z.ZodBoolean;
|
|
732
854
|
modelId: z.ZodString;
|
|
733
855
|
}, z.core.$strip>, z.ZodObject<{
|
|
734
856
|
title: z.ZodString;
|
|
857
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
735
858
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
736
859
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
737
860
|
value: z.ZodNumber;
|
|
738
861
|
}, z.core.$strip>, z.ZodObject<{
|
|
739
862
|
title: z.ZodString;
|
|
863
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
740
864
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
741
865
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
742
866
|
isAvailable: z.ZodBoolean;
|
|
743
867
|
modelId: z.ZodString;
|
|
744
868
|
}, z.core.$strip>, z.ZodObject<{
|
|
745
869
|
title: z.ZodString;
|
|
870
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
746
871
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
747
872
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
748
873
|
order: z.ZodNumber;
|
|
@@ -750,74 +875,99 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
750
875
|
isAvailable: z.ZodBoolean;
|
|
751
876
|
}, z.core.$strip>, z.ZodObject<{
|
|
752
877
|
title: z.ZodString;
|
|
878
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
753
879
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
754
880
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
755
881
|
value: z.ZodNumber;
|
|
756
882
|
}, z.core.$strip>, z.ZodObject<{
|
|
757
883
|
title: z.ZodString;
|
|
884
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
758
885
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
759
886
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
760
887
|
isAvailable: z.ZodBoolean;
|
|
761
888
|
modelId: z.ZodString;
|
|
762
889
|
}, z.core.$strip>, z.ZodObject<{
|
|
763
890
|
title: z.ZodString;
|
|
891
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
764
892
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
765
893
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
766
894
|
isAvailable: z.ZodBoolean;
|
|
767
895
|
modelId: z.ZodString;
|
|
768
896
|
}, z.core.$strip>, z.ZodObject<{
|
|
769
897
|
title: z.ZodString;
|
|
898
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
770
899
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
771
900
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
772
901
|
value: z.ZodNumber;
|
|
773
902
|
}, z.core.$strip>, z.ZodObject<{
|
|
774
903
|
title: z.ZodString;
|
|
904
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
775
905
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
776
906
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
777
907
|
isAvailable: z.ZodBoolean;
|
|
778
908
|
modelId: z.ZodString;
|
|
779
909
|
}, z.core.$strip>, z.ZodObject<{
|
|
780
910
|
title: z.ZodString;
|
|
911
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
781
912
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
782
913
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
783
914
|
value: z.ZodNumber;
|
|
784
915
|
}, z.core.$strip>, z.ZodObject<{
|
|
785
916
|
title: z.ZodString;
|
|
917
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
786
918
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
787
919
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
788
920
|
isAvailable: z.ZodBoolean;
|
|
789
921
|
modelId: z.ZodString;
|
|
790
922
|
}, z.core.$strip>, z.ZodObject<{
|
|
791
923
|
title: z.ZodString;
|
|
924
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
792
925
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
793
926
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
794
927
|
value: z.ZodNumber;
|
|
795
928
|
}, z.core.$strip>, z.ZodObject<{
|
|
796
929
|
title: z.ZodString;
|
|
930
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
797
931
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
798
932
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
799
933
|
isAvailable: z.ZodBoolean;
|
|
800
934
|
modelId: z.ZodString;
|
|
801
935
|
}, z.core.$strip>, z.ZodObject<{
|
|
802
936
|
title: z.ZodString;
|
|
937
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
803
938
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
804
939
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
805
940
|
isAvailable: z.ZodBoolean;
|
|
806
941
|
modelId: z.ZodString;
|
|
807
942
|
}, z.core.$strip>, z.ZodObject<{
|
|
808
943
|
title: z.ZodString;
|
|
944
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
945
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
946
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
947
|
+
value: z.ZodNumber;
|
|
948
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
949
|
+
title: z.ZodString;
|
|
950
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
809
951
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
810
952
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
811
953
|
isAvailable: z.ZodBoolean;
|
|
812
954
|
modelId: z.ZodString;
|
|
813
955
|
}, z.core.$strip>, z.ZodObject<{
|
|
814
956
|
title: z.ZodString;
|
|
957
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
958
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
959
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
960
|
+
value: z.ZodNumber;
|
|
961
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
962
|
+
title: z.ZodString;
|
|
963
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
815
964
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
816
965
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
817
966
|
isAvailable: z.ZodBoolean;
|
|
818
967
|
modelId: z.ZodString;
|
|
819
968
|
}, z.core.$strip>, z.ZodObject<{
|
|
820
969
|
title: z.ZodString;
|
|
970
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
821
971
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
822
972
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
823
973
|
value: z.ZodNumber;
|
|
@@ -871,6 +1021,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
871
1021
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof SUBSCRIPTION_ACTION>>>;
|
|
872
1022
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
873
1023
|
title: z.ZodString;
|
|
1024
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
874
1025
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
875
1026
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
876
1027
|
order: z.ZodNumber;
|
|
@@ -879,76 +1030,90 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
879
1030
|
maxInputLength: z.ZodNumber;
|
|
880
1031
|
}, z.core.$strip>, z.ZodObject<{
|
|
881
1032
|
title: z.ZodString;
|
|
1033
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
882
1034
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
883
1035
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
884
1036
|
value: z.ZodNumber;
|
|
885
1037
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
886
1038
|
}, z.core.$strip>, z.ZodObject<{
|
|
887
1039
|
title: z.ZodString;
|
|
1040
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
888
1041
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
889
1042
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
890
1043
|
tooltip: z.ZodString;
|
|
891
1044
|
value: z.ZodNumber;
|
|
892
1045
|
}, z.core.$strip>, z.ZodObject<{
|
|
893
1046
|
title: z.ZodString;
|
|
1047
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
894
1048
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
895
1049
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
896
1050
|
isAvailable: z.ZodBoolean;
|
|
897
1051
|
}, z.core.$strip>, z.ZodObject<{
|
|
898
1052
|
title: z.ZodString;
|
|
1053
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
899
1054
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
900
1055
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
901
1056
|
isAvailable: z.ZodBoolean;
|
|
902
1057
|
}, z.core.$strip>, z.ZodObject<{
|
|
903
1058
|
title: z.ZodString;
|
|
1059
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
904
1060
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
905
1061
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
906
1062
|
isAvailable: z.ZodBoolean;
|
|
907
1063
|
modelId: z.ZodString;
|
|
908
1064
|
}, z.core.$strip>, z.ZodObject<{
|
|
909
1065
|
title: z.ZodString;
|
|
1066
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
910
1067
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
911
1068
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
912
1069
|
value: z.ZodNumber;
|
|
913
1070
|
}, z.core.$strip>, z.ZodObject<{
|
|
914
1071
|
title: z.ZodString;
|
|
1072
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
915
1073
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
916
1074
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
917
1075
|
value: z.ZodNumber;
|
|
918
1076
|
}, z.core.$strip>, z.ZodObject<{
|
|
919
1077
|
title: z.ZodString;
|
|
1078
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
920
1079
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
921
1080
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
922
1081
|
isAvailable: z.ZodBoolean;
|
|
923
1082
|
modelId: z.ZodString;
|
|
924
1083
|
}, z.core.$strip>, z.ZodObject<{
|
|
925
1084
|
title: z.ZodString;
|
|
1085
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
926
1086
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
927
1087
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
928
1088
|
value: z.ZodNumber;
|
|
929
1089
|
}, z.core.$strip>, z.ZodObject<{
|
|
930
1090
|
title: z.ZodString;
|
|
1091
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
931
1092
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
932
1093
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
933
1094
|
value: z.ZodNumber;
|
|
934
1095
|
}, z.core.$strip>, z.ZodObject<{
|
|
935
1096
|
title: z.ZodString;
|
|
1097
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
936
1098
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
937
1099
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
938
1100
|
isAvailable: z.ZodBoolean;
|
|
939
1101
|
modelId: z.ZodString;
|
|
940
1102
|
}, z.core.$strip>, z.ZodObject<{
|
|
941
1103
|
title: z.ZodString;
|
|
1104
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
942
1105
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
943
1106
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
944
1107
|
isAvailable: z.ZodBoolean;
|
|
945
1108
|
}, z.core.$strip>, z.ZodObject<{
|
|
946
1109
|
title: z.ZodString;
|
|
1110
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
947
1111
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
948
1112
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
949
1113
|
value: z.ZodNumber;
|
|
950
1114
|
}, z.core.$strip>, z.ZodObject<{
|
|
951
1115
|
title: z.ZodString;
|
|
1116
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
952
1117
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
953
1118
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
954
1119
|
tokens: z.ZodNumber;
|
|
@@ -964,6 +1129,7 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
964
1129
|
}, z.core.$strip>;
|
|
965
1130
|
}, z.core.$strip>, z.ZodObject<{
|
|
966
1131
|
title: z.ZodString;
|
|
1132
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
967
1133
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
968
1134
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
969
1135
|
isAvailable: z.ZodBoolean;
|
|
@@ -980,50 +1146,59 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
980
1146
|
}, z.core.$strip>;
|
|
981
1147
|
}, z.core.$strip>, z.ZodObject<{
|
|
982
1148
|
title: z.ZodString;
|
|
1149
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
983
1150
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
984
1151
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
985
1152
|
value: z.ZodNumber;
|
|
986
1153
|
}, z.core.$strip>, z.ZodObject<{
|
|
987
1154
|
title: z.ZodString;
|
|
1155
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
988
1156
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
989
1157
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
990
1158
|
isAvailable: z.ZodBoolean;
|
|
991
1159
|
modelId: z.ZodString;
|
|
992
1160
|
}, z.core.$strip>, z.ZodObject<{
|
|
993
1161
|
title: z.ZodString;
|
|
1162
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
994
1163
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
995
1164
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
996
1165
|
value: z.ZodNumber;
|
|
997
1166
|
}, z.core.$strip>, z.ZodObject<{
|
|
998
1167
|
title: z.ZodString;
|
|
1168
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
999
1169
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1000
1170
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
1001
1171
|
isAvailable: z.ZodBoolean;
|
|
1002
1172
|
modelId: z.ZodString;
|
|
1003
1173
|
}, z.core.$strip>, z.ZodObject<{
|
|
1004
1174
|
title: z.ZodString;
|
|
1175
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1005
1176
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1006
1177
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
1007
1178
|
value: z.ZodNumber;
|
|
1008
1179
|
}, z.core.$strip>, z.ZodObject<{
|
|
1009
1180
|
title: z.ZodString;
|
|
1181
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1010
1182
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1011
1183
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
1012
1184
|
isAvailable: z.ZodBoolean;
|
|
1013
1185
|
modelId: z.ZodString;
|
|
1014
1186
|
}, z.core.$strip>, z.ZodObject<{
|
|
1015
1187
|
title: z.ZodString;
|
|
1188
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1016
1189
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1017
1190
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
1018
1191
|
value: z.ZodNumber;
|
|
1019
1192
|
}, z.core.$strip>, z.ZodObject<{
|
|
1020
1193
|
title: z.ZodString;
|
|
1194
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1021
1195
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1022
1196
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
1023
1197
|
isAvailable: z.ZodBoolean;
|
|
1024
1198
|
modelId: z.ZodString;
|
|
1025
1199
|
}, z.core.$strip>, z.ZodObject<{
|
|
1026
1200
|
title: z.ZodString;
|
|
1201
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1027
1202
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1028
1203
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1029
1204
|
order: z.ZodNumber;
|
|
@@ -1031,74 +1206,99 @@ export declare const SubscriptionWithSubTypesSchema: z.ZodIntersection<z.ZodObje
|
|
|
1031
1206
|
isAvailable: z.ZodBoolean;
|
|
1032
1207
|
}, z.core.$strip>, z.ZodObject<{
|
|
1033
1208
|
title: z.ZodString;
|
|
1209
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1034
1210
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1035
1211
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1036
1212
|
value: z.ZodNumber;
|
|
1037
1213
|
}, z.core.$strip>, z.ZodObject<{
|
|
1038
1214
|
title: z.ZodString;
|
|
1215
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1039
1216
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1040
1217
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1041
1218
|
isAvailable: z.ZodBoolean;
|
|
1042
1219
|
modelId: z.ZodString;
|
|
1043
1220
|
}, z.core.$strip>, z.ZodObject<{
|
|
1044
1221
|
title: z.ZodString;
|
|
1222
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1045
1223
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1046
1224
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1047
1225
|
isAvailable: z.ZodBoolean;
|
|
1048
1226
|
modelId: z.ZodString;
|
|
1049
1227
|
}, z.core.$strip>, z.ZodObject<{
|
|
1050
1228
|
title: z.ZodString;
|
|
1229
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1051
1230
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1052
1231
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1053
1232
|
value: z.ZodNumber;
|
|
1054
1233
|
}, z.core.$strip>, z.ZodObject<{
|
|
1055
1234
|
title: z.ZodString;
|
|
1235
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1056
1236
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1057
1237
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1058
1238
|
isAvailable: z.ZodBoolean;
|
|
1059
1239
|
modelId: z.ZodString;
|
|
1060
1240
|
}, z.core.$strip>, z.ZodObject<{
|
|
1061
1241
|
title: z.ZodString;
|
|
1242
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1062
1243
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1063
1244
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1064
1245
|
value: z.ZodNumber;
|
|
1065
1246
|
}, z.core.$strip>, z.ZodObject<{
|
|
1066
1247
|
title: z.ZodString;
|
|
1248
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1067
1249
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1068
1250
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1069
1251
|
isAvailable: z.ZodBoolean;
|
|
1070
1252
|
modelId: z.ZodString;
|
|
1071
1253
|
}, z.core.$strip>, z.ZodObject<{
|
|
1072
1254
|
title: z.ZodString;
|
|
1255
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1073
1256
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1074
1257
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1075
1258
|
value: z.ZodNumber;
|
|
1076
1259
|
}, z.core.$strip>, z.ZodObject<{
|
|
1077
1260
|
title: z.ZodString;
|
|
1261
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1078
1262
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1079
1263
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1080
1264
|
isAvailable: z.ZodBoolean;
|
|
1081
1265
|
modelId: z.ZodString;
|
|
1082
1266
|
}, z.core.$strip>, z.ZodObject<{
|
|
1083
1267
|
title: z.ZodString;
|
|
1268
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1084
1269
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1085
1270
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1086
1271
|
isAvailable: z.ZodBoolean;
|
|
1087
1272
|
modelId: z.ZodString;
|
|
1088
1273
|
}, z.core.$strip>, z.ZodObject<{
|
|
1089
1274
|
title: z.ZodString;
|
|
1275
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1276
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1277
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
1278
|
+
value: z.ZodNumber;
|
|
1279
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1280
|
+
title: z.ZodString;
|
|
1281
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1090
1282
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1091
1283
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1092
1284
|
isAvailable: z.ZodBoolean;
|
|
1093
1285
|
modelId: z.ZodString;
|
|
1094
1286
|
}, z.core.$strip>, z.ZodObject<{
|
|
1095
1287
|
title: z.ZodString;
|
|
1288
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1289
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1290
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
1291
|
+
value: z.ZodNumber;
|
|
1292
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1293
|
+
title: z.ZodString;
|
|
1294
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1096
1295
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1097
1296
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1098
1297
|
isAvailable: z.ZodBoolean;
|
|
1099
1298
|
modelId: z.ZodString;
|
|
1100
1299
|
}, z.core.$strip>, z.ZodObject<{
|
|
1101
1300
|
title: z.ZodString;
|
|
1301
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1102
1302
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1103
1303
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1104
1304
|
value: z.ZodNumber;
|
|
@@ -1175,6 +1375,7 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1175
1375
|
updatedAt: z.ZodDate;
|
|
1176
1376
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1177
1377
|
title: z.ZodString;
|
|
1378
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1178
1379
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
1179
1380
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
1180
1381
|
order: z.ZodNumber;
|
|
@@ -1183,76 +1384,90 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1183
1384
|
maxInputLength: z.ZodNumber;
|
|
1184
1385
|
}, z.core.$strip>, z.ZodObject<{
|
|
1185
1386
|
title: z.ZodString;
|
|
1387
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1186
1388
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
1187
1389
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1188
1390
|
value: z.ZodNumber;
|
|
1189
1391
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
1190
1392
|
}, z.core.$strip>, z.ZodObject<{
|
|
1191
1393
|
title: z.ZodString;
|
|
1394
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1192
1395
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
1193
1396
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1194
1397
|
tooltip: z.ZodString;
|
|
1195
1398
|
value: z.ZodNumber;
|
|
1196
1399
|
}, z.core.$strip>, z.ZodObject<{
|
|
1197
1400
|
title: z.ZodString;
|
|
1401
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1198
1402
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1199
1403
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
1200
1404
|
isAvailable: z.ZodBoolean;
|
|
1201
1405
|
}, z.core.$strip>, z.ZodObject<{
|
|
1202
1406
|
title: z.ZodString;
|
|
1407
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1203
1408
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1204
1409
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
1205
1410
|
isAvailable: z.ZodBoolean;
|
|
1206
1411
|
}, z.core.$strip>, z.ZodObject<{
|
|
1207
1412
|
title: z.ZodString;
|
|
1413
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1208
1414
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1209
1415
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
1210
1416
|
isAvailable: z.ZodBoolean;
|
|
1211
1417
|
modelId: z.ZodString;
|
|
1212
1418
|
}, z.core.$strip>, z.ZodObject<{
|
|
1213
1419
|
title: z.ZodString;
|
|
1420
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1214
1421
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1215
1422
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
1216
1423
|
value: z.ZodNumber;
|
|
1217
1424
|
}, z.core.$strip>, z.ZodObject<{
|
|
1218
1425
|
title: z.ZodString;
|
|
1426
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1219
1427
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1220
1428
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
1221
1429
|
value: z.ZodNumber;
|
|
1222
1430
|
}, z.core.$strip>, z.ZodObject<{
|
|
1223
1431
|
title: z.ZodString;
|
|
1432
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1224
1433
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1225
1434
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
1226
1435
|
isAvailable: z.ZodBoolean;
|
|
1227
1436
|
modelId: z.ZodString;
|
|
1228
1437
|
}, z.core.$strip>, z.ZodObject<{
|
|
1229
1438
|
title: z.ZodString;
|
|
1439
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1230
1440
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1231
1441
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
1232
1442
|
value: z.ZodNumber;
|
|
1233
1443
|
}, z.core.$strip>, z.ZodObject<{
|
|
1234
1444
|
title: z.ZodString;
|
|
1445
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1235
1446
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1236
1447
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
1237
1448
|
value: z.ZodNumber;
|
|
1238
1449
|
}, z.core.$strip>, z.ZodObject<{
|
|
1239
1450
|
title: z.ZodString;
|
|
1451
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1240
1452
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1241
1453
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
1242
1454
|
isAvailable: z.ZodBoolean;
|
|
1243
1455
|
modelId: z.ZodString;
|
|
1244
1456
|
}, z.core.$strip>, z.ZodObject<{
|
|
1245
1457
|
title: z.ZodString;
|
|
1458
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1246
1459
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
1247
1460
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1248
1461
|
isAvailable: z.ZodBoolean;
|
|
1249
1462
|
}, z.core.$strip>, z.ZodObject<{
|
|
1250
1463
|
title: z.ZodString;
|
|
1464
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1251
1465
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
1252
1466
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
1253
1467
|
value: z.ZodNumber;
|
|
1254
1468
|
}, z.core.$strip>, z.ZodObject<{
|
|
1255
1469
|
title: z.ZodString;
|
|
1470
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1256
1471
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1257
1472
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
1258
1473
|
tokens: z.ZodNumber;
|
|
@@ -1268,6 +1483,7 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1268
1483
|
}, z.core.$strip>;
|
|
1269
1484
|
}, z.core.$strip>, z.ZodObject<{
|
|
1270
1485
|
title: z.ZodString;
|
|
1486
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1271
1487
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1272
1488
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
1273
1489
|
isAvailable: z.ZodBoolean;
|
|
@@ -1284,50 +1500,59 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1284
1500
|
}, z.core.$strip>;
|
|
1285
1501
|
}, z.core.$strip>, z.ZodObject<{
|
|
1286
1502
|
title: z.ZodString;
|
|
1503
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1287
1504
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1288
1505
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
1289
1506
|
value: z.ZodNumber;
|
|
1290
1507
|
}, z.core.$strip>, z.ZodObject<{
|
|
1291
1508
|
title: z.ZodString;
|
|
1509
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1292
1510
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1293
1511
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
1294
1512
|
isAvailable: z.ZodBoolean;
|
|
1295
1513
|
modelId: z.ZodString;
|
|
1296
1514
|
}, z.core.$strip>, z.ZodObject<{
|
|
1297
1515
|
title: z.ZodString;
|
|
1516
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1298
1517
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1299
1518
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
1300
1519
|
value: z.ZodNumber;
|
|
1301
1520
|
}, z.core.$strip>, z.ZodObject<{
|
|
1302
1521
|
title: z.ZodString;
|
|
1522
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1303
1523
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1304
1524
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
1305
1525
|
isAvailable: z.ZodBoolean;
|
|
1306
1526
|
modelId: z.ZodString;
|
|
1307
1527
|
}, z.core.$strip>, z.ZodObject<{
|
|
1308
1528
|
title: z.ZodString;
|
|
1529
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1309
1530
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1310
1531
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
1311
1532
|
value: z.ZodNumber;
|
|
1312
1533
|
}, z.core.$strip>, z.ZodObject<{
|
|
1313
1534
|
title: z.ZodString;
|
|
1535
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1314
1536
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1315
1537
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
1316
1538
|
isAvailable: z.ZodBoolean;
|
|
1317
1539
|
modelId: z.ZodString;
|
|
1318
1540
|
}, z.core.$strip>, z.ZodObject<{
|
|
1319
1541
|
title: z.ZodString;
|
|
1542
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1320
1543
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1321
1544
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
1322
1545
|
value: z.ZodNumber;
|
|
1323
1546
|
}, z.core.$strip>, z.ZodObject<{
|
|
1324
1547
|
title: z.ZodString;
|
|
1548
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1325
1549
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1326
1550
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
1327
1551
|
isAvailable: z.ZodBoolean;
|
|
1328
1552
|
modelId: z.ZodString;
|
|
1329
1553
|
}, z.core.$strip>, z.ZodObject<{
|
|
1330
1554
|
title: z.ZodString;
|
|
1555
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1331
1556
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1332
1557
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1333
1558
|
order: z.ZodNumber;
|
|
@@ -1335,74 +1560,99 @@ export declare const SubscriptionWithFeaturesSchema: z.ZodObject<{
|
|
|
1335
1560
|
isAvailable: z.ZodBoolean;
|
|
1336
1561
|
}, z.core.$strip>, z.ZodObject<{
|
|
1337
1562
|
title: z.ZodString;
|
|
1563
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1338
1564
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1339
1565
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1340
1566
|
value: z.ZodNumber;
|
|
1341
1567
|
}, z.core.$strip>, z.ZodObject<{
|
|
1342
1568
|
title: z.ZodString;
|
|
1569
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1343
1570
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1344
1571
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1345
1572
|
isAvailable: z.ZodBoolean;
|
|
1346
1573
|
modelId: z.ZodString;
|
|
1347
1574
|
}, z.core.$strip>, z.ZodObject<{
|
|
1348
1575
|
title: z.ZodString;
|
|
1576
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1349
1577
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1350
1578
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1351
1579
|
isAvailable: z.ZodBoolean;
|
|
1352
1580
|
modelId: z.ZodString;
|
|
1353
1581
|
}, z.core.$strip>, z.ZodObject<{
|
|
1354
1582
|
title: z.ZodString;
|
|
1583
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1355
1584
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1356
1585
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1357
1586
|
value: z.ZodNumber;
|
|
1358
1587
|
}, z.core.$strip>, z.ZodObject<{
|
|
1359
1588
|
title: z.ZodString;
|
|
1589
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1360
1590
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1361
1591
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1362
1592
|
isAvailable: z.ZodBoolean;
|
|
1363
1593
|
modelId: z.ZodString;
|
|
1364
1594
|
}, z.core.$strip>, z.ZodObject<{
|
|
1365
1595
|
title: z.ZodString;
|
|
1596
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1366
1597
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1367
1598
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1368
1599
|
value: z.ZodNumber;
|
|
1369
1600
|
}, z.core.$strip>, z.ZodObject<{
|
|
1370
1601
|
title: z.ZodString;
|
|
1602
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1371
1603
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1372
1604
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1373
1605
|
isAvailable: z.ZodBoolean;
|
|
1374
1606
|
modelId: z.ZodString;
|
|
1375
1607
|
}, z.core.$strip>, z.ZodObject<{
|
|
1376
1608
|
title: z.ZodString;
|
|
1609
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1377
1610
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1378
1611
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1379
1612
|
value: z.ZodNumber;
|
|
1380
1613
|
}, z.core.$strip>, z.ZodObject<{
|
|
1381
1614
|
title: z.ZodString;
|
|
1615
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1382
1616
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1383
1617
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1384
1618
|
isAvailable: z.ZodBoolean;
|
|
1385
1619
|
modelId: z.ZodString;
|
|
1386
1620
|
}, z.core.$strip>, z.ZodObject<{
|
|
1387
1621
|
title: z.ZodString;
|
|
1622
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1388
1623
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1389
1624
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1390
1625
|
isAvailable: z.ZodBoolean;
|
|
1391
1626
|
modelId: z.ZodString;
|
|
1392
1627
|
}, z.core.$strip>, z.ZodObject<{
|
|
1393
1628
|
title: z.ZodString;
|
|
1629
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1630
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1631
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
1632
|
+
value: z.ZodNumber;
|
|
1633
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1634
|
+
title: z.ZodString;
|
|
1635
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1394
1636
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1395
1637
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1396
1638
|
isAvailable: z.ZodBoolean;
|
|
1397
1639
|
modelId: z.ZodString;
|
|
1398
1640
|
}, z.core.$strip>, z.ZodObject<{
|
|
1399
1641
|
title: z.ZodString;
|
|
1642
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1643
|
+
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1644
|
+
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
1645
|
+
value: z.ZodNumber;
|
|
1646
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1647
|
+
title: z.ZodString;
|
|
1648
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1400
1649
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1401
1650
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1402
1651
|
isAvailable: z.ZodBoolean;
|
|
1403
1652
|
modelId: z.ZodString;
|
|
1404
1653
|
}, z.core.$strip>, z.ZodObject<{
|
|
1405
1654
|
title: z.ZodString;
|
|
1655
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1406
1656
|
kind: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1407
1657
|
type: z.ZodLiteral<import("..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1408
1658
|
value: z.ZodNumber;
|