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