@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
|
@@ -25,6 +25,7 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
25
25
|
action: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>>;
|
|
26
26
|
features: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
27
27
|
title: z.ZodString;
|
|
28
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
28
29
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
29
30
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
30
31
|
order: z.ZodNumber;
|
|
@@ -33,76 +34,90 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
33
34
|
maxInputLength: z.ZodNumber;
|
|
34
35
|
}, z.core.$strip>, z.ZodObject<{
|
|
35
36
|
title: z.ZodString;
|
|
37
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
36
38
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
37
39
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
38
40
|
value: z.ZodNumber;
|
|
39
41
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
40
42
|
}, z.core.$strip>, z.ZodObject<{
|
|
41
43
|
title: z.ZodString;
|
|
44
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
42
45
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
43
46
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
44
47
|
tooltip: z.ZodString;
|
|
45
48
|
value: z.ZodNumber;
|
|
46
49
|
}, z.core.$strip>, z.ZodObject<{
|
|
47
50
|
title: z.ZodString;
|
|
51
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
48
52
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
49
53
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
50
54
|
isAvailable: z.ZodBoolean;
|
|
51
55
|
}, z.core.$strip>, z.ZodObject<{
|
|
52
56
|
title: z.ZodString;
|
|
57
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
53
58
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
54
59
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
55
60
|
isAvailable: z.ZodBoolean;
|
|
56
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
57
62
|
title: z.ZodString;
|
|
63
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
58
64
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
59
65
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
60
66
|
isAvailable: z.ZodBoolean;
|
|
61
67
|
modelId: z.ZodString;
|
|
62
68
|
}, z.core.$strip>, z.ZodObject<{
|
|
63
69
|
title: z.ZodString;
|
|
70
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
64
71
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
65
72
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
66
73
|
value: z.ZodNumber;
|
|
67
74
|
}, z.core.$strip>, z.ZodObject<{
|
|
68
75
|
title: z.ZodString;
|
|
76
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
69
77
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
70
78
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
71
79
|
value: z.ZodNumber;
|
|
72
80
|
}, z.core.$strip>, z.ZodObject<{
|
|
73
81
|
title: z.ZodString;
|
|
82
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
74
83
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
75
84
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
76
85
|
isAvailable: z.ZodBoolean;
|
|
77
86
|
modelId: z.ZodString;
|
|
78
87
|
}, z.core.$strip>, z.ZodObject<{
|
|
79
88
|
title: z.ZodString;
|
|
89
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
80
90
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
81
91
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
82
92
|
value: z.ZodNumber;
|
|
83
93
|
}, z.core.$strip>, z.ZodObject<{
|
|
84
94
|
title: z.ZodString;
|
|
95
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
85
96
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
86
97
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
87
98
|
value: z.ZodNumber;
|
|
88
99
|
}, z.core.$strip>, z.ZodObject<{
|
|
89
100
|
title: z.ZodString;
|
|
101
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
90
102
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
91
103
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
92
104
|
isAvailable: z.ZodBoolean;
|
|
93
105
|
modelId: z.ZodString;
|
|
94
106
|
}, z.core.$strip>, z.ZodObject<{
|
|
95
107
|
title: z.ZodString;
|
|
108
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
96
109
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
97
110
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
98
111
|
isAvailable: z.ZodBoolean;
|
|
99
112
|
}, z.core.$strip>, z.ZodObject<{
|
|
100
113
|
title: z.ZodString;
|
|
114
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
101
115
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
102
116
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
103
117
|
value: z.ZodNumber;
|
|
104
118
|
}, z.core.$strip>, z.ZodObject<{
|
|
105
119
|
title: z.ZodString;
|
|
120
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
106
121
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
107
122
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
108
123
|
tokens: z.ZodNumber;
|
|
@@ -118,6 +133,7 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
118
133
|
}, z.core.$strip>;
|
|
119
134
|
}, z.core.$strip>, z.ZodObject<{
|
|
120
135
|
title: z.ZodString;
|
|
136
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
121
137
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
122
138
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
123
139
|
isAvailable: z.ZodBoolean;
|
|
@@ -134,50 +150,59 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
134
150
|
}, z.core.$strip>;
|
|
135
151
|
}, z.core.$strip>, z.ZodObject<{
|
|
136
152
|
title: z.ZodString;
|
|
153
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
137
154
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
138
155
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
139
156
|
value: z.ZodNumber;
|
|
140
157
|
}, z.core.$strip>, z.ZodObject<{
|
|
141
158
|
title: z.ZodString;
|
|
159
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
142
160
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
143
161
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
144
162
|
isAvailable: z.ZodBoolean;
|
|
145
163
|
modelId: z.ZodString;
|
|
146
164
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
165
|
title: z.ZodString;
|
|
166
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
167
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
149
168
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
150
169
|
value: z.ZodNumber;
|
|
151
170
|
}, z.core.$strip>, z.ZodObject<{
|
|
152
171
|
title: z.ZodString;
|
|
172
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
153
173
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
154
174
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
155
175
|
isAvailable: z.ZodBoolean;
|
|
156
176
|
modelId: z.ZodString;
|
|
157
177
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
178
|
title: z.ZodString;
|
|
179
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
180
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
160
181
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
161
182
|
value: z.ZodNumber;
|
|
162
183
|
}, z.core.$strip>, z.ZodObject<{
|
|
163
184
|
title: z.ZodString;
|
|
185
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
164
186
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
165
187
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
166
188
|
isAvailable: z.ZodBoolean;
|
|
167
189
|
modelId: z.ZodString;
|
|
168
190
|
}, z.core.$strip>, z.ZodObject<{
|
|
169
191
|
title: z.ZodString;
|
|
192
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
170
193
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
171
194
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
172
195
|
value: z.ZodNumber;
|
|
173
196
|
}, z.core.$strip>, z.ZodObject<{
|
|
174
197
|
title: z.ZodString;
|
|
198
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
175
199
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
176
200
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
177
201
|
isAvailable: z.ZodBoolean;
|
|
178
202
|
modelId: z.ZodString;
|
|
179
203
|
}, z.core.$strip>, z.ZodObject<{
|
|
180
204
|
title: z.ZodString;
|
|
205
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
181
206
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
182
207
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
183
208
|
order: z.ZodNumber;
|
|
@@ -185,74 +210,99 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
185
210
|
isAvailable: z.ZodBoolean;
|
|
186
211
|
}, z.core.$strip>, z.ZodObject<{
|
|
187
212
|
title: z.ZodString;
|
|
213
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
188
214
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
189
215
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
190
216
|
value: z.ZodNumber;
|
|
191
217
|
}, z.core.$strip>, z.ZodObject<{
|
|
192
218
|
title: z.ZodString;
|
|
219
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
193
220
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
194
221
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
195
222
|
isAvailable: z.ZodBoolean;
|
|
196
223
|
modelId: z.ZodString;
|
|
197
224
|
}, z.core.$strip>, z.ZodObject<{
|
|
198
225
|
title: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
199
227
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
200
228
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
201
229
|
isAvailable: z.ZodBoolean;
|
|
202
230
|
modelId: z.ZodString;
|
|
203
231
|
}, z.core.$strip>, z.ZodObject<{
|
|
204
232
|
title: z.ZodString;
|
|
233
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
205
234
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
206
235
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
207
236
|
value: z.ZodNumber;
|
|
208
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
209
238
|
title: z.ZodString;
|
|
239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
210
240
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
211
241
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
212
242
|
isAvailable: z.ZodBoolean;
|
|
213
243
|
modelId: z.ZodString;
|
|
214
244
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
245
|
title: z.ZodString;
|
|
246
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
247
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
217
248
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
218
249
|
value: z.ZodNumber;
|
|
219
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
220
251
|
title: z.ZodString;
|
|
252
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
221
253
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
222
254
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
223
255
|
isAvailable: z.ZodBoolean;
|
|
224
256
|
modelId: z.ZodString;
|
|
225
257
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
258
|
title: z.ZodString;
|
|
259
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
260
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
228
261
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
229
262
|
value: z.ZodNumber;
|
|
230
263
|
}, z.core.$strip>, z.ZodObject<{
|
|
231
264
|
title: z.ZodString;
|
|
265
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
232
266
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
233
267
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
234
268
|
isAvailable: z.ZodBoolean;
|
|
235
269
|
modelId: z.ZodString;
|
|
236
270
|
}, z.core.$strip>, z.ZodObject<{
|
|
237
271
|
title: z.ZodString;
|
|
272
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
238
273
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
239
274
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
240
275
|
isAvailable: z.ZodBoolean;
|
|
241
276
|
modelId: z.ZodString;
|
|
242
277
|
}, z.core.$strip>, z.ZodObject<{
|
|
243
278
|
title: z.ZodString;
|
|
279
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
280
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
281
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
282
|
+
value: z.ZodNumber;
|
|
283
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
284
|
+
title: z.ZodString;
|
|
285
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
244
286
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
245
287
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
246
288
|
isAvailable: z.ZodBoolean;
|
|
247
289
|
modelId: z.ZodString;
|
|
248
290
|
}, z.core.$strip>, z.ZodObject<{
|
|
249
291
|
title: z.ZodString;
|
|
292
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
293
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
294
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
295
|
+
value: z.ZodNumber;
|
|
296
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
297
|
+
title: z.ZodString;
|
|
298
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
250
299
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
251
300
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
252
301
|
isAvailable: z.ZodBoolean;
|
|
253
302
|
modelId: z.ZodString;
|
|
254
303
|
}, z.core.$strip>, z.ZodObject<{
|
|
255
304
|
title: z.ZodString;
|
|
305
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
256
306
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
257
307
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
258
308
|
value: z.ZodNumber;
|
|
@@ -310,6 +360,7 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
310
360
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
311
361
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
312
362
|
title: z.ZodString;
|
|
363
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
313
364
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
314
365
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
315
366
|
order: z.ZodNumber;
|
|
@@ -318,76 +369,90 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
318
369
|
maxInputLength: z.ZodNumber;
|
|
319
370
|
}, z.core.$strip>, z.ZodObject<{
|
|
320
371
|
title: z.ZodString;
|
|
372
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
321
373
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
322
374
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
323
375
|
value: z.ZodNumber;
|
|
324
376
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
325
377
|
}, z.core.$strip>, z.ZodObject<{
|
|
326
378
|
title: z.ZodString;
|
|
379
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
327
380
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
328
381
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
329
382
|
tooltip: z.ZodString;
|
|
330
383
|
value: z.ZodNumber;
|
|
331
384
|
}, z.core.$strip>, z.ZodObject<{
|
|
332
385
|
title: z.ZodString;
|
|
386
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
333
387
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
334
388
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
335
389
|
isAvailable: z.ZodBoolean;
|
|
336
390
|
}, z.core.$strip>, z.ZodObject<{
|
|
337
391
|
title: z.ZodString;
|
|
392
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
338
393
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
339
394
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
340
395
|
isAvailable: z.ZodBoolean;
|
|
341
396
|
}, z.core.$strip>, z.ZodObject<{
|
|
342
397
|
title: z.ZodString;
|
|
398
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
343
399
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
344
400
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
345
401
|
isAvailable: z.ZodBoolean;
|
|
346
402
|
modelId: z.ZodString;
|
|
347
403
|
}, z.core.$strip>, z.ZodObject<{
|
|
348
404
|
title: z.ZodString;
|
|
405
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
349
406
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
350
407
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
351
408
|
value: z.ZodNumber;
|
|
352
409
|
}, z.core.$strip>, z.ZodObject<{
|
|
353
410
|
title: z.ZodString;
|
|
411
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
354
412
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
355
413
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
356
414
|
value: z.ZodNumber;
|
|
357
415
|
}, z.core.$strip>, z.ZodObject<{
|
|
358
416
|
title: z.ZodString;
|
|
417
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
359
418
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
360
419
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
361
420
|
isAvailable: z.ZodBoolean;
|
|
362
421
|
modelId: z.ZodString;
|
|
363
422
|
}, z.core.$strip>, z.ZodObject<{
|
|
364
423
|
title: z.ZodString;
|
|
424
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
365
425
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
366
426
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
367
427
|
value: z.ZodNumber;
|
|
368
428
|
}, z.core.$strip>, z.ZodObject<{
|
|
369
429
|
title: z.ZodString;
|
|
430
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
370
431
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
371
432
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
372
433
|
value: z.ZodNumber;
|
|
373
434
|
}, z.core.$strip>, z.ZodObject<{
|
|
374
435
|
title: z.ZodString;
|
|
436
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
375
437
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
376
438
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
377
439
|
isAvailable: z.ZodBoolean;
|
|
378
440
|
modelId: z.ZodString;
|
|
379
441
|
}, z.core.$strip>, z.ZodObject<{
|
|
380
442
|
title: z.ZodString;
|
|
443
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
381
444
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
382
445
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
383
446
|
isAvailable: z.ZodBoolean;
|
|
384
447
|
}, z.core.$strip>, z.ZodObject<{
|
|
385
448
|
title: z.ZodString;
|
|
449
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
386
450
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
387
451
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
388
452
|
value: z.ZodNumber;
|
|
389
453
|
}, z.core.$strip>, z.ZodObject<{
|
|
390
454
|
title: z.ZodString;
|
|
455
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
391
456
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
392
457
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
393
458
|
tokens: z.ZodNumber;
|
|
@@ -403,6 +468,7 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
403
468
|
}, z.core.$strip>;
|
|
404
469
|
}, z.core.$strip>, z.ZodObject<{
|
|
405
470
|
title: z.ZodString;
|
|
471
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
406
472
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
407
473
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
408
474
|
isAvailable: z.ZodBoolean;
|
|
@@ -419,50 +485,59 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
419
485
|
}, z.core.$strip>;
|
|
420
486
|
}, z.core.$strip>, z.ZodObject<{
|
|
421
487
|
title: z.ZodString;
|
|
488
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
422
489
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
423
490
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
424
491
|
value: z.ZodNumber;
|
|
425
492
|
}, z.core.$strip>, z.ZodObject<{
|
|
426
493
|
title: z.ZodString;
|
|
494
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
427
495
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
428
496
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
429
497
|
isAvailable: z.ZodBoolean;
|
|
430
498
|
modelId: z.ZodString;
|
|
431
499
|
}, z.core.$strip>, z.ZodObject<{
|
|
432
500
|
title: z.ZodString;
|
|
501
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
433
502
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
434
503
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
435
504
|
value: z.ZodNumber;
|
|
436
505
|
}, z.core.$strip>, z.ZodObject<{
|
|
437
506
|
title: z.ZodString;
|
|
507
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
438
508
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
439
509
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
440
510
|
isAvailable: z.ZodBoolean;
|
|
441
511
|
modelId: z.ZodString;
|
|
442
512
|
}, z.core.$strip>, z.ZodObject<{
|
|
443
513
|
title: z.ZodString;
|
|
514
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
444
515
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
445
516
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
446
517
|
value: z.ZodNumber;
|
|
447
518
|
}, z.core.$strip>, z.ZodObject<{
|
|
448
519
|
title: z.ZodString;
|
|
520
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
449
521
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
450
522
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
451
523
|
isAvailable: z.ZodBoolean;
|
|
452
524
|
modelId: z.ZodString;
|
|
453
525
|
}, z.core.$strip>, z.ZodObject<{
|
|
454
526
|
title: z.ZodString;
|
|
527
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
455
528
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
456
529
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
457
530
|
value: z.ZodNumber;
|
|
458
531
|
}, z.core.$strip>, z.ZodObject<{
|
|
459
532
|
title: z.ZodString;
|
|
533
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
460
534
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
461
535
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
462
536
|
isAvailable: z.ZodBoolean;
|
|
463
537
|
modelId: z.ZodString;
|
|
464
538
|
}, z.core.$strip>, z.ZodObject<{
|
|
465
539
|
title: z.ZodString;
|
|
540
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
466
541
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
467
542
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
468
543
|
order: z.ZodNumber;
|
|
@@ -470,74 +545,99 @@ export declare namespace UpdateSubscriptionCommand {
|
|
|
470
545
|
isAvailable: z.ZodBoolean;
|
|
471
546
|
}, z.core.$strip>, z.ZodObject<{
|
|
472
547
|
title: z.ZodString;
|
|
548
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
473
549
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
474
550
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
475
551
|
value: z.ZodNumber;
|
|
476
552
|
}, z.core.$strip>, z.ZodObject<{
|
|
477
553
|
title: z.ZodString;
|
|
554
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
478
555
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
479
556
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
480
557
|
isAvailable: z.ZodBoolean;
|
|
481
558
|
modelId: z.ZodString;
|
|
482
559
|
}, z.core.$strip>, z.ZodObject<{
|
|
483
560
|
title: z.ZodString;
|
|
561
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
484
562
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
485
563
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
486
564
|
isAvailable: z.ZodBoolean;
|
|
487
565
|
modelId: z.ZodString;
|
|
488
566
|
}, z.core.$strip>, z.ZodObject<{
|
|
489
567
|
title: z.ZodString;
|
|
568
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
490
569
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
491
570
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
492
571
|
value: z.ZodNumber;
|
|
493
572
|
}, z.core.$strip>, z.ZodObject<{
|
|
494
573
|
title: z.ZodString;
|
|
574
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
495
575
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
496
576
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
497
577
|
isAvailable: z.ZodBoolean;
|
|
498
578
|
modelId: z.ZodString;
|
|
499
579
|
}, z.core.$strip>, z.ZodObject<{
|
|
500
580
|
title: z.ZodString;
|
|
581
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
501
582
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
502
583
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
503
584
|
value: z.ZodNumber;
|
|
504
585
|
}, z.core.$strip>, z.ZodObject<{
|
|
505
586
|
title: z.ZodString;
|
|
587
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
506
588
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
507
589
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
508
590
|
isAvailable: z.ZodBoolean;
|
|
509
591
|
modelId: z.ZodString;
|
|
510
592
|
}, z.core.$strip>, z.ZodObject<{
|
|
511
593
|
title: z.ZodString;
|
|
594
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
512
595
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
513
596
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
514
597
|
value: z.ZodNumber;
|
|
515
598
|
}, z.core.$strip>, z.ZodObject<{
|
|
516
599
|
title: z.ZodString;
|
|
600
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
517
601
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
518
602
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
519
603
|
isAvailable: z.ZodBoolean;
|
|
520
604
|
modelId: z.ZodString;
|
|
521
605
|
}, z.core.$strip>, z.ZodObject<{
|
|
522
606
|
title: z.ZodString;
|
|
607
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
523
608
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
524
609
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
525
610
|
isAvailable: z.ZodBoolean;
|
|
526
611
|
modelId: z.ZodString;
|
|
527
612
|
}, z.core.$strip>, z.ZodObject<{
|
|
528
613
|
title: z.ZodString;
|
|
614
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
615
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
616
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
617
|
+
value: z.ZodNumber;
|
|
618
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
619
|
+
title: z.ZodString;
|
|
620
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
529
621
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
530
622
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
531
623
|
isAvailable: z.ZodBoolean;
|
|
532
624
|
modelId: z.ZodString;
|
|
533
625
|
}, z.core.$strip>, z.ZodObject<{
|
|
534
626
|
title: z.ZodString;
|
|
627
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
628
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
629
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
630
|
+
value: z.ZodNumber;
|
|
631
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
632
|
+
title: z.ZodString;
|
|
633
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
535
634
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
536
635
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
537
636
|
isAvailable: z.ZodBoolean;
|
|
538
637
|
modelId: z.ZodString;
|
|
539
638
|
}, z.core.$strip>, z.ZodObject<{
|
|
540
639
|
title: z.ZodString;
|
|
640
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
541
641
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
542
642
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
543
643
|
value: z.ZodNumber;
|