@awsless/awsless 0.0.162 → 0.0.164
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 +18 -10
- 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 +282 -0
- package/dist/json.js +2 -0
- 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;
|
|
@@ -4081,6 +4183,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4081
4183
|
triggers: z.ZodOptional<z.ZodObject<{
|
|
4082
4184
|
beforeToken: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4083
4185
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4186
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4084
4187
|
handler: z.ZodOptional<z.ZodString>;
|
|
4085
4188
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4086
4189
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4136,6 +4239,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4136
4239
|
}>, "many">]>>;
|
|
4137
4240
|
}, "strip", z.ZodTypeAny, {
|
|
4138
4241
|
file: string;
|
|
4242
|
+
description?: string | undefined;
|
|
4139
4243
|
handler?: string | undefined;
|
|
4140
4244
|
minify?: boolean | undefined;
|
|
4141
4245
|
warm?: number | undefined;
|
|
@@ -4165,6 +4269,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4165
4269
|
}[] | undefined;
|
|
4166
4270
|
}, {
|
|
4167
4271
|
file: string;
|
|
4272
|
+
description?: string | undefined;
|
|
4168
4273
|
handler?: string | undefined;
|
|
4169
4274
|
minify?: boolean | undefined;
|
|
4170
4275
|
warm?: number | undefined;
|
|
@@ -4195,6 +4300,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4195
4300
|
}>]>>;
|
|
4196
4301
|
beforeLogin: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4197
4302
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4303
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4198
4304
|
handler: z.ZodOptional<z.ZodString>;
|
|
4199
4305
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4200
4306
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4250,6 +4356,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4250
4356
|
}>, "many">]>>;
|
|
4251
4357
|
}, "strip", z.ZodTypeAny, {
|
|
4252
4358
|
file: string;
|
|
4359
|
+
description?: string | undefined;
|
|
4253
4360
|
handler?: string | undefined;
|
|
4254
4361
|
minify?: boolean | undefined;
|
|
4255
4362
|
warm?: number | undefined;
|
|
@@ -4279,6 +4386,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4279
4386
|
}[] | undefined;
|
|
4280
4387
|
}, {
|
|
4281
4388
|
file: string;
|
|
4389
|
+
description?: string | undefined;
|
|
4282
4390
|
handler?: string | undefined;
|
|
4283
4391
|
minify?: boolean | undefined;
|
|
4284
4392
|
warm?: number | undefined;
|
|
@@ -4309,6 +4417,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4309
4417
|
}>]>>;
|
|
4310
4418
|
afterLogin: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4311
4419
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4420
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4312
4421
|
handler: z.ZodOptional<z.ZodString>;
|
|
4313
4422
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4314
4423
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4364,6 +4473,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4364
4473
|
}>, "many">]>>;
|
|
4365
4474
|
}, "strip", z.ZodTypeAny, {
|
|
4366
4475
|
file: string;
|
|
4476
|
+
description?: string | undefined;
|
|
4367
4477
|
handler?: string | undefined;
|
|
4368
4478
|
minify?: boolean | undefined;
|
|
4369
4479
|
warm?: number | undefined;
|
|
@@ -4393,6 +4503,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4393
4503
|
}[] | undefined;
|
|
4394
4504
|
}, {
|
|
4395
4505
|
file: string;
|
|
4506
|
+
description?: string | undefined;
|
|
4396
4507
|
handler?: string | undefined;
|
|
4397
4508
|
minify?: boolean | undefined;
|
|
4398
4509
|
warm?: number | undefined;
|
|
@@ -4423,6 +4534,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4423
4534
|
}>]>>;
|
|
4424
4535
|
beforeRegister: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4425
4536
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4537
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4426
4538
|
handler: z.ZodOptional<z.ZodString>;
|
|
4427
4539
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4428
4540
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4478,6 +4590,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4478
4590
|
}>, "many">]>>;
|
|
4479
4591
|
}, "strip", z.ZodTypeAny, {
|
|
4480
4592
|
file: string;
|
|
4593
|
+
description?: string | undefined;
|
|
4481
4594
|
handler?: string | undefined;
|
|
4482
4595
|
minify?: boolean | undefined;
|
|
4483
4596
|
warm?: number | undefined;
|
|
@@ -4507,6 +4620,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4507
4620
|
}[] | undefined;
|
|
4508
4621
|
}, {
|
|
4509
4622
|
file: string;
|
|
4623
|
+
description?: string | undefined;
|
|
4510
4624
|
handler?: string | undefined;
|
|
4511
4625
|
minify?: boolean | undefined;
|
|
4512
4626
|
warm?: number | undefined;
|
|
@@ -4537,6 +4651,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4537
4651
|
}>]>>;
|
|
4538
4652
|
afterRegister: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4539
4653
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4654
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4540
4655
|
handler: z.ZodOptional<z.ZodString>;
|
|
4541
4656
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4542
4657
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4592,6 +4707,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4592
4707
|
}>, "many">]>>;
|
|
4593
4708
|
}, "strip", z.ZodTypeAny, {
|
|
4594
4709
|
file: string;
|
|
4710
|
+
description?: string | undefined;
|
|
4595
4711
|
handler?: string | undefined;
|
|
4596
4712
|
minify?: boolean | undefined;
|
|
4597
4713
|
warm?: number | undefined;
|
|
@@ -4621,6 +4737,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4621
4737
|
}[] | undefined;
|
|
4622
4738
|
}, {
|
|
4623
4739
|
file: string;
|
|
4740
|
+
description?: string | undefined;
|
|
4624
4741
|
handler?: string | undefined;
|
|
4625
4742
|
minify?: boolean | undefined;
|
|
4626
4743
|
warm?: number | undefined;
|
|
@@ -4651,6 +4768,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4651
4768
|
}>]>>;
|
|
4652
4769
|
customMessage: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4653
4770
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4771
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4654
4772
|
handler: z.ZodOptional<z.ZodString>;
|
|
4655
4773
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4656
4774
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4706,6 +4824,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4706
4824
|
}>, "many">]>>;
|
|
4707
4825
|
}, "strip", z.ZodTypeAny, {
|
|
4708
4826
|
file: string;
|
|
4827
|
+
description?: string | undefined;
|
|
4709
4828
|
handler?: string | undefined;
|
|
4710
4829
|
minify?: boolean | undefined;
|
|
4711
4830
|
warm?: number | undefined;
|
|
@@ -4735,6 +4854,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4735
4854
|
}[] | undefined;
|
|
4736
4855
|
}, {
|
|
4737
4856
|
file: string;
|
|
4857
|
+
description?: string | undefined;
|
|
4738
4858
|
handler?: string | undefined;
|
|
4739
4859
|
minify?: boolean | undefined;
|
|
4740
4860
|
warm?: number | undefined;
|
|
@@ -4765,6 +4885,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4765
4885
|
}>]>>;
|
|
4766
4886
|
defineChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4767
4887
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
4888
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4768
4889
|
handler: z.ZodOptional<z.ZodString>;
|
|
4769
4890
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4770
4891
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4820,6 +4941,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4820
4941
|
}>, "many">]>>;
|
|
4821
4942
|
}, "strip", z.ZodTypeAny, {
|
|
4822
4943
|
file: string;
|
|
4944
|
+
description?: string | undefined;
|
|
4823
4945
|
handler?: string | undefined;
|
|
4824
4946
|
minify?: boolean | undefined;
|
|
4825
4947
|
warm?: number | undefined;
|
|
@@ -4849,6 +4971,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4849
4971
|
}[] | undefined;
|
|
4850
4972
|
}, {
|
|
4851
4973
|
file: string;
|
|
4974
|
+
description?: string | undefined;
|
|
4852
4975
|
handler?: string | undefined;
|
|
4853
4976
|
minify?: boolean | undefined;
|
|
4854
4977
|
warm?: number | undefined;
|
|
@@ -4879,6 +5002,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4879
5002
|
}>]>>;
|
|
4880
5003
|
createChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4881
5004
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
5005
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4882
5006
|
handler: z.ZodOptional<z.ZodString>;
|
|
4883
5007
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4884
5008
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -4934,6 +5058,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4934
5058
|
}>, "many">]>>;
|
|
4935
5059
|
}, "strip", z.ZodTypeAny, {
|
|
4936
5060
|
file: string;
|
|
5061
|
+
description?: string | undefined;
|
|
4937
5062
|
handler?: string | undefined;
|
|
4938
5063
|
minify?: boolean | undefined;
|
|
4939
5064
|
warm?: number | undefined;
|
|
@@ -4963,6 +5088,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4963
5088
|
}[] | undefined;
|
|
4964
5089
|
}, {
|
|
4965
5090
|
file: string;
|
|
5091
|
+
description?: string | undefined;
|
|
4966
5092
|
handler?: string | undefined;
|
|
4967
5093
|
minify?: boolean | undefined;
|
|
4968
5094
|
warm?: number | undefined;
|
|
@@ -4993,6 +5119,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
4993
5119
|
}>]>>;
|
|
4994
5120
|
verifyChallenge: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
4995
5121
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
5122
|
+
description: z.ZodOptional<z.ZodString>;
|
|
4996
5123
|
handler: z.ZodOptional<z.ZodString>;
|
|
4997
5124
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
4998
5125
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5048,6 +5175,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5048
5175
|
}>, "many">]>>;
|
|
5049
5176
|
}, "strip", z.ZodTypeAny, {
|
|
5050
5177
|
file: string;
|
|
5178
|
+
description?: string | undefined;
|
|
5051
5179
|
handler?: string | undefined;
|
|
5052
5180
|
minify?: boolean | undefined;
|
|
5053
5181
|
warm?: number | undefined;
|
|
@@ -5077,6 +5205,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5077
5205
|
}[] | undefined;
|
|
5078
5206
|
}, {
|
|
5079
5207
|
file: string;
|
|
5208
|
+
description?: string | undefined;
|
|
5080
5209
|
handler?: string | undefined;
|
|
5081
5210
|
minify?: boolean | undefined;
|
|
5082
5211
|
warm?: number | undefined;
|
|
@@ -5108,6 +5237,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5108
5237
|
}, "strip", z.ZodTypeAny, {
|
|
5109
5238
|
beforeToken?: string | {
|
|
5110
5239
|
file: string;
|
|
5240
|
+
description?: string | undefined;
|
|
5111
5241
|
handler?: string | undefined;
|
|
5112
5242
|
minify?: boolean | undefined;
|
|
5113
5243
|
warm?: number | undefined;
|
|
@@ -5138,6 +5268,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5138
5268
|
} | undefined;
|
|
5139
5269
|
beforeLogin?: string | {
|
|
5140
5270
|
file: string;
|
|
5271
|
+
description?: string | undefined;
|
|
5141
5272
|
handler?: string | undefined;
|
|
5142
5273
|
minify?: boolean | undefined;
|
|
5143
5274
|
warm?: number | undefined;
|
|
@@ -5168,6 +5299,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5168
5299
|
} | undefined;
|
|
5169
5300
|
afterLogin?: string | {
|
|
5170
5301
|
file: string;
|
|
5302
|
+
description?: string | undefined;
|
|
5171
5303
|
handler?: string | undefined;
|
|
5172
5304
|
minify?: boolean | undefined;
|
|
5173
5305
|
warm?: number | undefined;
|
|
@@ -5198,6 +5330,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5198
5330
|
} | undefined;
|
|
5199
5331
|
beforeRegister?: string | {
|
|
5200
5332
|
file: string;
|
|
5333
|
+
description?: string | undefined;
|
|
5201
5334
|
handler?: string | undefined;
|
|
5202
5335
|
minify?: boolean | undefined;
|
|
5203
5336
|
warm?: number | undefined;
|
|
@@ -5228,6 +5361,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5228
5361
|
} | undefined;
|
|
5229
5362
|
afterRegister?: string | {
|
|
5230
5363
|
file: string;
|
|
5364
|
+
description?: string | undefined;
|
|
5231
5365
|
handler?: string | undefined;
|
|
5232
5366
|
minify?: boolean | undefined;
|
|
5233
5367
|
warm?: number | undefined;
|
|
@@ -5258,6 +5392,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5258
5392
|
} | undefined;
|
|
5259
5393
|
customMessage?: string | {
|
|
5260
5394
|
file: string;
|
|
5395
|
+
description?: string | undefined;
|
|
5261
5396
|
handler?: string | undefined;
|
|
5262
5397
|
minify?: boolean | undefined;
|
|
5263
5398
|
warm?: number | undefined;
|
|
@@ -5288,6 +5423,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5288
5423
|
} | undefined;
|
|
5289
5424
|
defineChallenge?: string | {
|
|
5290
5425
|
file: string;
|
|
5426
|
+
description?: string | undefined;
|
|
5291
5427
|
handler?: string | undefined;
|
|
5292
5428
|
minify?: boolean | undefined;
|
|
5293
5429
|
warm?: number | undefined;
|
|
@@ -5318,6 +5454,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5318
5454
|
} | undefined;
|
|
5319
5455
|
createChallenge?: string | {
|
|
5320
5456
|
file: string;
|
|
5457
|
+
description?: string | undefined;
|
|
5321
5458
|
handler?: string | undefined;
|
|
5322
5459
|
minify?: boolean | undefined;
|
|
5323
5460
|
warm?: number | undefined;
|
|
@@ -5348,6 +5485,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5348
5485
|
} | undefined;
|
|
5349
5486
|
verifyChallenge?: string | {
|
|
5350
5487
|
file: string;
|
|
5488
|
+
description?: string | undefined;
|
|
5351
5489
|
handler?: string | undefined;
|
|
5352
5490
|
minify?: boolean | undefined;
|
|
5353
5491
|
warm?: number | undefined;
|
|
@@ -5379,6 +5517,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5379
5517
|
}, {
|
|
5380
5518
|
beforeToken?: string | {
|
|
5381
5519
|
file: string;
|
|
5520
|
+
description?: string | undefined;
|
|
5382
5521
|
handler?: string | undefined;
|
|
5383
5522
|
minify?: boolean | undefined;
|
|
5384
5523
|
warm?: number | undefined;
|
|
@@ -5409,6 +5548,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5409
5548
|
} | undefined;
|
|
5410
5549
|
beforeLogin?: string | {
|
|
5411
5550
|
file: string;
|
|
5551
|
+
description?: string | undefined;
|
|
5412
5552
|
handler?: string | undefined;
|
|
5413
5553
|
minify?: boolean | undefined;
|
|
5414
5554
|
warm?: number | undefined;
|
|
@@ -5439,6 +5579,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5439
5579
|
} | undefined;
|
|
5440
5580
|
afterLogin?: string | {
|
|
5441
5581
|
file: string;
|
|
5582
|
+
description?: string | undefined;
|
|
5442
5583
|
handler?: string | undefined;
|
|
5443
5584
|
minify?: boolean | undefined;
|
|
5444
5585
|
warm?: number | undefined;
|
|
@@ -5469,6 +5610,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5469
5610
|
} | undefined;
|
|
5470
5611
|
beforeRegister?: string | {
|
|
5471
5612
|
file: string;
|
|
5613
|
+
description?: string | undefined;
|
|
5472
5614
|
handler?: string | undefined;
|
|
5473
5615
|
minify?: boolean | undefined;
|
|
5474
5616
|
warm?: number | undefined;
|
|
@@ -5499,6 +5641,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5499
5641
|
} | undefined;
|
|
5500
5642
|
afterRegister?: string | {
|
|
5501
5643
|
file: string;
|
|
5644
|
+
description?: string | undefined;
|
|
5502
5645
|
handler?: string | undefined;
|
|
5503
5646
|
minify?: boolean | undefined;
|
|
5504
5647
|
warm?: number | undefined;
|
|
@@ -5529,6 +5672,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5529
5672
|
} | undefined;
|
|
5530
5673
|
customMessage?: string | {
|
|
5531
5674
|
file: string;
|
|
5675
|
+
description?: string | undefined;
|
|
5532
5676
|
handler?: string | undefined;
|
|
5533
5677
|
minify?: boolean | undefined;
|
|
5534
5678
|
warm?: number | undefined;
|
|
@@ -5559,6 +5703,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5559
5703
|
} | undefined;
|
|
5560
5704
|
defineChallenge?: string | {
|
|
5561
5705
|
file: string;
|
|
5706
|
+
description?: string | undefined;
|
|
5562
5707
|
handler?: string | undefined;
|
|
5563
5708
|
minify?: boolean | undefined;
|
|
5564
5709
|
warm?: number | undefined;
|
|
@@ -5589,6 +5734,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5589
5734
|
} | undefined;
|
|
5590
5735
|
createChallenge?: string | {
|
|
5591
5736
|
file: string;
|
|
5737
|
+
description?: string | undefined;
|
|
5592
5738
|
handler?: string | undefined;
|
|
5593
5739
|
minify?: boolean | undefined;
|
|
5594
5740
|
warm?: number | undefined;
|
|
@@ -5619,6 +5765,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5619
5765
|
} | undefined;
|
|
5620
5766
|
verifyChallenge?: string | {
|
|
5621
5767
|
file: string;
|
|
5768
|
+
description?: string | undefined;
|
|
5622
5769
|
handler?: string | undefined;
|
|
5623
5770
|
minify?: boolean | undefined;
|
|
5624
5771
|
warm?: number | undefined;
|
|
@@ -5652,6 +5799,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5652
5799
|
triggers?: {
|
|
5653
5800
|
beforeToken?: string | {
|
|
5654
5801
|
file: string;
|
|
5802
|
+
description?: string | undefined;
|
|
5655
5803
|
handler?: string | undefined;
|
|
5656
5804
|
minify?: boolean | undefined;
|
|
5657
5805
|
warm?: number | undefined;
|
|
@@ -5682,6 +5830,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5682
5830
|
} | undefined;
|
|
5683
5831
|
beforeLogin?: string | {
|
|
5684
5832
|
file: string;
|
|
5833
|
+
description?: string | undefined;
|
|
5685
5834
|
handler?: string | undefined;
|
|
5686
5835
|
minify?: boolean | undefined;
|
|
5687
5836
|
warm?: number | undefined;
|
|
@@ -5712,6 +5861,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5712
5861
|
} | undefined;
|
|
5713
5862
|
afterLogin?: string | {
|
|
5714
5863
|
file: string;
|
|
5864
|
+
description?: string | undefined;
|
|
5715
5865
|
handler?: string | undefined;
|
|
5716
5866
|
minify?: boolean | undefined;
|
|
5717
5867
|
warm?: number | undefined;
|
|
@@ -5742,6 +5892,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5742
5892
|
} | undefined;
|
|
5743
5893
|
beforeRegister?: string | {
|
|
5744
5894
|
file: string;
|
|
5895
|
+
description?: string | undefined;
|
|
5745
5896
|
handler?: string | undefined;
|
|
5746
5897
|
minify?: boolean | undefined;
|
|
5747
5898
|
warm?: number | undefined;
|
|
@@ -5772,6 +5923,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5772
5923
|
} | undefined;
|
|
5773
5924
|
afterRegister?: string | {
|
|
5774
5925
|
file: string;
|
|
5926
|
+
description?: string | undefined;
|
|
5775
5927
|
handler?: string | undefined;
|
|
5776
5928
|
minify?: boolean | undefined;
|
|
5777
5929
|
warm?: number | undefined;
|
|
@@ -5802,6 +5954,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5802
5954
|
} | undefined;
|
|
5803
5955
|
customMessage?: string | {
|
|
5804
5956
|
file: string;
|
|
5957
|
+
description?: string | undefined;
|
|
5805
5958
|
handler?: string | undefined;
|
|
5806
5959
|
minify?: boolean | undefined;
|
|
5807
5960
|
warm?: number | undefined;
|
|
@@ -5832,6 +5985,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5832
5985
|
} | undefined;
|
|
5833
5986
|
defineChallenge?: string | {
|
|
5834
5987
|
file: string;
|
|
5988
|
+
description?: string | undefined;
|
|
5835
5989
|
handler?: string | undefined;
|
|
5836
5990
|
minify?: boolean | undefined;
|
|
5837
5991
|
warm?: number | undefined;
|
|
@@ -5862,6 +6016,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5862
6016
|
} | undefined;
|
|
5863
6017
|
createChallenge?: string | {
|
|
5864
6018
|
file: string;
|
|
6019
|
+
description?: string | undefined;
|
|
5865
6020
|
handler?: string | undefined;
|
|
5866
6021
|
minify?: boolean | undefined;
|
|
5867
6022
|
warm?: number | undefined;
|
|
@@ -5892,6 +6047,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5892
6047
|
} | undefined;
|
|
5893
6048
|
verifyChallenge?: string | {
|
|
5894
6049
|
file: string;
|
|
6050
|
+
description?: string | undefined;
|
|
5895
6051
|
handler?: string | undefined;
|
|
5896
6052
|
minify?: boolean | undefined;
|
|
5897
6053
|
warm?: number | undefined;
|
|
@@ -5925,6 +6081,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5925
6081
|
triggers?: {
|
|
5926
6082
|
beforeToken?: string | {
|
|
5927
6083
|
file: string;
|
|
6084
|
+
description?: string | undefined;
|
|
5928
6085
|
handler?: string | undefined;
|
|
5929
6086
|
minify?: boolean | undefined;
|
|
5930
6087
|
warm?: number | undefined;
|
|
@@ -5955,6 +6112,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5955
6112
|
} | undefined;
|
|
5956
6113
|
beforeLogin?: string | {
|
|
5957
6114
|
file: string;
|
|
6115
|
+
description?: string | undefined;
|
|
5958
6116
|
handler?: string | undefined;
|
|
5959
6117
|
minify?: boolean | undefined;
|
|
5960
6118
|
warm?: number | undefined;
|
|
@@ -5985,6 +6143,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
5985
6143
|
} | undefined;
|
|
5986
6144
|
afterLogin?: string | {
|
|
5987
6145
|
file: string;
|
|
6146
|
+
description?: string | undefined;
|
|
5988
6147
|
handler?: string | undefined;
|
|
5989
6148
|
minify?: boolean | undefined;
|
|
5990
6149
|
warm?: number | undefined;
|
|
@@ -6015,6 +6174,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6015
6174
|
} | undefined;
|
|
6016
6175
|
beforeRegister?: string | {
|
|
6017
6176
|
file: string;
|
|
6177
|
+
description?: string | undefined;
|
|
6018
6178
|
handler?: string | undefined;
|
|
6019
6179
|
minify?: boolean | undefined;
|
|
6020
6180
|
warm?: number | undefined;
|
|
@@ -6045,6 +6205,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6045
6205
|
} | undefined;
|
|
6046
6206
|
afterRegister?: string | {
|
|
6047
6207
|
file: string;
|
|
6208
|
+
description?: string | undefined;
|
|
6048
6209
|
handler?: string | undefined;
|
|
6049
6210
|
minify?: boolean | undefined;
|
|
6050
6211
|
warm?: number | undefined;
|
|
@@ -6075,6 +6236,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6075
6236
|
} | undefined;
|
|
6076
6237
|
customMessage?: string | {
|
|
6077
6238
|
file: string;
|
|
6239
|
+
description?: string | undefined;
|
|
6078
6240
|
handler?: string | undefined;
|
|
6079
6241
|
minify?: boolean | undefined;
|
|
6080
6242
|
warm?: number | undefined;
|
|
@@ -6105,6 +6267,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6105
6267
|
} | undefined;
|
|
6106
6268
|
defineChallenge?: string | {
|
|
6107
6269
|
file: string;
|
|
6270
|
+
description?: string | undefined;
|
|
6108
6271
|
handler?: string | undefined;
|
|
6109
6272
|
minify?: boolean | undefined;
|
|
6110
6273
|
warm?: number | undefined;
|
|
@@ -6135,6 +6298,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6135
6298
|
} | undefined;
|
|
6136
6299
|
createChallenge?: string | {
|
|
6137
6300
|
file: string;
|
|
6301
|
+
description?: string | undefined;
|
|
6138
6302
|
handler?: string | undefined;
|
|
6139
6303
|
minify?: boolean | undefined;
|
|
6140
6304
|
warm?: number | undefined;
|
|
@@ -6165,6 +6329,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6165
6329
|
} | undefined;
|
|
6166
6330
|
verifyChallenge?: string | {
|
|
6167
6331
|
file: string;
|
|
6332
|
+
description?: string | undefined;
|
|
6168
6333
|
handler?: string | undefined;
|
|
6169
6334
|
minify?: boolean | undefined;
|
|
6170
6335
|
warm?: number | undefined;
|
|
@@ -6199,6 +6364,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6199
6364
|
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
6365
|
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
6366
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6367
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6202
6368
|
handler: z.ZodOptional<z.ZodString>;
|
|
6203
6369
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6204
6370
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6254,6 +6420,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6254
6420
|
}>, "many">]>>;
|
|
6255
6421
|
}, "strip", z.ZodTypeAny, {
|
|
6256
6422
|
file: string;
|
|
6423
|
+
description?: string | undefined;
|
|
6257
6424
|
handler?: string | undefined;
|
|
6258
6425
|
minify?: boolean | undefined;
|
|
6259
6426
|
warm?: number | undefined;
|
|
@@ -6283,6 +6450,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6283
6450
|
}[] | undefined;
|
|
6284
6451
|
}, {
|
|
6285
6452
|
file: string;
|
|
6453
|
+
description?: string | undefined;
|
|
6286
6454
|
handler?: string | undefined;
|
|
6287
6455
|
minify?: boolean | undefined;
|
|
6288
6456
|
warm?: number | undefined;
|
|
@@ -6313,6 +6481,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6313
6481
|
}>]>, z.ZodObject<{
|
|
6314
6482
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6315
6483
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6484
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6316
6485
|
handler: z.ZodOptional<z.ZodString>;
|
|
6317
6486
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6318
6487
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6368,6 +6537,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6368
6537
|
}>, "many">]>>;
|
|
6369
6538
|
}, "strip", z.ZodTypeAny, {
|
|
6370
6539
|
file: string;
|
|
6540
|
+
description?: string | undefined;
|
|
6371
6541
|
handler?: string | undefined;
|
|
6372
6542
|
minify?: boolean | undefined;
|
|
6373
6543
|
warm?: number | undefined;
|
|
@@ -6397,6 +6567,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6397
6567
|
}[] | undefined;
|
|
6398
6568
|
}, {
|
|
6399
6569
|
file: string;
|
|
6570
|
+
description?: string | undefined;
|
|
6400
6571
|
handler?: string | undefined;
|
|
6401
6572
|
minify?: boolean | undefined;
|
|
6402
6573
|
warm?: number | undefined;
|
|
@@ -6429,6 +6600,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6429
6600
|
}, "strip", z.ZodTypeAny, {
|
|
6430
6601
|
consumer: (string | {
|
|
6431
6602
|
file: string;
|
|
6603
|
+
description?: string | undefined;
|
|
6432
6604
|
handler?: string | undefined;
|
|
6433
6605
|
minify?: boolean | undefined;
|
|
6434
6606
|
warm?: number | undefined;
|
|
@@ -6458,6 +6630,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6458
6630
|
}[] | undefined;
|
|
6459
6631
|
}) & (string | {
|
|
6460
6632
|
file: string;
|
|
6633
|
+
description?: string | undefined;
|
|
6461
6634
|
handler?: string | undefined;
|
|
6462
6635
|
minify?: boolean | undefined;
|
|
6463
6636
|
warm?: number | undefined;
|
|
@@ -6490,6 +6663,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6490
6663
|
}, {
|
|
6491
6664
|
consumer: (string | {
|
|
6492
6665
|
file: string;
|
|
6666
|
+
description?: string | undefined;
|
|
6493
6667
|
handler?: string | undefined;
|
|
6494
6668
|
minify?: boolean | undefined;
|
|
6495
6669
|
warm?: number | undefined;
|
|
@@ -6519,6 +6693,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6519
6693
|
}[] | undefined;
|
|
6520
6694
|
}) & (string | {
|
|
6521
6695
|
file: string;
|
|
6696
|
+
description?: string | undefined;
|
|
6522
6697
|
handler?: string | undefined;
|
|
6523
6698
|
minify?: boolean | undefined;
|
|
6524
6699
|
warm?: number | undefined;
|
|
@@ -6553,6 +6728,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6553
6728
|
schema?: string | string[] | undefined;
|
|
6554
6729
|
resolvers?: Record<string, Record<string, string | {
|
|
6555
6730
|
file: string;
|
|
6731
|
+
description?: string | undefined;
|
|
6556
6732
|
handler?: string | undefined;
|
|
6557
6733
|
minify?: boolean | undefined;
|
|
6558
6734
|
warm?: number | undefined;
|
|
@@ -6583,6 +6759,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6583
6759
|
} | {
|
|
6584
6760
|
consumer: (string | {
|
|
6585
6761
|
file: string;
|
|
6762
|
+
description?: string | undefined;
|
|
6586
6763
|
handler?: string | undefined;
|
|
6587
6764
|
minify?: boolean | undefined;
|
|
6588
6765
|
warm?: number | undefined;
|
|
@@ -6612,6 +6789,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6612
6789
|
}[] | undefined;
|
|
6613
6790
|
}) & (string | {
|
|
6614
6791
|
file: string;
|
|
6792
|
+
description?: string | undefined;
|
|
6615
6793
|
handler?: string | undefined;
|
|
6616
6794
|
minify?: boolean | undefined;
|
|
6617
6795
|
warm?: number | undefined;
|
|
@@ -6646,6 +6824,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6646
6824
|
schema?: string | string[] | undefined;
|
|
6647
6825
|
resolvers?: Record<string, Record<string, string | {
|
|
6648
6826
|
file: string;
|
|
6827
|
+
description?: string | undefined;
|
|
6649
6828
|
handler?: string | undefined;
|
|
6650
6829
|
minify?: boolean | undefined;
|
|
6651
6830
|
warm?: number | undefined;
|
|
@@ -6676,6 +6855,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6676
6855
|
} | {
|
|
6677
6856
|
consumer: (string | {
|
|
6678
6857
|
file: string;
|
|
6858
|
+
description?: string | undefined;
|
|
6679
6859
|
handler?: string | undefined;
|
|
6680
6860
|
minify?: boolean | undefined;
|
|
6681
6861
|
warm?: number | undefined;
|
|
@@ -6705,6 +6885,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6705
6885
|
}[] | undefined;
|
|
6706
6886
|
}) & (string | {
|
|
6707
6887
|
file: string;
|
|
6888
|
+
description?: string | undefined;
|
|
6708
6889
|
handler?: string | undefined;
|
|
6709
6890
|
minify?: boolean | undefined;
|
|
6710
6891
|
warm?: number | undefined;
|
|
@@ -6738,6 +6919,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6738
6919
|
}>>>;
|
|
6739
6920
|
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
6921
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
6922
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6741
6923
|
handler: z.ZodOptional<z.ZodString>;
|
|
6742
6924
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6743
6925
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6793,6 +6975,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6793
6975
|
}>, "many">]>>;
|
|
6794
6976
|
}, "strip", z.ZodTypeAny, {
|
|
6795
6977
|
file: string;
|
|
6978
|
+
description?: string | undefined;
|
|
6796
6979
|
handler?: string | undefined;
|
|
6797
6980
|
minify?: boolean | undefined;
|
|
6798
6981
|
warm?: number | undefined;
|
|
@@ -6822,6 +7005,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6822
7005
|
}[] | undefined;
|
|
6823
7006
|
}, {
|
|
6824
7007
|
file: string;
|
|
7008
|
+
description?: string | undefined;
|
|
6825
7009
|
handler?: string | undefined;
|
|
6826
7010
|
minify?: boolean | undefined;
|
|
6827
7011
|
warm?: number | undefined;
|
|
@@ -6852,6 +7036,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6852
7036
|
}>]>>>>;
|
|
6853
7037
|
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
7038
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7039
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6855
7040
|
handler: z.ZodOptional<z.ZodString>;
|
|
6856
7041
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6857
7042
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -6907,6 +7092,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6907
7092
|
}>, "many">]>>;
|
|
6908
7093
|
}, "strip", z.ZodTypeAny, {
|
|
6909
7094
|
file: string;
|
|
7095
|
+
description?: string | undefined;
|
|
6910
7096
|
handler?: string | undefined;
|
|
6911
7097
|
minify?: boolean | undefined;
|
|
6912
7098
|
warm?: number | undefined;
|
|
@@ -6936,6 +7122,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6936
7122
|
}[] | undefined;
|
|
6937
7123
|
}, {
|
|
6938
7124
|
file: string;
|
|
7125
|
+
description?: string | undefined;
|
|
6939
7126
|
handler?: string | undefined;
|
|
6940
7127
|
minify?: boolean | undefined;
|
|
6941
7128
|
warm?: number | undefined;
|
|
@@ -6969,6 +7156,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
6969
7156
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
6970
7157
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
6971
7158
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7159
|
+
description: z.ZodOptional<z.ZodString>;
|
|
6972
7160
|
handler: z.ZodOptional<z.ZodString>;
|
|
6973
7161
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
6974
7162
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7024,6 +7212,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7024
7212
|
}>, "many">]>>;
|
|
7025
7213
|
}, "strip", z.ZodTypeAny, {
|
|
7026
7214
|
file: string;
|
|
7215
|
+
description?: string | undefined;
|
|
7027
7216
|
handler?: string | undefined;
|
|
7028
7217
|
minify?: boolean | undefined;
|
|
7029
7218
|
warm?: number | undefined;
|
|
@@ -7053,6 +7242,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7053
7242
|
}[] | undefined;
|
|
7054
7243
|
}, {
|
|
7055
7244
|
file: string;
|
|
7245
|
+
description?: string | undefined;
|
|
7056
7246
|
handler?: string | undefined;
|
|
7057
7247
|
minify?: boolean | undefined;
|
|
7058
7248
|
warm?: number | undefined;
|
|
@@ -7086,6 +7276,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7086
7276
|
}, "strip", z.ZodTypeAny, {
|
|
7087
7277
|
consumer: (string | {
|
|
7088
7278
|
file: string;
|
|
7279
|
+
description?: string | undefined;
|
|
7089
7280
|
handler?: string | undefined;
|
|
7090
7281
|
minify?: boolean | undefined;
|
|
7091
7282
|
warm?: number | undefined;
|
|
@@ -7115,6 +7306,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7115
7306
|
}[] | undefined;
|
|
7116
7307
|
}) & (string | {
|
|
7117
7308
|
file: string;
|
|
7309
|
+
description?: string | undefined;
|
|
7118
7310
|
handler?: string | undefined;
|
|
7119
7311
|
minify?: boolean | undefined;
|
|
7120
7312
|
warm?: number | undefined;
|
|
@@ -7149,6 +7341,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7149
7341
|
}, {
|
|
7150
7342
|
consumer: (string | {
|
|
7151
7343
|
file: string;
|
|
7344
|
+
description?: string | undefined;
|
|
7152
7345
|
handler?: string | undefined;
|
|
7153
7346
|
minify?: boolean | undefined;
|
|
7154
7347
|
warm?: number | undefined;
|
|
@@ -7178,6 +7371,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7178
7371
|
}[] | undefined;
|
|
7179
7372
|
}) & (string | {
|
|
7180
7373
|
file: string;
|
|
7374
|
+
description?: string | undefined;
|
|
7181
7375
|
handler?: string | undefined;
|
|
7182
7376
|
minify?: boolean | undefined;
|
|
7183
7377
|
warm?: number | undefined;
|
|
@@ -7235,6 +7429,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7235
7429
|
topics: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, string[], string[]>>;
|
|
7236
7430
|
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
7431
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7432
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7238
7433
|
handler: z.ZodOptional<z.ZodString>;
|
|
7239
7434
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7240
7435
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7290,6 +7485,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7290
7485
|
}>, "many">]>>;
|
|
7291
7486
|
}, "strip", z.ZodTypeAny, {
|
|
7292
7487
|
file: string;
|
|
7488
|
+
description?: string | undefined;
|
|
7293
7489
|
handler?: string | undefined;
|
|
7294
7490
|
minify?: boolean | undefined;
|
|
7295
7491
|
warm?: number | undefined;
|
|
@@ -7319,6 +7515,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7319
7515
|
}[] | undefined;
|
|
7320
7516
|
}, {
|
|
7321
7517
|
file: string;
|
|
7518
|
+
description?: string | undefined;
|
|
7322
7519
|
handler?: string | undefined;
|
|
7323
7520
|
minify?: boolean | undefined;
|
|
7324
7521
|
warm?: number | undefined;
|
|
@@ -7349,6 +7546,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7349
7546
|
}>]>]>>>;
|
|
7350
7547
|
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
7548
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7549
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7352
7550
|
handler: z.ZodOptional<z.ZodString>;
|
|
7353
7551
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7354
7552
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7404,6 +7602,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7404
7602
|
}>, "many">]>>;
|
|
7405
7603
|
}, "strip", z.ZodTypeAny, {
|
|
7406
7604
|
file: string;
|
|
7605
|
+
description?: string | undefined;
|
|
7407
7606
|
handler?: string | undefined;
|
|
7408
7607
|
minify?: boolean | undefined;
|
|
7409
7608
|
warm?: number | undefined;
|
|
@@ -7433,6 +7632,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7433
7632
|
}[] | undefined;
|
|
7434
7633
|
}, {
|
|
7435
7634
|
file: string;
|
|
7635
|
+
description?: string | undefined;
|
|
7436
7636
|
handler?: string | undefined;
|
|
7437
7637
|
minify?: boolean | undefined;
|
|
7438
7638
|
warm?: number | undefined;
|
|
@@ -7472,6 +7672,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7472
7672
|
type: z.ZodEnum<["keys-only", "new-image", "old-image", "new-and-old-images"]>;
|
|
7473
7673
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7474
7674
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
7675
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7475
7676
|
handler: z.ZodOptional<z.ZodString>;
|
|
7476
7677
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7477
7678
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7527,6 +7728,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7527
7728
|
}>, "many">]>>;
|
|
7528
7729
|
}, "strip", z.ZodTypeAny, {
|
|
7529
7730
|
file: string;
|
|
7731
|
+
description?: string | undefined;
|
|
7530
7732
|
handler?: string | undefined;
|
|
7531
7733
|
minify?: boolean | undefined;
|
|
7532
7734
|
warm?: number | undefined;
|
|
@@ -7556,6 +7758,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7556
7758
|
}[] | undefined;
|
|
7557
7759
|
}, {
|
|
7558
7760
|
file: string;
|
|
7761
|
+
description?: string | undefined;
|
|
7559
7762
|
handler?: string | undefined;
|
|
7560
7763
|
minify?: boolean | undefined;
|
|
7561
7764
|
warm?: number | undefined;
|
|
@@ -7588,6 +7791,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7588
7791
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7589
7792
|
consumer: (string | {
|
|
7590
7793
|
file: string;
|
|
7794
|
+
description?: string | undefined;
|
|
7591
7795
|
handler?: string | undefined;
|
|
7592
7796
|
minify?: boolean | undefined;
|
|
7593
7797
|
warm?: number | undefined;
|
|
@@ -7617,6 +7821,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7617
7821
|
}[] | undefined;
|
|
7618
7822
|
}) & (string | {
|
|
7619
7823
|
file: string;
|
|
7824
|
+
description?: string | undefined;
|
|
7620
7825
|
handler?: string | undefined;
|
|
7621
7826
|
minify?: boolean | undefined;
|
|
7622
7827
|
warm?: number | undefined;
|
|
@@ -7649,6 +7854,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7649
7854
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7650
7855
|
consumer: (string | {
|
|
7651
7856
|
file: string;
|
|
7857
|
+
description?: string | undefined;
|
|
7652
7858
|
handler?: string | undefined;
|
|
7653
7859
|
minify?: boolean | undefined;
|
|
7654
7860
|
warm?: number | undefined;
|
|
@@ -7678,6 +7884,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7678
7884
|
}[] | undefined;
|
|
7679
7885
|
}) & (string | {
|
|
7680
7886
|
file: string;
|
|
7887
|
+
description?: string | undefined;
|
|
7681
7888
|
handler?: string | undefined;
|
|
7682
7889
|
minify?: boolean | undefined;
|
|
7683
7890
|
warm?: number | undefined;
|
|
@@ -7731,6 +7938,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7731
7938
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7732
7939
|
consumer: (string | {
|
|
7733
7940
|
file: string;
|
|
7941
|
+
description?: string | undefined;
|
|
7734
7942
|
handler?: string | undefined;
|
|
7735
7943
|
minify?: boolean | undefined;
|
|
7736
7944
|
warm?: number | undefined;
|
|
@@ -7760,6 +7968,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7760
7968
|
}[] | undefined;
|
|
7761
7969
|
}) & (string | {
|
|
7762
7970
|
file: string;
|
|
7971
|
+
description?: string | undefined;
|
|
7763
7972
|
handler?: string | undefined;
|
|
7764
7973
|
minify?: boolean | undefined;
|
|
7765
7974
|
warm?: number | undefined;
|
|
@@ -7805,6 +8014,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7805
8014
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
7806
8015
|
consumer: (string | {
|
|
7807
8016
|
file: string;
|
|
8017
|
+
description?: string | undefined;
|
|
7808
8018
|
handler?: string | undefined;
|
|
7809
8019
|
minify?: boolean | undefined;
|
|
7810
8020
|
warm?: number | undefined;
|
|
@@ -7834,6 +8044,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7834
8044
|
}[] | undefined;
|
|
7835
8045
|
}) & (string | {
|
|
7836
8046
|
file: string;
|
|
8047
|
+
description?: string | undefined;
|
|
7837
8048
|
handler?: string | undefined;
|
|
7838
8049
|
minify?: boolean | undefined;
|
|
7839
8050
|
warm?: number | undefined;
|
|
@@ -7873,6 +8084,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7873
8084
|
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
8085
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
7875
8086
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
8087
|
+
description: z.ZodOptional<z.ZodString>;
|
|
7876
8088
|
handler: z.ZodOptional<z.ZodString>;
|
|
7877
8089
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
7878
8090
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -7928,6 +8140,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7928
8140
|
}>, "many">]>>;
|
|
7929
8141
|
}, "strip", z.ZodTypeAny, {
|
|
7930
8142
|
file: string;
|
|
8143
|
+
description?: string | undefined;
|
|
7931
8144
|
handler?: string | undefined;
|
|
7932
8145
|
minify?: boolean | undefined;
|
|
7933
8146
|
warm?: number | undefined;
|
|
@@ -7957,6 +8170,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7957
8170
|
}[] | undefined;
|
|
7958
8171
|
}, {
|
|
7959
8172
|
file: string;
|
|
8173
|
+
description?: string | undefined;
|
|
7960
8174
|
handler?: string | undefined;
|
|
7961
8175
|
minify?: boolean | undefined;
|
|
7962
8176
|
warm?: number | undefined;
|
|
@@ -7996,6 +8210,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
7996
8210
|
}, "strip", z.ZodTypeAny, {
|
|
7997
8211
|
consumer: (string | {
|
|
7998
8212
|
file: string;
|
|
8213
|
+
description?: string | undefined;
|
|
7999
8214
|
handler?: string | undefined;
|
|
8000
8215
|
minify?: boolean | undefined;
|
|
8001
8216
|
warm?: number | undefined;
|
|
@@ -8025,6 +8240,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8025
8240
|
}[] | undefined;
|
|
8026
8241
|
}) & (string | {
|
|
8027
8242
|
file: string;
|
|
8243
|
+
description?: string | undefined;
|
|
8028
8244
|
handler?: string | undefined;
|
|
8029
8245
|
minify?: boolean | undefined;
|
|
8030
8246
|
warm?: number | undefined;
|
|
@@ -8064,6 +8280,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8064
8280
|
}, {
|
|
8065
8281
|
consumer: (string | {
|
|
8066
8282
|
file: string;
|
|
8283
|
+
description?: string | undefined;
|
|
8067
8284
|
handler?: string | undefined;
|
|
8068
8285
|
minify?: boolean | undefined;
|
|
8069
8286
|
warm?: number | undefined;
|
|
@@ -8093,6 +8310,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8093
8310
|
}[] | undefined;
|
|
8094
8311
|
}) & (string | {
|
|
8095
8312
|
file: string;
|
|
8313
|
+
description?: string | undefined;
|
|
8096
8314
|
handler?: string | undefined;
|
|
8097
8315
|
minify?: boolean | undefined;
|
|
8098
8316
|
warm?: number | undefined;
|
|
@@ -8135,6 +8353,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8135
8353
|
sqlVersion: z.ZodDefault<z.ZodEnum<["2015-10-08", "2016-03-23", "beta"]>>;
|
|
8136
8354
|
consumer: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
8137
8355
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
8356
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8138
8357
|
handler: z.ZodOptional<z.ZodString>;
|
|
8139
8358
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
8140
8359
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8190,6 +8409,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8190
8409
|
}>, "many">]>>;
|
|
8191
8410
|
}, "strip", z.ZodTypeAny, {
|
|
8192
8411
|
file: string;
|
|
8412
|
+
description?: string | undefined;
|
|
8193
8413
|
handler?: string | undefined;
|
|
8194
8414
|
minify?: boolean | undefined;
|
|
8195
8415
|
warm?: number | undefined;
|
|
@@ -8219,6 +8439,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8219
8439
|
}[] | undefined;
|
|
8220
8440
|
}, {
|
|
8221
8441
|
file: string;
|
|
8442
|
+
description?: string | undefined;
|
|
8222
8443
|
handler?: string | undefined;
|
|
8223
8444
|
minify?: boolean | undefined;
|
|
8224
8445
|
warm?: number | undefined;
|
|
@@ -8250,6 +8471,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8250
8471
|
}, "strip", z.ZodTypeAny, {
|
|
8251
8472
|
consumer: (string | {
|
|
8252
8473
|
file: string;
|
|
8474
|
+
description?: string | undefined;
|
|
8253
8475
|
handler?: string | undefined;
|
|
8254
8476
|
minify?: boolean | undefined;
|
|
8255
8477
|
warm?: number | undefined;
|
|
@@ -8279,6 +8501,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8279
8501
|
}[] | undefined;
|
|
8280
8502
|
}) & (string | {
|
|
8281
8503
|
file: string;
|
|
8504
|
+
description?: string | undefined;
|
|
8282
8505
|
handler?: string | undefined;
|
|
8283
8506
|
minify?: boolean | undefined;
|
|
8284
8507
|
warm?: number | undefined;
|
|
@@ -8312,6 +8535,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8312
8535
|
}, {
|
|
8313
8536
|
consumer: (string | {
|
|
8314
8537
|
file: string;
|
|
8538
|
+
description?: string | undefined;
|
|
8315
8539
|
handler?: string | undefined;
|
|
8316
8540
|
minify?: boolean | undefined;
|
|
8317
8541
|
warm?: number | undefined;
|
|
@@ -8341,6 +8565,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8341
8565
|
}[] | undefined;
|
|
8342
8566
|
}) & (string | {
|
|
8343
8567
|
file: string;
|
|
8568
|
+
description?: string | undefined;
|
|
8344
8569
|
handler?: string | undefined;
|
|
8345
8570
|
minify?: boolean | undefined;
|
|
8346
8571
|
warm?: number | undefined;
|
|
@@ -8379,6 +8604,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8379
8604
|
static: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
|
8380
8605
|
ssr: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodObject<{
|
|
8381
8606
|
file: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
8607
|
+
description: z.ZodOptional<z.ZodString>;
|
|
8382
8608
|
handler: z.ZodOptional<z.ZodString>;
|
|
8383
8609
|
minify: z.ZodOptional<z.ZodBoolean>;
|
|
8384
8610
|
warm: z.ZodOptional<z.ZodNumber>;
|
|
@@ -8434,6 +8660,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8434
8660
|
}>, "many">]>>;
|
|
8435
8661
|
}, "strip", z.ZodTypeAny, {
|
|
8436
8662
|
file: string;
|
|
8663
|
+
description?: string | undefined;
|
|
8437
8664
|
handler?: string | undefined;
|
|
8438
8665
|
minify?: boolean | undefined;
|
|
8439
8666
|
warm?: number | undefined;
|
|
@@ -8463,6 +8690,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8463
8690
|
}[] | undefined;
|
|
8464
8691
|
}, {
|
|
8465
8692
|
file: string;
|
|
8693
|
+
description?: string | undefined;
|
|
8466
8694
|
handler?: string | undefined;
|
|
8467
8695
|
minify?: boolean | undefined;
|
|
8468
8696
|
warm?: number | undefined;
|
|
@@ -8793,6 +9021,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8793
9021
|
static?: string | undefined;
|
|
8794
9022
|
ssr?: string | {
|
|
8795
9023
|
file: string;
|
|
9024
|
+
description?: string | undefined;
|
|
8796
9025
|
handler?: string | undefined;
|
|
8797
9026
|
minify?: boolean | undefined;
|
|
8798
9027
|
warm?: number | undefined;
|
|
@@ -8899,6 +9128,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
8899
9128
|
static?: string | undefined;
|
|
8900
9129
|
ssr?: string | {
|
|
8901
9130
|
file: string;
|
|
9131
|
+
description?: string | undefined;
|
|
8902
9132
|
handler?: string | undefined;
|
|
8903
9133
|
minify?: boolean | undefined;
|
|
8904
9134
|
warm?: number | undefined;
|
|
@@ -9007,6 +9237,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9007
9237
|
depends?: string[] | undefined;
|
|
9008
9238
|
onFailure?: string | {
|
|
9009
9239
|
file: string;
|
|
9240
|
+
description?: string | undefined;
|
|
9010
9241
|
handler?: string | undefined;
|
|
9011
9242
|
minify?: boolean | undefined;
|
|
9012
9243
|
warm?: number | undefined;
|
|
@@ -9039,6 +9270,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9039
9270
|
triggers?: {
|
|
9040
9271
|
beforeToken?: string | {
|
|
9041
9272
|
file: string;
|
|
9273
|
+
description?: string | undefined;
|
|
9042
9274
|
handler?: string | undefined;
|
|
9043
9275
|
minify?: boolean | undefined;
|
|
9044
9276
|
warm?: number | undefined;
|
|
@@ -9069,6 +9301,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9069
9301
|
} | undefined;
|
|
9070
9302
|
beforeLogin?: string | {
|
|
9071
9303
|
file: string;
|
|
9304
|
+
description?: string | undefined;
|
|
9072
9305
|
handler?: string | undefined;
|
|
9073
9306
|
minify?: boolean | undefined;
|
|
9074
9307
|
warm?: number | undefined;
|
|
@@ -9099,6 +9332,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9099
9332
|
} | undefined;
|
|
9100
9333
|
afterLogin?: string | {
|
|
9101
9334
|
file: string;
|
|
9335
|
+
description?: string | undefined;
|
|
9102
9336
|
handler?: string | undefined;
|
|
9103
9337
|
minify?: boolean | undefined;
|
|
9104
9338
|
warm?: number | undefined;
|
|
@@ -9129,6 +9363,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9129
9363
|
} | undefined;
|
|
9130
9364
|
beforeRegister?: string | {
|
|
9131
9365
|
file: string;
|
|
9366
|
+
description?: string | undefined;
|
|
9132
9367
|
handler?: string | undefined;
|
|
9133
9368
|
minify?: boolean | undefined;
|
|
9134
9369
|
warm?: number | undefined;
|
|
@@ -9159,6 +9394,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9159
9394
|
} | undefined;
|
|
9160
9395
|
afterRegister?: string | {
|
|
9161
9396
|
file: string;
|
|
9397
|
+
description?: string | undefined;
|
|
9162
9398
|
handler?: string | undefined;
|
|
9163
9399
|
minify?: boolean | undefined;
|
|
9164
9400
|
warm?: number | undefined;
|
|
@@ -9189,6 +9425,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9189
9425
|
} | undefined;
|
|
9190
9426
|
customMessage?: string | {
|
|
9191
9427
|
file: string;
|
|
9428
|
+
description?: string | undefined;
|
|
9192
9429
|
handler?: string | undefined;
|
|
9193
9430
|
minify?: boolean | undefined;
|
|
9194
9431
|
warm?: number | undefined;
|
|
@@ -9219,6 +9456,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9219
9456
|
} | undefined;
|
|
9220
9457
|
defineChallenge?: string | {
|
|
9221
9458
|
file: string;
|
|
9459
|
+
description?: string | undefined;
|
|
9222
9460
|
handler?: string | undefined;
|
|
9223
9461
|
minify?: boolean | undefined;
|
|
9224
9462
|
warm?: number | undefined;
|
|
@@ -9249,6 +9487,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9249
9487
|
} | undefined;
|
|
9250
9488
|
createChallenge?: string | {
|
|
9251
9489
|
file: string;
|
|
9490
|
+
description?: string | undefined;
|
|
9252
9491
|
handler?: string | undefined;
|
|
9253
9492
|
minify?: boolean | undefined;
|
|
9254
9493
|
warm?: number | undefined;
|
|
@@ -9279,6 +9518,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9279
9518
|
} | undefined;
|
|
9280
9519
|
verifyChallenge?: string | {
|
|
9281
9520
|
file: string;
|
|
9521
|
+
description?: string | undefined;
|
|
9282
9522
|
handler?: string | undefined;
|
|
9283
9523
|
minify?: boolean | undefined;
|
|
9284
9524
|
warm?: number | undefined;
|
|
@@ -9313,6 +9553,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9313
9553
|
schema?: string | string[] | undefined;
|
|
9314
9554
|
resolvers?: Record<string, Record<string, string | {
|
|
9315
9555
|
file: string;
|
|
9556
|
+
description?: string | undefined;
|
|
9316
9557
|
handler?: string | undefined;
|
|
9317
9558
|
minify?: boolean | undefined;
|
|
9318
9559
|
warm?: number | undefined;
|
|
@@ -9343,6 +9584,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9343
9584
|
} | {
|
|
9344
9585
|
consumer: (string | {
|
|
9345
9586
|
file: string;
|
|
9587
|
+
description?: string | undefined;
|
|
9346
9588
|
handler?: string | undefined;
|
|
9347
9589
|
minify?: boolean | undefined;
|
|
9348
9590
|
warm?: number | undefined;
|
|
@@ -9372,6 +9614,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9372
9614
|
}[] | undefined;
|
|
9373
9615
|
}) & (string | {
|
|
9374
9616
|
file: string;
|
|
9617
|
+
description?: string | undefined;
|
|
9375
9618
|
handler?: string | undefined;
|
|
9376
9619
|
minify?: boolean | undefined;
|
|
9377
9620
|
warm?: number | undefined;
|
|
@@ -9405,6 +9648,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9405
9648
|
}> | undefined;
|
|
9406
9649
|
http?: Record<string, Partial<Record<`POST /${string}` | `GET /${string}` | `PUT /${string}` | `DELETE /${string}` | `HEAD /${string}` | `OPTIONS /${string}`, string | {
|
|
9407
9650
|
file: string;
|
|
9651
|
+
description?: string | undefined;
|
|
9408
9652
|
handler?: string | undefined;
|
|
9409
9653
|
minify?: boolean | undefined;
|
|
9410
9654
|
warm?: number | undefined;
|
|
@@ -9435,6 +9679,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9435
9679
|
}>>> | undefined;
|
|
9436
9680
|
rest?: Record<string, Record<string, string | {
|
|
9437
9681
|
file: string;
|
|
9682
|
+
description?: string | undefined;
|
|
9438
9683
|
handler?: string | undefined;
|
|
9439
9684
|
minify?: boolean | undefined;
|
|
9440
9685
|
warm?: number | undefined;
|
|
@@ -9467,6 +9712,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9467
9712
|
crons?: Record<string, {
|
|
9468
9713
|
consumer: (string | {
|
|
9469
9714
|
file: string;
|
|
9715
|
+
description?: string | undefined;
|
|
9470
9716
|
handler?: string | undefined;
|
|
9471
9717
|
minify?: boolean | undefined;
|
|
9472
9718
|
warm?: number | undefined;
|
|
@@ -9496,6 +9742,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9496
9742
|
}[] | undefined;
|
|
9497
9743
|
}) & (string | {
|
|
9498
9744
|
file: string;
|
|
9745
|
+
description?: string | undefined;
|
|
9499
9746
|
handler?: string | undefined;
|
|
9500
9747
|
minify?: boolean | undefined;
|
|
9501
9748
|
warm?: number | undefined;
|
|
@@ -9539,6 +9786,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9539
9786
|
topics?: string[] | undefined;
|
|
9540
9787
|
subscribers?: Record<string, string | {
|
|
9541
9788
|
file: string;
|
|
9789
|
+
description?: string | undefined;
|
|
9542
9790
|
handler?: string | undefined;
|
|
9543
9791
|
minify?: boolean | undefined;
|
|
9544
9792
|
warm?: number | undefined;
|
|
@@ -9569,6 +9817,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9569
9817
|
}> | undefined;
|
|
9570
9818
|
functions?: Record<string, string | {
|
|
9571
9819
|
file: string;
|
|
9820
|
+
description?: string | undefined;
|
|
9572
9821
|
handler?: string | undefined;
|
|
9573
9822
|
minify?: boolean | undefined;
|
|
9574
9823
|
warm?: number | undefined;
|
|
@@ -9608,6 +9857,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9608
9857
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
9609
9858
|
consumer: (string | {
|
|
9610
9859
|
file: string;
|
|
9860
|
+
description?: string | undefined;
|
|
9611
9861
|
handler?: string | undefined;
|
|
9612
9862
|
minify?: boolean | undefined;
|
|
9613
9863
|
warm?: number | undefined;
|
|
@@ -9637,6 +9887,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9637
9887
|
}[] | undefined;
|
|
9638
9888
|
}) & (string | {
|
|
9639
9889
|
file: string;
|
|
9890
|
+
description?: string | undefined;
|
|
9640
9891
|
handler?: string | undefined;
|
|
9641
9892
|
minify?: boolean | undefined;
|
|
9642
9893
|
warm?: number | undefined;
|
|
@@ -9676,6 +9927,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9676
9927
|
queues?: Record<string, string | {
|
|
9677
9928
|
consumer: (string | {
|
|
9678
9929
|
file: string;
|
|
9930
|
+
description?: string | undefined;
|
|
9679
9931
|
handler?: string | undefined;
|
|
9680
9932
|
minify?: boolean | undefined;
|
|
9681
9933
|
warm?: number | undefined;
|
|
@@ -9705,6 +9957,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9705
9957
|
}[] | undefined;
|
|
9706
9958
|
}) & (string | {
|
|
9707
9959
|
file: string;
|
|
9960
|
+
description?: string | undefined;
|
|
9708
9961
|
handler?: string | undefined;
|
|
9709
9962
|
minify?: boolean | undefined;
|
|
9710
9963
|
warm?: number | undefined;
|
|
@@ -9745,6 +9998,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9745
9998
|
pubsub?: Record<string, {
|
|
9746
9999
|
consumer: (string | {
|
|
9747
10000
|
file: string;
|
|
10001
|
+
description?: string | undefined;
|
|
9748
10002
|
handler?: string | undefined;
|
|
9749
10003
|
minify?: boolean | undefined;
|
|
9750
10004
|
warm?: number | undefined;
|
|
@@ -9774,6 +10028,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9774
10028
|
}[] | undefined;
|
|
9775
10029
|
}) & (string | {
|
|
9776
10030
|
file: string;
|
|
10031
|
+
description?: string | undefined;
|
|
9777
10032
|
handler?: string | undefined;
|
|
9778
10033
|
minify?: boolean | undefined;
|
|
9779
10034
|
warm?: number | undefined;
|
|
@@ -9812,6 +10067,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9812
10067
|
static?: string | undefined;
|
|
9813
10068
|
ssr?: string | {
|
|
9814
10069
|
file: string;
|
|
10070
|
+
description?: string | undefined;
|
|
9815
10071
|
handler?: string | undefined;
|
|
9816
10072
|
minify?: boolean | undefined;
|
|
9817
10073
|
warm?: number | undefined;
|
|
@@ -9920,6 +10176,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9920
10176
|
depends?: string[] | undefined;
|
|
9921
10177
|
onFailure?: string | {
|
|
9922
10178
|
file: string;
|
|
10179
|
+
description?: string | undefined;
|
|
9923
10180
|
handler?: string | undefined;
|
|
9924
10181
|
minify?: boolean | undefined;
|
|
9925
10182
|
warm?: number | undefined;
|
|
@@ -9952,6 +10209,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9952
10209
|
triggers?: {
|
|
9953
10210
|
beforeToken?: string | {
|
|
9954
10211
|
file: string;
|
|
10212
|
+
description?: string | undefined;
|
|
9955
10213
|
handler?: string | undefined;
|
|
9956
10214
|
minify?: boolean | undefined;
|
|
9957
10215
|
warm?: number | undefined;
|
|
@@ -9982,6 +10240,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
9982
10240
|
} | undefined;
|
|
9983
10241
|
beforeLogin?: string | {
|
|
9984
10242
|
file: string;
|
|
10243
|
+
description?: string | undefined;
|
|
9985
10244
|
handler?: string | undefined;
|
|
9986
10245
|
minify?: boolean | undefined;
|
|
9987
10246
|
warm?: number | undefined;
|
|
@@ -10012,6 +10271,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10012
10271
|
} | undefined;
|
|
10013
10272
|
afterLogin?: string | {
|
|
10014
10273
|
file: string;
|
|
10274
|
+
description?: string | undefined;
|
|
10015
10275
|
handler?: string | undefined;
|
|
10016
10276
|
minify?: boolean | undefined;
|
|
10017
10277
|
warm?: number | undefined;
|
|
@@ -10042,6 +10302,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10042
10302
|
} | undefined;
|
|
10043
10303
|
beforeRegister?: string | {
|
|
10044
10304
|
file: string;
|
|
10305
|
+
description?: string | undefined;
|
|
10045
10306
|
handler?: string | undefined;
|
|
10046
10307
|
minify?: boolean | undefined;
|
|
10047
10308
|
warm?: number | undefined;
|
|
@@ -10072,6 +10333,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10072
10333
|
} | undefined;
|
|
10073
10334
|
afterRegister?: string | {
|
|
10074
10335
|
file: string;
|
|
10336
|
+
description?: string | undefined;
|
|
10075
10337
|
handler?: string | undefined;
|
|
10076
10338
|
minify?: boolean | undefined;
|
|
10077
10339
|
warm?: number | undefined;
|
|
@@ -10102,6 +10364,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10102
10364
|
} | undefined;
|
|
10103
10365
|
customMessage?: string | {
|
|
10104
10366
|
file: string;
|
|
10367
|
+
description?: string | undefined;
|
|
10105
10368
|
handler?: string | undefined;
|
|
10106
10369
|
minify?: boolean | undefined;
|
|
10107
10370
|
warm?: number | undefined;
|
|
@@ -10132,6 +10395,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10132
10395
|
} | undefined;
|
|
10133
10396
|
defineChallenge?: string | {
|
|
10134
10397
|
file: string;
|
|
10398
|
+
description?: string | undefined;
|
|
10135
10399
|
handler?: string | undefined;
|
|
10136
10400
|
minify?: boolean | undefined;
|
|
10137
10401
|
warm?: number | undefined;
|
|
@@ -10162,6 +10426,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10162
10426
|
} | undefined;
|
|
10163
10427
|
createChallenge?: string | {
|
|
10164
10428
|
file: string;
|
|
10429
|
+
description?: string | undefined;
|
|
10165
10430
|
handler?: string | undefined;
|
|
10166
10431
|
minify?: boolean | undefined;
|
|
10167
10432
|
warm?: number | undefined;
|
|
@@ -10192,6 +10457,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10192
10457
|
} | undefined;
|
|
10193
10458
|
verifyChallenge?: string | {
|
|
10194
10459
|
file: string;
|
|
10460
|
+
description?: string | undefined;
|
|
10195
10461
|
handler?: string | undefined;
|
|
10196
10462
|
minify?: boolean | undefined;
|
|
10197
10463
|
warm?: number | undefined;
|
|
@@ -10226,6 +10492,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10226
10492
|
schema?: string | string[] | undefined;
|
|
10227
10493
|
resolvers?: Record<string, Record<string, string | {
|
|
10228
10494
|
file: string;
|
|
10495
|
+
description?: string | undefined;
|
|
10229
10496
|
handler?: string | undefined;
|
|
10230
10497
|
minify?: boolean | undefined;
|
|
10231
10498
|
warm?: number | undefined;
|
|
@@ -10256,6 +10523,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10256
10523
|
} | {
|
|
10257
10524
|
consumer: (string | {
|
|
10258
10525
|
file: string;
|
|
10526
|
+
description?: string | undefined;
|
|
10259
10527
|
handler?: string | undefined;
|
|
10260
10528
|
minify?: boolean | undefined;
|
|
10261
10529
|
warm?: number | undefined;
|
|
@@ -10285,6 +10553,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10285
10553
|
}[] | undefined;
|
|
10286
10554
|
}) & (string | {
|
|
10287
10555
|
file: string;
|
|
10556
|
+
description?: string | undefined;
|
|
10288
10557
|
handler?: string | undefined;
|
|
10289
10558
|
minify?: boolean | undefined;
|
|
10290
10559
|
warm?: number | undefined;
|
|
@@ -10318,6 +10587,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10318
10587
|
}> | undefined;
|
|
10319
10588
|
http?: Record<string, Record<string, string | {
|
|
10320
10589
|
file: string;
|
|
10590
|
+
description?: string | undefined;
|
|
10321
10591
|
handler?: string | undefined;
|
|
10322
10592
|
minify?: boolean | undefined;
|
|
10323
10593
|
warm?: number | undefined;
|
|
@@ -10348,6 +10618,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10348
10618
|
}>> | undefined;
|
|
10349
10619
|
rest?: Record<string, Record<string, string | {
|
|
10350
10620
|
file: string;
|
|
10621
|
+
description?: string | undefined;
|
|
10351
10622
|
handler?: string | undefined;
|
|
10352
10623
|
minify?: boolean | undefined;
|
|
10353
10624
|
warm?: number | undefined;
|
|
@@ -10380,6 +10651,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10380
10651
|
crons?: Record<string, {
|
|
10381
10652
|
consumer: (string | {
|
|
10382
10653
|
file: string;
|
|
10654
|
+
description?: string | undefined;
|
|
10383
10655
|
handler?: string | undefined;
|
|
10384
10656
|
minify?: boolean | undefined;
|
|
10385
10657
|
warm?: number | undefined;
|
|
@@ -10409,6 +10681,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10409
10681
|
}[] | undefined;
|
|
10410
10682
|
}) & (string | {
|
|
10411
10683
|
file: string;
|
|
10684
|
+
description?: string | undefined;
|
|
10412
10685
|
handler?: string | undefined;
|
|
10413
10686
|
minify?: boolean | undefined;
|
|
10414
10687
|
warm?: number | undefined;
|
|
@@ -10452,6 +10725,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10452
10725
|
topics?: string[] | undefined;
|
|
10453
10726
|
subscribers?: Record<string, string | {
|
|
10454
10727
|
file: string;
|
|
10728
|
+
description?: string | undefined;
|
|
10455
10729
|
handler?: string | undefined;
|
|
10456
10730
|
minify?: boolean | undefined;
|
|
10457
10731
|
warm?: number | undefined;
|
|
@@ -10482,6 +10756,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10482
10756
|
}> | undefined;
|
|
10483
10757
|
functions?: Record<string, string | {
|
|
10484
10758
|
file: string;
|
|
10759
|
+
description?: string | undefined;
|
|
10485
10760
|
handler?: string | undefined;
|
|
10486
10761
|
minify?: boolean | undefined;
|
|
10487
10762
|
warm?: number | undefined;
|
|
@@ -10521,6 +10796,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10521
10796
|
type: "keys-only" | "new-image" | "old-image" | "new-and-old-images";
|
|
10522
10797
|
consumer: (string | {
|
|
10523
10798
|
file: string;
|
|
10799
|
+
description?: string | undefined;
|
|
10524
10800
|
handler?: string | undefined;
|
|
10525
10801
|
minify?: boolean | undefined;
|
|
10526
10802
|
warm?: number | undefined;
|
|
@@ -10550,6 +10826,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10550
10826
|
}[] | undefined;
|
|
10551
10827
|
}) & (string | {
|
|
10552
10828
|
file: string;
|
|
10829
|
+
description?: string | undefined;
|
|
10553
10830
|
handler?: string | undefined;
|
|
10554
10831
|
minify?: boolean | undefined;
|
|
10555
10832
|
warm?: number | undefined;
|
|
@@ -10589,6 +10866,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10589
10866
|
queues?: Record<string, string | {
|
|
10590
10867
|
consumer: (string | {
|
|
10591
10868
|
file: string;
|
|
10869
|
+
description?: string | undefined;
|
|
10592
10870
|
handler?: string | undefined;
|
|
10593
10871
|
minify?: boolean | undefined;
|
|
10594
10872
|
warm?: number | undefined;
|
|
@@ -10618,6 +10896,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10618
10896
|
}[] | undefined;
|
|
10619
10897
|
}) & (string | {
|
|
10620
10898
|
file: string;
|
|
10899
|
+
description?: string | undefined;
|
|
10621
10900
|
handler?: string | undefined;
|
|
10622
10901
|
minify?: boolean | undefined;
|
|
10623
10902
|
warm?: number | undefined;
|
|
@@ -10658,6 +10937,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10658
10937
|
pubsub?: Record<string, {
|
|
10659
10938
|
consumer: (string | {
|
|
10660
10939
|
file: string;
|
|
10940
|
+
description?: string | undefined;
|
|
10661
10941
|
handler?: string | undefined;
|
|
10662
10942
|
minify?: boolean | undefined;
|
|
10663
10943
|
warm?: number | undefined;
|
|
@@ -10687,6 +10967,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10687
10967
|
}[] | undefined;
|
|
10688
10968
|
}) & (string | {
|
|
10689
10969
|
file: string;
|
|
10970
|
+
description?: string | undefined;
|
|
10690
10971
|
handler?: string | undefined;
|
|
10691
10972
|
minify?: boolean | undefined;
|
|
10692
10973
|
warm?: number | undefined;
|
|
@@ -10725,6 +11006,7 @@ declare const StackSchema: z.ZodObject<{
|
|
|
10725
11006
|
static?: string | undefined;
|
|
10726
11007
|
ssr?: string | {
|
|
10727
11008
|
file: string;
|
|
11009
|
+
description?: string | undefined;
|
|
10728
11010
|
handler?: string | undefined;
|
|
10729
11011
|
minify?: boolean | undefined;
|
|
10730
11012
|
warm?: number | undefined;
|