@awsless/awsless 0.0.163 → 0.0.165
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/README.MD +2 -0
- package/dist/app.json +1 -1
- package/dist/bin.js +55 -49
- package/dist/features/cognito-client-secret/bundle.zip +0 -0
- package/dist/features/delete-bucket/bundle.zip +0 -0
- package/dist/features/delete-hosted-zone/bundle.zip +0 -0
- package/dist/features/global-exports/bundle.zip +0 -0
- package/dist/features/invalidate-cache/bundle.zip +0 -0
- package/dist/features/upload-bucket-asset/bundle.zip +0 -0
- package/dist/index.d.ts +287 -0
- package/dist/json.js +3 -4
- package/dist/stack.json +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -105,6 +105,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
105
105
|
triggers: z.ZodOptional<z.ZodObject<{
|
|
106
106
|
beforeToken: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
107
107
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
108
|
+
description: z.ZodOptional<z.ZodString>;
|
|
108
109
|
handler: z.ZodOptional<z.ZodString>;
|
|
109
110
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
110
111
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -160,6 +161,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
160
161
|
}>, "many">]>>;
|
|
161
162
|
}, "strip", z.ZodTypeAny, {
|
|
162
163
|
file: string;
|
|
164
|
+
description?: string | undefined;
|
|
163
165
|
handler?: string | undefined;
|
|
164
166
|
minify?: boolean | undefined;
|
|
165
167
|
warm?: number | undefined;
|
|
@@ -189,6 +191,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
189
191
|
}[] | undefined;
|
|
190
192
|
}, {
|
|
191
193
|
file: string;
|
|
194
|
+
description?: string | undefined;
|
|
192
195
|
handler?: string | undefined;
|
|
193
196
|
minify?: boolean | undefined;
|
|
194
197
|
warm?: number | undefined;
|
|
@@ -219,6 +222,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
219
222
|
}>]>>;
|
|
220
223
|
beforeLogin: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
221
224
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
225
|
+
description: z.ZodOptional<z.ZodString>;
|
|
222
226
|
handler: z.ZodOptional<z.ZodString>;
|
|
223
227
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
224
228
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -274,6 +278,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
274
278
|
}>, "many">]>>;
|
|
275
279
|
}, "strip", z.ZodTypeAny, {
|
|
276
280
|
file: string;
|
|
281
|
+
description?: string | undefined;
|
|
277
282
|
handler?: string | undefined;
|
|
278
283
|
minify?: boolean | undefined;
|
|
279
284
|
warm?: number | undefined;
|
|
@@ -303,6 +308,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
303
308
|
}[] | undefined;
|
|
304
309
|
}, {
|
|
305
310
|
file: string;
|
|
311
|
+
description?: string | undefined;
|
|
306
312
|
handler?: string | undefined;
|
|
307
313
|
minify?: boolean | undefined;
|
|
308
314
|
warm?: number | undefined;
|
|
@@ -333,6 +339,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
333
339
|
}>]>>;
|
|
334
340
|
afterLogin: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
335
341
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
342
|
+
description: z.ZodOptional<z.ZodString>;
|
|
336
343
|
handler: z.ZodOptional<z.ZodString>;
|
|
337
344
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
338
345
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -388,6 +395,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
388
395
|
}>, "many">]>>;
|
|
389
396
|
}, "strip", z.ZodTypeAny, {
|
|
390
397
|
file: string;
|
|
398
|
+
description?: string | undefined;
|
|
391
399
|
handler?: string | undefined;
|
|
392
400
|
minify?: boolean | undefined;
|
|
393
401
|
warm?: number | undefined;
|
|
@@ -417,6 +425,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
417
425
|
}[] | undefined;
|
|
418
426
|
}, {
|
|
419
427
|
file: string;
|
|
428
|
+
description?: string | undefined;
|
|
420
429
|
handler?: string | undefined;
|
|
421
430
|
minify?: boolean | undefined;
|
|
422
431
|
warm?: number | undefined;
|
|
@@ -447,6 +456,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
447
456
|
}>]>>;
|
|
448
457
|
beforeRegister: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
449
458
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
459
|
+
description: z.ZodOptional<z.ZodString>;
|
|
450
460
|
handler: z.ZodOptional<z.ZodString>;
|
|
451
461
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
452
462
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -502,6 +512,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
502
512
|
}>, "many">]>>;
|
|
503
513
|
}, "strip", z.ZodTypeAny, {
|
|
504
514
|
file: string;
|
|
515
|
+
description?: string | undefined;
|
|
505
516
|
handler?: string | undefined;
|
|
506
517
|
minify?: boolean | undefined;
|
|
507
518
|
warm?: number | undefined;
|
|
@@ -531,6 +542,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
531
542
|
}[] | undefined;
|
|
532
543
|
}, {
|
|
533
544
|
file: string;
|
|
545
|
+
description?: string | undefined;
|
|
534
546
|
handler?: string | undefined;
|
|
535
547
|
minify?: boolean | undefined;
|
|
536
548
|
warm?: number | undefined;
|
|
@@ -561,6 +573,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
561
573
|
}>]>>;
|
|
562
574
|
afterRegister: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
563
575
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
576
|
+
description: z.ZodOptional<z.ZodString>;
|
|
564
577
|
handler: z.ZodOptional<z.ZodString>;
|
|
565
578
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
566
579
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -616,6 +629,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
616
629
|
}>, "many">]>>;
|
|
617
630
|
}, "strip", z.ZodTypeAny, {
|
|
618
631
|
file: string;
|
|
632
|
+
description?: string | undefined;
|
|
619
633
|
handler?: string | undefined;
|
|
620
634
|
minify?: boolean | undefined;
|
|
621
635
|
warm?: number | undefined;
|
|
@@ -645,6 +659,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
645
659
|
}[] | undefined;
|
|
646
660
|
}, {
|
|
647
661
|
file: string;
|
|
662
|
+
description?: string | undefined;
|
|
648
663
|
handler?: string | undefined;
|
|
649
664
|
minify?: boolean | undefined;
|
|
650
665
|
warm?: number | undefined;
|
|
@@ -675,6 +690,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
675
690
|
}>]>>;
|
|
676
691
|
customMessage: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
677
692
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
693
|
+
description: z.ZodOptional<z.ZodString>;
|
|
678
694
|
handler: z.ZodOptional<z.ZodString>;
|
|
679
695
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
680
696
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -730,6 +746,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
730
746
|
}>, "many">]>>;
|
|
731
747
|
}, "strip", z.ZodTypeAny, {
|
|
732
748
|
file: string;
|
|
749
|
+
description?: string | undefined;
|
|
733
750
|
handler?: string | undefined;
|
|
734
751
|
minify?: boolean | undefined;
|
|
735
752
|
warm?: number | undefined;
|
|
@@ -759,6 +776,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
759
776
|
}[] | undefined;
|
|
760
777
|
}, {
|
|
761
778
|
file: string;
|
|
779
|
+
description?: string | undefined;
|
|
762
780
|
handler?: string | undefined;
|
|
763
781
|
minify?: boolean | undefined;
|
|
764
782
|
warm?: number | undefined;
|
|
@@ -789,6 +807,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
789
807
|
}>]>>;
|
|
790
808
|
defineChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
791
809
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
810
|
+
description: z.ZodOptional<z.ZodString>;
|
|
792
811
|
handler: z.ZodOptional<z.ZodString>;
|
|
793
812
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
794
813
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -844,6 +863,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
844
863
|
}>, "many">]>>;
|
|
845
864
|
}, "strip", z.ZodTypeAny, {
|
|
846
865
|
file: string;
|
|
866
|
+
description?: string | undefined;
|
|
847
867
|
handler?: string | undefined;
|
|
848
868
|
minify?: boolean | undefined;
|
|
849
869
|
warm?: number | undefined;
|
|
@@ -873,6 +893,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
873
893
|
}[] | undefined;
|
|
874
894
|
}, {
|
|
875
895
|
file: string;
|
|
896
|
+
description?: string | undefined;
|
|
876
897
|
handler?: string | undefined;
|
|
877
898
|
minify?: boolean | undefined;
|
|
878
899
|
warm?: number | undefined;
|
|
@@ -903,6 +924,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
903
924
|
}>]>>;
|
|
904
925
|
createChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
905
926
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
927
|
+
description: z.ZodOptional<z.ZodString>;
|
|
906
928
|
handler: z.ZodOptional<z.ZodString>;
|
|
907
929
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
908
930
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -958,6 +980,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
958
980
|
}>, "many">]>>;
|
|
959
981
|
}, "strip", z.ZodTypeAny, {
|
|
960
982
|
file: string;
|
|
983
|
+
description?: string | undefined;
|
|
961
984
|
handler?: string | undefined;
|
|
962
985
|
minify?: boolean | undefined;
|
|
963
986
|
warm?: number | undefined;
|
|
@@ -987,6 +1010,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
987
1010
|
}[] | undefined;
|
|
988
1011
|
}, {
|
|
989
1012
|
file: string;
|
|
1013
|
+
description?: string | undefined;
|
|
990
1014
|
handler?: string | undefined;
|
|
991
1015
|
minify?: boolean | undefined;
|
|
992
1016
|
warm?: number | undefined;
|
|
@@ -1017,6 +1041,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1017
1041
|
}>]>>;
|
|
1018
1042
|
verifyChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
1019
1043
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
1044
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1020
1045
|
handler: z.ZodOptional<z.ZodString>;
|
|
1021
1046
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
1022
1047
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1072,6 +1097,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1072
1097
|
}>, "many">]>>;
|
|
1073
1098
|
}, "strip", z.ZodTypeAny, {
|
|
1074
1099
|
file: string;
|
|
1100
|
+
description?: string | undefined;
|
|
1075
1101
|
handler?: string | undefined;
|
|
1076
1102
|
minify?: boolean | undefined;
|
|
1077
1103
|
warm?: number | undefined;
|
|
@@ -1101,6 +1127,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1101
1127
|
}[] | undefined;
|
|
1102
1128
|
}, {
|
|
1103
1129
|
file: string;
|
|
1130
|
+
description?: string | undefined;
|
|
1104
1131
|
handler?: string | undefined;
|
|
1105
1132
|
minify?: boolean | undefined;
|
|
1106
1133
|
warm?: number | undefined;
|
|
@@ -1132,6 +1159,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1132
1159
|
}, "strip", z.ZodTypeAny, {
|
|
1133
1160
|
beforeToken?: string | {
|
|
1134
1161
|
file: string;
|
|
1162
|
+
description?: string | undefined;
|
|
1135
1163
|
handler?: string | undefined;
|
|
1136
1164
|
minify?: boolean | undefined;
|
|
1137
1165
|
warm?: number | undefined;
|
|
@@ -1162,6 +1190,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1162
1190
|
} | undefined;
|
|
1163
1191
|
beforeLogin?: string | {
|
|
1164
1192
|
file: string;
|
|
1193
|
+
description?: string | undefined;
|
|
1165
1194
|
handler?: string | undefined;
|
|
1166
1195
|
minify?: boolean | undefined;
|
|
1167
1196
|
warm?: number | undefined;
|
|
@@ -1192,6 +1221,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1192
1221
|
} | undefined;
|
|
1193
1222
|
afterLogin?: string | {
|
|
1194
1223
|
file: string;
|
|
1224
|
+
description?: string | undefined;
|
|
1195
1225
|
handler?: string | undefined;
|
|
1196
1226
|
minify?: boolean | undefined;
|
|
1197
1227
|
warm?: number | undefined;
|
|
@@ -1222,6 +1252,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1222
1252
|
} | undefined;
|
|
1223
1253
|
beforeRegister?: string | {
|
|
1224
1254
|
file: string;
|
|
1255
|
+
description?: string | undefined;
|
|
1225
1256
|
handler?: string | undefined;
|
|
1226
1257
|
minify?: boolean | undefined;
|
|
1227
1258
|
warm?: number | undefined;
|
|
@@ -1252,6 +1283,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1252
1283
|
} | undefined;
|
|
1253
1284
|
afterRegister?: string | {
|
|
1254
1285
|
file: string;
|
|
1286
|
+
description?: string | undefined;
|
|
1255
1287
|
handler?: string | undefined;
|
|
1256
1288
|
minify?: boolean | undefined;
|
|
1257
1289
|
warm?: number | undefined;
|
|
@@ -1282,6 +1314,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1282
1314
|
} | undefined;
|
|
1283
1315
|
customMessage?: string | {
|
|
1284
1316
|
file: string;
|
|
1317
|
+
description?: string | undefined;
|
|
1285
1318
|
handler?: string | undefined;
|
|
1286
1319
|
minify?: boolean | undefined;
|
|
1287
1320
|
warm?: number | undefined;
|
|
@@ -1312,6 +1345,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1312
1345
|
} | undefined;
|
|
1313
1346
|
defineChallenge?: string | {
|
|
1314
1347
|
file: string;
|
|
1348
|
+
description?: string | undefined;
|
|
1315
1349
|
handler?: string | undefined;
|
|
1316
1350
|
minify?: boolean | undefined;
|
|
1317
1351
|
warm?: number | undefined;
|
|
@@ -1342,6 +1376,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1342
1376
|
} | undefined;
|
|
1343
1377
|
createChallenge?: string | {
|
|
1344
1378
|
file: string;
|
|
1379
|
+
description?: string | undefined;
|
|
1345
1380
|
handler?: string | undefined;
|
|
1346
1381
|
minify?: boolean | undefined;
|
|
1347
1382
|
warm?: number | undefined;
|
|
@@ -1372,6 +1407,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1372
1407
|
} | undefined;
|
|
1373
1408
|
verifyChallenge?: string | {
|
|
1374
1409
|
file: string;
|
|
1410
|
+
description?: string | undefined;
|
|
1375
1411
|
handler?: string | undefined;
|
|
1376
1412
|
minify?: boolean | undefined;
|
|
1377
1413
|
warm?: number | undefined;
|
|
@@ -1403,6 +1439,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1403
1439
|
}, {
|
|
1404
1440
|
beforeToken?: string | {
|
|
1405
1441
|
file: string;
|
|
1442
|
+
description?: string | undefined;
|
|
1406
1443
|
handler?: string | undefined;
|
|
1407
1444
|
minify?: boolean | undefined;
|
|
1408
1445
|
warm?: number | undefined;
|
|
@@ -1433,6 +1470,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1433
1470
|
} | undefined;
|
|
1434
1471
|
beforeLogin?: string | {
|
|
1435
1472
|
file: string;
|
|
1473
|
+
description?: string | undefined;
|
|
1436
1474
|
handler?: string | undefined;
|
|
1437
1475
|
minify?: boolean | undefined;
|
|
1438
1476
|
warm?: number | undefined;
|
|
@@ -1463,6 +1501,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1463
1501
|
} | undefined;
|
|
1464
1502
|
afterLogin?: string | {
|
|
1465
1503
|
file: string;
|
|
1504
|
+
description?: string | undefined;
|
|
1466
1505
|
handler?: string | undefined;
|
|
1467
1506
|
minify?: boolean | undefined;
|
|
1468
1507
|
warm?: number | undefined;
|
|
@@ -1493,6 +1532,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1493
1532
|
} | undefined;
|
|
1494
1533
|
beforeRegister?: string | {
|
|
1495
1534
|
file: string;
|
|
1535
|
+
description?: string | undefined;
|
|
1496
1536
|
handler?: string | undefined;
|
|
1497
1537
|
minify?: boolean | undefined;
|
|
1498
1538
|
warm?: number | undefined;
|
|
@@ -1523,6 +1563,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1523
1563
|
} | undefined;
|
|
1524
1564
|
afterRegister?: string | {
|
|
1525
1565
|
file: string;
|
|
1566
|
+
description?: string | undefined;
|
|
1526
1567
|
handler?: string | undefined;
|
|
1527
1568
|
minify?: boolean | undefined;
|
|
1528
1569
|
warm?: number | undefined;
|
|
@@ -1553,6 +1594,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1553
1594
|
} | undefined;
|
|
1554
1595
|
customMessage?: string | {
|
|
1555
1596
|
file: string;
|
|
1597
|
+
description?: string | undefined;
|
|
1556
1598
|
handler?: string | undefined;
|
|
1557
1599
|
minify?: boolean | undefined;
|
|
1558
1600
|
warm?: number | undefined;
|
|
@@ -1583,6 +1625,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1583
1625
|
} | undefined;
|
|
1584
1626
|
defineChallenge?: string | {
|
|
1585
1627
|
file: string;
|
|
1628
|
+
description?: string | undefined;
|
|
1586
1629
|
handler?: string | undefined;
|
|
1587
1630
|
minify?: boolean | undefined;
|
|
1588
1631
|
warm?: number | undefined;
|
|
@@ -1613,6 +1656,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1613
1656
|
} | undefined;
|
|
1614
1657
|
createChallenge?: string | {
|
|
1615
1658
|
file: string;
|
|
1659
|
+
description?: string | undefined;
|
|
1616
1660
|
handler?: string | undefined;
|
|
1617
1661
|
minify?: boolean | undefined;
|
|
1618
1662
|
warm?: number | undefined;
|
|
@@ -1643,6 +1687,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1643
1687
|
} | undefined;
|
|
1644
1688
|
verifyChallenge?: string | {
|
|
1645
1689
|
file: string;
|
|
1690
|
+
description?: string | undefined;
|
|
1646
1691
|
handler?: string | undefined;
|
|
1647
1692
|
minify?: boolean | undefined;
|
|
1648
1693
|
warm?: number | undefined;
|
|
@@ -1700,6 +1745,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1700
1745
|
triggers?: {
|
|
1701
1746
|
beforeToken?: string | {
|
|
1702
1747
|
file: string;
|
|
1748
|
+
description?: string | undefined;
|
|
1703
1749
|
handler?: string | undefined;
|
|
1704
1750
|
minify?: boolean | undefined;
|
|
1705
1751
|
warm?: number | undefined;
|
|
@@ -1730,6 +1776,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1730
1776
|
} | undefined;
|
|
1731
1777
|
beforeLogin?: string | {
|
|
1732
1778
|
file: string;
|
|
1779
|
+
description?: string | undefined;
|
|
1733
1780
|
handler?: string | undefined;
|
|
1734
1781
|
minify?: boolean | undefined;
|
|
1735
1782
|
warm?: number | undefined;
|
|
@@ -1760,6 +1807,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1760
1807
|
} | undefined;
|
|
1761
1808
|
afterLogin?: string | {
|
|
1762
1809
|
file: string;
|
|
1810
|
+
description?: string | undefined;
|
|
1763
1811
|
handler?: string | undefined;
|
|
1764
1812
|
minify?: boolean | undefined;
|
|
1765
1813
|
warm?: number | undefined;
|
|
@@ -1790,6 +1838,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1790
1838
|
} | undefined;
|
|
1791
1839
|
beforeRegister?: string | {
|
|
1792
1840
|
file: string;
|
|
1841
|
+
description?: string | undefined;
|
|
1793
1842
|
handler?: string | undefined;
|
|
1794
1843
|
minify?: boolean | undefined;
|
|
1795
1844
|
warm?: number | undefined;
|
|
@@ -1820,6 +1869,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1820
1869
|
} | undefined;
|
|
1821
1870
|
afterRegister?: string | {
|
|
1822
1871
|
file: string;
|
|
1872
|
+
description?: string | undefined;
|
|
1823
1873
|
handler?: string | undefined;
|
|
1824
1874
|
minify?: boolean | undefined;
|
|
1825
1875
|
warm?: number | undefined;
|
|
@@ -1850,6 +1900,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1850
1900
|
} | undefined;
|
|
1851
1901
|
customMessage?: string | {
|
|
1852
1902
|
file: string;
|
|
1903
|
+
description?: string | undefined;
|
|
1853
1904
|
handler?: string | undefined;
|
|
1854
1905
|
minify?: boolean | undefined;
|
|
1855
1906
|
warm?: number | undefined;
|
|
@@ -1880,6 +1931,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1880
1931
|
} | undefined;
|
|
1881
1932
|
defineChallenge?: string | {
|
|
1882
1933
|
file: string;
|
|
1934
|
+
description?: string | undefined;
|
|
1883
1935
|
handler?: string | undefined;
|
|
1884
1936
|
minify?: boolean | undefined;
|
|
1885
1937
|
warm?: number | undefined;
|
|
@@ -1910,6 +1962,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1910
1962
|
} | undefined;
|
|
1911
1963
|
createChallenge?: string | {
|
|
1912
1964
|
file: string;
|
|
1965
|
+
description?: string | undefined;
|
|
1913
1966
|
handler?: string | undefined;
|
|
1914
1967
|
minify?: boolean | undefined;
|
|
1915
1968
|
warm?: number | undefined;
|
|
@@ -1940,6 +1993,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1940
1993
|
} | undefined;
|
|
1941
1994
|
verifyChallenge?: string | {
|
|
1942
1995
|
file: string;
|
|
1996
|
+
description?: string | undefined;
|
|
1943
1997
|
handler?: string | undefined;
|
|
1944
1998
|
minify?: boolean | undefined;
|
|
1945
1999
|
warm?: number | undefined;
|
|
@@ -1997,6 +2051,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
1997
2051
|
triggers?: {
|
|
1998
2052
|
beforeToken?: string | {
|
|
1999
2053
|
file: string;
|
|
2054
|
+
description?: string | undefined;
|
|
2000
2055
|
handler?: string | undefined;
|
|
2001
2056
|
minify?: boolean | undefined;
|
|
2002
2057
|
warm?: number | undefined;
|
|
@@ -2027,6 +2082,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2027
2082
|
} | undefined;
|
|
2028
2083
|
beforeLogin?: string | {
|
|
2029
2084
|
file: string;
|
|
2085
|
+
description?: string | undefined;
|
|
2030
2086
|
handler?: string | undefined;
|
|
2031
2087
|
minify?: boolean | undefined;
|
|
2032
2088
|
warm?: number | undefined;
|
|
@@ -2057,6 +2113,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2057
2113
|
} | undefined;
|
|
2058
2114
|
afterLogin?: string | {
|
|
2059
2115
|
file: string;
|
|
2116
|
+
description?: string | undefined;
|
|
2060
2117
|
handler?: string | undefined;
|
|
2061
2118
|
minify?: boolean | undefined;
|
|
2062
2119
|
warm?: number | undefined;
|
|
@@ -2087,6 +2144,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2087
2144
|
} | undefined;
|
|
2088
2145
|
beforeRegister?: string | {
|
|
2089
2146
|
file: string;
|
|
2147
|
+
description?: string | undefined;
|
|
2090
2148
|
handler?: string | undefined;
|
|
2091
2149
|
minify?: boolean | undefined;
|
|
2092
2150
|
warm?: number | undefined;
|
|
@@ -2117,6 +2175,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2117
2175
|
} | undefined;
|
|
2118
2176
|
afterRegister?: string | {
|
|
2119
2177
|
file: string;
|
|
2178
|
+
description?: string | undefined;
|
|
2120
2179
|
handler?: string | undefined;
|
|
2121
2180
|
minify?: boolean | undefined;
|
|
2122
2181
|
warm?: number | undefined;
|
|
@@ -2147,6 +2206,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2147
2206
|
} | undefined;
|
|
2148
2207
|
customMessage?: string | {
|
|
2149
2208
|
file: string;
|
|
2209
|
+
description?: string | undefined;
|
|
2150
2210
|
handler?: string | undefined;
|
|
2151
2211
|
minify?: boolean | undefined;
|
|
2152
2212
|
warm?: number | undefined;
|
|
@@ -2177,6 +2237,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2177
2237
|
} | undefined;
|
|
2178
2238
|
defineChallenge?: string | {
|
|
2179
2239
|
file: string;
|
|
2240
|
+
description?: string | undefined;
|
|
2180
2241
|
handler?: string | undefined;
|
|
2181
2242
|
minify?: boolean | undefined;
|
|
2182
2243
|
warm?: number | undefined;
|
|
@@ -2207,6 +2268,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2207
2268
|
} | undefined;
|
|
2208
2269
|
createChallenge?: string | {
|
|
2209
2270
|
file: string;
|
|
2271
|
+
description?: string | undefined;
|
|
2210
2272
|
handler?: string | undefined;
|
|
2211
2273
|
minify?: boolean | undefined;
|
|
2212
2274
|
warm?: number | undefined;
|
|
@@ -2237,6 +2299,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2237
2299
|
} | undefined;
|
|
2238
2300
|
verifyChallenge?: string | {
|
|
2239
2301
|
file: string;
|
|
2302
|
+
description?: string | undefined;
|
|
2240
2303
|
handler?: string | undefined;
|
|
2241
2304
|
minify?: boolean | undefined;
|
|
2242
2305
|
warm?: number | undefined;
|
|
@@ -2548,6 +2611,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2548
2611
|
triggers?: {
|
|
2549
2612
|
beforeToken?: string | {
|
|
2550
2613
|
file: string;
|
|
2614
|
+
description?: string | undefined;
|
|
2551
2615
|
handler?: string | undefined;
|
|
2552
2616
|
minify?: boolean | undefined;
|
|
2553
2617
|
warm?: number | undefined;
|
|
@@ -2578,6 +2642,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2578
2642
|
} | undefined;
|
|
2579
2643
|
beforeLogin?: string | {
|
|
2580
2644
|
file: string;
|
|
2645
|
+
description?: string | undefined;
|
|
2581
2646
|
handler?: string | undefined;
|
|
2582
2647
|
minify?: boolean | undefined;
|
|
2583
2648
|
warm?: number | undefined;
|
|
@@ -2608,6 +2673,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2608
2673
|
} | undefined;
|
|
2609
2674
|
afterLogin?: string | {
|
|
2610
2675
|
file: string;
|
|
2676
|
+
description?: string | undefined;
|
|
2611
2677
|
handler?: string | undefined;
|
|
2612
2678
|
minify?: boolean | undefined;
|
|
2613
2679
|
warm?: number | undefined;
|
|
@@ -2638,6 +2704,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2638
2704
|
} | undefined;
|
|
2639
2705
|
beforeRegister?: string | {
|
|
2640
2706
|
file: string;
|
|
2707
|
+
description?: string | undefined;
|
|
2641
2708
|
handler?: string | undefined;
|
|
2642
2709
|
minify?: boolean | undefined;
|
|
2643
2710
|
warm?: number | undefined;
|
|
@@ -2668,6 +2735,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2668
2735
|
} | undefined;
|
|
2669
2736
|
afterRegister?: string | {
|
|
2670
2737
|
file: string;
|
|
2738
|
+
description?: string | undefined;
|
|
2671
2739
|
handler?: string | undefined;
|
|
2672
2740
|
minify?: boolean | undefined;
|
|
2673
2741
|
warm?: number | undefined;
|
|
@@ -2698,6 +2766,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2698
2766
|
} | undefined;
|
|
2699
2767
|
customMessage?: string | {
|
|
2700
2768
|
file: string;
|
|
2769
|
+
description?: string | undefined;
|
|
2701
2770
|
handler?: string | undefined;
|
|
2702
2771
|
minify?: boolean | undefined;
|
|
2703
2772
|
warm?: number | undefined;
|
|
@@ -2728,6 +2797,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2728
2797
|
} | undefined;
|
|
2729
2798
|
defineChallenge?: string | {
|
|
2730
2799
|
file: string;
|
|
2800
|
+
description?: string | undefined;
|
|
2731
2801
|
handler?: string | undefined;
|
|
2732
2802
|
minify?: boolean | undefined;
|
|
2733
2803
|
warm?: number | undefined;
|
|
@@ -2758,6 +2828,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2758
2828
|
} | undefined;
|
|
2759
2829
|
createChallenge?: string | {
|
|
2760
2830
|
file: string;
|
|
2831
|
+
description?: string | undefined;
|
|
2761
2832
|
handler?: string | undefined;
|
|
2762
2833
|
minify?: boolean | undefined;
|
|
2763
2834
|
warm?: number | undefined;
|
|
@@ -2788,6 +2859,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2788
2859
|
} | undefined;
|
|
2789
2860
|
verifyChallenge?: string | {
|
|
2790
2861
|
file: string;
|
|
2862
|
+
description?: string | undefined;
|
|
2791
2863
|
handler?: string | undefined;
|
|
2792
2864
|
minify?: boolean | undefined;
|
|
2793
2865
|
warm?: number | undefined;
|
|
@@ -2881,6 +2953,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2881
2953
|
triggers?: {
|
|
2882
2954
|
beforeToken?: string | {
|
|
2883
2955
|
file: string;
|
|
2956
|
+
description?: string | undefined;
|
|
2884
2957
|
handler?: string | undefined;
|
|
2885
2958
|
minify?: boolean | undefined;
|
|
2886
2959
|
warm?: number | undefined;
|
|
@@ -2911,6 +2984,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2911
2984
|
} | undefined;
|
|
2912
2985
|
beforeLogin?: string | {
|
|
2913
2986
|
file: string;
|
|
2987
|
+
description?: string | undefined;
|
|
2914
2988
|
handler?: string | undefined;
|
|
2915
2989
|
minify?: boolean | undefined;
|
|
2916
2990
|
warm?: number | undefined;
|
|
@@ -2941,6 +3015,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2941
3015
|
} | undefined;
|
|
2942
3016
|
afterLogin?: string | {
|
|
2943
3017
|
file: string;
|
|
3018
|
+
description?: string | undefined;
|
|
2944
3019
|
handler?: string | undefined;
|
|
2945
3020
|
minify?: boolean | undefined;
|
|
2946
3021
|
warm?: number | undefined;
|
|
@@ -2971,6 +3046,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
2971
3046
|
} | undefined;
|
|
2972
3047
|
beforeRegister?: string | {
|
|
2973
3048
|
file: string;
|
|
3049
|
+
description?: string | undefined;
|
|
2974
3050
|
handler?: string | undefined;
|
|
2975
3051
|
minify?: boolean | undefined;
|
|
2976
3052
|
warm?: number | undefined;
|
|
@@ -3001,6 +3077,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3001
3077
|
} | undefined;
|
|
3002
3078
|
afterRegister?: string | {
|
|
3003
3079
|
file: string;
|
|
3080
|
+
description?: string | undefined;
|
|
3004
3081
|
handler?: string | undefined;
|
|
3005
3082
|
minify?: boolean | undefined;
|
|
3006
3083
|
warm?: number | undefined;
|
|
@@ -3031,6 +3108,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3031
3108
|
} | undefined;
|
|
3032
3109
|
customMessage?: string | {
|
|
3033
3110
|
file: string;
|
|
3111
|
+
description?: string | undefined;
|
|
3034
3112
|
handler?: string | undefined;
|
|
3035
3113
|
minify?: boolean | undefined;
|
|
3036
3114
|
warm?: number | undefined;
|
|
@@ -3061,6 +3139,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3061
3139
|
} | undefined;
|
|
3062
3140
|
defineChallenge?: string | {
|
|
3063
3141
|
file: string;
|
|
3142
|
+
description?: string | undefined;
|
|
3064
3143
|
handler?: string | undefined;
|
|
3065
3144
|
minify?: boolean | undefined;
|
|
3066
3145
|
warm?: number | undefined;
|
|
@@ -3091,6 +3170,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3091
3170
|
} | undefined;
|
|
3092
3171
|
createChallenge?: string | {
|
|
3093
3172
|
file: string;
|
|
3173
|
+
description?: string | undefined;
|
|
3094
3174
|
handler?: string | undefined;
|
|
3095
3175
|
minify?: boolean | undefined;
|
|
3096
3176
|
warm?: number | undefined;
|
|
@@ -3121,6 +3201,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3121
3201
|
} | undefined;
|
|
3122
3202
|
verifyChallenge?: string | {
|
|
3123
3203
|
file: string;
|
|
3204
|
+
description?: string | undefined;
|
|
3124
3205
|
handler?: string | undefined;
|
|
3125
3206
|
minify?: boolean | undefined;
|
|
3126
3207
|
warm?: number | undefined;
|
|
@@ -3282,6 +3363,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3282
3363
|
triggers?: {
|
|
3283
3364
|
beforeToken?: string | {
|
|
3284
3365
|
file: string;
|
|
3366
|
+
description?: string | undefined;
|
|
3285
3367
|
handler?: string | undefined;
|
|
3286
3368
|
minify?: boolean | undefined;
|
|
3287
3369
|
warm?: number | undefined;
|
|
@@ -3312,6 +3394,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3312
3394
|
} | undefined;
|
|
3313
3395
|
beforeLogin?: string | {
|
|
3314
3396
|
file: string;
|
|
3397
|
+
description?: string | undefined;
|
|
3315
3398
|
handler?: string | undefined;
|
|
3316
3399
|
minify?: boolean | undefined;
|
|
3317
3400
|
warm?: number | undefined;
|
|
@@ -3342,6 +3425,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3342
3425
|
} | undefined;
|
|
3343
3426
|
afterLogin?: string | {
|
|
3344
3427
|
file: string;
|
|
3428
|
+
description?: string | undefined;
|
|
3345
3429
|
handler?: string | undefined;
|
|
3346
3430
|
minify?: boolean | undefined;
|
|
3347
3431
|
warm?: number | undefined;
|
|
@@ -3372,6 +3456,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3372
3456
|
} | undefined;
|
|
3373
3457
|
beforeRegister?: string | {
|
|
3374
3458
|
file: string;
|
|
3459
|
+
description?: string | undefined;
|
|
3375
3460
|
handler?: string | undefined;
|
|
3376
3461
|
minify?: boolean | undefined;
|
|
3377
3462
|
warm?: number | undefined;
|
|
@@ -3402,6 +3487,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3402
3487
|
} | undefined;
|
|
3403
3488
|
afterRegister?: string | {
|
|
3404
3489
|
file: string;
|
|
3490
|
+
description?: string | undefined;
|
|
3405
3491
|
handler?: string | undefined;
|
|
3406
3492
|
minify?: boolean | undefined;
|
|
3407
3493
|
warm?: number | undefined;
|
|
@@ -3432,6 +3518,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3432
3518
|
} | undefined;
|
|
3433
3519
|
customMessage?: string | {
|
|
3434
3520
|
file: string;
|
|
3521
|
+
description?: string | undefined;
|
|
3435
3522
|
handler?: string | undefined;
|
|
3436
3523
|
minify?: boolean | undefined;
|
|
3437
3524
|
warm?: number | undefined;
|
|
@@ -3462,6 +3549,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3462
3549
|
} | undefined;
|
|
3463
3550
|
defineChallenge?: string | {
|
|
3464
3551
|
file: string;
|
|
3552
|
+
description?: string | undefined;
|
|
3465
3553
|
handler?: string | undefined;
|
|
3466
3554
|
minify?: boolean | undefined;
|
|
3467
3555
|
warm?: number | undefined;
|
|
@@ -3492,6 +3580,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3492
3580
|
} | undefined;
|
|
3493
3581
|
createChallenge?: string | {
|
|
3494
3582
|
file: string;
|
|
3583
|
+
description?: string | undefined;
|
|
3495
3584
|
handler?: string | undefined;
|
|
3496
3585
|
minify?: boolean | undefined;
|
|
3497
3586
|
warm?: number | undefined;
|
|
@@ -3522,6 +3611,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3522
3611
|
} | undefined;
|
|
3523
3612
|
verifyChallenge?: string | {
|
|
3524
3613
|
file: string;
|
|
3614
|
+
description?: string | undefined;
|
|
3525
3615
|
handler?: string | undefined;
|
|
3526
3616
|
minify?: boolean | undefined;
|
|
3527
3617
|
warm?: number | undefined;
|
|
@@ -3622,6 +3712,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3622
3712
|
triggers?: {
|
|
3623
3713
|
beforeToken?: string | {
|
|
3624
3714
|
file: string;
|
|
3715
|
+
description?: string | undefined;
|
|
3625
3716
|
handler?: string | undefined;
|
|
3626
3717
|
minify?: boolean | undefined;
|
|
3627
3718
|
warm?: number | undefined;
|
|
@@ -3652,6 +3743,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3652
3743
|
} | undefined;
|
|
3653
3744
|
beforeLogin?: string | {
|
|
3654
3745
|
file: string;
|
|
3746
|
+
description?: string | undefined;
|
|
3655
3747
|
handler?: string | undefined;
|
|
3656
3748
|
minify?: boolean | undefined;
|
|
3657
3749
|
warm?: number | undefined;
|
|
@@ -3682,6 +3774,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3682
3774
|
} | undefined;
|
|
3683
3775
|
afterLogin?: string | {
|
|
3684
3776
|
file: string;
|
|
3777
|
+
description?: string | undefined;
|
|
3685
3778
|
handler?: string | undefined;
|
|
3686
3779
|
minify?: boolean | undefined;
|
|
3687
3780
|
warm?: number | undefined;
|
|
@@ -3712,6 +3805,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3712
3805
|
} | undefined;
|
|
3713
3806
|
beforeRegister?: string | {
|
|
3714
3807
|
file: string;
|
|
3808
|
+
description?: string | undefined;
|
|
3715
3809
|
handler?: string | undefined;
|
|
3716
3810
|
minify?: boolean | undefined;
|
|
3717
3811
|
warm?: number | undefined;
|
|
@@ -3742,6 +3836,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3742
3836
|
} | undefined;
|
|
3743
3837
|
afterRegister?: string | {
|
|
3744
3838
|
file: string;
|
|
3839
|
+
description?: string | undefined;
|
|
3745
3840
|
handler?: string | undefined;
|
|
3746
3841
|
minify?: boolean | undefined;
|
|
3747
3842
|
warm?: number | undefined;
|
|
@@ -3772,6 +3867,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3772
3867
|
} | undefined;
|
|
3773
3868
|
customMessage?: string | {
|
|
3774
3869
|
file: string;
|
|
3870
|
+
description?: string | undefined;
|
|
3775
3871
|
handler?: string | undefined;
|
|
3776
3872
|
minify?: boolean | undefined;
|
|
3777
3873
|
warm?: number | undefined;
|
|
@@ -3802,6 +3898,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3802
3898
|
} | undefined;
|
|
3803
3899
|
defineChallenge?: string | {
|
|
3804
3900
|
file: string;
|
|
3901
|
+
description?: string | undefined;
|
|
3805
3902
|
handler?: string | undefined;
|
|
3806
3903
|
minify?: boolean | undefined;
|
|
3807
3904
|
warm?: number | undefined;
|
|
@@ -3832,6 +3929,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3832
3929
|
} | undefined;
|
|
3833
3930
|
createChallenge?: string | {
|
|
3834
3931
|
file: string;
|
|
3932
|
+
description?: string | undefined;
|
|
3835
3933
|
handler?: string | undefined;
|
|
3836
3934
|
minify?: boolean | undefined;
|
|
3837
3935
|
warm?: number | undefined;
|
|
@@ -3862,6 +3960,7 @@ declare const AppSchema: z.ZodObject<{
|
|
|
3862
3960
|
} | undefined;
|
|
3863
3961
|
verifyChallenge?: string | {
|
|
3864
3962
|
file: string;
|
|
3963
|
+
description?: string | undefined;
|
|
3865
3964
|
handler?: string | undefined;
|
|
3866
3965
|
minify?: boolean | undefined;
|
|
3867
3966
|
warm?: number | undefined;
|
|
@@ -3965,6 +4064,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
3965
4064
|
depends: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
3966
4065
|
onFailure: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
3967
4066
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4067
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3968
4068
|
handler: z.ZodOptional<z.ZodString>;
|
|
3969
4069
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
3970
4070
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4020,6 +4120,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4020
4120
|
}>, "many">]>>;
|
|
4021
4121
|
}, "strip", z.ZodTypeAny, {
|
|
4022
4122
|
file: string;
|
|
4123
|
+
description?: string | undefined;
|
|
4023
4124
|
handler?: string | undefined;
|
|
4024
4125
|
minify?: boolean | undefined;
|
|
4025
4126
|
warm?: number | undefined;
|
|
@@ -4049,6 +4150,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4049
4150
|
}[] | undefined;
|
|
4050
4151
|
}, {
|
|
4051
4152
|
file: string;
|
|
4153
|
+
description?: string | undefined;
|
|
4052
4154
|
handler?: string | undefined;
|
|
4053
4155
|
minify?: boolean | undefined;
|
|
4054
4156
|
warm?: number | undefined;
|
|
@@ -4078,9 +4180,11 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4078
4180
|
}[] | undefined;
|
|
4079
4181
|
}>]>>;
|
|
4080
4182
|
auth: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
|
|
4183
|
+
access: z.ZodDefault<z.ZodBoolean>;
|
|
4081
4184
|
triggers: z.ZodOptional<z.ZodObject<{
|
|
4082
4185
|
beforeToken: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4083
4186
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4187
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4084
4188
|
handler: z.ZodOptional<z.ZodString>;
|
|
4085
4189
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4086
4190
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4136,6 +4240,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4136
4240
|
}>, "many">]>>;
|
|
4137
4241
|
}, "strip", z.ZodTypeAny, {
|
|
4138
4242
|
file: string;
|
|
4243
|
+
description?: string | undefined;
|
|
4139
4244
|
handler?: string | undefined;
|
|
4140
4245
|
minify?: boolean | undefined;
|
|
4141
4246
|
warm?: number | undefined;
|
|
@@ -4165,6 +4270,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4165
4270
|
}[] | undefined;
|
|
4166
4271
|
}, {
|
|
4167
4272
|
file: string;
|
|
4273
|
+
description?: string | undefined;
|
|
4168
4274
|
handler?: string | undefined;
|
|
4169
4275
|
minify?: boolean | undefined;
|
|
4170
4276
|
warm?: number | undefined;
|
|
@@ -4195,6 +4301,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4195
4301
|
}>]>>;
|
|
4196
4302
|
beforeLogin: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4197
4303
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4304
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4198
4305
|
handler: z.ZodOptional<z.ZodString>;
|
|
4199
4306
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4200
4307
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4250,6 +4357,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4250
4357
|
}>, "many">]>>;
|
|
4251
4358
|
}, "strip", z.ZodTypeAny, {
|
|
4252
4359
|
file: string;
|
|
4360
|
+
description?: string | undefined;
|
|
4253
4361
|
handler?: string | undefined;
|
|
4254
4362
|
minify?: boolean | undefined;
|
|
4255
4363
|
warm?: number | undefined;
|
|
@@ -4279,6 +4387,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4279
4387
|
}[] | undefined;
|
|
4280
4388
|
}, {
|
|
4281
4389
|
file: string;
|
|
4390
|
+
description?: string | undefined;
|
|
4282
4391
|
handler?: string | undefined;
|
|
4283
4392
|
minify?: boolean | undefined;
|
|
4284
4393
|
warm?: number | undefined;
|
|
@@ -4309,6 +4418,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4309
4418
|
}>]>>;
|
|
4310
4419
|
afterLogin: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4311
4420
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4421
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4312
4422
|
handler: z.ZodOptional<z.ZodString>;
|
|
4313
4423
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4314
4424
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4364,6 +4474,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4364
4474
|
}>, "many">]>>;
|
|
4365
4475
|
}, "strip", z.ZodTypeAny, {
|
|
4366
4476
|
file: string;
|
|
4477
|
+
description?: string | undefined;
|
|
4367
4478
|
handler?: string | undefined;
|
|
4368
4479
|
minify?: boolean | undefined;
|
|
4369
4480
|
warm?: number | undefined;
|
|
@@ -4393,6 +4504,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4393
4504
|
}[] | undefined;
|
|
4394
4505
|
}, {
|
|
4395
4506
|
file: string;
|
|
4507
|
+
description?: string | undefined;
|
|
4396
4508
|
handler?: string | undefined;
|
|
4397
4509
|
minify?: boolean | undefined;
|
|
4398
4510
|
warm?: number | undefined;
|
|
@@ -4423,6 +4535,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4423
4535
|
}>]>>;
|
|
4424
4536
|
beforeRegister: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4425
4537
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4538
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4426
4539
|
handler: z.ZodOptional<z.ZodString>;
|
|
4427
4540
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4428
4541
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4478,6 +4591,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4478
4591
|
}>, "many">]>>;
|
|
4479
4592
|
}, "strip", z.ZodTypeAny, {
|
|
4480
4593
|
file: string;
|
|
4594
|
+
description?: string | undefined;
|
|
4481
4595
|
handler?: string | undefined;
|
|
4482
4596
|
minify?: boolean | undefined;
|
|
4483
4597
|
warm?: number | undefined;
|
|
@@ -4507,6 +4621,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4507
4621
|
}[] | undefined;
|
|
4508
4622
|
}, {
|
|
4509
4623
|
file: string;
|
|
4624
|
+
description?: string | undefined;
|
|
4510
4625
|
handler?: string | undefined;
|
|
4511
4626
|
minify?: boolean | undefined;
|
|
4512
4627
|
warm?: number | undefined;
|
|
@@ -4537,6 +4652,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4537
4652
|
}>]>>;
|
|
4538
4653
|
afterRegister: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4539
4654
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4655
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4540
4656
|
handler: z.ZodOptional<z.ZodString>;
|
|
4541
4657
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4542
4658
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4592,6 +4708,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4592
4708
|
}>, "many">]>>;
|
|
4593
4709
|
}, "strip", z.ZodTypeAny, {
|
|
4594
4710
|
file: string;
|
|
4711
|
+
description?: string | undefined;
|
|
4595
4712
|
handler?: string | undefined;
|
|
4596
4713
|
minify?: boolean | undefined;
|
|
4597
4714
|
warm?: number | undefined;
|
|
@@ -4621,6 +4738,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4621
4738
|
}[] | undefined;
|
|
4622
4739
|
}, {
|
|
4623
4740
|
file: string;
|
|
4741
|
+
description?: string | undefined;
|
|
4624
4742
|
handler?: string | undefined;
|
|
4625
4743
|
minify?: boolean | undefined;
|
|
4626
4744
|
warm?: number | undefined;
|
|
@@ -4651,6 +4769,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4651
4769
|
}>]>>;
|
|
4652
4770
|
customMessage: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4653
4771
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4772
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4654
4773
|
handler: z.ZodOptional<z.ZodString>;
|
|
4655
4774
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4656
4775
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4706,6 +4825,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4706
4825
|
}>, "many">]>>;
|
|
4707
4826
|
}, "strip", z.ZodTypeAny, {
|
|
4708
4827
|
file: string;
|
|
4828
|
+
description?: string | undefined;
|
|
4709
4829
|
handler?: string | undefined;
|
|
4710
4830
|
minify?: boolean | undefined;
|
|
4711
4831
|
warm?: number | undefined;
|
|
@@ -4735,6 +4855,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4735
4855
|
}[] | undefined;
|
|
4736
4856
|
}, {
|
|
4737
4857
|
file: string;
|
|
4858
|
+
description?: string | undefined;
|
|
4738
4859
|
handler?: string | undefined;
|
|
4739
4860
|
minify?: boolean | undefined;
|
|
4740
4861
|
warm?: number | undefined;
|
|
@@ -4765,6 +4886,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4765
4886
|
}>]>>;
|
|
4766
4887
|
defineChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4767
4888
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4889
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4768
4890
|
handler: z.ZodOptional<z.ZodString>;
|
|
4769
4891
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4770
4892
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4820,6 +4942,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4820
4942
|
}>, "many">]>>;
|
|
4821
4943
|
}, "strip", z.ZodTypeAny, {
|
|
4822
4944
|
file: string;
|
|
4945
|
+
description?: string | undefined;
|
|
4823
4946
|
handler?: string | undefined;
|
|
4824
4947
|
minify?: boolean | undefined;
|
|
4825
4948
|
warm?: number | undefined;
|
|
@@ -4849,6 +4972,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4849
4972
|
}[] | undefined;
|
|
4850
4973
|
}, {
|
|
4851
4974
|
file: string;
|
|
4975
|
+
description?: string | undefined;
|
|
4852
4976
|
handler?: string | undefined;
|
|
4853
4977
|
minify?: boolean | undefined;
|
|
4854
4978
|
warm?: number | undefined;
|
|
@@ -4879,6 +5003,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4879
5003
|
}>]>>;
|
|
4880
5004
|
createChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4881
5005
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
5006
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4882
5007
|
handler: z.ZodOptional<z.ZodString>;
|
|
4883
5008
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4884
5009
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4934,6 +5059,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4934
5059
|
}>, "many">]>>;
|
|
4935
5060
|
}, "strip", z.ZodTypeAny, {
|
|
4936
5061
|
file: string;
|
|
5062
|
+
description?: string | undefined;
|
|
4937
5063
|
handler?: string | undefined;
|
|
4938
5064
|
minify?: boolean | undefined;
|
|
4939
5065
|
warm?: number | undefined;
|
|
@@ -4963,6 +5089,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4963
5089
|
}[] | undefined;
|
|
4964
5090
|
}, {
|
|
4965
5091
|
file: string;
|
|
5092
|
+
description?: string | undefined;
|
|
4966
5093
|
handler?: string | undefined;
|
|
4967
5094
|
minify?: boolean | undefined;
|
|
4968
5095
|
warm?: number | undefined;
|
|
@@ -4993,6 +5120,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4993
5120
|
}>]>>;
|
|
4994
5121
|
verifyChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4995
5122
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
5123
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4996
5124
|
handler: z.ZodOptional<z.ZodString>;
|
|
4997
5125
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4998
5126
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5048,6 +5176,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5048
5176
|
}>, "many">]>>;
|
|
5049
5177
|
}, "strip", z.ZodTypeAny, {
|
|
5050
5178
|
file: string;
|
|
5179
|
+
description?: string | undefined;
|
|
5051
5180
|
handler?: string | undefined;
|
|
5052
5181
|
minify?: boolean | undefined;
|
|
5053
5182
|
warm?: number | undefined;
|
|
@@ -5077,6 +5206,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5077
5206
|
}[] | undefined;
|
|
5078
5207
|
}, {
|
|
5079
5208
|
file: string;
|
|
5209
|
+
description?: string | undefined;
|
|
5080
5210
|
handler?: string | undefined;
|
|
5081
5211
|
minify?: boolean | undefined;
|
|
5082
5212
|
warm?: number | undefined;
|
|
@@ -5108,6 +5238,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5108
5238
|
}, "strip", z.ZodTypeAny, {
|
|
5109
5239
|
beforeToken?: string | {
|
|
5110
5240
|
file: string;
|
|
5241
|
+
description?: string | undefined;
|
|
5111
5242
|
handler?: string | undefined;
|
|
5112
5243
|
minify?: boolean | undefined;
|
|
5113
5244
|
warm?: number | undefined;
|
|
@@ -5138,6 +5269,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5138
5269
|
} | undefined;
|
|
5139
5270
|
beforeLogin?: string | {
|
|
5140
5271
|
file: string;
|
|
5272
|
+
description?: string | undefined;
|
|
5141
5273
|
handler?: string | undefined;
|
|
5142
5274
|
minify?: boolean | undefined;
|
|
5143
5275
|
warm?: number | undefined;
|
|
@@ -5168,6 +5300,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5168
5300
|
} | undefined;
|
|
5169
5301
|
afterLogin?: string | {
|
|
5170
5302
|
file: string;
|
|
5303
|
+
description?: string | undefined;
|
|
5171
5304
|
handler?: string | undefined;
|
|
5172
5305
|
minify?: boolean | undefined;
|
|
5173
5306
|
warm?: number | undefined;
|
|
@@ -5198,6 +5331,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5198
5331
|
} | undefined;
|
|
5199
5332
|
beforeRegister?: string | {
|
|
5200
5333
|
file: string;
|
|
5334
|
+
description?: string | undefined;
|
|
5201
5335
|
handler?: string | undefined;
|
|
5202
5336
|
minify?: boolean | undefined;
|
|
5203
5337
|
warm?: number | undefined;
|
|
@@ -5228,6 +5362,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5228
5362
|
} | undefined;
|
|
5229
5363
|
afterRegister?: string | {
|
|
5230
5364
|
file: string;
|
|
5365
|
+
description?: string | undefined;
|
|
5231
5366
|
handler?: string | undefined;
|
|
5232
5367
|
minify?: boolean | undefined;
|
|
5233
5368
|
warm?: number | undefined;
|
|
@@ -5258,6 +5393,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5258
5393
|
} | undefined;
|
|
5259
5394
|
customMessage?: string | {
|
|
5260
5395
|
file: string;
|
|
5396
|
+
description?: string | undefined;
|
|
5261
5397
|
handler?: string | undefined;
|
|
5262
5398
|
minify?: boolean | undefined;
|
|
5263
5399
|
warm?: number | undefined;
|
|
@@ -5288,6 +5424,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5288
5424
|
} | undefined;
|
|
5289
5425
|
defineChallenge?: string | {
|
|
5290
5426
|
file: string;
|
|
5427
|
+
description?: string | undefined;
|
|
5291
5428
|
handler?: string | undefined;
|
|
5292
5429
|
minify?: boolean | undefined;
|
|
5293
5430
|
warm?: number | undefined;
|
|
@@ -5318,6 +5455,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5318
5455
|
} | undefined;
|
|
5319
5456
|
createChallenge?: string | {
|
|
5320
5457
|
file: string;
|
|
5458
|
+
description?: string | undefined;
|
|
5321
5459
|
handler?: string | undefined;
|
|
5322
5460
|
minify?: boolean | undefined;
|
|
5323
5461
|
warm?: number | undefined;
|
|
@@ -5348,6 +5486,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5348
5486
|
} | undefined;
|
|
5349
5487
|
verifyChallenge?: string | {
|
|
5350
5488
|
file: string;
|
|
5489
|
+
description?: string | undefined;
|
|
5351
5490
|
handler?: string | undefined;
|
|
5352
5491
|
minify?: boolean | undefined;
|
|
5353
5492
|
warm?: number | undefined;
|
|
@@ -5379,6 +5518,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5379
5518
|
}, {
|
|
5380
5519
|
beforeToken?: string | {
|
|
5381
5520
|
file: string;
|
|
5521
|
+
description?: string | undefined;
|
|
5382
5522
|
handler?: string | undefined;
|
|
5383
5523
|
minify?: boolean | undefined;
|
|
5384
5524
|
warm?: number | undefined;
|
|
@@ -5409,6 +5549,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5409
5549
|
} | undefined;
|
|
5410
5550
|
beforeLogin?: string | {
|
|
5411
5551
|
file: string;
|
|
5552
|
+
description?: string | undefined;
|
|
5412
5553
|
handler?: string | undefined;
|
|
5413
5554
|
minify?: boolean | undefined;
|
|
5414
5555
|
warm?: number | undefined;
|
|
@@ -5439,6 +5580,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5439
5580
|
} | undefined;
|
|
5440
5581
|
afterLogin?: string | {
|
|
5441
5582
|
file: string;
|
|
5583
|
+
description?: string | undefined;
|
|
5442
5584
|
handler?: string | undefined;
|
|
5443
5585
|
minify?: boolean | undefined;
|
|
5444
5586
|
warm?: number | undefined;
|
|
@@ -5469,6 +5611,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5469
5611
|
} | undefined;
|
|
5470
5612
|
beforeRegister?: string | {
|
|
5471
5613
|
file: string;
|
|
5614
|
+
description?: string | undefined;
|
|
5472
5615
|
handler?: string | undefined;
|
|
5473
5616
|
minify?: boolean | undefined;
|
|
5474
5617
|
warm?: number | undefined;
|
|
@@ -5499,6 +5642,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5499
5642
|
} | undefined;
|
|
5500
5643
|
afterRegister?: string | {
|
|
5501
5644
|
file: string;
|
|
5645
|
+
description?: string | undefined;
|
|
5502
5646
|
handler?: string | undefined;
|
|
5503
5647
|
minify?: boolean | undefined;
|
|
5504
5648
|
warm?: number | undefined;
|
|
@@ -5529,6 +5673,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5529
5673
|
} | undefined;
|
|
5530
5674
|
customMessage?: string | {
|
|
5531
5675
|
file: string;
|
|
5676
|
+
description?: string | undefined;
|
|
5532
5677
|
handler?: string | undefined;
|
|
5533
5678
|
minify?: boolean | undefined;
|
|
5534
5679
|
warm?: number | undefined;
|
|
@@ -5559,6 +5704,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5559
5704
|
} | undefined;
|
|
5560
5705
|
defineChallenge?: string | {
|
|
5561
5706
|
file: string;
|
|
5707
|
+
description?: string | undefined;
|
|
5562
5708
|
handler?: string | undefined;
|
|
5563
5709
|
minify?: boolean | undefined;
|
|
5564
5710
|
warm?: number | undefined;
|
|
@@ -5589,6 +5735,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5589
5735
|
} | undefined;
|
|
5590
5736
|
createChallenge?: string | {
|
|
5591
5737
|
file: string;
|
|
5738
|
+
description?: string | undefined;
|
|
5592
5739
|
handler?: string | undefined;
|
|
5593
5740
|
minify?: boolean | undefined;
|
|
5594
5741
|
warm?: number | undefined;
|
|
@@ -5619,6 +5766,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5619
5766
|
} | undefined;
|
|
5620
5767
|
verifyChallenge?: string | {
|
|
5621
5768
|
file: string;
|
|
5769
|
+
description?: string | undefined;
|
|
5622
5770
|
handler?: string | undefined;
|
|
5623
5771
|
minify?: boolean | undefined;
|
|
5624
5772
|
warm?: number | undefined;
|
|
@@ -5649,9 +5797,11 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5649
5797
|
} | undefined;
|
|
5650
5798
|
}>>;
|
|
5651
5799
|
}, "strip", z.ZodTypeAny, {
|
|
5800
|
+
access: boolean;
|
|
5652
5801
|
triggers?: {
|
|
5653
5802
|
beforeToken?: string | {
|
|
5654
5803
|
file: string;
|
|
5804
|
+
description?: string | undefined;
|
|
5655
5805
|
handler?: string | undefined;
|
|
5656
5806
|
minify?: boolean | undefined;
|
|
5657
5807
|
warm?: number | undefined;
|
|
@@ -5682,6 +5832,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5682
5832
|
} | undefined;
|
|
5683
5833
|
beforeLogin?: string | {
|
|
5684
5834
|
file: string;
|
|
5835
|
+
description?: string | undefined;
|
|
5685
5836
|
handler?: string | undefined;
|
|
5686
5837
|
minify?: boolean | undefined;
|
|
5687
5838
|
warm?: number | undefined;
|
|
@@ -5712,6 +5863,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5712
5863
|
} | undefined;
|
|
5713
5864
|
afterLogin?: string | {
|
|
5714
5865
|
file: string;
|
|
5866
|
+
description?: string | undefined;
|
|
5715
5867
|
handler?: string | undefined;
|
|
5716
5868
|
minify?: boolean | undefined;
|
|
5717
5869
|
warm?: number | undefined;
|
|
@@ -5742,6 +5894,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5742
5894
|
} | undefined;
|
|
5743
5895
|
beforeRegister?: string | {
|
|
5744
5896
|
file: string;
|
|
5897
|
+
description?: string | undefined;
|
|
5745
5898
|
handler?: string | undefined;
|
|
5746
5899
|
minify?: boolean | undefined;
|
|
5747
5900
|
warm?: number | undefined;
|
|
@@ -5772,6 +5925,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5772
5925
|
} | undefined;
|
|
5773
5926
|
afterRegister?: string | {
|
|
5774
5927
|
file: string;
|
|
5928
|
+
description?: string | undefined;
|
|
5775
5929
|
handler?: string | undefined;
|
|
5776
5930
|
minify?: boolean | undefined;
|
|
5777
5931
|
warm?: number | undefined;
|
|
@@ -5802,6 +5956,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5802
5956
|
} | undefined;
|
|
5803
5957
|
customMessage?: string | {
|
|
5804
5958
|
file: string;
|
|
5959
|
+
description?: string | undefined;
|
|
5805
5960
|
handler?: string | undefined;
|
|
5806
5961
|
minify?: boolean | undefined;
|
|
5807
5962
|
warm?: number | undefined;
|
|
@@ -5832,6 +5987,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5832
5987
|
} | undefined;
|
|
5833
5988
|
defineChallenge?: string | {
|
|
5834
5989
|
file: string;
|
|
5990
|
+
description?: string | undefined;
|
|
5835
5991
|
handler?: string | undefined;
|
|
5836
5992
|
minify?: boolean | undefined;
|
|
5837
5993
|
warm?: number | undefined;
|
|
@@ -5862,6 +6018,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5862
6018
|
} | undefined;
|
|
5863
6019
|
createChallenge?: string | {
|
|
5864
6020
|
file: string;
|
|
6021
|
+
description?: string | undefined;
|
|
5865
6022
|
handler?: string | undefined;
|
|
5866
6023
|
minify?: boolean | undefined;
|
|
5867
6024
|
warm?: number | undefined;
|
|
@@ -5892,6 +6049,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5892
6049
|
} | undefined;
|
|
5893
6050
|
verifyChallenge?: string | {
|
|
5894
6051
|
file: string;
|
|
6052
|
+
description?: string | undefined;
|
|
5895
6053
|
handler?: string | undefined;
|
|
5896
6054
|
minify?: boolean | undefined;
|
|
5897
6055
|
warm?: number | undefined;
|
|
@@ -5922,9 +6080,11 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5922
6080
|
} | undefined;
|
|
5923
6081
|
} | undefined;
|
|
5924
6082
|
}, {
|
|
6083
|
+
access?: boolean | undefined;
|
|
5925
6084
|
triggers?: {
|
|
5926
6085
|
beforeToken?: string | {
|
|
5927
6086
|
file: string;
|
|
6087
|
+
description?: string | undefined;
|
|
5928
6088
|
handler?: string | undefined;
|
|
5929
6089
|
minify?: boolean | undefined;
|
|
5930
6090
|
warm?: number | undefined;
|
|
@@ -5955,6 +6115,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5955
6115
|
} | undefined;
|
|
5956
6116
|
beforeLogin?: string | {
|
|
5957
6117
|
file: string;
|
|
6118
|
+
description?: string | undefined;
|
|
5958
6119
|
handler?: string | undefined;
|
|
5959
6120
|
minify?: boolean | undefined;
|
|
5960
6121
|
warm?: number | undefined;
|
|
@@ -5985,6 +6146,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5985
6146
|
} | undefined;
|
|
5986
6147
|
afterLogin?: string | {
|
|
5987
6148
|
file: string;
|
|
6149
|
+
description?: string | undefined;
|
|
5988
6150
|
handler?: string | undefined;
|
|
5989
6151
|
minify?: boolean | undefined;
|
|
5990
6152
|
warm?: number | undefined;
|
|
@@ -6015,6 +6177,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6015
6177
|
} | undefined;
|
|
6016
6178
|
beforeRegister?: string | {
|
|
6017
6179
|
file: string;
|
|
6180
|
+
description?: string | undefined;
|
|
6018
6181
|
handler?: string | undefined;
|
|
6019
6182
|
minify?: boolean | undefined;
|
|
6020
6183
|
warm?: number | undefined;
|
|
@@ -6045,6 +6208,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6045
6208
|
} | undefined;
|
|
6046
6209
|
afterRegister?: string | {
|
|
6047
6210
|
file: string;
|
|
6211
|
+
description?: string | undefined;
|
|
6048
6212
|
handler?: string | undefined;
|
|
6049
6213
|
minify?: boolean | undefined;
|
|
6050
6214
|
warm?: number | undefined;
|
|
@@ -6075,6 +6239,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6075
6239
|
} | undefined;
|
|
6076
6240
|
customMessage?: string | {
|
|
6077
6241
|
file: string;
|
|
6242
|
+
description?: string | undefined;
|
|
6078
6243
|
handler?: string | undefined;
|
|
6079
6244
|
minify?: boolean | undefined;
|
|
6080
6245
|
warm?: number | undefined;
|
|
@@ -6105,6 +6270,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6105
6270
|
} | undefined;
|
|
6106
6271
|
defineChallenge?: string | {
|
|
6107
6272
|
file: string;
|
|
6273
|
+
description?: string | undefined;
|
|
6108
6274
|
handler?: string | undefined;
|
|
6109
6275
|
minify?: boolean | undefined;
|
|
6110
6276
|
warm?: number | undefined;
|
|
@@ -6135,6 +6301,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6135
6301
|
} | undefined;
|
|
6136
6302
|
createChallenge?: string | {
|
|
6137
6303
|
file: string;
|
|
6304
|
+
description?: string | undefined;
|
|
6138
6305
|
handler?: string | undefined;
|
|
6139
6306
|
minify?: boolean | undefined;
|
|
6140
6307
|
warm?: number | undefined;
|
|
@@ -6165,6 +6332,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6165
6332
|
} | undefined;
|
|
6166
6333
|
verifyChallenge?: string | {
|
|
6167
6334
|
file: string;
|
|
6335
|
+
description?: string | undefined;
|
|
6168
6336
|
handler?: string | undefined;
|
|
6169
6337
|
minify?: boolean | undefined;
|
|
6170
6338
|
warm?: number | undefined;
|
|
@@ -6199,6 +6367,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6199
6367
|
schema: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">]>>;
|
|
6200
6368
|
resolvers: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6201
6369
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6370
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6202
6371
|
handler: z.ZodOptional<z.ZodString>;
|
|
6203
6372
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6204
6373
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6254,6 +6423,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6254
6423
|
}>, "many">]>>;
|
|
6255
6424
|
}, "strip", z.ZodTypeAny, {
|
|
6256
6425
|
file: string;
|
|
6426
|
+
description?: string | undefined;
|
|
6257
6427
|
handler?: string | undefined;
|
|
6258
6428
|
minify?: boolean | undefined;
|
|
6259
6429
|
warm?: number | undefined;
|
|
@@ -6283,6 +6453,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6283
6453
|
}[] | undefined;
|
|
6284
6454
|
}, {
|
|
6285
6455
|
file: string;
|
|
6456
|
+
description?: string | undefined;
|
|
6286
6457
|
handler?: string | undefined;
|
|
6287
6458
|
minify?: boolean | undefined;
|
|
6288
6459
|
warm?: number | undefined;
|
|
@@ -6313,6 +6484,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6313
6484
|
}>]>, z.ZodObject<{
|
|
6314
6485
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6315
6486
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6487
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6316
6488
|
handler: z.ZodOptional<z.ZodString>;
|
|
6317
6489
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6318
6490
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6368,6 +6540,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6368
6540
|
}>, "many">]>>;
|
|
6369
6541
|
}, "strip", z.ZodTypeAny, {
|
|
6370
6542
|
file: string;
|
|
6543
|
+
description?: string | undefined;
|
|
6371
6544
|
handler?: string | undefined;
|
|
6372
6545
|
minify?: boolean | undefined;
|
|
6373
6546
|
warm?: number | undefined;
|
|
@@ -6397,6 +6570,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6397
6570
|
}[] | undefined;
|
|
6398
6571
|
}, {
|
|
6399
6572
|
file: string;
|
|
6573
|
+
description?: string | undefined;
|
|
6400
6574
|
handler?: string | undefined;
|
|
6401
6575
|
minify?: boolean | undefined;
|
|
6402
6576
|
warm?: number | undefined;
|
|
@@ -6429,6 +6603,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6429
6603
|
}, "strip", z.ZodTypeAny, {
|
|
6430
6604
|
consumer: (string | {
|
|
6431
6605
|
file: string;
|
|
6606
|
+
description?: string | undefined;
|
|
6432
6607
|
handler?: string | undefined;
|
|
6433
6608
|
minify?: boolean | undefined;
|
|
6434
6609
|
warm?: number | undefined;
|
|
@@ -6458,6 +6633,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6458
6633
|
}[] | undefined;
|
|
6459
6634
|
}) & (string | {
|
|
6460
6635
|
file: string;
|
|
6636
|
+
description?: string | undefined;
|
|
6461
6637
|
handler?: string | undefined;
|
|
6462
6638
|
minify?: boolean | undefined;
|
|
6463
6639
|
warm?: number | undefined;
|
|
@@ -6490,6 +6666,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6490
6666
|
}, {
|
|
6491
6667
|
consumer: (string | {
|
|
6492
6668
|
file: string;
|
|
6669
|
+
description?: string | undefined;
|
|
6493
6670
|
handler?: string | undefined;
|
|
6494
6671
|
minify?: boolean | undefined;
|
|
6495
6672
|
warm?: number | undefined;
|
|
@@ -6519,6 +6696,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6519
6696
|
}[] | undefined;
|
|
6520
6697
|
}) & (string | {
|
|
6521
6698
|
file: string;
|
|
6699
|
+
description?: string | undefined;
|
|
6522
6700
|
handler?: string | undefined;
|
|
6523
6701
|
minify?: boolean | undefined;
|
|
6524
6702
|
warm?: number | undefined;
|
|
@@ -6553,6 +6731,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6553
6731
|
schema?: string | string[] | undefined;
|
|
6554
6732
|
resolvers?: Record<string, Record<string, string | {
|
|
6555
6733
|
file: string;
|
|
6734
|
+
description?: string | undefined;
|
|
6556
6735
|
handler?: string | undefined;
|
|
6557
6736
|
minify?: boolean | undefined;
|
|
6558
6737
|
warm?: number | undefined;
|
|
@@ -6583,6 +6762,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6583
6762
|
} | {
|
|
6584
6763
|
consumer: (string | {
|
|
6585
6764
|
file: string;
|
|
6765
|
+
description?: string | undefined;
|
|
6586
6766
|
handler?: string | undefined;
|
|
6587
6767
|
minify?: boolean | undefined;
|
|
6588
6768
|
warm?: number | undefined;
|
|
@@ -6612,6 +6792,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6612
6792
|
}[] | undefined;
|
|
6613
6793
|
}) & (string | {
|
|
6614
6794
|
file: string;
|
|
6795
|
+
description?: string | undefined;
|
|
6615
6796
|
handler?: string | undefined;
|
|
6616
6797
|
minify?: boolean | undefined;
|
|
6617
6798
|
warm?: number | undefined;
|
|
@@ -6646,6 +6827,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6646
6827
|
schema?: string | string[] | undefined;
|
|
6647
6828
|
resolvers?: Record<string, Record<string, string | {
|
|
6648
6829
|
file: string;
|
|
6830
|
+
description?: string | undefined;
|
|
6649
6831
|
handler?: string | undefined;
|
|
6650
6832
|
minify?: boolean | undefined;
|
|
6651
6833
|
warm?: number | undefined;
|
|
@@ -6676,6 +6858,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6676
6858
|
} | {
|
|
6677
6859
|
consumer: (string | {
|
|
6678
6860
|
file: string;
|
|
6861
|
+
description?: string | undefined;
|
|
6679
6862
|
handler?: string | undefined;
|
|
6680
6863
|
minify?: boolean | undefined;
|
|
6681
6864
|
warm?: number | undefined;
|
|
@@ -6705,6 +6888,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6705
6888
|
}[] | undefined;
|
|
6706
6889
|
}) & (string | {
|
|
6707
6890
|
file: string;
|
|
6891
|
+
description?: string | undefined;
|
|
6708
6892
|
handler?: string | undefined;
|
|
6709
6893
|
minify?: boolean | undefined;
|
|
6710
6894
|
warm?: number | undefined;
|
|
@@ -6738,6 +6922,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6738
6922
|
}>>>;
|
|
6739
6923
|
http: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodRecord<z.ZodEffects<z.ZodString, `POST /${string}` | `GET /${string}` | `PUT /${string}` | `DELETE /${string}` | `HEAD /${string}` | `OPTIONS /${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6740
6924
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6925
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6741
6926
|
handler: z.ZodOptional<z.ZodString>;
|
|
6742
6927
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6743
6928
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6793,6 +6978,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6793
6978
|
}>, "many">]>>;
|
|
6794
6979
|
}, "strip", z.ZodTypeAny, {
|
|
6795
6980
|
file: string;
|
|
6981
|
+
description?: string | undefined;
|
|
6796
6982
|
handler?: string | undefined;
|
|
6797
6983
|
minify?: boolean | undefined;
|
|
6798
6984
|
warm?: number | undefined;
|
|
@@ -6822,6 +7008,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6822
7008
|
}[] | undefined;
|
|
6823
7009
|
}, {
|
|
6824
7010
|
file: string;
|
|
7011
|
+
description?: string | undefined;
|
|
6825
7012
|
handler?: string | undefined;
|
|
6826
7013
|
minify?: boolean | undefined;
|
|
6827
7014
|
warm?: number | undefined;
|
|
@@ -6852,6 +7039,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6852
7039
|
}>]>>>>;
|
|
6853
7040
|
rest: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodRecord<z.ZodUnion<[z.ZodString, z.ZodLiteral<"$default">]>, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6854
7041
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7042
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6855
7043
|
handler: z.ZodOptional<z.ZodString>;
|
|
6856
7044
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6857
7045
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6907,6 +7095,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6907
7095
|
}>, "many">]>>;
|
|
6908
7096
|
}, "strip", z.ZodTypeAny, {
|
|
6909
7097
|
file: string;
|
|
7098
|
+
description?: string | undefined;
|
|
6910
7099
|
handler?: string | undefined;
|
|
6911
7100
|
minify?: boolean | undefined;
|
|
6912
7101
|
warm?: number | undefined;
|
|
@@ -6936,6 +7125,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6936
7125
|
}[] | undefined;
|
|
6937
7126
|
}, {
|
|
6938
7127
|
file: string;
|
|
7128
|
+
description?: string | undefined;
|
|
6939
7129
|
handler?: string | undefined;
|
|
6940
7130
|
minify?: boolean | undefined;
|
|
6941
7131
|
warm?: number | undefined;
|
|
@@ -6969,6 +7159,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6969
7159
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6970
7160
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6971
7161
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7162
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6972
7163
|
handler: z.ZodOptional<z.ZodString>;
|
|
6973
7164
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6974
7165
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7024,6 +7215,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7024
7215
|
}>, "many">]>>;
|
|
7025
7216
|
}, "strip", z.ZodTypeAny, {
|
|
7026
7217
|
file: string;
|
|
7218
|
+
description?: string | undefined;
|
|
7027
7219
|
handler?: string | undefined;
|
|
7028
7220
|
minify?: boolean | undefined;
|
|
7029
7221
|
warm?: number | undefined;
|
|
@@ -7053,6 +7245,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7053
7245
|
}[] | undefined;
|
|
7054
7246
|
}, {
|
|
7055
7247
|
file: string;
|
|
7248
|
+
description?: string | undefined;
|
|
7056
7249
|
handler?: string | undefined;
|
|
7057
7250
|
minify?: boolean | undefined;
|
|
7058
7251
|
warm?: number | undefined;
|
|
@@ -7086,6 +7279,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7086
7279
|
}, "strip", z.ZodTypeAny, {
|
|
7087
7280
|
consumer: (string | {
|
|
7088
7281
|
file: string;
|
|
7282
|
+
description?: string | undefined;
|
|
7089
7283
|
handler?: string | undefined;
|
|
7090
7284
|
minify?: boolean | undefined;
|
|
7091
7285
|
warm?: number | undefined;
|
|
@@ -7115,6 +7309,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7115
7309
|
}[] | undefined;
|
|
7116
7310
|
}) & (string | {
|
|
7117
7311
|
file: string;
|
|
7312
|
+
description?: string | undefined;
|
|
7118
7313
|
handler?: string | undefined;
|
|
7119
7314
|
minify?: boolean | undefined;
|
|
7120
7315
|
warm?: number | undefined;
|
|
@@ -7149,6 +7344,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7149
7344
|
}, {
|
|
7150
7345
|
consumer: (string | {
|
|
7151
7346
|
file: string;
|
|
7347
|
+
description?: string | undefined;
|
|
7152
7348
|
handler?: string | undefined;
|
|
7153
7349
|
minify?: boolean | undefined;
|
|
7154
7350
|
warm?: number | undefined;
|
|
@@ -7178,6 +7374,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7178
7374
|
}[] | undefined;
|
|
7179
7375
|
}) & (string | {
|
|
7180
7376
|
file: string;
|
|
7377
|
+
description?: string | undefined;
|
|
7181
7378
|
handler?: string | undefined;
|
|
7182
7379
|
minify?: boolean | undefined;
|
|
7183
7380
|
warm?: number | undefined;
|
|
@@ -7235,6 +7432,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7235
7432
|
topics: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, string[], string[]>>;
|
|
7236
7433
|
subscribers: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7237
7434
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7435
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7238
7436
|
handler: z.ZodOptional<z.ZodString>;
|
|
7239
7437
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7240
7438
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7290,6 +7488,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7290
7488
|
}>, "many">]>>;
|
|
7291
7489
|
}, "strip", z.ZodTypeAny, {
|
|
7292
7490
|
file: string;
|
|
7491
|
+
description?: string | undefined;
|
|
7293
7492
|
handler?: string | undefined;
|
|
7294
7493
|
minify?: boolean | undefined;
|
|
7295
7494
|
warm?: number | undefined;
|
|
@@ -7319,6 +7518,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7319
7518
|
}[] | undefined;
|
|
7320
7519
|
}, {
|
|
7321
7520
|
file: string;
|
|
7521
|
+
description?: string | undefined;
|
|
7322
7522
|
handler?: string | undefined;
|
|
7323
7523
|
minify?: boolean | undefined;
|
|
7324
7524
|
warm?: number | undefined;
|
|
@@ -7349,6 +7549,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7349
7549
|
}>]>]>>>;
|
|
7350
7550
|
functions: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7351
7551
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7552
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7352
7553
|
handler: z.ZodOptional<z.ZodString>;
|
|
7353
7554
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7354
7555
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7404,6 +7605,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7404
7605
|
}>, "many">]>>;
|
|
7405
7606
|
}, "strip", z.ZodTypeAny, {
|
|
7406
7607
|
file: string;
|
|
7608
|
+
description?: string | undefined;
|
|
7407
7609
|
handler?: string | undefined;
|
|
7408
7610
|
minify?: boolean | undefined;
|
|
7409
7611
|
warm?: number | undefined;
|
|
@@ -7433,6 +7635,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7433
7635
|
}[] | undefined;
|
|
7434
7636
|
}, {
|
|
7435
7637
|
file: string;
|
|
7638
|
+
description?: string | undefined;
|
|
7436
7639
|
handler?: string | undefined;
|
|
7437
7640
|
minify?: boolean | undefined;
|
|
7438
7641
|
warm?: number | undefined;
|
|
@@ -7472,6 +7675,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7472
7675
|
type: z.ZodEnum<["keys-only", "new-image", "old-image", "new-and-old-images"]>;
|
|
7473
7676
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7474
7677
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7678
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7475
7679
|
handler: z.ZodOptional<z.ZodString>;
|
|
7476
7680
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7477
7681
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7527,6 +7731,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7527
7731
|
}>, "many">]>>;
|
|
7528
7732
|
}, "strip", z.ZodTypeAny, {
|
|
7529
7733
|
file: string;
|
|
7734
|
+
description?: string | undefined;
|
|
7530
7735
|
handler?: string | undefined;
|
|
7531
7736
|
minify?: boolean | undefined;
|
|
7532
7737
|
warm?: number | undefined;
|
|
@@ -7556,6 +7761,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7556
7761
|
}[] | undefined;
|
|
7557
7762
|
}, {
|
|
7558
7763
|
file: string;
|
|
7764
|
+
description?: string | undefined;
|
|
7559
7765
|
handler?: string | undefined;
|
|
7560
7766
|
minify?: boolean | undefined;
|
|
7561
7767
|
warm?: number | undefined;
|
|
@@ -7588,6 +7794,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7588
7794
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7589
7795
|
consumer: (string | {
|
|
7590
7796
|
file: string;
|
|
7797
|
+
description?: string | undefined;
|
|
7591
7798
|
handler?: string | undefined;
|
|
7592
7799
|
minify?: boolean | undefined;
|
|
7593
7800
|
warm?: number | undefined;
|
|
@@ -7617,6 +7824,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7617
7824
|
}[] | undefined;
|
|
7618
7825
|
}) & (string | {
|
|
7619
7826
|
file: string;
|
|
7827
|
+
description?: string | undefined;
|
|
7620
7828
|
handler?: string | undefined;
|
|
7621
7829
|
minify?: boolean | undefined;
|
|
7622
7830
|
warm?: number | undefined;
|
|
@@ -7649,6 +7857,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7649
7857
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7650
7858
|
consumer: (string | {
|
|
7651
7859
|
file: string;
|
|
7860
|
+
description?: string | undefined;
|
|
7652
7861
|
handler?: string | undefined;
|
|
7653
7862
|
minify?: boolean | undefined;
|
|
7654
7863
|
warm?: number | undefined;
|
|
@@ -7678,6 +7887,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7678
7887
|
}[] | undefined;
|
|
7679
7888
|
}) & (string | {
|
|
7680
7889
|
file: string;
|
|
7890
|
+
description?: string | undefined;
|
|
7681
7891
|
handler?: string | undefined;
|
|
7682
7892
|
minify?: boolean | undefined;
|
|
7683
7893
|
warm?: number | undefined;
|
|
@@ -7731,6 +7941,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7731
7941
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7732
7942
|
consumer: (string | {
|
|
7733
7943
|
file: string;
|
|
7944
|
+
description?: string | undefined;
|
|
7734
7945
|
handler?: string | undefined;
|
|
7735
7946
|
minify?: boolean | undefined;
|
|
7736
7947
|
warm?: number | undefined;
|
|
@@ -7760,6 +7971,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7760
7971
|
}[] | undefined;
|
|
7761
7972
|
}) & (string | {
|
|
7762
7973
|
file: string;
|
|
7974
|
+
description?: string | undefined;
|
|
7763
7975
|
handler?: string | undefined;
|
|
7764
7976
|
minify?: boolean | undefined;
|
|
7765
7977
|
warm?: number | undefined;
|
|
@@ -7805,6 +8017,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7805
8017
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7806
8018
|
consumer: (string | {
|
|
7807
8019
|
file: string;
|
|
8020
|
+
description?: string | undefined;
|
|
7808
8021
|
handler?: string | undefined;
|
|
7809
8022
|
minify?: boolean | undefined;
|
|
7810
8023
|
warm?: number | undefined;
|
|
@@ -7834,6 +8047,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7834
8047
|
}[] | undefined;
|
|
7835
8048
|
}) & (string | {
|
|
7836
8049
|
file: string;
|
|
8050
|
+
description?: string | undefined;
|
|
7837
8051
|
handler?: string | undefined;
|
|
7838
8052
|
minify?: boolean | undefined;
|
|
7839
8053
|
warm?: number | undefined;
|
|
@@ -7873,6 +8087,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7873
8087
|
queues: z.ZodOptional<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7874
8088
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7875
8089
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
8090
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7876
8091
|
handler: z.ZodOptional<z.ZodString>;
|
|
7877
8092
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7878
8093
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7928,6 +8143,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7928
8143
|
}>, "many">]>>;
|
|
7929
8144
|
}, "strip", z.ZodTypeAny, {
|
|
7930
8145
|
file: string;
|
|
8146
|
+
description?: string | undefined;
|
|
7931
8147
|
handler?: string | undefined;
|
|
7932
8148
|
minify?: boolean | undefined;
|
|
7933
8149
|
warm?: number | undefined;
|
|
@@ -7957,6 +8173,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7957
8173
|
}[] | undefined;
|
|
7958
8174
|
}, {
|
|
7959
8175
|
file: string;
|
|
8176
|
+
description?: string | undefined;
|
|
7960
8177
|
handler?: string | undefined;
|
|
7961
8178
|
minify?: boolean | undefined;
|
|
7962
8179
|
warm?: number | undefined;
|
|
@@ -7996,6 +8213,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7996
8213
|
}, "strip", z.ZodTypeAny, {
|
|
7997
8214
|
consumer: (string | {
|
|
7998
8215
|
file: string;
|
|
8216
|
+
description?: string | undefined;
|
|
7999
8217
|
handler?: string | undefined;
|
|
8000
8218
|
minify?: boolean | undefined;
|
|
8001
8219
|
warm?: number | undefined;
|
|
@@ -8025,6 +8243,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8025
8243
|
}[] | undefined;
|
|
8026
8244
|
}) & (string | {
|
|
8027
8245
|
file: string;
|
|
8246
|
+
description?: string | undefined;
|
|
8028
8247
|
handler?: string | undefined;
|
|
8029
8248
|
minify?: boolean | undefined;
|
|
8030
8249
|
warm?: number | undefined;
|
|
@@ -8064,6 +8283,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8064
8283
|
}, {
|
|
8065
8284
|
consumer: (string | {
|
|
8066
8285
|
file: string;
|
|
8286
|
+
description?: string | undefined;
|
|
8067
8287
|
handler?: string | undefined;
|
|
8068
8288
|
minify?: boolean | undefined;
|
|
8069
8289
|
warm?: number | undefined;
|
|
@@ -8093,6 +8313,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8093
8313
|
}[] | undefined;
|
|
8094
8314
|
}) & (string | {
|
|
8095
8315
|
file: string;
|
|
8316
|
+
description?: string | undefined;
|
|
8096
8317
|
handler?: string | undefined;
|
|
8097
8318
|
minify?: boolean | undefined;
|
|
8098
8319
|
warm?: number | undefined;
|
|
@@ -8135,6 +8356,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8135
8356
|
sqlVersion: z.ZodDefault<z.ZodEnum<["2015-10-08", "2016-03-23", "beta"]>>;
|
|
8136
8357
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
8137
8358
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
8359
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8138
8360
|
handler: z.ZodOptional<z.ZodString>;
|
|
8139
8361
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
8140
8362
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8190,6 +8412,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8190
8412
|
}>, "many">]>>;
|
|
8191
8413
|
}, "strip", z.ZodTypeAny, {
|
|
8192
8414
|
file: string;
|
|
8415
|
+
description?: string | undefined;
|
|
8193
8416
|
handler?: string | undefined;
|
|
8194
8417
|
minify?: boolean | undefined;
|
|
8195
8418
|
warm?: number | undefined;
|
|
@@ -8219,6 +8442,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8219
8442
|
}[] | undefined;
|
|
8220
8443
|
}, {
|
|
8221
8444
|
file: string;
|
|
8445
|
+
description?: string | undefined;
|
|
8222
8446
|
handler?: string | undefined;
|
|
8223
8447
|
minify?: boolean | undefined;
|
|
8224
8448
|
warm?: number | undefined;
|
|
@@ -8250,6 +8474,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8250
8474
|
}, "strip", z.ZodTypeAny, {
|
|
8251
8475
|
consumer: (string | {
|
|
8252
8476
|
file: string;
|
|
8477
|
+
description?: string | undefined;
|
|
8253
8478
|
handler?: string | undefined;
|
|
8254
8479
|
minify?: boolean | undefined;
|
|
8255
8480
|
warm?: number | undefined;
|
|
@@ -8279,6 +8504,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8279
8504
|
}[] | undefined;
|
|
8280
8505
|
}) & (string | {
|
|
8281
8506
|
file: string;
|
|
8507
|
+
description?: string | undefined;
|
|
8282
8508
|
handler?: string | undefined;
|
|
8283
8509
|
minify?: boolean | undefined;
|
|
8284
8510
|
warm?: number | undefined;
|
|
@@ -8312,6 +8538,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8312
8538
|
}, {
|
|
8313
8539
|
consumer: (string | {
|
|
8314
8540
|
file: string;
|
|
8541
|
+
description?: string | undefined;
|
|
8315
8542
|
handler?: string | undefined;
|
|
8316
8543
|
minify?: boolean | undefined;
|
|
8317
8544
|
warm?: number | undefined;
|
|
@@ -8341,6 +8568,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8341
8568
|
}[] | undefined;
|
|
8342
8569
|
}) & (string | {
|
|
8343
8570
|
file: string;
|
|
8571
|
+
description?: string | undefined;
|
|
8344
8572
|
handler?: string | undefined;
|
|
8345
8573
|
minify?: boolean | undefined;
|
|
8346
8574
|
warm?: number | undefined;
|
|
@@ -8379,6 +8607,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8379
8607
|
static: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
8380
8608
|
ssr: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
8381
8609
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
8610
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8382
8611
|
handler: z.ZodOptional<z.ZodString>;
|
|
8383
8612
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
8384
8613
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8434,6 +8663,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8434
8663
|
}>, "many">]>>;
|
|
8435
8664
|
}, "strip", z.ZodTypeAny, {
|
|
8436
8665
|
file: string;
|
|
8666
|
+
description?: string | undefined;
|
|
8437
8667
|
handler?: string | undefined;
|
|
8438
8668
|
minify?: boolean | undefined;
|
|
8439
8669
|
warm?: number | undefined;
|
|
@@ -8463,6 +8693,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8463
8693
|
}[] | undefined;
|
|
8464
8694
|
}, {
|
|
8465
8695
|
file: string;
|
|
8696
|
+
description?: string | undefined;
|
|
8466
8697
|
handler?: string | undefined;
|
|
8467
8698
|
minify?: boolean | undefined;
|
|
8468
8699
|
warm?: number | undefined;
|
|
@@ -8793,6 +9024,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8793
9024
|
static?: string | undefined;
|
|
8794
9025
|
ssr?: string | {
|
|
8795
9026
|
file: string;
|
|
9027
|
+
description?: string | undefined;
|
|
8796
9028
|
handler?: string | undefined;
|
|
8797
9029
|
minify?: boolean | undefined;
|
|
8798
9030
|
warm?: number | undefined;
|
|
@@ -8899,6 +9131,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8899
9131
|
static?: string | undefined;
|
|
8900
9132
|
ssr?: string | {
|
|
8901
9133
|
file: string;
|
|
9134
|
+
description?: string | undefined;
|
|
8902
9135
|
handler?: string | undefined;
|
|
8903
9136
|
minify?: boolean | undefined;
|
|
8904
9137
|
warm?: number | undefined;
|
|
@@ -9007,6 +9240,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9007
9240
|
depends?: string[] | undefined;
|
|
9008
9241
|
onFailure?: string | {
|
|
9009
9242
|
file: string;
|
|
9243
|
+
description?: string | undefined;
|
|
9010
9244
|
handler?: string | undefined;
|
|
9011
9245
|
minify?: boolean | undefined;
|
|
9012
9246
|
warm?: number | undefined;
|
|
@@ -9036,9 +9270,11 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9036
9270
|
}[] | undefined;
|
|
9037
9271
|
} | undefined;
|
|
9038
9272
|
auth?: Record<string, {
|
|
9273
|
+
access: boolean;
|
|
9039
9274
|
triggers?: {
|
|
9040
9275
|
beforeToken?: string | {
|
|
9041
9276
|
file: string;
|
|
9277
|
+
description?: string | undefined;
|
|
9042
9278
|
handler?: string | undefined;
|
|
9043
9279
|
minify?: boolean | undefined;
|
|
9044
9280
|
warm?: number | undefined;
|
|
@@ -9069,6 +9305,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9069
9305
|
} | undefined;
|
|
9070
9306
|
beforeLogin?: string | {
|
|
9071
9307
|
file: string;
|
|
9308
|
+
description?: string | undefined;
|
|
9072
9309
|
handler?: string | undefined;
|
|
9073
9310
|
minify?: boolean | undefined;
|
|
9074
9311
|
warm?: number | undefined;
|
|
@@ -9099,6 +9336,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9099
9336
|
} | undefined;
|
|
9100
9337
|
afterLogin?: string | {
|
|
9101
9338
|
file: string;
|
|
9339
|
+
description?: string | undefined;
|
|
9102
9340
|
handler?: string | undefined;
|
|
9103
9341
|
minify?: boolean | undefined;
|
|
9104
9342
|
warm?: number | undefined;
|
|
@@ -9129,6 +9367,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9129
9367
|
} | undefined;
|
|
9130
9368
|
beforeRegister?: string | {
|
|
9131
9369
|
file: string;
|
|
9370
|
+
description?: string | undefined;
|
|
9132
9371
|
handler?: string | undefined;
|
|
9133
9372
|
minify?: boolean | undefined;
|
|
9134
9373
|
warm?: number | undefined;
|
|
@@ -9159,6 +9398,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9159
9398
|
} | undefined;
|
|
9160
9399
|
afterRegister?: string | {
|
|
9161
9400
|
file: string;
|
|
9401
|
+
description?: string | undefined;
|
|
9162
9402
|
handler?: string | undefined;
|
|
9163
9403
|
minify?: boolean | undefined;
|
|
9164
9404
|
warm?: number | undefined;
|
|
@@ -9189,6 +9429,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9189
9429
|
} | undefined;
|
|
9190
9430
|
customMessage?: string | {
|
|
9191
9431
|
file: string;
|
|
9432
|
+
description?: string | undefined;
|
|
9192
9433
|
handler?: string | undefined;
|
|
9193
9434
|
minify?: boolean | undefined;
|
|
9194
9435
|
warm?: number | undefined;
|
|
@@ -9219,6 +9460,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9219
9460
|
} | undefined;
|
|
9220
9461
|
defineChallenge?: string | {
|
|
9221
9462
|
file: string;
|
|
9463
|
+
description?: string | undefined;
|
|
9222
9464
|
handler?: string | undefined;
|
|
9223
9465
|
minify?: boolean | undefined;
|
|
9224
9466
|
warm?: number | undefined;
|
|
@@ -9249,6 +9491,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9249
9491
|
} | undefined;
|
|
9250
9492
|
createChallenge?: string | {
|
|
9251
9493
|
file: string;
|
|
9494
|
+
description?: string | undefined;
|
|
9252
9495
|
handler?: string | undefined;
|
|
9253
9496
|
minify?: boolean | undefined;
|
|
9254
9497
|
warm?: number | undefined;
|
|
@@ -9279,6 +9522,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9279
9522
|
} | undefined;
|
|
9280
9523
|
verifyChallenge?: string | {
|
|
9281
9524
|
file: string;
|
|
9525
|
+
description?: string | undefined;
|
|
9282
9526
|
handler?: string | undefined;
|
|
9283
9527
|
minify?: boolean | undefined;
|
|
9284
9528
|
warm?: number | undefined;
|
|
@@ -9313,6 +9557,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9313
9557
|
schema?: string | string[] | undefined;
|
|
9314
9558
|
resolvers?: Record<string, Record<string, string | {
|
|
9315
9559
|
file: string;
|
|
9560
|
+
description?: string | undefined;
|
|
9316
9561
|
handler?: string | undefined;
|
|
9317
9562
|
minify?: boolean | undefined;
|
|
9318
9563
|
warm?: number | undefined;
|
|
@@ -9343,6 +9588,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9343
9588
|
} | {
|
|
9344
9589
|
consumer: (string | {
|
|
9345
9590
|
file: string;
|
|
9591
|
+
description?: string | undefined;
|
|
9346
9592
|
handler?: string | undefined;
|
|
9347
9593
|
minify?: boolean | undefined;
|
|
9348
9594
|
warm?: number | undefined;
|
|
@@ -9372,6 +9618,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9372
9618
|
}[] | undefined;
|
|
9373
9619
|
}) & (string | {
|
|
9374
9620
|
file: string;
|
|
9621
|
+
description?: string | undefined;
|
|
9375
9622
|
handler?: string | undefined;
|
|
9376
9623
|
minify?: boolean | undefined;
|
|
9377
9624
|
warm?: number | undefined;
|
|
@@ -9405,6 +9652,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9405
9652
|
}> | undefined;
|
|
9406
9653
|
http?: Record<string, Partial<Record<`POST /${string}` | `GET /${string}` | `PUT /${string}` | `DELETE /${string}` | `HEAD /${string}` | `OPTIONS /${string}`, string | {
|
|
9407
9654
|
file: string;
|
|
9655
|
+
description?: string | undefined;
|
|
9408
9656
|
handler?: string | undefined;
|
|
9409
9657
|
minify?: boolean | undefined;
|
|
9410
9658
|
warm?: number | undefined;
|
|
@@ -9435,6 +9683,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9435
9683
|
}>>> | undefined;
|
|
9436
9684
|
rest?: Record<string, Record<string, string | {
|
|
9437
9685
|
file: string;
|
|
9686
|
+
description?: string | undefined;
|
|
9438
9687
|
handler?: string | undefined;
|
|
9439
9688
|
minify?: boolean | undefined;
|
|
9440
9689
|
warm?: number | undefined;
|
|
@@ -9467,6 +9716,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9467
9716
|
crons?: Record<string, {
|
|
9468
9717
|
consumer: (string | {
|
|
9469
9718
|
file: string;
|
|
9719
|
+
description?: string | undefined;
|
|
9470
9720
|
handler?: string | undefined;
|
|
9471
9721
|
minify?: boolean | undefined;
|
|
9472
9722
|
warm?: number | undefined;
|
|
@@ -9496,6 +9746,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9496
9746
|
}[] | undefined;
|
|
9497
9747
|
}) & (string | {
|
|
9498
9748
|
file: string;
|
|
9749
|
+
description?: string | undefined;
|
|
9499
9750
|
handler?: string | undefined;
|
|
9500
9751
|
minify?: boolean | undefined;
|
|
9501
9752
|
warm?: number | undefined;
|
|
@@ -9539,6 +9790,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9539
9790
|
topics?: string[] | undefined;
|
|
9540
9791
|
subscribers?: Record<string, string | {
|
|
9541
9792
|
file: string;
|
|
9793
|
+
description?: string | undefined;
|
|
9542
9794
|
handler?: string | undefined;
|
|
9543
9795
|
minify?: boolean | undefined;
|
|
9544
9796
|
warm?: number | undefined;
|
|
@@ -9569,6 +9821,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9569
9821
|
}> | undefined;
|
|
9570
9822
|
functions?: Record<string, string | {
|
|
9571
9823
|
file: string;
|
|
9824
|
+
description?: string | undefined;
|
|
9572
9825
|
handler?: string | undefined;
|
|
9573
9826
|
minify?: boolean | undefined;
|
|
9574
9827
|
warm?: number | undefined;
|
|
@@ -9608,6 +9861,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9608
9861
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
9609
9862
|
consumer: (string | {
|
|
9610
9863
|
file: string;
|
|
9864
|
+
description?: string | undefined;
|
|
9611
9865
|
handler?: string | undefined;
|
|
9612
9866
|
minify?: boolean | undefined;
|
|
9613
9867
|
warm?: number | undefined;
|
|
@@ -9637,6 +9891,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9637
9891
|
}[] | undefined;
|
|
9638
9892
|
}) & (string | {
|
|
9639
9893
|
file: string;
|
|
9894
|
+
description?: string | undefined;
|
|
9640
9895
|
handler?: string | undefined;
|
|
9641
9896
|
minify?: boolean | undefined;
|
|
9642
9897
|
warm?: number | undefined;
|
|
@@ -9676,6 +9931,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9676
9931
|
queues?: Record<string, string | {
|
|
9677
9932
|
consumer: (string | {
|
|
9678
9933
|
file: string;
|
|
9934
|
+
description?: string | undefined;
|
|
9679
9935
|
handler?: string | undefined;
|
|
9680
9936
|
minify?: boolean | undefined;
|
|
9681
9937
|
warm?: number | undefined;
|
|
@@ -9705,6 +9961,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9705
9961
|
}[] | undefined;
|
|
9706
9962
|
}) & (string | {
|
|
9707
9963
|
file: string;
|
|
9964
|
+
description?: string | undefined;
|
|
9708
9965
|
handler?: string | undefined;
|
|
9709
9966
|
minify?: boolean | undefined;
|
|
9710
9967
|
warm?: number | undefined;
|
|
@@ -9745,6 +10002,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9745
10002
|
pubsub?: Record<string, {
|
|
9746
10003
|
consumer: (string | {
|
|
9747
10004
|
file: string;
|
|
10005
|
+
description?: string | undefined;
|
|
9748
10006
|
handler?: string | undefined;
|
|
9749
10007
|
minify?: boolean | undefined;
|
|
9750
10008
|
warm?: number | undefined;
|
|
@@ -9774,6 +10032,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9774
10032
|
}[] | undefined;
|
|
9775
10033
|
}) & (string | {
|
|
9776
10034
|
file: string;
|
|
10035
|
+
description?: string | undefined;
|
|
9777
10036
|
handler?: string | undefined;
|
|
9778
10037
|
minify?: boolean | undefined;
|
|
9779
10038
|
warm?: number | undefined;
|
|
@@ -9812,6 +10071,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9812
10071
|
static?: string | undefined;
|
|
9813
10072
|
ssr?: string | {
|
|
9814
10073
|
file: string;
|
|
10074
|
+
description?: string | undefined;
|
|
9815
10075
|
handler?: string | undefined;
|
|
9816
10076
|
minify?: boolean | undefined;
|
|
9817
10077
|
warm?: number | undefined;
|
|
@@ -9920,6 +10180,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9920
10180
|
depends?: string[] | undefined;
|
|
9921
10181
|
onFailure?: string | {
|
|
9922
10182
|
file: string;
|
|
10183
|
+
description?: string | undefined;
|
|
9923
10184
|
handler?: string | undefined;
|
|
9924
10185
|
minify?: boolean | undefined;
|
|
9925
10186
|
warm?: number | undefined;
|
|
@@ -9949,9 +10210,11 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9949
10210
|
}[] | undefined;
|
|
9950
10211
|
} | undefined;
|
|
9951
10212
|
auth?: Record<string, {
|
|
10213
|
+
access?: boolean | undefined;
|
|
9952
10214
|
triggers?: {
|
|
9953
10215
|
beforeToken?: string | {
|
|
9954
10216
|
file: string;
|
|
10217
|
+
description?: string | undefined;
|
|
9955
10218
|
handler?: string | undefined;
|
|
9956
10219
|
minify?: boolean | undefined;
|
|
9957
10220
|
warm?: number | undefined;
|
|
@@ -9982,6 +10245,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9982
10245
|
} | undefined;
|
|
9983
10246
|
beforeLogin?: string | {
|
|
9984
10247
|
file: string;
|
|
10248
|
+
description?: string | undefined;
|
|
9985
10249
|
handler?: string | undefined;
|
|
9986
10250
|
minify?: boolean | undefined;
|
|
9987
10251
|
warm?: number | undefined;
|
|
@@ -10012,6 +10276,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10012
10276
|
} | undefined;
|
|
10013
10277
|
afterLogin?: string | {
|
|
10014
10278
|
file: string;
|
|
10279
|
+
description?: string | undefined;
|
|
10015
10280
|
handler?: string | undefined;
|
|
10016
10281
|
minify?: boolean | undefined;
|
|
10017
10282
|
warm?: number | undefined;
|
|
@@ -10042,6 +10307,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10042
10307
|
} | undefined;
|
|
10043
10308
|
beforeRegister?: string | {
|
|
10044
10309
|
file: string;
|
|
10310
|
+
description?: string | undefined;
|
|
10045
10311
|
handler?: string | undefined;
|
|
10046
10312
|
minify?: boolean | undefined;
|
|
10047
10313
|
warm?: number | undefined;
|
|
@@ -10072,6 +10338,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10072
10338
|
} | undefined;
|
|
10073
10339
|
afterRegister?: string | {
|
|
10074
10340
|
file: string;
|
|
10341
|
+
description?: string | undefined;
|
|
10075
10342
|
handler?: string | undefined;
|
|
10076
10343
|
minify?: boolean | undefined;
|
|
10077
10344
|
warm?: number | undefined;
|
|
@@ -10102,6 +10369,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10102
10369
|
} | undefined;
|
|
10103
10370
|
customMessage?: string | {
|
|
10104
10371
|
file: string;
|
|
10372
|
+
description?: string | undefined;
|
|
10105
10373
|
handler?: string | undefined;
|
|
10106
10374
|
minify?: boolean | undefined;
|
|
10107
10375
|
warm?: number | undefined;
|
|
@@ -10132,6 +10400,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10132
10400
|
} | undefined;
|
|
10133
10401
|
defineChallenge?: string | {
|
|
10134
10402
|
file: string;
|
|
10403
|
+
description?: string | undefined;
|
|
10135
10404
|
handler?: string | undefined;
|
|
10136
10405
|
minify?: boolean | undefined;
|
|
10137
10406
|
warm?: number | undefined;
|
|
@@ -10162,6 +10431,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10162
10431
|
} | undefined;
|
|
10163
10432
|
createChallenge?: string | {
|
|
10164
10433
|
file: string;
|
|
10434
|
+
description?: string | undefined;
|
|
10165
10435
|
handler?: string | undefined;
|
|
10166
10436
|
minify?: boolean | undefined;
|
|
10167
10437
|
warm?: number | undefined;
|
|
@@ -10192,6 +10462,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10192
10462
|
} | undefined;
|
|
10193
10463
|
verifyChallenge?: string | {
|
|
10194
10464
|
file: string;
|
|
10465
|
+
description?: string | undefined;
|
|
10195
10466
|
handler?: string | undefined;
|
|
10196
10467
|
minify?: boolean | undefined;
|
|
10197
10468
|
warm?: number | undefined;
|
|
@@ -10226,6 +10497,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10226
10497
|
schema?: string | string[] | undefined;
|
|
10227
10498
|
resolvers?: Record<string, Record<string, string | {
|
|
10228
10499
|
file: string;
|
|
10500
|
+
description?: string | undefined;
|
|
10229
10501
|
handler?: string | undefined;
|
|
10230
10502
|
minify?: boolean | undefined;
|
|
10231
10503
|
warm?: number | undefined;
|
|
@@ -10256,6 +10528,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10256
10528
|
} | {
|
|
10257
10529
|
consumer: (string | {
|
|
10258
10530
|
file: string;
|
|
10531
|
+
description?: string | undefined;
|
|
10259
10532
|
handler?: string | undefined;
|
|
10260
10533
|
minify?: boolean | undefined;
|
|
10261
10534
|
warm?: number | undefined;
|
|
@@ -10285,6 +10558,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10285
10558
|
}[] | undefined;
|
|
10286
10559
|
}) & (string | {
|
|
10287
10560
|
file: string;
|
|
10561
|
+
description?: string | undefined;
|
|
10288
10562
|
handler?: string | undefined;
|
|
10289
10563
|
minify?: boolean | undefined;
|
|
10290
10564
|
warm?: number | undefined;
|
|
@@ -10318,6 +10592,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10318
10592
|
}> | undefined;
|
|
10319
10593
|
http?: Record<string, Record<string, string | {
|
|
10320
10594
|
file: string;
|
|
10595
|
+
description?: string | undefined;
|
|
10321
10596
|
handler?: string | undefined;
|
|
10322
10597
|
minify?: boolean | undefined;
|
|
10323
10598
|
warm?: number | undefined;
|
|
@@ -10348,6 +10623,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10348
10623
|
}>> | undefined;
|
|
10349
10624
|
rest?: Record<string, Record<string, string | {
|
|
10350
10625
|
file: string;
|
|
10626
|
+
description?: string | undefined;
|
|
10351
10627
|
handler?: string | undefined;
|
|
10352
10628
|
minify?: boolean | undefined;
|
|
10353
10629
|
warm?: number | undefined;
|
|
@@ -10380,6 +10656,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10380
10656
|
crons?: Record<string, {
|
|
10381
10657
|
consumer: (string | {
|
|
10382
10658
|
file: string;
|
|
10659
|
+
description?: string | undefined;
|
|
10383
10660
|
handler?: string | undefined;
|
|
10384
10661
|
minify?: boolean | undefined;
|
|
10385
10662
|
warm?: number | undefined;
|
|
@@ -10409,6 +10686,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10409
10686
|
}[] | undefined;
|
|
10410
10687
|
}) & (string | {
|
|
10411
10688
|
file: string;
|
|
10689
|
+
description?: string | undefined;
|
|
10412
10690
|
handler?: string | undefined;
|
|
10413
10691
|
minify?: boolean | undefined;
|
|
10414
10692
|
warm?: number | undefined;
|
|
@@ -10452,6 +10730,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10452
10730
|
topics?: string[] | undefined;
|
|
10453
10731
|
subscribers?: Record<string, string | {
|
|
10454
10732
|
file: string;
|
|
10733
|
+
description?: string | undefined;
|
|
10455
10734
|
handler?: string | undefined;
|
|
10456
10735
|
minify?: boolean | undefined;
|
|
10457
10736
|
warm?: number | undefined;
|
|
@@ -10482,6 +10761,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10482
10761
|
}> | undefined;
|
|
10483
10762
|
functions?: Record<string, string | {
|
|
10484
10763
|
file: string;
|
|
10764
|
+
description?: string | undefined;
|
|
10485
10765
|
handler?: string | undefined;
|
|
10486
10766
|
minify?: boolean | undefined;
|
|
10487
10767
|
warm?: number | undefined;
|
|
@@ -10521,6 +10801,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10521
10801
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
10522
10802
|
consumer: (string | {
|
|
10523
10803
|
file: string;
|
|
10804
|
+
description?: string | undefined;
|
|
10524
10805
|
handler?: string | undefined;
|
|
10525
10806
|
minify?: boolean | undefined;
|
|
10526
10807
|
warm?: number | undefined;
|
|
@@ -10550,6 +10831,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10550
10831
|
}[] | undefined;
|
|
10551
10832
|
}) & (string | {
|
|
10552
10833
|
file: string;
|
|
10834
|
+
description?: string | undefined;
|
|
10553
10835
|
handler?: string | undefined;
|
|
10554
10836
|
minify?: boolean | undefined;
|
|
10555
10837
|
warm?: number | undefined;
|
|
@@ -10589,6 +10871,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10589
10871
|
queues?: Record<string, string | {
|
|
10590
10872
|
consumer: (string | {
|
|
10591
10873
|
file: string;
|
|
10874
|
+
description?: string | undefined;
|
|
10592
10875
|
handler?: string | undefined;
|
|
10593
10876
|
minify?: boolean | undefined;
|
|
10594
10877
|
warm?: number | undefined;
|
|
@@ -10618,6 +10901,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10618
10901
|
}[] | undefined;
|
|
10619
10902
|
}) & (string | {
|
|
10620
10903
|
file: string;
|
|
10904
|
+
description?: string | undefined;
|
|
10621
10905
|
handler?: string | undefined;
|
|
10622
10906
|
minify?: boolean | undefined;
|
|
10623
10907
|
warm?: number | undefined;
|
|
@@ -10658,6 +10942,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10658
10942
|
pubsub?: Record<string, {
|
|
10659
10943
|
consumer: (string | {
|
|
10660
10944
|
file: string;
|
|
10945
|
+
description?: string | undefined;
|
|
10661
10946
|
handler?: string | undefined;
|
|
10662
10947
|
minify?: boolean | undefined;
|
|
10663
10948
|
warm?: number | undefined;
|
|
@@ -10687,6 +10972,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10687
10972
|
}[] | undefined;
|
|
10688
10973
|
}) & (string | {
|
|
10689
10974
|
file: string;
|
|
10975
|
+
description?: string | undefined;
|
|
10690
10976
|
handler?: string | undefined;
|
|
10691
10977
|
minify?: boolean | undefined;
|
|
10692
10978
|
warm?: number | undefined;
|
|
@@ -10725,6 +11011,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10725
11011
|
static?: string | undefined;
|
|
10726
11012
|
ssr?: string | {
|
|
10727
11013
|
file: string;
|
|
11014
|
+
description?: string | undefined;
|
|
10728
11015
|
handler?: string | undefined;
|
|
10729
11016
|
minify?: boolean | undefined;
|
|
10730
11017
|
warm?: number | undefined;
|