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