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