authhero 8.8.0 → 8.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +109 -107
- package/dist/authhero.d.ts +270 -242
- package/dist/authhero.mjs +11199 -10618
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/mutable-response.d.ts +15 -3
- package/dist/types/helpers/tenant-export-import/export.d.ts +21 -0
- package/dist/types/helpers/tenant-export-import/import.d.ts +12 -0
- package/dist/types/helpers/tenant-export-import/index.d.ts +4 -0
- package/dist/types/helpers/tenant-export-import/manifest.d.ts +12 -0
- package/dist/types/helpers/tenant-export-import/row-access.d.ts +20 -0
- package/dist/types/helpers/tenant-export-import/types.d.ts +53 -0
- package/dist/types/index.d.ts +266 -223
- package/dist/types/routes/auth-api/index.d.ts +28 -28
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +5 -5
- package/dist/types/routes/management-api/clients.d.ts +13 -13
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +231 -188
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenant-export-import.d.ts +49 -0
- package/dist/types/routes/management-api/tenants.d.ts +3 -3
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/universal-login/common.d.ts +10 -10
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/types/IdToken.d.ts +4 -4
- package/package.json +5 -5
package/dist/types/index.d.ts
CHANGED
|
@@ -54,6 +54,49 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
54
54
|
Bindings: Bindings;
|
|
55
55
|
Variables: Variables;
|
|
56
56
|
}, import("hono/types").MergeSchemaPath<{
|
|
57
|
+
"/export": {
|
|
58
|
+
$get: {
|
|
59
|
+
input: {
|
|
60
|
+
query: {
|
|
61
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
62
|
+
gzip?: "true" | "false" | undefined;
|
|
63
|
+
};
|
|
64
|
+
} & {
|
|
65
|
+
header: {
|
|
66
|
+
"tenant-id"?: string | undefined;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
output: Response;
|
|
70
|
+
outputFormat: "json";
|
|
71
|
+
status: import("hono/utils/http-status").StatusCode;
|
|
72
|
+
};
|
|
73
|
+
};
|
|
74
|
+
} & {
|
|
75
|
+
"/import": {
|
|
76
|
+
$post: {
|
|
77
|
+
input: {
|
|
78
|
+
query: {
|
|
79
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
80
|
+
};
|
|
81
|
+
} & {
|
|
82
|
+
header: {
|
|
83
|
+
"tenant-id"?: string | undefined;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
output: {
|
|
87
|
+
counts: {
|
|
88
|
+
[x: string]: number;
|
|
89
|
+
};
|
|
90
|
+
errors: {
|
|
91
|
+
entity: string;
|
|
92
|
+
error: string;
|
|
93
|
+
}[];
|
|
94
|
+
};
|
|
95
|
+
outputFormat: "json";
|
|
96
|
+
status: 200;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}, "/tenant-data"> & import("hono/types").MergeSchemaPath<{
|
|
57
100
|
"/": {
|
|
58
101
|
$get: {
|
|
59
102
|
input: {
|
|
@@ -87,7 +130,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
87
130
|
};
|
|
88
131
|
} & {
|
|
89
132
|
json: {
|
|
90
|
-
type: "email" | "
|
|
133
|
+
type: "email" | "push" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
91
134
|
phone_number?: string | undefined;
|
|
92
135
|
totp_secret?: string | undefined;
|
|
93
136
|
credential_id?: string | undefined;
|
|
@@ -227,7 +270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
227
270
|
};
|
|
228
271
|
};
|
|
229
272
|
output: {
|
|
230
|
-
name: "
|
|
273
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
231
274
|
enabled: boolean;
|
|
232
275
|
trial_expired?: boolean | undefined;
|
|
233
276
|
}[];
|
|
@@ -382,7 +425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
382
425
|
$get: {
|
|
383
426
|
input: {
|
|
384
427
|
param: {
|
|
385
|
-
factor_name: "
|
|
428
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
386
429
|
};
|
|
387
430
|
} & {
|
|
388
431
|
header: {
|
|
@@ -390,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
390
433
|
};
|
|
391
434
|
};
|
|
392
435
|
output: {
|
|
393
|
-
name: "
|
|
436
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
394
437
|
enabled: boolean;
|
|
395
438
|
trial_expired?: boolean | undefined;
|
|
396
439
|
};
|
|
@@ -403,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
403
446
|
$put: {
|
|
404
447
|
input: {
|
|
405
448
|
param: {
|
|
406
|
-
factor_name: "
|
|
449
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
407
450
|
};
|
|
408
451
|
} & {
|
|
409
452
|
header: {
|
|
@@ -415,7 +458,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
415
458
|
};
|
|
416
459
|
};
|
|
417
460
|
output: {
|
|
418
|
-
name: "
|
|
461
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
419
462
|
enabled: boolean;
|
|
420
463
|
trial_expired?: boolean | undefined;
|
|
421
464
|
};
|
|
@@ -1162,9 +1205,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1162
1205
|
};
|
|
1163
1206
|
id?: string | undefined;
|
|
1164
1207
|
roles?: string[] | undefined;
|
|
1208
|
+
connection_id?: string | undefined;
|
|
1165
1209
|
app_metadata?: Record<string, any> | undefined;
|
|
1166
1210
|
user_metadata?: Record<string, any> | undefined;
|
|
1167
|
-
connection_id?: string | undefined;
|
|
1168
1211
|
ttl_sec?: number | undefined;
|
|
1169
1212
|
send_invitation_email?: boolean | undefined;
|
|
1170
1213
|
};
|
|
@@ -1348,8 +1391,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1348
1391
|
};
|
|
1349
1392
|
} & {
|
|
1350
1393
|
json: {
|
|
1351
|
-
show_as_button?: boolean | undefined;
|
|
1352
1394
|
assign_membership_on_login?: boolean | undefined;
|
|
1395
|
+
show_as_button?: boolean | undefined;
|
|
1353
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1354
1397
|
};
|
|
1355
1398
|
};
|
|
@@ -2591,7 +2634,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2591
2634
|
hint?: string | undefined;
|
|
2592
2635
|
messages?: {
|
|
2593
2636
|
text: string;
|
|
2594
|
-
type: "
|
|
2637
|
+
type: "error" | "success" | "info" | "warning";
|
|
2595
2638
|
id?: number | undefined;
|
|
2596
2639
|
}[] | undefined;
|
|
2597
2640
|
required?: boolean | undefined;
|
|
@@ -2609,7 +2652,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2609
2652
|
hint?: string | undefined;
|
|
2610
2653
|
messages?: {
|
|
2611
2654
|
text: string;
|
|
2612
|
-
type: "
|
|
2655
|
+
type: "error" | "success" | "info" | "warning";
|
|
2613
2656
|
id?: number | undefined;
|
|
2614
2657
|
}[] | undefined;
|
|
2615
2658
|
required?: boolean | undefined;
|
|
@@ -2633,7 +2676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2633
2676
|
hint?: string | undefined;
|
|
2634
2677
|
messages?: {
|
|
2635
2678
|
text: string;
|
|
2636
|
-
type: "
|
|
2679
|
+
type: "error" | "success" | "info" | "warning";
|
|
2637
2680
|
id?: number | undefined;
|
|
2638
2681
|
}[] | undefined;
|
|
2639
2682
|
required?: boolean | undefined;
|
|
@@ -2657,7 +2700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2657
2700
|
hint?: string | undefined;
|
|
2658
2701
|
messages?: {
|
|
2659
2702
|
text: string;
|
|
2660
|
-
type: "
|
|
2703
|
+
type: "error" | "success" | "info" | "warning";
|
|
2661
2704
|
id?: number | undefined;
|
|
2662
2705
|
}[] | undefined;
|
|
2663
2706
|
required?: boolean | undefined;
|
|
@@ -2681,7 +2724,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2681
2724
|
hint?: string | undefined;
|
|
2682
2725
|
messages?: {
|
|
2683
2726
|
text: string;
|
|
2684
|
-
type: "
|
|
2727
|
+
type: "error" | "success" | "info" | "warning";
|
|
2685
2728
|
id?: number | undefined;
|
|
2686
2729
|
}[] | undefined;
|
|
2687
2730
|
required?: boolean | undefined;
|
|
@@ -2710,7 +2753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2710
2753
|
hint?: string | undefined;
|
|
2711
2754
|
messages?: {
|
|
2712
2755
|
text: string;
|
|
2713
|
-
type: "
|
|
2756
|
+
type: "error" | "success" | "info" | "warning";
|
|
2714
2757
|
id?: number | undefined;
|
|
2715
2758
|
}[] | undefined;
|
|
2716
2759
|
required?: boolean | undefined;
|
|
@@ -2725,7 +2768,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2725
2768
|
hint?: string | undefined;
|
|
2726
2769
|
messages?: {
|
|
2727
2770
|
text: string;
|
|
2728
|
-
type: "
|
|
2771
|
+
type: "error" | "success" | "info" | "warning";
|
|
2729
2772
|
id?: number | undefined;
|
|
2730
2773
|
}[] | undefined;
|
|
2731
2774
|
required?: boolean | undefined;
|
|
@@ -2746,7 +2789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2746
2789
|
hint?: string | undefined;
|
|
2747
2790
|
messages?: {
|
|
2748
2791
|
text: string;
|
|
2749
|
-
type: "
|
|
2792
|
+
type: "error" | "success" | "info" | "warning";
|
|
2750
2793
|
id?: number | undefined;
|
|
2751
2794
|
}[] | undefined;
|
|
2752
2795
|
required?: boolean | undefined;
|
|
@@ -2771,7 +2814,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2771
2814
|
hint?: string | undefined;
|
|
2772
2815
|
messages?: {
|
|
2773
2816
|
text: string;
|
|
2774
|
-
type: "
|
|
2817
|
+
type: "error" | "success" | "info" | "warning";
|
|
2775
2818
|
id?: number | undefined;
|
|
2776
2819
|
}[] | undefined;
|
|
2777
2820
|
required?: boolean | undefined;
|
|
@@ -2790,7 +2833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2790
2833
|
hint?: string | undefined;
|
|
2791
2834
|
messages?: {
|
|
2792
2835
|
text: string;
|
|
2793
|
-
type: "
|
|
2836
|
+
type: "error" | "success" | "info" | "warning";
|
|
2794
2837
|
id?: number | undefined;
|
|
2795
2838
|
}[] | undefined;
|
|
2796
2839
|
required?: boolean | undefined;
|
|
@@ -2810,7 +2853,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2810
2853
|
hint?: string | undefined;
|
|
2811
2854
|
messages?: {
|
|
2812
2855
|
text: string;
|
|
2813
|
-
type: "
|
|
2856
|
+
type: "error" | "success" | "info" | "warning";
|
|
2814
2857
|
id?: number | undefined;
|
|
2815
2858
|
}[] | undefined;
|
|
2816
2859
|
required?: boolean | undefined;
|
|
@@ -2829,7 +2872,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2829
2872
|
hint?: string | undefined;
|
|
2830
2873
|
messages?: {
|
|
2831
2874
|
text: string;
|
|
2832
|
-
type: "
|
|
2875
|
+
type: "error" | "success" | "info" | "warning";
|
|
2833
2876
|
id?: number | undefined;
|
|
2834
2877
|
}[] | undefined;
|
|
2835
2878
|
required?: boolean | undefined;
|
|
@@ -2851,7 +2894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2851
2894
|
hint?: string | undefined;
|
|
2852
2895
|
messages?: {
|
|
2853
2896
|
text: string;
|
|
2854
|
-
type: "
|
|
2897
|
+
type: "error" | "success" | "info" | "warning";
|
|
2855
2898
|
id?: number | undefined;
|
|
2856
2899
|
}[] | undefined;
|
|
2857
2900
|
required?: boolean | undefined;
|
|
@@ -2873,7 +2916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2873
2916
|
hint?: string | undefined;
|
|
2874
2917
|
messages?: {
|
|
2875
2918
|
text: string;
|
|
2876
|
-
type: "
|
|
2919
|
+
type: "error" | "success" | "info" | "warning";
|
|
2877
2920
|
id?: number | undefined;
|
|
2878
2921
|
}[] | undefined;
|
|
2879
2922
|
required?: boolean | undefined;
|
|
@@ -2892,7 +2935,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2892
2935
|
hint?: string | undefined;
|
|
2893
2936
|
messages?: {
|
|
2894
2937
|
text: string;
|
|
2895
|
-
type: "
|
|
2938
|
+
type: "error" | "success" | "info" | "warning";
|
|
2896
2939
|
id?: number | undefined;
|
|
2897
2940
|
}[] | undefined;
|
|
2898
2941
|
required?: boolean | undefined;
|
|
@@ -2917,7 +2960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2917
2960
|
hint?: string | undefined;
|
|
2918
2961
|
messages?: {
|
|
2919
2962
|
text: string;
|
|
2920
|
-
type: "
|
|
2963
|
+
type: "error" | "success" | "info" | "warning";
|
|
2921
2964
|
id?: number | undefined;
|
|
2922
2965
|
}[] | undefined;
|
|
2923
2966
|
required?: boolean | undefined;
|
|
@@ -2938,7 +2981,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2938
2981
|
hint?: string | undefined;
|
|
2939
2982
|
messages?: {
|
|
2940
2983
|
text: string;
|
|
2941
|
-
type: "
|
|
2984
|
+
type: "error" | "success" | "info" | "warning";
|
|
2942
2985
|
id?: number | undefined;
|
|
2943
2986
|
}[] | undefined;
|
|
2944
2987
|
required?: boolean | undefined;
|
|
@@ -2959,7 +3002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2959
3002
|
hint?: string | undefined;
|
|
2960
3003
|
messages?: {
|
|
2961
3004
|
text: string;
|
|
2962
|
-
type: "
|
|
3005
|
+
type: "error" | "success" | "info" | "warning";
|
|
2963
3006
|
id?: number | undefined;
|
|
2964
3007
|
}[] | undefined;
|
|
2965
3008
|
required?: boolean | undefined;
|
|
@@ -3192,7 +3235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3192
3235
|
hint?: string | undefined;
|
|
3193
3236
|
messages?: {
|
|
3194
3237
|
text: string;
|
|
3195
|
-
type: "
|
|
3238
|
+
type: "error" | "success" | "info" | "warning";
|
|
3196
3239
|
id?: number | undefined;
|
|
3197
3240
|
}[] | undefined;
|
|
3198
3241
|
required?: boolean | undefined;
|
|
@@ -3210,7 +3253,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3210
3253
|
hint?: string | undefined;
|
|
3211
3254
|
messages?: {
|
|
3212
3255
|
text: string;
|
|
3213
|
-
type: "
|
|
3256
|
+
type: "error" | "success" | "info" | "warning";
|
|
3214
3257
|
id?: number | undefined;
|
|
3215
3258
|
}[] | undefined;
|
|
3216
3259
|
required?: boolean | undefined;
|
|
@@ -3234,7 +3277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3234
3277
|
hint?: string | undefined;
|
|
3235
3278
|
messages?: {
|
|
3236
3279
|
text: string;
|
|
3237
|
-
type: "
|
|
3280
|
+
type: "error" | "success" | "info" | "warning";
|
|
3238
3281
|
id?: number | undefined;
|
|
3239
3282
|
}[] | undefined;
|
|
3240
3283
|
required?: boolean | undefined;
|
|
@@ -3258,7 +3301,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3258
3301
|
hint?: string | undefined;
|
|
3259
3302
|
messages?: {
|
|
3260
3303
|
text: string;
|
|
3261
|
-
type: "
|
|
3304
|
+
type: "error" | "success" | "info" | "warning";
|
|
3262
3305
|
id?: number | undefined;
|
|
3263
3306
|
}[] | undefined;
|
|
3264
3307
|
required?: boolean | undefined;
|
|
@@ -3282,7 +3325,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3282
3325
|
hint?: string | undefined;
|
|
3283
3326
|
messages?: {
|
|
3284
3327
|
text: string;
|
|
3285
|
-
type: "
|
|
3328
|
+
type: "error" | "success" | "info" | "warning";
|
|
3286
3329
|
id?: number | undefined;
|
|
3287
3330
|
}[] | undefined;
|
|
3288
3331
|
required?: boolean | undefined;
|
|
@@ -3311,7 +3354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3311
3354
|
hint?: string | undefined;
|
|
3312
3355
|
messages?: {
|
|
3313
3356
|
text: string;
|
|
3314
|
-
type: "
|
|
3357
|
+
type: "error" | "success" | "info" | "warning";
|
|
3315
3358
|
id?: number | undefined;
|
|
3316
3359
|
}[] | undefined;
|
|
3317
3360
|
required?: boolean | undefined;
|
|
@@ -3326,7 +3369,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3326
3369
|
hint?: string | undefined;
|
|
3327
3370
|
messages?: {
|
|
3328
3371
|
text: string;
|
|
3329
|
-
type: "
|
|
3372
|
+
type: "error" | "success" | "info" | "warning";
|
|
3330
3373
|
id?: number | undefined;
|
|
3331
3374
|
}[] | undefined;
|
|
3332
3375
|
required?: boolean | undefined;
|
|
@@ -3347,7 +3390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3347
3390
|
hint?: string | undefined;
|
|
3348
3391
|
messages?: {
|
|
3349
3392
|
text: string;
|
|
3350
|
-
type: "
|
|
3393
|
+
type: "error" | "success" | "info" | "warning";
|
|
3351
3394
|
id?: number | undefined;
|
|
3352
3395
|
}[] | undefined;
|
|
3353
3396
|
required?: boolean | undefined;
|
|
@@ -3372,7 +3415,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3372
3415
|
hint?: string | undefined;
|
|
3373
3416
|
messages?: {
|
|
3374
3417
|
text: string;
|
|
3375
|
-
type: "
|
|
3418
|
+
type: "error" | "success" | "info" | "warning";
|
|
3376
3419
|
id?: number | undefined;
|
|
3377
3420
|
}[] | undefined;
|
|
3378
3421
|
required?: boolean | undefined;
|
|
@@ -3391,7 +3434,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3391
3434
|
hint?: string | undefined;
|
|
3392
3435
|
messages?: {
|
|
3393
3436
|
text: string;
|
|
3394
|
-
type: "
|
|
3437
|
+
type: "error" | "success" | "info" | "warning";
|
|
3395
3438
|
id?: number | undefined;
|
|
3396
3439
|
}[] | undefined;
|
|
3397
3440
|
required?: boolean | undefined;
|
|
@@ -3411,7 +3454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3411
3454
|
hint?: string | undefined;
|
|
3412
3455
|
messages?: {
|
|
3413
3456
|
text: string;
|
|
3414
|
-
type: "
|
|
3457
|
+
type: "error" | "success" | "info" | "warning";
|
|
3415
3458
|
id?: number | undefined;
|
|
3416
3459
|
}[] | undefined;
|
|
3417
3460
|
required?: boolean | undefined;
|
|
@@ -3430,7 +3473,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3430
3473
|
hint?: string | undefined;
|
|
3431
3474
|
messages?: {
|
|
3432
3475
|
text: string;
|
|
3433
|
-
type: "
|
|
3476
|
+
type: "error" | "success" | "info" | "warning";
|
|
3434
3477
|
id?: number | undefined;
|
|
3435
3478
|
}[] | undefined;
|
|
3436
3479
|
required?: boolean | undefined;
|
|
@@ -3452,7 +3495,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3452
3495
|
hint?: string | undefined;
|
|
3453
3496
|
messages?: {
|
|
3454
3497
|
text: string;
|
|
3455
|
-
type: "
|
|
3498
|
+
type: "error" | "success" | "info" | "warning";
|
|
3456
3499
|
id?: number | undefined;
|
|
3457
3500
|
}[] | undefined;
|
|
3458
3501
|
required?: boolean | undefined;
|
|
@@ -3474,7 +3517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3474
3517
|
hint?: string | undefined;
|
|
3475
3518
|
messages?: {
|
|
3476
3519
|
text: string;
|
|
3477
|
-
type: "
|
|
3520
|
+
type: "error" | "success" | "info" | "warning";
|
|
3478
3521
|
id?: number | undefined;
|
|
3479
3522
|
}[] | undefined;
|
|
3480
3523
|
required?: boolean | undefined;
|
|
@@ -3493,7 +3536,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3493
3536
|
hint?: string | undefined;
|
|
3494
3537
|
messages?: {
|
|
3495
3538
|
text: string;
|
|
3496
|
-
type: "
|
|
3539
|
+
type: "error" | "success" | "info" | "warning";
|
|
3497
3540
|
id?: number | undefined;
|
|
3498
3541
|
}[] | undefined;
|
|
3499
3542
|
required?: boolean | undefined;
|
|
@@ -3518,7 +3561,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3518
3561
|
hint?: string | undefined;
|
|
3519
3562
|
messages?: {
|
|
3520
3563
|
text: string;
|
|
3521
|
-
type: "
|
|
3564
|
+
type: "error" | "success" | "info" | "warning";
|
|
3522
3565
|
id?: number | undefined;
|
|
3523
3566
|
}[] | undefined;
|
|
3524
3567
|
required?: boolean | undefined;
|
|
@@ -3539,7 +3582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3539
3582
|
hint?: string | undefined;
|
|
3540
3583
|
messages?: {
|
|
3541
3584
|
text: string;
|
|
3542
|
-
type: "
|
|
3585
|
+
type: "error" | "success" | "info" | "warning";
|
|
3543
3586
|
id?: number | undefined;
|
|
3544
3587
|
}[] | undefined;
|
|
3545
3588
|
required?: boolean | undefined;
|
|
@@ -3560,7 +3603,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3560
3603
|
hint?: string | undefined;
|
|
3561
3604
|
messages?: {
|
|
3562
3605
|
text: string;
|
|
3563
|
-
type: "
|
|
3606
|
+
type: "error" | "success" | "info" | "warning";
|
|
3564
3607
|
id?: number | undefined;
|
|
3565
3608
|
}[] | undefined;
|
|
3566
3609
|
required?: boolean | undefined;
|
|
@@ -3808,7 +3851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3808
3851
|
hint?: string | undefined;
|
|
3809
3852
|
messages?: {
|
|
3810
3853
|
text: string;
|
|
3811
|
-
type: "
|
|
3854
|
+
type: "error" | "success" | "info" | "warning";
|
|
3812
3855
|
id?: number | undefined;
|
|
3813
3856
|
}[] | undefined;
|
|
3814
3857
|
required?: boolean | undefined;
|
|
@@ -3826,7 +3869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3826
3869
|
hint?: string | undefined;
|
|
3827
3870
|
messages?: {
|
|
3828
3871
|
text: string;
|
|
3829
|
-
type: "
|
|
3872
|
+
type: "error" | "success" | "info" | "warning";
|
|
3830
3873
|
id?: number | undefined;
|
|
3831
3874
|
}[] | undefined;
|
|
3832
3875
|
required?: boolean | undefined;
|
|
@@ -3850,7 +3893,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3850
3893
|
hint?: string | undefined;
|
|
3851
3894
|
messages?: {
|
|
3852
3895
|
text: string;
|
|
3853
|
-
type: "
|
|
3896
|
+
type: "error" | "success" | "info" | "warning";
|
|
3854
3897
|
id?: number | undefined;
|
|
3855
3898
|
}[] | undefined;
|
|
3856
3899
|
required?: boolean | undefined;
|
|
@@ -3874,7 +3917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3874
3917
|
hint?: string | undefined;
|
|
3875
3918
|
messages?: {
|
|
3876
3919
|
text: string;
|
|
3877
|
-
type: "
|
|
3920
|
+
type: "error" | "success" | "info" | "warning";
|
|
3878
3921
|
id?: number | undefined;
|
|
3879
3922
|
}[] | undefined;
|
|
3880
3923
|
required?: boolean | undefined;
|
|
@@ -3898,7 +3941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3898
3941
|
hint?: string | undefined;
|
|
3899
3942
|
messages?: {
|
|
3900
3943
|
text: string;
|
|
3901
|
-
type: "
|
|
3944
|
+
type: "error" | "success" | "info" | "warning";
|
|
3902
3945
|
id?: number | undefined;
|
|
3903
3946
|
}[] | undefined;
|
|
3904
3947
|
required?: boolean | undefined;
|
|
@@ -3927,7 +3970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3927
3970
|
hint?: string | undefined;
|
|
3928
3971
|
messages?: {
|
|
3929
3972
|
text: string;
|
|
3930
|
-
type: "
|
|
3973
|
+
type: "error" | "success" | "info" | "warning";
|
|
3931
3974
|
id?: number | undefined;
|
|
3932
3975
|
}[] | undefined;
|
|
3933
3976
|
required?: boolean | undefined;
|
|
@@ -3942,7 +3985,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3942
3985
|
hint?: string | undefined;
|
|
3943
3986
|
messages?: {
|
|
3944
3987
|
text: string;
|
|
3945
|
-
type: "
|
|
3988
|
+
type: "error" | "success" | "info" | "warning";
|
|
3946
3989
|
id?: number | undefined;
|
|
3947
3990
|
}[] | undefined;
|
|
3948
3991
|
required?: boolean | undefined;
|
|
@@ -3963,7 +4006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3963
4006
|
hint?: string | undefined;
|
|
3964
4007
|
messages?: {
|
|
3965
4008
|
text: string;
|
|
3966
|
-
type: "
|
|
4009
|
+
type: "error" | "success" | "info" | "warning";
|
|
3967
4010
|
id?: number | undefined;
|
|
3968
4011
|
}[] | undefined;
|
|
3969
4012
|
required?: boolean | undefined;
|
|
@@ -3988,7 +4031,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3988
4031
|
hint?: string | undefined;
|
|
3989
4032
|
messages?: {
|
|
3990
4033
|
text: string;
|
|
3991
|
-
type: "
|
|
4034
|
+
type: "error" | "success" | "info" | "warning";
|
|
3992
4035
|
id?: number | undefined;
|
|
3993
4036
|
}[] | undefined;
|
|
3994
4037
|
required?: boolean | undefined;
|
|
@@ -4007,7 +4050,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4007
4050
|
hint?: string | undefined;
|
|
4008
4051
|
messages?: {
|
|
4009
4052
|
text: string;
|
|
4010
|
-
type: "
|
|
4053
|
+
type: "error" | "success" | "info" | "warning";
|
|
4011
4054
|
id?: number | undefined;
|
|
4012
4055
|
}[] | undefined;
|
|
4013
4056
|
required?: boolean | undefined;
|
|
@@ -4027,7 +4070,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4027
4070
|
hint?: string | undefined;
|
|
4028
4071
|
messages?: {
|
|
4029
4072
|
text: string;
|
|
4030
|
-
type: "
|
|
4073
|
+
type: "error" | "success" | "info" | "warning";
|
|
4031
4074
|
id?: number | undefined;
|
|
4032
4075
|
}[] | undefined;
|
|
4033
4076
|
required?: boolean | undefined;
|
|
@@ -4046,7 +4089,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4046
4089
|
hint?: string | undefined;
|
|
4047
4090
|
messages?: {
|
|
4048
4091
|
text: string;
|
|
4049
|
-
type: "
|
|
4092
|
+
type: "error" | "success" | "info" | "warning";
|
|
4050
4093
|
id?: number | undefined;
|
|
4051
4094
|
}[] | undefined;
|
|
4052
4095
|
required?: boolean | undefined;
|
|
@@ -4068,7 +4111,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4068
4111
|
hint?: string | undefined;
|
|
4069
4112
|
messages?: {
|
|
4070
4113
|
text: string;
|
|
4071
|
-
type: "
|
|
4114
|
+
type: "error" | "success" | "info" | "warning";
|
|
4072
4115
|
id?: number | undefined;
|
|
4073
4116
|
}[] | undefined;
|
|
4074
4117
|
required?: boolean | undefined;
|
|
@@ -4090,7 +4133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4090
4133
|
hint?: string | undefined;
|
|
4091
4134
|
messages?: {
|
|
4092
4135
|
text: string;
|
|
4093
|
-
type: "
|
|
4136
|
+
type: "error" | "success" | "info" | "warning";
|
|
4094
4137
|
id?: number | undefined;
|
|
4095
4138
|
}[] | undefined;
|
|
4096
4139
|
required?: boolean | undefined;
|
|
@@ -4109,7 +4152,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4109
4152
|
hint?: string | undefined;
|
|
4110
4153
|
messages?: {
|
|
4111
4154
|
text: string;
|
|
4112
|
-
type: "
|
|
4155
|
+
type: "error" | "success" | "info" | "warning";
|
|
4113
4156
|
id?: number | undefined;
|
|
4114
4157
|
}[] | undefined;
|
|
4115
4158
|
required?: boolean | undefined;
|
|
@@ -4134,7 +4177,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4134
4177
|
hint?: string | undefined;
|
|
4135
4178
|
messages?: {
|
|
4136
4179
|
text: string;
|
|
4137
|
-
type: "
|
|
4180
|
+
type: "error" | "success" | "info" | "warning";
|
|
4138
4181
|
id?: number | undefined;
|
|
4139
4182
|
}[] | undefined;
|
|
4140
4183
|
required?: boolean | undefined;
|
|
@@ -4155,7 +4198,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4155
4198
|
hint?: string | undefined;
|
|
4156
4199
|
messages?: {
|
|
4157
4200
|
text: string;
|
|
4158
|
-
type: "
|
|
4201
|
+
type: "error" | "success" | "info" | "warning";
|
|
4159
4202
|
id?: number | undefined;
|
|
4160
4203
|
}[] | undefined;
|
|
4161
4204
|
required?: boolean | undefined;
|
|
@@ -4176,7 +4219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4176
4219
|
hint?: string | undefined;
|
|
4177
4220
|
messages?: {
|
|
4178
4221
|
text: string;
|
|
4179
|
-
type: "
|
|
4222
|
+
type: "error" | "success" | "info" | "warning";
|
|
4180
4223
|
id?: number | undefined;
|
|
4181
4224
|
}[] | undefined;
|
|
4182
4225
|
required?: boolean | undefined;
|
|
@@ -4430,7 +4473,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4430
4473
|
hint?: string | undefined;
|
|
4431
4474
|
messages?: {
|
|
4432
4475
|
text: string;
|
|
4433
|
-
type: "
|
|
4476
|
+
type: "error" | "success" | "info" | "warning";
|
|
4434
4477
|
id?: number | undefined;
|
|
4435
4478
|
}[] | undefined;
|
|
4436
4479
|
required?: boolean | undefined;
|
|
@@ -4448,7 +4491,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4448
4491
|
hint?: string | undefined;
|
|
4449
4492
|
messages?: {
|
|
4450
4493
|
text: string;
|
|
4451
|
-
type: "
|
|
4494
|
+
type: "error" | "success" | "info" | "warning";
|
|
4452
4495
|
id?: number | undefined;
|
|
4453
4496
|
}[] | undefined;
|
|
4454
4497
|
required?: boolean | undefined;
|
|
@@ -4472,7 +4515,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4472
4515
|
hint?: string | undefined;
|
|
4473
4516
|
messages?: {
|
|
4474
4517
|
text: string;
|
|
4475
|
-
type: "
|
|
4518
|
+
type: "error" | "success" | "info" | "warning";
|
|
4476
4519
|
id?: number | undefined;
|
|
4477
4520
|
}[] | undefined;
|
|
4478
4521
|
required?: boolean | undefined;
|
|
@@ -4496,7 +4539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4496
4539
|
hint?: string | undefined;
|
|
4497
4540
|
messages?: {
|
|
4498
4541
|
text: string;
|
|
4499
|
-
type: "
|
|
4542
|
+
type: "error" | "success" | "info" | "warning";
|
|
4500
4543
|
id?: number | undefined;
|
|
4501
4544
|
}[] | undefined;
|
|
4502
4545
|
required?: boolean | undefined;
|
|
@@ -4520,7 +4563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4520
4563
|
hint?: string | undefined;
|
|
4521
4564
|
messages?: {
|
|
4522
4565
|
text: string;
|
|
4523
|
-
type: "
|
|
4566
|
+
type: "error" | "success" | "info" | "warning";
|
|
4524
4567
|
id?: number | undefined;
|
|
4525
4568
|
}[] | undefined;
|
|
4526
4569
|
required?: boolean | undefined;
|
|
@@ -4545,7 +4588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4545
4588
|
hint?: string | undefined;
|
|
4546
4589
|
messages?: {
|
|
4547
4590
|
text: string;
|
|
4548
|
-
type: "
|
|
4591
|
+
type: "error" | "success" | "info" | "warning";
|
|
4549
4592
|
id?: number | undefined;
|
|
4550
4593
|
}[] | undefined;
|
|
4551
4594
|
required?: boolean | undefined;
|
|
@@ -4560,7 +4603,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4560
4603
|
hint?: string | undefined;
|
|
4561
4604
|
messages?: {
|
|
4562
4605
|
text: string;
|
|
4563
|
-
type: "
|
|
4606
|
+
type: "error" | "success" | "info" | "warning";
|
|
4564
4607
|
id?: number | undefined;
|
|
4565
4608
|
}[] | undefined;
|
|
4566
4609
|
required?: boolean | undefined;
|
|
@@ -4581,7 +4624,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4581
4624
|
hint?: string | undefined;
|
|
4582
4625
|
messages?: {
|
|
4583
4626
|
text: string;
|
|
4584
|
-
type: "
|
|
4627
|
+
type: "error" | "success" | "info" | "warning";
|
|
4585
4628
|
id?: number | undefined;
|
|
4586
4629
|
}[] | undefined;
|
|
4587
4630
|
required?: boolean | undefined;
|
|
@@ -4606,7 +4649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4606
4649
|
hint?: string | undefined;
|
|
4607
4650
|
messages?: {
|
|
4608
4651
|
text: string;
|
|
4609
|
-
type: "
|
|
4652
|
+
type: "error" | "success" | "info" | "warning";
|
|
4610
4653
|
id?: number | undefined;
|
|
4611
4654
|
}[] | undefined;
|
|
4612
4655
|
required?: boolean | undefined;
|
|
@@ -4625,7 +4668,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4625
4668
|
hint?: string | undefined;
|
|
4626
4669
|
messages?: {
|
|
4627
4670
|
text: string;
|
|
4628
|
-
type: "
|
|
4671
|
+
type: "error" | "success" | "info" | "warning";
|
|
4629
4672
|
id?: number | undefined;
|
|
4630
4673
|
}[] | undefined;
|
|
4631
4674
|
required?: boolean | undefined;
|
|
@@ -4645,7 +4688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4645
4688
|
hint?: string | undefined;
|
|
4646
4689
|
messages?: {
|
|
4647
4690
|
text: string;
|
|
4648
|
-
type: "
|
|
4691
|
+
type: "error" | "success" | "info" | "warning";
|
|
4649
4692
|
id?: number | undefined;
|
|
4650
4693
|
}[] | undefined;
|
|
4651
4694
|
required?: boolean | undefined;
|
|
@@ -4664,7 +4707,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4664
4707
|
hint?: string | undefined;
|
|
4665
4708
|
messages?: {
|
|
4666
4709
|
text: string;
|
|
4667
|
-
type: "
|
|
4710
|
+
type: "error" | "success" | "info" | "warning";
|
|
4668
4711
|
id?: number | undefined;
|
|
4669
4712
|
}[] | undefined;
|
|
4670
4713
|
required?: boolean | undefined;
|
|
@@ -4686,7 +4729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4686
4729
|
hint?: string | undefined;
|
|
4687
4730
|
messages?: {
|
|
4688
4731
|
text: string;
|
|
4689
|
-
type: "
|
|
4732
|
+
type: "error" | "success" | "info" | "warning";
|
|
4690
4733
|
id?: number | undefined;
|
|
4691
4734
|
}[] | undefined;
|
|
4692
4735
|
required?: boolean | undefined;
|
|
@@ -4708,7 +4751,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4708
4751
|
hint?: string | undefined;
|
|
4709
4752
|
messages?: {
|
|
4710
4753
|
text: string;
|
|
4711
|
-
type: "
|
|
4754
|
+
type: "error" | "success" | "info" | "warning";
|
|
4712
4755
|
id?: number | undefined;
|
|
4713
4756
|
}[] | undefined;
|
|
4714
4757
|
required?: boolean | undefined;
|
|
@@ -4727,7 +4770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4727
4770
|
hint?: string | undefined;
|
|
4728
4771
|
messages?: {
|
|
4729
4772
|
text: string;
|
|
4730
|
-
type: "
|
|
4773
|
+
type: "error" | "success" | "info" | "warning";
|
|
4731
4774
|
id?: number | undefined;
|
|
4732
4775
|
}[] | undefined;
|
|
4733
4776
|
required?: boolean | undefined;
|
|
@@ -4752,7 +4795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4752
4795
|
hint?: string | undefined;
|
|
4753
4796
|
messages?: {
|
|
4754
4797
|
text: string;
|
|
4755
|
-
type: "
|
|
4798
|
+
type: "error" | "success" | "info" | "warning";
|
|
4756
4799
|
id?: number | undefined;
|
|
4757
4800
|
}[] | undefined;
|
|
4758
4801
|
required?: boolean | undefined;
|
|
@@ -4773,7 +4816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4773
4816
|
hint?: string | undefined;
|
|
4774
4817
|
messages?: {
|
|
4775
4818
|
text: string;
|
|
4776
|
-
type: "
|
|
4819
|
+
type: "error" | "success" | "info" | "warning";
|
|
4777
4820
|
id?: number | undefined;
|
|
4778
4821
|
}[] | undefined;
|
|
4779
4822
|
required?: boolean | undefined;
|
|
@@ -4794,7 +4837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4794
4837
|
hint?: string | undefined;
|
|
4795
4838
|
messages?: {
|
|
4796
4839
|
text: string;
|
|
4797
|
-
type: "
|
|
4840
|
+
type: "error" | "success" | "info" | "warning";
|
|
4798
4841
|
id?: number | undefined;
|
|
4799
4842
|
}[] | undefined;
|
|
4800
4843
|
required?: boolean | undefined;
|
|
@@ -5025,7 +5068,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5025
5068
|
hint?: string | undefined;
|
|
5026
5069
|
messages?: {
|
|
5027
5070
|
text: string;
|
|
5028
|
-
type: "
|
|
5071
|
+
type: "error" | "success" | "info" | "warning";
|
|
5029
5072
|
id?: number | undefined;
|
|
5030
5073
|
}[] | undefined;
|
|
5031
5074
|
required?: boolean | undefined;
|
|
@@ -5043,7 +5086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5043
5086
|
hint?: string | undefined;
|
|
5044
5087
|
messages?: {
|
|
5045
5088
|
text: string;
|
|
5046
|
-
type: "
|
|
5089
|
+
type: "error" | "success" | "info" | "warning";
|
|
5047
5090
|
id?: number | undefined;
|
|
5048
5091
|
}[] | undefined;
|
|
5049
5092
|
required?: boolean | undefined;
|
|
@@ -5067,7 +5110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5067
5110
|
hint?: string | undefined;
|
|
5068
5111
|
messages?: {
|
|
5069
5112
|
text: string;
|
|
5070
|
-
type: "
|
|
5113
|
+
type: "error" | "success" | "info" | "warning";
|
|
5071
5114
|
id?: number | undefined;
|
|
5072
5115
|
}[] | undefined;
|
|
5073
5116
|
required?: boolean | undefined;
|
|
@@ -5091,7 +5134,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5091
5134
|
hint?: string | undefined;
|
|
5092
5135
|
messages?: {
|
|
5093
5136
|
text: string;
|
|
5094
|
-
type: "
|
|
5137
|
+
type: "error" | "success" | "info" | "warning";
|
|
5095
5138
|
id?: number | undefined;
|
|
5096
5139
|
}[] | undefined;
|
|
5097
5140
|
required?: boolean | undefined;
|
|
@@ -5115,7 +5158,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5115
5158
|
hint?: string | undefined;
|
|
5116
5159
|
messages?: {
|
|
5117
5160
|
text: string;
|
|
5118
|
-
type: "
|
|
5161
|
+
type: "error" | "success" | "info" | "warning";
|
|
5119
5162
|
id?: number | undefined;
|
|
5120
5163
|
}[] | undefined;
|
|
5121
5164
|
required?: boolean | undefined;
|
|
@@ -5144,7 +5187,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5144
5187
|
hint?: string | undefined;
|
|
5145
5188
|
messages?: {
|
|
5146
5189
|
text: string;
|
|
5147
|
-
type: "
|
|
5190
|
+
type: "error" | "success" | "info" | "warning";
|
|
5148
5191
|
id?: number | undefined;
|
|
5149
5192
|
}[] | undefined;
|
|
5150
5193
|
required?: boolean | undefined;
|
|
@@ -5159,7 +5202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5159
5202
|
hint?: string | undefined;
|
|
5160
5203
|
messages?: {
|
|
5161
5204
|
text: string;
|
|
5162
|
-
type: "
|
|
5205
|
+
type: "error" | "success" | "info" | "warning";
|
|
5163
5206
|
id?: number | undefined;
|
|
5164
5207
|
}[] | undefined;
|
|
5165
5208
|
required?: boolean | undefined;
|
|
@@ -5180,7 +5223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5180
5223
|
hint?: string | undefined;
|
|
5181
5224
|
messages?: {
|
|
5182
5225
|
text: string;
|
|
5183
|
-
type: "
|
|
5226
|
+
type: "error" | "success" | "info" | "warning";
|
|
5184
5227
|
id?: number | undefined;
|
|
5185
5228
|
}[] | undefined;
|
|
5186
5229
|
required?: boolean | undefined;
|
|
@@ -5205,7 +5248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5205
5248
|
hint?: string | undefined;
|
|
5206
5249
|
messages?: {
|
|
5207
5250
|
text: string;
|
|
5208
|
-
type: "
|
|
5251
|
+
type: "error" | "success" | "info" | "warning";
|
|
5209
5252
|
id?: number | undefined;
|
|
5210
5253
|
}[] | undefined;
|
|
5211
5254
|
required?: boolean | undefined;
|
|
@@ -5224,7 +5267,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5224
5267
|
hint?: string | undefined;
|
|
5225
5268
|
messages?: {
|
|
5226
5269
|
text: string;
|
|
5227
|
-
type: "
|
|
5270
|
+
type: "error" | "success" | "info" | "warning";
|
|
5228
5271
|
id?: number | undefined;
|
|
5229
5272
|
}[] | undefined;
|
|
5230
5273
|
required?: boolean | undefined;
|
|
@@ -5244,7 +5287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5244
5287
|
hint?: string | undefined;
|
|
5245
5288
|
messages?: {
|
|
5246
5289
|
text: string;
|
|
5247
|
-
type: "
|
|
5290
|
+
type: "error" | "success" | "info" | "warning";
|
|
5248
5291
|
id?: number | undefined;
|
|
5249
5292
|
}[] | undefined;
|
|
5250
5293
|
required?: boolean | undefined;
|
|
@@ -5263,7 +5306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5263
5306
|
hint?: string | undefined;
|
|
5264
5307
|
messages?: {
|
|
5265
5308
|
text: string;
|
|
5266
|
-
type: "
|
|
5309
|
+
type: "error" | "success" | "info" | "warning";
|
|
5267
5310
|
id?: number | undefined;
|
|
5268
5311
|
}[] | undefined;
|
|
5269
5312
|
required?: boolean | undefined;
|
|
@@ -5285,7 +5328,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5285
5328
|
hint?: string | undefined;
|
|
5286
5329
|
messages?: {
|
|
5287
5330
|
text: string;
|
|
5288
|
-
type: "
|
|
5331
|
+
type: "error" | "success" | "info" | "warning";
|
|
5289
5332
|
id?: number | undefined;
|
|
5290
5333
|
}[] | undefined;
|
|
5291
5334
|
required?: boolean | undefined;
|
|
@@ -5307,7 +5350,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5307
5350
|
hint?: string | undefined;
|
|
5308
5351
|
messages?: {
|
|
5309
5352
|
text: string;
|
|
5310
|
-
type: "
|
|
5353
|
+
type: "error" | "success" | "info" | "warning";
|
|
5311
5354
|
id?: number | undefined;
|
|
5312
5355
|
}[] | undefined;
|
|
5313
5356
|
required?: boolean | undefined;
|
|
@@ -5326,7 +5369,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5326
5369
|
hint?: string | undefined;
|
|
5327
5370
|
messages?: {
|
|
5328
5371
|
text: string;
|
|
5329
|
-
type: "
|
|
5372
|
+
type: "error" | "success" | "info" | "warning";
|
|
5330
5373
|
id?: number | undefined;
|
|
5331
5374
|
}[] | undefined;
|
|
5332
5375
|
required?: boolean | undefined;
|
|
@@ -5351,7 +5394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5351
5394
|
hint?: string | undefined;
|
|
5352
5395
|
messages?: {
|
|
5353
5396
|
text: string;
|
|
5354
|
-
type: "
|
|
5397
|
+
type: "error" | "success" | "info" | "warning";
|
|
5355
5398
|
id?: number | undefined;
|
|
5356
5399
|
}[] | undefined;
|
|
5357
5400
|
required?: boolean | undefined;
|
|
@@ -5372,7 +5415,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5372
5415
|
hint?: string | undefined;
|
|
5373
5416
|
messages?: {
|
|
5374
5417
|
text: string;
|
|
5375
|
-
type: "
|
|
5418
|
+
type: "error" | "success" | "info" | "warning";
|
|
5376
5419
|
id?: number | undefined;
|
|
5377
5420
|
}[] | undefined;
|
|
5378
5421
|
required?: boolean | undefined;
|
|
@@ -5393,7 +5436,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5393
5436
|
hint?: string | undefined;
|
|
5394
5437
|
messages?: {
|
|
5395
5438
|
text: string;
|
|
5396
|
-
type: "
|
|
5439
|
+
type: "error" | "success" | "info" | "warning";
|
|
5397
5440
|
id?: number | undefined;
|
|
5398
5441
|
}[] | undefined;
|
|
5399
5442
|
required?: boolean | undefined;
|
|
@@ -5626,7 +5669,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5626
5669
|
hint?: string | undefined;
|
|
5627
5670
|
messages?: {
|
|
5628
5671
|
text: string;
|
|
5629
|
-
type: "
|
|
5672
|
+
type: "error" | "success" | "info" | "warning";
|
|
5630
5673
|
id?: number | undefined;
|
|
5631
5674
|
}[] | undefined;
|
|
5632
5675
|
required?: boolean | undefined;
|
|
@@ -5644,7 +5687,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5644
5687
|
hint?: string | undefined;
|
|
5645
5688
|
messages?: {
|
|
5646
5689
|
text: string;
|
|
5647
|
-
type: "
|
|
5690
|
+
type: "error" | "success" | "info" | "warning";
|
|
5648
5691
|
id?: number | undefined;
|
|
5649
5692
|
}[] | undefined;
|
|
5650
5693
|
required?: boolean | undefined;
|
|
@@ -5668,7 +5711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5668
5711
|
hint?: string | undefined;
|
|
5669
5712
|
messages?: {
|
|
5670
5713
|
text: string;
|
|
5671
|
-
type: "
|
|
5714
|
+
type: "error" | "success" | "info" | "warning";
|
|
5672
5715
|
id?: number | undefined;
|
|
5673
5716
|
}[] | undefined;
|
|
5674
5717
|
required?: boolean | undefined;
|
|
@@ -5692,7 +5735,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5692
5735
|
hint?: string | undefined;
|
|
5693
5736
|
messages?: {
|
|
5694
5737
|
text: string;
|
|
5695
|
-
type: "
|
|
5738
|
+
type: "error" | "success" | "info" | "warning";
|
|
5696
5739
|
id?: number | undefined;
|
|
5697
5740
|
}[] | undefined;
|
|
5698
5741
|
required?: boolean | undefined;
|
|
@@ -5716,7 +5759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5716
5759
|
hint?: string | undefined;
|
|
5717
5760
|
messages?: {
|
|
5718
5761
|
text: string;
|
|
5719
|
-
type: "
|
|
5762
|
+
type: "error" | "success" | "info" | "warning";
|
|
5720
5763
|
id?: number | undefined;
|
|
5721
5764
|
}[] | undefined;
|
|
5722
5765
|
required?: boolean | undefined;
|
|
@@ -5741,7 +5784,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5741
5784
|
hint?: string | undefined;
|
|
5742
5785
|
messages?: {
|
|
5743
5786
|
text: string;
|
|
5744
|
-
type: "
|
|
5787
|
+
type: "error" | "success" | "info" | "warning";
|
|
5745
5788
|
id?: number | undefined;
|
|
5746
5789
|
}[] | undefined;
|
|
5747
5790
|
required?: boolean | undefined;
|
|
@@ -5756,7 +5799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5756
5799
|
hint?: string | undefined;
|
|
5757
5800
|
messages?: {
|
|
5758
5801
|
text: string;
|
|
5759
|
-
type: "
|
|
5802
|
+
type: "error" | "success" | "info" | "warning";
|
|
5760
5803
|
id?: number | undefined;
|
|
5761
5804
|
}[] | undefined;
|
|
5762
5805
|
required?: boolean | undefined;
|
|
@@ -5777,7 +5820,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5777
5820
|
hint?: string | undefined;
|
|
5778
5821
|
messages?: {
|
|
5779
5822
|
text: string;
|
|
5780
|
-
type: "
|
|
5823
|
+
type: "error" | "success" | "info" | "warning";
|
|
5781
5824
|
id?: number | undefined;
|
|
5782
5825
|
}[] | undefined;
|
|
5783
5826
|
required?: boolean | undefined;
|
|
@@ -5802,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5802
5845
|
hint?: string | undefined;
|
|
5803
5846
|
messages?: {
|
|
5804
5847
|
text: string;
|
|
5805
|
-
type: "
|
|
5848
|
+
type: "error" | "success" | "info" | "warning";
|
|
5806
5849
|
id?: number | undefined;
|
|
5807
5850
|
}[] | undefined;
|
|
5808
5851
|
required?: boolean | undefined;
|
|
@@ -5821,7 +5864,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5821
5864
|
hint?: string | undefined;
|
|
5822
5865
|
messages?: {
|
|
5823
5866
|
text: string;
|
|
5824
|
-
type: "
|
|
5867
|
+
type: "error" | "success" | "info" | "warning";
|
|
5825
5868
|
id?: number | undefined;
|
|
5826
5869
|
}[] | undefined;
|
|
5827
5870
|
required?: boolean | undefined;
|
|
@@ -5841,7 +5884,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5841
5884
|
hint?: string | undefined;
|
|
5842
5885
|
messages?: {
|
|
5843
5886
|
text: string;
|
|
5844
|
-
type: "
|
|
5887
|
+
type: "error" | "success" | "info" | "warning";
|
|
5845
5888
|
id?: number | undefined;
|
|
5846
5889
|
}[] | undefined;
|
|
5847
5890
|
required?: boolean | undefined;
|
|
@@ -5860,7 +5903,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5860
5903
|
hint?: string | undefined;
|
|
5861
5904
|
messages?: {
|
|
5862
5905
|
text: string;
|
|
5863
|
-
type: "
|
|
5906
|
+
type: "error" | "success" | "info" | "warning";
|
|
5864
5907
|
id?: number | undefined;
|
|
5865
5908
|
}[] | undefined;
|
|
5866
5909
|
required?: boolean | undefined;
|
|
@@ -5882,7 +5925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5882
5925
|
hint?: string | undefined;
|
|
5883
5926
|
messages?: {
|
|
5884
5927
|
text: string;
|
|
5885
|
-
type: "
|
|
5928
|
+
type: "error" | "success" | "info" | "warning";
|
|
5886
5929
|
id?: number | undefined;
|
|
5887
5930
|
}[] | undefined;
|
|
5888
5931
|
required?: boolean | undefined;
|
|
@@ -5904,7 +5947,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5904
5947
|
hint?: string | undefined;
|
|
5905
5948
|
messages?: {
|
|
5906
5949
|
text: string;
|
|
5907
|
-
type: "
|
|
5950
|
+
type: "error" | "success" | "info" | "warning";
|
|
5908
5951
|
id?: number | undefined;
|
|
5909
5952
|
}[] | undefined;
|
|
5910
5953
|
required?: boolean | undefined;
|
|
@@ -5923,7 +5966,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5923
5966
|
hint?: string | undefined;
|
|
5924
5967
|
messages?: {
|
|
5925
5968
|
text: string;
|
|
5926
|
-
type: "
|
|
5969
|
+
type: "error" | "success" | "info" | "warning";
|
|
5927
5970
|
id?: number | undefined;
|
|
5928
5971
|
}[] | undefined;
|
|
5929
5972
|
required?: boolean | undefined;
|
|
@@ -5948,7 +5991,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5948
5991
|
hint?: string | undefined;
|
|
5949
5992
|
messages?: {
|
|
5950
5993
|
text: string;
|
|
5951
|
-
type: "
|
|
5994
|
+
type: "error" | "success" | "info" | "warning";
|
|
5952
5995
|
id?: number | undefined;
|
|
5953
5996
|
}[] | undefined;
|
|
5954
5997
|
required?: boolean | undefined;
|
|
@@ -5969,7 +6012,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5969
6012
|
hint?: string | undefined;
|
|
5970
6013
|
messages?: {
|
|
5971
6014
|
text: string;
|
|
5972
|
-
type: "
|
|
6015
|
+
type: "error" | "success" | "info" | "warning";
|
|
5973
6016
|
id?: number | undefined;
|
|
5974
6017
|
}[] | undefined;
|
|
5975
6018
|
required?: boolean | undefined;
|
|
@@ -5990,7 +6033,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5990
6033
|
hint?: string | undefined;
|
|
5991
6034
|
messages?: {
|
|
5992
6035
|
text: string;
|
|
5993
|
-
type: "
|
|
6036
|
+
type: "error" | "success" | "info" | "warning";
|
|
5994
6037
|
id?: number | undefined;
|
|
5995
6038
|
}[] | undefined;
|
|
5996
6039
|
required?: boolean | undefined;
|
|
@@ -6221,7 +6264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6221
6264
|
hint?: string | undefined;
|
|
6222
6265
|
messages?: {
|
|
6223
6266
|
text: string;
|
|
6224
|
-
type: "
|
|
6267
|
+
type: "error" | "success" | "info" | "warning";
|
|
6225
6268
|
id?: number | undefined;
|
|
6226
6269
|
}[] | undefined;
|
|
6227
6270
|
required?: boolean | undefined;
|
|
@@ -6239,7 +6282,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6239
6282
|
hint?: string | undefined;
|
|
6240
6283
|
messages?: {
|
|
6241
6284
|
text: string;
|
|
6242
|
-
type: "
|
|
6285
|
+
type: "error" | "success" | "info" | "warning";
|
|
6243
6286
|
id?: number | undefined;
|
|
6244
6287
|
}[] | undefined;
|
|
6245
6288
|
required?: boolean | undefined;
|
|
@@ -6263,7 +6306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6263
6306
|
hint?: string | undefined;
|
|
6264
6307
|
messages?: {
|
|
6265
6308
|
text: string;
|
|
6266
|
-
type: "
|
|
6309
|
+
type: "error" | "success" | "info" | "warning";
|
|
6267
6310
|
id?: number | undefined;
|
|
6268
6311
|
}[] | undefined;
|
|
6269
6312
|
required?: boolean | undefined;
|
|
@@ -6287,7 +6330,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6287
6330
|
hint?: string | undefined;
|
|
6288
6331
|
messages?: {
|
|
6289
6332
|
text: string;
|
|
6290
|
-
type: "
|
|
6333
|
+
type: "error" | "success" | "info" | "warning";
|
|
6291
6334
|
id?: number | undefined;
|
|
6292
6335
|
}[] | undefined;
|
|
6293
6336
|
required?: boolean | undefined;
|
|
@@ -6311,7 +6354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6311
6354
|
hint?: string | undefined;
|
|
6312
6355
|
messages?: {
|
|
6313
6356
|
text: string;
|
|
6314
|
-
type: "
|
|
6357
|
+
type: "error" | "success" | "info" | "warning";
|
|
6315
6358
|
id?: number | undefined;
|
|
6316
6359
|
}[] | undefined;
|
|
6317
6360
|
required?: boolean | undefined;
|
|
@@ -6340,7 +6383,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6340
6383
|
hint?: string | undefined;
|
|
6341
6384
|
messages?: {
|
|
6342
6385
|
text: string;
|
|
6343
|
-
type: "
|
|
6386
|
+
type: "error" | "success" | "info" | "warning";
|
|
6344
6387
|
id?: number | undefined;
|
|
6345
6388
|
}[] | undefined;
|
|
6346
6389
|
required?: boolean | undefined;
|
|
@@ -6355,7 +6398,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6355
6398
|
hint?: string | undefined;
|
|
6356
6399
|
messages?: {
|
|
6357
6400
|
text: string;
|
|
6358
|
-
type: "
|
|
6401
|
+
type: "error" | "success" | "info" | "warning";
|
|
6359
6402
|
id?: number | undefined;
|
|
6360
6403
|
}[] | undefined;
|
|
6361
6404
|
required?: boolean | undefined;
|
|
@@ -6376,7 +6419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6376
6419
|
hint?: string | undefined;
|
|
6377
6420
|
messages?: {
|
|
6378
6421
|
text: string;
|
|
6379
|
-
type: "
|
|
6422
|
+
type: "error" | "success" | "info" | "warning";
|
|
6380
6423
|
id?: number | undefined;
|
|
6381
6424
|
}[] | undefined;
|
|
6382
6425
|
required?: boolean | undefined;
|
|
@@ -6401,7 +6444,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6401
6444
|
hint?: string | undefined;
|
|
6402
6445
|
messages?: {
|
|
6403
6446
|
text: string;
|
|
6404
|
-
type: "
|
|
6447
|
+
type: "error" | "success" | "info" | "warning";
|
|
6405
6448
|
id?: number | undefined;
|
|
6406
6449
|
}[] | undefined;
|
|
6407
6450
|
required?: boolean | undefined;
|
|
@@ -6420,7 +6463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6420
6463
|
hint?: string | undefined;
|
|
6421
6464
|
messages?: {
|
|
6422
6465
|
text: string;
|
|
6423
|
-
type: "
|
|
6466
|
+
type: "error" | "success" | "info" | "warning";
|
|
6424
6467
|
id?: number | undefined;
|
|
6425
6468
|
}[] | undefined;
|
|
6426
6469
|
required?: boolean | undefined;
|
|
@@ -6440,7 +6483,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6440
6483
|
hint?: string | undefined;
|
|
6441
6484
|
messages?: {
|
|
6442
6485
|
text: string;
|
|
6443
|
-
type: "
|
|
6486
|
+
type: "error" | "success" | "info" | "warning";
|
|
6444
6487
|
id?: number | undefined;
|
|
6445
6488
|
}[] | undefined;
|
|
6446
6489
|
required?: boolean | undefined;
|
|
@@ -6459,7 +6502,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6459
6502
|
hint?: string | undefined;
|
|
6460
6503
|
messages?: {
|
|
6461
6504
|
text: string;
|
|
6462
|
-
type: "
|
|
6505
|
+
type: "error" | "success" | "info" | "warning";
|
|
6463
6506
|
id?: number | undefined;
|
|
6464
6507
|
}[] | undefined;
|
|
6465
6508
|
required?: boolean | undefined;
|
|
@@ -6481,7 +6524,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6481
6524
|
hint?: string | undefined;
|
|
6482
6525
|
messages?: {
|
|
6483
6526
|
text: string;
|
|
6484
|
-
type: "
|
|
6527
|
+
type: "error" | "success" | "info" | "warning";
|
|
6485
6528
|
id?: number | undefined;
|
|
6486
6529
|
}[] | undefined;
|
|
6487
6530
|
required?: boolean | undefined;
|
|
@@ -6503,7 +6546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6503
6546
|
hint?: string | undefined;
|
|
6504
6547
|
messages?: {
|
|
6505
6548
|
text: string;
|
|
6506
|
-
type: "
|
|
6549
|
+
type: "error" | "success" | "info" | "warning";
|
|
6507
6550
|
id?: number | undefined;
|
|
6508
6551
|
}[] | undefined;
|
|
6509
6552
|
required?: boolean | undefined;
|
|
@@ -6522,7 +6565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6522
6565
|
hint?: string | undefined;
|
|
6523
6566
|
messages?: {
|
|
6524
6567
|
text: string;
|
|
6525
|
-
type: "
|
|
6568
|
+
type: "error" | "success" | "info" | "warning";
|
|
6526
6569
|
id?: number | undefined;
|
|
6527
6570
|
}[] | undefined;
|
|
6528
6571
|
required?: boolean | undefined;
|
|
@@ -6547,7 +6590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6547
6590
|
hint?: string | undefined;
|
|
6548
6591
|
messages?: {
|
|
6549
6592
|
text: string;
|
|
6550
|
-
type: "
|
|
6593
|
+
type: "error" | "success" | "info" | "warning";
|
|
6551
6594
|
id?: number | undefined;
|
|
6552
6595
|
}[] | undefined;
|
|
6553
6596
|
required?: boolean | undefined;
|
|
@@ -6568,7 +6611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6568
6611
|
hint?: string | undefined;
|
|
6569
6612
|
messages?: {
|
|
6570
6613
|
text: string;
|
|
6571
|
-
type: "
|
|
6614
|
+
type: "error" | "success" | "info" | "warning";
|
|
6572
6615
|
id?: number | undefined;
|
|
6573
6616
|
}[] | undefined;
|
|
6574
6617
|
required?: boolean | undefined;
|
|
@@ -6589,7 +6632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6589
6632
|
hint?: string | undefined;
|
|
6590
6633
|
messages?: {
|
|
6591
6634
|
text: string;
|
|
6592
|
-
type: "
|
|
6635
|
+
type: "error" | "success" | "info" | "warning";
|
|
6593
6636
|
id?: number | undefined;
|
|
6594
6637
|
}[] | undefined;
|
|
6595
6638
|
required?: boolean | undefined;
|
|
@@ -6819,7 +6862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6819
6862
|
};
|
|
6820
6863
|
};
|
|
6821
6864
|
output: {
|
|
6822
|
-
prompt: "
|
|
6865
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6823
6866
|
language: string;
|
|
6824
6867
|
}[];
|
|
6825
6868
|
outputFormat: "json";
|
|
@@ -6857,7 +6900,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6857
6900
|
$get: {
|
|
6858
6901
|
input: {
|
|
6859
6902
|
param: {
|
|
6860
|
-
prompt: "
|
|
6903
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6861
6904
|
language: string;
|
|
6862
6905
|
};
|
|
6863
6906
|
} & {
|
|
@@ -6879,7 +6922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6879
6922
|
$put: {
|
|
6880
6923
|
input: {
|
|
6881
6924
|
param: {
|
|
6882
|
-
prompt: "
|
|
6925
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6883
6926
|
language: string;
|
|
6884
6927
|
};
|
|
6885
6928
|
} & {
|
|
@@ -6903,7 +6946,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6903
6946
|
$delete: {
|
|
6904
6947
|
input: {
|
|
6905
6948
|
param: {
|
|
6906
|
-
prompt: "
|
|
6949
|
+
prompt: "mfa" | "organizations" | "status" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
6907
6950
|
language: string;
|
|
6908
6951
|
};
|
|
6909
6952
|
} & {
|
|
@@ -6995,7 +7038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6995
7038
|
active?: boolean | undefined;
|
|
6996
7039
|
} | undefined;
|
|
6997
7040
|
signup?: {
|
|
6998
|
-
status?: "optional" | "
|
|
7041
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
6999
7042
|
verification?: {
|
|
7000
7043
|
active?: boolean | undefined;
|
|
7001
7044
|
} | undefined;
|
|
@@ -7012,7 +7055,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7012
7055
|
active?: boolean | undefined;
|
|
7013
7056
|
} | undefined;
|
|
7014
7057
|
signup?: {
|
|
7015
|
-
status?: "optional" | "
|
|
7058
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7016
7059
|
} | undefined;
|
|
7017
7060
|
validation?: {
|
|
7018
7061
|
max_length?: number | undefined;
|
|
@@ -7029,7 +7072,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7029
7072
|
active?: boolean | undefined;
|
|
7030
7073
|
} | undefined;
|
|
7031
7074
|
signup?: {
|
|
7032
|
-
status?: "optional" | "
|
|
7075
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7033
7076
|
} | undefined;
|
|
7034
7077
|
} | undefined;
|
|
7035
7078
|
} | undefined;
|
|
@@ -7129,7 +7172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7129
7172
|
active?: boolean | undefined;
|
|
7130
7173
|
} | undefined;
|
|
7131
7174
|
signup?: {
|
|
7132
|
-
status?: "optional" | "
|
|
7175
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7133
7176
|
verification?: {
|
|
7134
7177
|
active?: boolean | undefined;
|
|
7135
7178
|
} | undefined;
|
|
@@ -7146,7 +7189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7146
7189
|
active?: boolean | undefined;
|
|
7147
7190
|
} | undefined;
|
|
7148
7191
|
signup?: {
|
|
7149
|
-
status?: "optional" | "
|
|
7192
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7150
7193
|
} | undefined;
|
|
7151
7194
|
validation?: {
|
|
7152
7195
|
max_length?: number | undefined;
|
|
@@ -7163,7 +7206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7163
7206
|
active?: boolean | undefined;
|
|
7164
7207
|
} | undefined;
|
|
7165
7208
|
signup?: {
|
|
7166
|
-
status?: "optional" | "
|
|
7209
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7167
7210
|
} | undefined;
|
|
7168
7211
|
} | undefined;
|
|
7169
7212
|
} | undefined;
|
|
@@ -7278,7 +7321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7278
7321
|
active?: boolean | undefined;
|
|
7279
7322
|
} | undefined;
|
|
7280
7323
|
signup?: {
|
|
7281
|
-
status?: "optional" | "
|
|
7324
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7282
7325
|
verification?: {
|
|
7283
7326
|
active?: boolean | undefined;
|
|
7284
7327
|
} | undefined;
|
|
@@ -7295,7 +7338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7295
7338
|
active?: boolean | undefined;
|
|
7296
7339
|
} | undefined;
|
|
7297
7340
|
signup?: {
|
|
7298
|
-
status?: "optional" | "
|
|
7341
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7299
7342
|
} | undefined;
|
|
7300
7343
|
validation?: {
|
|
7301
7344
|
max_length?: number | undefined;
|
|
@@ -7312,7 +7355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7312
7355
|
active?: boolean | undefined;
|
|
7313
7356
|
} | undefined;
|
|
7314
7357
|
signup?: {
|
|
7315
|
-
status?: "optional" | "
|
|
7358
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7316
7359
|
} | undefined;
|
|
7317
7360
|
} | undefined;
|
|
7318
7361
|
} | undefined;
|
|
@@ -7457,7 +7500,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7457
7500
|
active?: boolean | undefined;
|
|
7458
7501
|
} | undefined;
|
|
7459
7502
|
signup?: {
|
|
7460
|
-
status?: "optional" | "
|
|
7503
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7461
7504
|
verification?: {
|
|
7462
7505
|
active?: boolean | undefined;
|
|
7463
7506
|
} | undefined;
|
|
@@ -7474,7 +7517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7474
7517
|
active?: boolean | undefined;
|
|
7475
7518
|
} | undefined;
|
|
7476
7519
|
signup?: {
|
|
7477
|
-
status?: "optional" | "
|
|
7520
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7478
7521
|
} | undefined;
|
|
7479
7522
|
validation?: {
|
|
7480
7523
|
max_length?: number | undefined;
|
|
@@ -7491,7 +7534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7491
7534
|
active?: boolean | undefined;
|
|
7492
7535
|
} | undefined;
|
|
7493
7536
|
signup?: {
|
|
7494
|
-
status?: "optional" | "
|
|
7537
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7495
7538
|
} | undefined;
|
|
7496
7539
|
} | undefined;
|
|
7497
7540
|
} | undefined;
|
|
@@ -7615,7 +7658,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7615
7658
|
active?: boolean | undefined;
|
|
7616
7659
|
} | undefined;
|
|
7617
7660
|
signup?: {
|
|
7618
|
-
status?: "optional" | "
|
|
7661
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7619
7662
|
verification?: {
|
|
7620
7663
|
active?: boolean | undefined;
|
|
7621
7664
|
} | undefined;
|
|
@@ -7632,7 +7675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7632
7675
|
active?: boolean | undefined;
|
|
7633
7676
|
} | undefined;
|
|
7634
7677
|
signup?: {
|
|
7635
|
-
status?: "optional" | "
|
|
7678
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7636
7679
|
} | undefined;
|
|
7637
7680
|
validation?: {
|
|
7638
7681
|
max_length?: number | undefined;
|
|
@@ -7649,7 +7692,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7649
7692
|
active?: boolean | undefined;
|
|
7650
7693
|
} | undefined;
|
|
7651
7694
|
signup?: {
|
|
7652
|
-
status?: "optional" | "
|
|
7695
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
7653
7696
|
} | undefined;
|
|
7654
7697
|
} | undefined;
|
|
7655
7698
|
} | undefined;
|
|
@@ -7765,7 +7808,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7765
7808
|
};
|
|
7766
7809
|
} | {
|
|
7767
7810
|
mode: "inline";
|
|
7768
|
-
status: "
|
|
7811
|
+
status: "error" | "success";
|
|
7769
7812
|
connection_id: string;
|
|
7770
7813
|
connection_name: string;
|
|
7771
7814
|
strategy: string;
|
|
@@ -8404,7 +8447,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8404
8447
|
log_type: string;
|
|
8405
8448
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8406
8449
|
actor: {
|
|
8407
|
-
type: "
|
|
8450
|
+
type: "client_credentials" | "user" | "api_key" | "system" | "admin";
|
|
8408
8451
|
id?: string | undefined;
|
|
8409
8452
|
email?: string | undefined;
|
|
8410
8453
|
org_id?: string | undefined;
|
|
@@ -8882,7 +8925,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8882
8925
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8883
8926
|
};
|
|
8884
8927
|
id: string;
|
|
8885
|
-
status: "
|
|
8928
|
+
status: "suspended" | "active" | "paused";
|
|
8886
8929
|
filters?: {
|
|
8887
8930
|
type: string;
|
|
8888
8931
|
name: string;
|
|
@@ -8914,7 +8957,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8914
8957
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8915
8958
|
};
|
|
8916
8959
|
id: string;
|
|
8917
|
-
status: "
|
|
8960
|
+
status: "suspended" | "active" | "paused";
|
|
8918
8961
|
filters?: {
|
|
8919
8962
|
type: string;
|
|
8920
8963
|
name: string;
|
|
@@ -8939,7 +8982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8939
8982
|
name: string;
|
|
8940
8983
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8941
8984
|
sink: Record<string, unknown>;
|
|
8942
|
-
status?: "
|
|
8985
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8943
8986
|
filters?: {
|
|
8944
8987
|
type: string;
|
|
8945
8988
|
name: string;
|
|
@@ -8954,7 +8997,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8954
8997
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8955
8998
|
};
|
|
8956
8999
|
id: string;
|
|
8957
|
-
status: "
|
|
9000
|
+
status: "suspended" | "active" | "paused";
|
|
8958
9001
|
filters?: {
|
|
8959
9002
|
type: string;
|
|
8960
9003
|
name: string;
|
|
@@ -8989,7 +9032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8989
9032
|
}[] | undefined;
|
|
8990
9033
|
isPriority?: boolean | undefined;
|
|
8991
9034
|
id?: string | undefined;
|
|
8992
|
-
status?: "
|
|
9035
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8993
9036
|
created_at?: string | undefined;
|
|
8994
9037
|
updated_at?: string | undefined;
|
|
8995
9038
|
};
|
|
@@ -9001,7 +9044,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9001
9044
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9002
9045
|
};
|
|
9003
9046
|
id: string;
|
|
9004
|
-
status: "
|
|
9047
|
+
status: "suspended" | "active" | "paused";
|
|
9005
9048
|
filters?: {
|
|
9006
9049
|
type: string;
|
|
9007
9050
|
name: string;
|
|
@@ -9533,7 +9576,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9533
9576
|
addons?: {
|
|
9534
9577
|
[x: string]: any;
|
|
9535
9578
|
} | undefined;
|
|
9536
|
-
token_endpoint_auth_method?: "
|
|
9579
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9537
9580
|
client_metadata?: {
|
|
9538
9581
|
[x: string]: string;
|
|
9539
9582
|
} | undefined;
|
|
@@ -9629,7 +9672,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9629
9672
|
addons?: {
|
|
9630
9673
|
[x: string]: any;
|
|
9631
9674
|
} | undefined;
|
|
9632
|
-
token_endpoint_auth_method?: "
|
|
9675
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9633
9676
|
client_metadata?: {
|
|
9634
9677
|
[x: string]: string;
|
|
9635
9678
|
} | undefined;
|
|
@@ -9740,7 +9783,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9740
9783
|
addons?: {
|
|
9741
9784
|
[x: string]: any;
|
|
9742
9785
|
} | undefined;
|
|
9743
|
-
token_endpoint_auth_method?: "
|
|
9786
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9744
9787
|
client_metadata?: {
|
|
9745
9788
|
[x: string]: string;
|
|
9746
9789
|
} | undefined;
|
|
@@ -9850,7 +9893,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9850
9893
|
custom_login_page_preview?: string | undefined;
|
|
9851
9894
|
form_template?: string | undefined;
|
|
9852
9895
|
addons?: Record<string, any> | undefined;
|
|
9853
|
-
token_endpoint_auth_method?: "
|
|
9896
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9854
9897
|
client_metadata?: Record<string, string> | undefined;
|
|
9855
9898
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9856
9899
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9930,7 +9973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9930
9973
|
addons?: {
|
|
9931
9974
|
[x: string]: any;
|
|
9932
9975
|
} | undefined;
|
|
9933
|
-
token_endpoint_auth_method?: "
|
|
9976
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9934
9977
|
client_metadata?: {
|
|
9935
9978
|
[x: string]: string;
|
|
9936
9979
|
} | undefined;
|
|
@@ -10019,7 +10062,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10019
10062
|
custom_login_page_preview?: string | undefined;
|
|
10020
10063
|
form_template?: string | undefined;
|
|
10021
10064
|
addons?: Record<string, any> | undefined;
|
|
10022
|
-
token_endpoint_auth_method?: "
|
|
10065
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10023
10066
|
client_metadata?: Record<string, string> | undefined;
|
|
10024
10067
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10025
10068
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10099,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10099
10142
|
addons?: {
|
|
10100
10143
|
[x: string]: any;
|
|
10101
10144
|
} | undefined;
|
|
10102
|
-
token_endpoint_auth_method?: "
|
|
10145
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10103
10146
|
client_metadata?: {
|
|
10104
10147
|
[x: string]: string;
|
|
10105
10148
|
} | undefined;
|
|
@@ -10221,7 +10264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10221
10264
|
active?: boolean | undefined;
|
|
10222
10265
|
} | undefined;
|
|
10223
10266
|
signup?: {
|
|
10224
|
-
status?: "optional" | "
|
|
10267
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10225
10268
|
verification?: {
|
|
10226
10269
|
active?: boolean | undefined;
|
|
10227
10270
|
} | undefined;
|
|
@@ -10238,7 +10281,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10238
10281
|
active?: boolean | undefined;
|
|
10239
10282
|
} | undefined;
|
|
10240
10283
|
signup?: {
|
|
10241
|
-
status?: "optional" | "
|
|
10284
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10242
10285
|
} | undefined;
|
|
10243
10286
|
validation?: {
|
|
10244
10287
|
max_length?: number | undefined;
|
|
@@ -10255,7 +10298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10255
10298
|
active?: boolean | undefined;
|
|
10256
10299
|
} | undefined;
|
|
10257
10300
|
signup?: {
|
|
10258
|
-
status?: "optional" | "
|
|
10301
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10259
10302
|
} | undefined;
|
|
10260
10303
|
} | undefined;
|
|
10261
10304
|
} | undefined;
|
|
@@ -10375,7 +10418,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10375
10418
|
active?: boolean | undefined;
|
|
10376
10419
|
} | undefined;
|
|
10377
10420
|
signup?: {
|
|
10378
|
-
status?: "optional" | "
|
|
10421
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10379
10422
|
verification?: {
|
|
10380
10423
|
active?: boolean | undefined;
|
|
10381
10424
|
} | undefined;
|
|
@@ -10392,7 +10435,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10392
10435
|
active?: boolean | undefined;
|
|
10393
10436
|
} | undefined;
|
|
10394
10437
|
signup?: {
|
|
10395
|
-
status?: "optional" | "
|
|
10438
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10396
10439
|
} | undefined;
|
|
10397
10440
|
validation?: {
|
|
10398
10441
|
max_length?: number | undefined;
|
|
@@ -10409,7 +10452,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10409
10452
|
active?: boolean | undefined;
|
|
10410
10453
|
} | undefined;
|
|
10411
10454
|
signup?: {
|
|
10412
|
-
status?: "optional" | "
|
|
10455
|
+
status?: "optional" | "disabled" | "required" | undefined;
|
|
10413
10456
|
} | undefined;
|
|
10414
10457
|
} | undefined;
|
|
10415
10458
|
} | undefined;
|
|
@@ -12242,7 +12285,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12242
12285
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12243
12286
|
custom_domain_id: string;
|
|
12244
12287
|
primary: boolean;
|
|
12245
|
-
status: "
|
|
12288
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12246
12289
|
verification_method?: "txt" | undefined;
|
|
12247
12290
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12248
12291
|
domain_metadata?: {
|
|
@@ -12283,7 +12326,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12283
12326
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12284
12327
|
custom_domain_id: string;
|
|
12285
12328
|
primary: boolean;
|
|
12286
|
-
status: "
|
|
12329
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12287
12330
|
verification_method?: "txt" | undefined;
|
|
12288
12331
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12289
12332
|
domain_metadata?: {
|
|
@@ -12347,7 +12390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12347
12390
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12348
12391
|
custom_domain_id: string;
|
|
12349
12392
|
primary: boolean;
|
|
12350
|
-
status: "
|
|
12393
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12351
12394
|
verification_method?: "txt" | undefined;
|
|
12352
12395
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12353
12396
|
domain_metadata?: {
|
|
@@ -12394,7 +12437,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12394
12437
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12395
12438
|
custom_domain_id: string;
|
|
12396
12439
|
primary: boolean;
|
|
12397
|
-
status: "
|
|
12440
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12398
12441
|
verification_method?: "txt" | undefined;
|
|
12399
12442
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12400
12443
|
domain_metadata?: {
|
|
@@ -12440,7 +12483,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12440
12483
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12441
12484
|
custom_domain_id: string;
|
|
12442
12485
|
primary: boolean;
|
|
12443
|
-
status: "
|
|
12486
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12444
12487
|
verification_method?: "txt" | undefined;
|
|
12445
12488
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12446
12489
|
domain_metadata?: {
|
|
@@ -12481,7 +12524,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12481
12524
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12482
12525
|
custom_domain_id: string;
|
|
12483
12526
|
primary: boolean;
|
|
12484
|
-
status: "
|
|
12527
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12485
12528
|
verification_method?: "txt" | undefined;
|
|
12486
12529
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12487
12530
|
domain_metadata?: {
|
|
@@ -12580,7 +12623,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12580
12623
|
background_color: string;
|
|
12581
12624
|
background_image_url: string;
|
|
12582
12625
|
page_layout: "center" | "left" | "right";
|
|
12583
|
-
logo_placement?: "
|
|
12626
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12584
12627
|
};
|
|
12585
12628
|
widget: {
|
|
12586
12629
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12670,7 +12713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12670
12713
|
background_color: string;
|
|
12671
12714
|
background_image_url: string;
|
|
12672
12715
|
page_layout: "center" | "left" | "right";
|
|
12673
|
-
logo_placement?: "
|
|
12716
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12674
12717
|
};
|
|
12675
12718
|
widget: {
|
|
12676
12719
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12749,7 +12792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12749
12792
|
background_color: string;
|
|
12750
12793
|
background_image_url: string;
|
|
12751
12794
|
page_layout: "center" | "left" | "right";
|
|
12752
|
-
logo_placement?: "
|
|
12795
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12753
12796
|
};
|
|
12754
12797
|
widget: {
|
|
12755
12798
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12911,7 +12954,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12911
12954
|
} & {
|
|
12912
12955
|
json: {
|
|
12913
12956
|
body?: string | undefined;
|
|
12914
|
-
screen?: "
|
|
12957
|
+
screen?: "password" | "signup" | "login" | "identifier" | undefined;
|
|
12915
12958
|
branding?: {
|
|
12916
12959
|
colors?: {
|
|
12917
12960
|
primary: string;
|
|
@@ -12997,7 +13040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12997
13040
|
background_color: string;
|
|
12998
13041
|
background_image_url: string;
|
|
12999
13042
|
page_layout: "center" | "left" | "right";
|
|
13000
|
-
logo_placement?: "
|
|
13043
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13001
13044
|
} | undefined;
|
|
13002
13045
|
widget?: {
|
|
13003
13046
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13155,7 +13198,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13155
13198
|
output: {
|
|
13156
13199
|
id: string;
|
|
13157
13200
|
trigger_id: string;
|
|
13158
|
-
status: "pending" | "
|
|
13201
|
+
status: "pending" | "suspended" | "unspecified" | "final" | "partial" | "canceled";
|
|
13159
13202
|
results: {
|
|
13160
13203
|
action_name: string;
|
|
13161
13204
|
error: {
|
|
@@ -13202,7 +13245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13202
13245
|
logs: {
|
|
13203
13246
|
action_name: string;
|
|
13204
13247
|
lines: {
|
|
13205
|
-
level: "
|
|
13248
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
13206
13249
|
message: string;
|
|
13207
13250
|
}[];
|
|
13208
13251
|
}[];
|
|
@@ -13869,7 +13912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13869
13912
|
args: import("hono/utils/types").JSONValue[];
|
|
13870
13913
|
}[];
|
|
13871
13914
|
logs: {
|
|
13872
|
-
level: "
|
|
13915
|
+
level: "error" | "info" | "log" | "warn" | "debug";
|
|
13873
13916
|
message: string;
|
|
13874
13917
|
}[];
|
|
13875
13918
|
error?: string | undefined;
|
|
@@ -14167,7 +14210,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14167
14210
|
scope?: string | undefined;
|
|
14168
14211
|
grant_types?: string[] | undefined;
|
|
14169
14212
|
response_types?: string[] | undefined;
|
|
14170
|
-
token_endpoint_auth_method?: "
|
|
14213
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14171
14214
|
jwks_uri?: string | undefined;
|
|
14172
14215
|
jwks?: Record<string, unknown> | undefined;
|
|
14173
14216
|
software_id?: string | undefined;
|
|
@@ -14256,7 +14299,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14256
14299
|
scope?: string | undefined;
|
|
14257
14300
|
grant_types?: string[] | undefined;
|
|
14258
14301
|
response_types?: string[] | undefined;
|
|
14259
|
-
token_endpoint_auth_method?: "
|
|
14302
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14260
14303
|
jwks_uri?: string | undefined;
|
|
14261
14304
|
jwks?: Record<string, unknown> | undefined;
|
|
14262
14305
|
software_id?: string | undefined;
|
|
@@ -14602,20 +14645,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14602
14645
|
email: string;
|
|
14603
14646
|
send: "code" | "link";
|
|
14604
14647
|
authParams: {
|
|
14605
|
-
|
|
14606
|
-
state?: string | undefined;
|
|
14648
|
+
audience?: string | undefined;
|
|
14607
14649
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14608
14650
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14609
14651
|
scope?: string | undefined;
|
|
14610
|
-
|
|
14652
|
+
username?: string | undefined;
|
|
14611
14653
|
prompt?: string | undefined;
|
|
14612
|
-
|
|
14654
|
+
state?: string | undefined;
|
|
14613
14655
|
organization?: string | undefined;
|
|
14656
|
+
nonce?: string | undefined;
|
|
14614
14657
|
redirect_uri?: string | undefined;
|
|
14615
14658
|
act_as?: string | undefined;
|
|
14616
|
-
nonce?: string | undefined;
|
|
14617
14659
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14618
14660
|
code_challenge?: string | undefined;
|
|
14661
|
+
ui_locales?: string | undefined;
|
|
14619
14662
|
max_age?: number | undefined;
|
|
14620
14663
|
acr_values?: string | undefined;
|
|
14621
14664
|
claims?: {
|
|
@@ -14638,20 +14681,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14638
14681
|
phone_number: string;
|
|
14639
14682
|
send: "code" | "link";
|
|
14640
14683
|
authParams: {
|
|
14641
|
-
|
|
14642
|
-
state?: string | undefined;
|
|
14684
|
+
audience?: string | undefined;
|
|
14643
14685
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14644
14686
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14645
14687
|
scope?: string | undefined;
|
|
14646
|
-
|
|
14688
|
+
username?: string | undefined;
|
|
14647
14689
|
prompt?: string | undefined;
|
|
14648
|
-
|
|
14690
|
+
state?: string | undefined;
|
|
14649
14691
|
organization?: string | undefined;
|
|
14692
|
+
nonce?: string | undefined;
|
|
14650
14693
|
redirect_uri?: string | undefined;
|
|
14651
14694
|
act_as?: string | undefined;
|
|
14652
|
-
nonce?: string | undefined;
|
|
14653
14695
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14654
14696
|
code_challenge?: string | undefined;
|
|
14697
|
+
ui_locales?: string | undefined;
|
|
14655
14698
|
max_age?: number | undefined;
|
|
14656
14699
|
acr_values?: string | undefined;
|
|
14657
14700
|
claims?: {
|
|
@@ -14782,14 +14825,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14782
14825
|
input: {
|
|
14783
14826
|
form: {
|
|
14784
14827
|
token: string;
|
|
14785
|
-
token_type_hint?: "
|
|
14828
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14786
14829
|
client_id?: string | undefined;
|
|
14787
14830
|
client_secret?: string | undefined;
|
|
14788
14831
|
};
|
|
14789
14832
|
} & {
|
|
14790
14833
|
json: {
|
|
14791
14834
|
token: string;
|
|
14792
|
-
token_type_hint?: "
|
|
14835
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14793
14836
|
client_id?: string | undefined;
|
|
14794
14837
|
client_secret?: string | undefined;
|
|
14795
14838
|
};
|
|
@@ -14801,14 +14844,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14801
14844
|
input: {
|
|
14802
14845
|
form: {
|
|
14803
14846
|
token: string;
|
|
14804
|
-
token_type_hint?: "
|
|
14847
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14805
14848
|
client_id?: string | undefined;
|
|
14806
14849
|
client_secret?: string | undefined;
|
|
14807
14850
|
};
|
|
14808
14851
|
} & {
|
|
14809
14852
|
json: {
|
|
14810
14853
|
token: string;
|
|
14811
|
-
token_type_hint?: "
|
|
14854
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14812
14855
|
client_id?: string | undefined;
|
|
14813
14856
|
client_secret?: string | undefined;
|
|
14814
14857
|
};
|
|
@@ -14823,14 +14866,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14823
14866
|
input: {
|
|
14824
14867
|
form: {
|
|
14825
14868
|
token: string;
|
|
14826
|
-
token_type_hint?: "
|
|
14869
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14827
14870
|
client_id?: string | undefined;
|
|
14828
14871
|
client_secret?: string | undefined;
|
|
14829
14872
|
};
|
|
14830
14873
|
} & {
|
|
14831
14874
|
json: {
|
|
14832
14875
|
token: string;
|
|
14833
|
-
token_type_hint?: "
|
|
14876
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14834
14877
|
client_id?: string | undefined;
|
|
14835
14878
|
client_secret?: string | undefined;
|
|
14836
14879
|
};
|
|
@@ -14880,7 +14923,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14880
14923
|
client_id: string;
|
|
14881
14924
|
username: string;
|
|
14882
14925
|
otp: string;
|
|
14883
|
-
realm: "
|
|
14926
|
+
realm: "sms" | "email";
|
|
14884
14927
|
} | {
|
|
14885
14928
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14886
14929
|
subject_token: string;
|
|
@@ -14927,7 +14970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14927
14970
|
client_id: string;
|
|
14928
14971
|
username: string;
|
|
14929
14972
|
otp: string;
|
|
14930
|
-
realm: "
|
|
14973
|
+
realm: "sms" | "email";
|
|
14931
14974
|
} | {
|
|
14932
14975
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14933
14976
|
subject_token: string;
|
|
@@ -14979,7 +15022,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14979
15022
|
client_id: string;
|
|
14980
15023
|
username: string;
|
|
14981
15024
|
otp: string;
|
|
14982
|
-
realm: "
|
|
15025
|
+
realm: "sms" | "email";
|
|
14983
15026
|
} | {
|
|
14984
15027
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14985
15028
|
subject_token: string;
|
|
@@ -15026,7 +15069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15026
15069
|
client_id: string;
|
|
15027
15070
|
username: string;
|
|
15028
15071
|
otp: string;
|
|
15029
|
-
realm: "
|
|
15072
|
+
realm: "sms" | "email";
|
|
15030
15073
|
} | {
|
|
15031
15074
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15032
15075
|
subject_token: string;
|
|
@@ -15086,7 +15129,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15086
15129
|
client_id: string;
|
|
15087
15130
|
username: string;
|
|
15088
15131
|
otp: string;
|
|
15089
|
-
realm: "
|
|
15132
|
+
realm: "sms" | "email";
|
|
15090
15133
|
} | {
|
|
15091
15134
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15092
15135
|
subject_token: string;
|
|
@@ -15133,7 +15176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15133
15176
|
client_id: string;
|
|
15134
15177
|
username: string;
|
|
15135
15178
|
otp: string;
|
|
15136
|
-
realm: "
|
|
15179
|
+
realm: "sms" | "email";
|
|
15137
15180
|
} | {
|
|
15138
15181
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15139
15182
|
subject_token: string;
|
|
@@ -15188,7 +15231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15188
15231
|
client_id: string;
|
|
15189
15232
|
username: string;
|
|
15190
15233
|
otp: string;
|
|
15191
|
-
realm: "
|
|
15234
|
+
realm: "sms" | "email";
|
|
15192
15235
|
} | {
|
|
15193
15236
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15194
15237
|
subject_token: string;
|
|
@@ -15235,7 +15278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15235
15278
|
client_id: string;
|
|
15236
15279
|
username: string;
|
|
15237
15280
|
otp: string;
|
|
15238
|
-
realm: "
|
|
15281
|
+
realm: "sms" | "email";
|
|
15239
15282
|
} | {
|
|
15240
15283
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15241
15284
|
subject_token: string;
|
|
@@ -15290,7 +15333,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15290
15333
|
client_id: string;
|
|
15291
15334
|
username: string;
|
|
15292
15335
|
otp: string;
|
|
15293
|
-
realm: "
|
|
15336
|
+
realm: "sms" | "email";
|
|
15294
15337
|
} | {
|
|
15295
15338
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15296
15339
|
subject_token: string;
|
|
@@ -15337,7 +15380,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15337
15380
|
client_id: string;
|
|
15338
15381
|
username: string;
|
|
15339
15382
|
otp: string;
|
|
15340
|
-
realm: "
|
|
15383
|
+
realm: "sms" | "email";
|
|
15341
15384
|
} | {
|
|
15342
15385
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15343
15386
|
subject_token: string;
|
|
@@ -16178,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16178
16221
|
} & {
|
|
16179
16222
|
form: {
|
|
16180
16223
|
username: string;
|
|
16181
|
-
login_selection?: "
|
|
16224
|
+
login_selection?: "password" | "code" | undefined;
|
|
16182
16225
|
};
|
|
16183
16226
|
};
|
|
16184
16227
|
output: {};
|
|
@@ -16192,7 +16235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16192
16235
|
} & {
|
|
16193
16236
|
form: {
|
|
16194
16237
|
username: string;
|
|
16195
|
-
login_selection?: "
|
|
16238
|
+
login_selection?: "password" | "code" | undefined;
|
|
16196
16239
|
};
|
|
16197
16240
|
};
|
|
16198
16241
|
output: {};
|
|
@@ -16557,7 +16600,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16557
16600
|
$get: {
|
|
16558
16601
|
input: {
|
|
16559
16602
|
param: {
|
|
16560
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16603
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16561
16604
|
};
|
|
16562
16605
|
} & {
|
|
16563
16606
|
query: {
|
|
@@ -16573,7 +16616,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16573
16616
|
} | {
|
|
16574
16617
|
input: {
|
|
16575
16618
|
param: {
|
|
16576
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16619
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16577
16620
|
};
|
|
16578
16621
|
} & {
|
|
16579
16622
|
query: {
|
|
@@ -16589,7 +16632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16589
16632
|
} | {
|
|
16590
16633
|
input: {
|
|
16591
16634
|
param: {
|
|
16592
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16635
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16593
16636
|
};
|
|
16594
16637
|
} & {
|
|
16595
16638
|
query: {
|
|
@@ -16609,7 +16652,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16609
16652
|
$post: {
|
|
16610
16653
|
input: {
|
|
16611
16654
|
param: {
|
|
16612
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16655
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16613
16656
|
};
|
|
16614
16657
|
} & {
|
|
16615
16658
|
query: {
|
|
@@ -16627,7 +16670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16627
16670
|
} | {
|
|
16628
16671
|
input: {
|
|
16629
16672
|
param: {
|
|
16630
|
-
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
16673
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16631
16674
|
};
|
|
16632
16675
|
} & {
|
|
16633
16676
|
query: {
|