@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
|
@@ -3,6 +3,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
3
3
|
const ResponseSchema: z.ZodObject<{
|
|
4
4
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
5
5
|
title: z.ZodString;
|
|
6
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
6
7
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
7
8
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
8
9
|
order: z.ZodNumber;
|
|
@@ -11,76 +12,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
11
12
|
maxInputLength: z.ZodNumber;
|
|
12
13
|
}, z.core.$strip>, z.ZodObject<{
|
|
13
14
|
title: z.ZodString;
|
|
15
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
14
16
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
15
17
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
16
18
|
value: z.ZodNumber;
|
|
17
19
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
18
20
|
}, z.core.$strip>, z.ZodObject<{
|
|
19
21
|
title: z.ZodString;
|
|
22
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
20
23
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
21
24
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
22
25
|
tooltip: z.ZodString;
|
|
23
26
|
value: z.ZodNumber;
|
|
24
27
|
}, z.core.$strip>, z.ZodObject<{
|
|
25
28
|
title: z.ZodString;
|
|
29
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
26
30
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
27
31
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
28
32
|
isAvailable: z.ZodBoolean;
|
|
29
33
|
}, z.core.$strip>, z.ZodObject<{
|
|
30
34
|
title: z.ZodString;
|
|
35
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
31
36
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
32
37
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
33
38
|
isAvailable: z.ZodBoolean;
|
|
34
39
|
}, z.core.$strip>, z.ZodObject<{
|
|
35
40
|
title: z.ZodString;
|
|
41
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
36
42
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
37
43
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
38
44
|
isAvailable: z.ZodBoolean;
|
|
39
45
|
modelId: z.ZodString;
|
|
40
46
|
}, z.core.$strip>, z.ZodObject<{
|
|
41
47
|
title: z.ZodString;
|
|
48
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
42
49
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
43
50
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
44
51
|
value: z.ZodNumber;
|
|
45
52
|
}, z.core.$strip>, z.ZodObject<{
|
|
46
53
|
title: z.ZodString;
|
|
54
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
47
55
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
48
56
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
49
57
|
value: z.ZodNumber;
|
|
50
58
|
}, z.core.$strip>, z.ZodObject<{
|
|
51
59
|
title: z.ZodString;
|
|
60
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
52
61
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
53
62
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
54
63
|
isAvailable: z.ZodBoolean;
|
|
55
64
|
modelId: z.ZodString;
|
|
56
65
|
}, z.core.$strip>, z.ZodObject<{
|
|
57
66
|
title: z.ZodString;
|
|
67
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
58
68
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
59
69
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
60
70
|
value: z.ZodNumber;
|
|
61
71
|
}, z.core.$strip>, z.ZodObject<{
|
|
62
72
|
title: z.ZodString;
|
|
73
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
63
74
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
64
75
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
65
76
|
value: z.ZodNumber;
|
|
66
77
|
}, z.core.$strip>, z.ZodObject<{
|
|
67
78
|
title: z.ZodString;
|
|
79
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
68
80
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
69
81
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
70
82
|
isAvailable: z.ZodBoolean;
|
|
71
83
|
modelId: z.ZodString;
|
|
72
84
|
}, z.core.$strip>, z.ZodObject<{
|
|
73
85
|
title: z.ZodString;
|
|
86
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
74
87
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
75
88
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
76
89
|
isAvailable: z.ZodBoolean;
|
|
77
90
|
}, z.core.$strip>, z.ZodObject<{
|
|
78
91
|
title: z.ZodString;
|
|
92
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
79
93
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
80
94
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
81
95
|
value: z.ZodNumber;
|
|
82
96
|
}, z.core.$strip>, z.ZodObject<{
|
|
83
97
|
title: z.ZodString;
|
|
98
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
84
99
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
85
100
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
86
101
|
tokens: z.ZodNumber;
|
|
@@ -96,6 +111,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
96
111
|
}, z.core.$strip>;
|
|
97
112
|
}, z.core.$strip>, z.ZodObject<{
|
|
98
113
|
title: z.ZodString;
|
|
114
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
99
115
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
100
116
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
101
117
|
isAvailable: z.ZodBoolean;
|
|
@@ -112,50 +128,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
112
128
|
}, z.core.$strip>;
|
|
113
129
|
}, z.core.$strip>, z.ZodObject<{
|
|
114
130
|
title: z.ZodString;
|
|
131
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
115
132
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
116
133
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
117
134
|
value: z.ZodNumber;
|
|
118
135
|
}, z.core.$strip>, z.ZodObject<{
|
|
119
136
|
title: z.ZodString;
|
|
137
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
120
138
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
121
139
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
122
140
|
isAvailable: z.ZodBoolean;
|
|
123
141
|
modelId: z.ZodString;
|
|
124
142
|
}, z.core.$strip>, z.ZodObject<{
|
|
125
143
|
title: z.ZodString;
|
|
144
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
126
145
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
127
146
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
128
147
|
value: z.ZodNumber;
|
|
129
148
|
}, z.core.$strip>, z.ZodObject<{
|
|
130
149
|
title: z.ZodString;
|
|
150
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
131
151
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
132
152
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
133
153
|
isAvailable: z.ZodBoolean;
|
|
134
154
|
modelId: z.ZodString;
|
|
135
155
|
}, z.core.$strip>, z.ZodObject<{
|
|
136
156
|
title: z.ZodString;
|
|
157
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
137
158
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
138
159
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
139
160
|
value: z.ZodNumber;
|
|
140
161
|
}, z.core.$strip>, z.ZodObject<{
|
|
141
162
|
title: z.ZodString;
|
|
163
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
142
164
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
143
165
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
144
166
|
isAvailable: z.ZodBoolean;
|
|
145
167
|
modelId: z.ZodString;
|
|
146
168
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
169
|
title: z.ZodString;
|
|
170
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
171
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
149
172
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
150
173
|
value: z.ZodNumber;
|
|
151
174
|
}, z.core.$strip>, z.ZodObject<{
|
|
152
175
|
title: z.ZodString;
|
|
176
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
153
177
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
154
178
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
155
179
|
isAvailable: z.ZodBoolean;
|
|
156
180
|
modelId: z.ZodString;
|
|
157
181
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
182
|
title: z.ZodString;
|
|
183
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
184
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
160
185
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
161
186
|
order: z.ZodNumber;
|
|
@@ -163,74 +188,99 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
163
188
|
isAvailable: z.ZodBoolean;
|
|
164
189
|
}, z.core.$strip>, z.ZodObject<{
|
|
165
190
|
title: z.ZodString;
|
|
191
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
166
192
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
167
193
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
168
194
|
value: z.ZodNumber;
|
|
169
195
|
}, z.core.$strip>, z.ZodObject<{
|
|
170
196
|
title: z.ZodString;
|
|
197
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
171
198
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
172
199
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
173
200
|
isAvailable: z.ZodBoolean;
|
|
174
201
|
modelId: z.ZodString;
|
|
175
202
|
}, z.core.$strip>, z.ZodObject<{
|
|
176
203
|
title: z.ZodString;
|
|
204
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
177
205
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
178
206
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
179
207
|
isAvailable: z.ZodBoolean;
|
|
180
208
|
modelId: z.ZodString;
|
|
181
209
|
}, z.core.$strip>, z.ZodObject<{
|
|
182
210
|
title: z.ZodString;
|
|
211
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
183
212
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
184
213
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
185
214
|
value: z.ZodNumber;
|
|
186
215
|
}, z.core.$strip>, z.ZodObject<{
|
|
187
216
|
title: z.ZodString;
|
|
217
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
188
218
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
189
219
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
190
220
|
isAvailable: z.ZodBoolean;
|
|
191
221
|
modelId: z.ZodString;
|
|
192
222
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
223
|
title: z.ZodString;
|
|
224
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
225
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
195
226
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
196
227
|
value: z.ZodNumber;
|
|
197
228
|
}, z.core.$strip>, z.ZodObject<{
|
|
198
229
|
title: z.ZodString;
|
|
230
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
199
231
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
200
232
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
201
233
|
isAvailable: z.ZodBoolean;
|
|
202
234
|
modelId: z.ZodString;
|
|
203
235
|
}, z.core.$strip>, z.ZodObject<{
|
|
204
236
|
title: z.ZodString;
|
|
237
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
205
238
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
206
239
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
207
240
|
value: z.ZodNumber;
|
|
208
241
|
}, z.core.$strip>, z.ZodObject<{
|
|
209
242
|
title: z.ZodString;
|
|
243
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
210
244
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
211
245
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
212
246
|
isAvailable: z.ZodBoolean;
|
|
213
247
|
modelId: z.ZodString;
|
|
214
248
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
249
|
title: z.ZodString;
|
|
250
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
251
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
217
252
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
218
253
|
isAvailable: z.ZodBoolean;
|
|
219
254
|
modelId: z.ZodString;
|
|
220
255
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
256
|
title: z.ZodString;
|
|
257
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
258
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
259
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
260
|
+
value: z.ZodNumber;
|
|
261
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
262
|
+
title: z.ZodString;
|
|
263
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
264
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
223
265
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
224
266
|
isAvailable: z.ZodBoolean;
|
|
225
267
|
modelId: z.ZodString;
|
|
226
268
|
}, z.core.$strip>, z.ZodObject<{
|
|
227
269
|
title: z.ZodString;
|
|
270
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
271
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
272
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
273
|
+
value: z.ZodNumber;
|
|
274
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
275
|
+
title: z.ZodString;
|
|
276
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
228
277
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
229
278
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
230
279
|
isAvailable: z.ZodBoolean;
|
|
231
280
|
modelId: z.ZodString;
|
|
232
281
|
}, z.core.$strip>, z.ZodObject<{
|
|
233
282
|
title: z.ZodString;
|
|
283
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
234
284
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
235
285
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
236
286
|
value: z.ZodNumber;
|
|
@@ -278,6 +328,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
278
328
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
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 GetSubscriptionsSummaryCommand {
|
|
|
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 GetSubscriptionsSummaryCommand {
|
|
|
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 GetSubscriptionsSummaryCommand {
|
|
|
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 GetSubscriptionsSummaryCommand {
|
|
|
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;
|
|
@@ -560,6 +660,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
560
660
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
561
661
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
562
662
|
title: z.ZodString;
|
|
663
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
563
664
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
564
665
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
565
666
|
order: z.ZodNumber;
|
|
@@ -568,76 +669,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
568
669
|
maxInputLength: z.ZodNumber;
|
|
569
670
|
}, z.core.$strip>, z.ZodObject<{
|
|
570
671
|
title: z.ZodString;
|
|
672
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
571
673
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
572
674
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
573
675
|
value: z.ZodNumber;
|
|
574
676
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
575
677
|
}, z.core.$strip>, z.ZodObject<{
|
|
576
678
|
title: z.ZodString;
|
|
679
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
577
680
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
578
681
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
579
682
|
tooltip: z.ZodString;
|
|
580
683
|
value: z.ZodNumber;
|
|
581
684
|
}, z.core.$strip>, z.ZodObject<{
|
|
582
685
|
title: z.ZodString;
|
|
686
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
583
687
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
584
688
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
585
689
|
isAvailable: z.ZodBoolean;
|
|
586
690
|
}, z.core.$strip>, z.ZodObject<{
|
|
587
691
|
title: z.ZodString;
|
|
692
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
588
693
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
589
694
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
590
695
|
isAvailable: z.ZodBoolean;
|
|
591
696
|
}, z.core.$strip>, z.ZodObject<{
|
|
592
697
|
title: z.ZodString;
|
|
698
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
593
699
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
594
700
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
595
701
|
isAvailable: z.ZodBoolean;
|
|
596
702
|
modelId: z.ZodString;
|
|
597
703
|
}, z.core.$strip>, z.ZodObject<{
|
|
598
704
|
title: z.ZodString;
|
|
705
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
599
706
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
600
707
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
601
708
|
value: z.ZodNumber;
|
|
602
709
|
}, z.core.$strip>, z.ZodObject<{
|
|
603
710
|
title: z.ZodString;
|
|
711
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
604
712
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
605
713
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
606
714
|
value: z.ZodNumber;
|
|
607
715
|
}, z.core.$strip>, z.ZodObject<{
|
|
608
716
|
title: z.ZodString;
|
|
717
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
609
718
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
610
719
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
611
720
|
isAvailable: z.ZodBoolean;
|
|
612
721
|
modelId: z.ZodString;
|
|
613
722
|
}, z.core.$strip>, z.ZodObject<{
|
|
614
723
|
title: z.ZodString;
|
|
724
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
615
725
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
616
726
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
617
727
|
value: z.ZodNumber;
|
|
618
728
|
}, z.core.$strip>, z.ZodObject<{
|
|
619
729
|
title: z.ZodString;
|
|
730
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
620
731
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
621
732
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
622
733
|
value: z.ZodNumber;
|
|
623
734
|
}, z.core.$strip>, z.ZodObject<{
|
|
624
735
|
title: z.ZodString;
|
|
736
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
625
737
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
626
738
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
627
739
|
isAvailable: z.ZodBoolean;
|
|
628
740
|
modelId: z.ZodString;
|
|
629
741
|
}, z.core.$strip>, z.ZodObject<{
|
|
630
742
|
title: z.ZodString;
|
|
743
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
631
744
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
632
745
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
633
746
|
isAvailable: z.ZodBoolean;
|
|
634
747
|
}, z.core.$strip>, z.ZodObject<{
|
|
635
748
|
title: z.ZodString;
|
|
749
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
636
750
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
637
751
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
638
752
|
value: z.ZodNumber;
|
|
639
753
|
}, z.core.$strip>, z.ZodObject<{
|
|
640
754
|
title: z.ZodString;
|
|
755
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
641
756
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
642
757
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
643
758
|
tokens: z.ZodNumber;
|
|
@@ -653,6 +768,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
653
768
|
}, z.core.$strip>;
|
|
654
769
|
}, z.core.$strip>, z.ZodObject<{
|
|
655
770
|
title: z.ZodString;
|
|
771
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
656
772
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
657
773
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
658
774
|
isAvailable: z.ZodBoolean;
|
|
@@ -669,50 +785,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
669
785
|
}, z.core.$strip>;
|
|
670
786
|
}, z.core.$strip>, z.ZodObject<{
|
|
671
787
|
title: z.ZodString;
|
|
788
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
672
789
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
673
790
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
674
791
|
value: z.ZodNumber;
|
|
675
792
|
}, z.core.$strip>, z.ZodObject<{
|
|
676
793
|
title: z.ZodString;
|
|
794
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
677
795
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
678
796
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
679
797
|
isAvailable: z.ZodBoolean;
|
|
680
798
|
modelId: z.ZodString;
|
|
681
799
|
}, z.core.$strip>, z.ZodObject<{
|
|
682
800
|
title: z.ZodString;
|
|
801
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
683
802
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
684
803
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
685
804
|
value: z.ZodNumber;
|
|
686
805
|
}, z.core.$strip>, z.ZodObject<{
|
|
687
806
|
title: z.ZodString;
|
|
807
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
688
808
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
689
809
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
690
810
|
isAvailable: z.ZodBoolean;
|
|
691
811
|
modelId: z.ZodString;
|
|
692
812
|
}, z.core.$strip>, z.ZodObject<{
|
|
693
813
|
title: z.ZodString;
|
|
814
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
694
815
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
695
816
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
696
817
|
value: z.ZodNumber;
|
|
697
818
|
}, z.core.$strip>, z.ZodObject<{
|
|
698
819
|
title: z.ZodString;
|
|
820
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
699
821
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
700
822
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
701
823
|
isAvailable: z.ZodBoolean;
|
|
702
824
|
modelId: z.ZodString;
|
|
703
825
|
}, z.core.$strip>, z.ZodObject<{
|
|
704
826
|
title: z.ZodString;
|
|
827
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
705
828
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
706
829
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
707
830
|
value: z.ZodNumber;
|
|
708
831
|
}, z.core.$strip>, z.ZodObject<{
|
|
709
832
|
title: z.ZodString;
|
|
833
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
710
834
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
711
835
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
712
836
|
isAvailable: z.ZodBoolean;
|
|
713
837
|
modelId: z.ZodString;
|
|
714
838
|
}, z.core.$strip>, z.ZodObject<{
|
|
715
839
|
title: z.ZodString;
|
|
840
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
716
841
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
717
842
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
718
843
|
order: z.ZodNumber;
|
|
@@ -720,74 +845,99 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
720
845
|
isAvailable: z.ZodBoolean;
|
|
721
846
|
}, z.core.$strip>, z.ZodObject<{
|
|
722
847
|
title: z.ZodString;
|
|
848
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
723
849
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
724
850
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
725
851
|
value: z.ZodNumber;
|
|
726
852
|
}, z.core.$strip>, z.ZodObject<{
|
|
727
853
|
title: z.ZodString;
|
|
854
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
728
855
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
729
856
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
730
857
|
isAvailable: z.ZodBoolean;
|
|
731
858
|
modelId: z.ZodString;
|
|
732
859
|
}, z.core.$strip>, z.ZodObject<{
|
|
733
860
|
title: z.ZodString;
|
|
861
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
734
862
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
735
863
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
736
864
|
isAvailable: z.ZodBoolean;
|
|
737
865
|
modelId: z.ZodString;
|
|
738
866
|
}, z.core.$strip>, z.ZodObject<{
|
|
739
867
|
title: z.ZodString;
|
|
868
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
740
869
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
741
870
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
742
871
|
value: z.ZodNumber;
|
|
743
872
|
}, z.core.$strip>, z.ZodObject<{
|
|
744
873
|
title: z.ZodString;
|
|
874
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
745
875
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
746
876
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
747
877
|
isAvailable: z.ZodBoolean;
|
|
748
878
|
modelId: z.ZodString;
|
|
749
879
|
}, z.core.$strip>, z.ZodObject<{
|
|
750
880
|
title: z.ZodString;
|
|
881
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
751
882
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
752
883
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
753
884
|
value: z.ZodNumber;
|
|
754
885
|
}, z.core.$strip>, z.ZodObject<{
|
|
755
886
|
title: z.ZodString;
|
|
887
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
756
888
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
757
889
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
758
890
|
isAvailable: z.ZodBoolean;
|
|
759
891
|
modelId: z.ZodString;
|
|
760
892
|
}, z.core.$strip>, z.ZodObject<{
|
|
761
893
|
title: z.ZodString;
|
|
894
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
762
895
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
763
896
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
764
897
|
value: z.ZodNumber;
|
|
765
898
|
}, z.core.$strip>, z.ZodObject<{
|
|
766
899
|
title: z.ZodString;
|
|
900
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
767
901
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
768
902
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
769
903
|
isAvailable: z.ZodBoolean;
|
|
770
904
|
modelId: z.ZodString;
|
|
771
905
|
}, z.core.$strip>, z.ZodObject<{
|
|
772
906
|
title: z.ZodString;
|
|
907
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
773
908
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
774
909
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
775
910
|
isAvailable: z.ZodBoolean;
|
|
776
911
|
modelId: z.ZodString;
|
|
777
912
|
}, z.core.$strip>, z.ZodObject<{
|
|
778
913
|
title: z.ZodString;
|
|
914
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
915
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
916
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
917
|
+
value: z.ZodNumber;
|
|
918
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
919
|
+
title: z.ZodString;
|
|
920
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
779
921
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
780
922
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
781
923
|
isAvailable: z.ZodBoolean;
|
|
782
924
|
modelId: z.ZodString;
|
|
783
925
|
}, z.core.$strip>, z.ZodObject<{
|
|
784
926
|
title: z.ZodString;
|
|
927
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
928
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
929
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
930
|
+
value: z.ZodNumber;
|
|
931
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
932
|
+
title: z.ZodString;
|
|
933
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
785
934
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
786
935
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
787
936
|
isAvailable: z.ZodBoolean;
|
|
788
937
|
modelId: z.ZodString;
|
|
789
938
|
}, z.core.$strip>, z.ZodObject<{
|
|
790
939
|
title: z.ZodString;
|
|
940
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
791
941
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
792
942
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
793
943
|
value: z.ZodNumber;
|
|
@@ -846,6 +996,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
846
996
|
}, z.core.$strip>;
|
|
847
997
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
848
998
|
title: z.ZodString;
|
|
999
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
849
1000
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
850
1001
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
851
1002
|
order: z.ZodNumber;
|
|
@@ -854,76 +1005,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
854
1005
|
maxInputLength: z.ZodNumber;
|
|
855
1006
|
}, z.core.$strip>, z.ZodObject<{
|
|
856
1007
|
title: z.ZodString;
|
|
1008
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
857
1009
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
858
1010
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
859
1011
|
value: z.ZodNumber;
|
|
860
1012
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
861
1013
|
}, z.core.$strip>, z.ZodObject<{
|
|
862
1014
|
title: z.ZodString;
|
|
1015
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
863
1016
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
864
1017
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
865
1018
|
tooltip: z.ZodString;
|
|
866
1019
|
value: z.ZodNumber;
|
|
867
1020
|
}, z.core.$strip>, z.ZodObject<{
|
|
868
1021
|
title: z.ZodString;
|
|
1022
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
869
1023
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
870
1024
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
871
1025
|
isAvailable: z.ZodBoolean;
|
|
872
1026
|
}, z.core.$strip>, z.ZodObject<{
|
|
873
1027
|
title: z.ZodString;
|
|
1028
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
874
1029
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
875
1030
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
876
1031
|
isAvailable: z.ZodBoolean;
|
|
877
1032
|
}, z.core.$strip>, z.ZodObject<{
|
|
878
1033
|
title: z.ZodString;
|
|
1034
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
879
1035
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
880
1036
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
881
1037
|
isAvailable: z.ZodBoolean;
|
|
882
1038
|
modelId: z.ZodString;
|
|
883
1039
|
}, z.core.$strip>, z.ZodObject<{
|
|
884
1040
|
title: z.ZodString;
|
|
1041
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
885
1042
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
886
1043
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
887
1044
|
value: z.ZodNumber;
|
|
888
1045
|
}, z.core.$strip>, z.ZodObject<{
|
|
889
1046
|
title: z.ZodString;
|
|
1047
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
890
1048
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
891
1049
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
892
1050
|
value: z.ZodNumber;
|
|
893
1051
|
}, z.core.$strip>, z.ZodObject<{
|
|
894
1052
|
title: z.ZodString;
|
|
1053
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
895
1054
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
896
1055
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
897
1056
|
isAvailable: z.ZodBoolean;
|
|
898
1057
|
modelId: z.ZodString;
|
|
899
1058
|
}, z.core.$strip>, z.ZodObject<{
|
|
900
1059
|
title: z.ZodString;
|
|
1060
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
901
1061
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
902
1062
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
903
1063
|
value: z.ZodNumber;
|
|
904
1064
|
}, z.core.$strip>, z.ZodObject<{
|
|
905
1065
|
title: z.ZodString;
|
|
1066
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
906
1067
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
907
1068
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
908
1069
|
value: z.ZodNumber;
|
|
909
1070
|
}, z.core.$strip>, z.ZodObject<{
|
|
910
1071
|
title: z.ZodString;
|
|
1072
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
911
1073
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
912
1074
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
913
1075
|
isAvailable: z.ZodBoolean;
|
|
914
1076
|
modelId: z.ZodString;
|
|
915
1077
|
}, z.core.$strip>, z.ZodObject<{
|
|
916
1078
|
title: z.ZodString;
|
|
1079
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
917
1080
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
918
1081
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
919
1082
|
isAvailable: z.ZodBoolean;
|
|
920
1083
|
}, z.core.$strip>, z.ZodObject<{
|
|
921
1084
|
title: z.ZodString;
|
|
1085
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
922
1086
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
923
1087
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
924
1088
|
value: z.ZodNumber;
|
|
925
1089
|
}, z.core.$strip>, z.ZodObject<{
|
|
926
1090
|
title: z.ZodString;
|
|
1091
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
927
1092
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
928
1093
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
929
1094
|
tokens: z.ZodNumber;
|
|
@@ -939,6 +1104,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
939
1104
|
}, z.core.$strip>;
|
|
940
1105
|
}, z.core.$strip>, z.ZodObject<{
|
|
941
1106
|
title: z.ZodString;
|
|
1107
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
942
1108
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
943
1109
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
944
1110
|
isAvailable: z.ZodBoolean;
|
|
@@ -955,50 +1121,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
955
1121
|
}, z.core.$strip>;
|
|
956
1122
|
}, z.core.$strip>, z.ZodObject<{
|
|
957
1123
|
title: z.ZodString;
|
|
1124
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
958
1125
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
959
1126
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
960
1127
|
value: z.ZodNumber;
|
|
961
1128
|
}, z.core.$strip>, z.ZodObject<{
|
|
962
1129
|
title: z.ZodString;
|
|
1130
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
963
1131
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
964
1132
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
965
1133
|
isAvailable: z.ZodBoolean;
|
|
966
1134
|
modelId: z.ZodString;
|
|
967
1135
|
}, z.core.$strip>, z.ZodObject<{
|
|
968
1136
|
title: z.ZodString;
|
|
1137
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
969
1138
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
970
1139
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
971
1140
|
value: z.ZodNumber;
|
|
972
1141
|
}, z.core.$strip>, z.ZodObject<{
|
|
973
1142
|
title: z.ZodString;
|
|
1143
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
974
1144
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
975
1145
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
976
1146
|
isAvailable: z.ZodBoolean;
|
|
977
1147
|
modelId: z.ZodString;
|
|
978
1148
|
}, z.core.$strip>, z.ZodObject<{
|
|
979
1149
|
title: z.ZodString;
|
|
1150
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
980
1151
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
981
1152
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
982
1153
|
value: z.ZodNumber;
|
|
983
1154
|
}, z.core.$strip>, z.ZodObject<{
|
|
984
1155
|
title: z.ZodString;
|
|
1156
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
985
1157
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
986
1158
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
987
1159
|
isAvailable: z.ZodBoolean;
|
|
988
1160
|
modelId: z.ZodString;
|
|
989
1161
|
}, z.core.$strip>, z.ZodObject<{
|
|
990
1162
|
title: z.ZodString;
|
|
1163
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
991
1164
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
992
1165
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
993
1166
|
value: z.ZodNumber;
|
|
994
1167
|
}, z.core.$strip>, z.ZodObject<{
|
|
995
1168
|
title: z.ZodString;
|
|
1169
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
996
1170
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
997
1171
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
998
1172
|
isAvailable: z.ZodBoolean;
|
|
999
1173
|
modelId: z.ZodString;
|
|
1000
1174
|
}, z.core.$strip>, z.ZodObject<{
|
|
1001
1175
|
title: z.ZodString;
|
|
1176
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1002
1177
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1003
1178
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1004
1179
|
order: z.ZodNumber;
|
|
@@ -1006,74 +1181,99 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1006
1181
|
isAvailable: z.ZodBoolean;
|
|
1007
1182
|
}, z.core.$strip>, z.ZodObject<{
|
|
1008
1183
|
title: z.ZodString;
|
|
1184
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1009
1185
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1010
1186
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1011
1187
|
value: z.ZodNumber;
|
|
1012
1188
|
}, z.core.$strip>, z.ZodObject<{
|
|
1013
1189
|
title: z.ZodString;
|
|
1190
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1014
1191
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1015
1192
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1016
1193
|
isAvailable: z.ZodBoolean;
|
|
1017
1194
|
modelId: z.ZodString;
|
|
1018
1195
|
}, z.core.$strip>, z.ZodObject<{
|
|
1019
1196
|
title: z.ZodString;
|
|
1197
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1020
1198
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1021
1199
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1022
1200
|
isAvailable: z.ZodBoolean;
|
|
1023
1201
|
modelId: z.ZodString;
|
|
1024
1202
|
}, z.core.$strip>, z.ZodObject<{
|
|
1025
1203
|
title: z.ZodString;
|
|
1204
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1026
1205
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1027
1206
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1028
1207
|
value: z.ZodNumber;
|
|
1029
1208
|
}, z.core.$strip>, z.ZodObject<{
|
|
1030
1209
|
title: z.ZodString;
|
|
1210
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1031
1211
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1032
1212
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1033
1213
|
isAvailable: z.ZodBoolean;
|
|
1034
1214
|
modelId: z.ZodString;
|
|
1035
1215
|
}, z.core.$strip>, z.ZodObject<{
|
|
1036
1216
|
title: z.ZodString;
|
|
1217
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1037
1218
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1038
1219
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1039
1220
|
value: z.ZodNumber;
|
|
1040
1221
|
}, z.core.$strip>, z.ZodObject<{
|
|
1041
1222
|
title: z.ZodString;
|
|
1223
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1042
1224
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1043
1225
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1044
1226
|
isAvailable: z.ZodBoolean;
|
|
1045
1227
|
modelId: z.ZodString;
|
|
1046
1228
|
}, z.core.$strip>, z.ZodObject<{
|
|
1047
1229
|
title: z.ZodString;
|
|
1230
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1048
1231
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1049
1232
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1050
1233
|
value: z.ZodNumber;
|
|
1051
1234
|
}, z.core.$strip>, z.ZodObject<{
|
|
1052
1235
|
title: z.ZodString;
|
|
1236
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1053
1237
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1054
1238
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1055
1239
|
isAvailable: z.ZodBoolean;
|
|
1056
1240
|
modelId: z.ZodString;
|
|
1057
1241
|
}, z.core.$strip>, z.ZodObject<{
|
|
1058
1242
|
title: z.ZodString;
|
|
1243
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1059
1244
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1060
1245
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1061
1246
|
isAvailable: z.ZodBoolean;
|
|
1062
1247
|
modelId: z.ZodString;
|
|
1063
1248
|
}, z.core.$strip>, z.ZodObject<{
|
|
1064
1249
|
title: z.ZodString;
|
|
1250
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1251
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1252
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
1253
|
+
value: z.ZodNumber;
|
|
1254
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1255
|
+
title: z.ZodString;
|
|
1256
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1065
1257
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1066
1258
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1067
1259
|
isAvailable: z.ZodBoolean;
|
|
1068
1260
|
modelId: z.ZodString;
|
|
1069
1261
|
}, z.core.$strip>, z.ZodObject<{
|
|
1070
1262
|
title: z.ZodString;
|
|
1263
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1264
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1265
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
1266
|
+
value: z.ZodNumber;
|
|
1267
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1268
|
+
title: z.ZodString;
|
|
1269
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1071
1270
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1072
1271
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1073
1272
|
isAvailable: z.ZodBoolean;
|
|
1074
1273
|
modelId: z.ZodString;
|
|
1075
1274
|
}, z.core.$strip>, z.ZodObject<{
|
|
1076
1275
|
title: z.ZodString;
|
|
1276
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1077
1277
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1078
1278
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1079
1279
|
value: z.ZodNumber;
|
|
@@ -1134,6 +1334,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1134
1334
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
1135
1335
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1136
1336
|
title: z.ZodString;
|
|
1337
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1137
1338
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
1138
1339
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
1139
1340
|
order: z.ZodNumber;
|
|
@@ -1142,76 +1343,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1142
1343
|
maxInputLength: z.ZodNumber;
|
|
1143
1344
|
}, z.core.$strip>, z.ZodObject<{
|
|
1144
1345
|
title: z.ZodString;
|
|
1346
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1145
1347
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
1146
1348
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1147
1349
|
value: z.ZodNumber;
|
|
1148
1350
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
1149
1351
|
}, z.core.$strip>, z.ZodObject<{
|
|
1150
1352
|
title: z.ZodString;
|
|
1353
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1151
1354
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
1152
1355
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1153
1356
|
tooltip: z.ZodString;
|
|
1154
1357
|
value: z.ZodNumber;
|
|
1155
1358
|
}, z.core.$strip>, z.ZodObject<{
|
|
1156
1359
|
title: z.ZodString;
|
|
1360
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1157
1361
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1158
1362
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
1159
1363
|
isAvailable: z.ZodBoolean;
|
|
1160
1364
|
}, z.core.$strip>, z.ZodObject<{
|
|
1161
1365
|
title: z.ZodString;
|
|
1366
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1162
1367
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1163
1368
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
1164
1369
|
isAvailable: z.ZodBoolean;
|
|
1165
1370
|
}, z.core.$strip>, z.ZodObject<{
|
|
1166
1371
|
title: z.ZodString;
|
|
1372
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1167
1373
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1168
1374
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
1169
1375
|
isAvailable: z.ZodBoolean;
|
|
1170
1376
|
modelId: z.ZodString;
|
|
1171
1377
|
}, z.core.$strip>, z.ZodObject<{
|
|
1172
1378
|
title: z.ZodString;
|
|
1379
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1173
1380
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1174
1381
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
1175
1382
|
value: z.ZodNumber;
|
|
1176
1383
|
}, z.core.$strip>, z.ZodObject<{
|
|
1177
1384
|
title: z.ZodString;
|
|
1385
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1178
1386
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1179
1387
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
1180
1388
|
value: z.ZodNumber;
|
|
1181
1389
|
}, z.core.$strip>, z.ZodObject<{
|
|
1182
1390
|
title: z.ZodString;
|
|
1391
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1183
1392
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1184
1393
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
1185
1394
|
isAvailable: z.ZodBoolean;
|
|
1186
1395
|
modelId: z.ZodString;
|
|
1187
1396
|
}, z.core.$strip>, z.ZodObject<{
|
|
1188
1397
|
title: z.ZodString;
|
|
1398
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1189
1399
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1190
1400
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
1191
1401
|
value: z.ZodNumber;
|
|
1192
1402
|
}, z.core.$strip>, z.ZodObject<{
|
|
1193
1403
|
title: z.ZodString;
|
|
1404
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1194
1405
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1195
1406
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
1196
1407
|
value: z.ZodNumber;
|
|
1197
1408
|
}, z.core.$strip>, z.ZodObject<{
|
|
1198
1409
|
title: z.ZodString;
|
|
1410
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1199
1411
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1200
1412
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
1201
1413
|
isAvailable: z.ZodBoolean;
|
|
1202
1414
|
modelId: z.ZodString;
|
|
1203
1415
|
}, z.core.$strip>, z.ZodObject<{
|
|
1204
1416
|
title: z.ZodString;
|
|
1417
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1205
1418
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
1206
1419
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1207
1420
|
isAvailable: z.ZodBoolean;
|
|
1208
1421
|
}, z.core.$strip>, z.ZodObject<{
|
|
1209
1422
|
title: z.ZodString;
|
|
1423
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1210
1424
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
1211
1425
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
1212
1426
|
value: z.ZodNumber;
|
|
1213
1427
|
}, z.core.$strip>, z.ZodObject<{
|
|
1214
1428
|
title: z.ZodString;
|
|
1429
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1215
1430
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1216
1431
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
1217
1432
|
tokens: z.ZodNumber;
|
|
@@ -1227,6 +1442,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1227
1442
|
}, z.core.$strip>;
|
|
1228
1443
|
}, z.core.$strip>, z.ZodObject<{
|
|
1229
1444
|
title: z.ZodString;
|
|
1445
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1230
1446
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1231
1447
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
1232
1448
|
isAvailable: z.ZodBoolean;
|
|
@@ -1243,50 +1459,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1243
1459
|
}, z.core.$strip>;
|
|
1244
1460
|
}, z.core.$strip>, z.ZodObject<{
|
|
1245
1461
|
title: z.ZodString;
|
|
1462
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1246
1463
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1247
1464
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
1248
1465
|
value: z.ZodNumber;
|
|
1249
1466
|
}, z.core.$strip>, z.ZodObject<{
|
|
1250
1467
|
title: z.ZodString;
|
|
1468
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1251
1469
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1252
1470
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
1253
1471
|
isAvailable: z.ZodBoolean;
|
|
1254
1472
|
modelId: z.ZodString;
|
|
1255
1473
|
}, z.core.$strip>, z.ZodObject<{
|
|
1256
1474
|
title: z.ZodString;
|
|
1475
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1257
1476
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1258
1477
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
1259
1478
|
value: z.ZodNumber;
|
|
1260
1479
|
}, z.core.$strip>, z.ZodObject<{
|
|
1261
1480
|
title: z.ZodString;
|
|
1481
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1262
1482
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1263
1483
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
1264
1484
|
isAvailable: z.ZodBoolean;
|
|
1265
1485
|
modelId: z.ZodString;
|
|
1266
1486
|
}, z.core.$strip>, z.ZodObject<{
|
|
1267
1487
|
title: z.ZodString;
|
|
1488
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1268
1489
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1269
1490
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
1270
1491
|
value: z.ZodNumber;
|
|
1271
1492
|
}, z.core.$strip>, z.ZodObject<{
|
|
1272
1493
|
title: z.ZodString;
|
|
1494
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1273
1495
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1274
1496
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
1275
1497
|
isAvailable: z.ZodBoolean;
|
|
1276
1498
|
modelId: z.ZodString;
|
|
1277
1499
|
}, z.core.$strip>, z.ZodObject<{
|
|
1278
1500
|
title: z.ZodString;
|
|
1501
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1279
1502
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1280
1503
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
1281
1504
|
value: z.ZodNumber;
|
|
1282
1505
|
}, z.core.$strip>, z.ZodObject<{
|
|
1283
1506
|
title: z.ZodString;
|
|
1507
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1284
1508
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1285
1509
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
1286
1510
|
isAvailable: z.ZodBoolean;
|
|
1287
1511
|
modelId: z.ZodString;
|
|
1288
1512
|
}, z.core.$strip>, z.ZodObject<{
|
|
1289
1513
|
title: z.ZodString;
|
|
1514
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1290
1515
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1291
1516
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1292
1517
|
order: z.ZodNumber;
|
|
@@ -1294,74 +1519,99 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1294
1519
|
isAvailable: z.ZodBoolean;
|
|
1295
1520
|
}, z.core.$strip>, z.ZodObject<{
|
|
1296
1521
|
title: z.ZodString;
|
|
1522
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1297
1523
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1298
1524
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1299
1525
|
value: z.ZodNumber;
|
|
1300
1526
|
}, z.core.$strip>, z.ZodObject<{
|
|
1301
1527
|
title: z.ZodString;
|
|
1528
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1302
1529
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1303
1530
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1304
1531
|
isAvailable: z.ZodBoolean;
|
|
1305
1532
|
modelId: z.ZodString;
|
|
1306
1533
|
}, z.core.$strip>, z.ZodObject<{
|
|
1307
1534
|
title: z.ZodString;
|
|
1535
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1308
1536
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1309
1537
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1310
1538
|
isAvailable: z.ZodBoolean;
|
|
1311
1539
|
modelId: z.ZodString;
|
|
1312
1540
|
}, z.core.$strip>, z.ZodObject<{
|
|
1313
1541
|
title: z.ZodString;
|
|
1542
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1314
1543
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1315
1544
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1316
1545
|
value: z.ZodNumber;
|
|
1317
1546
|
}, z.core.$strip>, z.ZodObject<{
|
|
1318
1547
|
title: z.ZodString;
|
|
1548
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1319
1549
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1320
1550
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1321
1551
|
isAvailable: z.ZodBoolean;
|
|
1322
1552
|
modelId: z.ZodString;
|
|
1323
1553
|
}, z.core.$strip>, z.ZodObject<{
|
|
1324
1554
|
title: z.ZodString;
|
|
1555
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1325
1556
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1326
1557
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1327
1558
|
value: z.ZodNumber;
|
|
1328
1559
|
}, z.core.$strip>, z.ZodObject<{
|
|
1329
1560
|
title: z.ZodString;
|
|
1561
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1330
1562
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1331
1563
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1332
1564
|
isAvailable: z.ZodBoolean;
|
|
1333
1565
|
modelId: z.ZodString;
|
|
1334
1566
|
}, z.core.$strip>, z.ZodObject<{
|
|
1335
1567
|
title: z.ZodString;
|
|
1568
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1336
1569
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1337
1570
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1338
1571
|
value: z.ZodNumber;
|
|
1339
1572
|
}, z.core.$strip>, z.ZodObject<{
|
|
1340
1573
|
title: z.ZodString;
|
|
1574
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1341
1575
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1342
1576
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1343
1577
|
isAvailable: z.ZodBoolean;
|
|
1344
1578
|
modelId: z.ZodString;
|
|
1345
1579
|
}, z.core.$strip>, z.ZodObject<{
|
|
1346
1580
|
title: z.ZodString;
|
|
1581
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1347
1582
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1348
1583
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1349
1584
|
isAvailable: z.ZodBoolean;
|
|
1350
1585
|
modelId: z.ZodString;
|
|
1351
1586
|
}, z.core.$strip>, z.ZodObject<{
|
|
1352
1587
|
title: z.ZodString;
|
|
1588
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1589
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1590
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_QUOTA>;
|
|
1591
|
+
value: z.ZodNumber;
|
|
1592
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1593
|
+
title: z.ZodString;
|
|
1594
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1353
1595
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1354
1596
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1355
1597
|
isAvailable: z.ZodBoolean;
|
|
1356
1598
|
modelId: z.ZodString;
|
|
1357
1599
|
}, z.core.$strip>, z.ZodObject<{
|
|
1358
1600
|
title: z.ZodString;
|
|
1601
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1602
|
+
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1603
|
+
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_QUOTA>;
|
|
1604
|
+
value: z.ZodNumber;
|
|
1605
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1606
|
+
title: z.ZodString;
|
|
1607
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1359
1608
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1360
1609
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1361
1610
|
isAvailable: z.ZodBoolean;
|
|
1362
1611
|
modelId: z.ZodString;
|
|
1363
1612
|
}, z.core.$strip>, z.ZodObject<{
|
|
1364
1613
|
title: z.ZodString;
|
|
1614
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1365
1615
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1366
1616
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1367
1617
|
value: z.ZodNumber;
|