authhero 8.7.1 → 8.8.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/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-52a70476.entry.js +1 -0
- package/dist/authhero.cjs +104 -103
- package/dist/authhero.d.ts +256 -212
- package/dist/authhero.mjs +9669 -9519
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -3
- package/dist/types/helpers/client.d.ts +1 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/mutable-response.d.ts +38 -0
- package/dist/types/index.d.ts +194 -211
- package/dist/types/routes/auth-api/index.d.ts +26 -26
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- 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/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- 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 +162 -162
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +207 -3
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +6 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/screens/connect-authz.d.ts +41 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -23
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -23
- package/dist/types/routes/universal-login/u2-widget-page.d.ts +6 -0
- package/dist/types/types/AuthHeroConfig.d.ts +21 -0
- package/dist/types/types/Bindings.d.ts +1 -0
- package/dist/types/types/IdToken.d.ts +2 -2
- package/package.json +5 -5
- package/dist/assets/u/widget/p-5a319adc.entry.js +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export * from "./styles";
|
|
|
9
9
|
export * from "./adapters";
|
|
10
10
|
export * from "./email-services";
|
|
11
11
|
export { waitUntil } from "./helpers/wait-until";
|
|
12
|
+
export { toMutableResponse, ensureMutableResponse, } from "./helpers/mutable-response";
|
|
12
13
|
export { cleanupUserSessions, cleanupSessions, } from "./helpers/user-session-cleanup";
|
|
13
14
|
export type { UserSessionCleanupParams } from "./helpers/user-session-cleanup";
|
|
14
15
|
export { drainOutbox } from "./helpers/outbox-relay";
|
|
@@ -86,7 +87,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
86
87
|
};
|
|
87
88
|
} & {
|
|
88
89
|
json: {
|
|
89
|
-
type: "
|
|
90
|
+
type: "email" | "passkey" | "push" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
90
91
|
phone_number?: string | undefined;
|
|
91
92
|
totp_secret?: string | undefined;
|
|
92
93
|
credential_id?: string | undefined;
|
|
@@ -226,7 +227,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
226
227
|
};
|
|
227
228
|
};
|
|
228
229
|
output: {
|
|
229
|
-
name: "
|
|
230
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
230
231
|
enabled: boolean;
|
|
231
232
|
trial_expired?: boolean | undefined;
|
|
232
233
|
}[];
|
|
@@ -381,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
381
382
|
$get: {
|
|
382
383
|
input: {
|
|
383
384
|
param: {
|
|
384
|
-
factor_name: "
|
|
385
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
385
386
|
};
|
|
386
387
|
} & {
|
|
387
388
|
header: {
|
|
@@ -389,7 +390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
389
390
|
};
|
|
390
391
|
};
|
|
391
392
|
output: {
|
|
392
|
-
name: "
|
|
393
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
393
394
|
enabled: boolean;
|
|
394
395
|
trial_expired?: boolean | undefined;
|
|
395
396
|
};
|
|
@@ -402,7 +403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
402
403
|
$put: {
|
|
403
404
|
input: {
|
|
404
405
|
param: {
|
|
405
|
-
factor_name: "
|
|
406
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
406
407
|
};
|
|
407
408
|
} & {
|
|
408
409
|
header: {
|
|
@@ -414,7 +415,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
414
415
|
};
|
|
415
416
|
};
|
|
416
417
|
output: {
|
|
417
|
-
name: "
|
|
418
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
418
419
|
enabled: boolean;
|
|
419
420
|
trial_expired?: boolean | undefined;
|
|
420
421
|
};
|
|
@@ -1160,10 +1161,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1160
1161
|
email?: string | undefined;
|
|
1161
1162
|
};
|
|
1162
1163
|
id?: string | undefined;
|
|
1164
|
+
roles?: string[] | undefined;
|
|
1163
1165
|
app_metadata?: Record<string, any> | undefined;
|
|
1164
1166
|
user_metadata?: Record<string, any> | undefined;
|
|
1165
1167
|
connection_id?: string | undefined;
|
|
1166
|
-
roles?: string[] | undefined;
|
|
1167
1168
|
ttl_sec?: number | undefined;
|
|
1168
1169
|
send_invitation_email?: boolean | undefined;
|
|
1169
1170
|
};
|
|
@@ -2590,7 +2591,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2590
2591
|
hint?: string | undefined;
|
|
2591
2592
|
messages?: {
|
|
2592
2593
|
text: string;
|
|
2593
|
-
type: "
|
|
2594
|
+
type: "success" | "error" | "info" | "warning";
|
|
2594
2595
|
id?: number | undefined;
|
|
2595
2596
|
}[] | undefined;
|
|
2596
2597
|
required?: boolean | undefined;
|
|
@@ -2608,7 +2609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2608
2609
|
hint?: string | undefined;
|
|
2609
2610
|
messages?: {
|
|
2610
2611
|
text: string;
|
|
2611
|
-
type: "
|
|
2612
|
+
type: "success" | "error" | "info" | "warning";
|
|
2612
2613
|
id?: number | undefined;
|
|
2613
2614
|
}[] | undefined;
|
|
2614
2615
|
required?: boolean | undefined;
|
|
@@ -2632,7 +2633,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2632
2633
|
hint?: string | undefined;
|
|
2633
2634
|
messages?: {
|
|
2634
2635
|
text: string;
|
|
2635
|
-
type: "
|
|
2636
|
+
type: "success" | "error" | "info" | "warning";
|
|
2636
2637
|
id?: number | undefined;
|
|
2637
2638
|
}[] | undefined;
|
|
2638
2639
|
required?: boolean | undefined;
|
|
@@ -2656,7 +2657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2656
2657
|
hint?: string | undefined;
|
|
2657
2658
|
messages?: {
|
|
2658
2659
|
text: string;
|
|
2659
|
-
type: "
|
|
2660
|
+
type: "success" | "error" | "info" | "warning";
|
|
2660
2661
|
id?: number | undefined;
|
|
2661
2662
|
}[] | undefined;
|
|
2662
2663
|
required?: boolean | undefined;
|
|
@@ -2680,7 +2681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2680
2681
|
hint?: string | undefined;
|
|
2681
2682
|
messages?: {
|
|
2682
2683
|
text: string;
|
|
2683
|
-
type: "
|
|
2684
|
+
type: "success" | "error" | "info" | "warning";
|
|
2684
2685
|
id?: number | undefined;
|
|
2685
2686
|
}[] | undefined;
|
|
2686
2687
|
required?: boolean | undefined;
|
|
@@ -2709,7 +2710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2709
2710
|
hint?: string | undefined;
|
|
2710
2711
|
messages?: {
|
|
2711
2712
|
text: string;
|
|
2712
|
-
type: "
|
|
2713
|
+
type: "success" | "error" | "info" | "warning";
|
|
2713
2714
|
id?: number | undefined;
|
|
2714
2715
|
}[] | undefined;
|
|
2715
2716
|
required?: boolean | undefined;
|
|
@@ -2724,7 +2725,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2724
2725
|
hint?: string | undefined;
|
|
2725
2726
|
messages?: {
|
|
2726
2727
|
text: string;
|
|
2727
|
-
type: "
|
|
2728
|
+
type: "success" | "error" | "info" | "warning";
|
|
2728
2729
|
id?: number | undefined;
|
|
2729
2730
|
}[] | undefined;
|
|
2730
2731
|
required?: boolean | undefined;
|
|
@@ -2745,7 +2746,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2745
2746
|
hint?: string | undefined;
|
|
2746
2747
|
messages?: {
|
|
2747
2748
|
text: string;
|
|
2748
|
-
type: "
|
|
2749
|
+
type: "success" | "error" | "info" | "warning";
|
|
2749
2750
|
id?: number | undefined;
|
|
2750
2751
|
}[] | undefined;
|
|
2751
2752
|
required?: boolean | undefined;
|
|
@@ -2770,7 +2771,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2770
2771
|
hint?: string | undefined;
|
|
2771
2772
|
messages?: {
|
|
2772
2773
|
text: string;
|
|
2773
|
-
type: "
|
|
2774
|
+
type: "success" | "error" | "info" | "warning";
|
|
2774
2775
|
id?: number | undefined;
|
|
2775
2776
|
}[] | undefined;
|
|
2776
2777
|
required?: boolean | undefined;
|
|
@@ -2789,7 +2790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2789
2790
|
hint?: string | undefined;
|
|
2790
2791
|
messages?: {
|
|
2791
2792
|
text: string;
|
|
2792
|
-
type: "
|
|
2793
|
+
type: "success" | "error" | "info" | "warning";
|
|
2793
2794
|
id?: number | undefined;
|
|
2794
2795
|
}[] | undefined;
|
|
2795
2796
|
required?: boolean | undefined;
|
|
@@ -2809,7 +2810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2809
2810
|
hint?: string | undefined;
|
|
2810
2811
|
messages?: {
|
|
2811
2812
|
text: string;
|
|
2812
|
-
type: "
|
|
2813
|
+
type: "success" | "error" | "info" | "warning";
|
|
2813
2814
|
id?: number | undefined;
|
|
2814
2815
|
}[] | undefined;
|
|
2815
2816
|
required?: boolean | undefined;
|
|
@@ -2828,7 +2829,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2828
2829
|
hint?: string | undefined;
|
|
2829
2830
|
messages?: {
|
|
2830
2831
|
text: string;
|
|
2831
|
-
type: "
|
|
2832
|
+
type: "success" | "error" | "info" | "warning";
|
|
2832
2833
|
id?: number | undefined;
|
|
2833
2834
|
}[] | undefined;
|
|
2834
2835
|
required?: boolean | undefined;
|
|
@@ -2850,7 +2851,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2850
2851
|
hint?: string | undefined;
|
|
2851
2852
|
messages?: {
|
|
2852
2853
|
text: string;
|
|
2853
|
-
type: "
|
|
2854
|
+
type: "success" | "error" | "info" | "warning";
|
|
2854
2855
|
id?: number | undefined;
|
|
2855
2856
|
}[] | undefined;
|
|
2856
2857
|
required?: boolean | undefined;
|
|
@@ -2872,7 +2873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2872
2873
|
hint?: string | undefined;
|
|
2873
2874
|
messages?: {
|
|
2874
2875
|
text: string;
|
|
2875
|
-
type: "
|
|
2876
|
+
type: "success" | "error" | "info" | "warning";
|
|
2876
2877
|
id?: number | undefined;
|
|
2877
2878
|
}[] | undefined;
|
|
2878
2879
|
required?: boolean | undefined;
|
|
@@ -2891,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2891
2892
|
hint?: string | undefined;
|
|
2892
2893
|
messages?: {
|
|
2893
2894
|
text: string;
|
|
2894
|
-
type: "
|
|
2895
|
+
type: "success" | "error" | "info" | "warning";
|
|
2895
2896
|
id?: number | undefined;
|
|
2896
2897
|
}[] | undefined;
|
|
2897
2898
|
required?: boolean | undefined;
|
|
@@ -2916,7 +2917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2916
2917
|
hint?: string | undefined;
|
|
2917
2918
|
messages?: {
|
|
2918
2919
|
text: string;
|
|
2919
|
-
type: "
|
|
2920
|
+
type: "success" | "error" | "info" | "warning";
|
|
2920
2921
|
id?: number | undefined;
|
|
2921
2922
|
}[] | undefined;
|
|
2922
2923
|
required?: boolean | undefined;
|
|
@@ -2937,7 +2938,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2937
2938
|
hint?: string | undefined;
|
|
2938
2939
|
messages?: {
|
|
2939
2940
|
text: string;
|
|
2940
|
-
type: "
|
|
2941
|
+
type: "success" | "error" | "info" | "warning";
|
|
2941
2942
|
id?: number | undefined;
|
|
2942
2943
|
}[] | undefined;
|
|
2943
2944
|
required?: boolean | undefined;
|
|
@@ -2958,7 +2959,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2958
2959
|
hint?: string | undefined;
|
|
2959
2960
|
messages?: {
|
|
2960
2961
|
text: string;
|
|
2961
|
-
type: "
|
|
2962
|
+
type: "success" | "error" | "info" | "warning";
|
|
2962
2963
|
id?: number | undefined;
|
|
2963
2964
|
}[] | undefined;
|
|
2964
2965
|
required?: boolean | undefined;
|
|
@@ -3191,7 +3192,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3191
3192
|
hint?: string | undefined;
|
|
3192
3193
|
messages?: {
|
|
3193
3194
|
text: string;
|
|
3194
|
-
type: "
|
|
3195
|
+
type: "success" | "error" | "info" | "warning";
|
|
3195
3196
|
id?: number | undefined;
|
|
3196
3197
|
}[] | undefined;
|
|
3197
3198
|
required?: boolean | undefined;
|
|
@@ -3209,7 +3210,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3209
3210
|
hint?: string | undefined;
|
|
3210
3211
|
messages?: {
|
|
3211
3212
|
text: string;
|
|
3212
|
-
type: "
|
|
3213
|
+
type: "success" | "error" | "info" | "warning";
|
|
3213
3214
|
id?: number | undefined;
|
|
3214
3215
|
}[] | undefined;
|
|
3215
3216
|
required?: boolean | undefined;
|
|
@@ -3233,7 +3234,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3233
3234
|
hint?: string | undefined;
|
|
3234
3235
|
messages?: {
|
|
3235
3236
|
text: string;
|
|
3236
|
-
type: "
|
|
3237
|
+
type: "success" | "error" | "info" | "warning";
|
|
3237
3238
|
id?: number | undefined;
|
|
3238
3239
|
}[] | undefined;
|
|
3239
3240
|
required?: boolean | undefined;
|
|
@@ -3257,7 +3258,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3257
3258
|
hint?: string | undefined;
|
|
3258
3259
|
messages?: {
|
|
3259
3260
|
text: string;
|
|
3260
|
-
type: "
|
|
3261
|
+
type: "success" | "error" | "info" | "warning";
|
|
3261
3262
|
id?: number | undefined;
|
|
3262
3263
|
}[] | undefined;
|
|
3263
3264
|
required?: boolean | undefined;
|
|
@@ -3281,7 +3282,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3281
3282
|
hint?: string | undefined;
|
|
3282
3283
|
messages?: {
|
|
3283
3284
|
text: string;
|
|
3284
|
-
type: "
|
|
3285
|
+
type: "success" | "error" | "info" | "warning";
|
|
3285
3286
|
id?: number | undefined;
|
|
3286
3287
|
}[] | undefined;
|
|
3287
3288
|
required?: boolean | undefined;
|
|
@@ -3310,7 +3311,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3310
3311
|
hint?: string | undefined;
|
|
3311
3312
|
messages?: {
|
|
3312
3313
|
text: string;
|
|
3313
|
-
type: "
|
|
3314
|
+
type: "success" | "error" | "info" | "warning";
|
|
3314
3315
|
id?: number | undefined;
|
|
3315
3316
|
}[] | undefined;
|
|
3316
3317
|
required?: boolean | undefined;
|
|
@@ -3325,7 +3326,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3325
3326
|
hint?: string | undefined;
|
|
3326
3327
|
messages?: {
|
|
3327
3328
|
text: string;
|
|
3328
|
-
type: "
|
|
3329
|
+
type: "success" | "error" | "info" | "warning";
|
|
3329
3330
|
id?: number | undefined;
|
|
3330
3331
|
}[] | undefined;
|
|
3331
3332
|
required?: boolean | undefined;
|
|
@@ -3346,7 +3347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3346
3347
|
hint?: string | undefined;
|
|
3347
3348
|
messages?: {
|
|
3348
3349
|
text: string;
|
|
3349
|
-
type: "
|
|
3350
|
+
type: "success" | "error" | "info" | "warning";
|
|
3350
3351
|
id?: number | undefined;
|
|
3351
3352
|
}[] | undefined;
|
|
3352
3353
|
required?: boolean | undefined;
|
|
@@ -3371,7 +3372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3371
3372
|
hint?: string | undefined;
|
|
3372
3373
|
messages?: {
|
|
3373
3374
|
text: string;
|
|
3374
|
-
type: "
|
|
3375
|
+
type: "success" | "error" | "info" | "warning";
|
|
3375
3376
|
id?: number | undefined;
|
|
3376
3377
|
}[] | undefined;
|
|
3377
3378
|
required?: boolean | undefined;
|
|
@@ -3390,7 +3391,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3390
3391
|
hint?: string | undefined;
|
|
3391
3392
|
messages?: {
|
|
3392
3393
|
text: string;
|
|
3393
|
-
type: "
|
|
3394
|
+
type: "success" | "error" | "info" | "warning";
|
|
3394
3395
|
id?: number | undefined;
|
|
3395
3396
|
}[] | undefined;
|
|
3396
3397
|
required?: boolean | undefined;
|
|
@@ -3410,7 +3411,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3410
3411
|
hint?: string | undefined;
|
|
3411
3412
|
messages?: {
|
|
3412
3413
|
text: string;
|
|
3413
|
-
type: "
|
|
3414
|
+
type: "success" | "error" | "info" | "warning";
|
|
3414
3415
|
id?: number | undefined;
|
|
3415
3416
|
}[] | undefined;
|
|
3416
3417
|
required?: boolean | undefined;
|
|
@@ -3429,7 +3430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3429
3430
|
hint?: string | undefined;
|
|
3430
3431
|
messages?: {
|
|
3431
3432
|
text: string;
|
|
3432
|
-
type: "
|
|
3433
|
+
type: "success" | "error" | "info" | "warning";
|
|
3433
3434
|
id?: number | undefined;
|
|
3434
3435
|
}[] | undefined;
|
|
3435
3436
|
required?: boolean | undefined;
|
|
@@ -3451,7 +3452,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3451
3452
|
hint?: string | undefined;
|
|
3452
3453
|
messages?: {
|
|
3453
3454
|
text: string;
|
|
3454
|
-
type: "
|
|
3455
|
+
type: "success" | "error" | "info" | "warning";
|
|
3455
3456
|
id?: number | undefined;
|
|
3456
3457
|
}[] | undefined;
|
|
3457
3458
|
required?: boolean | undefined;
|
|
@@ -3473,7 +3474,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3473
3474
|
hint?: string | undefined;
|
|
3474
3475
|
messages?: {
|
|
3475
3476
|
text: string;
|
|
3476
|
-
type: "
|
|
3477
|
+
type: "success" | "error" | "info" | "warning";
|
|
3477
3478
|
id?: number | undefined;
|
|
3478
3479
|
}[] | undefined;
|
|
3479
3480
|
required?: boolean | undefined;
|
|
@@ -3492,7 +3493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3492
3493
|
hint?: string | undefined;
|
|
3493
3494
|
messages?: {
|
|
3494
3495
|
text: string;
|
|
3495
|
-
type: "
|
|
3496
|
+
type: "success" | "error" | "info" | "warning";
|
|
3496
3497
|
id?: number | undefined;
|
|
3497
3498
|
}[] | undefined;
|
|
3498
3499
|
required?: boolean | undefined;
|
|
@@ -3517,7 +3518,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3517
3518
|
hint?: string | undefined;
|
|
3518
3519
|
messages?: {
|
|
3519
3520
|
text: string;
|
|
3520
|
-
type: "
|
|
3521
|
+
type: "success" | "error" | "info" | "warning";
|
|
3521
3522
|
id?: number | undefined;
|
|
3522
3523
|
}[] | undefined;
|
|
3523
3524
|
required?: boolean | undefined;
|
|
@@ -3538,7 +3539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3538
3539
|
hint?: string | undefined;
|
|
3539
3540
|
messages?: {
|
|
3540
3541
|
text: string;
|
|
3541
|
-
type: "
|
|
3542
|
+
type: "success" | "error" | "info" | "warning";
|
|
3542
3543
|
id?: number | undefined;
|
|
3543
3544
|
}[] | undefined;
|
|
3544
3545
|
required?: boolean | undefined;
|
|
@@ -3559,7 +3560,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3559
3560
|
hint?: string | undefined;
|
|
3560
3561
|
messages?: {
|
|
3561
3562
|
text: string;
|
|
3562
|
-
type: "
|
|
3563
|
+
type: "success" | "error" | "info" | "warning";
|
|
3563
3564
|
id?: number | undefined;
|
|
3564
3565
|
}[] | undefined;
|
|
3565
3566
|
required?: boolean | undefined;
|
|
@@ -3807,7 +3808,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3807
3808
|
hint?: string | undefined;
|
|
3808
3809
|
messages?: {
|
|
3809
3810
|
text: string;
|
|
3810
|
-
type: "
|
|
3811
|
+
type: "success" | "error" | "info" | "warning";
|
|
3811
3812
|
id?: number | undefined;
|
|
3812
3813
|
}[] | undefined;
|
|
3813
3814
|
required?: boolean | undefined;
|
|
@@ -3825,7 +3826,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3825
3826
|
hint?: string | undefined;
|
|
3826
3827
|
messages?: {
|
|
3827
3828
|
text: string;
|
|
3828
|
-
type: "
|
|
3829
|
+
type: "success" | "error" | "info" | "warning";
|
|
3829
3830
|
id?: number | undefined;
|
|
3830
3831
|
}[] | undefined;
|
|
3831
3832
|
required?: boolean | undefined;
|
|
@@ -3849,7 +3850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3849
3850
|
hint?: string | undefined;
|
|
3850
3851
|
messages?: {
|
|
3851
3852
|
text: string;
|
|
3852
|
-
type: "
|
|
3853
|
+
type: "success" | "error" | "info" | "warning";
|
|
3853
3854
|
id?: number | undefined;
|
|
3854
3855
|
}[] | undefined;
|
|
3855
3856
|
required?: boolean | undefined;
|
|
@@ -3873,7 +3874,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3873
3874
|
hint?: string | undefined;
|
|
3874
3875
|
messages?: {
|
|
3875
3876
|
text: string;
|
|
3876
|
-
type: "
|
|
3877
|
+
type: "success" | "error" | "info" | "warning";
|
|
3877
3878
|
id?: number | undefined;
|
|
3878
3879
|
}[] | undefined;
|
|
3879
3880
|
required?: boolean | undefined;
|
|
@@ -3897,7 +3898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3897
3898
|
hint?: string | undefined;
|
|
3898
3899
|
messages?: {
|
|
3899
3900
|
text: string;
|
|
3900
|
-
type: "
|
|
3901
|
+
type: "success" | "error" | "info" | "warning";
|
|
3901
3902
|
id?: number | undefined;
|
|
3902
3903
|
}[] | undefined;
|
|
3903
3904
|
required?: boolean | undefined;
|
|
@@ -3926,7 +3927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3926
3927
|
hint?: string | undefined;
|
|
3927
3928
|
messages?: {
|
|
3928
3929
|
text: string;
|
|
3929
|
-
type: "
|
|
3930
|
+
type: "success" | "error" | "info" | "warning";
|
|
3930
3931
|
id?: number | undefined;
|
|
3931
3932
|
}[] | undefined;
|
|
3932
3933
|
required?: boolean | undefined;
|
|
@@ -3941,7 +3942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3941
3942
|
hint?: string | undefined;
|
|
3942
3943
|
messages?: {
|
|
3943
3944
|
text: string;
|
|
3944
|
-
type: "
|
|
3945
|
+
type: "success" | "error" | "info" | "warning";
|
|
3945
3946
|
id?: number | undefined;
|
|
3946
3947
|
}[] | undefined;
|
|
3947
3948
|
required?: boolean | undefined;
|
|
@@ -3962,7 +3963,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3962
3963
|
hint?: string | undefined;
|
|
3963
3964
|
messages?: {
|
|
3964
3965
|
text: string;
|
|
3965
|
-
type: "
|
|
3966
|
+
type: "success" | "error" | "info" | "warning";
|
|
3966
3967
|
id?: number | undefined;
|
|
3967
3968
|
}[] | undefined;
|
|
3968
3969
|
required?: boolean | undefined;
|
|
@@ -3987,7 +3988,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3987
3988
|
hint?: string | undefined;
|
|
3988
3989
|
messages?: {
|
|
3989
3990
|
text: string;
|
|
3990
|
-
type: "
|
|
3991
|
+
type: "success" | "error" | "info" | "warning";
|
|
3991
3992
|
id?: number | undefined;
|
|
3992
3993
|
}[] | undefined;
|
|
3993
3994
|
required?: boolean | undefined;
|
|
@@ -4006,7 +4007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4006
4007
|
hint?: string | undefined;
|
|
4007
4008
|
messages?: {
|
|
4008
4009
|
text: string;
|
|
4009
|
-
type: "
|
|
4010
|
+
type: "success" | "error" | "info" | "warning";
|
|
4010
4011
|
id?: number | undefined;
|
|
4011
4012
|
}[] | undefined;
|
|
4012
4013
|
required?: boolean | undefined;
|
|
@@ -4026,7 +4027,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4026
4027
|
hint?: string | undefined;
|
|
4027
4028
|
messages?: {
|
|
4028
4029
|
text: string;
|
|
4029
|
-
type: "
|
|
4030
|
+
type: "success" | "error" | "info" | "warning";
|
|
4030
4031
|
id?: number | undefined;
|
|
4031
4032
|
}[] | undefined;
|
|
4032
4033
|
required?: boolean | undefined;
|
|
@@ -4045,7 +4046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4045
4046
|
hint?: string | undefined;
|
|
4046
4047
|
messages?: {
|
|
4047
4048
|
text: string;
|
|
4048
|
-
type: "
|
|
4049
|
+
type: "success" | "error" | "info" | "warning";
|
|
4049
4050
|
id?: number | undefined;
|
|
4050
4051
|
}[] | undefined;
|
|
4051
4052
|
required?: boolean | undefined;
|
|
@@ -4067,7 +4068,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4067
4068
|
hint?: string | undefined;
|
|
4068
4069
|
messages?: {
|
|
4069
4070
|
text: string;
|
|
4070
|
-
type: "
|
|
4071
|
+
type: "success" | "error" | "info" | "warning";
|
|
4071
4072
|
id?: number | undefined;
|
|
4072
4073
|
}[] | undefined;
|
|
4073
4074
|
required?: boolean | undefined;
|
|
@@ -4089,7 +4090,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4089
4090
|
hint?: string | undefined;
|
|
4090
4091
|
messages?: {
|
|
4091
4092
|
text: string;
|
|
4092
|
-
type: "
|
|
4093
|
+
type: "success" | "error" | "info" | "warning";
|
|
4093
4094
|
id?: number | undefined;
|
|
4094
4095
|
}[] | undefined;
|
|
4095
4096
|
required?: boolean | undefined;
|
|
@@ -4108,7 +4109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4108
4109
|
hint?: string | undefined;
|
|
4109
4110
|
messages?: {
|
|
4110
4111
|
text: string;
|
|
4111
|
-
type: "
|
|
4112
|
+
type: "success" | "error" | "info" | "warning";
|
|
4112
4113
|
id?: number | undefined;
|
|
4113
4114
|
}[] | undefined;
|
|
4114
4115
|
required?: boolean | undefined;
|
|
@@ -4133,7 +4134,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4133
4134
|
hint?: string | undefined;
|
|
4134
4135
|
messages?: {
|
|
4135
4136
|
text: string;
|
|
4136
|
-
type: "
|
|
4137
|
+
type: "success" | "error" | "info" | "warning";
|
|
4137
4138
|
id?: number | undefined;
|
|
4138
4139
|
}[] | undefined;
|
|
4139
4140
|
required?: boolean | undefined;
|
|
@@ -4154,7 +4155,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4154
4155
|
hint?: string | undefined;
|
|
4155
4156
|
messages?: {
|
|
4156
4157
|
text: string;
|
|
4157
|
-
type: "
|
|
4158
|
+
type: "success" | "error" | "info" | "warning";
|
|
4158
4159
|
id?: number | undefined;
|
|
4159
4160
|
}[] | undefined;
|
|
4160
4161
|
required?: boolean | undefined;
|
|
@@ -4175,7 +4176,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4175
4176
|
hint?: string | undefined;
|
|
4176
4177
|
messages?: {
|
|
4177
4178
|
text: string;
|
|
4178
|
-
type: "
|
|
4179
|
+
type: "success" | "error" | "info" | "warning";
|
|
4179
4180
|
id?: number | undefined;
|
|
4180
4181
|
}[] | undefined;
|
|
4181
4182
|
required?: boolean | undefined;
|
|
@@ -4429,7 +4430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4429
4430
|
hint?: string | undefined;
|
|
4430
4431
|
messages?: {
|
|
4431
4432
|
text: string;
|
|
4432
|
-
type: "
|
|
4433
|
+
type: "success" | "error" | "info" | "warning";
|
|
4433
4434
|
id?: number | undefined;
|
|
4434
4435
|
}[] | undefined;
|
|
4435
4436
|
required?: boolean | undefined;
|
|
@@ -4447,7 +4448,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4447
4448
|
hint?: string | undefined;
|
|
4448
4449
|
messages?: {
|
|
4449
4450
|
text: string;
|
|
4450
|
-
type: "
|
|
4451
|
+
type: "success" | "error" | "info" | "warning";
|
|
4451
4452
|
id?: number | undefined;
|
|
4452
4453
|
}[] | undefined;
|
|
4453
4454
|
required?: boolean | undefined;
|
|
@@ -4471,7 +4472,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4471
4472
|
hint?: string | undefined;
|
|
4472
4473
|
messages?: {
|
|
4473
4474
|
text: string;
|
|
4474
|
-
type: "
|
|
4475
|
+
type: "success" | "error" | "info" | "warning";
|
|
4475
4476
|
id?: number | undefined;
|
|
4476
4477
|
}[] | undefined;
|
|
4477
4478
|
required?: boolean | undefined;
|
|
@@ -4495,7 +4496,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4495
4496
|
hint?: string | undefined;
|
|
4496
4497
|
messages?: {
|
|
4497
4498
|
text: string;
|
|
4498
|
-
type: "
|
|
4499
|
+
type: "success" | "error" | "info" | "warning";
|
|
4499
4500
|
id?: number | undefined;
|
|
4500
4501
|
}[] | undefined;
|
|
4501
4502
|
required?: boolean | undefined;
|
|
@@ -4519,7 +4520,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4519
4520
|
hint?: string | undefined;
|
|
4520
4521
|
messages?: {
|
|
4521
4522
|
text: string;
|
|
4522
|
-
type: "
|
|
4523
|
+
type: "success" | "error" | "info" | "warning";
|
|
4523
4524
|
id?: number | undefined;
|
|
4524
4525
|
}[] | undefined;
|
|
4525
4526
|
required?: boolean | undefined;
|
|
@@ -4544,7 +4545,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4544
4545
|
hint?: string | undefined;
|
|
4545
4546
|
messages?: {
|
|
4546
4547
|
text: string;
|
|
4547
|
-
type: "
|
|
4548
|
+
type: "success" | "error" | "info" | "warning";
|
|
4548
4549
|
id?: number | undefined;
|
|
4549
4550
|
}[] | undefined;
|
|
4550
4551
|
required?: boolean | undefined;
|
|
@@ -4559,7 +4560,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4559
4560
|
hint?: string | undefined;
|
|
4560
4561
|
messages?: {
|
|
4561
4562
|
text: string;
|
|
4562
|
-
type: "
|
|
4563
|
+
type: "success" | "error" | "info" | "warning";
|
|
4563
4564
|
id?: number | undefined;
|
|
4564
4565
|
}[] | undefined;
|
|
4565
4566
|
required?: boolean | undefined;
|
|
@@ -4580,7 +4581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4580
4581
|
hint?: string | undefined;
|
|
4581
4582
|
messages?: {
|
|
4582
4583
|
text: string;
|
|
4583
|
-
type: "
|
|
4584
|
+
type: "success" | "error" | "info" | "warning";
|
|
4584
4585
|
id?: number | undefined;
|
|
4585
4586
|
}[] | undefined;
|
|
4586
4587
|
required?: boolean | undefined;
|
|
@@ -4605,7 +4606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4605
4606
|
hint?: string | undefined;
|
|
4606
4607
|
messages?: {
|
|
4607
4608
|
text: string;
|
|
4608
|
-
type: "
|
|
4609
|
+
type: "success" | "error" | "info" | "warning";
|
|
4609
4610
|
id?: number | undefined;
|
|
4610
4611
|
}[] | undefined;
|
|
4611
4612
|
required?: boolean | undefined;
|
|
@@ -4624,7 +4625,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4624
4625
|
hint?: string | undefined;
|
|
4625
4626
|
messages?: {
|
|
4626
4627
|
text: string;
|
|
4627
|
-
type: "
|
|
4628
|
+
type: "success" | "error" | "info" | "warning";
|
|
4628
4629
|
id?: number | undefined;
|
|
4629
4630
|
}[] | undefined;
|
|
4630
4631
|
required?: boolean | undefined;
|
|
@@ -4644,7 +4645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4644
4645
|
hint?: string | undefined;
|
|
4645
4646
|
messages?: {
|
|
4646
4647
|
text: string;
|
|
4647
|
-
type: "
|
|
4648
|
+
type: "success" | "error" | "info" | "warning";
|
|
4648
4649
|
id?: number | undefined;
|
|
4649
4650
|
}[] | undefined;
|
|
4650
4651
|
required?: boolean | undefined;
|
|
@@ -4663,7 +4664,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4663
4664
|
hint?: string | undefined;
|
|
4664
4665
|
messages?: {
|
|
4665
4666
|
text: string;
|
|
4666
|
-
type: "
|
|
4667
|
+
type: "success" | "error" | "info" | "warning";
|
|
4667
4668
|
id?: number | undefined;
|
|
4668
4669
|
}[] | undefined;
|
|
4669
4670
|
required?: boolean | undefined;
|
|
@@ -4685,7 +4686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4685
4686
|
hint?: string | undefined;
|
|
4686
4687
|
messages?: {
|
|
4687
4688
|
text: string;
|
|
4688
|
-
type: "
|
|
4689
|
+
type: "success" | "error" | "info" | "warning";
|
|
4689
4690
|
id?: number | undefined;
|
|
4690
4691
|
}[] | undefined;
|
|
4691
4692
|
required?: boolean | undefined;
|
|
@@ -4707,7 +4708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4707
4708
|
hint?: string | undefined;
|
|
4708
4709
|
messages?: {
|
|
4709
4710
|
text: string;
|
|
4710
|
-
type: "
|
|
4711
|
+
type: "success" | "error" | "info" | "warning";
|
|
4711
4712
|
id?: number | undefined;
|
|
4712
4713
|
}[] | undefined;
|
|
4713
4714
|
required?: boolean | undefined;
|
|
@@ -4726,7 +4727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4726
4727
|
hint?: string | undefined;
|
|
4727
4728
|
messages?: {
|
|
4728
4729
|
text: string;
|
|
4729
|
-
type: "
|
|
4730
|
+
type: "success" | "error" | "info" | "warning";
|
|
4730
4731
|
id?: number | undefined;
|
|
4731
4732
|
}[] | undefined;
|
|
4732
4733
|
required?: boolean | undefined;
|
|
@@ -4751,7 +4752,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4751
4752
|
hint?: string | undefined;
|
|
4752
4753
|
messages?: {
|
|
4753
4754
|
text: string;
|
|
4754
|
-
type: "
|
|
4755
|
+
type: "success" | "error" | "info" | "warning";
|
|
4755
4756
|
id?: number | undefined;
|
|
4756
4757
|
}[] | undefined;
|
|
4757
4758
|
required?: boolean | undefined;
|
|
@@ -4772,7 +4773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4772
4773
|
hint?: string | undefined;
|
|
4773
4774
|
messages?: {
|
|
4774
4775
|
text: string;
|
|
4775
|
-
type: "
|
|
4776
|
+
type: "success" | "error" | "info" | "warning";
|
|
4776
4777
|
id?: number | undefined;
|
|
4777
4778
|
}[] | undefined;
|
|
4778
4779
|
required?: boolean | undefined;
|
|
@@ -4793,7 +4794,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4793
4794
|
hint?: string | undefined;
|
|
4794
4795
|
messages?: {
|
|
4795
4796
|
text: string;
|
|
4796
|
-
type: "
|
|
4797
|
+
type: "success" | "error" | "info" | "warning";
|
|
4797
4798
|
id?: number | undefined;
|
|
4798
4799
|
}[] | undefined;
|
|
4799
4800
|
required?: boolean | undefined;
|
|
@@ -5024,7 +5025,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5024
5025
|
hint?: string | undefined;
|
|
5025
5026
|
messages?: {
|
|
5026
5027
|
text: string;
|
|
5027
|
-
type: "
|
|
5028
|
+
type: "success" | "error" | "info" | "warning";
|
|
5028
5029
|
id?: number | undefined;
|
|
5029
5030
|
}[] | undefined;
|
|
5030
5031
|
required?: boolean | undefined;
|
|
@@ -5042,7 +5043,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5042
5043
|
hint?: string | undefined;
|
|
5043
5044
|
messages?: {
|
|
5044
5045
|
text: string;
|
|
5045
|
-
type: "
|
|
5046
|
+
type: "success" | "error" | "info" | "warning";
|
|
5046
5047
|
id?: number | undefined;
|
|
5047
5048
|
}[] | undefined;
|
|
5048
5049
|
required?: boolean | undefined;
|
|
@@ -5066,7 +5067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5066
5067
|
hint?: string | undefined;
|
|
5067
5068
|
messages?: {
|
|
5068
5069
|
text: string;
|
|
5069
|
-
type: "
|
|
5070
|
+
type: "success" | "error" | "info" | "warning";
|
|
5070
5071
|
id?: number | undefined;
|
|
5071
5072
|
}[] | undefined;
|
|
5072
5073
|
required?: boolean | undefined;
|
|
@@ -5090,7 +5091,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5090
5091
|
hint?: string | undefined;
|
|
5091
5092
|
messages?: {
|
|
5092
5093
|
text: string;
|
|
5093
|
-
type: "
|
|
5094
|
+
type: "success" | "error" | "info" | "warning";
|
|
5094
5095
|
id?: number | undefined;
|
|
5095
5096
|
}[] | undefined;
|
|
5096
5097
|
required?: boolean | undefined;
|
|
@@ -5114,7 +5115,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5114
5115
|
hint?: string | undefined;
|
|
5115
5116
|
messages?: {
|
|
5116
5117
|
text: string;
|
|
5117
|
-
type: "
|
|
5118
|
+
type: "success" | "error" | "info" | "warning";
|
|
5118
5119
|
id?: number | undefined;
|
|
5119
5120
|
}[] | undefined;
|
|
5120
5121
|
required?: boolean | undefined;
|
|
@@ -5143,7 +5144,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5143
5144
|
hint?: string | undefined;
|
|
5144
5145
|
messages?: {
|
|
5145
5146
|
text: string;
|
|
5146
|
-
type: "
|
|
5147
|
+
type: "success" | "error" | "info" | "warning";
|
|
5147
5148
|
id?: number | undefined;
|
|
5148
5149
|
}[] | undefined;
|
|
5149
5150
|
required?: boolean | undefined;
|
|
@@ -5158,7 +5159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5158
5159
|
hint?: string | undefined;
|
|
5159
5160
|
messages?: {
|
|
5160
5161
|
text: string;
|
|
5161
|
-
type: "
|
|
5162
|
+
type: "success" | "error" | "info" | "warning";
|
|
5162
5163
|
id?: number | undefined;
|
|
5163
5164
|
}[] | undefined;
|
|
5164
5165
|
required?: boolean | undefined;
|
|
@@ -5179,7 +5180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5179
5180
|
hint?: string | undefined;
|
|
5180
5181
|
messages?: {
|
|
5181
5182
|
text: string;
|
|
5182
|
-
type: "
|
|
5183
|
+
type: "success" | "error" | "info" | "warning";
|
|
5183
5184
|
id?: number | undefined;
|
|
5184
5185
|
}[] | undefined;
|
|
5185
5186
|
required?: boolean | undefined;
|
|
@@ -5204,7 +5205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5204
5205
|
hint?: string | undefined;
|
|
5205
5206
|
messages?: {
|
|
5206
5207
|
text: string;
|
|
5207
|
-
type: "
|
|
5208
|
+
type: "success" | "error" | "info" | "warning";
|
|
5208
5209
|
id?: number | undefined;
|
|
5209
5210
|
}[] | undefined;
|
|
5210
5211
|
required?: boolean | undefined;
|
|
@@ -5223,7 +5224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5223
5224
|
hint?: string | undefined;
|
|
5224
5225
|
messages?: {
|
|
5225
5226
|
text: string;
|
|
5226
|
-
type: "
|
|
5227
|
+
type: "success" | "error" | "info" | "warning";
|
|
5227
5228
|
id?: number | undefined;
|
|
5228
5229
|
}[] | undefined;
|
|
5229
5230
|
required?: boolean | undefined;
|
|
@@ -5243,7 +5244,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5243
5244
|
hint?: string | undefined;
|
|
5244
5245
|
messages?: {
|
|
5245
5246
|
text: string;
|
|
5246
|
-
type: "
|
|
5247
|
+
type: "success" | "error" | "info" | "warning";
|
|
5247
5248
|
id?: number | undefined;
|
|
5248
5249
|
}[] | undefined;
|
|
5249
5250
|
required?: boolean | undefined;
|
|
@@ -5262,7 +5263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5262
5263
|
hint?: string | undefined;
|
|
5263
5264
|
messages?: {
|
|
5264
5265
|
text: string;
|
|
5265
|
-
type: "
|
|
5266
|
+
type: "success" | "error" | "info" | "warning";
|
|
5266
5267
|
id?: number | undefined;
|
|
5267
5268
|
}[] | undefined;
|
|
5268
5269
|
required?: boolean | undefined;
|
|
@@ -5284,7 +5285,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5284
5285
|
hint?: string | undefined;
|
|
5285
5286
|
messages?: {
|
|
5286
5287
|
text: string;
|
|
5287
|
-
type: "
|
|
5288
|
+
type: "success" | "error" | "info" | "warning";
|
|
5288
5289
|
id?: number | undefined;
|
|
5289
5290
|
}[] | undefined;
|
|
5290
5291
|
required?: boolean | undefined;
|
|
@@ -5306,7 +5307,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5306
5307
|
hint?: string | undefined;
|
|
5307
5308
|
messages?: {
|
|
5308
5309
|
text: string;
|
|
5309
|
-
type: "
|
|
5310
|
+
type: "success" | "error" | "info" | "warning";
|
|
5310
5311
|
id?: number | undefined;
|
|
5311
5312
|
}[] | undefined;
|
|
5312
5313
|
required?: boolean | undefined;
|
|
@@ -5325,7 +5326,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5325
5326
|
hint?: string | undefined;
|
|
5326
5327
|
messages?: {
|
|
5327
5328
|
text: string;
|
|
5328
|
-
type: "
|
|
5329
|
+
type: "success" | "error" | "info" | "warning";
|
|
5329
5330
|
id?: number | undefined;
|
|
5330
5331
|
}[] | undefined;
|
|
5331
5332
|
required?: boolean | undefined;
|
|
@@ -5350,7 +5351,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5350
5351
|
hint?: string | undefined;
|
|
5351
5352
|
messages?: {
|
|
5352
5353
|
text: string;
|
|
5353
|
-
type: "
|
|
5354
|
+
type: "success" | "error" | "info" | "warning";
|
|
5354
5355
|
id?: number | undefined;
|
|
5355
5356
|
}[] | undefined;
|
|
5356
5357
|
required?: boolean | undefined;
|
|
@@ -5371,7 +5372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5371
5372
|
hint?: string | undefined;
|
|
5372
5373
|
messages?: {
|
|
5373
5374
|
text: string;
|
|
5374
|
-
type: "
|
|
5375
|
+
type: "success" | "error" | "info" | "warning";
|
|
5375
5376
|
id?: number | undefined;
|
|
5376
5377
|
}[] | undefined;
|
|
5377
5378
|
required?: boolean | undefined;
|
|
@@ -5392,7 +5393,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5392
5393
|
hint?: string | undefined;
|
|
5393
5394
|
messages?: {
|
|
5394
5395
|
text: string;
|
|
5395
|
-
type: "
|
|
5396
|
+
type: "success" | "error" | "info" | "warning";
|
|
5396
5397
|
id?: number | undefined;
|
|
5397
5398
|
}[] | undefined;
|
|
5398
5399
|
required?: boolean | undefined;
|
|
@@ -5625,7 +5626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5625
5626
|
hint?: string | undefined;
|
|
5626
5627
|
messages?: {
|
|
5627
5628
|
text: string;
|
|
5628
|
-
type: "
|
|
5629
|
+
type: "success" | "error" | "info" | "warning";
|
|
5629
5630
|
id?: number | undefined;
|
|
5630
5631
|
}[] | undefined;
|
|
5631
5632
|
required?: boolean | undefined;
|
|
@@ -5643,7 +5644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5643
5644
|
hint?: string | undefined;
|
|
5644
5645
|
messages?: {
|
|
5645
5646
|
text: string;
|
|
5646
|
-
type: "
|
|
5647
|
+
type: "success" | "error" | "info" | "warning";
|
|
5647
5648
|
id?: number | undefined;
|
|
5648
5649
|
}[] | undefined;
|
|
5649
5650
|
required?: boolean | undefined;
|
|
@@ -5667,7 +5668,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5667
5668
|
hint?: string | undefined;
|
|
5668
5669
|
messages?: {
|
|
5669
5670
|
text: string;
|
|
5670
|
-
type: "
|
|
5671
|
+
type: "success" | "error" | "info" | "warning";
|
|
5671
5672
|
id?: number | undefined;
|
|
5672
5673
|
}[] | undefined;
|
|
5673
5674
|
required?: boolean | undefined;
|
|
@@ -5691,7 +5692,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5691
5692
|
hint?: string | undefined;
|
|
5692
5693
|
messages?: {
|
|
5693
5694
|
text: string;
|
|
5694
|
-
type: "
|
|
5695
|
+
type: "success" | "error" | "info" | "warning";
|
|
5695
5696
|
id?: number | undefined;
|
|
5696
5697
|
}[] | undefined;
|
|
5697
5698
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5716,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5715
5716
|
hint?: string | undefined;
|
|
5716
5717
|
messages?: {
|
|
5717
5718
|
text: string;
|
|
5718
|
-
type: "
|
|
5719
|
+
type: "success" | "error" | "info" | "warning";
|
|
5719
5720
|
id?: number | undefined;
|
|
5720
5721
|
}[] | undefined;
|
|
5721
5722
|
required?: boolean | undefined;
|
|
@@ -5740,7 +5741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5740
5741
|
hint?: string | undefined;
|
|
5741
5742
|
messages?: {
|
|
5742
5743
|
text: string;
|
|
5743
|
-
type: "
|
|
5744
|
+
type: "success" | "error" | "info" | "warning";
|
|
5744
5745
|
id?: number | undefined;
|
|
5745
5746
|
}[] | undefined;
|
|
5746
5747
|
required?: boolean | undefined;
|
|
@@ -5755,7 +5756,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5755
5756
|
hint?: string | undefined;
|
|
5756
5757
|
messages?: {
|
|
5757
5758
|
text: string;
|
|
5758
|
-
type: "
|
|
5759
|
+
type: "success" | "error" | "info" | "warning";
|
|
5759
5760
|
id?: number | undefined;
|
|
5760
5761
|
}[] | undefined;
|
|
5761
5762
|
required?: boolean | undefined;
|
|
@@ -5776,7 +5777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5776
5777
|
hint?: string | undefined;
|
|
5777
5778
|
messages?: {
|
|
5778
5779
|
text: string;
|
|
5779
|
-
type: "
|
|
5780
|
+
type: "success" | "error" | "info" | "warning";
|
|
5780
5781
|
id?: number | undefined;
|
|
5781
5782
|
}[] | undefined;
|
|
5782
5783
|
required?: boolean | undefined;
|
|
@@ -5801,7 +5802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5801
5802
|
hint?: string | undefined;
|
|
5802
5803
|
messages?: {
|
|
5803
5804
|
text: string;
|
|
5804
|
-
type: "
|
|
5805
|
+
type: "success" | "error" | "info" | "warning";
|
|
5805
5806
|
id?: number | undefined;
|
|
5806
5807
|
}[] | undefined;
|
|
5807
5808
|
required?: boolean | undefined;
|
|
@@ -5820,7 +5821,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5820
5821
|
hint?: string | undefined;
|
|
5821
5822
|
messages?: {
|
|
5822
5823
|
text: string;
|
|
5823
|
-
type: "
|
|
5824
|
+
type: "success" | "error" | "info" | "warning";
|
|
5824
5825
|
id?: number | undefined;
|
|
5825
5826
|
}[] | undefined;
|
|
5826
5827
|
required?: boolean | undefined;
|
|
@@ -5840,7 +5841,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5840
5841
|
hint?: string | undefined;
|
|
5841
5842
|
messages?: {
|
|
5842
5843
|
text: string;
|
|
5843
|
-
type: "
|
|
5844
|
+
type: "success" | "error" | "info" | "warning";
|
|
5844
5845
|
id?: number | undefined;
|
|
5845
5846
|
}[] | undefined;
|
|
5846
5847
|
required?: boolean | undefined;
|
|
@@ -5859,7 +5860,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5859
5860
|
hint?: string | undefined;
|
|
5860
5861
|
messages?: {
|
|
5861
5862
|
text: string;
|
|
5862
|
-
type: "
|
|
5863
|
+
type: "success" | "error" | "info" | "warning";
|
|
5863
5864
|
id?: number | undefined;
|
|
5864
5865
|
}[] | undefined;
|
|
5865
5866
|
required?: boolean | undefined;
|
|
@@ -5881,7 +5882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5881
5882
|
hint?: string | undefined;
|
|
5882
5883
|
messages?: {
|
|
5883
5884
|
text: string;
|
|
5884
|
-
type: "
|
|
5885
|
+
type: "success" | "error" | "info" | "warning";
|
|
5885
5886
|
id?: number | undefined;
|
|
5886
5887
|
}[] | undefined;
|
|
5887
5888
|
required?: boolean | undefined;
|
|
@@ -5903,7 +5904,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5903
5904
|
hint?: string | undefined;
|
|
5904
5905
|
messages?: {
|
|
5905
5906
|
text: string;
|
|
5906
|
-
type: "
|
|
5907
|
+
type: "success" | "error" | "info" | "warning";
|
|
5907
5908
|
id?: number | undefined;
|
|
5908
5909
|
}[] | undefined;
|
|
5909
5910
|
required?: boolean | undefined;
|
|
@@ -5922,7 +5923,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5922
5923
|
hint?: string | undefined;
|
|
5923
5924
|
messages?: {
|
|
5924
5925
|
text: string;
|
|
5925
|
-
type: "
|
|
5926
|
+
type: "success" | "error" | "info" | "warning";
|
|
5926
5927
|
id?: number | undefined;
|
|
5927
5928
|
}[] | undefined;
|
|
5928
5929
|
required?: boolean | undefined;
|
|
@@ -5947,7 +5948,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5947
5948
|
hint?: string | undefined;
|
|
5948
5949
|
messages?: {
|
|
5949
5950
|
text: string;
|
|
5950
|
-
type: "
|
|
5951
|
+
type: "success" | "error" | "info" | "warning";
|
|
5951
5952
|
id?: number | undefined;
|
|
5952
5953
|
}[] | undefined;
|
|
5953
5954
|
required?: boolean | undefined;
|
|
@@ -5968,7 +5969,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5968
5969
|
hint?: string | undefined;
|
|
5969
5970
|
messages?: {
|
|
5970
5971
|
text: string;
|
|
5971
|
-
type: "
|
|
5972
|
+
type: "success" | "error" | "info" | "warning";
|
|
5972
5973
|
id?: number | undefined;
|
|
5973
5974
|
}[] | undefined;
|
|
5974
5975
|
required?: boolean | undefined;
|
|
@@ -5989,7 +5990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5989
5990
|
hint?: string | undefined;
|
|
5990
5991
|
messages?: {
|
|
5991
5992
|
text: string;
|
|
5992
|
-
type: "
|
|
5993
|
+
type: "success" | "error" | "info" | "warning";
|
|
5993
5994
|
id?: number | undefined;
|
|
5994
5995
|
}[] | undefined;
|
|
5995
5996
|
required?: boolean | undefined;
|
|
@@ -6220,7 +6221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6220
6221
|
hint?: string | undefined;
|
|
6221
6222
|
messages?: {
|
|
6222
6223
|
text: string;
|
|
6223
|
-
type: "
|
|
6224
|
+
type: "success" | "error" | "info" | "warning";
|
|
6224
6225
|
id?: number | undefined;
|
|
6225
6226
|
}[] | undefined;
|
|
6226
6227
|
required?: boolean | undefined;
|
|
@@ -6238,7 +6239,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6238
6239
|
hint?: string | undefined;
|
|
6239
6240
|
messages?: {
|
|
6240
6241
|
text: string;
|
|
6241
|
-
type: "
|
|
6242
|
+
type: "success" | "error" | "info" | "warning";
|
|
6242
6243
|
id?: number | undefined;
|
|
6243
6244
|
}[] | undefined;
|
|
6244
6245
|
required?: boolean | undefined;
|
|
@@ -6262,7 +6263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6262
6263
|
hint?: string | undefined;
|
|
6263
6264
|
messages?: {
|
|
6264
6265
|
text: string;
|
|
6265
|
-
type: "
|
|
6266
|
+
type: "success" | "error" | "info" | "warning";
|
|
6266
6267
|
id?: number | undefined;
|
|
6267
6268
|
}[] | undefined;
|
|
6268
6269
|
required?: boolean | undefined;
|
|
@@ -6286,7 +6287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6286
6287
|
hint?: string | undefined;
|
|
6287
6288
|
messages?: {
|
|
6288
6289
|
text: string;
|
|
6289
|
-
type: "
|
|
6290
|
+
type: "success" | "error" | "info" | "warning";
|
|
6290
6291
|
id?: number | undefined;
|
|
6291
6292
|
}[] | undefined;
|
|
6292
6293
|
required?: boolean | undefined;
|
|
@@ -6310,7 +6311,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6310
6311
|
hint?: string | undefined;
|
|
6311
6312
|
messages?: {
|
|
6312
6313
|
text: string;
|
|
6313
|
-
type: "
|
|
6314
|
+
type: "success" | "error" | "info" | "warning";
|
|
6314
6315
|
id?: number | undefined;
|
|
6315
6316
|
}[] | undefined;
|
|
6316
6317
|
required?: boolean | undefined;
|
|
@@ -6339,7 +6340,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6339
6340
|
hint?: string | undefined;
|
|
6340
6341
|
messages?: {
|
|
6341
6342
|
text: string;
|
|
6342
|
-
type: "
|
|
6343
|
+
type: "success" | "error" | "info" | "warning";
|
|
6343
6344
|
id?: number | undefined;
|
|
6344
6345
|
}[] | undefined;
|
|
6345
6346
|
required?: boolean | undefined;
|
|
@@ -6354,7 +6355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6354
6355
|
hint?: string | undefined;
|
|
6355
6356
|
messages?: {
|
|
6356
6357
|
text: string;
|
|
6357
|
-
type: "
|
|
6358
|
+
type: "success" | "error" | "info" | "warning";
|
|
6358
6359
|
id?: number | undefined;
|
|
6359
6360
|
}[] | undefined;
|
|
6360
6361
|
required?: boolean | undefined;
|
|
@@ -6375,7 +6376,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6375
6376
|
hint?: string | undefined;
|
|
6376
6377
|
messages?: {
|
|
6377
6378
|
text: string;
|
|
6378
|
-
type: "
|
|
6379
|
+
type: "success" | "error" | "info" | "warning";
|
|
6379
6380
|
id?: number | undefined;
|
|
6380
6381
|
}[] | undefined;
|
|
6381
6382
|
required?: boolean | undefined;
|
|
@@ -6400,7 +6401,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6400
6401
|
hint?: string | undefined;
|
|
6401
6402
|
messages?: {
|
|
6402
6403
|
text: string;
|
|
6403
|
-
type: "
|
|
6404
|
+
type: "success" | "error" | "info" | "warning";
|
|
6404
6405
|
id?: number | undefined;
|
|
6405
6406
|
}[] | undefined;
|
|
6406
6407
|
required?: boolean | undefined;
|
|
@@ -6419,7 +6420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6419
6420
|
hint?: string | undefined;
|
|
6420
6421
|
messages?: {
|
|
6421
6422
|
text: string;
|
|
6422
|
-
type: "
|
|
6423
|
+
type: "success" | "error" | "info" | "warning";
|
|
6423
6424
|
id?: number | undefined;
|
|
6424
6425
|
}[] | undefined;
|
|
6425
6426
|
required?: boolean | undefined;
|
|
@@ -6439,7 +6440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6439
6440
|
hint?: string | undefined;
|
|
6440
6441
|
messages?: {
|
|
6441
6442
|
text: string;
|
|
6442
|
-
type: "
|
|
6443
|
+
type: "success" | "error" | "info" | "warning";
|
|
6443
6444
|
id?: number | undefined;
|
|
6444
6445
|
}[] | undefined;
|
|
6445
6446
|
required?: boolean | undefined;
|
|
@@ -6458,7 +6459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6458
6459
|
hint?: string | undefined;
|
|
6459
6460
|
messages?: {
|
|
6460
6461
|
text: string;
|
|
6461
|
-
type: "
|
|
6462
|
+
type: "success" | "error" | "info" | "warning";
|
|
6462
6463
|
id?: number | undefined;
|
|
6463
6464
|
}[] | undefined;
|
|
6464
6465
|
required?: boolean | undefined;
|
|
@@ -6480,7 +6481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6480
6481
|
hint?: string | undefined;
|
|
6481
6482
|
messages?: {
|
|
6482
6483
|
text: string;
|
|
6483
|
-
type: "
|
|
6484
|
+
type: "success" | "error" | "info" | "warning";
|
|
6484
6485
|
id?: number | undefined;
|
|
6485
6486
|
}[] | undefined;
|
|
6486
6487
|
required?: boolean | undefined;
|
|
@@ -6502,7 +6503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6502
6503
|
hint?: string | undefined;
|
|
6503
6504
|
messages?: {
|
|
6504
6505
|
text: string;
|
|
6505
|
-
type: "
|
|
6506
|
+
type: "success" | "error" | "info" | "warning";
|
|
6506
6507
|
id?: number | undefined;
|
|
6507
6508
|
}[] | undefined;
|
|
6508
6509
|
required?: boolean | undefined;
|
|
@@ -6521,7 +6522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6521
6522
|
hint?: string | undefined;
|
|
6522
6523
|
messages?: {
|
|
6523
6524
|
text: string;
|
|
6524
|
-
type: "
|
|
6525
|
+
type: "success" | "error" | "info" | "warning";
|
|
6525
6526
|
id?: number | undefined;
|
|
6526
6527
|
}[] | undefined;
|
|
6527
6528
|
required?: boolean | undefined;
|
|
@@ -6546,7 +6547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6546
6547
|
hint?: string | undefined;
|
|
6547
6548
|
messages?: {
|
|
6548
6549
|
text: string;
|
|
6549
|
-
type: "
|
|
6550
|
+
type: "success" | "error" | "info" | "warning";
|
|
6550
6551
|
id?: number | undefined;
|
|
6551
6552
|
}[] | undefined;
|
|
6552
6553
|
required?: boolean | undefined;
|
|
@@ -6567,7 +6568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6567
6568
|
hint?: string | undefined;
|
|
6568
6569
|
messages?: {
|
|
6569
6570
|
text: string;
|
|
6570
|
-
type: "
|
|
6571
|
+
type: "success" | "error" | "info" | "warning";
|
|
6571
6572
|
id?: number | undefined;
|
|
6572
6573
|
}[] | undefined;
|
|
6573
6574
|
required?: boolean | undefined;
|
|
@@ -6588,7 +6589,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6588
6589
|
hint?: string | undefined;
|
|
6589
6590
|
messages?: {
|
|
6590
6591
|
text: string;
|
|
6591
|
-
type: "
|
|
6592
|
+
type: "success" | "error" | "info" | "warning";
|
|
6592
6593
|
id?: number | undefined;
|
|
6593
6594
|
}[] | undefined;
|
|
6594
6595
|
required?: boolean | undefined;
|
|
@@ -6818,7 +6819,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6818
6819
|
};
|
|
6819
6820
|
};
|
|
6820
6821
|
output: {
|
|
6821
|
-
prompt: "
|
|
6822
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6822
6823
|
language: string;
|
|
6823
6824
|
}[];
|
|
6824
6825
|
outputFormat: "json";
|
|
@@ -6856,7 +6857,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6856
6857
|
$get: {
|
|
6857
6858
|
input: {
|
|
6858
6859
|
param: {
|
|
6859
|
-
prompt: "
|
|
6860
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6860
6861
|
language: string;
|
|
6861
6862
|
};
|
|
6862
6863
|
} & {
|
|
@@ -6878,7 +6879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6878
6879
|
$put: {
|
|
6879
6880
|
input: {
|
|
6880
6881
|
param: {
|
|
6881
|
-
prompt: "
|
|
6882
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6882
6883
|
language: string;
|
|
6883
6884
|
};
|
|
6884
6885
|
} & {
|
|
@@ -6902,7 +6903,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6902
6903
|
$delete: {
|
|
6903
6904
|
input: {
|
|
6904
6905
|
param: {
|
|
6905
|
-
prompt: "
|
|
6906
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "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";
|
|
6906
6907
|
language: string;
|
|
6907
6908
|
};
|
|
6908
6909
|
} & {
|
|
@@ -7764,7 +7765,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7764
7765
|
};
|
|
7765
7766
|
} | {
|
|
7766
7767
|
mode: "inline";
|
|
7767
|
-
status: "
|
|
7768
|
+
status: "success" | "error";
|
|
7768
7769
|
connection_id: string;
|
|
7769
7770
|
connection_name: string;
|
|
7770
7771
|
strategy: string;
|
|
@@ -8711,7 +8712,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8711
8712
|
created_at: string;
|
|
8712
8713
|
updated_at: string;
|
|
8713
8714
|
name: string;
|
|
8714
|
-
provider: "auth0" | "
|
|
8715
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8715
8716
|
connection: string;
|
|
8716
8717
|
enabled: boolean;
|
|
8717
8718
|
credentials: {
|
|
@@ -8743,7 +8744,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8743
8744
|
created_at: string;
|
|
8744
8745
|
updated_at: string;
|
|
8745
8746
|
name: string;
|
|
8746
|
-
provider: "auth0" | "
|
|
8747
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8747
8748
|
connection: string;
|
|
8748
8749
|
enabled: boolean;
|
|
8749
8750
|
credentials: {
|
|
@@ -8769,7 +8770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8769
8770
|
} & {
|
|
8770
8771
|
json: {
|
|
8771
8772
|
name: string;
|
|
8772
|
-
provider: "auth0" | "
|
|
8773
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8773
8774
|
connection: string;
|
|
8774
8775
|
credentials: {
|
|
8775
8776
|
domain: string;
|
|
@@ -8786,7 +8787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8786
8787
|
created_at: string;
|
|
8787
8788
|
updated_at: string;
|
|
8788
8789
|
name: string;
|
|
8789
|
-
provider: "auth0" | "
|
|
8790
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8790
8791
|
connection: string;
|
|
8791
8792
|
enabled: boolean;
|
|
8792
8793
|
credentials: {
|
|
@@ -8817,7 +8818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8817
8818
|
json: {
|
|
8818
8819
|
id?: string | undefined;
|
|
8819
8820
|
name?: string | undefined;
|
|
8820
|
-
provider?: "auth0" | "
|
|
8821
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8821
8822
|
connection?: string | undefined;
|
|
8822
8823
|
enabled?: boolean | undefined;
|
|
8823
8824
|
credentials?: {
|
|
@@ -8833,7 +8834,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8833
8834
|
created_at: string;
|
|
8834
8835
|
updated_at: string;
|
|
8835
8836
|
name: string;
|
|
8836
|
-
provider: "auth0" | "
|
|
8837
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8837
8838
|
connection: string;
|
|
8838
8839
|
enabled: boolean;
|
|
8839
8840
|
credentials: {
|
|
@@ -9051,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9051
9052
|
};
|
|
9052
9053
|
};
|
|
9053
9054
|
output: {
|
|
9054
|
-
type: "
|
|
9055
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9055
9056
|
date: string;
|
|
9056
9057
|
isMobile: boolean;
|
|
9057
9058
|
log_id: string;
|
|
@@ -9090,7 +9091,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9090
9091
|
limit: number;
|
|
9091
9092
|
length: number;
|
|
9092
9093
|
logs: {
|
|
9093
|
-
type: "
|
|
9094
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9094
9095
|
date: string;
|
|
9095
9096
|
isMobile: boolean;
|
|
9096
9097
|
log_id: string;
|
|
@@ -9144,7 +9145,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9144
9145
|
};
|
|
9145
9146
|
};
|
|
9146
9147
|
output: {
|
|
9147
|
-
type: "
|
|
9148
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9148
9149
|
date: string;
|
|
9149
9150
|
isMobile: boolean;
|
|
9150
9151
|
log_id: string;
|
|
@@ -9532,7 +9533,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9532
9533
|
addons?: {
|
|
9533
9534
|
[x: string]: any;
|
|
9534
9535
|
} | undefined;
|
|
9535
|
-
token_endpoint_auth_method?: "
|
|
9536
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9536
9537
|
client_metadata?: {
|
|
9537
9538
|
[x: string]: string;
|
|
9538
9539
|
} | undefined;
|
|
@@ -9628,7 +9629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9628
9629
|
addons?: {
|
|
9629
9630
|
[x: string]: any;
|
|
9630
9631
|
} | undefined;
|
|
9631
|
-
token_endpoint_auth_method?: "
|
|
9632
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9632
9633
|
client_metadata?: {
|
|
9633
9634
|
[x: string]: string;
|
|
9634
9635
|
} | undefined;
|
|
@@ -9739,7 +9740,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9739
9740
|
addons?: {
|
|
9740
9741
|
[x: string]: any;
|
|
9741
9742
|
} | undefined;
|
|
9742
|
-
token_endpoint_auth_method?: "
|
|
9743
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9743
9744
|
client_metadata?: {
|
|
9744
9745
|
[x: string]: string;
|
|
9745
9746
|
} | undefined;
|
|
@@ -9849,7 +9850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9849
9850
|
custom_login_page_preview?: string | undefined;
|
|
9850
9851
|
form_template?: string | undefined;
|
|
9851
9852
|
addons?: Record<string, any> | undefined;
|
|
9852
|
-
token_endpoint_auth_method?: "
|
|
9853
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9853
9854
|
client_metadata?: Record<string, string> | undefined;
|
|
9854
9855
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9855
9856
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9929,7 +9930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9929
9930
|
addons?: {
|
|
9930
9931
|
[x: string]: any;
|
|
9931
9932
|
} | undefined;
|
|
9932
|
-
token_endpoint_auth_method?: "
|
|
9933
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9933
9934
|
client_metadata?: {
|
|
9934
9935
|
[x: string]: string;
|
|
9935
9936
|
} | undefined;
|
|
@@ -10018,7 +10019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10018
10019
|
custom_login_page_preview?: string | undefined;
|
|
10019
10020
|
form_template?: string | undefined;
|
|
10020
10021
|
addons?: Record<string, any> | undefined;
|
|
10021
|
-
token_endpoint_auth_method?: "
|
|
10022
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10022
10023
|
client_metadata?: Record<string, string> | undefined;
|
|
10023
10024
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10024
10025
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10098,7 +10099,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10098
10099
|
addons?: {
|
|
10099
10100
|
[x: string]: any;
|
|
10100
10101
|
} | undefined;
|
|
10101
|
-
token_endpoint_auth_method?: "
|
|
10102
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10102
10103
|
client_metadata?: {
|
|
10103
10104
|
[x: string]: string;
|
|
10104
10105
|
} | undefined;
|
|
@@ -11362,7 +11363,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11362
11363
|
};
|
|
11363
11364
|
};
|
|
11364
11365
|
output: {
|
|
11365
|
-
type: "
|
|
11366
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11366
11367
|
date: string;
|
|
11367
11368
|
isMobile: boolean;
|
|
11368
11369
|
log_id: string;
|
|
@@ -11401,7 +11402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11401
11402
|
limit: number;
|
|
11402
11403
|
length: number;
|
|
11403
11404
|
logs: {
|
|
11404
|
-
type: "
|
|
11405
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11405
11406
|
date: string;
|
|
11406
11407
|
isMobile: boolean;
|
|
11407
11408
|
log_id: string;
|
|
@@ -12241,7 +12242,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12241
12242
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12242
12243
|
custom_domain_id: string;
|
|
12243
12244
|
primary: boolean;
|
|
12244
|
-
status: "
|
|
12245
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12245
12246
|
verification_method?: "txt" | undefined;
|
|
12246
12247
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12247
12248
|
domain_metadata?: {
|
|
@@ -12282,7 +12283,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12282
12283
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12283
12284
|
custom_domain_id: string;
|
|
12284
12285
|
primary: boolean;
|
|
12285
|
-
status: "
|
|
12286
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12286
12287
|
verification_method?: "txt" | undefined;
|
|
12287
12288
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12288
12289
|
domain_metadata?: {
|
|
@@ -12346,7 +12347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12346
12347
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12347
12348
|
custom_domain_id: string;
|
|
12348
12349
|
primary: boolean;
|
|
12349
|
-
status: "
|
|
12350
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12350
12351
|
verification_method?: "txt" | undefined;
|
|
12351
12352
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12352
12353
|
domain_metadata?: {
|
|
@@ -12393,7 +12394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12393
12394
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12394
12395
|
custom_domain_id: string;
|
|
12395
12396
|
primary: boolean;
|
|
12396
|
-
status: "
|
|
12397
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12397
12398
|
verification_method?: "txt" | undefined;
|
|
12398
12399
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12399
12400
|
domain_metadata?: {
|
|
@@ -12439,7 +12440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12439
12440
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12440
12441
|
custom_domain_id: string;
|
|
12441
12442
|
primary: boolean;
|
|
12442
|
-
status: "
|
|
12443
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12443
12444
|
verification_method?: "txt" | undefined;
|
|
12444
12445
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12445
12446
|
domain_metadata?: {
|
|
@@ -12480,7 +12481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12480
12481
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12481
12482
|
custom_domain_id: string;
|
|
12482
12483
|
primary: boolean;
|
|
12483
|
-
status: "
|
|
12484
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12484
12485
|
verification_method?: "txt" | undefined;
|
|
12485
12486
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12486
12487
|
domain_metadata?: {
|
|
@@ -14166,7 +14167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14166
14167
|
scope?: string | undefined;
|
|
14167
14168
|
grant_types?: string[] | undefined;
|
|
14168
14169
|
response_types?: string[] | undefined;
|
|
14169
|
-
token_endpoint_auth_method?: "
|
|
14170
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14170
14171
|
jwks_uri?: string | undefined;
|
|
14171
14172
|
jwks?: Record<string, unknown> | undefined;
|
|
14172
14173
|
software_id?: string | undefined;
|
|
@@ -14255,7 +14256,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14255
14256
|
scope?: string | undefined;
|
|
14256
14257
|
grant_types?: string[] | undefined;
|
|
14257
14258
|
response_types?: string[] | undefined;
|
|
14258
|
-
token_endpoint_auth_method?: "
|
|
14259
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14259
14260
|
jwks_uri?: string | undefined;
|
|
14260
14261
|
jwks?: Record<string, unknown> | undefined;
|
|
14261
14262
|
software_id?: string | undefined;
|
|
@@ -14603,18 +14604,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14603
14604
|
authParams: {
|
|
14604
14605
|
username?: string | undefined;
|
|
14605
14606
|
state?: string | undefined;
|
|
14606
|
-
audience?: string | undefined;
|
|
14607
14607
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14608
14608
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14609
14609
|
scope?: string | undefined;
|
|
14610
|
+
audience?: string | undefined;
|
|
14611
|
+
prompt?: string | undefined;
|
|
14612
|
+
ui_locales?: string | undefined;
|
|
14610
14613
|
organization?: string | undefined;
|
|
14611
|
-
nonce?: string | undefined;
|
|
14612
14614
|
redirect_uri?: string | undefined;
|
|
14613
14615
|
act_as?: string | undefined;
|
|
14614
|
-
|
|
14616
|
+
nonce?: string | undefined;
|
|
14615
14617
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14616
14618
|
code_challenge?: string | undefined;
|
|
14617
|
-
ui_locales?: string | undefined;
|
|
14618
14619
|
max_age?: number | undefined;
|
|
14619
14620
|
acr_values?: string | undefined;
|
|
14620
14621
|
claims?: {
|
|
@@ -14639,18 +14640,18 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14639
14640
|
authParams: {
|
|
14640
14641
|
username?: string | undefined;
|
|
14641
14642
|
state?: string | undefined;
|
|
14642
|
-
audience?: string | undefined;
|
|
14643
14643
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14644
14644
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14645
14645
|
scope?: string | undefined;
|
|
14646
|
+
audience?: string | undefined;
|
|
14647
|
+
prompt?: string | undefined;
|
|
14648
|
+
ui_locales?: string | undefined;
|
|
14646
14649
|
organization?: string | undefined;
|
|
14647
|
-
nonce?: string | undefined;
|
|
14648
14650
|
redirect_uri?: string | undefined;
|
|
14649
14651
|
act_as?: string | undefined;
|
|
14650
|
-
|
|
14652
|
+
nonce?: string | undefined;
|
|
14651
14653
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14652
14654
|
code_challenge?: string | undefined;
|
|
14653
|
-
ui_locales?: string | undefined;
|
|
14654
14655
|
max_age?: number | undefined;
|
|
14655
14656
|
acr_values?: string | undefined;
|
|
14656
14657
|
claims?: {
|
|
@@ -14781,14 +14782,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14781
14782
|
input: {
|
|
14782
14783
|
form: {
|
|
14783
14784
|
token: string;
|
|
14784
|
-
token_type_hint?: "
|
|
14785
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14785
14786
|
client_id?: string | undefined;
|
|
14786
14787
|
client_secret?: string | undefined;
|
|
14787
14788
|
};
|
|
14788
14789
|
} & {
|
|
14789
14790
|
json: {
|
|
14790
14791
|
token: string;
|
|
14791
|
-
token_type_hint?: "
|
|
14792
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14792
14793
|
client_id?: string | undefined;
|
|
14793
14794
|
client_secret?: string | undefined;
|
|
14794
14795
|
};
|
|
@@ -14800,14 +14801,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14800
14801
|
input: {
|
|
14801
14802
|
form: {
|
|
14802
14803
|
token: string;
|
|
14803
|
-
token_type_hint?: "
|
|
14804
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14804
14805
|
client_id?: string | undefined;
|
|
14805
14806
|
client_secret?: string | undefined;
|
|
14806
14807
|
};
|
|
14807
14808
|
} & {
|
|
14808
14809
|
json: {
|
|
14809
14810
|
token: string;
|
|
14810
|
-
token_type_hint?: "
|
|
14811
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14811
14812
|
client_id?: string | undefined;
|
|
14812
14813
|
client_secret?: string | undefined;
|
|
14813
14814
|
};
|
|
@@ -14822,14 +14823,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14822
14823
|
input: {
|
|
14823
14824
|
form: {
|
|
14824
14825
|
token: string;
|
|
14825
|
-
token_type_hint?: "
|
|
14826
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14826
14827
|
client_id?: string | undefined;
|
|
14827
14828
|
client_secret?: string | undefined;
|
|
14828
14829
|
};
|
|
14829
14830
|
} & {
|
|
14830
14831
|
json: {
|
|
14831
14832
|
token: string;
|
|
14832
|
-
token_type_hint?: "
|
|
14833
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
14833
14834
|
client_id?: string | undefined;
|
|
14834
14835
|
client_secret?: string | undefined;
|
|
14835
14836
|
};
|
|
@@ -14879,7 +14880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14879
14880
|
client_id: string;
|
|
14880
14881
|
username: string;
|
|
14881
14882
|
otp: string;
|
|
14882
|
-
realm: "
|
|
14883
|
+
realm: "email" | "sms";
|
|
14883
14884
|
} | {
|
|
14884
14885
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14885
14886
|
subject_token: string;
|
|
@@ -14926,7 +14927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14926
14927
|
client_id: string;
|
|
14927
14928
|
username: string;
|
|
14928
14929
|
otp: string;
|
|
14929
|
-
realm: "
|
|
14930
|
+
realm: "email" | "sms";
|
|
14930
14931
|
} | {
|
|
14931
14932
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14932
14933
|
subject_token: string;
|
|
@@ -14978,7 +14979,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14978
14979
|
client_id: string;
|
|
14979
14980
|
username: string;
|
|
14980
14981
|
otp: string;
|
|
14981
|
-
realm: "
|
|
14982
|
+
realm: "email" | "sms";
|
|
14982
14983
|
} | {
|
|
14983
14984
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14984
14985
|
subject_token: string;
|
|
@@ -15025,7 +15026,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15025
15026
|
client_id: string;
|
|
15026
15027
|
username: string;
|
|
15027
15028
|
otp: string;
|
|
15028
|
-
realm: "
|
|
15029
|
+
realm: "email" | "sms";
|
|
15029
15030
|
} | {
|
|
15030
15031
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15031
15032
|
subject_token: string;
|
|
@@ -15085,7 +15086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15085
15086
|
client_id: string;
|
|
15086
15087
|
username: string;
|
|
15087
15088
|
otp: string;
|
|
15088
|
-
realm: "
|
|
15089
|
+
realm: "email" | "sms";
|
|
15089
15090
|
} | {
|
|
15090
15091
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15091
15092
|
subject_token: string;
|
|
@@ -15132,7 +15133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15132
15133
|
client_id: string;
|
|
15133
15134
|
username: string;
|
|
15134
15135
|
otp: string;
|
|
15135
|
-
realm: "
|
|
15136
|
+
realm: "email" | "sms";
|
|
15136
15137
|
} | {
|
|
15137
15138
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15138
15139
|
subject_token: string;
|
|
@@ -15187,7 +15188,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15187
15188
|
client_id: string;
|
|
15188
15189
|
username: string;
|
|
15189
15190
|
otp: string;
|
|
15190
|
-
realm: "
|
|
15191
|
+
realm: "email" | "sms";
|
|
15191
15192
|
} | {
|
|
15192
15193
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15193
15194
|
subject_token: string;
|
|
@@ -15234,7 +15235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15234
15235
|
client_id: string;
|
|
15235
15236
|
username: string;
|
|
15236
15237
|
otp: string;
|
|
15237
|
-
realm: "
|
|
15238
|
+
realm: "email" | "sms";
|
|
15238
15239
|
} | {
|
|
15239
15240
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15240
15241
|
subject_token: string;
|
|
@@ -15289,7 +15290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15289
15290
|
client_id: string;
|
|
15290
15291
|
username: string;
|
|
15291
15292
|
otp: string;
|
|
15292
|
-
realm: "
|
|
15293
|
+
realm: "email" | "sms";
|
|
15293
15294
|
} | {
|
|
15294
15295
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15295
15296
|
subject_token: string;
|
|
@@ -15336,7 +15337,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15336
15337
|
client_id: string;
|
|
15337
15338
|
username: string;
|
|
15338
15339
|
otp: string;
|
|
15339
|
-
realm: "
|
|
15340
|
+
realm: "email" | "sms";
|
|
15340
15341
|
} | {
|
|
15341
15342
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15342
15343
|
subject_token: string;
|
|
@@ -16556,7 +16557,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16556
16557
|
$get: {
|
|
16557
16558
|
input: {
|
|
16558
16559
|
param: {
|
|
16559
|
-
screen: "signup" | "
|
|
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" | "reset-password/code" | "reset-password/request" | "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";
|
|
16560
16561
|
};
|
|
16561
16562
|
} & {
|
|
16562
16563
|
query: {
|
|
@@ -16572,7 +16573,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16572
16573
|
} | {
|
|
16573
16574
|
input: {
|
|
16574
16575
|
param: {
|
|
16575
|
-
screen: "signup" | "
|
|
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" | "reset-password/code" | "reset-password/request" | "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";
|
|
16576
16577
|
};
|
|
16577
16578
|
} & {
|
|
16578
16579
|
query: {
|
|
@@ -16588,7 +16589,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16588
16589
|
} | {
|
|
16589
16590
|
input: {
|
|
16590
16591
|
param: {
|
|
16591
|
-
screen: "signup" | "
|
|
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" | "reset-password/code" | "reset-password/request" | "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";
|
|
16592
16593
|
};
|
|
16593
16594
|
} & {
|
|
16594
16595
|
query: {
|
|
@@ -16608,7 +16609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16608
16609
|
$post: {
|
|
16609
16610
|
input: {
|
|
16610
16611
|
param: {
|
|
16611
|
-
screen: "signup" | "
|
|
16612
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16612
16613
|
};
|
|
16613
16614
|
} & {
|
|
16614
16615
|
query: {
|
|
@@ -16626,7 +16627,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16626
16627
|
} | {
|
|
16627
16628
|
input: {
|
|
16628
16629
|
param: {
|
|
16629
|
-
screen: "signup" | "
|
|
16630
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
16630
16631
|
};
|
|
16631
16632
|
} & {
|
|
16632
16633
|
query: {
|
|
@@ -16641,24 +16642,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16641
16642
|
output: {};
|
|
16642
16643
|
outputFormat: string;
|
|
16643
16644
|
status: 302;
|
|
16644
|
-
} | {
|
|
16645
|
-
input: {
|
|
16646
|
-
param: {
|
|
16647
|
-
screen: "signup" | "consent" | "login" | "reset-password" | "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";
|
|
16648
|
-
};
|
|
16649
|
-
} & {
|
|
16650
|
-
query: {
|
|
16651
|
-
state: string;
|
|
16652
|
-
error?: string | undefined;
|
|
16653
|
-
error_description?: string | undefined;
|
|
16654
|
-
ui_locales?: string | undefined;
|
|
16655
|
-
};
|
|
16656
|
-
} & {
|
|
16657
|
-
form: Record<string, string>;
|
|
16658
|
-
};
|
|
16659
|
-
output: {};
|
|
16660
|
-
outputFormat: string;
|
|
16661
|
-
status: 400;
|
|
16662
16645
|
};
|
|
16663
16646
|
};
|
|
16664
16647
|
}, "/"> & import("hono/types").MergeSchemaPath<{
|