@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 CreateSubscriptionCommand {
|
|
|
25
25
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
26
26
|
features: 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 CreateSubscriptionCommand {
|
|
|
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 CreateSubscriptionCommand {
|
|
|
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 CreateSubscriptionCommand {
|
|
|
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 CreateSubscriptionCommand {
|
|
|
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;
|
|
@@ -306,6 +356,7 @@ export declare namespace CreateSubscriptionCommand {
|
|
|
306
356
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
307
357
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
308
358
|
title: z.ZodString;
|
|
359
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
309
360
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
310
361
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
311
362
|
order: z.ZodNumber;
|
|
@@ -314,76 +365,90 @@ export declare namespace CreateSubscriptionCommand {
|
|
|
314
365
|
maxInputLength: z.ZodNumber;
|
|
315
366
|
}, z.core.$strip>, z.ZodObject<{
|
|
316
367
|
title: z.ZodString;
|
|
368
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
317
369
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
318
370
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
319
371
|
value: z.ZodNumber;
|
|
320
372
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
321
373
|
}, z.core.$strip>, z.ZodObject<{
|
|
322
374
|
title: z.ZodString;
|
|
375
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
323
376
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
324
377
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
325
378
|
tooltip: z.ZodString;
|
|
326
379
|
value: z.ZodNumber;
|
|
327
380
|
}, z.core.$strip>, z.ZodObject<{
|
|
328
381
|
title: z.ZodString;
|
|
382
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
329
383
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
330
384
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
331
385
|
isAvailable: z.ZodBoolean;
|
|
332
386
|
}, z.core.$strip>, z.ZodObject<{
|
|
333
387
|
title: z.ZodString;
|
|
388
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
334
389
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
335
390
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
336
391
|
isAvailable: z.ZodBoolean;
|
|
337
392
|
}, z.core.$strip>, z.ZodObject<{
|
|
338
393
|
title: z.ZodString;
|
|
394
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
339
395
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
340
396
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
341
397
|
isAvailable: z.ZodBoolean;
|
|
342
398
|
modelId: z.ZodString;
|
|
343
399
|
}, z.core.$strip>, z.ZodObject<{
|
|
344
400
|
title: z.ZodString;
|
|
401
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
345
402
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
346
403
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
347
404
|
value: z.ZodNumber;
|
|
348
405
|
}, z.core.$strip>, z.ZodObject<{
|
|
349
406
|
title: z.ZodString;
|
|
407
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
350
408
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
351
409
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
352
410
|
value: z.ZodNumber;
|
|
353
411
|
}, z.core.$strip>, z.ZodObject<{
|
|
354
412
|
title: z.ZodString;
|
|
413
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
355
414
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
356
415
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
357
416
|
isAvailable: z.ZodBoolean;
|
|
358
417
|
modelId: z.ZodString;
|
|
359
418
|
}, z.core.$strip>, z.ZodObject<{
|
|
360
419
|
title: z.ZodString;
|
|
420
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
361
421
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
362
422
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
363
423
|
value: z.ZodNumber;
|
|
364
424
|
}, z.core.$strip>, z.ZodObject<{
|
|
365
425
|
title: z.ZodString;
|
|
426
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
366
427
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
367
428
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
368
429
|
value: z.ZodNumber;
|
|
369
430
|
}, z.core.$strip>, z.ZodObject<{
|
|
370
431
|
title: z.ZodString;
|
|
432
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
371
433
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
372
434
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
373
435
|
isAvailable: z.ZodBoolean;
|
|
374
436
|
modelId: z.ZodString;
|
|
375
437
|
}, z.core.$strip>, z.ZodObject<{
|
|
376
438
|
title: z.ZodString;
|
|
439
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
377
440
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
378
441
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
379
442
|
isAvailable: z.ZodBoolean;
|
|
380
443
|
}, z.core.$strip>, z.ZodObject<{
|
|
381
444
|
title: z.ZodString;
|
|
445
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
382
446
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
383
447
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
384
448
|
value: z.ZodNumber;
|
|
385
449
|
}, z.core.$strip>, z.ZodObject<{
|
|
386
450
|
title: z.ZodString;
|
|
451
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
387
452
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
388
453
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
389
454
|
tokens: z.ZodNumber;
|
|
@@ -399,6 +464,7 @@ export declare namespace CreateSubscriptionCommand {
|
|
|
399
464
|
}, z.core.$strip>;
|
|
400
465
|
}, z.core.$strip>, z.ZodObject<{
|
|
401
466
|
title: z.ZodString;
|
|
467
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
402
468
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
403
469
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
404
470
|
isAvailable: z.ZodBoolean;
|
|
@@ -415,50 +481,59 @@ export declare namespace CreateSubscriptionCommand {
|
|
|
415
481
|
}, z.core.$strip>;
|
|
416
482
|
}, z.core.$strip>, z.ZodObject<{
|
|
417
483
|
title: z.ZodString;
|
|
484
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
418
485
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
419
486
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
420
487
|
value: z.ZodNumber;
|
|
421
488
|
}, z.core.$strip>, z.ZodObject<{
|
|
422
489
|
title: z.ZodString;
|
|
490
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
423
491
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
424
492
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
425
493
|
isAvailable: z.ZodBoolean;
|
|
426
494
|
modelId: z.ZodString;
|
|
427
495
|
}, z.core.$strip>, z.ZodObject<{
|
|
428
496
|
title: z.ZodString;
|
|
497
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
429
498
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
430
499
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
431
500
|
value: z.ZodNumber;
|
|
432
501
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
502
|
title: z.ZodString;
|
|
503
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
504
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
435
505
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
436
506
|
isAvailable: z.ZodBoolean;
|
|
437
507
|
modelId: z.ZodString;
|
|
438
508
|
}, z.core.$strip>, z.ZodObject<{
|
|
439
509
|
title: z.ZodString;
|
|
510
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
440
511
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
441
512
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
442
513
|
value: z.ZodNumber;
|
|
443
514
|
}, z.core.$strip>, z.ZodObject<{
|
|
444
515
|
title: z.ZodString;
|
|
516
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
445
517
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
446
518
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
447
519
|
isAvailable: z.ZodBoolean;
|
|
448
520
|
modelId: z.ZodString;
|
|
449
521
|
}, z.core.$strip>, z.ZodObject<{
|
|
450
522
|
title: z.ZodString;
|
|
523
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
451
524
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
452
525
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
453
526
|
value: z.ZodNumber;
|
|
454
527
|
}, z.core.$strip>, z.ZodObject<{
|
|
455
528
|
title: z.ZodString;
|
|
529
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
456
530
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
457
531
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
458
532
|
isAvailable: z.ZodBoolean;
|
|
459
533
|
modelId: z.ZodString;
|
|
460
534
|
}, z.core.$strip>, z.ZodObject<{
|
|
461
535
|
title: z.ZodString;
|
|
536
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
462
537
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
463
538
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
464
539
|
order: z.ZodNumber;
|
|
@@ -466,74 +541,99 @@ export declare namespace CreateSubscriptionCommand {
|
|
|
466
541
|
isAvailable: z.ZodBoolean;
|
|
467
542
|
}, z.core.$strip>, z.ZodObject<{
|
|
468
543
|
title: z.ZodString;
|
|
544
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
469
545
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
470
546
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
471
547
|
value: z.ZodNumber;
|
|
472
548
|
}, z.core.$strip>, z.ZodObject<{
|
|
473
549
|
title: z.ZodString;
|
|
550
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
474
551
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
475
552
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
476
553
|
isAvailable: z.ZodBoolean;
|
|
477
554
|
modelId: z.ZodString;
|
|
478
555
|
}, z.core.$strip>, z.ZodObject<{
|
|
479
556
|
title: z.ZodString;
|
|
557
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
480
558
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
481
559
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
482
560
|
isAvailable: z.ZodBoolean;
|
|
483
561
|
modelId: z.ZodString;
|
|
484
562
|
}, z.core.$strip>, z.ZodObject<{
|
|
485
563
|
title: z.ZodString;
|
|
564
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
486
565
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
487
566
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
488
567
|
value: z.ZodNumber;
|
|
489
568
|
}, z.core.$strip>, z.ZodObject<{
|
|
490
569
|
title: z.ZodString;
|
|
570
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
491
571
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
492
572
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
493
573
|
isAvailable: z.ZodBoolean;
|
|
494
574
|
modelId: z.ZodString;
|
|
495
575
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
576
|
title: z.ZodString;
|
|
577
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
578
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
498
579
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
499
580
|
value: z.ZodNumber;
|
|
500
581
|
}, z.core.$strip>, z.ZodObject<{
|
|
501
582
|
title: z.ZodString;
|
|
583
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
502
584
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
503
585
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
504
586
|
isAvailable: z.ZodBoolean;
|
|
505
587
|
modelId: z.ZodString;
|
|
506
588
|
}, z.core.$strip>, z.ZodObject<{
|
|
507
589
|
title: z.ZodString;
|
|
590
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
508
591
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
509
592
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
510
593
|
value: z.ZodNumber;
|
|
511
594
|
}, z.core.$strip>, z.ZodObject<{
|
|
512
595
|
title: z.ZodString;
|
|
596
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
513
597
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
514
598
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
515
599
|
isAvailable: z.ZodBoolean;
|
|
516
600
|
modelId: z.ZodString;
|
|
517
601
|
}, z.core.$strip>, z.ZodObject<{
|
|
518
602
|
title: z.ZodString;
|
|
603
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
519
604
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
520
605
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
521
606
|
isAvailable: z.ZodBoolean;
|
|
522
607
|
modelId: z.ZodString;
|
|
523
608
|
}, z.core.$strip>, z.ZodObject<{
|
|
524
609
|
title: z.ZodString;
|
|
610
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
611
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
612
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
613
|
+
value: z.ZodNumber;
|
|
614
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
615
|
+
title: z.ZodString;
|
|
616
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
525
617
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
526
618
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
527
619
|
isAvailable: z.ZodBoolean;
|
|
528
620
|
modelId: z.ZodString;
|
|
529
621
|
}, z.core.$strip>, z.ZodObject<{
|
|
530
622
|
title: z.ZodString;
|
|
623
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
624
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
625
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
626
|
+
value: z.ZodNumber;
|
|
627
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
628
|
+
title: z.ZodString;
|
|
629
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
531
630
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
532
631
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
533
632
|
isAvailable: z.ZodBoolean;
|
|
534
633
|
modelId: z.ZodString;
|
|
535
634
|
}, z.core.$strip>, z.ZodObject<{
|
|
536
635
|
title: z.ZodString;
|
|
636
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
537
637
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
538
638
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
539
639
|
value: z.ZodNumber;
|