@purpleschool/gptbot 0.15.56 → 0.15.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/commands/product/create-product.command.d.ts +76 -0
- package/build/commands/product/find-product.command.d.ts +76 -0
- package/build/commands/product/get-my-products.command.d.ts +38 -0
- package/build/commands/product/update-product.command.d.ts +76 -0
- package/build/commands/subscription/create-subscription.command.d.ts +76 -0
- package/build/commands/subscription/find-subscription.command.d.ts +114 -0
- package/build/commands/subscription/get-available-upgrades.command.d.ts +76 -0
- package/build/commands/subscription/get-free-subscription.command.d.ts +38 -0
- package/build/commands/subscription/get-subscriptions-summary.command.d.ts +190 -0
- package/build/commands/subscription/update-subscription.command.d.ts +76 -0
- package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +76 -0
- package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +38 -0
- package/build/commands/team-to-product/get-team-to-products.command.d.ts +38 -0
- package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +38 -0
- package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
- package/build/commands/user/get-user-products.command.d.ts +38 -0
- package/build/commands/user/get-user-subscriptions.command.d.ts +38 -0
- package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +38 -0
- package/build/models/product.schema.d.ts +38 -0
- package/build/models/subscription-feature.schema.d.ts +77 -0
- package/build/models/subscription-feature.schema.js +1 -0
- package/build/models/subscription-upgrade-schema.d.ts +38 -0
- package/build/models/subscription.schema.d.ts +190 -0
- package/build/models/team-account/team-to-product.schema.d.ts +38 -0
- package/build/models/team-account/team-to-subscription.schema.d.ts +38 -0
- package/build/models/tool-group.schema.d.ts +1 -0
- package/build/models/tool-group.schema.js +1 -0
- package/build/models/user-to-product.schema.d.ts +38 -0
- package/build/models/user-to-subscription.schema.d.ts +114 -0
- package/package.json +1 -1
|
@@ -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,87 @@ 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>;
|
|
255
291
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
256
292
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
257
293
|
isAvailable: z.ZodBoolean;
|
|
258
294
|
modelId: z.ZodString;
|
|
259
295
|
}, z.core.$strip>, z.ZodObject<{
|
|
260
296
|
title: z.ZodString;
|
|
297
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
261
298
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
262
299
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
263
300
|
isAvailable: z.ZodBoolean;
|
|
264
301
|
modelId: z.ZodString;
|
|
265
302
|
}, z.core.$strip>, z.ZodObject<{
|
|
266
303
|
title: z.ZodString;
|
|
304
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
267
305
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
268
306
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
269
307
|
value: z.ZodNumber;
|
|
@@ -317,6 +355,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
317
355
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
318
356
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
319
357
|
title: z.ZodString;
|
|
358
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
320
359
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
321
360
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
322
361
|
order: z.ZodNumber;
|
|
@@ -325,76 +364,90 @@ export declare namespace FindSubscriptionCommand {
|
|
|
325
364
|
maxInputLength: z.ZodNumber;
|
|
326
365
|
}, z.core.$strip>, z.ZodObject<{
|
|
327
366
|
title: z.ZodString;
|
|
367
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
328
368
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
329
369
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
330
370
|
value: z.ZodNumber;
|
|
331
371
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
332
372
|
}, z.core.$strip>, z.ZodObject<{
|
|
333
373
|
title: z.ZodString;
|
|
374
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
334
375
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
335
376
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
336
377
|
tooltip: z.ZodString;
|
|
337
378
|
value: z.ZodNumber;
|
|
338
379
|
}, z.core.$strip>, z.ZodObject<{
|
|
339
380
|
title: z.ZodString;
|
|
381
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
340
382
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
341
383
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
342
384
|
isAvailable: z.ZodBoolean;
|
|
343
385
|
}, z.core.$strip>, z.ZodObject<{
|
|
344
386
|
title: z.ZodString;
|
|
387
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
345
388
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
346
389
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
347
390
|
isAvailable: z.ZodBoolean;
|
|
348
391
|
}, z.core.$strip>, z.ZodObject<{
|
|
349
392
|
title: z.ZodString;
|
|
393
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
350
394
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
351
395
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
352
396
|
isAvailable: z.ZodBoolean;
|
|
353
397
|
modelId: z.ZodString;
|
|
354
398
|
}, z.core.$strip>, z.ZodObject<{
|
|
355
399
|
title: z.ZodString;
|
|
400
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
356
401
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
357
402
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
358
403
|
value: z.ZodNumber;
|
|
359
404
|
}, z.core.$strip>, z.ZodObject<{
|
|
360
405
|
title: z.ZodString;
|
|
406
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
361
407
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
362
408
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
363
409
|
value: z.ZodNumber;
|
|
364
410
|
}, z.core.$strip>, z.ZodObject<{
|
|
365
411
|
title: z.ZodString;
|
|
412
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
366
413
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
367
414
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
368
415
|
isAvailable: z.ZodBoolean;
|
|
369
416
|
modelId: z.ZodString;
|
|
370
417
|
}, z.core.$strip>, z.ZodObject<{
|
|
371
418
|
title: z.ZodString;
|
|
419
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
372
420
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
373
421
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
374
422
|
value: z.ZodNumber;
|
|
375
423
|
}, z.core.$strip>, z.ZodObject<{
|
|
376
424
|
title: z.ZodString;
|
|
425
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
377
426
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
378
427
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
379
428
|
value: z.ZodNumber;
|
|
380
429
|
}, z.core.$strip>, z.ZodObject<{
|
|
381
430
|
title: z.ZodString;
|
|
431
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
382
432
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
383
433
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
384
434
|
isAvailable: z.ZodBoolean;
|
|
385
435
|
modelId: z.ZodString;
|
|
386
436
|
}, z.core.$strip>, z.ZodObject<{
|
|
387
437
|
title: z.ZodString;
|
|
438
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
388
439
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
389
440
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
390
441
|
isAvailable: z.ZodBoolean;
|
|
391
442
|
}, z.core.$strip>, z.ZodObject<{
|
|
392
443
|
title: z.ZodString;
|
|
444
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
393
445
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
394
446
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
395
447
|
value: z.ZodNumber;
|
|
396
448
|
}, z.core.$strip>, z.ZodObject<{
|
|
397
449
|
title: z.ZodString;
|
|
450
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
398
451
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
399
452
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
400
453
|
tokens: z.ZodNumber;
|
|
@@ -410,6 +463,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
410
463
|
}, z.core.$strip>;
|
|
411
464
|
}, z.core.$strip>, z.ZodObject<{
|
|
412
465
|
title: z.ZodString;
|
|
466
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
413
467
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
414
468
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
415
469
|
isAvailable: z.ZodBoolean;
|
|
@@ -426,50 +480,59 @@ export declare namespace FindSubscriptionCommand {
|
|
|
426
480
|
}, z.core.$strip>;
|
|
427
481
|
}, z.core.$strip>, z.ZodObject<{
|
|
428
482
|
title: z.ZodString;
|
|
483
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
429
484
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
430
485
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
431
486
|
value: z.ZodNumber;
|
|
432
487
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
488
|
title: z.ZodString;
|
|
489
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
490
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
435
491
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
436
492
|
isAvailable: z.ZodBoolean;
|
|
437
493
|
modelId: z.ZodString;
|
|
438
494
|
}, z.core.$strip>, z.ZodObject<{
|
|
439
495
|
title: z.ZodString;
|
|
496
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
440
497
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
441
498
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
442
499
|
value: z.ZodNumber;
|
|
443
500
|
}, z.core.$strip>, z.ZodObject<{
|
|
444
501
|
title: z.ZodString;
|
|
502
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
445
503
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
446
504
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
447
505
|
isAvailable: z.ZodBoolean;
|
|
448
506
|
modelId: z.ZodString;
|
|
449
507
|
}, z.core.$strip>, z.ZodObject<{
|
|
450
508
|
title: z.ZodString;
|
|
509
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
451
510
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
452
511
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
453
512
|
value: z.ZodNumber;
|
|
454
513
|
}, z.core.$strip>, z.ZodObject<{
|
|
455
514
|
title: z.ZodString;
|
|
515
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
456
516
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
457
517
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
458
518
|
isAvailable: z.ZodBoolean;
|
|
459
519
|
modelId: z.ZodString;
|
|
460
520
|
}, z.core.$strip>, z.ZodObject<{
|
|
461
521
|
title: z.ZodString;
|
|
522
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
462
523
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
463
524
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
464
525
|
value: z.ZodNumber;
|
|
465
526
|
}, z.core.$strip>, z.ZodObject<{
|
|
466
527
|
title: z.ZodString;
|
|
528
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
467
529
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
468
530
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
469
531
|
isAvailable: z.ZodBoolean;
|
|
470
532
|
modelId: z.ZodString;
|
|
471
533
|
}, z.core.$strip>, z.ZodObject<{
|
|
472
534
|
title: z.ZodString;
|
|
535
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
473
536
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
474
537
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
475
538
|
order: z.ZodNumber;
|
|
@@ -477,74 +540,87 @@ export declare namespace FindSubscriptionCommand {
|
|
|
477
540
|
isAvailable: z.ZodBoolean;
|
|
478
541
|
}, z.core.$strip>, z.ZodObject<{
|
|
479
542
|
title: z.ZodString;
|
|
543
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
480
544
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
481
545
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
482
546
|
value: z.ZodNumber;
|
|
483
547
|
}, z.core.$strip>, z.ZodObject<{
|
|
484
548
|
title: z.ZodString;
|
|
549
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
485
550
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
486
551
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
487
552
|
isAvailable: z.ZodBoolean;
|
|
488
553
|
modelId: z.ZodString;
|
|
489
554
|
}, z.core.$strip>, z.ZodObject<{
|
|
490
555
|
title: z.ZodString;
|
|
556
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
491
557
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
492
558
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
493
559
|
isAvailable: z.ZodBoolean;
|
|
494
560
|
modelId: z.ZodString;
|
|
495
561
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
562
|
title: z.ZodString;
|
|
563
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
564
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
498
565
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
499
566
|
value: z.ZodNumber;
|
|
500
567
|
}, z.core.$strip>, z.ZodObject<{
|
|
501
568
|
title: z.ZodString;
|
|
569
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
502
570
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
503
571
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
504
572
|
isAvailable: z.ZodBoolean;
|
|
505
573
|
modelId: z.ZodString;
|
|
506
574
|
}, z.core.$strip>, z.ZodObject<{
|
|
507
575
|
title: z.ZodString;
|
|
576
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
508
577
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
509
578
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
510
579
|
value: z.ZodNumber;
|
|
511
580
|
}, z.core.$strip>, z.ZodObject<{
|
|
512
581
|
title: z.ZodString;
|
|
582
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
513
583
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
514
584
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
515
585
|
isAvailable: z.ZodBoolean;
|
|
516
586
|
modelId: z.ZodString;
|
|
517
587
|
}, z.core.$strip>, z.ZodObject<{
|
|
518
588
|
title: z.ZodString;
|
|
589
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
519
590
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
520
591
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
521
592
|
value: z.ZodNumber;
|
|
522
593
|
}, z.core.$strip>, z.ZodObject<{
|
|
523
594
|
title: z.ZodString;
|
|
595
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
524
596
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
525
597
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
526
598
|
isAvailable: z.ZodBoolean;
|
|
527
599
|
modelId: z.ZodString;
|
|
528
600
|
}, z.core.$strip>, z.ZodObject<{
|
|
529
601
|
title: z.ZodString;
|
|
602
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
530
603
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
531
604
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
532
605
|
isAvailable: z.ZodBoolean;
|
|
533
606
|
modelId: z.ZodString;
|
|
534
607
|
}, z.core.$strip>, z.ZodObject<{
|
|
535
608
|
title: z.ZodString;
|
|
609
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
536
610
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
537
611
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
538
612
|
isAvailable: z.ZodBoolean;
|
|
539
613
|
modelId: z.ZodString;
|
|
540
614
|
}, z.core.$strip>, z.ZodObject<{
|
|
541
615
|
title: z.ZodString;
|
|
616
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
542
617
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
543
618
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
544
619
|
isAvailable: z.ZodBoolean;
|
|
545
620
|
modelId: z.ZodString;
|
|
546
621
|
}, z.core.$strip>, z.ZodObject<{
|
|
547
622
|
title: z.ZodString;
|
|
623
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
548
624
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
549
625
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
550
626
|
value: z.ZodNumber;
|
|
@@ -700,6 +776,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
700
776
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
701
777
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
702
778
|
title: z.ZodString;
|
|
779
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
703
780
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
704
781
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
705
782
|
order: z.ZodNumber;
|
|
@@ -708,76 +785,90 @@ export declare namespace FindSubscriptionCommand {
|
|
|
708
785
|
maxInputLength: z.ZodNumber;
|
|
709
786
|
}, z.core.$strip>, z.ZodObject<{
|
|
710
787
|
title: z.ZodString;
|
|
788
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
711
789
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
712
790
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
713
791
|
value: z.ZodNumber;
|
|
714
792
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
715
793
|
}, z.core.$strip>, z.ZodObject<{
|
|
716
794
|
title: z.ZodString;
|
|
795
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
717
796
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
718
797
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
719
798
|
tooltip: z.ZodString;
|
|
720
799
|
value: z.ZodNumber;
|
|
721
800
|
}, z.core.$strip>, z.ZodObject<{
|
|
722
801
|
title: z.ZodString;
|
|
802
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
723
803
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
724
804
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
725
805
|
isAvailable: z.ZodBoolean;
|
|
726
806
|
}, z.core.$strip>, z.ZodObject<{
|
|
727
807
|
title: z.ZodString;
|
|
808
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
728
809
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
729
810
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
730
811
|
isAvailable: z.ZodBoolean;
|
|
731
812
|
}, z.core.$strip>, z.ZodObject<{
|
|
732
813
|
title: z.ZodString;
|
|
814
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
733
815
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
734
816
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
735
817
|
isAvailable: z.ZodBoolean;
|
|
736
818
|
modelId: z.ZodString;
|
|
737
819
|
}, z.core.$strip>, z.ZodObject<{
|
|
738
820
|
title: z.ZodString;
|
|
821
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
739
822
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
740
823
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
741
824
|
value: z.ZodNumber;
|
|
742
825
|
}, z.core.$strip>, z.ZodObject<{
|
|
743
826
|
title: z.ZodString;
|
|
827
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
744
828
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
745
829
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
746
830
|
value: z.ZodNumber;
|
|
747
831
|
}, z.core.$strip>, z.ZodObject<{
|
|
748
832
|
title: z.ZodString;
|
|
833
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
749
834
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
750
835
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
751
836
|
isAvailable: z.ZodBoolean;
|
|
752
837
|
modelId: z.ZodString;
|
|
753
838
|
}, z.core.$strip>, z.ZodObject<{
|
|
754
839
|
title: z.ZodString;
|
|
840
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
755
841
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
756
842
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
757
843
|
value: z.ZodNumber;
|
|
758
844
|
}, z.core.$strip>, z.ZodObject<{
|
|
759
845
|
title: z.ZodString;
|
|
846
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
760
847
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
761
848
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
762
849
|
value: z.ZodNumber;
|
|
763
850
|
}, z.core.$strip>, z.ZodObject<{
|
|
764
851
|
title: z.ZodString;
|
|
852
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
765
853
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
766
854
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
767
855
|
isAvailable: z.ZodBoolean;
|
|
768
856
|
modelId: z.ZodString;
|
|
769
857
|
}, z.core.$strip>, z.ZodObject<{
|
|
770
858
|
title: z.ZodString;
|
|
859
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
771
860
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
772
861
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
773
862
|
isAvailable: z.ZodBoolean;
|
|
774
863
|
}, z.core.$strip>, z.ZodObject<{
|
|
775
864
|
title: z.ZodString;
|
|
865
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
776
866
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
777
867
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
778
868
|
value: z.ZodNumber;
|
|
779
869
|
}, z.core.$strip>, z.ZodObject<{
|
|
780
870
|
title: z.ZodString;
|
|
871
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
781
872
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
782
873
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
783
874
|
tokens: z.ZodNumber;
|
|
@@ -793,6 +884,7 @@ export declare namespace FindSubscriptionCommand {
|
|
|
793
884
|
}, z.core.$strip>;
|
|
794
885
|
}, z.core.$strip>, z.ZodObject<{
|
|
795
886
|
title: z.ZodString;
|
|
887
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
796
888
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
797
889
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
798
890
|
isAvailable: z.ZodBoolean;
|
|
@@ -809,50 +901,59 @@ export declare namespace FindSubscriptionCommand {
|
|
|
809
901
|
}, z.core.$strip>;
|
|
810
902
|
}, z.core.$strip>, z.ZodObject<{
|
|
811
903
|
title: z.ZodString;
|
|
904
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
812
905
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
813
906
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
814
907
|
value: z.ZodNumber;
|
|
815
908
|
}, z.core.$strip>, z.ZodObject<{
|
|
816
909
|
title: z.ZodString;
|
|
910
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
817
911
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
818
912
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
819
913
|
isAvailable: z.ZodBoolean;
|
|
820
914
|
modelId: z.ZodString;
|
|
821
915
|
}, z.core.$strip>, z.ZodObject<{
|
|
822
916
|
title: z.ZodString;
|
|
917
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
823
918
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
824
919
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
825
920
|
value: z.ZodNumber;
|
|
826
921
|
}, z.core.$strip>, z.ZodObject<{
|
|
827
922
|
title: z.ZodString;
|
|
923
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
828
924
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
829
925
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
830
926
|
isAvailable: z.ZodBoolean;
|
|
831
927
|
modelId: z.ZodString;
|
|
832
928
|
}, z.core.$strip>, z.ZodObject<{
|
|
833
929
|
title: z.ZodString;
|
|
930
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
834
931
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
835
932
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
836
933
|
value: z.ZodNumber;
|
|
837
934
|
}, z.core.$strip>, z.ZodObject<{
|
|
838
935
|
title: z.ZodString;
|
|
936
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
839
937
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
840
938
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
841
939
|
isAvailable: z.ZodBoolean;
|
|
842
940
|
modelId: z.ZodString;
|
|
843
941
|
}, z.core.$strip>, z.ZodObject<{
|
|
844
942
|
title: z.ZodString;
|
|
943
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
845
944
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
846
945
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
847
946
|
value: z.ZodNumber;
|
|
848
947
|
}, z.core.$strip>, z.ZodObject<{
|
|
849
948
|
title: z.ZodString;
|
|
949
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
850
950
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
851
951
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
852
952
|
isAvailable: z.ZodBoolean;
|
|
853
953
|
modelId: z.ZodString;
|
|
854
954
|
}, z.core.$strip>, z.ZodObject<{
|
|
855
955
|
title: z.ZodString;
|
|
956
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
856
957
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
857
958
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
858
959
|
order: z.ZodNumber;
|
|
@@ -860,74 +961,87 @@ export declare namespace FindSubscriptionCommand {
|
|
|
860
961
|
isAvailable: z.ZodBoolean;
|
|
861
962
|
}, z.core.$strip>, z.ZodObject<{
|
|
862
963
|
title: z.ZodString;
|
|
964
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
863
965
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
864
966
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
865
967
|
value: z.ZodNumber;
|
|
866
968
|
}, z.core.$strip>, z.ZodObject<{
|
|
867
969
|
title: z.ZodString;
|
|
970
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
868
971
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
869
972
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
870
973
|
isAvailable: z.ZodBoolean;
|
|
871
974
|
modelId: z.ZodString;
|
|
872
975
|
}, z.core.$strip>, z.ZodObject<{
|
|
873
976
|
title: z.ZodString;
|
|
977
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
874
978
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
875
979
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
876
980
|
isAvailable: z.ZodBoolean;
|
|
877
981
|
modelId: z.ZodString;
|
|
878
982
|
}, z.core.$strip>, z.ZodObject<{
|
|
879
983
|
title: z.ZodString;
|
|
984
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
880
985
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
881
986
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
882
987
|
value: z.ZodNumber;
|
|
883
988
|
}, z.core.$strip>, z.ZodObject<{
|
|
884
989
|
title: z.ZodString;
|
|
990
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
885
991
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
886
992
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
887
993
|
isAvailable: z.ZodBoolean;
|
|
888
994
|
modelId: z.ZodString;
|
|
889
995
|
}, z.core.$strip>, z.ZodObject<{
|
|
890
996
|
title: z.ZodString;
|
|
997
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
891
998
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
892
999
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
893
1000
|
value: z.ZodNumber;
|
|
894
1001
|
}, z.core.$strip>, z.ZodObject<{
|
|
895
1002
|
title: z.ZodString;
|
|
1003
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
896
1004
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
897
1005
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
898
1006
|
isAvailable: z.ZodBoolean;
|
|
899
1007
|
modelId: z.ZodString;
|
|
900
1008
|
}, z.core.$strip>, z.ZodObject<{
|
|
901
1009
|
title: z.ZodString;
|
|
1010
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
902
1011
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
903
1012
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
904
1013
|
value: z.ZodNumber;
|
|
905
1014
|
}, z.core.$strip>, z.ZodObject<{
|
|
906
1015
|
title: z.ZodString;
|
|
1016
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
907
1017
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
908
1018
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
909
1019
|
isAvailable: z.ZodBoolean;
|
|
910
1020
|
modelId: z.ZodString;
|
|
911
1021
|
}, z.core.$strip>, z.ZodObject<{
|
|
912
1022
|
title: z.ZodString;
|
|
1023
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
913
1024
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
914
1025
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
915
1026
|
isAvailable: z.ZodBoolean;
|
|
916
1027
|
modelId: z.ZodString;
|
|
917
1028
|
}, z.core.$strip>, z.ZodObject<{
|
|
918
1029
|
title: z.ZodString;
|
|
1030
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
919
1031
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
920
1032
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
921
1033
|
isAvailable: z.ZodBoolean;
|
|
922
1034
|
modelId: z.ZodString;
|
|
923
1035
|
}, z.core.$strip>, z.ZodObject<{
|
|
924
1036
|
title: z.ZodString;
|
|
1037
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
925
1038
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
926
1039
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
927
1040
|
isAvailable: z.ZodBoolean;
|
|
928
1041
|
modelId: z.ZodString;
|
|
929
1042
|
}, z.core.$strip>, z.ZodObject<{
|
|
930
1043
|
title: z.ZodString;
|
|
1044
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
931
1045
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
932
1046
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
933
1047
|
value: z.ZodNumber;
|