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