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