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