@authhero/kysely-adapter 10.134.0 → 10.136.0
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/dist/kysely-adapter.cjs +32 -14
- package/dist/kysely-adapter.d.ts +909 -367
- package/dist/kysely-adapter.mjs +2154 -2015
- package/package.json +2 -2
package/dist/kysely-adapter.d.ts
CHANGED
|
@@ -239,6 +239,262 @@ declare const actionSchema: z.ZodObject<{
|
|
|
239
239
|
deployed_at?: string | undefined;
|
|
240
240
|
}>;
|
|
241
241
|
export type Action = z.infer<typeof actionSchema>;
|
|
242
|
+
declare const actionExecutionSchema: z.ZodObject<{
|
|
243
|
+
id: z.ZodString;
|
|
244
|
+
tenant_id: z.ZodString;
|
|
245
|
+
trigger_id: z.ZodString;
|
|
246
|
+
status: z.ZodEnum<[
|
|
247
|
+
"unspecified",
|
|
248
|
+
"pending",
|
|
249
|
+
"final",
|
|
250
|
+
"partial",
|
|
251
|
+
"canceled",
|
|
252
|
+
"suspended"
|
|
253
|
+
]>;
|
|
254
|
+
results: z.ZodArray<z.ZodObject<{
|
|
255
|
+
action_name: z.ZodString;
|
|
256
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
257
|
+
id: z.ZodString;
|
|
258
|
+
msg: z.ZodString;
|
|
259
|
+
url: z.ZodOptional<z.ZodString>;
|
|
260
|
+
}, "strip", z.ZodTypeAny, {
|
|
261
|
+
id: string;
|
|
262
|
+
msg: string;
|
|
263
|
+
url?: string | undefined;
|
|
264
|
+
}, {
|
|
265
|
+
id: string;
|
|
266
|
+
msg: string;
|
|
267
|
+
url?: string | undefined;
|
|
268
|
+
}>>;
|
|
269
|
+
started_at: z.ZodString;
|
|
270
|
+
ended_at: z.ZodString;
|
|
271
|
+
}, "strip", z.ZodTypeAny, {
|
|
272
|
+
action_name: string;
|
|
273
|
+
error: {
|
|
274
|
+
id: string;
|
|
275
|
+
msg: string;
|
|
276
|
+
url?: string | undefined;
|
|
277
|
+
} | null;
|
|
278
|
+
started_at: string;
|
|
279
|
+
ended_at: string;
|
|
280
|
+
}, {
|
|
281
|
+
action_name: string;
|
|
282
|
+
error: {
|
|
283
|
+
id: string;
|
|
284
|
+
msg: string;
|
|
285
|
+
url?: string | undefined;
|
|
286
|
+
} | null;
|
|
287
|
+
started_at: string;
|
|
288
|
+
ended_at: string;
|
|
289
|
+
}>, "many">;
|
|
290
|
+
logs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
291
|
+
action_name: z.ZodString;
|
|
292
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
293
|
+
level: z.ZodEnum<[
|
|
294
|
+
"log",
|
|
295
|
+
"info",
|
|
296
|
+
"warn",
|
|
297
|
+
"error",
|
|
298
|
+
"debug"
|
|
299
|
+
]>;
|
|
300
|
+
message: z.ZodString;
|
|
301
|
+
}, "strip", z.ZodTypeAny, {
|
|
302
|
+
message: string;
|
|
303
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
304
|
+
}, {
|
|
305
|
+
message: string;
|
|
306
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
307
|
+
}>, "many">;
|
|
308
|
+
}, "strip", z.ZodTypeAny, {
|
|
309
|
+
action_name: string;
|
|
310
|
+
lines: {
|
|
311
|
+
message: string;
|
|
312
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
313
|
+
}[];
|
|
314
|
+
}, {
|
|
315
|
+
action_name: string;
|
|
316
|
+
lines: {
|
|
317
|
+
message: string;
|
|
318
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
319
|
+
}[];
|
|
320
|
+
}>, "many">>;
|
|
321
|
+
created_at: z.ZodString;
|
|
322
|
+
updated_at: z.ZodString;
|
|
323
|
+
}, "strip", z.ZodTypeAny, {
|
|
324
|
+
created_at: string;
|
|
325
|
+
updated_at: string;
|
|
326
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
327
|
+
id: string;
|
|
328
|
+
tenant_id: string;
|
|
329
|
+
trigger_id: string;
|
|
330
|
+
results: {
|
|
331
|
+
action_name: string;
|
|
332
|
+
error: {
|
|
333
|
+
id: string;
|
|
334
|
+
msg: string;
|
|
335
|
+
url?: string | undefined;
|
|
336
|
+
} | null;
|
|
337
|
+
started_at: string;
|
|
338
|
+
ended_at: string;
|
|
339
|
+
}[];
|
|
340
|
+
logs?: {
|
|
341
|
+
action_name: string;
|
|
342
|
+
lines: {
|
|
343
|
+
message: string;
|
|
344
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
345
|
+
}[];
|
|
346
|
+
}[] | undefined;
|
|
347
|
+
}, {
|
|
348
|
+
created_at: string;
|
|
349
|
+
updated_at: string;
|
|
350
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
351
|
+
id: string;
|
|
352
|
+
tenant_id: string;
|
|
353
|
+
trigger_id: string;
|
|
354
|
+
results: {
|
|
355
|
+
action_name: string;
|
|
356
|
+
error: {
|
|
357
|
+
id: string;
|
|
358
|
+
msg: string;
|
|
359
|
+
url?: string | undefined;
|
|
360
|
+
} | null;
|
|
361
|
+
started_at: string;
|
|
362
|
+
ended_at: string;
|
|
363
|
+
}[];
|
|
364
|
+
logs?: {
|
|
365
|
+
action_name: string;
|
|
366
|
+
lines: {
|
|
367
|
+
message: string;
|
|
368
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
369
|
+
}[];
|
|
370
|
+
}[] | undefined;
|
|
371
|
+
}>;
|
|
372
|
+
export type ActionExecution = z.infer<typeof actionExecutionSchema>;
|
|
373
|
+
declare const actionExecutionInsertSchema: z.ZodObject<Omit<{
|
|
374
|
+
id: z.ZodString;
|
|
375
|
+
tenant_id: z.ZodString;
|
|
376
|
+
trigger_id: z.ZodString;
|
|
377
|
+
status: z.ZodEnum<[
|
|
378
|
+
"unspecified",
|
|
379
|
+
"pending",
|
|
380
|
+
"final",
|
|
381
|
+
"partial",
|
|
382
|
+
"canceled",
|
|
383
|
+
"suspended"
|
|
384
|
+
]>;
|
|
385
|
+
results: z.ZodArray<z.ZodObject<{
|
|
386
|
+
action_name: z.ZodString;
|
|
387
|
+
error: z.ZodNullable<z.ZodObject<{
|
|
388
|
+
id: z.ZodString;
|
|
389
|
+
msg: z.ZodString;
|
|
390
|
+
url: z.ZodOptional<z.ZodString>;
|
|
391
|
+
}, "strip", z.ZodTypeAny, {
|
|
392
|
+
id: string;
|
|
393
|
+
msg: string;
|
|
394
|
+
url?: string | undefined;
|
|
395
|
+
}, {
|
|
396
|
+
id: string;
|
|
397
|
+
msg: string;
|
|
398
|
+
url?: string | undefined;
|
|
399
|
+
}>>;
|
|
400
|
+
started_at: z.ZodString;
|
|
401
|
+
ended_at: z.ZodString;
|
|
402
|
+
}, "strip", z.ZodTypeAny, {
|
|
403
|
+
action_name: string;
|
|
404
|
+
error: {
|
|
405
|
+
id: string;
|
|
406
|
+
msg: string;
|
|
407
|
+
url?: string | undefined;
|
|
408
|
+
} | null;
|
|
409
|
+
started_at: string;
|
|
410
|
+
ended_at: string;
|
|
411
|
+
}, {
|
|
412
|
+
action_name: string;
|
|
413
|
+
error: {
|
|
414
|
+
id: string;
|
|
415
|
+
msg: string;
|
|
416
|
+
url?: string | undefined;
|
|
417
|
+
} | null;
|
|
418
|
+
started_at: string;
|
|
419
|
+
ended_at: string;
|
|
420
|
+
}>, "many">;
|
|
421
|
+
logs: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
422
|
+
action_name: z.ZodString;
|
|
423
|
+
lines: z.ZodArray<z.ZodObject<{
|
|
424
|
+
level: z.ZodEnum<[
|
|
425
|
+
"log",
|
|
426
|
+
"info",
|
|
427
|
+
"warn",
|
|
428
|
+
"error",
|
|
429
|
+
"debug"
|
|
430
|
+
]>;
|
|
431
|
+
message: z.ZodString;
|
|
432
|
+
}, "strip", z.ZodTypeAny, {
|
|
433
|
+
message: string;
|
|
434
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
435
|
+
}, {
|
|
436
|
+
message: string;
|
|
437
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
438
|
+
}>, "many">;
|
|
439
|
+
}, "strip", z.ZodTypeAny, {
|
|
440
|
+
action_name: string;
|
|
441
|
+
lines: {
|
|
442
|
+
message: string;
|
|
443
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
444
|
+
}[];
|
|
445
|
+
}, {
|
|
446
|
+
action_name: string;
|
|
447
|
+
lines: {
|
|
448
|
+
message: string;
|
|
449
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
450
|
+
}[];
|
|
451
|
+
}>, "many">>;
|
|
452
|
+
created_at: z.ZodString;
|
|
453
|
+
updated_at: z.ZodString;
|
|
454
|
+
}, "created_at" | "updated_at" | "tenant_id">, "strip", z.ZodTypeAny, {
|
|
455
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
456
|
+
id: string;
|
|
457
|
+
trigger_id: string;
|
|
458
|
+
results: {
|
|
459
|
+
action_name: string;
|
|
460
|
+
error: {
|
|
461
|
+
id: string;
|
|
462
|
+
msg: string;
|
|
463
|
+
url?: string | undefined;
|
|
464
|
+
} | null;
|
|
465
|
+
started_at: string;
|
|
466
|
+
ended_at: string;
|
|
467
|
+
}[];
|
|
468
|
+
logs?: {
|
|
469
|
+
action_name: string;
|
|
470
|
+
lines: {
|
|
471
|
+
message: string;
|
|
472
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
473
|
+
}[];
|
|
474
|
+
}[] | undefined;
|
|
475
|
+
}, {
|
|
476
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
477
|
+
id: string;
|
|
478
|
+
trigger_id: string;
|
|
479
|
+
results: {
|
|
480
|
+
action_name: string;
|
|
481
|
+
error: {
|
|
482
|
+
id: string;
|
|
483
|
+
msg: string;
|
|
484
|
+
url?: string | undefined;
|
|
485
|
+
} | null;
|
|
486
|
+
started_at: string;
|
|
487
|
+
ended_at: string;
|
|
488
|
+
}[];
|
|
489
|
+
logs?: {
|
|
490
|
+
action_name: string;
|
|
491
|
+
lines: {
|
|
492
|
+
message: string;
|
|
493
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
494
|
+
}[];
|
|
495
|
+
}[] | undefined;
|
|
496
|
+
}>;
|
|
497
|
+
export type ActionExecutionInsert = z.infer<typeof actionExecutionInsertSchema>;
|
|
242
498
|
declare const actionVersionInsertSchema: z.ZodObject<{
|
|
243
499
|
action_id: z.ZodString;
|
|
244
500
|
code: z.ZodString;
|
|
@@ -2006,6 +2262,8 @@ declare const clientInsertSchema: z.ZodObject<{
|
|
|
2006
2262
|
"private_key_jwt"
|
|
2007
2263
|
]>>>;
|
|
2008
2264
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2265
|
+
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2266
|
+
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2009
2267
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2010
2268
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
2011
2269
|
native_social_login: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -2121,6 +2379,8 @@ declare const clientInsertSchema: z.ZodObject<{
|
|
|
2121
2379
|
addons?: Record<string, any> | undefined;
|
|
2122
2380
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2123
2381
|
client_metadata?: Record<string, string> | undefined;
|
|
2382
|
+
disable_sign_ups?: boolean | undefined;
|
|
2383
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
2124
2384
|
mobile?: Record<string, any> | undefined;
|
|
2125
2385
|
initiate_login_uri?: string | undefined;
|
|
2126
2386
|
native_social_login?: Record<string, any> | undefined;
|
|
@@ -2180,6 +2440,8 @@ declare const clientInsertSchema: z.ZodObject<{
|
|
|
2180
2440
|
addons?: Record<string, any> | undefined;
|
|
2181
2441
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2182
2442
|
client_metadata?: Record<string, string> | undefined;
|
|
2443
|
+
disable_sign_ups?: boolean | undefined;
|
|
2444
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
2183
2445
|
mobile?: Record<string, any> | undefined;
|
|
2184
2446
|
initiate_login_uri?: string | undefined;
|
|
2185
2447
|
native_social_login?: Record<string, any> | undefined;
|
|
@@ -2266,6 +2528,8 @@ declare const clientSchema: z.ZodObject<{
|
|
|
2266
2528
|
"private_key_jwt"
|
|
2267
2529
|
]>>>;
|
|
2268
2530
|
client_metadata: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
2531
|
+
disable_sign_ups: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2532
|
+
hide_sign_up_disabled_error: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2269
2533
|
mobile: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
2270
2534
|
initiate_login_uri: z.ZodOptional<z.ZodString>;
|
|
2271
2535
|
native_social_login: z.ZodOptional<z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodAny>>>;
|
|
@@ -2385,6 +2649,8 @@ declare const clientSchema: z.ZodObject<{
|
|
|
2385
2649
|
addons?: Record<string, any> | undefined;
|
|
2386
2650
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2387
2651
|
client_metadata?: Record<string, string> | undefined;
|
|
2652
|
+
disable_sign_ups?: boolean | undefined;
|
|
2653
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
2388
2654
|
mobile?: Record<string, any> | undefined;
|
|
2389
2655
|
initiate_login_uri?: string | undefined;
|
|
2390
2656
|
native_social_login?: Record<string, any> | undefined;
|
|
@@ -2446,6 +2712,8 @@ declare const clientSchema: z.ZodObject<{
|
|
|
2446
2712
|
addons?: Record<string, any> | undefined;
|
|
2447
2713
|
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
2448
2714
|
client_metadata?: Record<string, string> | undefined;
|
|
2715
|
+
disable_sign_ups?: boolean | undefined;
|
|
2716
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
2449
2717
|
mobile?: Record<string, any> | undefined;
|
|
2450
2718
|
initiate_login_uri?: string | undefined;
|
|
2451
2719
|
native_social_login?: Record<string, any> | undefined;
|
|
@@ -2623,7 +2891,10 @@ declare enum AuthorizationResponseType {
|
|
|
2623
2891
|
TOKEN = "token",
|
|
2624
2892
|
ID_TOKEN = "id_token",
|
|
2625
2893
|
TOKEN_ID_TOKEN = "id_token token",
|
|
2626
|
-
CODE = "code"
|
|
2894
|
+
CODE = "code",
|
|
2895
|
+
CODE_ID_TOKEN = "code id_token",
|
|
2896
|
+
CODE_TOKEN = "code token",
|
|
2897
|
+
CODE_ID_TOKEN_TOKEN = "code id_token token"
|
|
2627
2898
|
}
|
|
2628
2899
|
declare enum AuthorizationResponseMode {
|
|
2629
2900
|
QUERY = "query",
|
|
@@ -2685,6 +2956,11 @@ declare const brandingSchema: z.ZodObject<{
|
|
|
2685
2956
|
}, {
|
|
2686
2957
|
url: string;
|
|
2687
2958
|
}>>;
|
|
2959
|
+
dark_mode: z.ZodOptional<z.ZodEnum<[
|
|
2960
|
+
"dark",
|
|
2961
|
+
"light",
|
|
2962
|
+
"auto"
|
|
2963
|
+
]>>;
|
|
2688
2964
|
}, "strip", z.ZodTypeAny, {
|
|
2689
2965
|
colors?: {
|
|
2690
2966
|
primary: string;
|
|
@@ -2701,6 +2977,7 @@ declare const brandingSchema: z.ZodObject<{
|
|
|
2701
2977
|
font?: {
|
|
2702
2978
|
url: string;
|
|
2703
2979
|
} | undefined;
|
|
2980
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
2704
2981
|
}, {
|
|
2705
2982
|
colors?: {
|
|
2706
2983
|
primary: string;
|
|
@@ -2717,6 +2994,7 @@ declare const brandingSchema: z.ZodObject<{
|
|
|
2717
2994
|
font?: {
|
|
2718
2995
|
url: string;
|
|
2719
2996
|
} | undefined;
|
|
2997
|
+
dark_mode?: "dark" | "light" | "auto" | undefined;
|
|
2720
2998
|
}>;
|
|
2721
2999
|
export type Branding = z.infer<typeof brandingSchema>;
|
|
2722
3000
|
declare const codeTypeSchema: z.ZodEnum<[
|
|
@@ -2868,6 +3146,10 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
2868
3146
|
jwks_uri: z.ZodOptional<z.ZodString>;
|
|
2869
3147
|
discovery_url: z.ZodOptional<z.ZodString>;
|
|
2870
3148
|
issuer: z.ZodOptional<z.ZodString>;
|
|
3149
|
+
token_endpoint_auth_method: z.ZodOptional<z.ZodEnum<[
|
|
3150
|
+
"client_secret_basic",
|
|
3151
|
+
"client_secret_post"
|
|
3152
|
+
]>>;
|
|
2871
3153
|
provider: z.ZodOptional<z.ZodString>;
|
|
2872
3154
|
from: z.ZodOptional<z.ZodString>;
|
|
2873
3155
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
@@ -3286,6 +3568,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3286
3568
|
scope?: string | undefined;
|
|
3287
3569
|
provider?: string | undefined;
|
|
3288
3570
|
client_secret?: string | undefined;
|
|
3571
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
3289
3572
|
kid?: string | undefined;
|
|
3290
3573
|
team_id?: string | undefined;
|
|
3291
3574
|
realms?: string | undefined;
|
|
@@ -3391,6 +3674,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3391
3674
|
scope?: string | undefined;
|
|
3392
3675
|
provider?: string | undefined;
|
|
3393
3676
|
client_secret?: string | undefined;
|
|
3677
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
3394
3678
|
kid?: string | undefined;
|
|
3395
3679
|
team_id?: string | undefined;
|
|
3396
3680
|
realms?: string | undefined;
|
|
@@ -3496,6 +3780,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3496
3780
|
scope?: string | undefined;
|
|
3497
3781
|
provider?: string | undefined;
|
|
3498
3782
|
client_secret?: string | undefined;
|
|
3783
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
3499
3784
|
kid?: string | undefined;
|
|
3500
3785
|
team_id?: string | undefined;
|
|
3501
3786
|
realms?: string | undefined;
|
|
@@ -3610,6 +3895,7 @@ declare const connectionInsertSchema: z.ZodObject<{
|
|
|
3610
3895
|
scope?: string | undefined;
|
|
3611
3896
|
provider?: string | undefined;
|
|
3612
3897
|
client_secret?: string | undefined;
|
|
3898
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
3613
3899
|
kid?: string | undefined;
|
|
3614
3900
|
team_id?: string | undefined;
|
|
3615
3901
|
realms?: string | undefined;
|
|
@@ -3754,6 +4040,10 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
3754
4040
|
jwks_uri: z.ZodOptional<z.ZodString>;
|
|
3755
4041
|
discovery_url: z.ZodOptional<z.ZodString>;
|
|
3756
4042
|
issuer: z.ZodOptional<z.ZodString>;
|
|
4043
|
+
token_endpoint_auth_method: z.ZodOptional<z.ZodEnum<[
|
|
4044
|
+
"client_secret_basic",
|
|
4045
|
+
"client_secret_post"
|
|
4046
|
+
]>>;
|
|
3757
4047
|
provider: z.ZodOptional<z.ZodString>;
|
|
3758
4048
|
from: z.ZodOptional<z.ZodString>;
|
|
3759
4049
|
twilio_sid: z.ZodOptional<z.ZodString>;
|
|
@@ -4172,6 +4462,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4172
4462
|
scope?: string | undefined;
|
|
4173
4463
|
provider?: string | undefined;
|
|
4174
4464
|
client_secret?: string | undefined;
|
|
4465
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
4175
4466
|
kid?: string | undefined;
|
|
4176
4467
|
team_id?: string | undefined;
|
|
4177
4468
|
realms?: string | undefined;
|
|
@@ -4277,6 +4568,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4277
4568
|
scope?: string | undefined;
|
|
4278
4569
|
provider?: string | undefined;
|
|
4279
4570
|
client_secret?: string | undefined;
|
|
4571
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
4280
4572
|
kid?: string | undefined;
|
|
4281
4573
|
team_id?: string | undefined;
|
|
4282
4574
|
realms?: string | undefined;
|
|
@@ -4382,6 +4674,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4382
4674
|
scope?: string | undefined;
|
|
4383
4675
|
provider?: string | undefined;
|
|
4384
4676
|
client_secret?: string | undefined;
|
|
4677
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
4385
4678
|
kid?: string | undefined;
|
|
4386
4679
|
team_id?: string | undefined;
|
|
4387
4680
|
realms?: string | undefined;
|
|
@@ -4498,6 +4791,7 @@ declare const connectionSchema: z.ZodObject<{
|
|
|
4498
4791
|
scope?: string | undefined;
|
|
4499
4792
|
provider?: string | undefined;
|
|
4500
4793
|
client_secret?: string | undefined;
|
|
4794
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | undefined;
|
|
4501
4795
|
kid?: string | undefined;
|
|
4502
4796
|
team_id?: string | undefined;
|
|
4503
4797
|
realms?: string | undefined;
|
|
@@ -4739,7 +5033,7 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
4739
5033
|
domain_metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4740
5034
|
}, "strip", z.ZodTypeAny, {
|
|
4741
5035
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
4742
|
-
status: "
|
|
5036
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
4743
5037
|
primary: boolean;
|
|
4744
5038
|
domain: string;
|
|
4745
5039
|
custom_domain_id: string;
|
|
@@ -4761,7 +5055,7 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
4761
5055
|
origin_domain_name?: string | undefined;
|
|
4762
5056
|
}, {
|
|
4763
5057
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
4764
|
-
status: "
|
|
5058
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
4765
5059
|
primary: boolean;
|
|
4766
5060
|
domain: string;
|
|
4767
5061
|
custom_domain_id: string;
|
|
@@ -4864,7 +5158,7 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
4864
5158
|
tenant_id: z.ZodString;
|
|
4865
5159
|
}, "strip", z.ZodTypeAny, {
|
|
4866
5160
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
4867
|
-
status: "
|
|
5161
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
4868
5162
|
tenant_id: string;
|
|
4869
5163
|
primary: boolean;
|
|
4870
5164
|
domain: string;
|
|
@@ -4887,7 +5181,7 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
4887
5181
|
origin_domain_name?: string | undefined;
|
|
4888
5182
|
}, {
|
|
4889
5183
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
4890
|
-
status: "
|
|
5184
|
+
status: "pending" | "disabled" | "pending_verification" | "ready";
|
|
4891
5185
|
tenant_id: string;
|
|
4892
5186
|
primary: boolean;
|
|
4893
5187
|
domain: string;
|
|
@@ -5541,11 +5835,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5541
5835
|
"warning"
|
|
5542
5836
|
]>;
|
|
5543
5837
|
}, "strip", z.ZodTypeAny, {
|
|
5544
|
-
type: "
|
|
5838
|
+
type: "error" | "info" | "success" | "warning";
|
|
5545
5839
|
text: string;
|
|
5546
5840
|
id?: number | undefined;
|
|
5547
5841
|
}, {
|
|
5548
|
-
type: "
|
|
5842
|
+
type: "error" | "info" | "success" | "warning";
|
|
5549
5843
|
text: string;
|
|
5550
5844
|
id?: number | undefined;
|
|
5551
5845
|
}>, "many">>;
|
|
@@ -5574,7 +5868,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5574
5868
|
order?: number | undefined;
|
|
5575
5869
|
hint?: string | undefined;
|
|
5576
5870
|
messages?: {
|
|
5577
|
-
type: "
|
|
5871
|
+
type: "error" | "info" | "success" | "warning";
|
|
5578
5872
|
text: string;
|
|
5579
5873
|
id?: number | undefined;
|
|
5580
5874
|
}[] | undefined;
|
|
@@ -5592,7 +5886,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5592
5886
|
visible?: boolean | undefined;
|
|
5593
5887
|
hint?: string | undefined;
|
|
5594
5888
|
messages?: {
|
|
5595
|
-
type: "
|
|
5889
|
+
type: "error" | "info" | "success" | "warning";
|
|
5596
5890
|
text: string;
|
|
5597
5891
|
id?: number | undefined;
|
|
5598
5892
|
}[] | undefined;
|
|
@@ -5615,11 +5909,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5615
5909
|
"warning"
|
|
5616
5910
|
]>;
|
|
5617
5911
|
}, "strip", z.ZodTypeAny, {
|
|
5618
|
-
type: "
|
|
5912
|
+
type: "error" | "info" | "success" | "warning";
|
|
5619
5913
|
text: string;
|
|
5620
5914
|
id?: number | undefined;
|
|
5621
5915
|
}, {
|
|
5622
|
-
type: "
|
|
5916
|
+
type: "error" | "info" | "success" | "warning";
|
|
5623
5917
|
text: string;
|
|
5624
5918
|
id?: number | undefined;
|
|
5625
5919
|
}>, "many">>;
|
|
@@ -5682,7 +5976,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5682
5976
|
order?: number | undefined;
|
|
5683
5977
|
hint?: string | undefined;
|
|
5684
5978
|
messages?: {
|
|
5685
|
-
type: "
|
|
5979
|
+
type: "error" | "info" | "success" | "warning";
|
|
5686
5980
|
text: string;
|
|
5687
5981
|
id?: number | undefined;
|
|
5688
5982
|
}[] | undefined;
|
|
@@ -5706,7 +6000,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5706
6000
|
visible?: boolean | undefined;
|
|
5707
6001
|
hint?: string | undefined;
|
|
5708
6002
|
messages?: {
|
|
5709
|
-
type: "
|
|
6003
|
+
type: "error" | "info" | "success" | "warning";
|
|
5710
6004
|
text: string;
|
|
5711
6005
|
id?: number | undefined;
|
|
5712
6006
|
}[] | undefined;
|
|
@@ -5729,11 +6023,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5729
6023
|
"warning"
|
|
5730
6024
|
]>;
|
|
5731
6025
|
}, "strip", z.ZodTypeAny, {
|
|
5732
|
-
type: "
|
|
6026
|
+
type: "error" | "info" | "success" | "warning";
|
|
5733
6027
|
text: string;
|
|
5734
6028
|
id?: number | undefined;
|
|
5735
6029
|
}, {
|
|
5736
|
-
type: "
|
|
6030
|
+
type: "error" | "info" | "success" | "warning";
|
|
5737
6031
|
text: string;
|
|
5738
6032
|
id?: number | undefined;
|
|
5739
6033
|
}>, "many">>;
|
|
@@ -5798,7 +6092,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5798
6092
|
order?: number | undefined;
|
|
5799
6093
|
hint?: string | undefined;
|
|
5800
6094
|
messages?: {
|
|
5801
|
-
type: "
|
|
6095
|
+
type: "error" | "info" | "success" | "warning";
|
|
5802
6096
|
text: string;
|
|
5803
6097
|
id?: number | undefined;
|
|
5804
6098
|
}[] | undefined;
|
|
@@ -5822,7 +6116,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5822
6116
|
visible?: boolean | undefined;
|
|
5823
6117
|
hint?: string | undefined;
|
|
5824
6118
|
messages?: {
|
|
5825
|
-
type: "
|
|
6119
|
+
type: "error" | "info" | "success" | "warning";
|
|
5826
6120
|
text: string;
|
|
5827
6121
|
id?: number | undefined;
|
|
5828
6122
|
}[] | undefined;
|
|
@@ -5845,11 +6139,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5845
6139
|
"warning"
|
|
5846
6140
|
]>;
|
|
5847
6141
|
}, "strip", z.ZodTypeAny, {
|
|
5848
|
-
type: "
|
|
6142
|
+
type: "error" | "info" | "success" | "warning";
|
|
5849
6143
|
text: string;
|
|
5850
6144
|
id?: number | undefined;
|
|
5851
6145
|
}, {
|
|
5852
|
-
type: "
|
|
6146
|
+
type: "error" | "info" | "success" | "warning";
|
|
5853
6147
|
text: string;
|
|
5854
6148
|
id?: number | undefined;
|
|
5855
6149
|
}>, "many">>;
|
|
@@ -5882,7 +6176,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5882
6176
|
order?: number | undefined;
|
|
5883
6177
|
hint?: string | undefined;
|
|
5884
6178
|
messages?: {
|
|
5885
|
-
type: "
|
|
6179
|
+
type: "error" | "info" | "success" | "warning";
|
|
5886
6180
|
text: string;
|
|
5887
6181
|
id?: number | undefined;
|
|
5888
6182
|
}[] | undefined;
|
|
@@ -5901,7 +6195,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5901
6195
|
visible?: boolean | undefined;
|
|
5902
6196
|
hint?: string | undefined;
|
|
5903
6197
|
messages?: {
|
|
5904
|
-
type: "
|
|
6198
|
+
type: "error" | "info" | "success" | "warning";
|
|
5905
6199
|
text: string;
|
|
5906
6200
|
id?: number | undefined;
|
|
5907
6201
|
}[] | undefined;
|
|
@@ -5924,11 +6218,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5924
6218
|
"warning"
|
|
5925
6219
|
]>;
|
|
5926
6220
|
}, "strip", z.ZodTypeAny, {
|
|
5927
|
-
type: "
|
|
6221
|
+
type: "error" | "info" | "success" | "warning";
|
|
5928
6222
|
text: string;
|
|
5929
6223
|
id?: number | undefined;
|
|
5930
6224
|
}, {
|
|
5931
|
-
type: "
|
|
6225
|
+
type: "error" | "info" | "success" | "warning";
|
|
5932
6226
|
text: string;
|
|
5933
6227
|
id?: number | undefined;
|
|
5934
6228
|
}>, "many">>;
|
|
@@ -5969,7 +6263,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5969
6263
|
order?: number | undefined;
|
|
5970
6264
|
hint?: string | undefined;
|
|
5971
6265
|
messages?: {
|
|
5972
|
-
type: "
|
|
6266
|
+
type: "error" | "info" | "success" | "warning";
|
|
5973
6267
|
text: string;
|
|
5974
6268
|
id?: number | undefined;
|
|
5975
6269
|
}[] | undefined;
|
|
@@ -5990,7 +6284,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
5990
6284
|
visible?: boolean | undefined;
|
|
5991
6285
|
hint?: string | undefined;
|
|
5992
6286
|
messages?: {
|
|
5993
|
-
type: "
|
|
6287
|
+
type: "error" | "info" | "success" | "warning";
|
|
5994
6288
|
text: string;
|
|
5995
6289
|
id?: number | undefined;
|
|
5996
6290
|
}[] | undefined;
|
|
@@ -6013,11 +6307,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6013
6307
|
"warning"
|
|
6014
6308
|
]>;
|
|
6015
6309
|
}, "strip", z.ZodTypeAny, {
|
|
6016
|
-
type: "
|
|
6310
|
+
type: "error" | "info" | "success" | "warning";
|
|
6017
6311
|
text: string;
|
|
6018
6312
|
id?: number | undefined;
|
|
6019
6313
|
}, {
|
|
6020
|
-
type: "
|
|
6314
|
+
type: "error" | "info" | "success" | "warning";
|
|
6021
6315
|
text: string;
|
|
6022
6316
|
id?: number | undefined;
|
|
6023
6317
|
}>, "many">>;
|
|
@@ -6058,7 +6352,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6058
6352
|
order?: number | undefined;
|
|
6059
6353
|
hint?: string | undefined;
|
|
6060
6354
|
messages?: {
|
|
6061
|
-
type: "
|
|
6355
|
+
type: "error" | "info" | "success" | "warning";
|
|
6062
6356
|
text: string;
|
|
6063
6357
|
id?: number | undefined;
|
|
6064
6358
|
}[] | undefined;
|
|
@@ -6079,7 +6373,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6079
6373
|
visible?: boolean | undefined;
|
|
6080
6374
|
hint?: string | undefined;
|
|
6081
6375
|
messages?: {
|
|
6082
|
-
type: "
|
|
6376
|
+
type: "error" | "info" | "success" | "warning";
|
|
6083
6377
|
text: string;
|
|
6084
6378
|
id?: number | undefined;
|
|
6085
6379
|
}[] | undefined;
|
|
@@ -6102,11 +6396,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6102
6396
|
"warning"
|
|
6103
6397
|
]>;
|
|
6104
6398
|
}, "strip", z.ZodTypeAny, {
|
|
6105
|
-
type: "
|
|
6399
|
+
type: "error" | "info" | "success" | "warning";
|
|
6106
6400
|
text: string;
|
|
6107
6401
|
id?: number | undefined;
|
|
6108
6402
|
}, {
|
|
6109
|
-
type: "
|
|
6403
|
+
type: "error" | "info" | "success" | "warning";
|
|
6110
6404
|
text: string;
|
|
6111
6405
|
id?: number | undefined;
|
|
6112
6406
|
}>, "many">>;
|
|
@@ -6172,7 +6466,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6172
6466
|
order?: number | undefined;
|
|
6173
6467
|
hint?: string | undefined;
|
|
6174
6468
|
messages?: {
|
|
6175
|
-
type: "
|
|
6469
|
+
type: "error" | "info" | "success" | "warning";
|
|
6176
6470
|
text: string;
|
|
6177
6471
|
id?: number | undefined;
|
|
6178
6472
|
}[] | undefined;
|
|
@@ -6197,7 +6491,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6197
6491
|
visible?: boolean | undefined;
|
|
6198
6492
|
hint?: string | undefined;
|
|
6199
6493
|
messages?: {
|
|
6200
|
-
type: "
|
|
6494
|
+
type: "error" | "info" | "success" | "warning";
|
|
6201
6495
|
text: string;
|
|
6202
6496
|
id?: number | undefined;
|
|
6203
6497
|
}[] | undefined;
|
|
@@ -6220,11 +6514,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6220
6514
|
"warning"
|
|
6221
6515
|
]>;
|
|
6222
6516
|
}, "strip", z.ZodTypeAny, {
|
|
6223
|
-
type: "
|
|
6517
|
+
type: "error" | "info" | "success" | "warning";
|
|
6224
6518
|
text: string;
|
|
6225
6519
|
id?: number | undefined;
|
|
6226
6520
|
}, {
|
|
6227
|
-
type: "
|
|
6521
|
+
type: "error" | "info" | "success" | "warning";
|
|
6228
6522
|
text: string;
|
|
6229
6523
|
id?: number | undefined;
|
|
6230
6524
|
}>, "many">>;
|
|
@@ -6257,7 +6551,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6257
6551
|
order?: number | undefined;
|
|
6258
6552
|
hint?: string | undefined;
|
|
6259
6553
|
messages?: {
|
|
6260
|
-
type: "
|
|
6554
|
+
type: "error" | "info" | "success" | "warning";
|
|
6261
6555
|
text: string;
|
|
6262
6556
|
id?: number | undefined;
|
|
6263
6557
|
}[] | undefined;
|
|
@@ -6276,7 +6570,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6276
6570
|
visible?: boolean | undefined;
|
|
6277
6571
|
hint?: string | undefined;
|
|
6278
6572
|
messages?: {
|
|
6279
|
-
type: "
|
|
6573
|
+
type: "error" | "info" | "success" | "warning";
|
|
6280
6574
|
text: string;
|
|
6281
6575
|
id?: number | undefined;
|
|
6282
6576
|
}[] | undefined;
|
|
@@ -6299,11 +6593,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6299
6593
|
"warning"
|
|
6300
6594
|
]>;
|
|
6301
6595
|
}, "strip", z.ZodTypeAny, {
|
|
6302
|
-
type: "
|
|
6596
|
+
type: "error" | "info" | "success" | "warning";
|
|
6303
6597
|
text: string;
|
|
6304
6598
|
id?: number | undefined;
|
|
6305
6599
|
}, {
|
|
6306
|
-
type: "
|
|
6600
|
+
type: "error" | "info" | "success" | "warning";
|
|
6307
6601
|
text: string;
|
|
6308
6602
|
id?: number | undefined;
|
|
6309
6603
|
}>, "many">>;
|
|
@@ -6340,7 +6634,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6340
6634
|
order?: number | undefined;
|
|
6341
6635
|
hint?: string | undefined;
|
|
6342
6636
|
messages?: {
|
|
6343
|
-
type: "
|
|
6637
|
+
type: "error" | "info" | "success" | "warning";
|
|
6344
6638
|
text: string;
|
|
6345
6639
|
id?: number | undefined;
|
|
6346
6640
|
}[] | undefined;
|
|
@@ -6360,7 +6654,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6360
6654
|
visible?: boolean | undefined;
|
|
6361
6655
|
hint?: string | undefined;
|
|
6362
6656
|
messages?: {
|
|
6363
|
-
type: "
|
|
6657
|
+
type: "error" | "info" | "success" | "warning";
|
|
6364
6658
|
text: string;
|
|
6365
6659
|
id?: number | undefined;
|
|
6366
6660
|
}[] | undefined;
|
|
@@ -6383,11 +6677,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6383
6677
|
"warning"
|
|
6384
6678
|
]>;
|
|
6385
6679
|
}, "strip", z.ZodTypeAny, {
|
|
6386
|
-
type: "
|
|
6680
|
+
type: "error" | "info" | "success" | "warning";
|
|
6387
6681
|
text: string;
|
|
6388
6682
|
id?: number | undefined;
|
|
6389
6683
|
}, {
|
|
6390
|
-
type: "
|
|
6684
|
+
type: "error" | "info" | "success" | "warning";
|
|
6391
6685
|
text: string;
|
|
6392
6686
|
id?: number | undefined;
|
|
6393
6687
|
}>, "many">>;
|
|
@@ -6420,7 +6714,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6420
6714
|
order?: number | undefined;
|
|
6421
6715
|
hint?: string | undefined;
|
|
6422
6716
|
messages?: {
|
|
6423
|
-
type: "
|
|
6717
|
+
type: "error" | "info" | "success" | "warning";
|
|
6424
6718
|
text: string;
|
|
6425
6719
|
id?: number | undefined;
|
|
6426
6720
|
}[] | undefined;
|
|
@@ -6439,7 +6733,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6439
6733
|
visible?: boolean | undefined;
|
|
6440
6734
|
hint?: string | undefined;
|
|
6441
6735
|
messages?: {
|
|
6442
|
-
type: "
|
|
6736
|
+
type: "error" | "info" | "success" | "warning";
|
|
6443
6737
|
text: string;
|
|
6444
6738
|
id?: number | undefined;
|
|
6445
6739
|
}[] | undefined;
|
|
@@ -6462,11 +6756,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6462
6756
|
"warning"
|
|
6463
6757
|
]>;
|
|
6464
6758
|
}, "strip", z.ZodTypeAny, {
|
|
6465
|
-
type: "
|
|
6759
|
+
type: "error" | "info" | "success" | "warning";
|
|
6466
6760
|
text: string;
|
|
6467
6761
|
id?: number | undefined;
|
|
6468
6762
|
}, {
|
|
6469
|
-
type: "
|
|
6763
|
+
type: "error" | "info" | "success" | "warning";
|
|
6470
6764
|
text: string;
|
|
6471
6765
|
id?: number | undefined;
|
|
6472
6766
|
}>, "many">>;
|
|
@@ -6511,7 +6805,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6511
6805
|
order?: number | undefined;
|
|
6512
6806
|
hint?: string | undefined;
|
|
6513
6807
|
messages?: {
|
|
6514
|
-
type: "
|
|
6808
|
+
type: "error" | "info" | "success" | "warning";
|
|
6515
6809
|
text: string;
|
|
6516
6810
|
id?: number | undefined;
|
|
6517
6811
|
}[] | undefined;
|
|
@@ -6533,7 +6827,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6533
6827
|
visible?: boolean | undefined;
|
|
6534
6828
|
hint?: string | undefined;
|
|
6535
6829
|
messages?: {
|
|
6536
|
-
type: "
|
|
6830
|
+
type: "error" | "info" | "success" | "warning";
|
|
6537
6831
|
text: string;
|
|
6538
6832
|
id?: number | undefined;
|
|
6539
6833
|
}[] | undefined;
|
|
@@ -6556,11 +6850,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6556
6850
|
"warning"
|
|
6557
6851
|
]>;
|
|
6558
6852
|
}, "strip", z.ZodTypeAny, {
|
|
6559
|
-
type: "
|
|
6853
|
+
type: "error" | "info" | "success" | "warning";
|
|
6560
6854
|
text: string;
|
|
6561
6855
|
id?: number | undefined;
|
|
6562
6856
|
}, {
|
|
6563
|
-
type: "
|
|
6857
|
+
type: "error" | "info" | "success" | "warning";
|
|
6564
6858
|
text: string;
|
|
6565
6859
|
id?: number | undefined;
|
|
6566
6860
|
}>, "many">>;
|
|
@@ -6605,7 +6899,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6605
6899
|
order?: number | undefined;
|
|
6606
6900
|
hint?: string | undefined;
|
|
6607
6901
|
messages?: {
|
|
6608
|
-
type: "
|
|
6902
|
+
type: "error" | "info" | "success" | "warning";
|
|
6609
6903
|
text: string;
|
|
6610
6904
|
id?: number | undefined;
|
|
6611
6905
|
}[] | undefined;
|
|
@@ -6627,7 +6921,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6627
6921
|
visible?: boolean | undefined;
|
|
6628
6922
|
hint?: string | undefined;
|
|
6629
6923
|
messages?: {
|
|
6630
|
-
type: "
|
|
6924
|
+
type: "error" | "info" | "success" | "warning";
|
|
6631
6925
|
text: string;
|
|
6632
6926
|
id?: number | undefined;
|
|
6633
6927
|
}[] | undefined;
|
|
@@ -6650,11 +6944,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6650
6944
|
"warning"
|
|
6651
6945
|
]>;
|
|
6652
6946
|
}, "strip", z.ZodTypeAny, {
|
|
6653
|
-
type: "
|
|
6947
|
+
type: "error" | "info" | "success" | "warning";
|
|
6654
6948
|
text: string;
|
|
6655
6949
|
id?: number | undefined;
|
|
6656
6950
|
}, {
|
|
6657
|
-
type: "
|
|
6951
|
+
type: "error" | "info" | "success" | "warning";
|
|
6658
6952
|
text: string;
|
|
6659
6953
|
id?: number | undefined;
|
|
6660
6954
|
}>, "many">>;
|
|
@@ -6687,7 +6981,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6687
6981
|
order?: number | undefined;
|
|
6688
6982
|
hint?: string | undefined;
|
|
6689
6983
|
messages?: {
|
|
6690
|
-
type: "
|
|
6984
|
+
type: "error" | "info" | "success" | "warning";
|
|
6691
6985
|
text: string;
|
|
6692
6986
|
id?: number | undefined;
|
|
6693
6987
|
}[] | undefined;
|
|
@@ -6706,7 +7000,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6706
7000
|
visible?: boolean | undefined;
|
|
6707
7001
|
hint?: string | undefined;
|
|
6708
7002
|
messages?: {
|
|
6709
|
-
type: "
|
|
7003
|
+
type: "error" | "info" | "success" | "warning";
|
|
6710
7004
|
text: string;
|
|
6711
7005
|
id?: number | undefined;
|
|
6712
7006
|
}[] | undefined;
|
|
@@ -6729,11 +7023,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6729
7023
|
"warning"
|
|
6730
7024
|
]>;
|
|
6731
7025
|
}, "strip", z.ZodTypeAny, {
|
|
6732
|
-
type: "
|
|
7026
|
+
type: "error" | "info" | "success" | "warning";
|
|
6733
7027
|
text: string;
|
|
6734
7028
|
id?: number | undefined;
|
|
6735
7029
|
}, {
|
|
6736
|
-
type: "
|
|
7030
|
+
type: "error" | "info" | "success" | "warning";
|
|
6737
7031
|
text: string;
|
|
6738
7032
|
id?: number | undefined;
|
|
6739
7033
|
}>, "many">>;
|
|
@@ -6802,7 +7096,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6802
7096
|
order?: number | undefined;
|
|
6803
7097
|
hint?: string | undefined;
|
|
6804
7098
|
messages?: {
|
|
6805
|
-
type: "
|
|
7099
|
+
type: "error" | "info" | "success" | "warning";
|
|
6806
7100
|
text: string;
|
|
6807
7101
|
id?: number | undefined;
|
|
6808
7102
|
}[] | undefined;
|
|
@@ -6827,7 +7121,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6827
7121
|
visible?: boolean | undefined;
|
|
6828
7122
|
hint?: string | undefined;
|
|
6829
7123
|
messages?: {
|
|
6830
|
-
type: "
|
|
7124
|
+
type: "error" | "info" | "success" | "warning";
|
|
6831
7125
|
text: string;
|
|
6832
7126
|
id?: number | undefined;
|
|
6833
7127
|
}[] | undefined;
|
|
@@ -6850,11 +7144,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6850
7144
|
"warning"
|
|
6851
7145
|
]>;
|
|
6852
7146
|
}, "strip", z.ZodTypeAny, {
|
|
6853
|
-
type: "
|
|
7147
|
+
type: "error" | "info" | "success" | "warning";
|
|
6854
7148
|
text: string;
|
|
6855
7149
|
id?: number | undefined;
|
|
6856
7150
|
}, {
|
|
6857
|
-
type: "
|
|
7151
|
+
type: "error" | "info" | "success" | "warning";
|
|
6858
7152
|
text: string;
|
|
6859
7153
|
id?: number | undefined;
|
|
6860
7154
|
}>, "many">>;
|
|
@@ -6895,7 +7189,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6895
7189
|
order?: number | undefined;
|
|
6896
7190
|
hint?: string | undefined;
|
|
6897
7191
|
messages?: {
|
|
6898
|
-
type: "
|
|
7192
|
+
type: "error" | "info" | "success" | "warning";
|
|
6899
7193
|
text: string;
|
|
6900
7194
|
id?: number | undefined;
|
|
6901
7195
|
}[] | undefined;
|
|
@@ -6916,7 +7210,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6916
7210
|
visible?: boolean | undefined;
|
|
6917
7211
|
hint?: string | undefined;
|
|
6918
7212
|
messages?: {
|
|
6919
|
-
type: "
|
|
7213
|
+
type: "error" | "info" | "success" | "warning";
|
|
6920
7214
|
text: string;
|
|
6921
7215
|
id?: number | undefined;
|
|
6922
7216
|
}[] | undefined;
|
|
@@ -6939,11 +7233,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6939
7233
|
"warning"
|
|
6940
7234
|
]>;
|
|
6941
7235
|
}, "strip", z.ZodTypeAny, {
|
|
6942
|
-
type: "
|
|
7236
|
+
type: "error" | "info" | "success" | "warning";
|
|
6943
7237
|
text: string;
|
|
6944
7238
|
id?: number | undefined;
|
|
6945
7239
|
}, {
|
|
6946
|
-
type: "
|
|
7240
|
+
type: "error" | "info" | "success" | "warning";
|
|
6947
7241
|
text: string;
|
|
6948
7242
|
id?: number | undefined;
|
|
6949
7243
|
}>, "many">>;
|
|
@@ -6984,7 +7278,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
6984
7278
|
order?: number | undefined;
|
|
6985
7279
|
hint?: string | undefined;
|
|
6986
7280
|
messages?: {
|
|
6987
|
-
type: "
|
|
7281
|
+
type: "error" | "info" | "success" | "warning";
|
|
6988
7282
|
text: string;
|
|
6989
7283
|
id?: number | undefined;
|
|
6990
7284
|
}[] | undefined;
|
|
@@ -7005,7 +7299,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7005
7299
|
visible?: boolean | undefined;
|
|
7006
7300
|
hint?: string | undefined;
|
|
7007
7301
|
messages?: {
|
|
7008
|
-
type: "
|
|
7302
|
+
type: "error" | "info" | "success" | "warning";
|
|
7009
7303
|
text: string;
|
|
7010
7304
|
id?: number | undefined;
|
|
7011
7305
|
}[] | undefined;
|
|
@@ -7028,11 +7322,11 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7028
7322
|
"warning"
|
|
7029
7323
|
]>;
|
|
7030
7324
|
}, "strip", z.ZodTypeAny, {
|
|
7031
|
-
type: "
|
|
7325
|
+
type: "error" | "info" | "success" | "warning";
|
|
7032
7326
|
text: string;
|
|
7033
7327
|
id?: number | undefined;
|
|
7034
7328
|
}, {
|
|
7035
|
-
type: "
|
|
7329
|
+
type: "error" | "info" | "success" | "warning";
|
|
7036
7330
|
text: string;
|
|
7037
7331
|
id?: number | undefined;
|
|
7038
7332
|
}>, "many">>;
|
|
@@ -7065,7 +7359,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7065
7359
|
order?: number | undefined;
|
|
7066
7360
|
hint?: string | undefined;
|
|
7067
7361
|
messages?: {
|
|
7068
|
-
type: "
|
|
7362
|
+
type: "error" | "info" | "success" | "warning";
|
|
7069
7363
|
text: string;
|
|
7070
7364
|
id?: number | undefined;
|
|
7071
7365
|
}[] | undefined;
|
|
@@ -7084,7 +7378,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7084
7378
|
visible?: boolean | undefined;
|
|
7085
7379
|
hint?: string | undefined;
|
|
7086
7380
|
messages?: {
|
|
7087
|
-
type: "
|
|
7381
|
+
type: "error" | "info" | "success" | "warning";
|
|
7088
7382
|
text: string;
|
|
7089
7383
|
id?: number | undefined;
|
|
7090
7384
|
}[] | undefined;
|
|
@@ -7223,7 +7517,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7223
7517
|
order?: number | undefined;
|
|
7224
7518
|
hint?: string | undefined;
|
|
7225
7519
|
messages?: {
|
|
7226
|
-
type: "
|
|
7520
|
+
type: "error" | "info" | "success" | "warning";
|
|
7227
7521
|
text: string;
|
|
7228
7522
|
id?: number | undefined;
|
|
7229
7523
|
}[] | undefined;
|
|
@@ -7247,7 +7541,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7247
7541
|
order?: number | undefined;
|
|
7248
7542
|
hint?: string | undefined;
|
|
7249
7543
|
messages?: {
|
|
7250
|
-
type: "
|
|
7544
|
+
type: "error" | "info" | "success" | "warning";
|
|
7251
7545
|
text: string;
|
|
7252
7546
|
id?: number | undefined;
|
|
7253
7547
|
}[] | undefined;
|
|
@@ -7271,7 +7565,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7271
7565
|
order?: number | undefined;
|
|
7272
7566
|
hint?: string | undefined;
|
|
7273
7567
|
messages?: {
|
|
7274
|
-
type: "
|
|
7568
|
+
type: "error" | "info" | "success" | "warning";
|
|
7275
7569
|
text: string;
|
|
7276
7570
|
id?: number | undefined;
|
|
7277
7571
|
}[] | undefined;
|
|
@@ -7292,7 +7586,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7292
7586
|
order?: number | undefined;
|
|
7293
7587
|
hint?: string | undefined;
|
|
7294
7588
|
messages?: {
|
|
7295
|
-
type: "
|
|
7589
|
+
type: "error" | "info" | "success" | "warning";
|
|
7296
7590
|
text: string;
|
|
7297
7591
|
id?: number | undefined;
|
|
7298
7592
|
}[] | undefined;
|
|
@@ -7313,7 +7607,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7313
7607
|
order?: number | undefined;
|
|
7314
7608
|
hint?: string | undefined;
|
|
7315
7609
|
messages?: {
|
|
7316
|
-
type: "
|
|
7610
|
+
type: "error" | "info" | "success" | "warning";
|
|
7317
7611
|
text: string;
|
|
7318
7612
|
id?: number | undefined;
|
|
7319
7613
|
}[] | undefined;
|
|
@@ -7338,7 +7632,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7338
7632
|
order?: number | undefined;
|
|
7339
7633
|
hint?: string | undefined;
|
|
7340
7634
|
messages?: {
|
|
7341
|
-
type: "
|
|
7635
|
+
type: "error" | "info" | "success" | "warning";
|
|
7342
7636
|
text: string;
|
|
7343
7637
|
id?: number | undefined;
|
|
7344
7638
|
}[] | undefined;
|
|
@@ -7357,7 +7651,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7357
7651
|
order?: number | undefined;
|
|
7358
7652
|
hint?: string | undefined;
|
|
7359
7653
|
messages?: {
|
|
7360
|
-
type: "
|
|
7654
|
+
type: "error" | "info" | "success" | "warning";
|
|
7361
7655
|
text: string;
|
|
7362
7656
|
id?: number | undefined;
|
|
7363
7657
|
}[] | undefined;
|
|
@@ -7377,7 +7671,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7377
7671
|
order?: number | undefined;
|
|
7378
7672
|
hint?: string | undefined;
|
|
7379
7673
|
messages?: {
|
|
7380
|
-
type: "
|
|
7674
|
+
type: "error" | "info" | "success" | "warning";
|
|
7381
7675
|
text: string;
|
|
7382
7676
|
id?: number | undefined;
|
|
7383
7677
|
}[] | undefined;
|
|
@@ -7396,7 +7690,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7396
7690
|
order?: number | undefined;
|
|
7397
7691
|
hint?: string | undefined;
|
|
7398
7692
|
messages?: {
|
|
7399
|
-
type: "
|
|
7693
|
+
type: "error" | "info" | "success" | "warning";
|
|
7400
7694
|
text: string;
|
|
7401
7695
|
id?: number | undefined;
|
|
7402
7696
|
}[] | undefined;
|
|
@@ -7418,7 +7712,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7418
7712
|
order?: number | undefined;
|
|
7419
7713
|
hint?: string | undefined;
|
|
7420
7714
|
messages?: {
|
|
7421
|
-
type: "
|
|
7715
|
+
type: "error" | "info" | "success" | "warning";
|
|
7422
7716
|
text: string;
|
|
7423
7717
|
id?: number | undefined;
|
|
7424
7718
|
}[] | undefined;
|
|
@@ -7440,7 +7734,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7440
7734
|
order?: number | undefined;
|
|
7441
7735
|
hint?: string | undefined;
|
|
7442
7736
|
messages?: {
|
|
7443
|
-
type: "
|
|
7737
|
+
type: "error" | "info" | "success" | "warning";
|
|
7444
7738
|
text: string;
|
|
7445
7739
|
id?: number | undefined;
|
|
7446
7740
|
}[] | undefined;
|
|
@@ -7459,7 +7753,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7459
7753
|
order?: number | undefined;
|
|
7460
7754
|
hint?: string | undefined;
|
|
7461
7755
|
messages?: {
|
|
7462
|
-
type: "
|
|
7756
|
+
type: "error" | "info" | "success" | "warning";
|
|
7463
7757
|
text: string;
|
|
7464
7758
|
id?: number | undefined;
|
|
7465
7759
|
}[] | undefined;
|
|
@@ -7484,7 +7778,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7484
7778
|
order?: number | undefined;
|
|
7485
7779
|
hint?: string | undefined;
|
|
7486
7780
|
messages?: {
|
|
7487
|
-
type: "
|
|
7781
|
+
type: "error" | "info" | "success" | "warning";
|
|
7488
7782
|
text: string;
|
|
7489
7783
|
id?: number | undefined;
|
|
7490
7784
|
}[] | undefined;
|
|
@@ -7505,7 +7799,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7505
7799
|
order?: number | undefined;
|
|
7506
7800
|
hint?: string | undefined;
|
|
7507
7801
|
messages?: {
|
|
7508
|
-
type: "
|
|
7802
|
+
type: "error" | "info" | "success" | "warning";
|
|
7509
7803
|
text: string;
|
|
7510
7804
|
id?: number | undefined;
|
|
7511
7805
|
}[] | undefined;
|
|
@@ -7526,7 +7820,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7526
7820
|
order?: number | undefined;
|
|
7527
7821
|
hint?: string | undefined;
|
|
7528
7822
|
messages?: {
|
|
7529
|
-
type: "
|
|
7823
|
+
type: "error" | "info" | "success" | "warning";
|
|
7530
7824
|
text: string;
|
|
7531
7825
|
id?: number | undefined;
|
|
7532
7826
|
}[] | undefined;
|
|
@@ -7545,7 +7839,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7545
7839
|
order?: number | undefined;
|
|
7546
7840
|
hint?: string | undefined;
|
|
7547
7841
|
messages?: {
|
|
7548
|
-
type: "
|
|
7842
|
+
type: "error" | "info" | "success" | "warning";
|
|
7549
7843
|
text: string;
|
|
7550
7844
|
id?: number | undefined;
|
|
7551
7845
|
}[] | undefined;
|
|
@@ -7564,7 +7858,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7564
7858
|
order?: number | undefined;
|
|
7565
7859
|
hint?: string | undefined;
|
|
7566
7860
|
messages?: {
|
|
7567
|
-
type: "
|
|
7861
|
+
type: "error" | "info" | "success" | "warning";
|
|
7568
7862
|
text: string;
|
|
7569
7863
|
id?: number | undefined;
|
|
7570
7864
|
}[] | undefined;
|
|
@@ -7701,7 +7995,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7701
7995
|
visible?: boolean | undefined;
|
|
7702
7996
|
hint?: string | undefined;
|
|
7703
7997
|
messages?: {
|
|
7704
|
-
type: "
|
|
7998
|
+
type: "error" | "info" | "success" | "warning";
|
|
7705
7999
|
text: string;
|
|
7706
8000
|
id?: number | undefined;
|
|
7707
8001
|
}[] | undefined;
|
|
@@ -7725,7 +8019,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7725
8019
|
visible?: boolean | undefined;
|
|
7726
8020
|
hint?: string | undefined;
|
|
7727
8021
|
messages?: {
|
|
7728
|
-
type: "
|
|
8022
|
+
type: "error" | "info" | "success" | "warning";
|
|
7729
8023
|
text: string;
|
|
7730
8024
|
id?: number | undefined;
|
|
7731
8025
|
}[] | undefined;
|
|
@@ -7749,7 +8043,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7749
8043
|
visible?: boolean | undefined;
|
|
7750
8044
|
hint?: string | undefined;
|
|
7751
8045
|
messages?: {
|
|
7752
|
-
type: "
|
|
8046
|
+
type: "error" | "info" | "success" | "warning";
|
|
7753
8047
|
text: string;
|
|
7754
8048
|
id?: number | undefined;
|
|
7755
8049
|
}[] | undefined;
|
|
@@ -7770,7 +8064,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7770
8064
|
visible?: boolean | undefined;
|
|
7771
8065
|
hint?: string | undefined;
|
|
7772
8066
|
messages?: {
|
|
7773
|
-
type: "
|
|
8067
|
+
type: "error" | "info" | "success" | "warning";
|
|
7774
8068
|
text: string;
|
|
7775
8069
|
id?: number | undefined;
|
|
7776
8070
|
}[] | undefined;
|
|
@@ -7791,7 +8085,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7791
8085
|
visible?: boolean | undefined;
|
|
7792
8086
|
hint?: string | undefined;
|
|
7793
8087
|
messages?: {
|
|
7794
|
-
type: "
|
|
8088
|
+
type: "error" | "info" | "success" | "warning";
|
|
7795
8089
|
text: string;
|
|
7796
8090
|
id?: number | undefined;
|
|
7797
8091
|
}[] | undefined;
|
|
@@ -7816,7 +8110,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7816
8110
|
visible?: boolean | undefined;
|
|
7817
8111
|
hint?: string | undefined;
|
|
7818
8112
|
messages?: {
|
|
7819
|
-
type: "
|
|
8113
|
+
type: "error" | "info" | "success" | "warning";
|
|
7820
8114
|
text: string;
|
|
7821
8115
|
id?: number | undefined;
|
|
7822
8116
|
}[] | undefined;
|
|
@@ -7835,7 +8129,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7835
8129
|
visible?: boolean | undefined;
|
|
7836
8130
|
hint?: string | undefined;
|
|
7837
8131
|
messages?: {
|
|
7838
|
-
type: "
|
|
8132
|
+
type: "error" | "info" | "success" | "warning";
|
|
7839
8133
|
text: string;
|
|
7840
8134
|
id?: number | undefined;
|
|
7841
8135
|
}[] | undefined;
|
|
@@ -7855,7 +8149,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7855
8149
|
visible?: boolean | undefined;
|
|
7856
8150
|
hint?: string | undefined;
|
|
7857
8151
|
messages?: {
|
|
7858
|
-
type: "
|
|
8152
|
+
type: "error" | "info" | "success" | "warning";
|
|
7859
8153
|
text: string;
|
|
7860
8154
|
id?: number | undefined;
|
|
7861
8155
|
}[] | undefined;
|
|
@@ -7874,7 +8168,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7874
8168
|
visible?: boolean | undefined;
|
|
7875
8169
|
hint?: string | undefined;
|
|
7876
8170
|
messages?: {
|
|
7877
|
-
type: "
|
|
8171
|
+
type: "error" | "info" | "success" | "warning";
|
|
7878
8172
|
text: string;
|
|
7879
8173
|
id?: number | undefined;
|
|
7880
8174
|
}[] | undefined;
|
|
@@ -7896,7 +8190,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7896
8190
|
visible?: boolean | undefined;
|
|
7897
8191
|
hint?: string | undefined;
|
|
7898
8192
|
messages?: {
|
|
7899
|
-
type: "
|
|
8193
|
+
type: "error" | "info" | "success" | "warning";
|
|
7900
8194
|
text: string;
|
|
7901
8195
|
id?: number | undefined;
|
|
7902
8196
|
}[] | undefined;
|
|
@@ -7918,7 +8212,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7918
8212
|
visible?: boolean | undefined;
|
|
7919
8213
|
hint?: string | undefined;
|
|
7920
8214
|
messages?: {
|
|
7921
|
-
type: "
|
|
8215
|
+
type: "error" | "info" | "success" | "warning";
|
|
7922
8216
|
text: string;
|
|
7923
8217
|
id?: number | undefined;
|
|
7924
8218
|
}[] | undefined;
|
|
@@ -7937,7 +8231,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7937
8231
|
visible?: boolean | undefined;
|
|
7938
8232
|
hint?: string | undefined;
|
|
7939
8233
|
messages?: {
|
|
7940
|
-
type: "
|
|
8234
|
+
type: "error" | "info" | "success" | "warning";
|
|
7941
8235
|
text: string;
|
|
7942
8236
|
id?: number | undefined;
|
|
7943
8237
|
}[] | undefined;
|
|
@@ -7962,7 +8256,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7962
8256
|
visible?: boolean | undefined;
|
|
7963
8257
|
hint?: string | undefined;
|
|
7964
8258
|
messages?: {
|
|
7965
|
-
type: "
|
|
8259
|
+
type: "error" | "info" | "success" | "warning";
|
|
7966
8260
|
text: string;
|
|
7967
8261
|
id?: number | undefined;
|
|
7968
8262
|
}[] | undefined;
|
|
@@ -7983,7 +8277,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
7983
8277
|
visible?: boolean | undefined;
|
|
7984
8278
|
hint?: string | undefined;
|
|
7985
8279
|
messages?: {
|
|
7986
|
-
type: "
|
|
8280
|
+
type: "error" | "info" | "success" | "warning";
|
|
7987
8281
|
text: string;
|
|
7988
8282
|
id?: number | undefined;
|
|
7989
8283
|
}[] | undefined;
|
|
@@ -8004,7 +8298,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8004
8298
|
visible?: boolean | undefined;
|
|
8005
8299
|
hint?: string | undefined;
|
|
8006
8300
|
messages?: {
|
|
8007
|
-
type: "
|
|
8301
|
+
type: "error" | "info" | "success" | "warning";
|
|
8008
8302
|
text: string;
|
|
8009
8303
|
id?: number | undefined;
|
|
8010
8304
|
}[] | undefined;
|
|
@@ -8023,7 +8317,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8023
8317
|
visible?: boolean | undefined;
|
|
8024
8318
|
hint?: string | undefined;
|
|
8025
8319
|
messages?: {
|
|
8026
|
-
type: "
|
|
8320
|
+
type: "error" | "info" | "success" | "warning";
|
|
8027
8321
|
text: string;
|
|
8028
8322
|
id?: number | undefined;
|
|
8029
8323
|
}[] | undefined;
|
|
@@ -8042,7 +8336,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8042
8336
|
visible?: boolean | undefined;
|
|
8043
8337
|
hint?: string | undefined;
|
|
8044
8338
|
messages?: {
|
|
8045
|
-
type: "
|
|
8339
|
+
type: "error" | "info" | "success" | "warning";
|
|
8046
8340
|
text: string;
|
|
8047
8341
|
id?: number | undefined;
|
|
8048
8342
|
}[] | undefined;
|
|
@@ -8183,7 +8477,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8183
8477
|
order?: number | undefined;
|
|
8184
8478
|
hint?: string | undefined;
|
|
8185
8479
|
messages?: {
|
|
8186
|
-
type: "
|
|
8480
|
+
type: "error" | "info" | "success" | "warning";
|
|
8187
8481
|
text: string;
|
|
8188
8482
|
id?: number | undefined;
|
|
8189
8483
|
}[] | undefined;
|
|
@@ -8207,7 +8501,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8207
8501
|
order?: number | undefined;
|
|
8208
8502
|
hint?: string | undefined;
|
|
8209
8503
|
messages?: {
|
|
8210
|
-
type: "
|
|
8504
|
+
type: "error" | "info" | "success" | "warning";
|
|
8211
8505
|
text: string;
|
|
8212
8506
|
id?: number | undefined;
|
|
8213
8507
|
}[] | undefined;
|
|
@@ -8231,7 +8525,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8231
8525
|
order?: number | undefined;
|
|
8232
8526
|
hint?: string | undefined;
|
|
8233
8527
|
messages?: {
|
|
8234
|
-
type: "
|
|
8528
|
+
type: "error" | "info" | "success" | "warning";
|
|
8235
8529
|
text: string;
|
|
8236
8530
|
id?: number | undefined;
|
|
8237
8531
|
}[] | undefined;
|
|
@@ -8252,7 +8546,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8252
8546
|
order?: number | undefined;
|
|
8253
8547
|
hint?: string | undefined;
|
|
8254
8548
|
messages?: {
|
|
8255
|
-
type: "
|
|
8549
|
+
type: "error" | "info" | "success" | "warning";
|
|
8256
8550
|
text: string;
|
|
8257
8551
|
id?: number | undefined;
|
|
8258
8552
|
}[] | undefined;
|
|
@@ -8273,7 +8567,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8273
8567
|
order?: number | undefined;
|
|
8274
8568
|
hint?: string | undefined;
|
|
8275
8569
|
messages?: {
|
|
8276
|
-
type: "
|
|
8570
|
+
type: "error" | "info" | "success" | "warning";
|
|
8277
8571
|
text: string;
|
|
8278
8572
|
id?: number | undefined;
|
|
8279
8573
|
}[] | undefined;
|
|
@@ -8298,7 +8592,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8298
8592
|
order?: number | undefined;
|
|
8299
8593
|
hint?: string | undefined;
|
|
8300
8594
|
messages?: {
|
|
8301
|
-
type: "
|
|
8595
|
+
type: "error" | "info" | "success" | "warning";
|
|
8302
8596
|
text: string;
|
|
8303
8597
|
id?: number | undefined;
|
|
8304
8598
|
}[] | undefined;
|
|
@@ -8317,7 +8611,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8317
8611
|
order?: number | undefined;
|
|
8318
8612
|
hint?: string | undefined;
|
|
8319
8613
|
messages?: {
|
|
8320
|
-
type: "
|
|
8614
|
+
type: "error" | "info" | "success" | "warning";
|
|
8321
8615
|
text: string;
|
|
8322
8616
|
id?: number | undefined;
|
|
8323
8617
|
}[] | undefined;
|
|
@@ -8337,7 +8631,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8337
8631
|
order?: number | undefined;
|
|
8338
8632
|
hint?: string | undefined;
|
|
8339
8633
|
messages?: {
|
|
8340
|
-
type: "
|
|
8634
|
+
type: "error" | "info" | "success" | "warning";
|
|
8341
8635
|
text: string;
|
|
8342
8636
|
id?: number | undefined;
|
|
8343
8637
|
}[] | undefined;
|
|
@@ -8356,7 +8650,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8356
8650
|
order?: number | undefined;
|
|
8357
8651
|
hint?: string | undefined;
|
|
8358
8652
|
messages?: {
|
|
8359
|
-
type: "
|
|
8653
|
+
type: "error" | "info" | "success" | "warning";
|
|
8360
8654
|
text: string;
|
|
8361
8655
|
id?: number | undefined;
|
|
8362
8656
|
}[] | undefined;
|
|
@@ -8378,7 +8672,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8378
8672
|
order?: number | undefined;
|
|
8379
8673
|
hint?: string | undefined;
|
|
8380
8674
|
messages?: {
|
|
8381
|
-
type: "
|
|
8675
|
+
type: "error" | "info" | "success" | "warning";
|
|
8382
8676
|
text: string;
|
|
8383
8677
|
id?: number | undefined;
|
|
8384
8678
|
}[] | undefined;
|
|
@@ -8400,7 +8694,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8400
8694
|
order?: number | undefined;
|
|
8401
8695
|
hint?: string | undefined;
|
|
8402
8696
|
messages?: {
|
|
8403
|
-
type: "
|
|
8697
|
+
type: "error" | "info" | "success" | "warning";
|
|
8404
8698
|
text: string;
|
|
8405
8699
|
id?: number | undefined;
|
|
8406
8700
|
}[] | undefined;
|
|
@@ -8419,7 +8713,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8419
8713
|
order?: number | undefined;
|
|
8420
8714
|
hint?: string | undefined;
|
|
8421
8715
|
messages?: {
|
|
8422
|
-
type: "
|
|
8716
|
+
type: "error" | "info" | "success" | "warning";
|
|
8423
8717
|
text: string;
|
|
8424
8718
|
id?: number | undefined;
|
|
8425
8719
|
}[] | undefined;
|
|
@@ -8444,7 +8738,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8444
8738
|
order?: number | undefined;
|
|
8445
8739
|
hint?: string | undefined;
|
|
8446
8740
|
messages?: {
|
|
8447
|
-
type: "
|
|
8741
|
+
type: "error" | "info" | "success" | "warning";
|
|
8448
8742
|
text: string;
|
|
8449
8743
|
id?: number | undefined;
|
|
8450
8744
|
}[] | undefined;
|
|
@@ -8465,7 +8759,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8465
8759
|
order?: number | undefined;
|
|
8466
8760
|
hint?: string | undefined;
|
|
8467
8761
|
messages?: {
|
|
8468
|
-
type: "
|
|
8762
|
+
type: "error" | "info" | "success" | "warning";
|
|
8469
8763
|
text: string;
|
|
8470
8764
|
id?: number | undefined;
|
|
8471
8765
|
}[] | undefined;
|
|
@@ -8486,7 +8780,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8486
8780
|
order?: number | undefined;
|
|
8487
8781
|
hint?: string | undefined;
|
|
8488
8782
|
messages?: {
|
|
8489
|
-
type: "
|
|
8783
|
+
type: "error" | "info" | "success" | "warning";
|
|
8490
8784
|
text: string;
|
|
8491
8785
|
id?: number | undefined;
|
|
8492
8786
|
}[] | undefined;
|
|
@@ -8505,7 +8799,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8505
8799
|
order?: number | undefined;
|
|
8506
8800
|
hint?: string | undefined;
|
|
8507
8801
|
messages?: {
|
|
8508
|
-
type: "
|
|
8802
|
+
type: "error" | "info" | "success" | "warning";
|
|
8509
8803
|
text: string;
|
|
8510
8804
|
id?: number | undefined;
|
|
8511
8805
|
}[] | undefined;
|
|
@@ -8524,7 +8818,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8524
8818
|
order?: number | undefined;
|
|
8525
8819
|
hint?: string | undefined;
|
|
8526
8820
|
messages?: {
|
|
8527
|
-
type: "
|
|
8821
|
+
type: "error" | "info" | "success" | "warning";
|
|
8528
8822
|
text: string;
|
|
8529
8823
|
id?: number | undefined;
|
|
8530
8824
|
}[] | undefined;
|
|
@@ -8670,7 +8964,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8670
8964
|
visible?: boolean | undefined;
|
|
8671
8965
|
hint?: string | undefined;
|
|
8672
8966
|
messages?: {
|
|
8673
|
-
type: "
|
|
8967
|
+
type: "error" | "info" | "success" | "warning";
|
|
8674
8968
|
text: string;
|
|
8675
8969
|
id?: number | undefined;
|
|
8676
8970
|
}[] | undefined;
|
|
@@ -8694,7 +8988,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8694
8988
|
visible?: boolean | undefined;
|
|
8695
8989
|
hint?: string | undefined;
|
|
8696
8990
|
messages?: {
|
|
8697
|
-
type: "
|
|
8991
|
+
type: "error" | "info" | "success" | "warning";
|
|
8698
8992
|
text: string;
|
|
8699
8993
|
id?: number | undefined;
|
|
8700
8994
|
}[] | undefined;
|
|
@@ -8718,7 +9012,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8718
9012
|
visible?: boolean | undefined;
|
|
8719
9013
|
hint?: string | undefined;
|
|
8720
9014
|
messages?: {
|
|
8721
|
-
type: "
|
|
9015
|
+
type: "error" | "info" | "success" | "warning";
|
|
8722
9016
|
text: string;
|
|
8723
9017
|
id?: number | undefined;
|
|
8724
9018
|
}[] | undefined;
|
|
@@ -8739,7 +9033,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8739
9033
|
visible?: boolean | undefined;
|
|
8740
9034
|
hint?: string | undefined;
|
|
8741
9035
|
messages?: {
|
|
8742
|
-
type: "
|
|
9036
|
+
type: "error" | "info" | "success" | "warning";
|
|
8743
9037
|
text: string;
|
|
8744
9038
|
id?: number | undefined;
|
|
8745
9039
|
}[] | undefined;
|
|
@@ -8760,7 +9054,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8760
9054
|
visible?: boolean | undefined;
|
|
8761
9055
|
hint?: string | undefined;
|
|
8762
9056
|
messages?: {
|
|
8763
|
-
type: "
|
|
9057
|
+
type: "error" | "info" | "success" | "warning";
|
|
8764
9058
|
text: string;
|
|
8765
9059
|
id?: number | undefined;
|
|
8766
9060
|
}[] | undefined;
|
|
@@ -8785,7 +9079,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8785
9079
|
visible?: boolean | undefined;
|
|
8786
9080
|
hint?: string | undefined;
|
|
8787
9081
|
messages?: {
|
|
8788
|
-
type: "
|
|
9082
|
+
type: "error" | "info" | "success" | "warning";
|
|
8789
9083
|
text: string;
|
|
8790
9084
|
id?: number | undefined;
|
|
8791
9085
|
}[] | undefined;
|
|
@@ -8804,7 +9098,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8804
9098
|
visible?: boolean | undefined;
|
|
8805
9099
|
hint?: string | undefined;
|
|
8806
9100
|
messages?: {
|
|
8807
|
-
type: "
|
|
9101
|
+
type: "error" | "info" | "success" | "warning";
|
|
8808
9102
|
text: string;
|
|
8809
9103
|
id?: number | undefined;
|
|
8810
9104
|
}[] | undefined;
|
|
@@ -8824,7 +9118,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8824
9118
|
visible?: boolean | undefined;
|
|
8825
9119
|
hint?: string | undefined;
|
|
8826
9120
|
messages?: {
|
|
8827
|
-
type: "
|
|
9121
|
+
type: "error" | "info" | "success" | "warning";
|
|
8828
9122
|
text: string;
|
|
8829
9123
|
id?: number | undefined;
|
|
8830
9124
|
}[] | undefined;
|
|
@@ -8843,7 +9137,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8843
9137
|
visible?: boolean | undefined;
|
|
8844
9138
|
hint?: string | undefined;
|
|
8845
9139
|
messages?: {
|
|
8846
|
-
type: "
|
|
9140
|
+
type: "error" | "info" | "success" | "warning";
|
|
8847
9141
|
text: string;
|
|
8848
9142
|
id?: number | undefined;
|
|
8849
9143
|
}[] | undefined;
|
|
@@ -8865,7 +9159,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8865
9159
|
visible?: boolean | undefined;
|
|
8866
9160
|
hint?: string | undefined;
|
|
8867
9161
|
messages?: {
|
|
8868
|
-
type: "
|
|
9162
|
+
type: "error" | "info" | "success" | "warning";
|
|
8869
9163
|
text: string;
|
|
8870
9164
|
id?: number | undefined;
|
|
8871
9165
|
}[] | undefined;
|
|
@@ -8887,7 +9181,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8887
9181
|
visible?: boolean | undefined;
|
|
8888
9182
|
hint?: string | undefined;
|
|
8889
9183
|
messages?: {
|
|
8890
|
-
type: "
|
|
9184
|
+
type: "error" | "info" | "success" | "warning";
|
|
8891
9185
|
text: string;
|
|
8892
9186
|
id?: number | undefined;
|
|
8893
9187
|
}[] | undefined;
|
|
@@ -8906,7 +9200,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8906
9200
|
visible?: boolean | undefined;
|
|
8907
9201
|
hint?: string | undefined;
|
|
8908
9202
|
messages?: {
|
|
8909
|
-
type: "
|
|
9203
|
+
type: "error" | "info" | "success" | "warning";
|
|
8910
9204
|
text: string;
|
|
8911
9205
|
id?: number | undefined;
|
|
8912
9206
|
}[] | undefined;
|
|
@@ -8931,7 +9225,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8931
9225
|
visible?: boolean | undefined;
|
|
8932
9226
|
hint?: string | undefined;
|
|
8933
9227
|
messages?: {
|
|
8934
|
-
type: "
|
|
9228
|
+
type: "error" | "info" | "success" | "warning";
|
|
8935
9229
|
text: string;
|
|
8936
9230
|
id?: number | undefined;
|
|
8937
9231
|
}[] | undefined;
|
|
@@ -8952,7 +9246,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8952
9246
|
visible?: boolean | undefined;
|
|
8953
9247
|
hint?: string | undefined;
|
|
8954
9248
|
messages?: {
|
|
8955
|
-
type: "
|
|
9249
|
+
type: "error" | "info" | "success" | "warning";
|
|
8956
9250
|
text: string;
|
|
8957
9251
|
id?: number | undefined;
|
|
8958
9252
|
}[] | undefined;
|
|
@@ -8973,7 +9267,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8973
9267
|
visible?: boolean | undefined;
|
|
8974
9268
|
hint?: string | undefined;
|
|
8975
9269
|
messages?: {
|
|
8976
|
-
type: "
|
|
9270
|
+
type: "error" | "info" | "success" | "warning";
|
|
8977
9271
|
text: string;
|
|
8978
9272
|
id?: number | undefined;
|
|
8979
9273
|
}[] | undefined;
|
|
@@ -8992,7 +9286,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
8992
9286
|
visible?: boolean | undefined;
|
|
8993
9287
|
hint?: string | undefined;
|
|
8994
9288
|
messages?: {
|
|
8995
|
-
type: "
|
|
9289
|
+
type: "error" | "info" | "success" | "warning";
|
|
8996
9290
|
text: string;
|
|
8997
9291
|
id?: number | undefined;
|
|
8998
9292
|
}[] | undefined;
|
|
@@ -9011,7 +9305,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9011
9305
|
visible?: boolean | undefined;
|
|
9012
9306
|
hint?: string | undefined;
|
|
9013
9307
|
messages?: {
|
|
9014
|
-
type: "
|
|
9308
|
+
type: "error" | "info" | "success" | "warning";
|
|
9015
9309
|
text: string;
|
|
9016
9310
|
id?: number | undefined;
|
|
9017
9311
|
}[] | undefined;
|
|
@@ -9324,7 +9618,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9324
9618
|
order?: number | undefined;
|
|
9325
9619
|
hint?: string | undefined;
|
|
9326
9620
|
messages?: {
|
|
9327
|
-
type: "
|
|
9621
|
+
type: "error" | "info" | "success" | "warning";
|
|
9328
9622
|
text: string;
|
|
9329
9623
|
id?: number | undefined;
|
|
9330
9624
|
}[] | undefined;
|
|
@@ -9348,7 +9642,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9348
9642
|
order?: number | undefined;
|
|
9349
9643
|
hint?: string | undefined;
|
|
9350
9644
|
messages?: {
|
|
9351
|
-
type: "
|
|
9645
|
+
type: "error" | "info" | "success" | "warning";
|
|
9352
9646
|
text: string;
|
|
9353
9647
|
id?: number | undefined;
|
|
9354
9648
|
}[] | undefined;
|
|
@@ -9372,7 +9666,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9372
9666
|
order?: number | undefined;
|
|
9373
9667
|
hint?: string | undefined;
|
|
9374
9668
|
messages?: {
|
|
9375
|
-
type: "
|
|
9669
|
+
type: "error" | "info" | "success" | "warning";
|
|
9376
9670
|
text: string;
|
|
9377
9671
|
id?: number | undefined;
|
|
9378
9672
|
}[] | undefined;
|
|
@@ -9393,7 +9687,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9393
9687
|
order?: number | undefined;
|
|
9394
9688
|
hint?: string | undefined;
|
|
9395
9689
|
messages?: {
|
|
9396
|
-
type: "
|
|
9690
|
+
type: "error" | "info" | "success" | "warning";
|
|
9397
9691
|
text: string;
|
|
9398
9692
|
id?: number | undefined;
|
|
9399
9693
|
}[] | undefined;
|
|
@@ -9414,7 +9708,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9414
9708
|
order?: number | undefined;
|
|
9415
9709
|
hint?: string | undefined;
|
|
9416
9710
|
messages?: {
|
|
9417
|
-
type: "
|
|
9711
|
+
type: "error" | "info" | "success" | "warning";
|
|
9418
9712
|
text: string;
|
|
9419
9713
|
id?: number | undefined;
|
|
9420
9714
|
}[] | undefined;
|
|
@@ -9439,7 +9733,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9439
9733
|
order?: number | undefined;
|
|
9440
9734
|
hint?: string | undefined;
|
|
9441
9735
|
messages?: {
|
|
9442
|
-
type: "
|
|
9736
|
+
type: "error" | "info" | "success" | "warning";
|
|
9443
9737
|
text: string;
|
|
9444
9738
|
id?: number | undefined;
|
|
9445
9739
|
}[] | undefined;
|
|
@@ -9458,7 +9752,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9458
9752
|
order?: number | undefined;
|
|
9459
9753
|
hint?: string | undefined;
|
|
9460
9754
|
messages?: {
|
|
9461
|
-
type: "
|
|
9755
|
+
type: "error" | "info" | "success" | "warning";
|
|
9462
9756
|
text: string;
|
|
9463
9757
|
id?: number | undefined;
|
|
9464
9758
|
}[] | undefined;
|
|
@@ -9478,7 +9772,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9478
9772
|
order?: number | undefined;
|
|
9479
9773
|
hint?: string | undefined;
|
|
9480
9774
|
messages?: {
|
|
9481
|
-
type: "
|
|
9775
|
+
type: "error" | "info" | "success" | "warning";
|
|
9482
9776
|
text: string;
|
|
9483
9777
|
id?: number | undefined;
|
|
9484
9778
|
}[] | undefined;
|
|
@@ -9497,7 +9791,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9497
9791
|
order?: number | undefined;
|
|
9498
9792
|
hint?: string | undefined;
|
|
9499
9793
|
messages?: {
|
|
9500
|
-
type: "
|
|
9794
|
+
type: "error" | "info" | "success" | "warning";
|
|
9501
9795
|
text: string;
|
|
9502
9796
|
id?: number | undefined;
|
|
9503
9797
|
}[] | undefined;
|
|
@@ -9519,7 +9813,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9519
9813
|
order?: number | undefined;
|
|
9520
9814
|
hint?: string | undefined;
|
|
9521
9815
|
messages?: {
|
|
9522
|
-
type: "
|
|
9816
|
+
type: "error" | "info" | "success" | "warning";
|
|
9523
9817
|
text: string;
|
|
9524
9818
|
id?: number | undefined;
|
|
9525
9819
|
}[] | undefined;
|
|
@@ -9541,7 +9835,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9541
9835
|
order?: number | undefined;
|
|
9542
9836
|
hint?: string | undefined;
|
|
9543
9837
|
messages?: {
|
|
9544
|
-
type: "
|
|
9838
|
+
type: "error" | "info" | "success" | "warning";
|
|
9545
9839
|
text: string;
|
|
9546
9840
|
id?: number | undefined;
|
|
9547
9841
|
}[] | undefined;
|
|
@@ -9560,7 +9854,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9560
9854
|
order?: number | undefined;
|
|
9561
9855
|
hint?: string | undefined;
|
|
9562
9856
|
messages?: {
|
|
9563
|
-
type: "
|
|
9857
|
+
type: "error" | "info" | "success" | "warning";
|
|
9564
9858
|
text: string;
|
|
9565
9859
|
id?: number | undefined;
|
|
9566
9860
|
}[] | undefined;
|
|
@@ -9585,7 +9879,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9585
9879
|
order?: number | undefined;
|
|
9586
9880
|
hint?: string | undefined;
|
|
9587
9881
|
messages?: {
|
|
9588
|
-
type: "
|
|
9882
|
+
type: "error" | "info" | "success" | "warning";
|
|
9589
9883
|
text: string;
|
|
9590
9884
|
id?: number | undefined;
|
|
9591
9885
|
}[] | undefined;
|
|
@@ -9606,7 +9900,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9606
9900
|
order?: number | undefined;
|
|
9607
9901
|
hint?: string | undefined;
|
|
9608
9902
|
messages?: {
|
|
9609
|
-
type: "
|
|
9903
|
+
type: "error" | "info" | "success" | "warning";
|
|
9610
9904
|
text: string;
|
|
9611
9905
|
id?: number | undefined;
|
|
9612
9906
|
}[] | undefined;
|
|
@@ -9627,7 +9921,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9627
9921
|
order?: number | undefined;
|
|
9628
9922
|
hint?: string | undefined;
|
|
9629
9923
|
messages?: {
|
|
9630
|
-
type: "
|
|
9924
|
+
type: "error" | "info" | "success" | "warning";
|
|
9631
9925
|
text: string;
|
|
9632
9926
|
id?: number | undefined;
|
|
9633
9927
|
}[] | undefined;
|
|
@@ -9646,7 +9940,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9646
9940
|
order?: number | undefined;
|
|
9647
9941
|
hint?: string | undefined;
|
|
9648
9942
|
messages?: {
|
|
9649
|
-
type: "
|
|
9943
|
+
type: "error" | "info" | "success" | "warning";
|
|
9650
9944
|
text: string;
|
|
9651
9945
|
id?: number | undefined;
|
|
9652
9946
|
}[] | undefined;
|
|
@@ -9665,7 +9959,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9665
9959
|
order?: number | undefined;
|
|
9666
9960
|
hint?: string | undefined;
|
|
9667
9961
|
messages?: {
|
|
9668
|
-
type: "
|
|
9962
|
+
type: "error" | "info" | "success" | "warning";
|
|
9669
9963
|
text: string;
|
|
9670
9964
|
id?: number | undefined;
|
|
9671
9965
|
}[] | undefined;
|
|
@@ -9884,7 +10178,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9884
10178
|
visible?: boolean | undefined;
|
|
9885
10179
|
hint?: string | undefined;
|
|
9886
10180
|
messages?: {
|
|
9887
|
-
type: "
|
|
10181
|
+
type: "error" | "info" | "success" | "warning";
|
|
9888
10182
|
text: string;
|
|
9889
10183
|
id?: number | undefined;
|
|
9890
10184
|
}[] | undefined;
|
|
@@ -9908,7 +10202,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9908
10202
|
visible?: boolean | undefined;
|
|
9909
10203
|
hint?: string | undefined;
|
|
9910
10204
|
messages?: {
|
|
9911
|
-
type: "
|
|
10205
|
+
type: "error" | "info" | "success" | "warning";
|
|
9912
10206
|
text: string;
|
|
9913
10207
|
id?: number | undefined;
|
|
9914
10208
|
}[] | undefined;
|
|
@@ -9932,7 +10226,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9932
10226
|
visible?: boolean | undefined;
|
|
9933
10227
|
hint?: string | undefined;
|
|
9934
10228
|
messages?: {
|
|
9935
|
-
type: "
|
|
10229
|
+
type: "error" | "info" | "success" | "warning";
|
|
9936
10230
|
text: string;
|
|
9937
10231
|
id?: number | undefined;
|
|
9938
10232
|
}[] | undefined;
|
|
@@ -9953,7 +10247,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9953
10247
|
visible?: boolean | undefined;
|
|
9954
10248
|
hint?: string | undefined;
|
|
9955
10249
|
messages?: {
|
|
9956
|
-
type: "
|
|
10250
|
+
type: "error" | "info" | "success" | "warning";
|
|
9957
10251
|
text: string;
|
|
9958
10252
|
id?: number | undefined;
|
|
9959
10253
|
}[] | undefined;
|
|
@@ -9974,7 +10268,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9974
10268
|
visible?: boolean | undefined;
|
|
9975
10269
|
hint?: string | undefined;
|
|
9976
10270
|
messages?: {
|
|
9977
|
-
type: "
|
|
10271
|
+
type: "error" | "info" | "success" | "warning";
|
|
9978
10272
|
text: string;
|
|
9979
10273
|
id?: number | undefined;
|
|
9980
10274
|
}[] | undefined;
|
|
@@ -9999,7 +10293,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
9999
10293
|
visible?: boolean | undefined;
|
|
10000
10294
|
hint?: string | undefined;
|
|
10001
10295
|
messages?: {
|
|
10002
|
-
type: "
|
|
10296
|
+
type: "error" | "info" | "success" | "warning";
|
|
10003
10297
|
text: string;
|
|
10004
10298
|
id?: number | undefined;
|
|
10005
10299
|
}[] | undefined;
|
|
@@ -10018,7 +10312,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10018
10312
|
visible?: boolean | undefined;
|
|
10019
10313
|
hint?: string | undefined;
|
|
10020
10314
|
messages?: {
|
|
10021
|
-
type: "
|
|
10315
|
+
type: "error" | "info" | "success" | "warning";
|
|
10022
10316
|
text: string;
|
|
10023
10317
|
id?: number | undefined;
|
|
10024
10318
|
}[] | undefined;
|
|
@@ -10038,7 +10332,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10038
10332
|
visible?: boolean | undefined;
|
|
10039
10333
|
hint?: string | undefined;
|
|
10040
10334
|
messages?: {
|
|
10041
|
-
type: "
|
|
10335
|
+
type: "error" | "info" | "success" | "warning";
|
|
10042
10336
|
text: string;
|
|
10043
10337
|
id?: number | undefined;
|
|
10044
10338
|
}[] | undefined;
|
|
@@ -10057,7 +10351,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10057
10351
|
visible?: boolean | undefined;
|
|
10058
10352
|
hint?: string | undefined;
|
|
10059
10353
|
messages?: {
|
|
10060
|
-
type: "
|
|
10354
|
+
type: "error" | "info" | "success" | "warning";
|
|
10061
10355
|
text: string;
|
|
10062
10356
|
id?: number | undefined;
|
|
10063
10357
|
}[] | undefined;
|
|
@@ -10079,7 +10373,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10079
10373
|
visible?: boolean | undefined;
|
|
10080
10374
|
hint?: string | undefined;
|
|
10081
10375
|
messages?: {
|
|
10082
|
-
type: "
|
|
10376
|
+
type: "error" | "info" | "success" | "warning";
|
|
10083
10377
|
text: string;
|
|
10084
10378
|
id?: number | undefined;
|
|
10085
10379
|
}[] | undefined;
|
|
@@ -10101,7 +10395,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10101
10395
|
visible?: boolean | undefined;
|
|
10102
10396
|
hint?: string | undefined;
|
|
10103
10397
|
messages?: {
|
|
10104
|
-
type: "
|
|
10398
|
+
type: "error" | "info" | "success" | "warning";
|
|
10105
10399
|
text: string;
|
|
10106
10400
|
id?: number | undefined;
|
|
10107
10401
|
}[] | undefined;
|
|
@@ -10120,7 +10414,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10120
10414
|
visible?: boolean | undefined;
|
|
10121
10415
|
hint?: string | undefined;
|
|
10122
10416
|
messages?: {
|
|
10123
|
-
type: "
|
|
10417
|
+
type: "error" | "info" | "success" | "warning";
|
|
10124
10418
|
text: string;
|
|
10125
10419
|
id?: number | undefined;
|
|
10126
10420
|
}[] | undefined;
|
|
@@ -10145,7 +10439,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10145
10439
|
visible?: boolean | undefined;
|
|
10146
10440
|
hint?: string | undefined;
|
|
10147
10441
|
messages?: {
|
|
10148
|
-
type: "
|
|
10442
|
+
type: "error" | "info" | "success" | "warning";
|
|
10149
10443
|
text: string;
|
|
10150
10444
|
id?: number | undefined;
|
|
10151
10445
|
}[] | undefined;
|
|
@@ -10166,7 +10460,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10166
10460
|
visible?: boolean | undefined;
|
|
10167
10461
|
hint?: string | undefined;
|
|
10168
10462
|
messages?: {
|
|
10169
|
-
type: "
|
|
10463
|
+
type: "error" | "info" | "success" | "warning";
|
|
10170
10464
|
text: string;
|
|
10171
10465
|
id?: number | undefined;
|
|
10172
10466
|
}[] | undefined;
|
|
@@ -10187,7 +10481,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10187
10481
|
visible?: boolean | undefined;
|
|
10188
10482
|
hint?: string | undefined;
|
|
10189
10483
|
messages?: {
|
|
10190
|
-
type: "
|
|
10484
|
+
type: "error" | "info" | "success" | "warning";
|
|
10191
10485
|
text: string;
|
|
10192
10486
|
id?: number | undefined;
|
|
10193
10487
|
}[] | undefined;
|
|
@@ -10206,7 +10500,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10206
10500
|
visible?: boolean | undefined;
|
|
10207
10501
|
hint?: string | undefined;
|
|
10208
10502
|
messages?: {
|
|
10209
|
-
type: "
|
|
10503
|
+
type: "error" | "info" | "success" | "warning";
|
|
10210
10504
|
text: string;
|
|
10211
10505
|
id?: number | undefined;
|
|
10212
10506
|
}[] | undefined;
|
|
@@ -10225,7 +10519,7 @@ declare const formInsertSchema: z.ZodObject<{
|
|
|
10225
10519
|
visible?: boolean | undefined;
|
|
10226
10520
|
hint?: string | undefined;
|
|
10227
10521
|
messages?: {
|
|
10228
|
-
type: "
|
|
10522
|
+
type: "error" | "info" | "success" | "warning";
|
|
10229
10523
|
text: string;
|
|
10230
10524
|
id?: number | undefined;
|
|
10231
10525
|
}[] | undefined;
|
|
@@ -10895,11 +11189,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
10895
11189
|
"warning"
|
|
10896
11190
|
]>;
|
|
10897
11191
|
}, "strip", z.ZodTypeAny, {
|
|
10898
|
-
type: "
|
|
11192
|
+
type: "error" | "info" | "success" | "warning";
|
|
10899
11193
|
text: string;
|
|
10900
11194
|
id?: number | undefined;
|
|
10901
11195
|
}, {
|
|
10902
|
-
type: "
|
|
11196
|
+
type: "error" | "info" | "success" | "warning";
|
|
10903
11197
|
text: string;
|
|
10904
11198
|
id?: number | undefined;
|
|
10905
11199
|
}>, "many">>;
|
|
@@ -10928,7 +11222,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10928
11222
|
order?: number | undefined;
|
|
10929
11223
|
hint?: string | undefined;
|
|
10930
11224
|
messages?: {
|
|
10931
|
-
type: "
|
|
11225
|
+
type: "error" | "info" | "success" | "warning";
|
|
10932
11226
|
text: string;
|
|
10933
11227
|
id?: number | undefined;
|
|
10934
11228
|
}[] | undefined;
|
|
@@ -10946,7 +11240,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
10946
11240
|
visible?: boolean | undefined;
|
|
10947
11241
|
hint?: string | undefined;
|
|
10948
11242
|
messages?: {
|
|
10949
|
-
type: "
|
|
11243
|
+
type: "error" | "info" | "success" | "warning";
|
|
10950
11244
|
text: string;
|
|
10951
11245
|
id?: number | undefined;
|
|
10952
11246
|
}[] | undefined;
|
|
@@ -10969,11 +11263,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
10969
11263
|
"warning"
|
|
10970
11264
|
]>;
|
|
10971
11265
|
}, "strip", z.ZodTypeAny, {
|
|
10972
|
-
type: "
|
|
11266
|
+
type: "error" | "info" | "success" | "warning";
|
|
10973
11267
|
text: string;
|
|
10974
11268
|
id?: number | undefined;
|
|
10975
11269
|
}, {
|
|
10976
|
-
type: "
|
|
11270
|
+
type: "error" | "info" | "success" | "warning";
|
|
10977
11271
|
text: string;
|
|
10978
11272
|
id?: number | undefined;
|
|
10979
11273
|
}>, "many">>;
|
|
@@ -11036,7 +11330,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11036
11330
|
order?: number | undefined;
|
|
11037
11331
|
hint?: string | undefined;
|
|
11038
11332
|
messages?: {
|
|
11039
|
-
type: "
|
|
11333
|
+
type: "error" | "info" | "success" | "warning";
|
|
11040
11334
|
text: string;
|
|
11041
11335
|
id?: number | undefined;
|
|
11042
11336
|
}[] | undefined;
|
|
@@ -11060,7 +11354,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11060
11354
|
visible?: boolean | undefined;
|
|
11061
11355
|
hint?: string | undefined;
|
|
11062
11356
|
messages?: {
|
|
11063
|
-
type: "
|
|
11357
|
+
type: "error" | "info" | "success" | "warning";
|
|
11064
11358
|
text: string;
|
|
11065
11359
|
id?: number | undefined;
|
|
11066
11360
|
}[] | undefined;
|
|
@@ -11083,11 +11377,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11083
11377
|
"warning"
|
|
11084
11378
|
]>;
|
|
11085
11379
|
}, "strip", z.ZodTypeAny, {
|
|
11086
|
-
type: "
|
|
11380
|
+
type: "error" | "info" | "success" | "warning";
|
|
11087
11381
|
text: string;
|
|
11088
11382
|
id?: number | undefined;
|
|
11089
11383
|
}, {
|
|
11090
|
-
type: "
|
|
11384
|
+
type: "error" | "info" | "success" | "warning";
|
|
11091
11385
|
text: string;
|
|
11092
11386
|
id?: number | undefined;
|
|
11093
11387
|
}>, "many">>;
|
|
@@ -11152,7 +11446,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11152
11446
|
order?: number | undefined;
|
|
11153
11447
|
hint?: string | undefined;
|
|
11154
11448
|
messages?: {
|
|
11155
|
-
type: "
|
|
11449
|
+
type: "error" | "info" | "success" | "warning";
|
|
11156
11450
|
text: string;
|
|
11157
11451
|
id?: number | undefined;
|
|
11158
11452
|
}[] | undefined;
|
|
@@ -11176,7 +11470,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11176
11470
|
visible?: boolean | undefined;
|
|
11177
11471
|
hint?: string | undefined;
|
|
11178
11472
|
messages?: {
|
|
11179
|
-
type: "
|
|
11473
|
+
type: "error" | "info" | "success" | "warning";
|
|
11180
11474
|
text: string;
|
|
11181
11475
|
id?: number | undefined;
|
|
11182
11476
|
}[] | undefined;
|
|
@@ -11199,11 +11493,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11199
11493
|
"warning"
|
|
11200
11494
|
]>;
|
|
11201
11495
|
}, "strip", z.ZodTypeAny, {
|
|
11202
|
-
type: "
|
|
11496
|
+
type: "error" | "info" | "success" | "warning";
|
|
11203
11497
|
text: string;
|
|
11204
11498
|
id?: number | undefined;
|
|
11205
11499
|
}, {
|
|
11206
|
-
type: "
|
|
11500
|
+
type: "error" | "info" | "success" | "warning";
|
|
11207
11501
|
text: string;
|
|
11208
11502
|
id?: number | undefined;
|
|
11209
11503
|
}>, "many">>;
|
|
@@ -11236,7 +11530,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11236
11530
|
order?: number | undefined;
|
|
11237
11531
|
hint?: string | undefined;
|
|
11238
11532
|
messages?: {
|
|
11239
|
-
type: "
|
|
11533
|
+
type: "error" | "info" | "success" | "warning";
|
|
11240
11534
|
text: string;
|
|
11241
11535
|
id?: number | undefined;
|
|
11242
11536
|
}[] | undefined;
|
|
@@ -11255,7 +11549,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11255
11549
|
visible?: boolean | undefined;
|
|
11256
11550
|
hint?: string | undefined;
|
|
11257
11551
|
messages?: {
|
|
11258
|
-
type: "
|
|
11552
|
+
type: "error" | "info" | "success" | "warning";
|
|
11259
11553
|
text: string;
|
|
11260
11554
|
id?: number | undefined;
|
|
11261
11555
|
}[] | undefined;
|
|
@@ -11278,11 +11572,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11278
11572
|
"warning"
|
|
11279
11573
|
]>;
|
|
11280
11574
|
}, "strip", z.ZodTypeAny, {
|
|
11281
|
-
type: "
|
|
11575
|
+
type: "error" | "info" | "success" | "warning";
|
|
11282
11576
|
text: string;
|
|
11283
11577
|
id?: number | undefined;
|
|
11284
11578
|
}, {
|
|
11285
|
-
type: "
|
|
11579
|
+
type: "error" | "info" | "success" | "warning";
|
|
11286
11580
|
text: string;
|
|
11287
11581
|
id?: number | undefined;
|
|
11288
11582
|
}>, "many">>;
|
|
@@ -11323,7 +11617,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11323
11617
|
order?: number | undefined;
|
|
11324
11618
|
hint?: string | undefined;
|
|
11325
11619
|
messages?: {
|
|
11326
|
-
type: "
|
|
11620
|
+
type: "error" | "info" | "success" | "warning";
|
|
11327
11621
|
text: string;
|
|
11328
11622
|
id?: number | undefined;
|
|
11329
11623
|
}[] | undefined;
|
|
@@ -11344,7 +11638,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11344
11638
|
visible?: boolean | undefined;
|
|
11345
11639
|
hint?: string | undefined;
|
|
11346
11640
|
messages?: {
|
|
11347
|
-
type: "
|
|
11641
|
+
type: "error" | "info" | "success" | "warning";
|
|
11348
11642
|
text: string;
|
|
11349
11643
|
id?: number | undefined;
|
|
11350
11644
|
}[] | undefined;
|
|
@@ -11367,11 +11661,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11367
11661
|
"warning"
|
|
11368
11662
|
]>;
|
|
11369
11663
|
}, "strip", z.ZodTypeAny, {
|
|
11370
|
-
type: "
|
|
11664
|
+
type: "error" | "info" | "success" | "warning";
|
|
11371
11665
|
text: string;
|
|
11372
11666
|
id?: number | undefined;
|
|
11373
11667
|
}, {
|
|
11374
|
-
type: "
|
|
11668
|
+
type: "error" | "info" | "success" | "warning";
|
|
11375
11669
|
text: string;
|
|
11376
11670
|
id?: number | undefined;
|
|
11377
11671
|
}>, "many">>;
|
|
@@ -11412,7 +11706,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11412
11706
|
order?: number | undefined;
|
|
11413
11707
|
hint?: string | undefined;
|
|
11414
11708
|
messages?: {
|
|
11415
|
-
type: "
|
|
11709
|
+
type: "error" | "info" | "success" | "warning";
|
|
11416
11710
|
text: string;
|
|
11417
11711
|
id?: number | undefined;
|
|
11418
11712
|
}[] | undefined;
|
|
@@ -11433,7 +11727,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11433
11727
|
visible?: boolean | undefined;
|
|
11434
11728
|
hint?: string | undefined;
|
|
11435
11729
|
messages?: {
|
|
11436
|
-
type: "
|
|
11730
|
+
type: "error" | "info" | "success" | "warning";
|
|
11437
11731
|
text: string;
|
|
11438
11732
|
id?: number | undefined;
|
|
11439
11733
|
}[] | undefined;
|
|
@@ -11456,11 +11750,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11456
11750
|
"warning"
|
|
11457
11751
|
]>;
|
|
11458
11752
|
}, "strip", z.ZodTypeAny, {
|
|
11459
|
-
type: "
|
|
11753
|
+
type: "error" | "info" | "success" | "warning";
|
|
11460
11754
|
text: string;
|
|
11461
11755
|
id?: number | undefined;
|
|
11462
11756
|
}, {
|
|
11463
|
-
type: "
|
|
11757
|
+
type: "error" | "info" | "success" | "warning";
|
|
11464
11758
|
text: string;
|
|
11465
11759
|
id?: number | undefined;
|
|
11466
11760
|
}>, "many">>;
|
|
@@ -11526,7 +11820,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11526
11820
|
order?: number | undefined;
|
|
11527
11821
|
hint?: string | undefined;
|
|
11528
11822
|
messages?: {
|
|
11529
|
-
type: "
|
|
11823
|
+
type: "error" | "info" | "success" | "warning";
|
|
11530
11824
|
text: string;
|
|
11531
11825
|
id?: number | undefined;
|
|
11532
11826
|
}[] | undefined;
|
|
@@ -11551,7 +11845,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11551
11845
|
visible?: boolean | undefined;
|
|
11552
11846
|
hint?: string | undefined;
|
|
11553
11847
|
messages?: {
|
|
11554
|
-
type: "
|
|
11848
|
+
type: "error" | "info" | "success" | "warning";
|
|
11555
11849
|
text: string;
|
|
11556
11850
|
id?: number | undefined;
|
|
11557
11851
|
}[] | undefined;
|
|
@@ -11574,11 +11868,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11574
11868
|
"warning"
|
|
11575
11869
|
]>;
|
|
11576
11870
|
}, "strip", z.ZodTypeAny, {
|
|
11577
|
-
type: "
|
|
11871
|
+
type: "error" | "info" | "success" | "warning";
|
|
11578
11872
|
text: string;
|
|
11579
11873
|
id?: number | undefined;
|
|
11580
11874
|
}, {
|
|
11581
|
-
type: "
|
|
11875
|
+
type: "error" | "info" | "success" | "warning";
|
|
11582
11876
|
text: string;
|
|
11583
11877
|
id?: number | undefined;
|
|
11584
11878
|
}>, "many">>;
|
|
@@ -11611,7 +11905,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11611
11905
|
order?: number | undefined;
|
|
11612
11906
|
hint?: string | undefined;
|
|
11613
11907
|
messages?: {
|
|
11614
|
-
type: "
|
|
11908
|
+
type: "error" | "info" | "success" | "warning";
|
|
11615
11909
|
text: string;
|
|
11616
11910
|
id?: number | undefined;
|
|
11617
11911
|
}[] | undefined;
|
|
@@ -11630,7 +11924,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11630
11924
|
visible?: boolean | undefined;
|
|
11631
11925
|
hint?: string | undefined;
|
|
11632
11926
|
messages?: {
|
|
11633
|
-
type: "
|
|
11927
|
+
type: "error" | "info" | "success" | "warning";
|
|
11634
11928
|
text: string;
|
|
11635
11929
|
id?: number | undefined;
|
|
11636
11930
|
}[] | undefined;
|
|
@@ -11653,11 +11947,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11653
11947
|
"warning"
|
|
11654
11948
|
]>;
|
|
11655
11949
|
}, "strip", z.ZodTypeAny, {
|
|
11656
|
-
type: "
|
|
11950
|
+
type: "error" | "info" | "success" | "warning";
|
|
11657
11951
|
text: string;
|
|
11658
11952
|
id?: number | undefined;
|
|
11659
11953
|
}, {
|
|
11660
|
-
type: "
|
|
11954
|
+
type: "error" | "info" | "success" | "warning";
|
|
11661
11955
|
text: string;
|
|
11662
11956
|
id?: number | undefined;
|
|
11663
11957
|
}>, "many">>;
|
|
@@ -11694,7 +11988,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11694
11988
|
order?: number | undefined;
|
|
11695
11989
|
hint?: string | undefined;
|
|
11696
11990
|
messages?: {
|
|
11697
|
-
type: "
|
|
11991
|
+
type: "error" | "info" | "success" | "warning";
|
|
11698
11992
|
text: string;
|
|
11699
11993
|
id?: number | undefined;
|
|
11700
11994
|
}[] | undefined;
|
|
@@ -11714,7 +12008,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11714
12008
|
visible?: boolean | undefined;
|
|
11715
12009
|
hint?: string | undefined;
|
|
11716
12010
|
messages?: {
|
|
11717
|
-
type: "
|
|
12011
|
+
type: "error" | "info" | "success" | "warning";
|
|
11718
12012
|
text: string;
|
|
11719
12013
|
id?: number | undefined;
|
|
11720
12014
|
}[] | undefined;
|
|
@@ -11737,11 +12031,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11737
12031
|
"warning"
|
|
11738
12032
|
]>;
|
|
11739
12033
|
}, "strip", z.ZodTypeAny, {
|
|
11740
|
-
type: "
|
|
12034
|
+
type: "error" | "info" | "success" | "warning";
|
|
11741
12035
|
text: string;
|
|
11742
12036
|
id?: number | undefined;
|
|
11743
12037
|
}, {
|
|
11744
|
-
type: "
|
|
12038
|
+
type: "error" | "info" | "success" | "warning";
|
|
11745
12039
|
text: string;
|
|
11746
12040
|
id?: number | undefined;
|
|
11747
12041
|
}>, "many">>;
|
|
@@ -11774,7 +12068,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11774
12068
|
order?: number | undefined;
|
|
11775
12069
|
hint?: string | undefined;
|
|
11776
12070
|
messages?: {
|
|
11777
|
-
type: "
|
|
12071
|
+
type: "error" | "info" | "success" | "warning";
|
|
11778
12072
|
text: string;
|
|
11779
12073
|
id?: number | undefined;
|
|
11780
12074
|
}[] | undefined;
|
|
@@ -11793,7 +12087,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11793
12087
|
visible?: boolean | undefined;
|
|
11794
12088
|
hint?: string | undefined;
|
|
11795
12089
|
messages?: {
|
|
11796
|
-
type: "
|
|
12090
|
+
type: "error" | "info" | "success" | "warning";
|
|
11797
12091
|
text: string;
|
|
11798
12092
|
id?: number | undefined;
|
|
11799
12093
|
}[] | undefined;
|
|
@@ -11816,11 +12110,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11816
12110
|
"warning"
|
|
11817
12111
|
]>;
|
|
11818
12112
|
}, "strip", z.ZodTypeAny, {
|
|
11819
|
-
type: "
|
|
12113
|
+
type: "error" | "info" | "success" | "warning";
|
|
11820
12114
|
text: string;
|
|
11821
12115
|
id?: number | undefined;
|
|
11822
12116
|
}, {
|
|
11823
|
-
type: "
|
|
12117
|
+
type: "error" | "info" | "success" | "warning";
|
|
11824
12118
|
text: string;
|
|
11825
12119
|
id?: number | undefined;
|
|
11826
12120
|
}>, "many">>;
|
|
@@ -11865,7 +12159,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11865
12159
|
order?: number | undefined;
|
|
11866
12160
|
hint?: string | undefined;
|
|
11867
12161
|
messages?: {
|
|
11868
|
-
type: "
|
|
12162
|
+
type: "error" | "info" | "success" | "warning";
|
|
11869
12163
|
text: string;
|
|
11870
12164
|
id?: number | undefined;
|
|
11871
12165
|
}[] | undefined;
|
|
@@ -11887,7 +12181,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11887
12181
|
visible?: boolean | undefined;
|
|
11888
12182
|
hint?: string | undefined;
|
|
11889
12183
|
messages?: {
|
|
11890
|
-
type: "
|
|
12184
|
+
type: "error" | "info" | "success" | "warning";
|
|
11891
12185
|
text: string;
|
|
11892
12186
|
id?: number | undefined;
|
|
11893
12187
|
}[] | undefined;
|
|
@@ -11910,11 +12204,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
11910
12204
|
"warning"
|
|
11911
12205
|
]>;
|
|
11912
12206
|
}, "strip", z.ZodTypeAny, {
|
|
11913
|
-
type: "
|
|
12207
|
+
type: "error" | "info" | "success" | "warning";
|
|
11914
12208
|
text: string;
|
|
11915
12209
|
id?: number | undefined;
|
|
11916
12210
|
}, {
|
|
11917
|
-
type: "
|
|
12211
|
+
type: "error" | "info" | "success" | "warning";
|
|
11918
12212
|
text: string;
|
|
11919
12213
|
id?: number | undefined;
|
|
11920
12214
|
}>, "many">>;
|
|
@@ -11959,7 +12253,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11959
12253
|
order?: number | undefined;
|
|
11960
12254
|
hint?: string | undefined;
|
|
11961
12255
|
messages?: {
|
|
11962
|
-
type: "
|
|
12256
|
+
type: "error" | "info" | "success" | "warning";
|
|
11963
12257
|
text: string;
|
|
11964
12258
|
id?: number | undefined;
|
|
11965
12259
|
}[] | undefined;
|
|
@@ -11981,7 +12275,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
11981
12275
|
visible?: boolean | undefined;
|
|
11982
12276
|
hint?: string | undefined;
|
|
11983
12277
|
messages?: {
|
|
11984
|
-
type: "
|
|
12278
|
+
type: "error" | "info" | "success" | "warning";
|
|
11985
12279
|
text: string;
|
|
11986
12280
|
id?: number | undefined;
|
|
11987
12281
|
}[] | undefined;
|
|
@@ -12004,11 +12298,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
12004
12298
|
"warning"
|
|
12005
12299
|
]>;
|
|
12006
12300
|
}, "strip", z.ZodTypeAny, {
|
|
12007
|
-
type: "
|
|
12301
|
+
type: "error" | "info" | "success" | "warning";
|
|
12008
12302
|
text: string;
|
|
12009
12303
|
id?: number | undefined;
|
|
12010
12304
|
}, {
|
|
12011
|
-
type: "
|
|
12305
|
+
type: "error" | "info" | "success" | "warning";
|
|
12012
12306
|
text: string;
|
|
12013
12307
|
id?: number | undefined;
|
|
12014
12308
|
}>, "many">>;
|
|
@@ -12041,7 +12335,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12041
12335
|
order?: number | undefined;
|
|
12042
12336
|
hint?: string | undefined;
|
|
12043
12337
|
messages?: {
|
|
12044
|
-
type: "
|
|
12338
|
+
type: "error" | "info" | "success" | "warning";
|
|
12045
12339
|
text: string;
|
|
12046
12340
|
id?: number | undefined;
|
|
12047
12341
|
}[] | undefined;
|
|
@@ -12060,7 +12354,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12060
12354
|
visible?: boolean | undefined;
|
|
12061
12355
|
hint?: string | undefined;
|
|
12062
12356
|
messages?: {
|
|
12063
|
-
type: "
|
|
12357
|
+
type: "error" | "info" | "success" | "warning";
|
|
12064
12358
|
text: string;
|
|
12065
12359
|
id?: number | undefined;
|
|
12066
12360
|
}[] | undefined;
|
|
@@ -12083,11 +12377,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
12083
12377
|
"warning"
|
|
12084
12378
|
]>;
|
|
12085
12379
|
}, "strip", z.ZodTypeAny, {
|
|
12086
|
-
type: "
|
|
12380
|
+
type: "error" | "info" | "success" | "warning";
|
|
12087
12381
|
text: string;
|
|
12088
12382
|
id?: number | undefined;
|
|
12089
12383
|
}, {
|
|
12090
|
-
type: "
|
|
12384
|
+
type: "error" | "info" | "success" | "warning";
|
|
12091
12385
|
text: string;
|
|
12092
12386
|
id?: number | undefined;
|
|
12093
12387
|
}>, "many">>;
|
|
@@ -12156,7 +12450,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12156
12450
|
order?: number | undefined;
|
|
12157
12451
|
hint?: string | undefined;
|
|
12158
12452
|
messages?: {
|
|
12159
|
-
type: "
|
|
12453
|
+
type: "error" | "info" | "success" | "warning";
|
|
12160
12454
|
text: string;
|
|
12161
12455
|
id?: number | undefined;
|
|
12162
12456
|
}[] | undefined;
|
|
@@ -12181,7 +12475,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12181
12475
|
visible?: boolean | undefined;
|
|
12182
12476
|
hint?: string | undefined;
|
|
12183
12477
|
messages?: {
|
|
12184
|
-
type: "
|
|
12478
|
+
type: "error" | "info" | "success" | "warning";
|
|
12185
12479
|
text: string;
|
|
12186
12480
|
id?: number | undefined;
|
|
12187
12481
|
}[] | undefined;
|
|
@@ -12204,11 +12498,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
12204
12498
|
"warning"
|
|
12205
12499
|
]>;
|
|
12206
12500
|
}, "strip", z.ZodTypeAny, {
|
|
12207
|
-
type: "
|
|
12501
|
+
type: "error" | "info" | "success" | "warning";
|
|
12208
12502
|
text: string;
|
|
12209
12503
|
id?: number | undefined;
|
|
12210
12504
|
}, {
|
|
12211
|
-
type: "
|
|
12505
|
+
type: "error" | "info" | "success" | "warning";
|
|
12212
12506
|
text: string;
|
|
12213
12507
|
id?: number | undefined;
|
|
12214
12508
|
}>, "many">>;
|
|
@@ -12249,7 +12543,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12249
12543
|
order?: number | undefined;
|
|
12250
12544
|
hint?: string | undefined;
|
|
12251
12545
|
messages?: {
|
|
12252
|
-
type: "
|
|
12546
|
+
type: "error" | "info" | "success" | "warning";
|
|
12253
12547
|
text: string;
|
|
12254
12548
|
id?: number | undefined;
|
|
12255
12549
|
}[] | undefined;
|
|
@@ -12270,7 +12564,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12270
12564
|
visible?: boolean | undefined;
|
|
12271
12565
|
hint?: string | undefined;
|
|
12272
12566
|
messages?: {
|
|
12273
|
-
type: "
|
|
12567
|
+
type: "error" | "info" | "success" | "warning";
|
|
12274
12568
|
text: string;
|
|
12275
12569
|
id?: number | undefined;
|
|
12276
12570
|
}[] | undefined;
|
|
@@ -12293,11 +12587,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
12293
12587
|
"warning"
|
|
12294
12588
|
]>;
|
|
12295
12589
|
}, "strip", z.ZodTypeAny, {
|
|
12296
|
-
type: "
|
|
12590
|
+
type: "error" | "info" | "success" | "warning";
|
|
12297
12591
|
text: string;
|
|
12298
12592
|
id?: number | undefined;
|
|
12299
12593
|
}, {
|
|
12300
|
-
type: "
|
|
12594
|
+
type: "error" | "info" | "success" | "warning";
|
|
12301
12595
|
text: string;
|
|
12302
12596
|
id?: number | undefined;
|
|
12303
12597
|
}>, "many">>;
|
|
@@ -12338,7 +12632,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12338
12632
|
order?: number | undefined;
|
|
12339
12633
|
hint?: string | undefined;
|
|
12340
12634
|
messages?: {
|
|
12341
|
-
type: "
|
|
12635
|
+
type: "error" | "info" | "success" | "warning";
|
|
12342
12636
|
text: string;
|
|
12343
12637
|
id?: number | undefined;
|
|
12344
12638
|
}[] | undefined;
|
|
@@ -12359,7 +12653,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12359
12653
|
visible?: boolean | undefined;
|
|
12360
12654
|
hint?: string | undefined;
|
|
12361
12655
|
messages?: {
|
|
12362
|
-
type: "
|
|
12656
|
+
type: "error" | "info" | "success" | "warning";
|
|
12363
12657
|
text: string;
|
|
12364
12658
|
id?: number | undefined;
|
|
12365
12659
|
}[] | undefined;
|
|
@@ -12382,11 +12676,11 @@ declare const formSchema: z.ZodObject<{
|
|
|
12382
12676
|
"warning"
|
|
12383
12677
|
]>;
|
|
12384
12678
|
}, "strip", z.ZodTypeAny, {
|
|
12385
|
-
type: "
|
|
12679
|
+
type: "error" | "info" | "success" | "warning";
|
|
12386
12680
|
text: string;
|
|
12387
12681
|
id?: number | undefined;
|
|
12388
12682
|
}, {
|
|
12389
|
-
type: "
|
|
12683
|
+
type: "error" | "info" | "success" | "warning";
|
|
12390
12684
|
text: string;
|
|
12391
12685
|
id?: number | undefined;
|
|
12392
12686
|
}>, "many">>;
|
|
@@ -12419,7 +12713,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12419
12713
|
order?: number | undefined;
|
|
12420
12714
|
hint?: string | undefined;
|
|
12421
12715
|
messages?: {
|
|
12422
|
-
type: "
|
|
12716
|
+
type: "error" | "info" | "success" | "warning";
|
|
12423
12717
|
text: string;
|
|
12424
12718
|
id?: number | undefined;
|
|
12425
12719
|
}[] | undefined;
|
|
@@ -12438,7 +12732,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12438
12732
|
visible?: boolean | undefined;
|
|
12439
12733
|
hint?: string | undefined;
|
|
12440
12734
|
messages?: {
|
|
12441
|
-
type: "
|
|
12735
|
+
type: "error" | "info" | "success" | "warning";
|
|
12442
12736
|
text: string;
|
|
12443
12737
|
id?: number | undefined;
|
|
12444
12738
|
}[] | undefined;
|
|
@@ -12577,7 +12871,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12577
12871
|
order?: number | undefined;
|
|
12578
12872
|
hint?: string | undefined;
|
|
12579
12873
|
messages?: {
|
|
12580
|
-
type: "
|
|
12874
|
+
type: "error" | "info" | "success" | "warning";
|
|
12581
12875
|
text: string;
|
|
12582
12876
|
id?: number | undefined;
|
|
12583
12877
|
}[] | undefined;
|
|
@@ -12601,7 +12895,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12601
12895
|
order?: number | undefined;
|
|
12602
12896
|
hint?: string | undefined;
|
|
12603
12897
|
messages?: {
|
|
12604
|
-
type: "
|
|
12898
|
+
type: "error" | "info" | "success" | "warning";
|
|
12605
12899
|
text: string;
|
|
12606
12900
|
id?: number | undefined;
|
|
12607
12901
|
}[] | undefined;
|
|
@@ -12625,7 +12919,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12625
12919
|
order?: number | undefined;
|
|
12626
12920
|
hint?: string | undefined;
|
|
12627
12921
|
messages?: {
|
|
12628
|
-
type: "
|
|
12922
|
+
type: "error" | "info" | "success" | "warning";
|
|
12629
12923
|
text: string;
|
|
12630
12924
|
id?: number | undefined;
|
|
12631
12925
|
}[] | undefined;
|
|
@@ -12646,7 +12940,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12646
12940
|
order?: number | undefined;
|
|
12647
12941
|
hint?: string | undefined;
|
|
12648
12942
|
messages?: {
|
|
12649
|
-
type: "
|
|
12943
|
+
type: "error" | "info" | "success" | "warning";
|
|
12650
12944
|
text: string;
|
|
12651
12945
|
id?: number | undefined;
|
|
12652
12946
|
}[] | undefined;
|
|
@@ -12667,7 +12961,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12667
12961
|
order?: number | undefined;
|
|
12668
12962
|
hint?: string | undefined;
|
|
12669
12963
|
messages?: {
|
|
12670
|
-
type: "
|
|
12964
|
+
type: "error" | "info" | "success" | "warning";
|
|
12671
12965
|
text: string;
|
|
12672
12966
|
id?: number | undefined;
|
|
12673
12967
|
}[] | undefined;
|
|
@@ -12692,7 +12986,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12692
12986
|
order?: number | undefined;
|
|
12693
12987
|
hint?: string | undefined;
|
|
12694
12988
|
messages?: {
|
|
12695
|
-
type: "
|
|
12989
|
+
type: "error" | "info" | "success" | "warning";
|
|
12696
12990
|
text: string;
|
|
12697
12991
|
id?: number | undefined;
|
|
12698
12992
|
}[] | undefined;
|
|
@@ -12711,7 +13005,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12711
13005
|
order?: number | undefined;
|
|
12712
13006
|
hint?: string | undefined;
|
|
12713
13007
|
messages?: {
|
|
12714
|
-
type: "
|
|
13008
|
+
type: "error" | "info" | "success" | "warning";
|
|
12715
13009
|
text: string;
|
|
12716
13010
|
id?: number | undefined;
|
|
12717
13011
|
}[] | undefined;
|
|
@@ -12731,7 +13025,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12731
13025
|
order?: number | undefined;
|
|
12732
13026
|
hint?: string | undefined;
|
|
12733
13027
|
messages?: {
|
|
12734
|
-
type: "
|
|
13028
|
+
type: "error" | "info" | "success" | "warning";
|
|
12735
13029
|
text: string;
|
|
12736
13030
|
id?: number | undefined;
|
|
12737
13031
|
}[] | undefined;
|
|
@@ -12750,7 +13044,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12750
13044
|
order?: number | undefined;
|
|
12751
13045
|
hint?: string | undefined;
|
|
12752
13046
|
messages?: {
|
|
12753
|
-
type: "
|
|
13047
|
+
type: "error" | "info" | "success" | "warning";
|
|
12754
13048
|
text: string;
|
|
12755
13049
|
id?: number | undefined;
|
|
12756
13050
|
}[] | undefined;
|
|
@@ -12772,7 +13066,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12772
13066
|
order?: number | undefined;
|
|
12773
13067
|
hint?: string | undefined;
|
|
12774
13068
|
messages?: {
|
|
12775
|
-
type: "
|
|
13069
|
+
type: "error" | "info" | "success" | "warning";
|
|
12776
13070
|
text: string;
|
|
12777
13071
|
id?: number | undefined;
|
|
12778
13072
|
}[] | undefined;
|
|
@@ -12794,7 +13088,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12794
13088
|
order?: number | undefined;
|
|
12795
13089
|
hint?: string | undefined;
|
|
12796
13090
|
messages?: {
|
|
12797
|
-
type: "
|
|
13091
|
+
type: "error" | "info" | "success" | "warning";
|
|
12798
13092
|
text: string;
|
|
12799
13093
|
id?: number | undefined;
|
|
12800
13094
|
}[] | undefined;
|
|
@@ -12813,7 +13107,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12813
13107
|
order?: number | undefined;
|
|
12814
13108
|
hint?: string | undefined;
|
|
12815
13109
|
messages?: {
|
|
12816
|
-
type: "
|
|
13110
|
+
type: "error" | "info" | "success" | "warning";
|
|
12817
13111
|
text: string;
|
|
12818
13112
|
id?: number | undefined;
|
|
12819
13113
|
}[] | undefined;
|
|
@@ -12838,7 +13132,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12838
13132
|
order?: number | undefined;
|
|
12839
13133
|
hint?: string | undefined;
|
|
12840
13134
|
messages?: {
|
|
12841
|
-
type: "
|
|
13135
|
+
type: "error" | "info" | "success" | "warning";
|
|
12842
13136
|
text: string;
|
|
12843
13137
|
id?: number | undefined;
|
|
12844
13138
|
}[] | undefined;
|
|
@@ -12859,7 +13153,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12859
13153
|
order?: number | undefined;
|
|
12860
13154
|
hint?: string | undefined;
|
|
12861
13155
|
messages?: {
|
|
12862
|
-
type: "
|
|
13156
|
+
type: "error" | "info" | "success" | "warning";
|
|
12863
13157
|
text: string;
|
|
12864
13158
|
id?: number | undefined;
|
|
12865
13159
|
}[] | undefined;
|
|
@@ -12880,7 +13174,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12880
13174
|
order?: number | undefined;
|
|
12881
13175
|
hint?: string | undefined;
|
|
12882
13176
|
messages?: {
|
|
12883
|
-
type: "
|
|
13177
|
+
type: "error" | "info" | "success" | "warning";
|
|
12884
13178
|
text: string;
|
|
12885
13179
|
id?: number | undefined;
|
|
12886
13180
|
}[] | undefined;
|
|
@@ -12899,7 +13193,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12899
13193
|
order?: number | undefined;
|
|
12900
13194
|
hint?: string | undefined;
|
|
12901
13195
|
messages?: {
|
|
12902
|
-
type: "
|
|
13196
|
+
type: "error" | "info" | "success" | "warning";
|
|
12903
13197
|
text: string;
|
|
12904
13198
|
id?: number | undefined;
|
|
12905
13199
|
}[] | undefined;
|
|
@@ -12918,7 +13212,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
12918
13212
|
order?: number | undefined;
|
|
12919
13213
|
hint?: string | undefined;
|
|
12920
13214
|
messages?: {
|
|
12921
|
-
type: "
|
|
13215
|
+
type: "error" | "info" | "success" | "warning";
|
|
12922
13216
|
text: string;
|
|
12923
13217
|
id?: number | undefined;
|
|
12924
13218
|
}[] | undefined;
|
|
@@ -13055,7 +13349,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13055
13349
|
visible?: boolean | undefined;
|
|
13056
13350
|
hint?: string | undefined;
|
|
13057
13351
|
messages?: {
|
|
13058
|
-
type: "
|
|
13352
|
+
type: "error" | "info" | "success" | "warning";
|
|
13059
13353
|
text: string;
|
|
13060
13354
|
id?: number | undefined;
|
|
13061
13355
|
}[] | undefined;
|
|
@@ -13079,7 +13373,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13079
13373
|
visible?: boolean | undefined;
|
|
13080
13374
|
hint?: string | undefined;
|
|
13081
13375
|
messages?: {
|
|
13082
|
-
type: "
|
|
13376
|
+
type: "error" | "info" | "success" | "warning";
|
|
13083
13377
|
text: string;
|
|
13084
13378
|
id?: number | undefined;
|
|
13085
13379
|
}[] | undefined;
|
|
@@ -13103,7 +13397,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13103
13397
|
visible?: boolean | undefined;
|
|
13104
13398
|
hint?: string | undefined;
|
|
13105
13399
|
messages?: {
|
|
13106
|
-
type: "
|
|
13400
|
+
type: "error" | "info" | "success" | "warning";
|
|
13107
13401
|
text: string;
|
|
13108
13402
|
id?: number | undefined;
|
|
13109
13403
|
}[] | undefined;
|
|
@@ -13124,7 +13418,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13124
13418
|
visible?: boolean | undefined;
|
|
13125
13419
|
hint?: string | undefined;
|
|
13126
13420
|
messages?: {
|
|
13127
|
-
type: "
|
|
13421
|
+
type: "error" | "info" | "success" | "warning";
|
|
13128
13422
|
text: string;
|
|
13129
13423
|
id?: number | undefined;
|
|
13130
13424
|
}[] | undefined;
|
|
@@ -13145,7 +13439,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13145
13439
|
visible?: boolean | undefined;
|
|
13146
13440
|
hint?: string | undefined;
|
|
13147
13441
|
messages?: {
|
|
13148
|
-
type: "
|
|
13442
|
+
type: "error" | "info" | "success" | "warning";
|
|
13149
13443
|
text: string;
|
|
13150
13444
|
id?: number | undefined;
|
|
13151
13445
|
}[] | undefined;
|
|
@@ -13170,7 +13464,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13170
13464
|
visible?: boolean | undefined;
|
|
13171
13465
|
hint?: string | undefined;
|
|
13172
13466
|
messages?: {
|
|
13173
|
-
type: "
|
|
13467
|
+
type: "error" | "info" | "success" | "warning";
|
|
13174
13468
|
text: string;
|
|
13175
13469
|
id?: number | undefined;
|
|
13176
13470
|
}[] | undefined;
|
|
@@ -13189,7 +13483,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13189
13483
|
visible?: boolean | undefined;
|
|
13190
13484
|
hint?: string | undefined;
|
|
13191
13485
|
messages?: {
|
|
13192
|
-
type: "
|
|
13486
|
+
type: "error" | "info" | "success" | "warning";
|
|
13193
13487
|
text: string;
|
|
13194
13488
|
id?: number | undefined;
|
|
13195
13489
|
}[] | undefined;
|
|
@@ -13209,7 +13503,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13209
13503
|
visible?: boolean | undefined;
|
|
13210
13504
|
hint?: string | undefined;
|
|
13211
13505
|
messages?: {
|
|
13212
|
-
type: "
|
|
13506
|
+
type: "error" | "info" | "success" | "warning";
|
|
13213
13507
|
text: string;
|
|
13214
13508
|
id?: number | undefined;
|
|
13215
13509
|
}[] | undefined;
|
|
@@ -13228,7 +13522,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13228
13522
|
visible?: boolean | undefined;
|
|
13229
13523
|
hint?: string | undefined;
|
|
13230
13524
|
messages?: {
|
|
13231
|
-
type: "
|
|
13525
|
+
type: "error" | "info" | "success" | "warning";
|
|
13232
13526
|
text: string;
|
|
13233
13527
|
id?: number | undefined;
|
|
13234
13528
|
}[] | undefined;
|
|
@@ -13250,7 +13544,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13250
13544
|
visible?: boolean | undefined;
|
|
13251
13545
|
hint?: string | undefined;
|
|
13252
13546
|
messages?: {
|
|
13253
|
-
type: "
|
|
13547
|
+
type: "error" | "info" | "success" | "warning";
|
|
13254
13548
|
text: string;
|
|
13255
13549
|
id?: number | undefined;
|
|
13256
13550
|
}[] | undefined;
|
|
@@ -13272,7 +13566,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13272
13566
|
visible?: boolean | undefined;
|
|
13273
13567
|
hint?: string | undefined;
|
|
13274
13568
|
messages?: {
|
|
13275
|
-
type: "
|
|
13569
|
+
type: "error" | "info" | "success" | "warning";
|
|
13276
13570
|
text: string;
|
|
13277
13571
|
id?: number | undefined;
|
|
13278
13572
|
}[] | undefined;
|
|
@@ -13291,7 +13585,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13291
13585
|
visible?: boolean | undefined;
|
|
13292
13586
|
hint?: string | undefined;
|
|
13293
13587
|
messages?: {
|
|
13294
|
-
type: "
|
|
13588
|
+
type: "error" | "info" | "success" | "warning";
|
|
13295
13589
|
text: string;
|
|
13296
13590
|
id?: number | undefined;
|
|
13297
13591
|
}[] | undefined;
|
|
@@ -13316,7 +13610,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13316
13610
|
visible?: boolean | undefined;
|
|
13317
13611
|
hint?: string | undefined;
|
|
13318
13612
|
messages?: {
|
|
13319
|
-
type: "
|
|
13613
|
+
type: "error" | "info" | "success" | "warning";
|
|
13320
13614
|
text: string;
|
|
13321
13615
|
id?: number | undefined;
|
|
13322
13616
|
}[] | undefined;
|
|
@@ -13337,7 +13631,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13337
13631
|
visible?: boolean | undefined;
|
|
13338
13632
|
hint?: string | undefined;
|
|
13339
13633
|
messages?: {
|
|
13340
|
-
type: "
|
|
13634
|
+
type: "error" | "info" | "success" | "warning";
|
|
13341
13635
|
text: string;
|
|
13342
13636
|
id?: number | undefined;
|
|
13343
13637
|
}[] | undefined;
|
|
@@ -13358,7 +13652,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13358
13652
|
visible?: boolean | undefined;
|
|
13359
13653
|
hint?: string | undefined;
|
|
13360
13654
|
messages?: {
|
|
13361
|
-
type: "
|
|
13655
|
+
type: "error" | "info" | "success" | "warning";
|
|
13362
13656
|
text: string;
|
|
13363
13657
|
id?: number | undefined;
|
|
13364
13658
|
}[] | undefined;
|
|
@@ -13377,7 +13671,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13377
13671
|
visible?: boolean | undefined;
|
|
13378
13672
|
hint?: string | undefined;
|
|
13379
13673
|
messages?: {
|
|
13380
|
-
type: "
|
|
13674
|
+
type: "error" | "info" | "success" | "warning";
|
|
13381
13675
|
text: string;
|
|
13382
13676
|
id?: number | undefined;
|
|
13383
13677
|
}[] | undefined;
|
|
@@ -13396,7 +13690,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13396
13690
|
visible?: boolean | undefined;
|
|
13397
13691
|
hint?: string | undefined;
|
|
13398
13692
|
messages?: {
|
|
13399
|
-
type: "
|
|
13693
|
+
type: "error" | "info" | "success" | "warning";
|
|
13400
13694
|
text: string;
|
|
13401
13695
|
id?: number | undefined;
|
|
13402
13696
|
}[] | undefined;
|
|
@@ -13537,7 +13831,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13537
13831
|
order?: number | undefined;
|
|
13538
13832
|
hint?: string | undefined;
|
|
13539
13833
|
messages?: {
|
|
13540
|
-
type: "
|
|
13834
|
+
type: "error" | "info" | "success" | "warning";
|
|
13541
13835
|
text: string;
|
|
13542
13836
|
id?: number | undefined;
|
|
13543
13837
|
}[] | undefined;
|
|
@@ -13561,7 +13855,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13561
13855
|
order?: number | undefined;
|
|
13562
13856
|
hint?: string | undefined;
|
|
13563
13857
|
messages?: {
|
|
13564
|
-
type: "
|
|
13858
|
+
type: "error" | "info" | "success" | "warning";
|
|
13565
13859
|
text: string;
|
|
13566
13860
|
id?: number | undefined;
|
|
13567
13861
|
}[] | undefined;
|
|
@@ -13585,7 +13879,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13585
13879
|
order?: number | undefined;
|
|
13586
13880
|
hint?: string | undefined;
|
|
13587
13881
|
messages?: {
|
|
13588
|
-
type: "
|
|
13882
|
+
type: "error" | "info" | "success" | "warning";
|
|
13589
13883
|
text: string;
|
|
13590
13884
|
id?: number | undefined;
|
|
13591
13885
|
}[] | undefined;
|
|
@@ -13606,7 +13900,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13606
13900
|
order?: number | undefined;
|
|
13607
13901
|
hint?: string | undefined;
|
|
13608
13902
|
messages?: {
|
|
13609
|
-
type: "
|
|
13903
|
+
type: "error" | "info" | "success" | "warning";
|
|
13610
13904
|
text: string;
|
|
13611
13905
|
id?: number | undefined;
|
|
13612
13906
|
}[] | undefined;
|
|
@@ -13627,7 +13921,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13627
13921
|
order?: number | undefined;
|
|
13628
13922
|
hint?: string | undefined;
|
|
13629
13923
|
messages?: {
|
|
13630
|
-
type: "
|
|
13924
|
+
type: "error" | "info" | "success" | "warning";
|
|
13631
13925
|
text: string;
|
|
13632
13926
|
id?: number | undefined;
|
|
13633
13927
|
}[] | undefined;
|
|
@@ -13652,7 +13946,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13652
13946
|
order?: number | undefined;
|
|
13653
13947
|
hint?: string | undefined;
|
|
13654
13948
|
messages?: {
|
|
13655
|
-
type: "
|
|
13949
|
+
type: "error" | "info" | "success" | "warning";
|
|
13656
13950
|
text: string;
|
|
13657
13951
|
id?: number | undefined;
|
|
13658
13952
|
}[] | undefined;
|
|
@@ -13671,7 +13965,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13671
13965
|
order?: number | undefined;
|
|
13672
13966
|
hint?: string | undefined;
|
|
13673
13967
|
messages?: {
|
|
13674
|
-
type: "
|
|
13968
|
+
type: "error" | "info" | "success" | "warning";
|
|
13675
13969
|
text: string;
|
|
13676
13970
|
id?: number | undefined;
|
|
13677
13971
|
}[] | undefined;
|
|
@@ -13691,7 +13985,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13691
13985
|
order?: number | undefined;
|
|
13692
13986
|
hint?: string | undefined;
|
|
13693
13987
|
messages?: {
|
|
13694
|
-
type: "
|
|
13988
|
+
type: "error" | "info" | "success" | "warning";
|
|
13695
13989
|
text: string;
|
|
13696
13990
|
id?: number | undefined;
|
|
13697
13991
|
}[] | undefined;
|
|
@@ -13710,7 +14004,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13710
14004
|
order?: number | undefined;
|
|
13711
14005
|
hint?: string | undefined;
|
|
13712
14006
|
messages?: {
|
|
13713
|
-
type: "
|
|
14007
|
+
type: "error" | "info" | "success" | "warning";
|
|
13714
14008
|
text: string;
|
|
13715
14009
|
id?: number | undefined;
|
|
13716
14010
|
}[] | undefined;
|
|
@@ -13732,7 +14026,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13732
14026
|
order?: number | undefined;
|
|
13733
14027
|
hint?: string | undefined;
|
|
13734
14028
|
messages?: {
|
|
13735
|
-
type: "
|
|
14029
|
+
type: "error" | "info" | "success" | "warning";
|
|
13736
14030
|
text: string;
|
|
13737
14031
|
id?: number | undefined;
|
|
13738
14032
|
}[] | undefined;
|
|
@@ -13754,7 +14048,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13754
14048
|
order?: number | undefined;
|
|
13755
14049
|
hint?: string | undefined;
|
|
13756
14050
|
messages?: {
|
|
13757
|
-
type: "
|
|
14051
|
+
type: "error" | "info" | "success" | "warning";
|
|
13758
14052
|
text: string;
|
|
13759
14053
|
id?: number | undefined;
|
|
13760
14054
|
}[] | undefined;
|
|
@@ -13773,7 +14067,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13773
14067
|
order?: number | undefined;
|
|
13774
14068
|
hint?: string | undefined;
|
|
13775
14069
|
messages?: {
|
|
13776
|
-
type: "
|
|
14070
|
+
type: "error" | "info" | "success" | "warning";
|
|
13777
14071
|
text: string;
|
|
13778
14072
|
id?: number | undefined;
|
|
13779
14073
|
}[] | undefined;
|
|
@@ -13798,7 +14092,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13798
14092
|
order?: number | undefined;
|
|
13799
14093
|
hint?: string | undefined;
|
|
13800
14094
|
messages?: {
|
|
13801
|
-
type: "
|
|
14095
|
+
type: "error" | "info" | "success" | "warning";
|
|
13802
14096
|
text: string;
|
|
13803
14097
|
id?: number | undefined;
|
|
13804
14098
|
}[] | undefined;
|
|
@@ -13819,7 +14113,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13819
14113
|
order?: number | undefined;
|
|
13820
14114
|
hint?: string | undefined;
|
|
13821
14115
|
messages?: {
|
|
13822
|
-
type: "
|
|
14116
|
+
type: "error" | "info" | "success" | "warning";
|
|
13823
14117
|
text: string;
|
|
13824
14118
|
id?: number | undefined;
|
|
13825
14119
|
}[] | undefined;
|
|
@@ -13840,7 +14134,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13840
14134
|
order?: number | undefined;
|
|
13841
14135
|
hint?: string | undefined;
|
|
13842
14136
|
messages?: {
|
|
13843
|
-
type: "
|
|
14137
|
+
type: "error" | "info" | "success" | "warning";
|
|
13844
14138
|
text: string;
|
|
13845
14139
|
id?: number | undefined;
|
|
13846
14140
|
}[] | undefined;
|
|
@@ -13859,7 +14153,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13859
14153
|
order?: number | undefined;
|
|
13860
14154
|
hint?: string | undefined;
|
|
13861
14155
|
messages?: {
|
|
13862
|
-
type: "
|
|
14156
|
+
type: "error" | "info" | "success" | "warning";
|
|
13863
14157
|
text: string;
|
|
13864
14158
|
id?: number | undefined;
|
|
13865
14159
|
}[] | undefined;
|
|
@@ -13878,7 +14172,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
13878
14172
|
order?: number | undefined;
|
|
13879
14173
|
hint?: string | undefined;
|
|
13880
14174
|
messages?: {
|
|
13881
|
-
type: "
|
|
14175
|
+
type: "error" | "info" | "success" | "warning";
|
|
13882
14176
|
text: string;
|
|
13883
14177
|
id?: number | undefined;
|
|
13884
14178
|
}[] | undefined;
|
|
@@ -14024,7 +14318,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14024
14318
|
visible?: boolean | undefined;
|
|
14025
14319
|
hint?: string | undefined;
|
|
14026
14320
|
messages?: {
|
|
14027
|
-
type: "
|
|
14321
|
+
type: "error" | "info" | "success" | "warning";
|
|
14028
14322
|
text: string;
|
|
14029
14323
|
id?: number | undefined;
|
|
14030
14324
|
}[] | undefined;
|
|
@@ -14048,7 +14342,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14048
14342
|
visible?: boolean | undefined;
|
|
14049
14343
|
hint?: string | undefined;
|
|
14050
14344
|
messages?: {
|
|
14051
|
-
type: "
|
|
14345
|
+
type: "error" | "info" | "success" | "warning";
|
|
14052
14346
|
text: string;
|
|
14053
14347
|
id?: number | undefined;
|
|
14054
14348
|
}[] | undefined;
|
|
@@ -14072,7 +14366,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14072
14366
|
visible?: boolean | undefined;
|
|
14073
14367
|
hint?: string | undefined;
|
|
14074
14368
|
messages?: {
|
|
14075
|
-
type: "
|
|
14369
|
+
type: "error" | "info" | "success" | "warning";
|
|
14076
14370
|
text: string;
|
|
14077
14371
|
id?: number | undefined;
|
|
14078
14372
|
}[] | undefined;
|
|
@@ -14093,7 +14387,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14093
14387
|
visible?: boolean | undefined;
|
|
14094
14388
|
hint?: string | undefined;
|
|
14095
14389
|
messages?: {
|
|
14096
|
-
type: "
|
|
14390
|
+
type: "error" | "info" | "success" | "warning";
|
|
14097
14391
|
text: string;
|
|
14098
14392
|
id?: number | undefined;
|
|
14099
14393
|
}[] | undefined;
|
|
@@ -14114,7 +14408,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14114
14408
|
visible?: boolean | undefined;
|
|
14115
14409
|
hint?: string | undefined;
|
|
14116
14410
|
messages?: {
|
|
14117
|
-
type: "
|
|
14411
|
+
type: "error" | "info" | "success" | "warning";
|
|
14118
14412
|
text: string;
|
|
14119
14413
|
id?: number | undefined;
|
|
14120
14414
|
}[] | undefined;
|
|
@@ -14139,7 +14433,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14139
14433
|
visible?: boolean | undefined;
|
|
14140
14434
|
hint?: string | undefined;
|
|
14141
14435
|
messages?: {
|
|
14142
|
-
type: "
|
|
14436
|
+
type: "error" | "info" | "success" | "warning";
|
|
14143
14437
|
text: string;
|
|
14144
14438
|
id?: number | undefined;
|
|
14145
14439
|
}[] | undefined;
|
|
@@ -14158,7 +14452,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14158
14452
|
visible?: boolean | undefined;
|
|
14159
14453
|
hint?: string | undefined;
|
|
14160
14454
|
messages?: {
|
|
14161
|
-
type: "
|
|
14455
|
+
type: "error" | "info" | "success" | "warning";
|
|
14162
14456
|
text: string;
|
|
14163
14457
|
id?: number | undefined;
|
|
14164
14458
|
}[] | undefined;
|
|
@@ -14178,7 +14472,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14178
14472
|
visible?: boolean | undefined;
|
|
14179
14473
|
hint?: string | undefined;
|
|
14180
14474
|
messages?: {
|
|
14181
|
-
type: "
|
|
14475
|
+
type: "error" | "info" | "success" | "warning";
|
|
14182
14476
|
text: string;
|
|
14183
14477
|
id?: number | undefined;
|
|
14184
14478
|
}[] | undefined;
|
|
@@ -14197,7 +14491,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14197
14491
|
visible?: boolean | undefined;
|
|
14198
14492
|
hint?: string | undefined;
|
|
14199
14493
|
messages?: {
|
|
14200
|
-
type: "
|
|
14494
|
+
type: "error" | "info" | "success" | "warning";
|
|
14201
14495
|
text: string;
|
|
14202
14496
|
id?: number | undefined;
|
|
14203
14497
|
}[] | undefined;
|
|
@@ -14219,7 +14513,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14219
14513
|
visible?: boolean | undefined;
|
|
14220
14514
|
hint?: string | undefined;
|
|
14221
14515
|
messages?: {
|
|
14222
|
-
type: "
|
|
14516
|
+
type: "error" | "info" | "success" | "warning";
|
|
14223
14517
|
text: string;
|
|
14224
14518
|
id?: number | undefined;
|
|
14225
14519
|
}[] | undefined;
|
|
@@ -14241,7 +14535,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14241
14535
|
visible?: boolean | undefined;
|
|
14242
14536
|
hint?: string | undefined;
|
|
14243
14537
|
messages?: {
|
|
14244
|
-
type: "
|
|
14538
|
+
type: "error" | "info" | "success" | "warning";
|
|
14245
14539
|
text: string;
|
|
14246
14540
|
id?: number | undefined;
|
|
14247
14541
|
}[] | undefined;
|
|
@@ -14260,7 +14554,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14260
14554
|
visible?: boolean | undefined;
|
|
14261
14555
|
hint?: string | undefined;
|
|
14262
14556
|
messages?: {
|
|
14263
|
-
type: "
|
|
14557
|
+
type: "error" | "info" | "success" | "warning";
|
|
14264
14558
|
text: string;
|
|
14265
14559
|
id?: number | undefined;
|
|
14266
14560
|
}[] | undefined;
|
|
@@ -14285,7 +14579,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14285
14579
|
visible?: boolean | undefined;
|
|
14286
14580
|
hint?: string | undefined;
|
|
14287
14581
|
messages?: {
|
|
14288
|
-
type: "
|
|
14582
|
+
type: "error" | "info" | "success" | "warning";
|
|
14289
14583
|
text: string;
|
|
14290
14584
|
id?: number | undefined;
|
|
14291
14585
|
}[] | undefined;
|
|
@@ -14306,7 +14600,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14306
14600
|
visible?: boolean | undefined;
|
|
14307
14601
|
hint?: string | undefined;
|
|
14308
14602
|
messages?: {
|
|
14309
|
-
type: "
|
|
14603
|
+
type: "error" | "info" | "success" | "warning";
|
|
14310
14604
|
text: string;
|
|
14311
14605
|
id?: number | undefined;
|
|
14312
14606
|
}[] | undefined;
|
|
@@ -14327,7 +14621,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14327
14621
|
visible?: boolean | undefined;
|
|
14328
14622
|
hint?: string | undefined;
|
|
14329
14623
|
messages?: {
|
|
14330
|
-
type: "
|
|
14624
|
+
type: "error" | "info" | "success" | "warning";
|
|
14331
14625
|
text: string;
|
|
14332
14626
|
id?: number | undefined;
|
|
14333
14627
|
}[] | undefined;
|
|
@@ -14346,7 +14640,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14346
14640
|
visible?: boolean | undefined;
|
|
14347
14641
|
hint?: string | undefined;
|
|
14348
14642
|
messages?: {
|
|
14349
|
-
type: "
|
|
14643
|
+
type: "error" | "info" | "success" | "warning";
|
|
14350
14644
|
text: string;
|
|
14351
14645
|
id?: number | undefined;
|
|
14352
14646
|
}[] | undefined;
|
|
@@ -14365,7 +14659,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14365
14659
|
visible?: boolean | undefined;
|
|
14366
14660
|
hint?: string | undefined;
|
|
14367
14661
|
messages?: {
|
|
14368
|
-
type: "
|
|
14662
|
+
type: "error" | "info" | "success" | "warning";
|
|
14369
14663
|
text: string;
|
|
14370
14664
|
id?: number | undefined;
|
|
14371
14665
|
}[] | undefined;
|
|
@@ -14683,7 +14977,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14683
14977
|
order?: number | undefined;
|
|
14684
14978
|
hint?: string | undefined;
|
|
14685
14979
|
messages?: {
|
|
14686
|
-
type: "
|
|
14980
|
+
type: "error" | "info" | "success" | "warning";
|
|
14687
14981
|
text: string;
|
|
14688
14982
|
id?: number | undefined;
|
|
14689
14983
|
}[] | undefined;
|
|
@@ -14707,7 +15001,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14707
15001
|
order?: number | undefined;
|
|
14708
15002
|
hint?: string | undefined;
|
|
14709
15003
|
messages?: {
|
|
14710
|
-
type: "
|
|
15004
|
+
type: "error" | "info" | "success" | "warning";
|
|
14711
15005
|
text: string;
|
|
14712
15006
|
id?: number | undefined;
|
|
14713
15007
|
}[] | undefined;
|
|
@@ -14731,7 +15025,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14731
15025
|
order?: number | undefined;
|
|
14732
15026
|
hint?: string | undefined;
|
|
14733
15027
|
messages?: {
|
|
14734
|
-
type: "
|
|
15028
|
+
type: "error" | "info" | "success" | "warning";
|
|
14735
15029
|
text: string;
|
|
14736
15030
|
id?: number | undefined;
|
|
14737
15031
|
}[] | undefined;
|
|
@@ -14752,7 +15046,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14752
15046
|
order?: number | undefined;
|
|
14753
15047
|
hint?: string | undefined;
|
|
14754
15048
|
messages?: {
|
|
14755
|
-
type: "
|
|
15049
|
+
type: "error" | "info" | "success" | "warning";
|
|
14756
15050
|
text: string;
|
|
14757
15051
|
id?: number | undefined;
|
|
14758
15052
|
}[] | undefined;
|
|
@@ -14773,7 +15067,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14773
15067
|
order?: number | undefined;
|
|
14774
15068
|
hint?: string | undefined;
|
|
14775
15069
|
messages?: {
|
|
14776
|
-
type: "
|
|
15070
|
+
type: "error" | "info" | "success" | "warning";
|
|
14777
15071
|
text: string;
|
|
14778
15072
|
id?: number | undefined;
|
|
14779
15073
|
}[] | undefined;
|
|
@@ -14798,7 +15092,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14798
15092
|
order?: number | undefined;
|
|
14799
15093
|
hint?: string | undefined;
|
|
14800
15094
|
messages?: {
|
|
14801
|
-
type: "
|
|
15095
|
+
type: "error" | "info" | "success" | "warning";
|
|
14802
15096
|
text: string;
|
|
14803
15097
|
id?: number | undefined;
|
|
14804
15098
|
}[] | undefined;
|
|
@@ -14817,7 +15111,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14817
15111
|
order?: number | undefined;
|
|
14818
15112
|
hint?: string | undefined;
|
|
14819
15113
|
messages?: {
|
|
14820
|
-
type: "
|
|
15114
|
+
type: "error" | "info" | "success" | "warning";
|
|
14821
15115
|
text: string;
|
|
14822
15116
|
id?: number | undefined;
|
|
14823
15117
|
}[] | undefined;
|
|
@@ -14837,7 +15131,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14837
15131
|
order?: number | undefined;
|
|
14838
15132
|
hint?: string | undefined;
|
|
14839
15133
|
messages?: {
|
|
14840
|
-
type: "
|
|
15134
|
+
type: "error" | "info" | "success" | "warning";
|
|
14841
15135
|
text: string;
|
|
14842
15136
|
id?: number | undefined;
|
|
14843
15137
|
}[] | undefined;
|
|
@@ -14856,7 +15150,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14856
15150
|
order?: number | undefined;
|
|
14857
15151
|
hint?: string | undefined;
|
|
14858
15152
|
messages?: {
|
|
14859
|
-
type: "
|
|
15153
|
+
type: "error" | "info" | "success" | "warning";
|
|
14860
15154
|
text: string;
|
|
14861
15155
|
id?: number | undefined;
|
|
14862
15156
|
}[] | undefined;
|
|
@@ -14878,7 +15172,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14878
15172
|
order?: number | undefined;
|
|
14879
15173
|
hint?: string | undefined;
|
|
14880
15174
|
messages?: {
|
|
14881
|
-
type: "
|
|
15175
|
+
type: "error" | "info" | "success" | "warning";
|
|
14882
15176
|
text: string;
|
|
14883
15177
|
id?: number | undefined;
|
|
14884
15178
|
}[] | undefined;
|
|
@@ -14900,7 +15194,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14900
15194
|
order?: number | undefined;
|
|
14901
15195
|
hint?: string | undefined;
|
|
14902
15196
|
messages?: {
|
|
14903
|
-
type: "
|
|
15197
|
+
type: "error" | "info" | "success" | "warning";
|
|
14904
15198
|
text: string;
|
|
14905
15199
|
id?: number | undefined;
|
|
14906
15200
|
}[] | undefined;
|
|
@@ -14919,7 +15213,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14919
15213
|
order?: number | undefined;
|
|
14920
15214
|
hint?: string | undefined;
|
|
14921
15215
|
messages?: {
|
|
14922
|
-
type: "
|
|
15216
|
+
type: "error" | "info" | "success" | "warning";
|
|
14923
15217
|
text: string;
|
|
14924
15218
|
id?: number | undefined;
|
|
14925
15219
|
}[] | undefined;
|
|
@@ -14944,7 +15238,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14944
15238
|
order?: number | undefined;
|
|
14945
15239
|
hint?: string | undefined;
|
|
14946
15240
|
messages?: {
|
|
14947
|
-
type: "
|
|
15241
|
+
type: "error" | "info" | "success" | "warning";
|
|
14948
15242
|
text: string;
|
|
14949
15243
|
id?: number | undefined;
|
|
14950
15244
|
}[] | undefined;
|
|
@@ -14965,7 +15259,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14965
15259
|
order?: number | undefined;
|
|
14966
15260
|
hint?: string | undefined;
|
|
14967
15261
|
messages?: {
|
|
14968
|
-
type: "
|
|
15262
|
+
type: "error" | "info" | "success" | "warning";
|
|
14969
15263
|
text: string;
|
|
14970
15264
|
id?: number | undefined;
|
|
14971
15265
|
}[] | undefined;
|
|
@@ -14986,7 +15280,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
14986
15280
|
order?: number | undefined;
|
|
14987
15281
|
hint?: string | undefined;
|
|
14988
15282
|
messages?: {
|
|
14989
|
-
type: "
|
|
15283
|
+
type: "error" | "info" | "success" | "warning";
|
|
14990
15284
|
text: string;
|
|
14991
15285
|
id?: number | undefined;
|
|
14992
15286
|
}[] | undefined;
|
|
@@ -15005,7 +15299,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15005
15299
|
order?: number | undefined;
|
|
15006
15300
|
hint?: string | undefined;
|
|
15007
15301
|
messages?: {
|
|
15008
|
-
type: "
|
|
15302
|
+
type: "error" | "info" | "success" | "warning";
|
|
15009
15303
|
text: string;
|
|
15010
15304
|
id?: number | undefined;
|
|
15011
15305
|
}[] | undefined;
|
|
@@ -15024,7 +15318,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15024
15318
|
order?: number | undefined;
|
|
15025
15319
|
hint?: string | undefined;
|
|
15026
15320
|
messages?: {
|
|
15027
|
-
type: "
|
|
15321
|
+
type: "error" | "info" | "success" | "warning";
|
|
15028
15322
|
text: string;
|
|
15029
15323
|
id?: number | undefined;
|
|
15030
15324
|
}[] | undefined;
|
|
@@ -15246,7 +15540,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15246
15540
|
visible?: boolean | undefined;
|
|
15247
15541
|
hint?: string | undefined;
|
|
15248
15542
|
messages?: {
|
|
15249
|
-
type: "
|
|
15543
|
+
type: "error" | "info" | "success" | "warning";
|
|
15250
15544
|
text: string;
|
|
15251
15545
|
id?: number | undefined;
|
|
15252
15546
|
}[] | undefined;
|
|
@@ -15270,7 +15564,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15270
15564
|
visible?: boolean | undefined;
|
|
15271
15565
|
hint?: string | undefined;
|
|
15272
15566
|
messages?: {
|
|
15273
|
-
type: "
|
|
15567
|
+
type: "error" | "info" | "success" | "warning";
|
|
15274
15568
|
text: string;
|
|
15275
15569
|
id?: number | undefined;
|
|
15276
15570
|
}[] | undefined;
|
|
@@ -15294,7 +15588,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15294
15588
|
visible?: boolean | undefined;
|
|
15295
15589
|
hint?: string | undefined;
|
|
15296
15590
|
messages?: {
|
|
15297
|
-
type: "
|
|
15591
|
+
type: "error" | "info" | "success" | "warning";
|
|
15298
15592
|
text: string;
|
|
15299
15593
|
id?: number | undefined;
|
|
15300
15594
|
}[] | undefined;
|
|
@@ -15315,7 +15609,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15315
15609
|
visible?: boolean | undefined;
|
|
15316
15610
|
hint?: string | undefined;
|
|
15317
15611
|
messages?: {
|
|
15318
|
-
type: "
|
|
15612
|
+
type: "error" | "info" | "success" | "warning";
|
|
15319
15613
|
text: string;
|
|
15320
15614
|
id?: number | undefined;
|
|
15321
15615
|
}[] | undefined;
|
|
@@ -15336,7 +15630,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15336
15630
|
visible?: boolean | undefined;
|
|
15337
15631
|
hint?: string | undefined;
|
|
15338
15632
|
messages?: {
|
|
15339
|
-
type: "
|
|
15633
|
+
type: "error" | "info" | "success" | "warning";
|
|
15340
15634
|
text: string;
|
|
15341
15635
|
id?: number | undefined;
|
|
15342
15636
|
}[] | undefined;
|
|
@@ -15361,7 +15655,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15361
15655
|
visible?: boolean | undefined;
|
|
15362
15656
|
hint?: string | undefined;
|
|
15363
15657
|
messages?: {
|
|
15364
|
-
type: "
|
|
15658
|
+
type: "error" | "info" | "success" | "warning";
|
|
15365
15659
|
text: string;
|
|
15366
15660
|
id?: number | undefined;
|
|
15367
15661
|
}[] | undefined;
|
|
@@ -15380,7 +15674,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15380
15674
|
visible?: boolean | undefined;
|
|
15381
15675
|
hint?: string | undefined;
|
|
15382
15676
|
messages?: {
|
|
15383
|
-
type: "
|
|
15677
|
+
type: "error" | "info" | "success" | "warning";
|
|
15384
15678
|
text: string;
|
|
15385
15679
|
id?: number | undefined;
|
|
15386
15680
|
}[] | undefined;
|
|
@@ -15400,7 +15694,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15400
15694
|
visible?: boolean | undefined;
|
|
15401
15695
|
hint?: string | undefined;
|
|
15402
15696
|
messages?: {
|
|
15403
|
-
type: "
|
|
15697
|
+
type: "error" | "info" | "success" | "warning";
|
|
15404
15698
|
text: string;
|
|
15405
15699
|
id?: number | undefined;
|
|
15406
15700
|
}[] | undefined;
|
|
@@ -15419,7 +15713,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15419
15713
|
visible?: boolean | undefined;
|
|
15420
15714
|
hint?: string | undefined;
|
|
15421
15715
|
messages?: {
|
|
15422
|
-
type: "
|
|
15716
|
+
type: "error" | "info" | "success" | "warning";
|
|
15423
15717
|
text: string;
|
|
15424
15718
|
id?: number | undefined;
|
|
15425
15719
|
}[] | undefined;
|
|
@@ -15441,7 +15735,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15441
15735
|
visible?: boolean | undefined;
|
|
15442
15736
|
hint?: string | undefined;
|
|
15443
15737
|
messages?: {
|
|
15444
|
-
type: "
|
|
15738
|
+
type: "error" | "info" | "success" | "warning";
|
|
15445
15739
|
text: string;
|
|
15446
15740
|
id?: number | undefined;
|
|
15447
15741
|
}[] | undefined;
|
|
@@ -15463,7 +15757,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15463
15757
|
visible?: boolean | undefined;
|
|
15464
15758
|
hint?: string | undefined;
|
|
15465
15759
|
messages?: {
|
|
15466
|
-
type: "
|
|
15760
|
+
type: "error" | "info" | "success" | "warning";
|
|
15467
15761
|
text: string;
|
|
15468
15762
|
id?: number | undefined;
|
|
15469
15763
|
}[] | undefined;
|
|
@@ -15482,7 +15776,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15482
15776
|
visible?: boolean | undefined;
|
|
15483
15777
|
hint?: string | undefined;
|
|
15484
15778
|
messages?: {
|
|
15485
|
-
type: "
|
|
15779
|
+
type: "error" | "info" | "success" | "warning";
|
|
15486
15780
|
text: string;
|
|
15487
15781
|
id?: number | undefined;
|
|
15488
15782
|
}[] | undefined;
|
|
@@ -15507,7 +15801,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15507
15801
|
visible?: boolean | undefined;
|
|
15508
15802
|
hint?: string | undefined;
|
|
15509
15803
|
messages?: {
|
|
15510
|
-
type: "
|
|
15804
|
+
type: "error" | "info" | "success" | "warning";
|
|
15511
15805
|
text: string;
|
|
15512
15806
|
id?: number | undefined;
|
|
15513
15807
|
}[] | undefined;
|
|
@@ -15528,7 +15822,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15528
15822
|
visible?: boolean | undefined;
|
|
15529
15823
|
hint?: string | undefined;
|
|
15530
15824
|
messages?: {
|
|
15531
|
-
type: "
|
|
15825
|
+
type: "error" | "info" | "success" | "warning";
|
|
15532
15826
|
text: string;
|
|
15533
15827
|
id?: number | undefined;
|
|
15534
15828
|
}[] | undefined;
|
|
@@ -15549,7 +15843,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15549
15843
|
visible?: boolean | undefined;
|
|
15550
15844
|
hint?: string | undefined;
|
|
15551
15845
|
messages?: {
|
|
15552
|
-
type: "
|
|
15846
|
+
type: "error" | "info" | "success" | "warning";
|
|
15553
15847
|
text: string;
|
|
15554
15848
|
id?: number | undefined;
|
|
15555
15849
|
}[] | undefined;
|
|
@@ -15568,7 +15862,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15568
15862
|
visible?: boolean | undefined;
|
|
15569
15863
|
hint?: string | undefined;
|
|
15570
15864
|
messages?: {
|
|
15571
|
-
type: "
|
|
15865
|
+
type: "error" | "info" | "success" | "warning";
|
|
15572
15866
|
text: string;
|
|
15573
15867
|
id?: number | undefined;
|
|
15574
15868
|
}[] | undefined;
|
|
@@ -15587,7 +15881,7 @@ declare const formSchema: z.ZodObject<{
|
|
|
15587
15881
|
visible?: boolean | undefined;
|
|
15588
15882
|
hint?: string | undefined;
|
|
15589
15883
|
messages?: {
|
|
15590
|
-
type: "
|
|
15884
|
+
type: "error" | "info" | "success" | "warning";
|
|
15591
15885
|
text: string;
|
|
15592
15886
|
id?: number | undefined;
|
|
15593
15887
|
}[] | undefined;
|
|
@@ -15655,8 +15949,8 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
15655
15949
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15656
15950
|
}, "strip", z.ZodTypeAny, {
|
|
15657
15951
|
url: string;
|
|
15658
|
-
enabled: boolean;
|
|
15659
15952
|
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
15953
|
+
enabled: boolean;
|
|
15660
15954
|
synchronous: boolean;
|
|
15661
15955
|
metadata?: Record<string, unknown> | undefined;
|
|
15662
15956
|
priority?: number | undefined;
|
|
@@ -15697,8 +15991,8 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
15697
15991
|
*/
|
|
15698
15992
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15699
15993
|
}, "strip", z.ZodTypeAny, {
|
|
15700
|
-
enabled: boolean;
|
|
15701
15994
|
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
15995
|
+
enabled: boolean;
|
|
15702
15996
|
synchronous: boolean;
|
|
15703
15997
|
form_id: string;
|
|
15704
15998
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -15742,8 +16036,8 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
15742
16036
|
*/
|
|
15743
16037
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15744
16038
|
}, "strip", z.ZodTypeAny, {
|
|
15745
|
-
enabled: boolean;
|
|
15746
16039
|
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
16040
|
+
enabled: boolean;
|
|
15747
16041
|
synchronous: boolean;
|
|
15748
16042
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
15749
16043
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -15783,16 +16077,16 @@ declare const hookInsertSchema: z.ZodUnion<[
|
|
|
15783
16077
|
*/
|
|
15784
16078
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
15785
16079
|
}, "strip", z.ZodTypeAny, {
|
|
16080
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
15786
16081
|
code_id: string;
|
|
15787
16082
|
enabled: boolean;
|
|
15788
|
-
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
15789
16083
|
synchronous: boolean;
|
|
15790
16084
|
metadata?: Record<string, unknown> | undefined;
|
|
15791
16085
|
priority?: number | undefined;
|
|
15792
16086
|
hook_id?: string | undefined;
|
|
15793
16087
|
}, {
|
|
15794
|
-
code_id: string;
|
|
15795
16088
|
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
16089
|
+
code_id: string;
|
|
15796
16090
|
enabled?: boolean | undefined;
|
|
15797
16091
|
metadata?: Record<string, unknown> | undefined;
|
|
15798
16092
|
synchronous?: boolean | undefined;
|
|
@@ -15835,8 +16129,8 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
15835
16129
|
created_at: string;
|
|
15836
16130
|
updated_at: string;
|
|
15837
16131
|
url: string;
|
|
15838
|
-
enabled: boolean;
|
|
15839
16132
|
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "post-user-update" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
16133
|
+
enabled: boolean;
|
|
15840
16134
|
synchronous: boolean;
|
|
15841
16135
|
hook_id: string;
|
|
15842
16136
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -15883,8 +16177,8 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
15883
16177
|
}, "strip", z.ZodTypeAny, {
|
|
15884
16178
|
created_at: string;
|
|
15885
16179
|
updated_at: string;
|
|
15886
|
-
enabled: boolean;
|
|
15887
16180
|
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
16181
|
+
enabled: boolean;
|
|
15888
16182
|
synchronous: boolean;
|
|
15889
16183
|
hook_id: string;
|
|
15890
16184
|
form_id: string;
|
|
@@ -15934,8 +16228,8 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
15934
16228
|
}, "strip", z.ZodTypeAny, {
|
|
15935
16229
|
created_at: string;
|
|
15936
16230
|
updated_at: string;
|
|
15937
|
-
enabled: boolean;
|
|
15938
16231
|
trigger_id: "post-user-registration" | "post-user-login" | "post-user-update" | "credentials-exchange";
|
|
16232
|
+
enabled: boolean;
|
|
15939
16233
|
synchronous: boolean;
|
|
15940
16234
|
hook_id: string;
|
|
15941
16235
|
template_id: "ensure-username" | "set-preferred-username" | "account-linking";
|
|
@@ -15981,9 +16275,9 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
15981
16275
|
}, "strip", z.ZodTypeAny, {
|
|
15982
16276
|
created_at: string;
|
|
15983
16277
|
updated_at: string;
|
|
16278
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
15984
16279
|
code_id: string;
|
|
15985
16280
|
enabled: boolean;
|
|
15986
|
-
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
15987
16281
|
synchronous: boolean;
|
|
15988
16282
|
hook_id: string;
|
|
15989
16283
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -15991,8 +16285,8 @@ declare const hookSchema: z.ZodUnion<[
|
|
|
15991
16285
|
}, {
|
|
15992
16286
|
created_at: string;
|
|
15993
16287
|
updated_at: string;
|
|
15994
|
-
code_id: string;
|
|
15995
16288
|
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "credentials-exchange";
|
|
16289
|
+
code_id: string;
|
|
15996
16290
|
hook_id: string;
|
|
15997
16291
|
enabled?: boolean | undefined;
|
|
15998
16292
|
metadata?: Record<string, unknown> | undefined;
|
|
@@ -16218,6 +16512,62 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
16218
16512
|
ui_locales: z.ZodOptional<z.ZodString>;
|
|
16219
16513
|
max_age: z.ZodOptional<z.ZodNumber>;
|
|
16220
16514
|
acr_values: z.ZodOptional<z.ZodString>;
|
|
16515
|
+
claims: z.ZodOptional<z.ZodObject<{
|
|
16516
|
+
userinfo: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodUnion<[
|
|
16517
|
+
z.ZodNull,
|
|
16518
|
+
z.ZodObject<{
|
|
16519
|
+
essential: z.ZodOptional<z.ZodBoolean>;
|
|
16520
|
+
value: z.ZodOptional<z.ZodUnknown>;
|
|
16521
|
+
values: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
16522
|
+
}, "strip", z.ZodTypeAny, {
|
|
16523
|
+
value?: unknown;
|
|
16524
|
+
values?: unknown[] | undefined;
|
|
16525
|
+
essential?: boolean | undefined;
|
|
16526
|
+
}, {
|
|
16527
|
+
value?: unknown;
|
|
16528
|
+
values?: unknown[] | undefined;
|
|
16529
|
+
essential?: boolean | undefined;
|
|
16530
|
+
}>
|
|
16531
|
+
]>>>>;
|
|
16532
|
+
id_token: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodUnion<[
|
|
16533
|
+
z.ZodNull,
|
|
16534
|
+
z.ZodObject<{
|
|
16535
|
+
essential: z.ZodOptional<z.ZodBoolean>;
|
|
16536
|
+
value: z.ZodOptional<z.ZodUnknown>;
|
|
16537
|
+
values: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
16538
|
+
}, "strip", z.ZodTypeAny, {
|
|
16539
|
+
value?: unknown;
|
|
16540
|
+
values?: unknown[] | undefined;
|
|
16541
|
+
essential?: boolean | undefined;
|
|
16542
|
+
}, {
|
|
16543
|
+
value?: unknown;
|
|
16544
|
+
values?: unknown[] | undefined;
|
|
16545
|
+
essential?: boolean | undefined;
|
|
16546
|
+
}>
|
|
16547
|
+
]>>>>;
|
|
16548
|
+
}, "strip", z.ZodTypeAny, {
|
|
16549
|
+
id_token?: Record<string, {
|
|
16550
|
+
value?: unknown;
|
|
16551
|
+
values?: unknown[] | undefined;
|
|
16552
|
+
essential?: boolean | undefined;
|
|
16553
|
+
} | null> | undefined;
|
|
16554
|
+
userinfo?: Record<string, {
|
|
16555
|
+
value?: unknown;
|
|
16556
|
+
values?: unknown[] | undefined;
|
|
16557
|
+
essential?: boolean | undefined;
|
|
16558
|
+
} | null> | undefined;
|
|
16559
|
+
}, {
|
|
16560
|
+
id_token?: Record<string, {
|
|
16561
|
+
value?: unknown;
|
|
16562
|
+
values?: unknown[] | undefined;
|
|
16563
|
+
essential?: boolean | undefined;
|
|
16564
|
+
} | null> | undefined;
|
|
16565
|
+
userinfo?: Record<string, {
|
|
16566
|
+
value?: unknown;
|
|
16567
|
+
values?: unknown[] | undefined;
|
|
16568
|
+
essential?: boolean | undefined;
|
|
16569
|
+
} | null> | undefined;
|
|
16570
|
+
}>>;
|
|
16221
16571
|
vendor_id: z.ZodOptional<z.ZodString>;
|
|
16222
16572
|
}, "strip", z.ZodTypeAny, {
|
|
16223
16573
|
client_id: string;
|
|
@@ -16237,6 +16587,18 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
16237
16587
|
ui_locales?: string | undefined;
|
|
16238
16588
|
max_age?: number | undefined;
|
|
16239
16589
|
acr_values?: string | undefined;
|
|
16590
|
+
claims?: {
|
|
16591
|
+
id_token?: Record<string, {
|
|
16592
|
+
value?: unknown;
|
|
16593
|
+
values?: unknown[] | undefined;
|
|
16594
|
+
essential?: boolean | undefined;
|
|
16595
|
+
} | null> | undefined;
|
|
16596
|
+
userinfo?: Record<string, {
|
|
16597
|
+
value?: unknown;
|
|
16598
|
+
values?: unknown[] | undefined;
|
|
16599
|
+
essential?: boolean | undefined;
|
|
16600
|
+
} | null> | undefined;
|
|
16601
|
+
} | undefined;
|
|
16240
16602
|
vendor_id?: string | undefined;
|
|
16241
16603
|
}, {
|
|
16242
16604
|
client_id: string;
|
|
@@ -16256,6 +16618,18 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
16256
16618
|
ui_locales?: string | undefined;
|
|
16257
16619
|
max_age?: number | undefined;
|
|
16258
16620
|
acr_values?: string | undefined;
|
|
16621
|
+
claims?: {
|
|
16622
|
+
id_token?: Record<string, {
|
|
16623
|
+
value?: unknown;
|
|
16624
|
+
values?: unknown[] | undefined;
|
|
16625
|
+
essential?: boolean | undefined;
|
|
16626
|
+
} | null> | undefined;
|
|
16627
|
+
userinfo?: Record<string, {
|
|
16628
|
+
value?: unknown;
|
|
16629
|
+
values?: unknown[] | undefined;
|
|
16630
|
+
essential?: boolean | undefined;
|
|
16631
|
+
} | null> | undefined;
|
|
16632
|
+
} | undefined;
|
|
16259
16633
|
vendor_id?: string | undefined;
|
|
16260
16634
|
}>;
|
|
16261
16635
|
expires_at: z.ZodString;
|
|
@@ -16302,6 +16676,18 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
16302
16676
|
ui_locales?: string | undefined;
|
|
16303
16677
|
max_age?: number | undefined;
|
|
16304
16678
|
acr_values?: string | undefined;
|
|
16679
|
+
claims?: {
|
|
16680
|
+
id_token?: Record<string, {
|
|
16681
|
+
value?: unknown;
|
|
16682
|
+
values?: unknown[] | undefined;
|
|
16683
|
+
essential?: boolean | undefined;
|
|
16684
|
+
} | null> | undefined;
|
|
16685
|
+
userinfo?: Record<string, {
|
|
16686
|
+
value?: unknown;
|
|
16687
|
+
values?: unknown[] | undefined;
|
|
16688
|
+
essential?: boolean | undefined;
|
|
16689
|
+
} | null> | undefined;
|
|
16690
|
+
} | undefined;
|
|
16305
16691
|
vendor_id?: string | undefined;
|
|
16306
16692
|
};
|
|
16307
16693
|
ip?: string | undefined;
|
|
@@ -16340,6 +16726,18 @@ declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
16340
16726
|
ui_locales?: string | undefined;
|
|
16341
16727
|
max_age?: number | undefined;
|
|
16342
16728
|
acr_values?: string | undefined;
|
|
16729
|
+
claims?: {
|
|
16730
|
+
id_token?: Record<string, {
|
|
16731
|
+
value?: unknown;
|
|
16732
|
+
values?: unknown[] | undefined;
|
|
16733
|
+
essential?: boolean | undefined;
|
|
16734
|
+
} | null> | undefined;
|
|
16735
|
+
userinfo?: Record<string, {
|
|
16736
|
+
value?: unknown;
|
|
16737
|
+
values?: unknown[] | undefined;
|
|
16738
|
+
essential?: boolean | undefined;
|
|
16739
|
+
} | null> | undefined;
|
|
16740
|
+
} | undefined;
|
|
16343
16741
|
vendor_id?: string | undefined;
|
|
16344
16742
|
};
|
|
16345
16743
|
ip?: string | undefined;
|
|
@@ -16384,6 +16782,62 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
16384
16782
|
ui_locales: z.ZodOptional<z.ZodString>;
|
|
16385
16783
|
max_age: z.ZodOptional<z.ZodNumber>;
|
|
16386
16784
|
acr_values: z.ZodOptional<z.ZodString>;
|
|
16785
|
+
claims: z.ZodOptional<z.ZodObject<{
|
|
16786
|
+
userinfo: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodUnion<[
|
|
16787
|
+
z.ZodNull,
|
|
16788
|
+
z.ZodObject<{
|
|
16789
|
+
essential: z.ZodOptional<z.ZodBoolean>;
|
|
16790
|
+
value: z.ZodOptional<z.ZodUnknown>;
|
|
16791
|
+
values: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
16792
|
+
}, "strip", z.ZodTypeAny, {
|
|
16793
|
+
value?: unknown;
|
|
16794
|
+
values?: unknown[] | undefined;
|
|
16795
|
+
essential?: boolean | undefined;
|
|
16796
|
+
}, {
|
|
16797
|
+
value?: unknown;
|
|
16798
|
+
values?: unknown[] | undefined;
|
|
16799
|
+
essential?: boolean | undefined;
|
|
16800
|
+
}>
|
|
16801
|
+
]>>>>;
|
|
16802
|
+
id_token: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodNullable<z.ZodUnion<[
|
|
16803
|
+
z.ZodNull,
|
|
16804
|
+
z.ZodObject<{
|
|
16805
|
+
essential: z.ZodOptional<z.ZodBoolean>;
|
|
16806
|
+
value: z.ZodOptional<z.ZodUnknown>;
|
|
16807
|
+
values: z.ZodOptional<z.ZodArray<z.ZodUnknown, "many">>;
|
|
16808
|
+
}, "strip", z.ZodTypeAny, {
|
|
16809
|
+
value?: unknown;
|
|
16810
|
+
values?: unknown[] | undefined;
|
|
16811
|
+
essential?: boolean | undefined;
|
|
16812
|
+
}, {
|
|
16813
|
+
value?: unknown;
|
|
16814
|
+
values?: unknown[] | undefined;
|
|
16815
|
+
essential?: boolean | undefined;
|
|
16816
|
+
}>
|
|
16817
|
+
]>>>>;
|
|
16818
|
+
}, "strip", z.ZodTypeAny, {
|
|
16819
|
+
id_token?: Record<string, {
|
|
16820
|
+
value?: unknown;
|
|
16821
|
+
values?: unknown[] | undefined;
|
|
16822
|
+
essential?: boolean | undefined;
|
|
16823
|
+
} | null> | undefined;
|
|
16824
|
+
userinfo?: Record<string, {
|
|
16825
|
+
value?: unknown;
|
|
16826
|
+
values?: unknown[] | undefined;
|
|
16827
|
+
essential?: boolean | undefined;
|
|
16828
|
+
} | null> | undefined;
|
|
16829
|
+
}, {
|
|
16830
|
+
id_token?: Record<string, {
|
|
16831
|
+
value?: unknown;
|
|
16832
|
+
values?: unknown[] | undefined;
|
|
16833
|
+
essential?: boolean | undefined;
|
|
16834
|
+
} | null> | undefined;
|
|
16835
|
+
userinfo?: Record<string, {
|
|
16836
|
+
value?: unknown;
|
|
16837
|
+
values?: unknown[] | undefined;
|
|
16838
|
+
essential?: boolean | undefined;
|
|
16839
|
+
} | null> | undefined;
|
|
16840
|
+
}>>;
|
|
16387
16841
|
vendor_id: z.ZodOptional<z.ZodString>;
|
|
16388
16842
|
}, "strip", z.ZodTypeAny, {
|
|
16389
16843
|
client_id: string;
|
|
@@ -16403,6 +16857,18 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
16403
16857
|
ui_locales?: string | undefined;
|
|
16404
16858
|
max_age?: number | undefined;
|
|
16405
16859
|
acr_values?: string | undefined;
|
|
16860
|
+
claims?: {
|
|
16861
|
+
id_token?: Record<string, {
|
|
16862
|
+
value?: unknown;
|
|
16863
|
+
values?: unknown[] | undefined;
|
|
16864
|
+
essential?: boolean | undefined;
|
|
16865
|
+
} | null> | undefined;
|
|
16866
|
+
userinfo?: Record<string, {
|
|
16867
|
+
value?: unknown;
|
|
16868
|
+
values?: unknown[] | undefined;
|
|
16869
|
+
essential?: boolean | undefined;
|
|
16870
|
+
} | null> | undefined;
|
|
16871
|
+
} | undefined;
|
|
16406
16872
|
vendor_id?: string | undefined;
|
|
16407
16873
|
}, {
|
|
16408
16874
|
client_id: string;
|
|
@@ -16422,6 +16888,18 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
16422
16888
|
ui_locales?: string | undefined;
|
|
16423
16889
|
max_age?: number | undefined;
|
|
16424
16890
|
acr_values?: string | undefined;
|
|
16891
|
+
claims?: {
|
|
16892
|
+
id_token?: Record<string, {
|
|
16893
|
+
value?: unknown;
|
|
16894
|
+
values?: unknown[] | undefined;
|
|
16895
|
+
essential?: boolean | undefined;
|
|
16896
|
+
} | null> | undefined;
|
|
16897
|
+
userinfo?: Record<string, {
|
|
16898
|
+
value?: unknown;
|
|
16899
|
+
values?: unknown[] | undefined;
|
|
16900
|
+
essential?: boolean | undefined;
|
|
16901
|
+
} | null> | undefined;
|
|
16902
|
+
} | undefined;
|
|
16425
16903
|
vendor_id?: string | undefined;
|
|
16426
16904
|
}>;
|
|
16427
16905
|
expires_at: z.ZodString;
|
|
@@ -16471,6 +16949,18 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
16471
16949
|
ui_locales?: string | undefined;
|
|
16472
16950
|
max_age?: number | undefined;
|
|
16473
16951
|
acr_values?: string | undefined;
|
|
16952
|
+
claims?: {
|
|
16953
|
+
id_token?: Record<string, {
|
|
16954
|
+
value?: unknown;
|
|
16955
|
+
values?: unknown[] | undefined;
|
|
16956
|
+
essential?: boolean | undefined;
|
|
16957
|
+
} | null> | undefined;
|
|
16958
|
+
userinfo?: Record<string, {
|
|
16959
|
+
value?: unknown;
|
|
16960
|
+
values?: unknown[] | undefined;
|
|
16961
|
+
essential?: boolean | undefined;
|
|
16962
|
+
} | null> | undefined;
|
|
16963
|
+
} | undefined;
|
|
16474
16964
|
vendor_id?: string | undefined;
|
|
16475
16965
|
};
|
|
16476
16966
|
ip?: string | undefined;
|
|
@@ -16512,6 +17002,18 @@ declare const loginSessionSchema: z.ZodObject<{
|
|
|
16512
17002
|
ui_locales?: string | undefined;
|
|
16513
17003
|
max_age?: number | undefined;
|
|
16514
17004
|
acr_values?: string | undefined;
|
|
17005
|
+
claims?: {
|
|
17006
|
+
id_token?: Record<string, {
|
|
17007
|
+
value?: unknown;
|
|
17008
|
+
values?: unknown[] | undefined;
|
|
17009
|
+
essential?: boolean | undefined;
|
|
17010
|
+
} | null> | undefined;
|
|
17011
|
+
userinfo?: Record<string, {
|
|
17012
|
+
value?: unknown;
|
|
17013
|
+
values?: unknown[] | undefined;
|
|
17014
|
+
essential?: boolean | undefined;
|
|
17015
|
+
} | null> | undefined;
|
|
17016
|
+
} | undefined;
|
|
16515
17017
|
vendor_id?: string | undefined;
|
|
16516
17018
|
};
|
|
16517
17019
|
ip?: string | undefined;
|
|
@@ -16837,7 +17339,7 @@ declare const logStreamInsertSchema: z.ZodObject<{
|
|
|
16837
17339
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
16838
17340
|
name: string;
|
|
16839
17341
|
sink: Record<string, unknown>;
|
|
16840
|
-
status?: "
|
|
17342
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
16841
17343
|
filters?: {
|
|
16842
17344
|
type: string;
|
|
16843
17345
|
name: string;
|
|
@@ -16847,7 +17349,7 @@ declare const logStreamInsertSchema: z.ZodObject<{
|
|
|
16847
17349
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
16848
17350
|
name: string;
|
|
16849
17351
|
sink: Record<string, unknown>;
|
|
16850
|
-
status?: "
|
|
17352
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
16851
17353
|
filters?: {
|
|
16852
17354
|
type: string;
|
|
16853
17355
|
name: string;
|
|
@@ -16888,7 +17390,7 @@ declare const logStreamSchema: z.ZodObject<{
|
|
|
16888
17390
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
16889
17391
|
}, "strip", z.ZodTypeAny, {
|
|
16890
17392
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
16891
|
-
status: "
|
|
17393
|
+
status: "suspended" | "active" | "paused";
|
|
16892
17394
|
id: string;
|
|
16893
17395
|
name: string;
|
|
16894
17396
|
sink: Record<string, unknown>;
|
|
@@ -16901,7 +17403,7 @@ declare const logStreamSchema: z.ZodObject<{
|
|
|
16901
17403
|
isPriority?: boolean | undefined;
|
|
16902
17404
|
}, {
|
|
16903
17405
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
16904
|
-
status: "
|
|
17406
|
+
status: "suspended" | "active" | "paused";
|
|
16905
17407
|
id: string;
|
|
16906
17408
|
name: string;
|
|
16907
17409
|
sink: Record<string, unknown>;
|
|
@@ -18170,7 +18672,7 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
18170
18672
|
base_focus_color: string;
|
|
18171
18673
|
base_hover_color: string;
|
|
18172
18674
|
body_text: string;
|
|
18173
|
-
captcha_widget_theme: "
|
|
18675
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18174
18676
|
header: string;
|
|
18175
18677
|
icons: string;
|
|
18176
18678
|
input_background: string;
|
|
@@ -18190,7 +18692,7 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
18190
18692
|
base_focus_color: string;
|
|
18191
18693
|
base_hover_color: string;
|
|
18192
18694
|
body_text: string;
|
|
18193
|
-
captcha_widget_theme: "
|
|
18695
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18194
18696
|
header: string;
|
|
18195
18697
|
icons: string;
|
|
18196
18698
|
input_background: string;
|
|
@@ -18406,7 +18908,7 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
18406
18908
|
base_focus_color: string;
|
|
18407
18909
|
base_hover_color: string;
|
|
18408
18910
|
body_text: string;
|
|
18409
|
-
captcha_widget_theme: "
|
|
18911
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18410
18912
|
header: string;
|
|
18411
18913
|
icons: string;
|
|
18412
18914
|
input_background: string;
|
|
@@ -18482,7 +18984,7 @@ declare const themeInsertSchema: z.ZodObject<{
|
|
|
18482
18984
|
base_focus_color: string;
|
|
18483
18985
|
base_hover_color: string;
|
|
18484
18986
|
body_text: string;
|
|
18485
|
-
captcha_widget_theme: "
|
|
18987
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18486
18988
|
header: string;
|
|
18487
18989
|
icons: string;
|
|
18488
18990
|
input_background: string;
|
|
@@ -18617,7 +19119,7 @@ declare const themeSchema: z.ZodObject<{
|
|
|
18617
19119
|
base_focus_color: string;
|
|
18618
19120
|
base_hover_color: string;
|
|
18619
19121
|
body_text: string;
|
|
18620
|
-
captcha_widget_theme: "
|
|
19122
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18621
19123
|
header: string;
|
|
18622
19124
|
icons: string;
|
|
18623
19125
|
input_background: string;
|
|
@@ -18637,7 +19139,7 @@ declare const themeSchema: z.ZodObject<{
|
|
|
18637
19139
|
base_focus_color: string;
|
|
18638
19140
|
base_hover_color: string;
|
|
18639
19141
|
body_text: string;
|
|
18640
|
-
captcha_widget_theme: "
|
|
19142
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18641
19143
|
header: string;
|
|
18642
19144
|
icons: string;
|
|
18643
19145
|
input_background: string;
|
|
@@ -18855,7 +19357,7 @@ declare const themeSchema: z.ZodObject<{
|
|
|
18855
19357
|
base_focus_color: string;
|
|
18856
19358
|
base_hover_color: string;
|
|
18857
19359
|
body_text: string;
|
|
18858
|
-
captcha_widget_theme: "
|
|
19360
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18859
19361
|
header: string;
|
|
18860
19362
|
icons: string;
|
|
18861
19363
|
input_background: string;
|
|
@@ -18932,7 +19434,7 @@ declare const themeSchema: z.ZodObject<{
|
|
|
18932
19434
|
base_focus_color: string;
|
|
18933
19435
|
base_hover_color: string;
|
|
18934
19436
|
body_text: string;
|
|
18935
|
-
captcha_widget_theme: "
|
|
19437
|
+
captcha_widget_theme: "dark" | "light" | "auto";
|
|
18936
19438
|
header: string;
|
|
18937
19439
|
icons: string;
|
|
18938
19440
|
input_background: string;
|
|
@@ -20236,6 +20738,10 @@ export interface ActionsAdapter {
|
|
|
20236
20738
|
remove: (tenant_id: string, action_id: string) => Promise<boolean>;
|
|
20237
20739
|
list: (tenant_id: string, params?: ListParams) => Promise<ListActionsResponse>;
|
|
20238
20740
|
}
|
|
20741
|
+
export interface ActionExecutionsAdapter {
|
|
20742
|
+
create: (tenant_id: string, execution: ActionExecutionInsert) => Promise<ActionExecution>;
|
|
20743
|
+
get: (tenant_id: string, execution_id: string) => Promise<ActionExecution | null>;
|
|
20744
|
+
}
|
|
20239
20745
|
export interface ListActionVersionsResponse extends Totals {
|
|
20240
20746
|
versions: ActionVersion[];
|
|
20241
20747
|
}
|
|
@@ -20837,6 +21343,7 @@ export interface SessionCleanupParams {
|
|
|
20837
21343
|
}
|
|
20838
21344
|
export interface DataAdapters {
|
|
20839
21345
|
actions: ActionsAdapter;
|
|
21346
|
+
actionExecutions: ActionExecutionsAdapter;
|
|
20840
21347
|
actionVersions: ActionVersionsAdapter;
|
|
20841
21348
|
branding: BrandingAdapter;
|
|
20842
21349
|
cache?: CacheAdapter;
|
|
@@ -21418,6 +21925,34 @@ declare const sqlActionSchema: z.ZodObject<{
|
|
|
21418
21925
|
supported_triggers?: string | null | undefined;
|
|
21419
21926
|
deployed_at_ts?: number | null | undefined;
|
|
21420
21927
|
}>;
|
|
21928
|
+
declare const sqlActionExecutionSchema: z.ZodObject<{
|
|
21929
|
+
id: z.ZodString;
|
|
21930
|
+
tenant_id: z.ZodString;
|
|
21931
|
+
trigger_id: z.ZodString;
|
|
21932
|
+
status: z.ZodString;
|
|
21933
|
+
results: z.ZodString;
|
|
21934
|
+
logs: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
21935
|
+
created_at_ts: z.ZodNumber;
|
|
21936
|
+
updated_at_ts: z.ZodNumber;
|
|
21937
|
+
}, "strip", z.ZodTypeAny, {
|
|
21938
|
+
status: string;
|
|
21939
|
+
tenant_id: string;
|
|
21940
|
+
created_at_ts: number;
|
|
21941
|
+
updated_at_ts: number;
|
|
21942
|
+
id: string;
|
|
21943
|
+
trigger_id: string;
|
|
21944
|
+
results: string;
|
|
21945
|
+
logs?: string | null | undefined;
|
|
21946
|
+
}, {
|
|
21947
|
+
status: string;
|
|
21948
|
+
tenant_id: string;
|
|
21949
|
+
created_at_ts: number;
|
|
21950
|
+
updated_at_ts: number;
|
|
21951
|
+
id: string;
|
|
21952
|
+
trigger_id: string;
|
|
21953
|
+
results: string;
|
|
21954
|
+
logs?: string | null | undefined;
|
|
21955
|
+
}>;
|
|
21421
21956
|
declare const sqlActionVersionSchema: z.ZodObject<{
|
|
21422
21957
|
id: z.ZodString;
|
|
21423
21958
|
tenant_id: z.ZodString;
|
|
@@ -23342,6 +23877,8 @@ declare const sqlClientSchema: z.ZodObject<{
|
|
|
23342
23877
|
custom_login_page_on: z.ZodNumber;
|
|
23343
23878
|
require_pushed_authorization_requests: z.ZodNumber;
|
|
23344
23879
|
require_proof_of_possession: z.ZodNumber;
|
|
23880
|
+
disable_sign_ups: z.ZodNumber;
|
|
23881
|
+
hide_sign_up_disabled_error: z.ZodNumber;
|
|
23345
23882
|
callbacks: z.ZodString;
|
|
23346
23883
|
allowed_origins: z.ZodString;
|
|
23347
23884
|
web_origins: z.ZodString;
|
|
@@ -23454,6 +23991,8 @@ declare const sqlClientSchema: z.ZodObject<{
|
|
|
23454
23991
|
custom_login_page_on: number;
|
|
23455
23992
|
require_pushed_authorization_requests: number;
|
|
23456
23993
|
require_proof_of_possession: number;
|
|
23994
|
+
disable_sign_ups: number;
|
|
23995
|
+
hide_sign_up_disabled_error: number;
|
|
23457
23996
|
callbacks: string;
|
|
23458
23997
|
allowed_origins: string;
|
|
23459
23998
|
web_origins: string;
|
|
@@ -23510,6 +24049,8 @@ declare const sqlClientSchema: z.ZodObject<{
|
|
|
23510
24049
|
custom_login_page_on: number;
|
|
23511
24050
|
require_pushed_authorization_requests: number;
|
|
23512
24051
|
require_proof_of_possession: number;
|
|
24052
|
+
disable_sign_ups: number;
|
|
24053
|
+
hide_sign_up_disabled_error: number;
|
|
23513
24054
|
callbacks: string;
|
|
23514
24055
|
allowed_origins: string;
|
|
23515
24056
|
web_origins: string;
|
|
@@ -23638,6 +24179,7 @@ declare const sqlAuthenticationMethodSchema: z.ZodObject<{
|
|
|
23638
24179
|
}>;
|
|
23639
24180
|
export interface Database {
|
|
23640
24181
|
actions: z.infer<typeof sqlActionSchema>;
|
|
24182
|
+
action_executions: z.infer<typeof sqlActionExecutionSchema>;
|
|
23641
24183
|
action_versions: z.infer<typeof sqlActionVersionSchema>;
|
|
23642
24184
|
flows: z.infer<typeof sqlFlowSchema>;
|
|
23643
24185
|
branding: z.infer<typeof sqlBrandingSchema>;
|