@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
|
@@ -31,6 +31,7 @@ export declare namespace GetTeamAccountAvailableUpgradesCommand {
|
|
|
31
31
|
action: z.ZodNullable<z.ZodOptional<z.ZodEnum<typeof import("../..").SUBSCRIPTION_ACTION>>>;
|
|
32
32
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
33
33
|
title: z.ZodString;
|
|
34
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
34
35
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
35
36
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
36
37
|
order: z.ZodNumber;
|
|
@@ -39,76 +40,90 @@ export declare namespace GetTeamAccountAvailableUpgradesCommand {
|
|
|
39
40
|
maxInputLength: z.ZodNumber;
|
|
40
41
|
}, z.core.$strip>, z.ZodObject<{
|
|
41
42
|
title: z.ZodString;
|
|
43
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
42
44
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
43
45
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
44
46
|
value: z.ZodNumber;
|
|
45
47
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
46
48
|
}, z.core.$strip>, z.ZodObject<{
|
|
47
49
|
title: z.ZodString;
|
|
50
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
48
51
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
49
52
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
50
53
|
tooltip: z.ZodString;
|
|
51
54
|
value: z.ZodNumber;
|
|
52
55
|
}, z.core.$strip>, z.ZodObject<{
|
|
53
56
|
title: z.ZodString;
|
|
57
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
54
58
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
55
59
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
56
60
|
isAvailable: z.ZodBoolean;
|
|
57
61
|
}, z.core.$strip>, z.ZodObject<{
|
|
58
62
|
title: z.ZodString;
|
|
63
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
59
64
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
60
65
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
61
66
|
isAvailable: z.ZodBoolean;
|
|
62
67
|
}, z.core.$strip>, z.ZodObject<{
|
|
63
68
|
title: z.ZodString;
|
|
69
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
64
70
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
65
71
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
66
72
|
isAvailable: z.ZodBoolean;
|
|
67
73
|
modelId: z.ZodString;
|
|
68
74
|
}, z.core.$strip>, z.ZodObject<{
|
|
69
75
|
title: z.ZodString;
|
|
76
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
70
77
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
71
78
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
72
79
|
value: z.ZodNumber;
|
|
73
80
|
}, z.core.$strip>, z.ZodObject<{
|
|
74
81
|
title: z.ZodString;
|
|
82
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
75
83
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
76
84
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
77
85
|
value: z.ZodNumber;
|
|
78
86
|
}, z.core.$strip>, z.ZodObject<{
|
|
79
87
|
title: z.ZodString;
|
|
88
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
80
89
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
81
90
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
82
91
|
isAvailable: z.ZodBoolean;
|
|
83
92
|
modelId: z.ZodString;
|
|
84
93
|
}, z.core.$strip>, z.ZodObject<{
|
|
85
94
|
title: z.ZodString;
|
|
95
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
86
96
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
87
97
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
88
98
|
value: z.ZodNumber;
|
|
89
99
|
}, z.core.$strip>, z.ZodObject<{
|
|
90
100
|
title: z.ZodString;
|
|
101
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
91
102
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
92
103
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
93
104
|
value: z.ZodNumber;
|
|
94
105
|
}, z.core.$strip>, z.ZodObject<{
|
|
95
106
|
title: z.ZodString;
|
|
107
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
96
108
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
97
109
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
98
110
|
isAvailable: z.ZodBoolean;
|
|
99
111
|
modelId: z.ZodString;
|
|
100
112
|
}, z.core.$strip>, z.ZodObject<{
|
|
101
113
|
title: z.ZodString;
|
|
114
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
102
115
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
103
116
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
104
117
|
isAvailable: z.ZodBoolean;
|
|
105
118
|
}, z.core.$strip>, z.ZodObject<{
|
|
106
119
|
title: z.ZodString;
|
|
120
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
107
121
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
108
122
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
109
123
|
value: z.ZodNumber;
|
|
110
124
|
}, z.core.$strip>, z.ZodObject<{
|
|
111
125
|
title: z.ZodString;
|
|
126
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
112
127
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
113
128
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
114
129
|
tokens: z.ZodNumber;
|
|
@@ -124,6 +139,7 @@ export declare namespace GetTeamAccountAvailableUpgradesCommand {
|
|
|
124
139
|
}, z.core.$strip>;
|
|
125
140
|
}, z.core.$strip>, z.ZodObject<{
|
|
126
141
|
title: z.ZodString;
|
|
142
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
127
143
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
128
144
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
129
145
|
isAvailable: z.ZodBoolean;
|
|
@@ -140,50 +156,59 @@ export declare namespace GetTeamAccountAvailableUpgradesCommand {
|
|
|
140
156
|
}, z.core.$strip>;
|
|
141
157
|
}, z.core.$strip>, z.ZodObject<{
|
|
142
158
|
title: z.ZodString;
|
|
159
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
143
160
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
144
161
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
145
162
|
value: z.ZodNumber;
|
|
146
163
|
}, z.core.$strip>, z.ZodObject<{
|
|
147
164
|
title: z.ZodString;
|
|
165
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
148
166
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
149
167
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
150
168
|
isAvailable: z.ZodBoolean;
|
|
151
169
|
modelId: z.ZodString;
|
|
152
170
|
}, z.core.$strip>, z.ZodObject<{
|
|
153
171
|
title: z.ZodString;
|
|
172
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
154
173
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
155
174
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
156
175
|
value: z.ZodNumber;
|
|
157
176
|
}, z.core.$strip>, z.ZodObject<{
|
|
158
177
|
title: z.ZodString;
|
|
178
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
159
179
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
160
180
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
161
181
|
isAvailable: z.ZodBoolean;
|
|
162
182
|
modelId: z.ZodString;
|
|
163
183
|
}, z.core.$strip>, z.ZodObject<{
|
|
164
184
|
title: z.ZodString;
|
|
185
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
165
186
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
166
187
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
167
188
|
value: z.ZodNumber;
|
|
168
189
|
}, z.core.$strip>, z.ZodObject<{
|
|
169
190
|
title: z.ZodString;
|
|
191
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
170
192
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
171
193
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
172
194
|
isAvailable: z.ZodBoolean;
|
|
173
195
|
modelId: z.ZodString;
|
|
174
196
|
}, z.core.$strip>, z.ZodObject<{
|
|
175
197
|
title: z.ZodString;
|
|
198
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
176
199
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
177
200
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
178
201
|
value: z.ZodNumber;
|
|
179
202
|
}, z.core.$strip>, z.ZodObject<{
|
|
180
203
|
title: z.ZodString;
|
|
204
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
181
205
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
182
206
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
183
207
|
isAvailable: z.ZodBoolean;
|
|
184
208
|
modelId: z.ZodString;
|
|
185
209
|
}, z.core.$strip>, z.ZodObject<{
|
|
186
210
|
title: z.ZodString;
|
|
211
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
187
212
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
188
213
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
189
214
|
order: z.ZodNumber;
|
|
@@ -191,74 +216,87 @@ export declare namespace GetTeamAccountAvailableUpgradesCommand {
|
|
|
191
216
|
isAvailable: z.ZodBoolean;
|
|
192
217
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
218
|
title: z.ZodString;
|
|
219
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
220
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
195
221
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
196
222
|
value: z.ZodNumber;
|
|
197
223
|
}, z.core.$strip>, z.ZodObject<{
|
|
198
224
|
title: z.ZodString;
|
|
225
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
199
226
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
200
227
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
201
228
|
isAvailable: z.ZodBoolean;
|
|
202
229
|
modelId: z.ZodString;
|
|
203
230
|
}, z.core.$strip>, z.ZodObject<{
|
|
204
231
|
title: z.ZodString;
|
|
232
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
205
233
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
206
234
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
207
235
|
isAvailable: z.ZodBoolean;
|
|
208
236
|
modelId: z.ZodString;
|
|
209
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
210
238
|
title: z.ZodString;
|
|
239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
211
240
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
212
241
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
213
242
|
value: z.ZodNumber;
|
|
214
243
|
}, z.core.$strip>, z.ZodObject<{
|
|
215
244
|
title: z.ZodString;
|
|
245
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
216
246
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
217
247
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
218
248
|
isAvailable: z.ZodBoolean;
|
|
219
249
|
modelId: z.ZodString;
|
|
220
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
221
251
|
title: z.ZodString;
|
|
252
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
222
253
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
223
254
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
224
255
|
value: z.ZodNumber;
|
|
225
256
|
}, z.core.$strip>, z.ZodObject<{
|
|
226
257
|
title: z.ZodString;
|
|
258
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
227
259
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
228
260
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
229
261
|
isAvailable: z.ZodBoolean;
|
|
230
262
|
modelId: z.ZodString;
|
|
231
263
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
264
|
title: z.ZodString;
|
|
265
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
233
266
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
234
267
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
235
268
|
value: z.ZodNumber;
|
|
236
269
|
}, z.core.$strip>, z.ZodObject<{
|
|
237
270
|
title: z.ZodString;
|
|
271
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
238
272
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
239
273
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
240
274
|
isAvailable: z.ZodBoolean;
|
|
241
275
|
modelId: z.ZodString;
|
|
242
276
|
}, z.core.$strip>, z.ZodObject<{
|
|
243
277
|
title: z.ZodString;
|
|
278
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
244
279
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
245
280
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
246
281
|
isAvailable: z.ZodBoolean;
|
|
247
282
|
modelId: z.ZodString;
|
|
248
283
|
}, z.core.$strip>, z.ZodObject<{
|
|
249
284
|
title: z.ZodString;
|
|
285
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
250
286
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
251
287
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
252
288
|
isAvailable: z.ZodBoolean;
|
|
253
289
|
modelId: z.ZodString;
|
|
254
290
|
}, z.core.$strip>, z.ZodObject<{
|
|
255
291
|
title: z.ZodString;
|
|
292
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
256
293
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
257
294
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
258
295
|
isAvailable: z.ZodBoolean;
|
|
259
296
|
modelId: z.ZodString;
|
|
260
297
|
}, z.core.$strip>, z.ZodObject<{
|
|
261
298
|
title: z.ZodString;
|
|
299
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
262
300
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
263
301
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
264
302
|
value: z.ZodNumber;
|
|
@@ -38,6 +38,7 @@ export declare namespace GetTeamToProductsCommand {
|
|
|
38
38
|
}, z.core.$strip>;
|
|
39
39
|
features: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
|
|
40
40
|
title: z.ZodString;
|
|
41
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
41
42
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.AI_MODEL_ACCESS>;
|
|
42
43
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.AI_MODEL>;
|
|
43
44
|
order: z.ZodNumber;
|
|
@@ -46,76 +47,90 @@ export declare namespace GetTeamToProductsCommand {
|
|
|
46
47
|
maxInputLength: z.ZodNumber;
|
|
47
48
|
}, z.core.$strip>, z.ZodObject<{
|
|
48
49
|
title: z.ZodString;
|
|
50
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
49
51
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TEXT_GENERATION_QUOTA>;
|
|
50
52
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
51
53
|
value: z.ZodNumber;
|
|
52
54
|
tooltip: z.ZodNullable<z.ZodString>;
|
|
53
55
|
}, z.core.$strip>, z.ZodObject<{
|
|
54
56
|
title: z.ZodString;
|
|
57
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
55
58
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MAX_INPUT_LENGTH>;
|
|
56
59
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
57
60
|
tooltip: z.ZodString;
|
|
58
61
|
value: z.ZodNumber;
|
|
59
62
|
}, z.core.$strip>, z.ZodObject<{
|
|
60
63
|
title: z.ZodString;
|
|
64
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
61
65
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
62
66
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WEB_SEARCH>;
|
|
63
67
|
isAvailable: z.ZodBoolean;
|
|
64
68
|
}, z.core.$strip>, z.ZodObject<{
|
|
65
69
|
title: z.ZodString;
|
|
70
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
66
71
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
67
72
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.ADVANCED_TOOLS_ACCESS>;
|
|
68
73
|
isAvailable: z.ZodBoolean;
|
|
69
74
|
}, z.core.$strip>, z.ZodObject<{
|
|
70
75
|
title: z.ZodString;
|
|
76
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
71
77
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
72
78
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_MODEL_ACCESS>;
|
|
73
79
|
isAvailable: z.ZodBoolean;
|
|
74
80
|
modelId: z.ZodString;
|
|
75
81
|
}, z.core.$strip>, z.ZodObject<{
|
|
76
82
|
title: z.ZodString;
|
|
83
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
77
84
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
78
85
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_QUOTA>;
|
|
79
86
|
value: z.ZodNumber;
|
|
80
87
|
}, z.core.$strip>, z.ZodObject<{
|
|
81
88
|
title: z.ZodString;
|
|
89
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
82
90
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TTS>;
|
|
83
91
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TTS_QUOTA>;
|
|
84
92
|
value: z.ZodNumber;
|
|
85
93
|
}, z.core.$strip>, z.ZodObject<{
|
|
86
94
|
title: z.ZodString;
|
|
95
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
87
96
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
88
97
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_MODEL_ACCESS>;
|
|
89
98
|
isAvailable: z.ZodBoolean;
|
|
90
99
|
modelId: z.ZodString;
|
|
91
100
|
}, z.core.$strip>, z.ZodObject<{
|
|
92
101
|
title: z.ZodString;
|
|
102
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
93
103
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.STT>;
|
|
94
104
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.STT_QUOTA>;
|
|
95
105
|
value: z.ZodNumber;
|
|
96
106
|
}, z.core.$strip>, z.ZodObject<{
|
|
97
107
|
title: z.ZodString;
|
|
108
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
98
109
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
99
110
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_QUOTA>;
|
|
100
111
|
value: z.ZodNumber;
|
|
101
112
|
}, z.core.$strip>, z.ZodObject<{
|
|
102
113
|
title: z.ZodString;
|
|
114
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
103
115
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO>;
|
|
104
116
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_MODEL_ACCESS>;
|
|
105
117
|
isAvailable: z.ZodBoolean;
|
|
106
118
|
modelId: z.ZodString;
|
|
107
119
|
}, z.core.$strip>, z.ZodObject<{
|
|
108
120
|
title: z.ZodString;
|
|
121
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
109
122
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EXTENDED_CONTEXT>;
|
|
110
123
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.TEXT>;
|
|
111
124
|
isAvailable: z.ZodBoolean;
|
|
112
125
|
}, z.core.$strip>, z.ZodObject<{
|
|
113
126
|
title: z.ZodString;
|
|
127
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
114
128
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PRESENTATION>;
|
|
115
129
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PRESENTATION_QUOTA>;
|
|
116
130
|
value: z.ZodNumber;
|
|
117
131
|
}, z.core.$strip>, z.ZodObject<{
|
|
118
132
|
title: z.ZodString;
|
|
133
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
119
134
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
120
135
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.TOKENS>;
|
|
121
136
|
tokens: z.ZodNumber;
|
|
@@ -131,6 +146,7 @@ export declare namespace GetTeamToProductsCommand {
|
|
|
131
146
|
}, z.core.$strip>;
|
|
132
147
|
}, z.core.$strip>, z.ZodObject<{
|
|
133
148
|
title: z.ZodString;
|
|
149
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
134
150
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.BASE>;
|
|
135
151
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.CARRYOVER_BALANCE>;
|
|
136
152
|
isAvailable: z.ZodBoolean;
|
|
@@ -147,50 +163,59 @@ export declare namespace GetTeamToProductsCommand {
|
|
|
147
163
|
}, z.core.$strip>;
|
|
148
164
|
}, z.core.$strip>, z.ZodObject<{
|
|
149
165
|
title: z.ZodString;
|
|
166
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
150
167
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
151
168
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_QUOTA>;
|
|
152
169
|
value: z.ZodNumber;
|
|
153
170
|
}, z.core.$strip>, z.ZodObject<{
|
|
154
171
|
title: z.ZodString;
|
|
172
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
155
173
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MUSIC>;
|
|
156
174
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MUSIC_MODEL_ACCESS>;
|
|
157
175
|
isAvailable: z.ZodBoolean;
|
|
158
176
|
modelId: z.ZodString;
|
|
159
177
|
}, z.core.$strip>, z.ZodObject<{
|
|
160
178
|
title: z.ZodString;
|
|
179
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
161
180
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
162
181
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_QUOTA>;
|
|
163
182
|
value: z.ZodNumber;
|
|
164
183
|
}, z.core.$strip>, z.ZodObject<{
|
|
165
184
|
title: z.ZodString;
|
|
185
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
166
186
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.WRITER>;
|
|
167
187
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.WRITER_MODEL_ACCESS>;
|
|
168
188
|
isAvailable: z.ZodBoolean;
|
|
169
189
|
modelId: z.ZodString;
|
|
170
190
|
}, z.core.$strip>, z.ZodObject<{
|
|
171
191
|
title: z.ZodString;
|
|
192
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
172
193
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
173
194
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_QUOTA>;
|
|
174
195
|
value: z.ZodNumber;
|
|
175
196
|
}, z.core.$strip>, z.ZodObject<{
|
|
176
197
|
title: z.ZodString;
|
|
198
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
177
199
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_EDITOR>;
|
|
178
200
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_EDITOR_MODEL_ACCESS>;
|
|
179
201
|
isAvailable: z.ZodBoolean;
|
|
180
202
|
modelId: z.ZodString;
|
|
181
203
|
}, z.core.$strip>, z.ZodObject<{
|
|
182
204
|
title: z.ZodString;
|
|
205
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
183
206
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
184
207
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_QUOTA>;
|
|
185
208
|
value: z.ZodNumber;
|
|
186
209
|
}, z.core.$strip>, z.ZodObject<{
|
|
187
210
|
title: z.ZodString;
|
|
211
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
188
212
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.INTERIOR_DESIGN>;
|
|
189
213
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.INTERIOR_DESIGN_MODEL_ACCESS>;
|
|
190
214
|
isAvailable: z.ZodBoolean;
|
|
191
215
|
modelId: z.ZodString;
|
|
192
216
|
}, z.core.$strip>, z.ZodObject<{
|
|
193
217
|
title: z.ZodString;
|
|
218
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
194
219
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_GENERATION_ACCESS>;
|
|
195
220
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_GENERATION>;
|
|
196
221
|
order: z.ZodNumber;
|
|
@@ -198,74 +223,87 @@ export declare namespace GetTeamToProductsCommand {
|
|
|
198
223
|
isAvailable: z.ZodBoolean;
|
|
199
224
|
}, z.core.$strip>, z.ZodObject<{
|
|
200
225
|
title: z.ZodString;
|
|
226
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
201
227
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
202
228
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_QUOTA>;
|
|
203
229
|
value: z.ZodNumber;
|
|
204
230
|
}, z.core.$strip>, z.ZodObject<{
|
|
205
231
|
title: z.ZodString;
|
|
232
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
206
233
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.SPELL_CORRECTOR>;
|
|
207
234
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.SPELL_CORRECTOR_MODEL_ACCESS>;
|
|
208
235
|
isAvailable: z.ZodBoolean;
|
|
209
236
|
modelId: z.ZodString;
|
|
210
237
|
}, z.core.$strip>, z.ZodObject<{
|
|
211
238
|
title: z.ZodString;
|
|
239
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
212
240
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.PARAPHRASE>;
|
|
213
241
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.PARAPHRASE_TYPE_ACCESS>;
|
|
214
242
|
isAvailable: z.ZodBoolean;
|
|
215
243
|
modelId: z.ZodString;
|
|
216
244
|
}, z.core.$strip>, z.ZodObject<{
|
|
217
245
|
title: z.ZodString;
|
|
246
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
218
247
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
219
248
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_QUOTA>;
|
|
220
249
|
value: z.ZodNumber;
|
|
221
250
|
}, z.core.$strip>, z.ZodObject<{
|
|
222
251
|
title: z.ZodString;
|
|
252
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
223
253
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.MARKETPLACE_CARD>;
|
|
224
254
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.MARKETPLACE_CARD_MODEL_ACCESS>;
|
|
225
255
|
isAvailable: z.ZodBoolean;
|
|
226
256
|
modelId: z.ZodString;
|
|
227
257
|
}, z.core.$strip>, z.ZodObject<{
|
|
228
258
|
title: z.ZodString;
|
|
259
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
229
260
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
230
261
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_QUOTA>;
|
|
231
262
|
value: z.ZodNumber;
|
|
232
263
|
}, z.core.$strip>, z.ZodObject<{
|
|
233
264
|
title: z.ZodString;
|
|
265
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
234
266
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.EDU_TASK>;
|
|
235
267
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.EDU_TASK_MODEL_ACCESS>;
|
|
236
268
|
isAvailable: z.ZodBoolean;
|
|
237
269
|
modelId: z.ZodString;
|
|
238
270
|
}, z.core.$strip>, z.ZodObject<{
|
|
239
271
|
title: z.ZodString;
|
|
272
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
240
273
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
241
274
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_QUOTA>;
|
|
242
275
|
value: z.ZodNumber;
|
|
243
276
|
}, z.core.$strip>, z.ZodObject<{
|
|
244
277
|
title: z.ZodString;
|
|
278
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
245
279
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.VIDEO_EDITOR>;
|
|
246
280
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.VIDEO_EDITOR_MODEL_ACCESS>;
|
|
247
281
|
isAvailable: z.ZodBoolean;
|
|
248
282
|
modelId: z.ZodString;
|
|
249
283
|
}, z.core.$strip>, z.ZodObject<{
|
|
250
284
|
title: z.ZodString;
|
|
285
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
251
286
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.HTML_PAGE_BUILDER>;
|
|
252
287
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.HTML_PAGE_BUILDER_MODEL_ACCESS>;
|
|
253
288
|
isAvailable: z.ZodBoolean;
|
|
254
289
|
modelId: z.ZodString;
|
|
255
290
|
}, z.core.$strip>, z.ZodObject<{
|
|
256
291
|
title: z.ZodString;
|
|
292
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
257
293
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.DIAGRAMS>;
|
|
258
294
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.DIAGRAMS_MODEL_ACCESS>;
|
|
259
295
|
isAvailable: z.ZodBoolean;
|
|
260
296
|
modelId: z.ZodString;
|
|
261
297
|
}, z.core.$strip>, z.ZodObject<{
|
|
262
298
|
title: z.ZodString;
|
|
299
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
263
300
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
264
301
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_MODEL_ACCESS>;
|
|
265
302
|
isAvailable: z.ZodBoolean;
|
|
266
303
|
modelId: z.ZodString;
|
|
267
304
|
}, z.core.$strip>, z.ZodObject<{
|
|
268
305
|
title: z.ZodString;
|
|
306
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
269
307
|
kind: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_KIND.IMAGE_RECOGNITION>;
|
|
270
308
|
type: z.ZodLiteral<import("../..").SUBSCRIPTION_FEATURE_TYPE.IMAGE_RECOGNITION_QUOTA>;
|
|
271
309
|
value: z.ZodNumber;
|