@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
|
@@ -36,6 +36,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
36
36
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
37
37
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
38
38
|
title: z.ZodString;
|
|
39
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
39
40
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
40
41
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
41
42
|
order: z.ZodNumber;
|
|
@@ -44,76 +45,90 @@ export declare namespace FindSubscriptionCommand {
|
|
|
44
45
|
maxInputLength: z.ZodNumber;
|
|
45
46
|
}, z.core.$strip>, z.ZodObject<{
|
|
46
47
|
title: z.ZodString;
|
|
48
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
47
49
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
48
50
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
49
51
|
value: z.ZodNumber;
|
|
50
52
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
51
53
|
}, z.core.$strip>, z.ZodObject<{
|
|
52
54
|
title: z.ZodString;
|
|
55
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
53
56
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
54
57
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
55
58
|
tooltip: z.ZodString;
|
|
56
59
|
value: z.ZodNumber;
|
|
57
60
|
}, z.core.$strip>, z.ZodObject<{
|
|
58
61
|
title: z.ZodString;
|
|
62
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
59
63
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
60
64
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
61
65
|
isAvailable: z.ZodBoolean;
|
|
62
66
|
}, z.core.$strip>, z.ZodObject<{
|
|
63
67
|
title: z.ZodString;
|
|
68
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
64
69
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
65
70
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
66
71
|
isAvailable: z.ZodBoolean;
|
|
67
72
|
}, z.core.$strip>, z.ZodObject<{
|
|
68
73
|
title: z.ZodString;
|
|
74
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
69
75
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
70
76
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
71
77
|
isAvailable: z.ZodBoolean;
|
|
72
78
|
modelId: z.ZodString;
|
|
73
79
|
}, z.core.$strip>, z.ZodObject<{
|
|
74
80
|
title: z.ZodString;
|
|
81
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
75
82
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
76
83
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
77
84
|
value: z.ZodNumber;
|
|
78
85
|
}, z.core.$strip>, z.ZodObject<{
|
|
79
86
|
title: z.ZodString;
|
|
87
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
80
88
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
81
89
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
82
90
|
value: z.ZodNumber;
|
|
83
91
|
}, z.core.$strip>, z.ZodObject<{
|
|
84
92
|
title: z.ZodString;
|
|
93
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
85
94
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
86
95
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
87
96
|
isAvailable: z.ZodBoolean;
|
|
88
97
|
modelId: z.ZodString;
|
|
89
98
|
}, z.core.$strip>, z.ZodObject<{
|
|
90
99
|
title: z.ZodString;
|
|
100
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
91
101
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
92
102
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
93
103
|
value: z.ZodNumber;
|
|
94
104
|
}, z.core.$strip>, z.ZodObject<{
|
|
95
105
|
title: z.ZodString;
|
|
106
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
96
107
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
97
108
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
98
109
|
value: z.ZodNumber;
|
|
99
110
|
}, z.core.$strip>, z.ZodObject<{
|
|
100
111
|
title: z.ZodString;
|
|
112
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
101
113
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
102
114
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
103
115
|
isAvailable: z.ZodBoolean;
|
|
104
116
|
modelId: z.ZodString;
|
|
105
117
|
}, z.core.$strip>, z.ZodObject<{
|
|
106
118
|
title: z.ZodString;
|
|
119
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
107
120
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
108
121
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
109
122
|
isAvailable: z.ZodBoolean;
|
|
110
123
|
}, z.core.$strip>, z.ZodObject<{
|
|
111
124
|
title: z.ZodString;
|
|
125
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
112
126
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
113
127
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
114
128
|
value: z.ZodNumber;
|
|
115
129
|
}, z.core.$strip>, z.ZodObject<{
|
|
116
130
|
title: z.ZodString;
|
|
131
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
117
132
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
118
133
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
119
134
|
tokens: z.ZodNumber;
|
|
@@ -129,6 +144,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
129
144
|
}, z.core.$strip>;
|
|
130
145
|
}, z.core.$strip>, z.ZodObject<{
|
|
131
146
|
title: z.ZodString;
|
|
147
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
132
148
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
133
149
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
134
150
|
isAvailable: z.ZodBoolean;
|
|
@@ -145,50 +161,59 @@ export declare namespace FindSubscriptionCommand {
|
|
|
145
161
|
}, z.core.$strip>;
|
|
146
162
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
163
|
title: z.ZodString;
|
|
164
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
165
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
149
166
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
150
167
|
value: z.ZodNumber;
|
|
151
168
|
}, z.core.$strip>, z.ZodObject<{
|
|
152
169
|
title: z.ZodString;
|
|
170
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
153
171
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
154
172
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
155
173
|
isAvailable: z.ZodBoolean;
|
|
156
174
|
modelId: z.ZodString;
|
|
157
175
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
176
|
title: z.ZodString;
|
|
177
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
178
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
160
179
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
161
180
|
value: z.ZodNumber;
|
|
162
181
|
}, z.core.$strip>, z.ZodObject<{
|
|
163
182
|
title: z.ZodString;
|
|
183
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
164
184
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
165
185
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
166
186
|
isAvailable: z.ZodBoolean;
|
|
167
187
|
modelId: z.ZodString;
|
|
168
188
|
}, z.core.$strip>, z.ZodObject<{
|
|
169
189
|
title: z.ZodString;
|
|
190
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
170
191
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
171
192
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
172
193
|
value: z.ZodNumber;
|
|
173
194
|
}, z.core.$strip>, z.ZodObject<{
|
|
174
195
|
title: z.ZodString;
|
|
196
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
175
197
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
176
198
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
177
199
|
isAvailable: z.ZodBoolean;
|
|
178
200
|
modelId: z.ZodString;
|
|
179
201
|
}, z.core.$strip>, z.ZodObject<{
|
|
180
202
|
title: z.ZodString;
|
|
203
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
181
204
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
182
205
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
183
206
|
value: z.ZodNumber;
|
|
184
207
|
}, z.core.$strip>, z.ZodObject<{
|
|
185
208
|
title: z.ZodString;
|
|
209
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
186
210
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
187
211
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
188
212
|
isAvailable: z.ZodBoolean;
|
|
189
213
|
modelId: z.ZodString;
|
|
190
214
|
}, z.core.$strip>, z.ZodObject<{
|
|
191
215
|
title: z.ZodString;
|
|
216
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
192
217
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
193
218
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
194
219
|
order: z.ZodNumber;
|
|
@@ -196,74 +221,99 @@ export declare namespace FindSubscriptionCommand {
|
|
|
196
221
|
isAvailable: z.ZodBoolean;
|
|
197
222
|
}, z.core.$strip>, z.ZodObject<{
|
|
198
223
|
title: z.ZodString;
|
|
224
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
199
225
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
200
226
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
201
227
|
value: z.ZodNumber;
|
|
202
228
|
}, z.core.$strip>, z.ZodObject<{
|
|
203
229
|
title: z.ZodString;
|
|
230
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
204
231
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
205
232
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
206
233
|
isAvailable: z.ZodBoolean;
|
|
207
234
|
modelId: z.ZodString;
|
|
208
235
|
}, z.core.$strip>, z.ZodObject<{
|
|
209
236
|
title: z.ZodString;
|
|
237
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
210
238
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
211
239
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
212
240
|
isAvailable: z.ZodBoolean;
|
|
213
241
|
modelId: z.ZodString;
|
|
214
242
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
243
|
title: z.ZodString;
|
|
244
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
245
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
217
246
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
218
247
|
value: z.ZodNumber;
|
|
219
248
|
}, z.core.$strip>, z.ZodObject<{
|
|
220
249
|
title: z.ZodString;
|
|
250
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
221
251
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
222
252
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
223
253
|
isAvailable: z.ZodBoolean;
|
|
224
254
|
modelId: z.ZodString;
|
|
225
255
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
256
|
title: z.ZodString;
|
|
257
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
258
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
228
259
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
229
260
|
value: z.ZodNumber;
|
|
230
261
|
}, z.core.$strip>, z.ZodObject<{
|
|
231
262
|
title: z.ZodString;
|
|
263
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
232
264
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
233
265
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
234
266
|
isAvailable: z.ZodBoolean;
|
|
235
267
|
modelId: z.ZodString;
|
|
236
268
|
}, z.core.$strip>, z.ZodObject<{
|
|
237
269
|
title: z.ZodString;
|
|
270
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
238
271
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
239
272
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
240
273
|
value: z.ZodNumber;
|
|
241
274
|
}, z.core.$strip>, z.ZodObject<{
|
|
242
275
|
title: z.ZodString;
|
|
276
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
243
277
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
244
278
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
245
279
|
isAvailable: z.ZodBoolean;
|
|
246
280
|
modelId: z.ZodString;
|
|
247
281
|
}, z.core.$strip>, z.ZodObject<{
|
|
248
282
|
title: z.ZodString;
|
|
283
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
249
284
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
250
285
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
251
286
|
isAvailable: z.ZodBoolean;
|
|
252
287
|
modelId: z.ZodString;
|
|
253
288
|
}, z.core.$strip>, z.ZodObject<{
|
|
254
289
|
title: z.ZodString;
|
|
290
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
291
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
292
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
293
|
+
value: z.ZodNumber;
|
|
294
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
295
|
+
title: z.ZodString;
|
|
296
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
255
297
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
256
298
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
257
299
|
isAvailable: z.ZodBoolean;
|
|
258
300
|
modelId: z.ZodString;
|
|
259
301
|
}, z.core.$strip>, z.ZodObject<{
|
|
260
302
|
title: z.ZodString;
|
|
303
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
304
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
305
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
306
|
+
value: z.ZodNumber;
|
|
307
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
308
|
+
title: z.ZodString;
|
|
309
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
261
310
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
262
311
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
263
312
|
isAvailable: z.ZodBoolean;
|
|
264
313
|
modelId: z.ZodString;
|
|
265
314
|
}, z.core.$strip>, z.ZodObject<{
|
|
266
315
|
title: z.ZodString;
|
|
316
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
267
317
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
268
318
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
269
319
|
value: z.ZodNumber;
|
|
@@ -317,6 +367,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
317
367
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
318
368
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
319
369
|
title: z.ZodString;
|
|
370
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
320
371
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
321
372
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
322
373
|
order: z.ZodNumber;
|
|
@@ -325,76 +376,90 @@ export declare namespace FindSubscriptionCommand {
|
|
|
325
376
|
maxInputLength: z.ZodNumber;
|
|
326
377
|
}, z.core.$strip>, z.ZodObject<{
|
|
327
378
|
title: z.ZodString;
|
|
379
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
328
380
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
329
381
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
330
382
|
value: z.ZodNumber;
|
|
331
383
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
332
384
|
}, z.core.$strip>, z.ZodObject<{
|
|
333
385
|
title: z.ZodString;
|
|
386
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
334
387
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
335
388
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
336
389
|
tooltip: z.ZodString;
|
|
337
390
|
value: z.ZodNumber;
|
|
338
391
|
}, z.core.$strip>, z.ZodObject<{
|
|
339
392
|
title: z.ZodString;
|
|
393
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
340
394
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
341
395
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
342
396
|
isAvailable: z.ZodBoolean;
|
|
343
397
|
}, z.core.$strip>, z.ZodObject<{
|
|
344
398
|
title: z.ZodString;
|
|
399
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
345
400
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
346
401
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
347
402
|
isAvailable: z.ZodBoolean;
|
|
348
403
|
}, z.core.$strip>, z.ZodObject<{
|
|
349
404
|
title: z.ZodString;
|
|
405
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
350
406
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
351
407
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
352
408
|
isAvailable: z.ZodBoolean;
|
|
353
409
|
modelId: z.ZodString;
|
|
354
410
|
}, z.core.$strip>, z.ZodObject<{
|
|
355
411
|
title: z.ZodString;
|
|
412
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
356
413
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
357
414
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
358
415
|
value: z.ZodNumber;
|
|
359
416
|
}, z.core.$strip>, z.ZodObject<{
|
|
360
417
|
title: z.ZodString;
|
|
418
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
361
419
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
362
420
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
363
421
|
value: z.ZodNumber;
|
|
364
422
|
}, z.core.$strip>, z.ZodObject<{
|
|
365
423
|
title: z.ZodString;
|
|
424
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
366
425
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
367
426
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
368
427
|
isAvailable: z.ZodBoolean;
|
|
369
428
|
modelId: z.ZodString;
|
|
370
429
|
}, z.core.$strip>, z.ZodObject<{
|
|
371
430
|
title: z.ZodString;
|
|
431
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
372
432
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
373
433
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
374
434
|
value: z.ZodNumber;
|
|
375
435
|
}, z.core.$strip>, z.ZodObject<{
|
|
376
436
|
title: z.ZodString;
|
|
437
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
377
438
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
378
439
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
379
440
|
value: z.ZodNumber;
|
|
380
441
|
}, z.core.$strip>, z.ZodObject<{
|
|
381
442
|
title: z.ZodString;
|
|
443
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
382
444
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
383
445
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
384
446
|
isAvailable: z.ZodBoolean;
|
|
385
447
|
modelId: z.ZodString;
|
|
386
448
|
}, z.core.$strip>, z.ZodObject<{
|
|
387
449
|
title: z.ZodString;
|
|
450
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
388
451
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
389
452
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
390
453
|
isAvailable: z.ZodBoolean;
|
|
391
454
|
}, z.core.$strip>, z.ZodObject<{
|
|
392
455
|
title: z.ZodString;
|
|
456
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
393
457
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
394
458
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
395
459
|
value: z.ZodNumber;
|
|
396
460
|
}, z.core.$strip>, z.ZodObject<{
|
|
397
461
|
title: z.ZodString;
|
|
462
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
398
463
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
399
464
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
400
465
|
tokens: z.ZodNumber;
|
|
@@ -410,6 +475,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
410
475
|
}, z.core.$strip>;
|
|
411
476
|
}, z.core.$strip>, z.ZodObject<{
|
|
412
477
|
title: z.ZodString;
|
|
478
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
413
479
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
414
480
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
415
481
|
isAvailable: z.ZodBoolean;
|
|
@@ -426,50 +492,59 @@ export declare namespace FindSubscriptionCommand {
|
|
|
426
492
|
}, z.core.$strip>;
|
|
427
493
|
}, z.core.$strip>, z.ZodObject<{
|
|
428
494
|
title: z.ZodString;
|
|
495
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
429
496
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
430
497
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
431
498
|
value: z.ZodNumber;
|
|
432
499
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
500
|
title: z.ZodString;
|
|
501
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
502
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
435
503
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
436
504
|
isAvailable: z.ZodBoolean;
|
|
437
505
|
modelId: z.ZodString;
|
|
438
506
|
}, z.core.$strip>, z.ZodObject<{
|
|
439
507
|
title: z.ZodString;
|
|
508
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
440
509
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
441
510
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
442
511
|
value: z.ZodNumber;
|
|
443
512
|
}, z.core.$strip>, z.ZodObject<{
|
|
444
513
|
title: z.ZodString;
|
|
514
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
445
515
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
446
516
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
447
517
|
isAvailable: z.ZodBoolean;
|
|
448
518
|
modelId: z.ZodString;
|
|
449
519
|
}, z.core.$strip>, z.ZodObject<{
|
|
450
520
|
title: z.ZodString;
|
|
521
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
451
522
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
452
523
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
453
524
|
value: z.ZodNumber;
|
|
454
525
|
}, z.core.$strip>, z.ZodObject<{
|
|
455
526
|
title: z.ZodString;
|
|
527
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
456
528
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
457
529
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
458
530
|
isAvailable: z.ZodBoolean;
|
|
459
531
|
modelId: z.ZodString;
|
|
460
532
|
}, z.core.$strip>, z.ZodObject<{
|
|
461
533
|
title: z.ZodString;
|
|
534
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
462
535
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
463
536
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
464
537
|
value: z.ZodNumber;
|
|
465
538
|
}, z.core.$strip>, z.ZodObject<{
|
|
466
539
|
title: z.ZodString;
|
|
540
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
467
541
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
468
542
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
469
543
|
isAvailable: z.ZodBoolean;
|
|
470
544
|
modelId: z.ZodString;
|
|
471
545
|
}, z.core.$strip>, z.ZodObject<{
|
|
472
546
|
title: z.ZodString;
|
|
547
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
473
548
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
474
549
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
475
550
|
order: z.ZodNumber;
|
|
@@ -477,74 +552,99 @@ export declare namespace FindSubscriptionCommand {
|
|
|
477
552
|
isAvailable: z.ZodBoolean;
|
|
478
553
|
}, z.core.$strip>, z.ZodObject<{
|
|
479
554
|
title: z.ZodString;
|
|
555
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
480
556
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
481
557
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
482
558
|
value: z.ZodNumber;
|
|
483
559
|
}, z.core.$strip>, z.ZodObject<{
|
|
484
560
|
title: z.ZodString;
|
|
561
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
485
562
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
486
563
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
487
564
|
isAvailable: z.ZodBoolean;
|
|
488
565
|
modelId: z.ZodString;
|
|
489
566
|
}, z.core.$strip>, z.ZodObject<{
|
|
490
567
|
title: z.ZodString;
|
|
568
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
491
569
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
492
570
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
493
571
|
isAvailable: z.ZodBoolean;
|
|
494
572
|
modelId: z.ZodString;
|
|
495
573
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
574
|
title: z.ZodString;
|
|
575
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
576
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
498
577
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
499
578
|
value: z.ZodNumber;
|
|
500
579
|
}, z.core.$strip>, z.ZodObject<{
|
|
501
580
|
title: z.ZodString;
|
|
581
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
502
582
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
503
583
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
504
584
|
isAvailable: z.ZodBoolean;
|
|
505
585
|
modelId: z.ZodString;
|
|
506
586
|
}, z.core.$strip>, z.ZodObject<{
|
|
507
587
|
title: z.ZodString;
|
|
588
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
508
589
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
509
590
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
510
591
|
value: z.ZodNumber;
|
|
511
592
|
}, z.core.$strip>, z.ZodObject<{
|
|
512
593
|
title: z.ZodString;
|
|
594
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
513
595
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
514
596
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
515
597
|
isAvailable: z.ZodBoolean;
|
|
516
598
|
modelId: z.ZodString;
|
|
517
599
|
}, z.core.$strip>, z.ZodObject<{
|
|
518
600
|
title: z.ZodString;
|
|
601
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
519
602
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
520
603
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
521
604
|
value: z.ZodNumber;
|
|
522
605
|
}, z.core.$strip>, z.ZodObject<{
|
|
523
606
|
title: z.ZodString;
|
|
607
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
524
608
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
525
609
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
526
610
|
isAvailable: z.ZodBoolean;
|
|
527
611
|
modelId: z.ZodString;
|
|
528
612
|
}, z.core.$strip>, z.ZodObject<{
|
|
529
613
|
title: z.ZodString;
|
|
614
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
530
615
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
531
616
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
532
617
|
isAvailable: z.ZodBoolean;
|
|
533
618
|
modelId: z.ZodString;
|
|
534
619
|
}, z.core.$strip>, z.ZodObject<{
|
|
535
620
|
title: z.ZodString;
|
|
621
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
622
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
623
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
624
|
+
value: z.ZodNumber;
|
|
625
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
626
|
+
title: z.ZodString;
|
|
627
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
536
628
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
537
629
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
538
630
|
isAvailable: z.ZodBoolean;
|
|
539
631
|
modelId: z.ZodString;
|
|
540
632
|
}, z.core.$strip>, z.ZodObject<{
|
|
541
633
|
title: z.ZodString;
|
|
634
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
635
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
636
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
637
|
+
value: z.ZodNumber;
|
|
638
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
639
|
+
title: z.ZodString;
|
|
640
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
542
641
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
543
642
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
544
643
|
isAvailable: z.ZodBoolean;
|
|
545
644
|
modelId: z.ZodString;
|
|
546
645
|
}, z.core.$strip>, z.ZodObject<{
|
|
547
646
|
title: z.ZodString;
|
|
647
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
548
648
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
549
649
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
550
650
|
value: z.ZodNumber;
|
|
@@ -700,6 +800,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
700
800
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
701
801
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
702
802
|
title: z.ZodString;
|
|
803
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
703
804
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
704
805
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
705
806
|
order: z.ZodNumber;
|
|
@@ -708,76 +809,90 @@ export declare namespace FindSubscriptionCommand {
|
|
|
708
809
|
maxInputLength: z.ZodNumber;
|
|
709
810
|
}, z.core.$strip>, z.ZodObject<{
|
|
710
811
|
title: z.ZodString;
|
|
812
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
711
813
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
712
814
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
713
815
|
value: z.ZodNumber;
|
|
714
816
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
715
817
|
}, z.core.$strip>, z.ZodObject<{
|
|
716
818
|
title: z.ZodString;
|
|
819
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
717
820
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
718
821
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
719
822
|
tooltip: z.ZodString;
|
|
720
823
|
value: z.ZodNumber;
|
|
721
824
|
}, z.core.$strip>, z.ZodObject<{
|
|
722
825
|
title: z.ZodString;
|
|
826
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
723
827
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
724
828
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
725
829
|
isAvailable: z.ZodBoolean;
|
|
726
830
|
}, z.core.$strip>, z.ZodObject<{
|
|
727
831
|
title: z.ZodString;
|
|
832
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
728
833
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
729
834
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
730
835
|
isAvailable: z.ZodBoolean;
|
|
731
836
|
}, z.core.$strip>, z.ZodObject<{
|
|
732
837
|
title: z.ZodString;
|
|
838
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
733
839
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
734
840
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
735
841
|
isAvailable: z.ZodBoolean;
|
|
736
842
|
modelId: z.ZodString;
|
|
737
843
|
}, z.core.$strip>, z.ZodObject<{
|
|
738
844
|
title: z.ZodString;
|
|
845
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
739
846
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
740
847
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
741
848
|
value: z.ZodNumber;
|
|
742
849
|
}, z.core.$strip>, z.ZodObject<{
|
|
743
850
|
title: z.ZodString;
|
|
851
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
744
852
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
745
853
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
746
854
|
value: z.ZodNumber;
|
|
747
855
|
}, z.core.$strip>, z.ZodObject<{
|
|
748
856
|
title: z.ZodString;
|
|
857
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
749
858
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
750
859
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
751
860
|
isAvailable: z.ZodBoolean;
|
|
752
861
|
modelId: z.ZodString;
|
|
753
862
|
}, z.core.$strip>, z.ZodObject<{
|
|
754
863
|
title: z.ZodString;
|
|
864
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
755
865
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
756
866
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
757
867
|
value: z.ZodNumber;
|
|
758
868
|
}, z.core.$strip>, z.ZodObject<{
|
|
759
869
|
title: z.ZodString;
|
|
870
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
760
871
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
761
872
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
762
873
|
value: z.ZodNumber;
|
|
763
874
|
}, z.core.$strip>, z.ZodObject<{
|
|
764
875
|
title: z.ZodString;
|
|
876
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
765
877
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
766
878
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
767
879
|
isAvailable: z.ZodBoolean;
|
|
768
880
|
modelId: z.ZodString;
|
|
769
881
|
}, z.core.$strip>, z.ZodObject<{
|
|
770
882
|
title: z.ZodString;
|
|
883
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
771
884
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
772
885
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
773
886
|
isAvailable: z.ZodBoolean;
|
|
774
887
|
}, z.core.$strip>, z.ZodObject<{
|
|
775
888
|
title: z.ZodString;
|
|
889
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
776
890
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
777
891
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
778
892
|
value: z.ZodNumber;
|
|
779
893
|
}, z.core.$strip>, z.ZodObject<{
|
|
780
894
|
title: z.ZodString;
|
|
895
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
781
896
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
782
897
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
783
898
|
tokens: z.ZodNumber;
|
|
@@ -793,6 +908,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
793
908
|
}, z.core.$strip>;
|
|
794
909
|
}, z.core.$strip>, z.ZodObject<{
|
|
795
910
|
title: z.ZodString;
|
|
911
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
796
912
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
797
913
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
798
914
|
isAvailable: z.ZodBoolean;
|
|
@@ -809,50 +925,59 @@ export declare namespace FindSubscriptionCommand {
|
|
|
809
925
|
}, z.core.$strip>;
|
|
810
926
|
}, z.core.$strip>, z.ZodObject<{
|
|
811
927
|
title: z.ZodString;
|
|
928
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
812
929
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
813
930
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
814
931
|
value: z.ZodNumber;
|
|
815
932
|
}, z.core.$strip>, z.ZodObject<{
|
|
816
933
|
title: z.ZodString;
|
|
934
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
817
935
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
818
936
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
819
937
|
isAvailable: z.ZodBoolean;
|
|
820
938
|
modelId: z.ZodString;
|
|
821
939
|
}, z.core.$strip>, z.ZodObject<{
|
|
822
940
|
title: z.ZodString;
|
|
941
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
823
942
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
824
943
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
825
944
|
value: z.ZodNumber;
|
|
826
945
|
}, z.core.$strip>, z.ZodObject<{
|
|
827
946
|
title: z.ZodString;
|
|
947
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
828
948
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
829
949
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
830
950
|
isAvailable: z.ZodBoolean;
|
|
831
951
|
modelId: z.ZodString;
|
|
832
952
|
}, z.core.$strip>, z.ZodObject<{
|
|
833
953
|
title: z.ZodString;
|
|
954
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
834
955
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
835
956
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
836
957
|
value: z.ZodNumber;
|
|
837
958
|
}, z.core.$strip>, z.ZodObject<{
|
|
838
959
|
title: z.ZodString;
|
|
960
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
839
961
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
840
962
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
841
963
|
isAvailable: z.ZodBoolean;
|
|
842
964
|
modelId: z.ZodString;
|
|
843
965
|
}, z.core.$strip>, z.ZodObject<{
|
|
844
966
|
title: z.ZodString;
|
|
967
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
845
968
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
846
969
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
847
970
|
value: z.ZodNumber;
|
|
848
971
|
}, z.core.$strip>, z.ZodObject<{
|
|
849
972
|
title: z.ZodString;
|
|
973
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
850
974
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
851
975
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
852
976
|
isAvailable: z.ZodBoolean;
|
|
853
977
|
modelId: z.ZodString;
|
|
854
978
|
}, z.core.$strip>, z.ZodObject<{
|
|
855
979
|
title: z.ZodString;
|
|
980
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
856
981
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
857
982
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
858
983
|
order: z.ZodNumber;
|
|
@@ -860,74 +985,99 @@ export declare namespace FindSubscriptionCommand {
|
|
|
860
985
|
isAvailable: z.ZodBoolean;
|
|
861
986
|
}, z.core.$strip>, z.ZodObject<{
|
|
862
987
|
title: z.ZodString;
|
|
988
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
863
989
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
864
990
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
865
991
|
value: z.ZodNumber;
|
|
866
992
|
}, z.core.$strip>, z.ZodObject<{
|
|
867
993
|
title: z.ZodString;
|
|
994
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
868
995
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
869
996
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
870
997
|
isAvailable: z.ZodBoolean;
|
|
871
998
|
modelId: z.ZodString;
|
|
872
999
|
}, z.core.$strip>, z.ZodObject<{
|
|
873
1000
|
title: z.ZodString;
|
|
1001
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
874
1002
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
875
1003
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
876
1004
|
isAvailable: z.ZodBoolean;
|
|
877
1005
|
modelId: z.ZodString;
|
|
878
1006
|
}, z.core.$strip>, z.ZodObject<{
|
|
879
1007
|
title: z.ZodString;
|
|
1008
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
880
1009
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
881
1010
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
882
1011
|
value: z.ZodNumber;
|
|
883
1012
|
}, z.core.$strip>, z.ZodObject<{
|
|
884
1013
|
title: z.ZodString;
|
|
1014
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
885
1015
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
886
1016
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
887
1017
|
isAvailable: z.ZodBoolean;
|
|
888
1018
|
modelId: z.ZodString;
|
|
889
1019
|
}, z.core.$strip>, z.ZodObject<{
|
|
890
1020
|
title: z.ZodString;
|
|
1021
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
891
1022
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
892
1023
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
893
1024
|
value: z.ZodNumber;
|
|
894
1025
|
}, z.core.$strip>, z.ZodObject<{
|
|
895
1026
|
title: z.ZodString;
|
|
1027
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
896
1028
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
897
1029
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
898
1030
|
isAvailable: z.ZodBoolean;
|
|
899
1031
|
modelId: z.ZodString;
|
|
900
1032
|
}, z.core.$strip>, z.ZodObject<{
|
|
901
1033
|
title: z.ZodString;
|
|
1034
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
902
1035
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
903
1036
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
904
1037
|
value: z.ZodNumber;
|
|
905
1038
|
}, z.core.$strip>, z.ZodObject<{
|
|
906
1039
|
title: z.ZodString;
|
|
1040
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
907
1041
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
908
1042
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
909
1043
|
isAvailable: z.ZodBoolean;
|
|
910
1044
|
modelId: z.ZodString;
|
|
911
1045
|
}, z.core.$strip>, z.ZodObject<{
|
|
912
1046
|
title: z.ZodString;
|
|
1047
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
913
1048
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
914
1049
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
915
1050
|
isAvailable: z.ZodBoolean;
|
|
916
1051
|
modelId: z.ZodString;
|
|
917
1052
|
}, z.core.$strip>, z.ZodObject<{
|
|
918
1053
|
title: z.ZodString;
|
|
1054
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1055
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1056
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
1057
|
+
value: z.ZodNumber;
|
|
1058
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1059
|
+
title: z.ZodString;
|
|
1060
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
919
1061
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
920
1062
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
921
1063
|
isAvailable: z.ZodBoolean;
|
|
922
1064
|
modelId: z.ZodString;
|
|
923
1065
|
}, z.core.$strip>, z.ZodObject<{
|
|
924
1066
|
title: z.ZodString;
|
|
1067
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1068
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1069
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
1070
|
+
value: z.ZodNumber;
|
|
1071
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1072
|
+
title: z.ZodString;
|
|
1073
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
925
1074
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
926
1075
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
927
1076
|
isAvailable: z.ZodBoolean;
|
|
928
1077
|
modelId: z.ZodString;
|
|
929
1078
|
}, z.core.$strip>, z.ZodObject<{
|
|
930
1079
|
title: z.ZodString;
|
|
1080
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
931
1081
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
932
1082
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
933
1083
|
value: z.ZodNumber;
|