@purpleschool/gptbot 0.15.56 → 0.15.57
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 +76 -0
- package/build/commands/product/find-product.command.d.ts +76 -0
- package/build/commands/product/get-my-products.command.d.ts +38 -0
- package/build/commands/product/update-product.command.d.ts +76 -0
- package/build/commands/subscription/create-subscription.command.d.ts +76 -0
- package/build/commands/subscription/find-subscription.command.d.ts +114 -0
- package/build/commands/subscription/get-available-upgrades.command.d.ts +76 -0
- package/build/commands/subscription/get-free-subscription.command.d.ts +38 -0
- package/build/commands/subscription/get-subscriptions-summary.command.d.ts +190 -0
- package/build/commands/subscription/update-subscription.command.d.ts +76 -0
- package/build/commands/team-account/find-current-team-account-products-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions-by-team-account-id.command.d.ts +38 -0
- package/build/commands/team-account/find-current-team-account-subscriptions.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-products.command.d.ts +38 -0
- package/build/commands/team-account/find-team-account-subscriptions.command.d.ts +76 -0
- package/build/commands/team-account/get-team-account-available-upgrades.command.d.ts +38 -0
- package/build/commands/team-to-product/get-team-to-products.command.d.ts +38 -0
- package/build/commands/team-to-subscription/get-team-to-subscriptions.command.d.ts +38 -0
- package/build/commands/tools/tool/find-grouped-tools.command.d.ts +1 -0
- package/build/commands/user/get-user-products.command.d.ts +38 -0
- package/build/commands/user/get-user-subscriptions.command.d.ts +38 -0
- package/build/commands/user-to-subscription/get-user-to-subscriptions.command.d.ts +38 -0
- package/build/models/product.schema.d.ts +38 -0
- package/build/models/subscription-feature.schema.d.ts +77 -0
- package/build/models/subscription-feature.schema.js +1 -0
- package/build/models/subscription-upgrade-schema.d.ts +38 -0
- package/build/models/subscription.schema.d.ts +190 -0
- package/build/models/team-account/team-to-product.schema.d.ts +38 -0
- package/build/models/team-account/team-to-subscription.schema.d.ts +38 -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 +38 -0
- package/build/models/user-to-subscription.schema.d.ts +114 -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,87 @@ 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>;
|
|
222
258
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
223
259
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
224
260
|
isAvailable: z.ZodBoolean;
|
|
225
261
|
modelId: z.ZodString;
|
|
226
262
|
}, z.core.$strip>, z.ZodObject<{
|
|
227
263
|
title: z.ZodString;
|
|
264
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
228
265
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
229
266
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
230
267
|
isAvailable: z.ZodBoolean;
|
|
231
268
|
modelId: z.ZodString;
|
|
232
269
|
}, z.core.$strip>, z.ZodObject<{
|
|
233
270
|
title: z.ZodString;
|
|
271
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
234
272
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
235
273
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
236
274
|
value: z.ZodNumber;
|
|
@@ -278,6 +316,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
278
316
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
279
317
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
280
318
|
title: z.ZodString;
|
|
319
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
281
320
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
282
321
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
283
322
|
order: z.ZodNumber;
|
|
@@ -286,76 +325,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
286
325
|
maxInputLength: z.ZodNumber;
|
|
287
326
|
}, z.core.$strip>, z.ZodObject<{
|
|
288
327
|
title: z.ZodString;
|
|
328
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
289
329
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
290
330
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
291
331
|
value: z.ZodNumber;
|
|
292
332
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
293
333
|
}, z.core.$strip>, z.ZodObject<{
|
|
294
334
|
title: z.ZodString;
|
|
335
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
295
336
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
296
337
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
297
338
|
tooltip: z.ZodString;
|
|
298
339
|
value: z.ZodNumber;
|
|
299
340
|
}, z.core.$strip>, z.ZodObject<{
|
|
300
341
|
title: z.ZodString;
|
|
342
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
301
343
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
302
344
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
303
345
|
isAvailable: z.ZodBoolean;
|
|
304
346
|
}, z.core.$strip>, z.ZodObject<{
|
|
305
347
|
title: z.ZodString;
|
|
348
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
306
349
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
307
350
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
308
351
|
isAvailable: z.ZodBoolean;
|
|
309
352
|
}, z.core.$strip>, z.ZodObject<{
|
|
310
353
|
title: z.ZodString;
|
|
354
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
311
355
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
312
356
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
313
357
|
isAvailable: z.ZodBoolean;
|
|
314
358
|
modelId: z.ZodString;
|
|
315
359
|
}, z.core.$strip>, z.ZodObject<{
|
|
316
360
|
title: z.ZodString;
|
|
361
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
317
362
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
318
363
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
319
364
|
value: z.ZodNumber;
|
|
320
365
|
}, z.core.$strip>, z.ZodObject<{
|
|
321
366
|
title: z.ZodString;
|
|
367
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
322
368
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
323
369
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
324
370
|
value: z.ZodNumber;
|
|
325
371
|
}, z.core.$strip>, z.ZodObject<{
|
|
326
372
|
title: z.ZodString;
|
|
373
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
327
374
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
328
375
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
329
376
|
isAvailable: z.ZodBoolean;
|
|
330
377
|
modelId: z.ZodString;
|
|
331
378
|
}, z.core.$strip>, z.ZodObject<{
|
|
332
379
|
title: z.ZodString;
|
|
380
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
333
381
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
334
382
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
335
383
|
value: z.ZodNumber;
|
|
336
384
|
}, z.core.$strip>, z.ZodObject<{
|
|
337
385
|
title: z.ZodString;
|
|
386
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
338
387
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
339
388
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
340
389
|
value: z.ZodNumber;
|
|
341
390
|
}, z.core.$strip>, z.ZodObject<{
|
|
342
391
|
title: z.ZodString;
|
|
392
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
343
393
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
344
394
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
345
395
|
isAvailable: z.ZodBoolean;
|
|
346
396
|
modelId: z.ZodString;
|
|
347
397
|
}, z.core.$strip>, z.ZodObject<{
|
|
348
398
|
title: z.ZodString;
|
|
399
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
349
400
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
350
401
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
351
402
|
isAvailable: z.ZodBoolean;
|
|
352
403
|
}, z.core.$strip>, z.ZodObject<{
|
|
353
404
|
title: z.ZodString;
|
|
405
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
354
406
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
355
407
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
356
408
|
value: z.ZodNumber;
|
|
357
409
|
}, z.core.$strip>, z.ZodObject<{
|
|
358
410
|
title: z.ZodString;
|
|
411
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
359
412
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
360
413
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
361
414
|
tokens: z.ZodNumber;
|
|
@@ -371,6 +424,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
371
424
|
}, z.core.$strip>;
|
|
372
425
|
}, z.core.$strip>, z.ZodObject<{
|
|
373
426
|
title: z.ZodString;
|
|
427
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
374
428
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
375
429
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
376
430
|
isAvailable: z.ZodBoolean;
|
|
@@ -387,50 +441,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
387
441
|
}, z.core.$strip>;
|
|
388
442
|
}, z.core.$strip>, z.ZodObject<{
|
|
389
443
|
title: z.ZodString;
|
|
444
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
390
445
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
391
446
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
392
447
|
value: z.ZodNumber;
|
|
393
448
|
}, z.core.$strip>, z.ZodObject<{
|
|
394
449
|
title: z.ZodString;
|
|
450
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
395
451
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
396
452
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
397
453
|
isAvailable: z.ZodBoolean;
|
|
398
454
|
modelId: z.ZodString;
|
|
399
455
|
}, z.core.$strip>, z.ZodObject<{
|
|
400
456
|
title: z.ZodString;
|
|
457
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
401
458
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
402
459
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
403
460
|
value: z.ZodNumber;
|
|
404
461
|
}, z.core.$strip>, z.ZodObject<{
|
|
405
462
|
title: z.ZodString;
|
|
463
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
406
464
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
407
465
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
408
466
|
isAvailable: z.ZodBoolean;
|
|
409
467
|
modelId: z.ZodString;
|
|
410
468
|
}, z.core.$strip>, z.ZodObject<{
|
|
411
469
|
title: z.ZodString;
|
|
470
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
412
471
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
413
472
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
414
473
|
value: z.ZodNumber;
|
|
415
474
|
}, z.core.$strip>, z.ZodObject<{
|
|
416
475
|
title: z.ZodString;
|
|
476
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
417
477
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
418
478
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
419
479
|
isAvailable: z.ZodBoolean;
|
|
420
480
|
modelId: z.ZodString;
|
|
421
481
|
}, z.core.$strip>, z.ZodObject<{
|
|
422
482
|
title: z.ZodString;
|
|
483
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
423
484
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
424
485
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
425
486
|
value: z.ZodNumber;
|
|
426
487
|
}, z.core.$strip>, z.ZodObject<{
|
|
427
488
|
title: z.ZodString;
|
|
489
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
428
490
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
429
491
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
430
492
|
isAvailable: z.ZodBoolean;
|
|
431
493
|
modelId: z.ZodString;
|
|
432
494
|
}, z.core.$strip>, z.ZodObject<{
|
|
433
495
|
title: z.ZodString;
|
|
496
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
434
497
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
435
498
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
436
499
|
order: z.ZodNumber;
|
|
@@ -438,74 +501,87 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
438
501
|
isAvailable: z.ZodBoolean;
|
|
439
502
|
}, z.core.$strip>, z.ZodObject<{
|
|
440
503
|
title: z.ZodString;
|
|
504
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
441
505
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
442
506
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
443
507
|
value: z.ZodNumber;
|
|
444
508
|
}, z.core.$strip>, z.ZodObject<{
|
|
445
509
|
title: z.ZodString;
|
|
510
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
446
511
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
447
512
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
448
513
|
isAvailable: z.ZodBoolean;
|
|
449
514
|
modelId: z.ZodString;
|
|
450
515
|
}, z.core.$strip>, z.ZodObject<{
|
|
451
516
|
title: z.ZodString;
|
|
517
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
452
518
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
453
519
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
454
520
|
isAvailable: z.ZodBoolean;
|
|
455
521
|
modelId: z.ZodString;
|
|
456
522
|
}, z.core.$strip>, z.ZodObject<{
|
|
457
523
|
title: z.ZodString;
|
|
524
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
458
525
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
459
526
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
460
527
|
value: z.ZodNumber;
|
|
461
528
|
}, z.core.$strip>, z.ZodObject<{
|
|
462
529
|
title: z.ZodString;
|
|
530
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
463
531
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
464
532
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
465
533
|
isAvailable: z.ZodBoolean;
|
|
466
534
|
modelId: z.ZodString;
|
|
467
535
|
}, z.core.$strip>, z.ZodObject<{
|
|
468
536
|
title: z.ZodString;
|
|
537
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
469
538
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
470
539
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
471
540
|
value: z.ZodNumber;
|
|
472
541
|
}, z.core.$strip>, z.ZodObject<{
|
|
473
542
|
title: z.ZodString;
|
|
543
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
474
544
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
475
545
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
476
546
|
isAvailable: z.ZodBoolean;
|
|
477
547
|
modelId: z.ZodString;
|
|
478
548
|
}, z.core.$strip>, z.ZodObject<{
|
|
479
549
|
title: z.ZodString;
|
|
550
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
480
551
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
481
552
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
482
553
|
value: z.ZodNumber;
|
|
483
554
|
}, z.core.$strip>, z.ZodObject<{
|
|
484
555
|
title: z.ZodString;
|
|
556
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
485
557
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
486
558
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
487
559
|
isAvailable: z.ZodBoolean;
|
|
488
560
|
modelId: z.ZodString;
|
|
489
561
|
}, z.core.$strip>, z.ZodObject<{
|
|
490
562
|
title: z.ZodString;
|
|
563
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
491
564
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
492
565
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
493
566
|
isAvailable: z.ZodBoolean;
|
|
494
567
|
modelId: z.ZodString;
|
|
495
568
|
}, z.core.$strip>, z.ZodObject<{
|
|
496
569
|
title: z.ZodString;
|
|
570
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
497
571
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
498
572
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
499
573
|
isAvailable: z.ZodBoolean;
|
|
500
574
|
modelId: z.ZodString;
|
|
501
575
|
}, z.core.$strip>, z.ZodObject<{
|
|
502
576
|
title: z.ZodString;
|
|
577
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
503
578
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
504
579
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
505
580
|
isAvailable: z.ZodBoolean;
|
|
506
581
|
modelId: z.ZodString;
|
|
507
582
|
}, z.core.$strip>, z.ZodObject<{
|
|
508
583
|
title: z.ZodString;
|
|
584
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
509
585
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
510
586
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
511
587
|
value: z.ZodNumber;
|
|
@@ -560,6 +636,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
560
636
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
561
637
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
562
638
|
title: z.ZodString;
|
|
639
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
563
640
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
564
641
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
565
642
|
order: z.ZodNumber;
|
|
@@ -568,76 +645,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
568
645
|
maxInputLength: z.ZodNumber;
|
|
569
646
|
}, z.core.$strip>, z.ZodObject<{
|
|
570
647
|
title: z.ZodString;
|
|
648
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
571
649
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
572
650
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
573
651
|
value: z.ZodNumber;
|
|
574
652
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
575
653
|
}, z.core.$strip>, z.ZodObject<{
|
|
576
654
|
title: z.ZodString;
|
|
655
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
577
656
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
578
657
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
579
658
|
tooltip: z.ZodString;
|
|
580
659
|
value: z.ZodNumber;
|
|
581
660
|
}, z.core.$strip>, z.ZodObject<{
|
|
582
661
|
title: z.ZodString;
|
|
662
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
583
663
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
584
664
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
585
665
|
isAvailable: z.ZodBoolean;
|
|
586
666
|
}, z.core.$strip>, z.ZodObject<{
|
|
587
667
|
title: z.ZodString;
|
|
668
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
588
669
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
589
670
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
590
671
|
isAvailable: z.ZodBoolean;
|
|
591
672
|
}, z.core.$strip>, z.ZodObject<{
|
|
592
673
|
title: z.ZodString;
|
|
674
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
593
675
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
594
676
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
595
677
|
isAvailable: z.ZodBoolean;
|
|
596
678
|
modelId: z.ZodString;
|
|
597
679
|
}, z.core.$strip>, z.ZodObject<{
|
|
598
680
|
title: z.ZodString;
|
|
681
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
599
682
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
600
683
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
601
684
|
value: z.ZodNumber;
|
|
602
685
|
}, z.core.$strip>, z.ZodObject<{
|
|
603
686
|
title: z.ZodString;
|
|
687
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
604
688
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
605
689
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
606
690
|
value: z.ZodNumber;
|
|
607
691
|
}, z.core.$strip>, z.ZodObject<{
|
|
608
692
|
title: z.ZodString;
|
|
693
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
609
694
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
610
695
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
611
696
|
isAvailable: z.ZodBoolean;
|
|
612
697
|
modelId: z.ZodString;
|
|
613
698
|
}, z.core.$strip>, z.ZodObject<{
|
|
614
699
|
title: z.ZodString;
|
|
700
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
615
701
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
616
702
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
617
703
|
value: z.ZodNumber;
|
|
618
704
|
}, z.core.$strip>, z.ZodObject<{
|
|
619
705
|
title: z.ZodString;
|
|
706
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
620
707
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
621
708
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
622
709
|
value: z.ZodNumber;
|
|
623
710
|
}, z.core.$strip>, z.ZodObject<{
|
|
624
711
|
title: z.ZodString;
|
|
712
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
625
713
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
626
714
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
627
715
|
isAvailable: z.ZodBoolean;
|
|
628
716
|
modelId: z.ZodString;
|
|
629
717
|
}, z.core.$strip>, z.ZodObject<{
|
|
630
718
|
title: z.ZodString;
|
|
719
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
631
720
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
632
721
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
633
722
|
isAvailable: z.ZodBoolean;
|
|
634
723
|
}, z.core.$strip>, z.ZodObject<{
|
|
635
724
|
title: z.ZodString;
|
|
725
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
636
726
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
637
727
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
638
728
|
value: z.ZodNumber;
|
|
639
729
|
}, z.core.$strip>, z.ZodObject<{
|
|
640
730
|
title: z.ZodString;
|
|
731
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
641
732
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
642
733
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
643
734
|
tokens: z.ZodNumber;
|
|
@@ -653,6 +744,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
653
744
|
}, z.core.$strip>;
|
|
654
745
|
}, z.core.$strip>, z.ZodObject<{
|
|
655
746
|
title: z.ZodString;
|
|
747
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
656
748
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
657
749
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
658
750
|
isAvailable: z.ZodBoolean;
|
|
@@ -669,50 +761,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
669
761
|
}, z.core.$strip>;
|
|
670
762
|
}, z.core.$strip>, z.ZodObject<{
|
|
671
763
|
title: z.ZodString;
|
|
764
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
672
765
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
673
766
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
674
767
|
value: z.ZodNumber;
|
|
675
768
|
}, z.core.$strip>, z.ZodObject<{
|
|
676
769
|
title: z.ZodString;
|
|
770
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
677
771
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
678
772
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
679
773
|
isAvailable: z.ZodBoolean;
|
|
680
774
|
modelId: z.ZodString;
|
|
681
775
|
}, z.core.$strip>, z.ZodObject<{
|
|
682
776
|
title: z.ZodString;
|
|
777
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
683
778
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
684
779
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
685
780
|
value: z.ZodNumber;
|
|
686
781
|
}, z.core.$strip>, z.ZodObject<{
|
|
687
782
|
title: z.ZodString;
|
|
783
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
688
784
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
689
785
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
690
786
|
isAvailable: z.ZodBoolean;
|
|
691
787
|
modelId: z.ZodString;
|
|
692
788
|
}, z.core.$strip>, z.ZodObject<{
|
|
693
789
|
title: z.ZodString;
|
|
790
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
694
791
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
695
792
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
696
793
|
value: z.ZodNumber;
|
|
697
794
|
}, z.core.$strip>, z.ZodObject<{
|
|
698
795
|
title: z.ZodString;
|
|
796
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
699
797
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
700
798
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
701
799
|
isAvailable: z.ZodBoolean;
|
|
702
800
|
modelId: z.ZodString;
|
|
703
801
|
}, z.core.$strip>, z.ZodObject<{
|
|
704
802
|
title: z.ZodString;
|
|
803
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
705
804
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
706
805
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
707
806
|
value: z.ZodNumber;
|
|
708
807
|
}, z.core.$strip>, z.ZodObject<{
|
|
709
808
|
title: z.ZodString;
|
|
809
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
710
810
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
711
811
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
712
812
|
isAvailable: z.ZodBoolean;
|
|
713
813
|
modelId: z.ZodString;
|
|
714
814
|
}, z.core.$strip>, z.ZodObject<{
|
|
715
815
|
title: z.ZodString;
|
|
816
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
716
817
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
717
818
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
718
819
|
order: z.ZodNumber;
|
|
@@ -720,74 +821,87 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
720
821
|
isAvailable: z.ZodBoolean;
|
|
721
822
|
}, z.core.$strip>, z.ZodObject<{
|
|
722
823
|
title: z.ZodString;
|
|
824
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
723
825
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
724
826
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
725
827
|
value: z.ZodNumber;
|
|
726
828
|
}, z.core.$strip>, z.ZodObject<{
|
|
727
829
|
title: z.ZodString;
|
|
830
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
728
831
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
729
832
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
730
833
|
isAvailable: z.ZodBoolean;
|
|
731
834
|
modelId: z.ZodString;
|
|
732
835
|
}, z.core.$strip>, z.ZodObject<{
|
|
733
836
|
title: z.ZodString;
|
|
837
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
734
838
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
735
839
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
736
840
|
isAvailable: z.ZodBoolean;
|
|
737
841
|
modelId: z.ZodString;
|
|
738
842
|
}, z.core.$strip>, z.ZodObject<{
|
|
739
843
|
title: z.ZodString;
|
|
844
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
740
845
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
741
846
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
742
847
|
value: z.ZodNumber;
|
|
743
848
|
}, z.core.$strip>, z.ZodObject<{
|
|
744
849
|
title: z.ZodString;
|
|
850
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
745
851
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
746
852
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
747
853
|
isAvailable: z.ZodBoolean;
|
|
748
854
|
modelId: z.ZodString;
|
|
749
855
|
}, z.core.$strip>, z.ZodObject<{
|
|
750
856
|
title: z.ZodString;
|
|
857
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
751
858
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
752
859
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
753
860
|
value: z.ZodNumber;
|
|
754
861
|
}, z.core.$strip>, z.ZodObject<{
|
|
755
862
|
title: z.ZodString;
|
|
863
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
756
864
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
757
865
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
758
866
|
isAvailable: z.ZodBoolean;
|
|
759
867
|
modelId: z.ZodString;
|
|
760
868
|
}, z.core.$strip>, z.ZodObject<{
|
|
761
869
|
title: z.ZodString;
|
|
870
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
762
871
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
763
872
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
764
873
|
value: z.ZodNumber;
|
|
765
874
|
}, z.core.$strip>, z.ZodObject<{
|
|
766
875
|
title: z.ZodString;
|
|
876
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
767
877
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
768
878
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
769
879
|
isAvailable: z.ZodBoolean;
|
|
770
880
|
modelId: z.ZodString;
|
|
771
881
|
}, z.core.$strip>, z.ZodObject<{
|
|
772
882
|
title: z.ZodString;
|
|
883
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
773
884
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
774
885
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
775
886
|
isAvailable: z.ZodBoolean;
|
|
776
887
|
modelId: z.ZodString;
|
|
777
888
|
}, z.core.$strip>, z.ZodObject<{
|
|
778
889
|
title: z.ZodString;
|
|
890
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
779
891
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
780
892
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
781
893
|
isAvailable: z.ZodBoolean;
|
|
782
894
|
modelId: z.ZodString;
|
|
783
895
|
}, z.core.$strip>, z.ZodObject<{
|
|
784
896
|
title: z.ZodString;
|
|
897
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
785
898
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
786
899
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
787
900
|
isAvailable: z.ZodBoolean;
|
|
788
901
|
modelId: z.ZodString;
|
|
789
902
|
}, z.core.$strip>, z.ZodObject<{
|
|
790
903
|
title: z.ZodString;
|
|
904
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
791
905
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
792
906
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
793
907
|
value: z.ZodNumber;
|
|
@@ -846,6 +960,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
846
960
|
}, z.core.$strip>;
|
|
847
961
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
848
962
|
title: z.ZodString;
|
|
963
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
849
964
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
850
965
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
851
966
|
order: z.ZodNumber;
|
|
@@ -854,76 +969,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
854
969
|
maxInputLength: z.ZodNumber;
|
|
855
970
|
}, z.core.$strip>, z.ZodObject<{
|
|
856
971
|
title: z.ZodString;
|
|
972
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
857
973
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
858
974
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
859
975
|
value: z.ZodNumber;
|
|
860
976
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
861
977
|
}, z.core.$strip>, z.ZodObject<{
|
|
862
978
|
title: z.ZodString;
|
|
979
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
863
980
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
864
981
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
865
982
|
tooltip: z.ZodString;
|
|
866
983
|
value: z.ZodNumber;
|
|
867
984
|
}, z.core.$strip>, z.ZodObject<{
|
|
868
985
|
title: z.ZodString;
|
|
986
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
869
987
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
870
988
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
871
989
|
isAvailable: z.ZodBoolean;
|
|
872
990
|
}, z.core.$strip>, z.ZodObject<{
|
|
873
991
|
title: z.ZodString;
|
|
992
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
874
993
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
875
994
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
876
995
|
isAvailable: z.ZodBoolean;
|
|
877
996
|
}, z.core.$strip>, z.ZodObject<{
|
|
878
997
|
title: z.ZodString;
|
|
998
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
879
999
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
880
1000
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
881
1001
|
isAvailable: z.ZodBoolean;
|
|
882
1002
|
modelId: z.ZodString;
|
|
883
1003
|
}, z.core.$strip>, z.ZodObject<{
|
|
884
1004
|
title: z.ZodString;
|
|
1005
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
885
1006
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
886
1007
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
887
1008
|
value: z.ZodNumber;
|
|
888
1009
|
}, z.core.$strip>, z.ZodObject<{
|
|
889
1010
|
title: z.ZodString;
|
|
1011
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
890
1012
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
891
1013
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
892
1014
|
value: z.ZodNumber;
|
|
893
1015
|
}, z.core.$strip>, z.ZodObject<{
|
|
894
1016
|
title: z.ZodString;
|
|
1017
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
895
1018
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
896
1019
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
897
1020
|
isAvailable: z.ZodBoolean;
|
|
898
1021
|
modelId: z.ZodString;
|
|
899
1022
|
}, z.core.$strip>, z.ZodObject<{
|
|
900
1023
|
title: z.ZodString;
|
|
1024
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
901
1025
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
902
1026
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
903
1027
|
value: z.ZodNumber;
|
|
904
1028
|
}, z.core.$strip>, z.ZodObject<{
|
|
905
1029
|
title: z.ZodString;
|
|
1030
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
906
1031
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
907
1032
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
908
1033
|
value: z.ZodNumber;
|
|
909
1034
|
}, z.core.$strip>, z.ZodObject<{
|
|
910
1035
|
title: z.ZodString;
|
|
1036
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
911
1037
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
912
1038
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
913
1039
|
isAvailable: z.ZodBoolean;
|
|
914
1040
|
modelId: z.ZodString;
|
|
915
1041
|
}, z.core.$strip>, z.ZodObject<{
|
|
916
1042
|
title: z.ZodString;
|
|
1043
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
917
1044
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
918
1045
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
919
1046
|
isAvailable: z.ZodBoolean;
|
|
920
1047
|
}, z.core.$strip>, z.ZodObject<{
|
|
921
1048
|
title: z.ZodString;
|
|
1049
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
922
1050
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
923
1051
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
924
1052
|
value: z.ZodNumber;
|
|
925
1053
|
}, z.core.$strip>, z.ZodObject<{
|
|
926
1054
|
title: z.ZodString;
|
|
1055
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
927
1056
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
928
1057
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
929
1058
|
tokens: z.ZodNumber;
|
|
@@ -939,6 +1068,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
939
1068
|
}, z.core.$strip>;
|
|
940
1069
|
}, z.core.$strip>, z.ZodObject<{
|
|
941
1070
|
title: z.ZodString;
|
|
1071
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
942
1072
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
943
1073
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
944
1074
|
isAvailable: z.ZodBoolean;
|
|
@@ -955,50 +1085,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
955
1085
|
}, z.core.$strip>;
|
|
956
1086
|
}, z.core.$strip>, z.ZodObject<{
|
|
957
1087
|
title: z.ZodString;
|
|
1088
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
958
1089
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
959
1090
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
960
1091
|
value: z.ZodNumber;
|
|
961
1092
|
}, z.core.$strip>, z.ZodObject<{
|
|
962
1093
|
title: z.ZodString;
|
|
1094
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
963
1095
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
964
1096
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
965
1097
|
isAvailable: z.ZodBoolean;
|
|
966
1098
|
modelId: z.ZodString;
|
|
967
1099
|
}, z.core.$strip>, z.ZodObject<{
|
|
968
1100
|
title: z.ZodString;
|
|
1101
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
969
1102
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
970
1103
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
971
1104
|
value: z.ZodNumber;
|
|
972
1105
|
}, z.core.$strip>, z.ZodObject<{
|
|
973
1106
|
title: z.ZodString;
|
|
1107
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
974
1108
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
975
1109
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
976
1110
|
isAvailable: z.ZodBoolean;
|
|
977
1111
|
modelId: z.ZodString;
|
|
978
1112
|
}, z.core.$strip>, z.ZodObject<{
|
|
979
1113
|
title: z.ZodString;
|
|
1114
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
980
1115
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
981
1116
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
982
1117
|
value: z.ZodNumber;
|
|
983
1118
|
}, z.core.$strip>, z.ZodObject<{
|
|
984
1119
|
title: z.ZodString;
|
|
1120
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
985
1121
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
986
1122
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
987
1123
|
isAvailable: z.ZodBoolean;
|
|
988
1124
|
modelId: z.ZodString;
|
|
989
1125
|
}, z.core.$strip>, z.ZodObject<{
|
|
990
1126
|
title: z.ZodString;
|
|
1127
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
991
1128
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
992
1129
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
993
1130
|
value: z.ZodNumber;
|
|
994
1131
|
}, z.core.$strip>, z.ZodObject<{
|
|
995
1132
|
title: z.ZodString;
|
|
1133
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
996
1134
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
997
1135
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
998
1136
|
isAvailable: z.ZodBoolean;
|
|
999
1137
|
modelId: z.ZodString;
|
|
1000
1138
|
}, z.core.$strip>, z.ZodObject<{
|
|
1001
1139
|
title: z.ZodString;
|
|
1140
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1002
1141
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1003
1142
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1004
1143
|
order: z.ZodNumber;
|
|
@@ -1006,74 +1145,87 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1006
1145
|
isAvailable: z.ZodBoolean;
|
|
1007
1146
|
}, z.core.$strip>, z.ZodObject<{
|
|
1008
1147
|
title: z.ZodString;
|
|
1148
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1009
1149
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1010
1150
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1011
1151
|
value: z.ZodNumber;
|
|
1012
1152
|
}, z.core.$strip>, z.ZodObject<{
|
|
1013
1153
|
title: z.ZodString;
|
|
1154
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1014
1155
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1015
1156
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1016
1157
|
isAvailable: z.ZodBoolean;
|
|
1017
1158
|
modelId: z.ZodString;
|
|
1018
1159
|
}, z.core.$strip>, z.ZodObject<{
|
|
1019
1160
|
title: z.ZodString;
|
|
1161
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1020
1162
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1021
1163
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1022
1164
|
isAvailable: z.ZodBoolean;
|
|
1023
1165
|
modelId: z.ZodString;
|
|
1024
1166
|
}, z.core.$strip>, z.ZodObject<{
|
|
1025
1167
|
title: z.ZodString;
|
|
1168
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1026
1169
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1027
1170
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1028
1171
|
value: z.ZodNumber;
|
|
1029
1172
|
}, z.core.$strip>, z.ZodObject<{
|
|
1030
1173
|
title: z.ZodString;
|
|
1174
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1031
1175
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1032
1176
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1033
1177
|
isAvailable: z.ZodBoolean;
|
|
1034
1178
|
modelId: z.ZodString;
|
|
1035
1179
|
}, z.core.$strip>, z.ZodObject<{
|
|
1036
1180
|
title: z.ZodString;
|
|
1181
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1037
1182
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1038
1183
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1039
1184
|
value: z.ZodNumber;
|
|
1040
1185
|
}, z.core.$strip>, z.ZodObject<{
|
|
1041
1186
|
title: z.ZodString;
|
|
1187
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1042
1188
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1043
1189
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1044
1190
|
isAvailable: z.ZodBoolean;
|
|
1045
1191
|
modelId: z.ZodString;
|
|
1046
1192
|
}, z.core.$strip>, z.ZodObject<{
|
|
1047
1193
|
title: z.ZodString;
|
|
1194
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1048
1195
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1049
1196
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1050
1197
|
value: z.ZodNumber;
|
|
1051
1198
|
}, z.core.$strip>, z.ZodObject<{
|
|
1052
1199
|
title: z.ZodString;
|
|
1200
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1053
1201
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1054
1202
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1055
1203
|
isAvailable: z.ZodBoolean;
|
|
1056
1204
|
modelId: z.ZodString;
|
|
1057
1205
|
}, z.core.$strip>, z.ZodObject<{
|
|
1058
1206
|
title: z.ZodString;
|
|
1207
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1059
1208
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1060
1209
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1061
1210
|
isAvailable: z.ZodBoolean;
|
|
1062
1211
|
modelId: z.ZodString;
|
|
1063
1212
|
}, z.core.$strip>, z.ZodObject<{
|
|
1064
1213
|
title: z.ZodString;
|
|
1214
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1065
1215
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1066
1216
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1067
1217
|
isAvailable: z.ZodBoolean;
|
|
1068
1218
|
modelId: z.ZodString;
|
|
1069
1219
|
}, z.core.$strip>, z.ZodObject<{
|
|
1070
1220
|
title: z.ZodString;
|
|
1221
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1071
1222
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1072
1223
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1073
1224
|
isAvailable: z.ZodBoolean;
|
|
1074
1225
|
modelId: z.ZodString;
|
|
1075
1226
|
}, z.core.$strip>, z.ZodObject<{
|
|
1076
1227
|
title: z.ZodString;
|
|
1228
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1077
1229
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1078
1230
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1079
1231
|
value: z.ZodNumber;
|
|
@@ -1134,6 +1286,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1134
1286
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
1135
1287
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
1136
1288
|
title: z.ZodString;
|
|
1289
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1137
1290
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
1138
1291
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
1139
1292
|
order: z.ZodNumber;
|
|
@@ -1142,76 +1295,90 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1142
1295
|
maxInputLength: z.ZodNumber;
|
|
1143
1296
|
}, z.core.$strip>, z.ZodObject<{
|
|
1144
1297
|
title: z.ZodString;
|
|
1298
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1145
1299
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
1146
1300
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1147
1301
|
value: z.ZodNumber;
|
|
1148
1302
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
1149
1303
|
}, z.core.$strip>, z.ZodObject<{
|
|
1150
1304
|
title: z.ZodString;
|
|
1305
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1151
1306
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
1152
1307
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1153
1308
|
tooltip: z.ZodString;
|
|
1154
1309
|
value: z.ZodNumber;
|
|
1155
1310
|
}, z.core.$strip>, z.ZodObject<{
|
|
1156
1311
|
title: z.ZodString;
|
|
1312
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1157
1313
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1158
1314
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
1159
1315
|
isAvailable: z.ZodBoolean;
|
|
1160
1316
|
}, z.core.$strip>, z.ZodObject<{
|
|
1161
1317
|
title: z.ZodString;
|
|
1318
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1162
1319
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1163
1320
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
1164
1321
|
isAvailable: z.ZodBoolean;
|
|
1165
1322
|
}, z.core.$strip>, z.ZodObject<{
|
|
1166
1323
|
title: z.ZodString;
|
|
1324
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1167
1325
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1168
1326
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
1169
1327
|
isAvailable: z.ZodBoolean;
|
|
1170
1328
|
modelId: z.ZodString;
|
|
1171
1329
|
}, z.core.$strip>, z.ZodObject<{
|
|
1172
1330
|
title: z.ZodString;
|
|
1331
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1173
1332
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1174
1333
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
1175
1334
|
value: z.ZodNumber;
|
|
1176
1335
|
}, z.core.$strip>, z.ZodObject<{
|
|
1177
1336
|
title: z.ZodString;
|
|
1337
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1178
1338
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
1179
1339
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
1180
1340
|
value: z.ZodNumber;
|
|
1181
1341
|
}, z.core.$strip>, z.ZodObject<{
|
|
1182
1342
|
title: z.ZodString;
|
|
1343
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1183
1344
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1184
1345
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
1185
1346
|
isAvailable: z.ZodBoolean;
|
|
1186
1347
|
modelId: z.ZodString;
|
|
1187
1348
|
}, z.core.$strip>, z.ZodObject<{
|
|
1188
1349
|
title: z.ZodString;
|
|
1350
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1189
1351
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
1190
1352
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
1191
1353
|
value: z.ZodNumber;
|
|
1192
1354
|
}, z.core.$strip>, z.ZodObject<{
|
|
1193
1355
|
title: z.ZodString;
|
|
1356
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1194
1357
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1195
1358
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
1196
1359
|
value: z.ZodNumber;
|
|
1197
1360
|
}, z.core.$strip>, z.ZodObject<{
|
|
1198
1361
|
title: z.ZodString;
|
|
1362
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1199
1363
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
1200
1364
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
1201
1365
|
isAvailable: z.ZodBoolean;
|
|
1202
1366
|
modelId: z.ZodString;
|
|
1203
1367
|
}, z.core.$strip>, z.ZodObject<{
|
|
1204
1368
|
title: z.ZodString;
|
|
1369
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1205
1370
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
1206
1371
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
1207
1372
|
isAvailable: z.ZodBoolean;
|
|
1208
1373
|
}, z.core.$strip>, z.ZodObject<{
|
|
1209
1374
|
title: z.ZodString;
|
|
1375
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1210
1376
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
1211
1377
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
1212
1378
|
value: z.ZodNumber;
|
|
1213
1379
|
}, z.core.$strip>, z.ZodObject<{
|
|
1214
1380
|
title: z.ZodString;
|
|
1381
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1215
1382
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1216
1383
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
1217
1384
|
tokens: z.ZodNumber;
|
|
@@ -1227,6 +1394,7 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1227
1394
|
}, z.core.$strip>;
|
|
1228
1395
|
}, z.core.$strip>, z.ZodObject<{
|
|
1229
1396
|
title: z.ZodString;
|
|
1397
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1230
1398
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
1231
1399
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
1232
1400
|
isAvailable: z.ZodBoolean;
|
|
@@ -1243,50 +1411,59 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1243
1411
|
}, z.core.$strip>;
|
|
1244
1412
|
}, z.core.$strip>, z.ZodObject<{
|
|
1245
1413
|
title: z.ZodString;
|
|
1414
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1246
1415
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1247
1416
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
1248
1417
|
value: z.ZodNumber;
|
|
1249
1418
|
}, z.core.$strip>, z.ZodObject<{
|
|
1250
1419
|
title: z.ZodString;
|
|
1420
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1251
1421
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
1252
1422
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
1253
1423
|
isAvailable: z.ZodBoolean;
|
|
1254
1424
|
modelId: z.ZodString;
|
|
1255
1425
|
}, z.core.$strip>, z.ZodObject<{
|
|
1256
1426
|
title: z.ZodString;
|
|
1427
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1257
1428
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1258
1429
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
1259
1430
|
value: z.ZodNumber;
|
|
1260
1431
|
}, z.core.$strip>, z.ZodObject<{
|
|
1261
1432
|
title: z.ZodString;
|
|
1433
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1262
1434
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
1263
1435
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
1264
1436
|
isAvailable: z.ZodBoolean;
|
|
1265
1437
|
modelId: z.ZodString;
|
|
1266
1438
|
}, z.core.$strip>, z.ZodObject<{
|
|
1267
1439
|
title: z.ZodString;
|
|
1440
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1268
1441
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1269
1442
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
1270
1443
|
value: z.ZodNumber;
|
|
1271
1444
|
}, z.core.$strip>, z.ZodObject<{
|
|
1272
1445
|
title: z.ZodString;
|
|
1446
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1273
1447
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
1274
1448
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
1275
1449
|
isAvailable: z.ZodBoolean;
|
|
1276
1450
|
modelId: z.ZodString;
|
|
1277
1451
|
}, z.core.$strip>, z.ZodObject<{
|
|
1278
1452
|
title: z.ZodString;
|
|
1453
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1279
1454
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1280
1455
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
1281
1456
|
value: z.ZodNumber;
|
|
1282
1457
|
}, z.core.$strip>, z.ZodObject<{
|
|
1283
1458
|
title: z.ZodString;
|
|
1459
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1284
1460
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
1285
1461
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
1286
1462
|
isAvailable: z.ZodBoolean;
|
|
1287
1463
|
modelId: z.ZodString;
|
|
1288
1464
|
}, z.core.$strip>, z.ZodObject<{
|
|
1289
1465
|
title: z.ZodString;
|
|
1466
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1290
1467
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
1291
1468
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
1292
1469
|
order: z.ZodNumber;
|
|
@@ -1294,74 +1471,87 @@ export declare namespace GetSubscriptionsSummaryCommand {
|
|
|
1294
1471
|
isAvailable: z.ZodBoolean;
|
|
1295
1472
|
}, z.core.$strip>, z.ZodObject<{
|
|
1296
1473
|
title: z.ZodString;
|
|
1474
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1297
1475
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1298
1476
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
1299
1477
|
value: z.ZodNumber;
|
|
1300
1478
|
}, z.core.$strip>, z.ZodObject<{
|
|
1301
1479
|
title: z.ZodString;
|
|
1480
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1302
1481
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
1303
1482
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
1304
1483
|
isAvailable: z.ZodBoolean;
|
|
1305
1484
|
modelId: z.ZodString;
|
|
1306
1485
|
}, z.core.$strip>, z.ZodObject<{
|
|
1307
1486
|
title: z.ZodString;
|
|
1487
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1308
1488
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
1309
1489
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
1310
1490
|
isAvailable: z.ZodBoolean;
|
|
1311
1491
|
modelId: z.ZodString;
|
|
1312
1492
|
}, z.core.$strip>, z.ZodObject<{
|
|
1313
1493
|
title: z.ZodString;
|
|
1494
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1314
1495
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1315
1496
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
1316
1497
|
value: z.ZodNumber;
|
|
1317
1498
|
}, z.core.$strip>, z.ZodObject<{
|
|
1318
1499
|
title: z.ZodString;
|
|
1500
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1319
1501
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
1320
1502
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
1321
1503
|
isAvailable: z.ZodBoolean;
|
|
1322
1504
|
modelId: z.ZodString;
|
|
1323
1505
|
}, z.core.$strip>, z.ZodObject<{
|
|
1324
1506
|
title: z.ZodString;
|
|
1507
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1325
1508
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1326
1509
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
1327
1510
|
value: z.ZodNumber;
|
|
1328
1511
|
}, z.core.$strip>, z.ZodObject<{
|
|
1329
1512
|
title: z.ZodString;
|
|
1513
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1330
1514
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
1331
1515
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
1332
1516
|
isAvailable: z.ZodBoolean;
|
|
1333
1517
|
modelId: z.ZodString;
|
|
1334
1518
|
}, z.core.$strip>, z.ZodObject<{
|
|
1335
1519
|
title: z.ZodString;
|
|
1520
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1336
1521
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1337
1522
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
1338
1523
|
value: z.ZodNumber;
|
|
1339
1524
|
}, z.core.$strip>, z.ZodObject<{
|
|
1340
1525
|
title: z.ZodString;
|
|
1526
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1341
1527
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
1342
1528
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
1343
1529
|
isAvailable: z.ZodBoolean;
|
|
1344
1530
|
modelId: z.ZodString;
|
|
1345
1531
|
}, z.core.$strip>, z.ZodObject<{
|
|
1346
1532
|
title: z.ZodString;
|
|
1533
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1347
1534
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
1348
1535
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
1349
1536
|
isAvailable: z.ZodBoolean;
|
|
1350
1537
|
modelId: z.ZodString;
|
|
1351
1538
|
}, z.core.$strip>, z.ZodObject<{
|
|
1352
1539
|
title: z.ZodString;
|
|
1540
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1353
1541
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
1354
1542
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
1355
1543
|
isAvailable: z.ZodBoolean;
|
|
1356
1544
|
modelId: z.ZodString;
|
|
1357
1545
|
}, z.core.$strip>, z.ZodObject<{
|
|
1358
1546
|
title: z.ZodString;
|
|
1547
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1359
1548
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1360
1549
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
1361
1550
|
isAvailable: z.ZodBoolean;
|
|
1362
1551
|
modelId: z.ZodString;
|
|
1363
1552
|
}, z.core.$strip>, z.ZodObject<{
|
|
1364
1553
|
title: z.ZodString;
|
|
1554
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1365
1555
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
1366
1556
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
1367
1557
|
value: z.ZodNumber;
|