authhero 7.1.0 → 7.2.1
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/authhero.cjs +102 -102
- package/dist/authhero.d.ts +178 -183
- package/dist/authhero.mjs +5045 -5038
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/signing-keys.d.ts +1 -0
- package/dist/types/index.d.ts +178 -178
- package/dist/types/routes/auth-api/index.d.ts +22 -22
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/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 +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +150 -150
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/Bindings.d.ts +0 -6
- package/dist/types/utils/jwks.d.ts +10 -11
- package/dist/types/utils/jwt.d.ts +21 -1
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
86
86
|
};
|
|
87
87
|
} & {
|
|
88
88
|
json: {
|
|
89
|
-
type: "
|
|
89
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
90
90
|
phone_number?: string | undefined;
|
|
91
91
|
totp_secret?: string | undefined;
|
|
92
92
|
credential_id?: string | undefined;
|
|
@@ -226,7 +226,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
226
226
|
};
|
|
227
227
|
};
|
|
228
228
|
output: {
|
|
229
|
-
name: "
|
|
229
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
230
230
|
enabled: boolean;
|
|
231
231
|
trial_expired?: boolean | undefined;
|
|
232
232
|
}[];
|
|
@@ -381,7 +381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
381
381
|
$get: {
|
|
382
382
|
input: {
|
|
383
383
|
param: {
|
|
384
|
-
factor_name: "
|
|
384
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
385
385
|
};
|
|
386
386
|
} & {
|
|
387
387
|
header: {
|
|
@@ -389,7 +389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
389
389
|
};
|
|
390
390
|
};
|
|
391
391
|
output: {
|
|
392
|
-
name: "
|
|
392
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
393
393
|
enabled: boolean;
|
|
394
394
|
trial_expired?: boolean | undefined;
|
|
395
395
|
};
|
|
@@ -402,7 +402,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
402
402
|
$put: {
|
|
403
403
|
input: {
|
|
404
404
|
param: {
|
|
405
|
-
factor_name: "
|
|
405
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
406
406
|
};
|
|
407
407
|
} & {
|
|
408
408
|
header: {
|
|
@@ -414,7 +414,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
414
414
|
};
|
|
415
415
|
};
|
|
416
416
|
output: {
|
|
417
|
-
name: "
|
|
417
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
418
418
|
enabled: boolean;
|
|
419
419
|
trial_expired?: boolean | undefined;
|
|
420
420
|
};
|
|
@@ -2590,7 +2590,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2590
2590
|
hint?: string | undefined;
|
|
2591
2591
|
messages?: {
|
|
2592
2592
|
text: string;
|
|
2593
|
-
type: "
|
|
2593
|
+
type: "success" | "error" | "info" | "warning";
|
|
2594
2594
|
id?: number | undefined;
|
|
2595
2595
|
}[] | undefined;
|
|
2596
2596
|
required?: boolean | undefined;
|
|
@@ -2608,7 +2608,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2608
2608
|
hint?: string | undefined;
|
|
2609
2609
|
messages?: {
|
|
2610
2610
|
text: string;
|
|
2611
|
-
type: "
|
|
2611
|
+
type: "success" | "error" | "info" | "warning";
|
|
2612
2612
|
id?: number | undefined;
|
|
2613
2613
|
}[] | undefined;
|
|
2614
2614
|
required?: boolean | undefined;
|
|
@@ -2632,7 +2632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2632
2632
|
hint?: string | undefined;
|
|
2633
2633
|
messages?: {
|
|
2634
2634
|
text: string;
|
|
2635
|
-
type: "
|
|
2635
|
+
type: "success" | "error" | "info" | "warning";
|
|
2636
2636
|
id?: number | undefined;
|
|
2637
2637
|
}[] | undefined;
|
|
2638
2638
|
required?: boolean | undefined;
|
|
@@ -2656,7 +2656,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2656
2656
|
hint?: string | undefined;
|
|
2657
2657
|
messages?: {
|
|
2658
2658
|
text: string;
|
|
2659
|
-
type: "
|
|
2659
|
+
type: "success" | "error" | "info" | "warning";
|
|
2660
2660
|
id?: number | undefined;
|
|
2661
2661
|
}[] | undefined;
|
|
2662
2662
|
required?: boolean | undefined;
|
|
@@ -2685,7 +2685,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2685
2685
|
hint?: string | undefined;
|
|
2686
2686
|
messages?: {
|
|
2687
2687
|
text: string;
|
|
2688
|
-
type: "
|
|
2688
|
+
type: "success" | "error" | "info" | "warning";
|
|
2689
2689
|
id?: number | undefined;
|
|
2690
2690
|
}[] | undefined;
|
|
2691
2691
|
required?: boolean | undefined;
|
|
@@ -2700,7 +2700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2700
2700
|
hint?: string | undefined;
|
|
2701
2701
|
messages?: {
|
|
2702
2702
|
text: string;
|
|
2703
|
-
type: "
|
|
2703
|
+
type: "success" | "error" | "info" | "warning";
|
|
2704
2704
|
id?: number | undefined;
|
|
2705
2705
|
}[] | undefined;
|
|
2706
2706
|
required?: boolean | undefined;
|
|
@@ -2721,7 +2721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2721
2721
|
hint?: string | undefined;
|
|
2722
2722
|
messages?: {
|
|
2723
2723
|
text: string;
|
|
2724
|
-
type: "
|
|
2724
|
+
type: "success" | "error" | "info" | "warning";
|
|
2725
2725
|
id?: number | undefined;
|
|
2726
2726
|
}[] | undefined;
|
|
2727
2727
|
required?: boolean | undefined;
|
|
@@ -2746,7 +2746,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2746
2746
|
hint?: string | undefined;
|
|
2747
2747
|
messages?: {
|
|
2748
2748
|
text: string;
|
|
2749
|
-
type: "
|
|
2749
|
+
type: "success" | "error" | "info" | "warning";
|
|
2750
2750
|
id?: number | undefined;
|
|
2751
2751
|
}[] | undefined;
|
|
2752
2752
|
required?: boolean | undefined;
|
|
@@ -2765,7 +2765,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2765
2765
|
hint?: string | undefined;
|
|
2766
2766
|
messages?: {
|
|
2767
2767
|
text: string;
|
|
2768
|
-
type: "
|
|
2768
|
+
type: "success" | "error" | "info" | "warning";
|
|
2769
2769
|
id?: number | undefined;
|
|
2770
2770
|
}[] | undefined;
|
|
2771
2771
|
required?: boolean | undefined;
|
|
@@ -2785,7 +2785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2785
2785
|
hint?: string | undefined;
|
|
2786
2786
|
messages?: {
|
|
2787
2787
|
text: string;
|
|
2788
|
-
type: "
|
|
2788
|
+
type: "success" | "error" | "info" | "warning";
|
|
2789
2789
|
id?: number | undefined;
|
|
2790
2790
|
}[] | undefined;
|
|
2791
2791
|
required?: boolean | undefined;
|
|
@@ -2804,7 +2804,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2804
2804
|
hint?: string | undefined;
|
|
2805
2805
|
messages?: {
|
|
2806
2806
|
text: string;
|
|
2807
|
-
type: "
|
|
2807
|
+
type: "success" | "error" | "info" | "warning";
|
|
2808
2808
|
id?: number | undefined;
|
|
2809
2809
|
}[] | undefined;
|
|
2810
2810
|
required?: boolean | undefined;
|
|
@@ -2826,7 +2826,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2826
2826
|
hint?: string | undefined;
|
|
2827
2827
|
messages?: {
|
|
2828
2828
|
text: string;
|
|
2829
|
-
type: "
|
|
2829
|
+
type: "success" | "error" | "info" | "warning";
|
|
2830
2830
|
id?: number | undefined;
|
|
2831
2831
|
}[] | undefined;
|
|
2832
2832
|
required?: boolean | undefined;
|
|
@@ -2848,7 +2848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2848
2848
|
hint?: string | undefined;
|
|
2849
2849
|
messages?: {
|
|
2850
2850
|
text: string;
|
|
2851
|
-
type: "
|
|
2851
|
+
type: "success" | "error" | "info" | "warning";
|
|
2852
2852
|
id?: number | undefined;
|
|
2853
2853
|
}[] | undefined;
|
|
2854
2854
|
required?: boolean | undefined;
|
|
@@ -2867,7 +2867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2867
2867
|
hint?: string | undefined;
|
|
2868
2868
|
messages?: {
|
|
2869
2869
|
text: string;
|
|
2870
|
-
type: "
|
|
2870
|
+
type: "success" | "error" | "info" | "warning";
|
|
2871
2871
|
id?: number | undefined;
|
|
2872
2872
|
}[] | undefined;
|
|
2873
2873
|
required?: boolean | undefined;
|
|
@@ -2892,7 +2892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2892
2892
|
hint?: string | undefined;
|
|
2893
2893
|
messages?: {
|
|
2894
2894
|
text: string;
|
|
2895
|
-
type: "
|
|
2895
|
+
type: "success" | "error" | "info" | "warning";
|
|
2896
2896
|
id?: number | undefined;
|
|
2897
2897
|
}[] | undefined;
|
|
2898
2898
|
required?: boolean | undefined;
|
|
@@ -2913,7 +2913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2913
2913
|
hint?: string | undefined;
|
|
2914
2914
|
messages?: {
|
|
2915
2915
|
text: string;
|
|
2916
|
-
type: "
|
|
2916
|
+
type: "success" | "error" | "info" | "warning";
|
|
2917
2917
|
id?: number | undefined;
|
|
2918
2918
|
}[] | undefined;
|
|
2919
2919
|
required?: boolean | undefined;
|
|
@@ -2934,7 +2934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2934
2934
|
hint?: string | undefined;
|
|
2935
2935
|
messages?: {
|
|
2936
2936
|
text: string;
|
|
2937
|
-
type: "
|
|
2937
|
+
type: "success" | "error" | "info" | "warning";
|
|
2938
2938
|
id?: number | undefined;
|
|
2939
2939
|
}[] | undefined;
|
|
2940
2940
|
required?: boolean | undefined;
|
|
@@ -3167,7 +3167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3167
3167
|
hint?: string | undefined;
|
|
3168
3168
|
messages?: {
|
|
3169
3169
|
text: string;
|
|
3170
|
-
type: "
|
|
3170
|
+
type: "success" | "error" | "info" | "warning";
|
|
3171
3171
|
id?: number | undefined;
|
|
3172
3172
|
}[] | undefined;
|
|
3173
3173
|
required?: boolean | undefined;
|
|
@@ -3185,7 +3185,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3185
3185
|
hint?: string | undefined;
|
|
3186
3186
|
messages?: {
|
|
3187
3187
|
text: string;
|
|
3188
|
-
type: "
|
|
3188
|
+
type: "success" | "error" | "info" | "warning";
|
|
3189
3189
|
id?: number | undefined;
|
|
3190
3190
|
}[] | undefined;
|
|
3191
3191
|
required?: boolean | undefined;
|
|
@@ -3209,7 +3209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3209
3209
|
hint?: string | undefined;
|
|
3210
3210
|
messages?: {
|
|
3211
3211
|
text: string;
|
|
3212
|
-
type: "
|
|
3212
|
+
type: "success" | "error" | "info" | "warning";
|
|
3213
3213
|
id?: number | undefined;
|
|
3214
3214
|
}[] | undefined;
|
|
3215
3215
|
required?: boolean | undefined;
|
|
@@ -3233,7 +3233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3233
3233
|
hint?: string | undefined;
|
|
3234
3234
|
messages?: {
|
|
3235
3235
|
text: string;
|
|
3236
|
-
type: "
|
|
3236
|
+
type: "success" | "error" | "info" | "warning";
|
|
3237
3237
|
id?: number | undefined;
|
|
3238
3238
|
}[] | undefined;
|
|
3239
3239
|
required?: boolean | undefined;
|
|
@@ -3262,7 +3262,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3262
3262
|
hint?: string | undefined;
|
|
3263
3263
|
messages?: {
|
|
3264
3264
|
text: string;
|
|
3265
|
-
type: "
|
|
3265
|
+
type: "success" | "error" | "info" | "warning";
|
|
3266
3266
|
id?: number | undefined;
|
|
3267
3267
|
}[] | undefined;
|
|
3268
3268
|
required?: boolean | undefined;
|
|
@@ -3277,7 +3277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3277
3277
|
hint?: string | undefined;
|
|
3278
3278
|
messages?: {
|
|
3279
3279
|
text: string;
|
|
3280
|
-
type: "
|
|
3280
|
+
type: "success" | "error" | "info" | "warning";
|
|
3281
3281
|
id?: number | undefined;
|
|
3282
3282
|
}[] | undefined;
|
|
3283
3283
|
required?: boolean | undefined;
|
|
@@ -3298,7 +3298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3298
3298
|
hint?: string | undefined;
|
|
3299
3299
|
messages?: {
|
|
3300
3300
|
text: string;
|
|
3301
|
-
type: "
|
|
3301
|
+
type: "success" | "error" | "info" | "warning";
|
|
3302
3302
|
id?: number | undefined;
|
|
3303
3303
|
}[] | undefined;
|
|
3304
3304
|
required?: boolean | undefined;
|
|
@@ -3323,7 +3323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3323
3323
|
hint?: string | undefined;
|
|
3324
3324
|
messages?: {
|
|
3325
3325
|
text: string;
|
|
3326
|
-
type: "
|
|
3326
|
+
type: "success" | "error" | "info" | "warning";
|
|
3327
3327
|
id?: number | undefined;
|
|
3328
3328
|
}[] | undefined;
|
|
3329
3329
|
required?: boolean | undefined;
|
|
@@ -3342,7 +3342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3342
3342
|
hint?: string | undefined;
|
|
3343
3343
|
messages?: {
|
|
3344
3344
|
text: string;
|
|
3345
|
-
type: "
|
|
3345
|
+
type: "success" | "error" | "info" | "warning";
|
|
3346
3346
|
id?: number | undefined;
|
|
3347
3347
|
}[] | undefined;
|
|
3348
3348
|
required?: boolean | undefined;
|
|
@@ -3362,7 +3362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3362
3362
|
hint?: string | undefined;
|
|
3363
3363
|
messages?: {
|
|
3364
3364
|
text: string;
|
|
3365
|
-
type: "
|
|
3365
|
+
type: "success" | "error" | "info" | "warning";
|
|
3366
3366
|
id?: number | undefined;
|
|
3367
3367
|
}[] | undefined;
|
|
3368
3368
|
required?: boolean | undefined;
|
|
@@ -3381,7 +3381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3381
3381
|
hint?: string | undefined;
|
|
3382
3382
|
messages?: {
|
|
3383
3383
|
text: string;
|
|
3384
|
-
type: "
|
|
3384
|
+
type: "success" | "error" | "info" | "warning";
|
|
3385
3385
|
id?: number | undefined;
|
|
3386
3386
|
}[] | undefined;
|
|
3387
3387
|
required?: boolean | undefined;
|
|
@@ -3403,7 +3403,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3403
3403
|
hint?: string | undefined;
|
|
3404
3404
|
messages?: {
|
|
3405
3405
|
text: string;
|
|
3406
|
-
type: "
|
|
3406
|
+
type: "success" | "error" | "info" | "warning";
|
|
3407
3407
|
id?: number | undefined;
|
|
3408
3408
|
}[] | undefined;
|
|
3409
3409
|
required?: boolean | undefined;
|
|
@@ -3425,7 +3425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3425
3425
|
hint?: string | undefined;
|
|
3426
3426
|
messages?: {
|
|
3427
3427
|
text: string;
|
|
3428
|
-
type: "
|
|
3428
|
+
type: "success" | "error" | "info" | "warning";
|
|
3429
3429
|
id?: number | undefined;
|
|
3430
3430
|
}[] | undefined;
|
|
3431
3431
|
required?: boolean | undefined;
|
|
@@ -3444,7 +3444,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3444
3444
|
hint?: string | undefined;
|
|
3445
3445
|
messages?: {
|
|
3446
3446
|
text: string;
|
|
3447
|
-
type: "
|
|
3447
|
+
type: "success" | "error" | "info" | "warning";
|
|
3448
3448
|
id?: number | undefined;
|
|
3449
3449
|
}[] | undefined;
|
|
3450
3450
|
required?: boolean | undefined;
|
|
@@ -3469,7 +3469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3469
3469
|
hint?: string | undefined;
|
|
3470
3470
|
messages?: {
|
|
3471
3471
|
text: string;
|
|
3472
|
-
type: "
|
|
3472
|
+
type: "success" | "error" | "info" | "warning";
|
|
3473
3473
|
id?: number | undefined;
|
|
3474
3474
|
}[] | undefined;
|
|
3475
3475
|
required?: boolean | undefined;
|
|
@@ -3490,7 +3490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3490
3490
|
hint?: string | undefined;
|
|
3491
3491
|
messages?: {
|
|
3492
3492
|
text: string;
|
|
3493
|
-
type: "
|
|
3493
|
+
type: "success" | "error" | "info" | "warning";
|
|
3494
3494
|
id?: number | undefined;
|
|
3495
3495
|
}[] | undefined;
|
|
3496
3496
|
required?: boolean | undefined;
|
|
@@ -3511,7 +3511,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3511
3511
|
hint?: string | undefined;
|
|
3512
3512
|
messages?: {
|
|
3513
3513
|
text: string;
|
|
3514
|
-
type: "
|
|
3514
|
+
type: "success" | "error" | "info" | "warning";
|
|
3515
3515
|
id?: number | undefined;
|
|
3516
3516
|
}[] | undefined;
|
|
3517
3517
|
required?: boolean | undefined;
|
|
@@ -3759,7 +3759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3759
3759
|
hint?: string | undefined;
|
|
3760
3760
|
messages?: {
|
|
3761
3761
|
text: string;
|
|
3762
|
-
type: "
|
|
3762
|
+
type: "success" | "error" | "info" | "warning";
|
|
3763
3763
|
id?: number | undefined;
|
|
3764
3764
|
}[] | undefined;
|
|
3765
3765
|
required?: boolean | undefined;
|
|
@@ -3777,7 +3777,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3777
3777
|
hint?: string | undefined;
|
|
3778
3778
|
messages?: {
|
|
3779
3779
|
text: string;
|
|
3780
|
-
type: "
|
|
3780
|
+
type: "success" | "error" | "info" | "warning";
|
|
3781
3781
|
id?: number | undefined;
|
|
3782
3782
|
}[] | undefined;
|
|
3783
3783
|
required?: boolean | undefined;
|
|
@@ -3801,7 +3801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3801
3801
|
hint?: string | undefined;
|
|
3802
3802
|
messages?: {
|
|
3803
3803
|
text: string;
|
|
3804
|
-
type: "
|
|
3804
|
+
type: "success" | "error" | "info" | "warning";
|
|
3805
3805
|
id?: number | undefined;
|
|
3806
3806
|
}[] | undefined;
|
|
3807
3807
|
required?: boolean | undefined;
|
|
@@ -3825,7 +3825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3825
3825
|
hint?: string | undefined;
|
|
3826
3826
|
messages?: {
|
|
3827
3827
|
text: string;
|
|
3828
|
-
type: "
|
|
3828
|
+
type: "success" | "error" | "info" | "warning";
|
|
3829
3829
|
id?: number | undefined;
|
|
3830
3830
|
}[] | undefined;
|
|
3831
3831
|
required?: boolean | undefined;
|
|
@@ -3854,7 +3854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3854
3854
|
hint?: string | undefined;
|
|
3855
3855
|
messages?: {
|
|
3856
3856
|
text: string;
|
|
3857
|
-
type: "
|
|
3857
|
+
type: "success" | "error" | "info" | "warning";
|
|
3858
3858
|
id?: number | undefined;
|
|
3859
3859
|
}[] | undefined;
|
|
3860
3860
|
required?: boolean | undefined;
|
|
@@ -3869,7 +3869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3869
3869
|
hint?: string | undefined;
|
|
3870
3870
|
messages?: {
|
|
3871
3871
|
text: string;
|
|
3872
|
-
type: "
|
|
3872
|
+
type: "success" | "error" | "info" | "warning";
|
|
3873
3873
|
id?: number | undefined;
|
|
3874
3874
|
}[] | undefined;
|
|
3875
3875
|
required?: boolean | undefined;
|
|
@@ -3890,7 +3890,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3890
3890
|
hint?: string | undefined;
|
|
3891
3891
|
messages?: {
|
|
3892
3892
|
text: string;
|
|
3893
|
-
type: "
|
|
3893
|
+
type: "success" | "error" | "info" | "warning";
|
|
3894
3894
|
id?: number | undefined;
|
|
3895
3895
|
}[] | undefined;
|
|
3896
3896
|
required?: boolean | undefined;
|
|
@@ -3915,7 +3915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3915
3915
|
hint?: string | undefined;
|
|
3916
3916
|
messages?: {
|
|
3917
3917
|
text: string;
|
|
3918
|
-
type: "
|
|
3918
|
+
type: "success" | "error" | "info" | "warning";
|
|
3919
3919
|
id?: number | undefined;
|
|
3920
3920
|
}[] | undefined;
|
|
3921
3921
|
required?: boolean | undefined;
|
|
@@ -3934,7 +3934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3934
3934
|
hint?: string | undefined;
|
|
3935
3935
|
messages?: {
|
|
3936
3936
|
text: string;
|
|
3937
|
-
type: "
|
|
3937
|
+
type: "success" | "error" | "info" | "warning";
|
|
3938
3938
|
id?: number | undefined;
|
|
3939
3939
|
}[] | undefined;
|
|
3940
3940
|
required?: boolean | undefined;
|
|
@@ -3954,7 +3954,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3954
3954
|
hint?: string | undefined;
|
|
3955
3955
|
messages?: {
|
|
3956
3956
|
text: string;
|
|
3957
|
-
type: "
|
|
3957
|
+
type: "success" | "error" | "info" | "warning";
|
|
3958
3958
|
id?: number | undefined;
|
|
3959
3959
|
}[] | undefined;
|
|
3960
3960
|
required?: boolean | undefined;
|
|
@@ -3973,7 +3973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3973
3973
|
hint?: string | undefined;
|
|
3974
3974
|
messages?: {
|
|
3975
3975
|
text: string;
|
|
3976
|
-
type: "
|
|
3976
|
+
type: "success" | "error" | "info" | "warning";
|
|
3977
3977
|
id?: number | undefined;
|
|
3978
3978
|
}[] | undefined;
|
|
3979
3979
|
required?: boolean | undefined;
|
|
@@ -3995,7 +3995,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3995
3995
|
hint?: string | undefined;
|
|
3996
3996
|
messages?: {
|
|
3997
3997
|
text: string;
|
|
3998
|
-
type: "
|
|
3998
|
+
type: "success" | "error" | "info" | "warning";
|
|
3999
3999
|
id?: number | undefined;
|
|
4000
4000
|
}[] | undefined;
|
|
4001
4001
|
required?: boolean | undefined;
|
|
@@ -4017,7 +4017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4017
4017
|
hint?: string | undefined;
|
|
4018
4018
|
messages?: {
|
|
4019
4019
|
text: string;
|
|
4020
|
-
type: "
|
|
4020
|
+
type: "success" | "error" | "info" | "warning";
|
|
4021
4021
|
id?: number | undefined;
|
|
4022
4022
|
}[] | undefined;
|
|
4023
4023
|
required?: boolean | undefined;
|
|
@@ -4036,7 +4036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4036
4036
|
hint?: string | undefined;
|
|
4037
4037
|
messages?: {
|
|
4038
4038
|
text: string;
|
|
4039
|
-
type: "
|
|
4039
|
+
type: "success" | "error" | "info" | "warning";
|
|
4040
4040
|
id?: number | undefined;
|
|
4041
4041
|
}[] | undefined;
|
|
4042
4042
|
required?: boolean | undefined;
|
|
@@ -4061,7 +4061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4061
4061
|
hint?: string | undefined;
|
|
4062
4062
|
messages?: {
|
|
4063
4063
|
text: string;
|
|
4064
|
-
type: "
|
|
4064
|
+
type: "success" | "error" | "info" | "warning";
|
|
4065
4065
|
id?: number | undefined;
|
|
4066
4066
|
}[] | undefined;
|
|
4067
4067
|
required?: boolean | undefined;
|
|
@@ -4082,7 +4082,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4082
4082
|
hint?: string | undefined;
|
|
4083
4083
|
messages?: {
|
|
4084
4084
|
text: string;
|
|
4085
|
-
type: "
|
|
4085
|
+
type: "success" | "error" | "info" | "warning";
|
|
4086
4086
|
id?: number | undefined;
|
|
4087
4087
|
}[] | undefined;
|
|
4088
4088
|
required?: boolean | undefined;
|
|
@@ -4103,7 +4103,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4103
4103
|
hint?: string | undefined;
|
|
4104
4104
|
messages?: {
|
|
4105
4105
|
text: string;
|
|
4106
|
-
type: "
|
|
4106
|
+
type: "success" | "error" | "info" | "warning";
|
|
4107
4107
|
id?: number | undefined;
|
|
4108
4108
|
}[] | undefined;
|
|
4109
4109
|
required?: boolean | undefined;
|
|
@@ -4357,7 +4357,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4357
4357
|
hint?: string | undefined;
|
|
4358
4358
|
messages?: {
|
|
4359
4359
|
text: string;
|
|
4360
|
-
type: "
|
|
4360
|
+
type: "success" | "error" | "info" | "warning";
|
|
4361
4361
|
id?: number | undefined;
|
|
4362
4362
|
}[] | undefined;
|
|
4363
4363
|
required?: boolean | undefined;
|
|
@@ -4375,7 +4375,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4375
4375
|
hint?: string | undefined;
|
|
4376
4376
|
messages?: {
|
|
4377
4377
|
text: string;
|
|
4378
|
-
type: "
|
|
4378
|
+
type: "success" | "error" | "info" | "warning";
|
|
4379
4379
|
id?: number | undefined;
|
|
4380
4380
|
}[] | undefined;
|
|
4381
4381
|
required?: boolean | undefined;
|
|
@@ -4399,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4399
4399
|
hint?: string | undefined;
|
|
4400
4400
|
messages?: {
|
|
4401
4401
|
text: string;
|
|
4402
|
-
type: "
|
|
4402
|
+
type: "success" | "error" | "info" | "warning";
|
|
4403
4403
|
id?: number | undefined;
|
|
4404
4404
|
}[] | undefined;
|
|
4405
4405
|
required?: boolean | undefined;
|
|
@@ -4423,7 +4423,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4423
4423
|
hint?: string | undefined;
|
|
4424
4424
|
messages?: {
|
|
4425
4425
|
text: string;
|
|
4426
|
-
type: "
|
|
4426
|
+
type: "success" | "error" | "info" | "warning";
|
|
4427
4427
|
id?: number | undefined;
|
|
4428
4428
|
}[] | undefined;
|
|
4429
4429
|
required?: boolean | undefined;
|
|
@@ -4448,7 +4448,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4448
4448
|
hint?: string | undefined;
|
|
4449
4449
|
messages?: {
|
|
4450
4450
|
text: string;
|
|
4451
|
-
type: "
|
|
4451
|
+
type: "success" | "error" | "info" | "warning";
|
|
4452
4452
|
id?: number | undefined;
|
|
4453
4453
|
}[] | undefined;
|
|
4454
4454
|
required?: boolean | undefined;
|
|
@@ -4463,7 +4463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4463
4463
|
hint?: string | undefined;
|
|
4464
4464
|
messages?: {
|
|
4465
4465
|
text: string;
|
|
4466
|
-
type: "
|
|
4466
|
+
type: "success" | "error" | "info" | "warning";
|
|
4467
4467
|
id?: number | undefined;
|
|
4468
4468
|
}[] | undefined;
|
|
4469
4469
|
required?: boolean | undefined;
|
|
@@ -4484,7 +4484,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4484
4484
|
hint?: string | undefined;
|
|
4485
4485
|
messages?: {
|
|
4486
4486
|
text: string;
|
|
4487
|
-
type: "
|
|
4487
|
+
type: "success" | "error" | "info" | "warning";
|
|
4488
4488
|
id?: number | undefined;
|
|
4489
4489
|
}[] | undefined;
|
|
4490
4490
|
required?: boolean | undefined;
|
|
@@ -4509,7 +4509,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4509
4509
|
hint?: string | undefined;
|
|
4510
4510
|
messages?: {
|
|
4511
4511
|
text: string;
|
|
4512
|
-
type: "
|
|
4512
|
+
type: "success" | "error" | "info" | "warning";
|
|
4513
4513
|
id?: number | undefined;
|
|
4514
4514
|
}[] | undefined;
|
|
4515
4515
|
required?: boolean | undefined;
|
|
@@ -4528,7 +4528,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4528
4528
|
hint?: string | undefined;
|
|
4529
4529
|
messages?: {
|
|
4530
4530
|
text: string;
|
|
4531
|
-
type: "
|
|
4531
|
+
type: "success" | "error" | "info" | "warning";
|
|
4532
4532
|
id?: number | undefined;
|
|
4533
4533
|
}[] | undefined;
|
|
4534
4534
|
required?: boolean | undefined;
|
|
@@ -4548,7 +4548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4548
4548
|
hint?: string | undefined;
|
|
4549
4549
|
messages?: {
|
|
4550
4550
|
text: string;
|
|
4551
|
-
type: "
|
|
4551
|
+
type: "success" | "error" | "info" | "warning";
|
|
4552
4552
|
id?: number | undefined;
|
|
4553
4553
|
}[] | undefined;
|
|
4554
4554
|
required?: boolean | undefined;
|
|
@@ -4567,7 +4567,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4567
4567
|
hint?: string | undefined;
|
|
4568
4568
|
messages?: {
|
|
4569
4569
|
text: string;
|
|
4570
|
-
type: "
|
|
4570
|
+
type: "success" | "error" | "info" | "warning";
|
|
4571
4571
|
id?: number | undefined;
|
|
4572
4572
|
}[] | undefined;
|
|
4573
4573
|
required?: boolean | undefined;
|
|
@@ -4589,7 +4589,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4589
4589
|
hint?: string | undefined;
|
|
4590
4590
|
messages?: {
|
|
4591
4591
|
text: string;
|
|
4592
|
-
type: "
|
|
4592
|
+
type: "success" | "error" | "info" | "warning";
|
|
4593
4593
|
id?: number | undefined;
|
|
4594
4594
|
}[] | undefined;
|
|
4595
4595
|
required?: boolean | undefined;
|
|
@@ -4611,7 +4611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4611
4611
|
hint?: string | undefined;
|
|
4612
4612
|
messages?: {
|
|
4613
4613
|
text: string;
|
|
4614
|
-
type: "
|
|
4614
|
+
type: "success" | "error" | "info" | "warning";
|
|
4615
4615
|
id?: number | undefined;
|
|
4616
4616
|
}[] | undefined;
|
|
4617
4617
|
required?: boolean | undefined;
|
|
@@ -4630,7 +4630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4630
4630
|
hint?: string | undefined;
|
|
4631
4631
|
messages?: {
|
|
4632
4632
|
text: string;
|
|
4633
|
-
type: "
|
|
4633
|
+
type: "success" | "error" | "info" | "warning";
|
|
4634
4634
|
id?: number | undefined;
|
|
4635
4635
|
}[] | undefined;
|
|
4636
4636
|
required?: boolean | undefined;
|
|
@@ -4655,7 +4655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4655
4655
|
hint?: string | undefined;
|
|
4656
4656
|
messages?: {
|
|
4657
4657
|
text: string;
|
|
4658
|
-
type: "
|
|
4658
|
+
type: "success" | "error" | "info" | "warning";
|
|
4659
4659
|
id?: number | undefined;
|
|
4660
4660
|
}[] | undefined;
|
|
4661
4661
|
required?: boolean | undefined;
|
|
@@ -4676,7 +4676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4676
4676
|
hint?: string | undefined;
|
|
4677
4677
|
messages?: {
|
|
4678
4678
|
text: string;
|
|
4679
|
-
type: "
|
|
4679
|
+
type: "success" | "error" | "info" | "warning";
|
|
4680
4680
|
id?: number | undefined;
|
|
4681
4681
|
}[] | undefined;
|
|
4682
4682
|
required?: boolean | undefined;
|
|
@@ -4697,7 +4697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4697
4697
|
hint?: string | undefined;
|
|
4698
4698
|
messages?: {
|
|
4699
4699
|
text: string;
|
|
4700
|
-
type: "
|
|
4700
|
+
type: "success" | "error" | "info" | "warning";
|
|
4701
4701
|
id?: number | undefined;
|
|
4702
4702
|
}[] | undefined;
|
|
4703
4703
|
required?: boolean | undefined;
|
|
@@ -4928,7 +4928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4928
4928
|
hint?: string | undefined;
|
|
4929
4929
|
messages?: {
|
|
4930
4930
|
text: string;
|
|
4931
|
-
type: "
|
|
4931
|
+
type: "success" | "error" | "info" | "warning";
|
|
4932
4932
|
id?: number | undefined;
|
|
4933
4933
|
}[] | undefined;
|
|
4934
4934
|
required?: boolean | undefined;
|
|
@@ -4946,7 +4946,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4946
4946
|
hint?: string | undefined;
|
|
4947
4947
|
messages?: {
|
|
4948
4948
|
text: string;
|
|
4949
|
-
type: "
|
|
4949
|
+
type: "success" | "error" | "info" | "warning";
|
|
4950
4950
|
id?: number | undefined;
|
|
4951
4951
|
}[] | undefined;
|
|
4952
4952
|
required?: boolean | undefined;
|
|
@@ -4970,7 +4970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4970
4970
|
hint?: string | undefined;
|
|
4971
4971
|
messages?: {
|
|
4972
4972
|
text: string;
|
|
4973
|
-
type: "
|
|
4973
|
+
type: "success" | "error" | "info" | "warning";
|
|
4974
4974
|
id?: number | undefined;
|
|
4975
4975
|
}[] | undefined;
|
|
4976
4976
|
required?: boolean | undefined;
|
|
@@ -4994,7 +4994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4994
4994
|
hint?: string | undefined;
|
|
4995
4995
|
messages?: {
|
|
4996
4996
|
text: string;
|
|
4997
|
-
type: "
|
|
4997
|
+
type: "success" | "error" | "info" | "warning";
|
|
4998
4998
|
id?: number | undefined;
|
|
4999
4999
|
}[] | undefined;
|
|
5000
5000
|
required?: boolean | undefined;
|
|
@@ -5023,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5023
5023
|
hint?: string | undefined;
|
|
5024
5024
|
messages?: {
|
|
5025
5025
|
text: string;
|
|
5026
|
-
type: "
|
|
5026
|
+
type: "success" | "error" | "info" | "warning";
|
|
5027
5027
|
id?: number | undefined;
|
|
5028
5028
|
}[] | undefined;
|
|
5029
5029
|
required?: boolean | undefined;
|
|
@@ -5038,7 +5038,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5038
5038
|
hint?: string | undefined;
|
|
5039
5039
|
messages?: {
|
|
5040
5040
|
text: string;
|
|
5041
|
-
type: "
|
|
5041
|
+
type: "success" | "error" | "info" | "warning";
|
|
5042
5042
|
id?: number | undefined;
|
|
5043
5043
|
}[] | undefined;
|
|
5044
5044
|
required?: boolean | undefined;
|
|
@@ -5059,7 +5059,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5059
5059
|
hint?: string | undefined;
|
|
5060
5060
|
messages?: {
|
|
5061
5061
|
text: string;
|
|
5062
|
-
type: "
|
|
5062
|
+
type: "success" | "error" | "info" | "warning";
|
|
5063
5063
|
id?: number | undefined;
|
|
5064
5064
|
}[] | undefined;
|
|
5065
5065
|
required?: boolean | undefined;
|
|
@@ -5084,7 +5084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5084
5084
|
hint?: string | undefined;
|
|
5085
5085
|
messages?: {
|
|
5086
5086
|
text: string;
|
|
5087
|
-
type: "
|
|
5087
|
+
type: "success" | "error" | "info" | "warning";
|
|
5088
5088
|
id?: number | undefined;
|
|
5089
5089
|
}[] | undefined;
|
|
5090
5090
|
required?: boolean | undefined;
|
|
@@ -5103,7 +5103,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5103
5103
|
hint?: string | undefined;
|
|
5104
5104
|
messages?: {
|
|
5105
5105
|
text: string;
|
|
5106
|
-
type: "
|
|
5106
|
+
type: "success" | "error" | "info" | "warning";
|
|
5107
5107
|
id?: number | undefined;
|
|
5108
5108
|
}[] | undefined;
|
|
5109
5109
|
required?: boolean | undefined;
|
|
@@ -5123,7 +5123,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5123
5123
|
hint?: string | undefined;
|
|
5124
5124
|
messages?: {
|
|
5125
5125
|
text: string;
|
|
5126
|
-
type: "
|
|
5126
|
+
type: "success" | "error" | "info" | "warning";
|
|
5127
5127
|
id?: number | undefined;
|
|
5128
5128
|
}[] | undefined;
|
|
5129
5129
|
required?: boolean | undefined;
|
|
@@ -5142,7 +5142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5142
5142
|
hint?: string | undefined;
|
|
5143
5143
|
messages?: {
|
|
5144
5144
|
text: string;
|
|
5145
|
-
type: "
|
|
5145
|
+
type: "success" | "error" | "info" | "warning";
|
|
5146
5146
|
id?: number | undefined;
|
|
5147
5147
|
}[] | undefined;
|
|
5148
5148
|
required?: boolean | undefined;
|
|
@@ -5164,7 +5164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5164
5164
|
hint?: string | undefined;
|
|
5165
5165
|
messages?: {
|
|
5166
5166
|
text: string;
|
|
5167
|
-
type: "
|
|
5167
|
+
type: "success" | "error" | "info" | "warning";
|
|
5168
5168
|
id?: number | undefined;
|
|
5169
5169
|
}[] | undefined;
|
|
5170
5170
|
required?: boolean | undefined;
|
|
@@ -5186,7 +5186,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5186
5186
|
hint?: string | undefined;
|
|
5187
5187
|
messages?: {
|
|
5188
5188
|
text: string;
|
|
5189
|
-
type: "
|
|
5189
|
+
type: "success" | "error" | "info" | "warning";
|
|
5190
5190
|
id?: number | undefined;
|
|
5191
5191
|
}[] | undefined;
|
|
5192
5192
|
required?: boolean | undefined;
|
|
@@ -5205,7 +5205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5205
5205
|
hint?: string | undefined;
|
|
5206
5206
|
messages?: {
|
|
5207
5207
|
text: string;
|
|
5208
|
-
type: "
|
|
5208
|
+
type: "success" | "error" | "info" | "warning";
|
|
5209
5209
|
id?: number | undefined;
|
|
5210
5210
|
}[] | undefined;
|
|
5211
5211
|
required?: boolean | undefined;
|
|
@@ -5230,7 +5230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5230
5230
|
hint?: string | undefined;
|
|
5231
5231
|
messages?: {
|
|
5232
5232
|
text: string;
|
|
5233
|
-
type: "
|
|
5233
|
+
type: "success" | "error" | "info" | "warning";
|
|
5234
5234
|
id?: number | undefined;
|
|
5235
5235
|
}[] | undefined;
|
|
5236
5236
|
required?: boolean | undefined;
|
|
@@ -5251,7 +5251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5251
5251
|
hint?: string | undefined;
|
|
5252
5252
|
messages?: {
|
|
5253
5253
|
text: string;
|
|
5254
|
-
type: "
|
|
5254
|
+
type: "success" | "error" | "info" | "warning";
|
|
5255
5255
|
id?: number | undefined;
|
|
5256
5256
|
}[] | undefined;
|
|
5257
5257
|
required?: boolean | undefined;
|
|
@@ -5272,7 +5272,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5272
5272
|
hint?: string | undefined;
|
|
5273
5273
|
messages?: {
|
|
5274
5274
|
text: string;
|
|
5275
|
-
type: "
|
|
5275
|
+
type: "success" | "error" | "info" | "warning";
|
|
5276
5276
|
id?: number | undefined;
|
|
5277
5277
|
}[] | undefined;
|
|
5278
5278
|
required?: boolean | undefined;
|
|
@@ -5505,7 +5505,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5505
5505
|
hint?: string | undefined;
|
|
5506
5506
|
messages?: {
|
|
5507
5507
|
text: string;
|
|
5508
|
-
type: "
|
|
5508
|
+
type: "success" | "error" | "info" | "warning";
|
|
5509
5509
|
id?: number | undefined;
|
|
5510
5510
|
}[] | undefined;
|
|
5511
5511
|
required?: boolean | undefined;
|
|
@@ -5523,7 +5523,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5523
5523
|
hint?: string | undefined;
|
|
5524
5524
|
messages?: {
|
|
5525
5525
|
text: string;
|
|
5526
|
-
type: "
|
|
5526
|
+
type: "success" | "error" | "info" | "warning";
|
|
5527
5527
|
id?: number | undefined;
|
|
5528
5528
|
}[] | undefined;
|
|
5529
5529
|
required?: boolean | undefined;
|
|
@@ -5547,7 +5547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5547
5547
|
hint?: string | undefined;
|
|
5548
5548
|
messages?: {
|
|
5549
5549
|
text: string;
|
|
5550
|
-
type: "
|
|
5550
|
+
type: "success" | "error" | "info" | "warning";
|
|
5551
5551
|
id?: number | undefined;
|
|
5552
5552
|
}[] | undefined;
|
|
5553
5553
|
required?: boolean | undefined;
|
|
@@ -5571,7 +5571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5571
5571
|
hint?: string | undefined;
|
|
5572
5572
|
messages?: {
|
|
5573
5573
|
text: string;
|
|
5574
|
-
type: "
|
|
5574
|
+
type: "success" | "error" | "info" | "warning";
|
|
5575
5575
|
id?: number | undefined;
|
|
5576
5576
|
}[] | undefined;
|
|
5577
5577
|
required?: boolean | undefined;
|
|
@@ -5596,7 +5596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5596
5596
|
hint?: string | undefined;
|
|
5597
5597
|
messages?: {
|
|
5598
5598
|
text: string;
|
|
5599
|
-
type: "
|
|
5599
|
+
type: "success" | "error" | "info" | "warning";
|
|
5600
5600
|
id?: number | undefined;
|
|
5601
5601
|
}[] | undefined;
|
|
5602
5602
|
required?: boolean | undefined;
|
|
@@ -5611,7 +5611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5611
5611
|
hint?: string | undefined;
|
|
5612
5612
|
messages?: {
|
|
5613
5613
|
text: string;
|
|
5614
|
-
type: "
|
|
5614
|
+
type: "success" | "error" | "info" | "warning";
|
|
5615
5615
|
id?: number | undefined;
|
|
5616
5616
|
}[] | undefined;
|
|
5617
5617
|
required?: boolean | undefined;
|
|
@@ -5632,7 +5632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5632
5632
|
hint?: string | undefined;
|
|
5633
5633
|
messages?: {
|
|
5634
5634
|
text: string;
|
|
5635
|
-
type: "
|
|
5635
|
+
type: "success" | "error" | "info" | "warning";
|
|
5636
5636
|
id?: number | undefined;
|
|
5637
5637
|
}[] | undefined;
|
|
5638
5638
|
required?: boolean | undefined;
|
|
@@ -5657,7 +5657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5657
5657
|
hint?: string | undefined;
|
|
5658
5658
|
messages?: {
|
|
5659
5659
|
text: string;
|
|
5660
|
-
type: "
|
|
5660
|
+
type: "success" | "error" | "info" | "warning";
|
|
5661
5661
|
id?: number | undefined;
|
|
5662
5662
|
}[] | undefined;
|
|
5663
5663
|
required?: boolean | undefined;
|
|
@@ -5676,7 +5676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5676
5676
|
hint?: string | undefined;
|
|
5677
5677
|
messages?: {
|
|
5678
5678
|
text: string;
|
|
5679
|
-
type: "
|
|
5679
|
+
type: "success" | "error" | "info" | "warning";
|
|
5680
5680
|
id?: number | undefined;
|
|
5681
5681
|
}[] | undefined;
|
|
5682
5682
|
required?: boolean | undefined;
|
|
@@ -5696,7 +5696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5696
5696
|
hint?: string | undefined;
|
|
5697
5697
|
messages?: {
|
|
5698
5698
|
text: string;
|
|
5699
|
-
type: "
|
|
5699
|
+
type: "success" | "error" | "info" | "warning";
|
|
5700
5700
|
id?: number | undefined;
|
|
5701
5701
|
}[] | undefined;
|
|
5702
5702
|
required?: boolean | undefined;
|
|
@@ -5715,7 +5715,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5715
5715
|
hint?: string | undefined;
|
|
5716
5716
|
messages?: {
|
|
5717
5717
|
text: string;
|
|
5718
|
-
type: "
|
|
5718
|
+
type: "success" | "error" | "info" | "warning";
|
|
5719
5719
|
id?: number | undefined;
|
|
5720
5720
|
}[] | undefined;
|
|
5721
5721
|
required?: boolean | undefined;
|
|
@@ -5737,7 +5737,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5737
5737
|
hint?: string | undefined;
|
|
5738
5738
|
messages?: {
|
|
5739
5739
|
text: string;
|
|
5740
|
-
type: "
|
|
5740
|
+
type: "success" | "error" | "info" | "warning";
|
|
5741
5741
|
id?: number | undefined;
|
|
5742
5742
|
}[] | undefined;
|
|
5743
5743
|
required?: boolean | undefined;
|
|
@@ -5759,7 +5759,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5759
5759
|
hint?: string | undefined;
|
|
5760
5760
|
messages?: {
|
|
5761
5761
|
text: string;
|
|
5762
|
-
type: "
|
|
5762
|
+
type: "success" | "error" | "info" | "warning";
|
|
5763
5763
|
id?: number | undefined;
|
|
5764
5764
|
}[] | undefined;
|
|
5765
5765
|
required?: boolean | undefined;
|
|
@@ -5778,7 +5778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5778
5778
|
hint?: string | undefined;
|
|
5779
5779
|
messages?: {
|
|
5780
5780
|
text: string;
|
|
5781
|
-
type: "
|
|
5781
|
+
type: "success" | "error" | "info" | "warning";
|
|
5782
5782
|
id?: number | undefined;
|
|
5783
5783
|
}[] | undefined;
|
|
5784
5784
|
required?: boolean | undefined;
|
|
@@ -5803,7 +5803,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5803
5803
|
hint?: string | undefined;
|
|
5804
5804
|
messages?: {
|
|
5805
5805
|
text: string;
|
|
5806
|
-
type: "
|
|
5806
|
+
type: "success" | "error" | "info" | "warning";
|
|
5807
5807
|
id?: number | undefined;
|
|
5808
5808
|
}[] | undefined;
|
|
5809
5809
|
required?: boolean | undefined;
|
|
@@ -5824,7 +5824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5824
5824
|
hint?: string | undefined;
|
|
5825
5825
|
messages?: {
|
|
5826
5826
|
text: string;
|
|
5827
|
-
type: "
|
|
5827
|
+
type: "success" | "error" | "info" | "warning";
|
|
5828
5828
|
id?: number | undefined;
|
|
5829
5829
|
}[] | undefined;
|
|
5830
5830
|
required?: boolean | undefined;
|
|
@@ -5845,7 +5845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5845
5845
|
hint?: string | undefined;
|
|
5846
5846
|
messages?: {
|
|
5847
5847
|
text: string;
|
|
5848
|
-
type: "
|
|
5848
|
+
type: "success" | "error" | "info" | "warning";
|
|
5849
5849
|
id?: number | undefined;
|
|
5850
5850
|
}[] | undefined;
|
|
5851
5851
|
required?: boolean | undefined;
|
|
@@ -6076,7 +6076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6076
6076
|
hint?: string | undefined;
|
|
6077
6077
|
messages?: {
|
|
6078
6078
|
text: string;
|
|
6079
|
-
type: "
|
|
6079
|
+
type: "success" | "error" | "info" | "warning";
|
|
6080
6080
|
id?: number | undefined;
|
|
6081
6081
|
}[] | undefined;
|
|
6082
6082
|
required?: boolean | undefined;
|
|
@@ -6094,7 +6094,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6094
6094
|
hint?: string | undefined;
|
|
6095
6095
|
messages?: {
|
|
6096
6096
|
text: string;
|
|
6097
|
-
type: "
|
|
6097
|
+
type: "success" | "error" | "info" | "warning";
|
|
6098
6098
|
id?: number | undefined;
|
|
6099
6099
|
}[] | undefined;
|
|
6100
6100
|
required?: boolean | undefined;
|
|
@@ -6118,7 +6118,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6118
6118
|
hint?: string | undefined;
|
|
6119
6119
|
messages?: {
|
|
6120
6120
|
text: string;
|
|
6121
|
-
type: "
|
|
6121
|
+
type: "success" | "error" | "info" | "warning";
|
|
6122
6122
|
id?: number | undefined;
|
|
6123
6123
|
}[] | undefined;
|
|
6124
6124
|
required?: boolean | undefined;
|
|
@@ -6142,7 +6142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6142
6142
|
hint?: string | undefined;
|
|
6143
6143
|
messages?: {
|
|
6144
6144
|
text: string;
|
|
6145
|
-
type: "
|
|
6145
|
+
type: "success" | "error" | "info" | "warning";
|
|
6146
6146
|
id?: number | undefined;
|
|
6147
6147
|
}[] | undefined;
|
|
6148
6148
|
required?: boolean | undefined;
|
|
@@ -6171,7 +6171,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6171
6171
|
hint?: string | undefined;
|
|
6172
6172
|
messages?: {
|
|
6173
6173
|
text: string;
|
|
6174
|
-
type: "
|
|
6174
|
+
type: "success" | "error" | "info" | "warning";
|
|
6175
6175
|
id?: number | undefined;
|
|
6176
6176
|
}[] | undefined;
|
|
6177
6177
|
required?: boolean | undefined;
|
|
@@ -6186,7 +6186,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6186
6186
|
hint?: string | undefined;
|
|
6187
6187
|
messages?: {
|
|
6188
6188
|
text: string;
|
|
6189
|
-
type: "
|
|
6189
|
+
type: "success" | "error" | "info" | "warning";
|
|
6190
6190
|
id?: number | undefined;
|
|
6191
6191
|
}[] | undefined;
|
|
6192
6192
|
required?: boolean | undefined;
|
|
@@ -6207,7 +6207,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6207
6207
|
hint?: string | undefined;
|
|
6208
6208
|
messages?: {
|
|
6209
6209
|
text: string;
|
|
6210
|
-
type: "
|
|
6210
|
+
type: "success" | "error" | "info" | "warning";
|
|
6211
6211
|
id?: number | undefined;
|
|
6212
6212
|
}[] | undefined;
|
|
6213
6213
|
required?: boolean | undefined;
|
|
@@ -6232,7 +6232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6232
6232
|
hint?: string | undefined;
|
|
6233
6233
|
messages?: {
|
|
6234
6234
|
text: string;
|
|
6235
|
-
type: "
|
|
6235
|
+
type: "success" | "error" | "info" | "warning";
|
|
6236
6236
|
id?: number | undefined;
|
|
6237
6237
|
}[] | undefined;
|
|
6238
6238
|
required?: boolean | undefined;
|
|
@@ -6251,7 +6251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6251
6251
|
hint?: string | undefined;
|
|
6252
6252
|
messages?: {
|
|
6253
6253
|
text: string;
|
|
6254
|
-
type: "
|
|
6254
|
+
type: "success" | "error" | "info" | "warning";
|
|
6255
6255
|
id?: number | undefined;
|
|
6256
6256
|
}[] | undefined;
|
|
6257
6257
|
required?: boolean | undefined;
|
|
@@ -6271,7 +6271,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6271
6271
|
hint?: string | undefined;
|
|
6272
6272
|
messages?: {
|
|
6273
6273
|
text: string;
|
|
6274
|
-
type: "
|
|
6274
|
+
type: "success" | "error" | "info" | "warning";
|
|
6275
6275
|
id?: number | undefined;
|
|
6276
6276
|
}[] | undefined;
|
|
6277
6277
|
required?: boolean | undefined;
|
|
@@ -6290,7 +6290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6290
6290
|
hint?: string | undefined;
|
|
6291
6291
|
messages?: {
|
|
6292
6292
|
text: string;
|
|
6293
|
-
type: "
|
|
6293
|
+
type: "success" | "error" | "info" | "warning";
|
|
6294
6294
|
id?: number | undefined;
|
|
6295
6295
|
}[] | undefined;
|
|
6296
6296
|
required?: boolean | undefined;
|
|
@@ -6312,7 +6312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6312
6312
|
hint?: string | undefined;
|
|
6313
6313
|
messages?: {
|
|
6314
6314
|
text: string;
|
|
6315
|
-
type: "
|
|
6315
|
+
type: "success" | "error" | "info" | "warning";
|
|
6316
6316
|
id?: number | undefined;
|
|
6317
6317
|
}[] | undefined;
|
|
6318
6318
|
required?: boolean | undefined;
|
|
@@ -6334,7 +6334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6334
6334
|
hint?: string | undefined;
|
|
6335
6335
|
messages?: {
|
|
6336
6336
|
text: string;
|
|
6337
|
-
type: "
|
|
6337
|
+
type: "success" | "error" | "info" | "warning";
|
|
6338
6338
|
id?: number | undefined;
|
|
6339
6339
|
}[] | undefined;
|
|
6340
6340
|
required?: boolean | undefined;
|
|
@@ -6353,7 +6353,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6353
6353
|
hint?: string | undefined;
|
|
6354
6354
|
messages?: {
|
|
6355
6355
|
text: string;
|
|
6356
|
-
type: "
|
|
6356
|
+
type: "success" | "error" | "info" | "warning";
|
|
6357
6357
|
id?: number | undefined;
|
|
6358
6358
|
}[] | undefined;
|
|
6359
6359
|
required?: boolean | undefined;
|
|
@@ -6378,7 +6378,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6378
6378
|
hint?: string | undefined;
|
|
6379
6379
|
messages?: {
|
|
6380
6380
|
text: string;
|
|
6381
|
-
type: "
|
|
6381
|
+
type: "success" | "error" | "info" | "warning";
|
|
6382
6382
|
id?: number | undefined;
|
|
6383
6383
|
}[] | undefined;
|
|
6384
6384
|
required?: boolean | undefined;
|
|
@@ -6399,7 +6399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6399
6399
|
hint?: string | undefined;
|
|
6400
6400
|
messages?: {
|
|
6401
6401
|
text: string;
|
|
6402
|
-
type: "
|
|
6402
|
+
type: "success" | "error" | "info" | "warning";
|
|
6403
6403
|
id?: number | undefined;
|
|
6404
6404
|
}[] | undefined;
|
|
6405
6405
|
required?: boolean | undefined;
|
|
@@ -6420,7 +6420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6420
6420
|
hint?: string | undefined;
|
|
6421
6421
|
messages?: {
|
|
6422
6422
|
text: string;
|
|
6423
|
-
type: "
|
|
6423
|
+
type: "success" | "error" | "info" | "warning";
|
|
6424
6424
|
id?: number | undefined;
|
|
6425
6425
|
}[] | undefined;
|
|
6426
6426
|
required?: boolean | undefined;
|
|
@@ -6650,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6650
6650
|
};
|
|
6651
6651
|
};
|
|
6652
6652
|
output: {
|
|
6653
|
-
prompt: "
|
|
6653
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6654
6654
|
language: string;
|
|
6655
6655
|
}[];
|
|
6656
6656
|
outputFormat: "json";
|
|
@@ -6688,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6688
6688
|
$get: {
|
|
6689
6689
|
input: {
|
|
6690
6690
|
param: {
|
|
6691
|
-
prompt: "
|
|
6691
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6692
6692
|
language: string;
|
|
6693
6693
|
};
|
|
6694
6694
|
} & {
|
|
@@ -6710,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6710
6710
|
$put: {
|
|
6711
6711
|
input: {
|
|
6712
6712
|
param: {
|
|
6713
|
-
prompt: "
|
|
6713
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6714
6714
|
language: string;
|
|
6715
6715
|
};
|
|
6716
6716
|
} & {
|
|
@@ -6734,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6734
6734
|
$delete: {
|
|
6735
6735
|
input: {
|
|
6736
6736
|
param: {
|
|
6737
|
-
prompt: "
|
|
6737
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6738
6738
|
language: string;
|
|
6739
6739
|
};
|
|
6740
6740
|
} & {
|
|
@@ -7596,7 +7596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7596
7596
|
};
|
|
7597
7597
|
} | {
|
|
7598
7598
|
mode: "inline";
|
|
7599
|
-
status: "
|
|
7599
|
+
status: "success" | "error";
|
|
7600
7600
|
connection_id: string;
|
|
7601
7601
|
connection_name: string;
|
|
7602
7602
|
strategy: string;
|
|
@@ -8823,7 +8823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8823
8823
|
};
|
|
8824
8824
|
};
|
|
8825
8825
|
output: {
|
|
8826
|
-
type: "
|
|
8826
|
+
type: "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" | "fn" | "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" | "i" | "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";
|
|
8827
8827
|
date: string;
|
|
8828
8828
|
isMobile: boolean;
|
|
8829
8829
|
log_id: string;
|
|
@@ -8862,7 +8862,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8862
8862
|
limit: number;
|
|
8863
8863
|
length: number;
|
|
8864
8864
|
logs: {
|
|
8865
|
-
type: "
|
|
8865
|
+
type: "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" | "fn" | "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" | "i" | "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";
|
|
8866
8866
|
date: string;
|
|
8867
8867
|
isMobile: boolean;
|
|
8868
8868
|
log_id: string;
|
|
@@ -8916,7 +8916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8916
8916
|
};
|
|
8917
8917
|
};
|
|
8918
8918
|
output: {
|
|
8919
|
-
type: "
|
|
8919
|
+
type: "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" | "fn" | "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" | "i" | "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";
|
|
8920
8920
|
date: string;
|
|
8921
8921
|
isMobile: boolean;
|
|
8922
8922
|
log_id: string;
|
|
@@ -9304,7 +9304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9304
9304
|
addons?: {
|
|
9305
9305
|
[x: string]: any;
|
|
9306
9306
|
} | undefined;
|
|
9307
|
-
token_endpoint_auth_method?: "
|
|
9307
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9308
9308
|
client_metadata?: {
|
|
9309
9309
|
[x: string]: string;
|
|
9310
9310
|
} | undefined;
|
|
@@ -9400,7 +9400,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9400
9400
|
addons?: {
|
|
9401
9401
|
[x: string]: any;
|
|
9402
9402
|
} | undefined;
|
|
9403
|
-
token_endpoint_auth_method?: "
|
|
9403
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9404
9404
|
client_metadata?: {
|
|
9405
9405
|
[x: string]: string;
|
|
9406
9406
|
} | undefined;
|
|
@@ -9511,7 +9511,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9511
9511
|
addons?: {
|
|
9512
9512
|
[x: string]: any;
|
|
9513
9513
|
} | undefined;
|
|
9514
|
-
token_endpoint_auth_method?: "
|
|
9514
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9515
9515
|
client_metadata?: {
|
|
9516
9516
|
[x: string]: string;
|
|
9517
9517
|
} | undefined;
|
|
@@ -9621,7 +9621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9621
9621
|
custom_login_page_preview?: string | undefined;
|
|
9622
9622
|
form_template?: string | undefined;
|
|
9623
9623
|
addons?: Record<string, any> | undefined;
|
|
9624
|
-
token_endpoint_auth_method?: "
|
|
9624
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9625
9625
|
client_metadata?: Record<string, string> | undefined;
|
|
9626
9626
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9627
9627
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9701,7 +9701,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9701
9701
|
addons?: {
|
|
9702
9702
|
[x: string]: any;
|
|
9703
9703
|
} | undefined;
|
|
9704
|
-
token_endpoint_auth_method?: "
|
|
9704
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9705
9705
|
client_metadata?: {
|
|
9706
9706
|
[x: string]: string;
|
|
9707
9707
|
} | undefined;
|
|
@@ -9790,7 +9790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9790
9790
|
custom_login_page_preview?: string | undefined;
|
|
9791
9791
|
form_template?: string | undefined;
|
|
9792
9792
|
addons?: Record<string, any> | undefined;
|
|
9793
|
-
token_endpoint_auth_method?: "
|
|
9793
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9794
9794
|
client_metadata?: Record<string, string> | undefined;
|
|
9795
9795
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9796
9796
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9870,7 +9870,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9870
9870
|
addons?: {
|
|
9871
9871
|
[x: string]: any;
|
|
9872
9872
|
} | undefined;
|
|
9873
|
-
token_endpoint_auth_method?: "
|
|
9873
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9874
9874
|
client_metadata?: {
|
|
9875
9875
|
[x: string]: string;
|
|
9876
9876
|
} | undefined;
|
|
@@ -11134,7 +11134,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11134
11134
|
};
|
|
11135
11135
|
};
|
|
11136
11136
|
output: {
|
|
11137
|
-
type: "
|
|
11137
|
+
type: "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" | "fn" | "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" | "i" | "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";
|
|
11138
11138
|
date: string;
|
|
11139
11139
|
isMobile: boolean;
|
|
11140
11140
|
log_id: string;
|
|
@@ -11173,7 +11173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11173
11173
|
limit: number;
|
|
11174
11174
|
length: number;
|
|
11175
11175
|
logs: {
|
|
11176
|
-
type: "
|
|
11176
|
+
type: "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" | "fn" | "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" | "i" | "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";
|
|
11177
11177
|
date: string;
|
|
11178
11178
|
isMobile: boolean;
|
|
11179
11179
|
log_id: string;
|
|
@@ -12013,7 +12013,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12013
12013
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12014
12014
|
custom_domain_id: string;
|
|
12015
12015
|
primary: boolean;
|
|
12016
|
-
status: "
|
|
12016
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12017
12017
|
verification_method?: "txt" | undefined;
|
|
12018
12018
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12019
12019
|
domain_metadata?: {
|
|
@@ -12054,7 +12054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12054
12054
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12055
12055
|
custom_domain_id: string;
|
|
12056
12056
|
primary: boolean;
|
|
12057
|
-
status: "
|
|
12057
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12058
12058
|
verification_method?: "txt" | undefined;
|
|
12059
12059
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12060
12060
|
domain_metadata?: {
|
|
@@ -12118,7 +12118,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12118
12118
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12119
12119
|
custom_domain_id: string;
|
|
12120
12120
|
primary: boolean;
|
|
12121
|
-
status: "
|
|
12121
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12122
12122
|
verification_method?: "txt" | undefined;
|
|
12123
12123
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12124
12124
|
domain_metadata?: {
|
|
@@ -12165,7 +12165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12165
12165
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12166
12166
|
custom_domain_id: string;
|
|
12167
12167
|
primary: boolean;
|
|
12168
|
-
status: "
|
|
12168
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12169
12169
|
verification_method?: "txt" | undefined;
|
|
12170
12170
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12171
12171
|
domain_metadata?: {
|
|
@@ -12211,7 +12211,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12211
12211
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12212
12212
|
custom_domain_id: string;
|
|
12213
12213
|
primary: boolean;
|
|
12214
|
-
status: "
|
|
12214
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12215
12215
|
verification_method?: "txt" | undefined;
|
|
12216
12216
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12217
12217
|
domain_metadata?: {
|
|
@@ -12252,7 +12252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12252
12252
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12253
12253
|
custom_domain_id: string;
|
|
12254
12254
|
primary: boolean;
|
|
12255
|
-
status: "
|
|
12255
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12256
12256
|
verification_method?: "txt" | undefined;
|
|
12257
12257
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12258
12258
|
domain_metadata?: {
|
|
@@ -12859,7 +12859,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12859
12859
|
logs: {
|
|
12860
12860
|
action_name: string;
|
|
12861
12861
|
lines: {
|
|
12862
|
-
level: "
|
|
12862
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
12863
12863
|
message: string;
|
|
12864
12864
|
}[];
|
|
12865
12865
|
}[];
|
|
@@ -13526,7 +13526,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13526
13526
|
args: import("hono/utils/types").JSONValue[];
|
|
13527
13527
|
}[];
|
|
13528
13528
|
logs: {
|
|
13529
|
-
level: "
|
|
13529
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13530
13530
|
message: string;
|
|
13531
13531
|
}[];
|
|
13532
13532
|
error?: string | undefined;
|
|
@@ -13824,7 +13824,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13824
13824
|
scope?: string | undefined;
|
|
13825
13825
|
grant_types?: string[] | undefined;
|
|
13826
13826
|
response_types?: string[] | undefined;
|
|
13827
|
-
token_endpoint_auth_method?: "
|
|
13827
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13828
13828
|
jwks_uri?: string | undefined;
|
|
13829
13829
|
jwks?: Record<string, unknown> | undefined;
|
|
13830
13830
|
software_id?: string | undefined;
|
|
@@ -13913,7 +13913,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13913
13913
|
scope?: string | undefined;
|
|
13914
13914
|
grant_types?: string[] | undefined;
|
|
13915
13915
|
response_types?: string[] | undefined;
|
|
13916
|
-
token_endpoint_auth_method?: "
|
|
13916
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13917
13917
|
jwks_uri?: string | undefined;
|
|
13918
13918
|
jwks?: Record<string, unknown> | undefined;
|
|
13919
13919
|
software_id?: string | undefined;
|
|
@@ -14259,13 +14259,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14259
14259
|
email: string;
|
|
14260
14260
|
send: "code" | "link";
|
|
14261
14261
|
authParams: {
|
|
14262
|
+
audience?: string | undefined;
|
|
14262
14263
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14263
14264
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14264
14265
|
scope?: string | undefined;
|
|
14265
14266
|
username?: string | undefined;
|
|
14266
|
-
audience?: string | undefined;
|
|
14267
|
-
state?: string | undefined;
|
|
14268
14267
|
organization?: string | undefined;
|
|
14268
|
+
state?: string | undefined;
|
|
14269
14269
|
nonce?: string | undefined;
|
|
14270
14270
|
act_as?: string | undefined;
|
|
14271
14271
|
redirect_uri?: string | undefined;
|
|
@@ -14295,13 +14295,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14295
14295
|
phone_number: string;
|
|
14296
14296
|
send: "code" | "link";
|
|
14297
14297
|
authParams: {
|
|
14298
|
+
audience?: string | undefined;
|
|
14298
14299
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14299
14300
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14300
14301
|
scope?: string | undefined;
|
|
14301
14302
|
username?: string | undefined;
|
|
14302
|
-
audience?: string | undefined;
|
|
14303
|
-
state?: string | undefined;
|
|
14304
14303
|
organization?: string | undefined;
|
|
14304
|
+
state?: string | undefined;
|
|
14305
14305
|
nonce?: string | undefined;
|
|
14306
14306
|
act_as?: string | undefined;
|
|
14307
14307
|
redirect_uri?: string | undefined;
|
|
@@ -14439,14 +14439,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14439
14439
|
input: {
|
|
14440
14440
|
form: {
|
|
14441
14441
|
token: string;
|
|
14442
|
-
token_type_hint?: "
|
|
14442
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14443
14443
|
client_id?: string | undefined;
|
|
14444
14444
|
client_secret?: string | undefined;
|
|
14445
14445
|
};
|
|
14446
14446
|
} & {
|
|
14447
14447
|
json: {
|
|
14448
14448
|
token: string;
|
|
14449
|
-
token_type_hint?: "
|
|
14449
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14450
14450
|
client_id?: string | undefined;
|
|
14451
14451
|
client_secret?: string | undefined;
|
|
14452
14452
|
};
|
|
@@ -14458,14 +14458,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14458
14458
|
input: {
|
|
14459
14459
|
form: {
|
|
14460
14460
|
token: string;
|
|
14461
|
-
token_type_hint?: "
|
|
14461
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14462
14462
|
client_id?: string | undefined;
|
|
14463
14463
|
client_secret?: string | undefined;
|
|
14464
14464
|
};
|
|
14465
14465
|
} & {
|
|
14466
14466
|
json: {
|
|
14467
14467
|
token: string;
|
|
14468
|
-
token_type_hint?: "
|
|
14468
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14469
14469
|
client_id?: string | undefined;
|
|
14470
14470
|
client_secret?: string | undefined;
|
|
14471
14471
|
};
|
|
@@ -14480,14 +14480,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14480
14480
|
input: {
|
|
14481
14481
|
form: {
|
|
14482
14482
|
token: string;
|
|
14483
|
-
token_type_hint?: "
|
|
14483
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14484
14484
|
client_id?: string | undefined;
|
|
14485
14485
|
client_secret?: string | undefined;
|
|
14486
14486
|
};
|
|
14487
14487
|
} & {
|
|
14488
14488
|
json: {
|
|
14489
14489
|
token: string;
|
|
14490
|
-
token_type_hint?: "
|
|
14490
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14491
14491
|
client_id?: string | undefined;
|
|
14492
14492
|
client_secret?: string | undefined;
|
|
14493
14493
|
};
|
|
@@ -14537,7 +14537,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14537
14537
|
client_id: string;
|
|
14538
14538
|
username: string;
|
|
14539
14539
|
otp: string;
|
|
14540
|
-
realm: "
|
|
14540
|
+
realm: "sms" | "email";
|
|
14541
14541
|
} | {
|
|
14542
14542
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14543
14543
|
subject_token: string;
|
|
@@ -14584,7 +14584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14584
14584
|
client_id: string;
|
|
14585
14585
|
username: string;
|
|
14586
14586
|
otp: string;
|
|
14587
|
-
realm: "
|
|
14587
|
+
realm: "sms" | "email";
|
|
14588
14588
|
} | {
|
|
14589
14589
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14590
14590
|
subject_token: string;
|
|
@@ -14636,7 +14636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14636
14636
|
client_id: string;
|
|
14637
14637
|
username: string;
|
|
14638
14638
|
otp: string;
|
|
14639
|
-
realm: "
|
|
14639
|
+
realm: "sms" | "email";
|
|
14640
14640
|
} | {
|
|
14641
14641
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14642
14642
|
subject_token: string;
|
|
@@ -14683,7 +14683,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14683
14683
|
client_id: string;
|
|
14684
14684
|
username: string;
|
|
14685
14685
|
otp: string;
|
|
14686
|
-
realm: "
|
|
14686
|
+
realm: "sms" | "email";
|
|
14687
14687
|
} | {
|
|
14688
14688
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14689
14689
|
subject_token: string;
|
|
@@ -14743,7 +14743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14743
14743
|
client_id: string;
|
|
14744
14744
|
username: string;
|
|
14745
14745
|
otp: string;
|
|
14746
|
-
realm: "
|
|
14746
|
+
realm: "sms" | "email";
|
|
14747
14747
|
} | {
|
|
14748
14748
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14749
14749
|
subject_token: string;
|
|
@@ -14790,7 +14790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14790
14790
|
client_id: string;
|
|
14791
14791
|
username: string;
|
|
14792
14792
|
otp: string;
|
|
14793
|
-
realm: "
|
|
14793
|
+
realm: "sms" | "email";
|
|
14794
14794
|
} | {
|
|
14795
14795
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14796
14796
|
subject_token: string;
|
|
@@ -14845,7 +14845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14845
14845
|
client_id: string;
|
|
14846
14846
|
username: string;
|
|
14847
14847
|
otp: string;
|
|
14848
|
-
realm: "
|
|
14848
|
+
realm: "sms" | "email";
|
|
14849
14849
|
} | {
|
|
14850
14850
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14851
14851
|
subject_token: string;
|
|
@@ -14892,7 +14892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14892
14892
|
client_id: string;
|
|
14893
14893
|
username: string;
|
|
14894
14894
|
otp: string;
|
|
14895
|
-
realm: "
|
|
14895
|
+
realm: "sms" | "email";
|
|
14896
14896
|
} | {
|
|
14897
14897
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14898
14898
|
subject_token: string;
|
|
@@ -14947,7 +14947,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14947
14947
|
client_id: string;
|
|
14948
14948
|
username: string;
|
|
14949
14949
|
otp: string;
|
|
14950
|
-
realm: "
|
|
14950
|
+
realm: "sms" | "email";
|
|
14951
14951
|
} | {
|
|
14952
14952
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
14953
14953
|
subject_token: string;
|
|
@@ -14994,7 +14994,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14994
14994
|
client_id: string;
|
|
14995
14995
|
username: string;
|
|
14996
14996
|
otp: string;
|
|
14997
|
-
realm: "
|
|
14997
|
+
realm: "sms" | "email";
|
|
14998
14998
|
} | {
|
|
14999
14999
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15000
15000
|
subject_token: string;
|
|
@@ -16214,7 +16214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16214
16214
|
$get: {
|
|
16215
16215
|
input: {
|
|
16216
16216
|
param: {
|
|
16217
|
-
screen: "signup" | "
|
|
16217
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16218
16218
|
};
|
|
16219
16219
|
} & {
|
|
16220
16220
|
query: {
|
|
@@ -16230,7 +16230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16230
16230
|
} | {
|
|
16231
16231
|
input: {
|
|
16232
16232
|
param: {
|
|
16233
|
-
screen: "signup" | "
|
|
16233
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16234
16234
|
};
|
|
16235
16235
|
} & {
|
|
16236
16236
|
query: {
|
|
@@ -16246,7 +16246,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16246
16246
|
} | {
|
|
16247
16247
|
input: {
|
|
16248
16248
|
param: {
|
|
16249
|
-
screen: "signup" | "
|
|
16249
|
+
screen: "signup" | "account" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16250
16250
|
};
|
|
16251
16251
|
} & {
|
|
16252
16252
|
query: {
|
|
@@ -16266,7 +16266,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16266
16266
|
$post: {
|
|
16267
16267
|
input: {
|
|
16268
16268
|
param: {
|
|
16269
|
-
screen: "signup" | "
|
|
16269
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16270
16270
|
};
|
|
16271
16271
|
} & {
|
|
16272
16272
|
query: {
|
|
@@ -16284,7 +16284,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16284
16284
|
} | {
|
|
16285
16285
|
input: {
|
|
16286
16286
|
param: {
|
|
16287
|
-
screen: "signup" | "
|
|
16287
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16288
16288
|
};
|
|
16289
16289
|
} & {
|
|
16290
16290
|
query: {
|
|
@@ -16302,7 +16302,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16302
16302
|
} | {
|
|
16303
16303
|
input: {
|
|
16304
16304
|
param: {
|
|
16305
|
-
screen: "signup" | "
|
|
16305
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16306
16306
|
};
|
|
16307
16307
|
} & {
|
|
16308
16308
|
query: {
|