authhero 9.7.0 → 9.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/authhero.cjs +144 -144
- package/dist/authhero.d.ts +334 -242
- package/dist/authhero.mjs +11866 -11658
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/constants.d.ts +2 -0
- package/dist/types/helpers/signing-keys.d.ts +11 -0
- package/dist/types/index.d.ts +324 -242
- package/dist/types/routes/auth-api/index.d.ts +21 -21
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/index.d.ts +298 -216
- package/dist/types/routes/management-api/keys.d.ts +86 -4
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +18 -18
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +12 -12
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/encryption.d.ts +51 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +3 -3
package/dist/types/index.d.ts
CHANGED
|
@@ -80,8 +80,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
80
80
|
$get: {
|
|
81
81
|
input: {
|
|
82
82
|
query: {
|
|
83
|
-
include_password_hashes?: "
|
|
84
|
-
gzip?: "
|
|
83
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
84
|
+
gzip?: "true" | "false" | undefined;
|
|
85
85
|
};
|
|
86
86
|
} & {
|
|
87
87
|
header: {
|
|
@@ -94,8 +94,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
94
94
|
} | {
|
|
95
95
|
input: {
|
|
96
96
|
query: {
|
|
97
|
-
include_password_hashes?: "
|
|
98
|
-
gzip?: "
|
|
97
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
98
|
+
gzip?: "true" | "false" | undefined;
|
|
99
99
|
};
|
|
100
100
|
} & {
|
|
101
101
|
header: {
|
|
@@ -114,7 +114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
114
114
|
$post: {
|
|
115
115
|
input: {
|
|
116
116
|
query: {
|
|
117
|
-
include_password_hashes?: "
|
|
117
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
118
118
|
};
|
|
119
119
|
} & {
|
|
120
120
|
header: {
|
|
@@ -1275,10 +1275,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1275
1275
|
email?: string | undefined;
|
|
1276
1276
|
};
|
|
1277
1277
|
id?: string | undefined;
|
|
1278
|
+
roles?: string[] | undefined;
|
|
1278
1279
|
app_metadata?: Record<string, any> | undefined;
|
|
1279
1280
|
user_metadata?: Record<string, any> | undefined;
|
|
1280
1281
|
connection_id?: string | undefined;
|
|
1281
|
-
roles?: string[] | undefined;
|
|
1282
1282
|
ttl_sec?: number | undefined;
|
|
1283
1283
|
send_invitation_email?: boolean | undefined;
|
|
1284
1284
|
};
|
|
@@ -1463,8 +1463,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1463
1463
|
};
|
|
1464
1464
|
} & {
|
|
1465
1465
|
json: {
|
|
1466
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1467
1466
|
show_as_button?: boolean | undefined;
|
|
1467
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1468
1468
|
is_signup_enabled?: boolean | undefined;
|
|
1469
1469
|
};
|
|
1470
1470
|
};
|
|
@@ -2036,8 +2036,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2036
2036
|
} & {
|
|
2037
2037
|
query: {
|
|
2038
2038
|
page?: string | undefined;
|
|
2039
|
-
include_totals?: string | undefined;
|
|
2040
2039
|
from?: string | undefined;
|
|
2040
|
+
include_totals?: string | undefined;
|
|
2041
2041
|
per_page?: string | undefined;
|
|
2042
2042
|
take?: string | undefined;
|
|
2043
2043
|
};
|
|
@@ -2760,7 +2760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2760
2760
|
hint?: string | undefined;
|
|
2761
2761
|
messages?: {
|
|
2762
2762
|
text: string;
|
|
2763
|
-
type: "
|
|
2763
|
+
type: "success" | "error" | "info" | "warning";
|
|
2764
2764
|
id?: number | undefined;
|
|
2765
2765
|
}[] | undefined;
|
|
2766
2766
|
required?: boolean | undefined;
|
|
@@ -2778,7 +2778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2778
2778
|
hint?: string | undefined;
|
|
2779
2779
|
messages?: {
|
|
2780
2780
|
text: string;
|
|
2781
|
-
type: "
|
|
2781
|
+
type: "success" | "error" | "info" | "warning";
|
|
2782
2782
|
id?: number | undefined;
|
|
2783
2783
|
}[] | undefined;
|
|
2784
2784
|
required?: boolean | undefined;
|
|
@@ -2802,7 +2802,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2802
2802
|
hint?: string | undefined;
|
|
2803
2803
|
messages?: {
|
|
2804
2804
|
text: string;
|
|
2805
|
-
type: "
|
|
2805
|
+
type: "success" | "error" | "info" | "warning";
|
|
2806
2806
|
id?: number | undefined;
|
|
2807
2807
|
}[] | undefined;
|
|
2808
2808
|
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;
|
|
@@ -2850,7 +2850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2850
2850
|
hint?: string | undefined;
|
|
2851
2851
|
messages?: {
|
|
2852
2852
|
text: string;
|
|
2853
|
-
type: "
|
|
2853
|
+
type: "success" | "error" | "info" | "warning";
|
|
2854
2854
|
id?: number | undefined;
|
|
2855
2855
|
}[] | undefined;
|
|
2856
2856
|
required?: boolean | undefined;
|
|
@@ -2879,7 +2879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2879
2879
|
hint?: string | undefined;
|
|
2880
2880
|
messages?: {
|
|
2881
2881
|
text: string;
|
|
2882
|
-
type: "
|
|
2882
|
+
type: "success" | "error" | "info" | "warning";
|
|
2883
2883
|
id?: number | undefined;
|
|
2884
2884
|
}[] | undefined;
|
|
2885
2885
|
required?: boolean | undefined;
|
|
@@ -2894,7 +2894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2894
2894
|
hint?: string | undefined;
|
|
2895
2895
|
messages?: {
|
|
2896
2896
|
text: string;
|
|
2897
|
-
type: "
|
|
2897
|
+
type: "success" | "error" | "info" | "warning";
|
|
2898
2898
|
id?: number | undefined;
|
|
2899
2899
|
}[] | undefined;
|
|
2900
2900
|
required?: boolean | undefined;
|
|
@@ -2915,7 +2915,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2915
2915
|
hint?: string | undefined;
|
|
2916
2916
|
messages?: {
|
|
2917
2917
|
text: string;
|
|
2918
|
-
type: "
|
|
2918
|
+
type: "success" | "error" | "info" | "warning";
|
|
2919
2919
|
id?: number | undefined;
|
|
2920
2920
|
}[] | undefined;
|
|
2921
2921
|
required?: boolean | undefined;
|
|
@@ -2940,7 +2940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2940
2940
|
hint?: string | undefined;
|
|
2941
2941
|
messages?: {
|
|
2942
2942
|
text: string;
|
|
2943
|
-
type: "
|
|
2943
|
+
type: "success" | "error" | "info" | "warning";
|
|
2944
2944
|
id?: number | undefined;
|
|
2945
2945
|
}[] | undefined;
|
|
2946
2946
|
required?: boolean | undefined;
|
|
@@ -2961,7 +2961,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2961
2961
|
hint?: string | undefined;
|
|
2962
2962
|
messages?: {
|
|
2963
2963
|
text: string;
|
|
2964
|
-
type: "
|
|
2964
|
+
type: "success" | "error" | "info" | "warning";
|
|
2965
2965
|
id?: number | undefined;
|
|
2966
2966
|
}[] | undefined;
|
|
2967
2967
|
required?: boolean | undefined;
|
|
@@ -2981,7 +2981,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2981
2981
|
hint?: string | undefined;
|
|
2982
2982
|
messages?: {
|
|
2983
2983
|
text: string;
|
|
2984
|
-
type: "
|
|
2984
|
+
type: "success" | "error" | "info" | "warning";
|
|
2985
2985
|
id?: number | undefined;
|
|
2986
2986
|
}[] | undefined;
|
|
2987
2987
|
required?: boolean | undefined;
|
|
@@ -3000,7 +3000,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3000
3000
|
hint?: string | undefined;
|
|
3001
3001
|
messages?: {
|
|
3002
3002
|
text: string;
|
|
3003
|
-
type: "
|
|
3003
|
+
type: "success" | "error" | "info" | "warning";
|
|
3004
3004
|
id?: number | undefined;
|
|
3005
3005
|
}[] | undefined;
|
|
3006
3006
|
required?: boolean | undefined;
|
|
@@ -3022,7 +3022,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3022
3022
|
hint?: string | undefined;
|
|
3023
3023
|
messages?: {
|
|
3024
3024
|
text: string;
|
|
3025
|
-
type: "
|
|
3025
|
+
type: "success" | "error" | "info" | "warning";
|
|
3026
3026
|
id?: number | undefined;
|
|
3027
3027
|
}[] | undefined;
|
|
3028
3028
|
required?: boolean | undefined;
|
|
@@ -3044,7 +3044,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3044
3044
|
hint?: string | undefined;
|
|
3045
3045
|
messages?: {
|
|
3046
3046
|
text: string;
|
|
3047
|
-
type: "
|
|
3047
|
+
type: "success" | "error" | "info" | "warning";
|
|
3048
3048
|
id?: number | undefined;
|
|
3049
3049
|
}[] | undefined;
|
|
3050
3050
|
required?: boolean | undefined;
|
|
@@ -3063,7 +3063,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3063
3063
|
hint?: string | undefined;
|
|
3064
3064
|
messages?: {
|
|
3065
3065
|
text: string;
|
|
3066
|
-
type: "
|
|
3066
|
+
type: "success" | "error" | "info" | "warning";
|
|
3067
3067
|
id?: number | undefined;
|
|
3068
3068
|
}[] | undefined;
|
|
3069
3069
|
required?: boolean | undefined;
|
|
@@ -3090,7 +3090,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3090
3090
|
hint?: string | undefined;
|
|
3091
3091
|
messages?: {
|
|
3092
3092
|
text: string;
|
|
3093
|
-
type: "
|
|
3093
|
+
type: "success" | "error" | "info" | "warning";
|
|
3094
3094
|
id?: number | undefined;
|
|
3095
3095
|
}[] | undefined;
|
|
3096
3096
|
required?: boolean | undefined;
|
|
@@ -3111,7 +3111,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3111
3111
|
hint?: string | undefined;
|
|
3112
3112
|
messages?: {
|
|
3113
3113
|
text: string;
|
|
3114
|
-
type: "
|
|
3114
|
+
type: "success" | "error" | "info" | "warning";
|
|
3115
3115
|
id?: number | undefined;
|
|
3116
3116
|
}[] | undefined;
|
|
3117
3117
|
required?: boolean | undefined;
|
|
@@ -3134,7 +3134,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3134
3134
|
hint?: string | undefined;
|
|
3135
3135
|
messages?: {
|
|
3136
3136
|
text: string;
|
|
3137
|
-
type: "
|
|
3137
|
+
type: "success" | "error" | "info" | "warning";
|
|
3138
3138
|
id?: number | undefined;
|
|
3139
3139
|
}[] | undefined;
|
|
3140
3140
|
required?: boolean | undefined;
|
|
@@ -3367,7 +3367,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3367
3367
|
hint?: string | undefined;
|
|
3368
3368
|
messages?: {
|
|
3369
3369
|
text: string;
|
|
3370
|
-
type: "
|
|
3370
|
+
type: "success" | "error" | "info" | "warning";
|
|
3371
3371
|
id?: number | undefined;
|
|
3372
3372
|
}[] | undefined;
|
|
3373
3373
|
required?: boolean | undefined;
|
|
@@ -3385,7 +3385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3385
3385
|
hint?: string | undefined;
|
|
3386
3386
|
messages?: {
|
|
3387
3387
|
text: string;
|
|
3388
|
-
type: "
|
|
3388
|
+
type: "success" | "error" | "info" | "warning";
|
|
3389
3389
|
id?: number | undefined;
|
|
3390
3390
|
}[] | undefined;
|
|
3391
3391
|
required?: boolean | undefined;
|
|
@@ -3409,7 +3409,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3409
3409
|
hint?: string | undefined;
|
|
3410
3410
|
messages?: {
|
|
3411
3411
|
text: string;
|
|
3412
|
-
type: "
|
|
3412
|
+
type: "success" | "error" | "info" | "warning";
|
|
3413
3413
|
id?: number | undefined;
|
|
3414
3414
|
}[] | undefined;
|
|
3415
3415
|
required?: boolean | undefined;
|
|
@@ -3433,7 +3433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3433
3433
|
hint?: string | undefined;
|
|
3434
3434
|
messages?: {
|
|
3435
3435
|
text: string;
|
|
3436
|
-
type: "
|
|
3436
|
+
type: "success" | "error" | "info" | "warning";
|
|
3437
3437
|
id?: number | undefined;
|
|
3438
3438
|
}[] | undefined;
|
|
3439
3439
|
required?: boolean | undefined;
|
|
@@ -3457,7 +3457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3457
3457
|
hint?: string | undefined;
|
|
3458
3458
|
messages?: {
|
|
3459
3459
|
text: string;
|
|
3460
|
-
type: "
|
|
3460
|
+
type: "success" | "error" | "info" | "warning";
|
|
3461
3461
|
id?: number | undefined;
|
|
3462
3462
|
}[] | undefined;
|
|
3463
3463
|
required?: boolean | undefined;
|
|
@@ -3486,7 +3486,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3486
3486
|
hint?: string | undefined;
|
|
3487
3487
|
messages?: {
|
|
3488
3488
|
text: string;
|
|
3489
|
-
type: "
|
|
3489
|
+
type: "success" | "error" | "info" | "warning";
|
|
3490
3490
|
id?: number | undefined;
|
|
3491
3491
|
}[] | undefined;
|
|
3492
3492
|
required?: boolean | undefined;
|
|
@@ -3501,7 +3501,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3501
3501
|
hint?: string | undefined;
|
|
3502
3502
|
messages?: {
|
|
3503
3503
|
text: string;
|
|
3504
|
-
type: "
|
|
3504
|
+
type: "success" | "error" | "info" | "warning";
|
|
3505
3505
|
id?: number | undefined;
|
|
3506
3506
|
}[] | undefined;
|
|
3507
3507
|
required?: boolean | undefined;
|
|
@@ -3522,7 +3522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3522
3522
|
hint?: string | undefined;
|
|
3523
3523
|
messages?: {
|
|
3524
3524
|
text: string;
|
|
3525
|
-
type: "
|
|
3525
|
+
type: "success" | "error" | "info" | "warning";
|
|
3526
3526
|
id?: number | undefined;
|
|
3527
3527
|
}[] | undefined;
|
|
3528
3528
|
required?: boolean | undefined;
|
|
@@ -3547,7 +3547,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3547
3547
|
hint?: string | undefined;
|
|
3548
3548
|
messages?: {
|
|
3549
3549
|
text: string;
|
|
3550
|
-
type: "
|
|
3550
|
+
type: "success" | "error" | "info" | "warning";
|
|
3551
3551
|
id?: number | undefined;
|
|
3552
3552
|
}[] | undefined;
|
|
3553
3553
|
required?: boolean | undefined;
|
|
@@ -3568,7 +3568,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3568
3568
|
hint?: string | undefined;
|
|
3569
3569
|
messages?: {
|
|
3570
3570
|
text: string;
|
|
3571
|
-
type: "
|
|
3571
|
+
type: "success" | "error" | "info" | "warning";
|
|
3572
3572
|
id?: number | undefined;
|
|
3573
3573
|
}[] | undefined;
|
|
3574
3574
|
required?: boolean | undefined;
|
|
@@ -3588,7 +3588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3588
3588
|
hint?: string | undefined;
|
|
3589
3589
|
messages?: {
|
|
3590
3590
|
text: string;
|
|
3591
|
-
type: "
|
|
3591
|
+
type: "success" | "error" | "info" | "warning";
|
|
3592
3592
|
id?: number | undefined;
|
|
3593
3593
|
}[] | undefined;
|
|
3594
3594
|
required?: boolean | undefined;
|
|
@@ -3607,7 +3607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3607
3607
|
hint?: string | undefined;
|
|
3608
3608
|
messages?: {
|
|
3609
3609
|
text: string;
|
|
3610
|
-
type: "
|
|
3610
|
+
type: "success" | "error" | "info" | "warning";
|
|
3611
3611
|
id?: number | undefined;
|
|
3612
3612
|
}[] | undefined;
|
|
3613
3613
|
required?: boolean | undefined;
|
|
@@ -3629,7 +3629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3629
3629
|
hint?: string | undefined;
|
|
3630
3630
|
messages?: {
|
|
3631
3631
|
text: string;
|
|
3632
|
-
type: "
|
|
3632
|
+
type: "success" | "error" | "info" | "warning";
|
|
3633
3633
|
id?: number | undefined;
|
|
3634
3634
|
}[] | undefined;
|
|
3635
3635
|
required?: boolean | undefined;
|
|
@@ -3651,7 +3651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3651
3651
|
hint?: string | undefined;
|
|
3652
3652
|
messages?: {
|
|
3653
3653
|
text: string;
|
|
3654
|
-
type: "
|
|
3654
|
+
type: "success" | "error" | "info" | "warning";
|
|
3655
3655
|
id?: number | undefined;
|
|
3656
3656
|
}[] | undefined;
|
|
3657
3657
|
required?: boolean | undefined;
|
|
@@ -3670,7 +3670,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3670
3670
|
hint?: string | undefined;
|
|
3671
3671
|
messages?: {
|
|
3672
3672
|
text: string;
|
|
3673
|
-
type: "
|
|
3673
|
+
type: "success" | "error" | "info" | "warning";
|
|
3674
3674
|
id?: number | undefined;
|
|
3675
3675
|
}[] | undefined;
|
|
3676
3676
|
required?: boolean | undefined;
|
|
@@ -3697,7 +3697,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3697
3697
|
hint?: string | undefined;
|
|
3698
3698
|
messages?: {
|
|
3699
3699
|
text: string;
|
|
3700
|
-
type: "
|
|
3700
|
+
type: "success" | "error" | "info" | "warning";
|
|
3701
3701
|
id?: number | undefined;
|
|
3702
3702
|
}[] | undefined;
|
|
3703
3703
|
required?: boolean | undefined;
|
|
@@ -3718,7 +3718,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3718
3718
|
hint?: string | undefined;
|
|
3719
3719
|
messages?: {
|
|
3720
3720
|
text: string;
|
|
3721
|
-
type: "
|
|
3721
|
+
type: "success" | "error" | "info" | "warning";
|
|
3722
3722
|
id?: number | undefined;
|
|
3723
3723
|
}[] | undefined;
|
|
3724
3724
|
required?: boolean | undefined;
|
|
@@ -3741,7 +3741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3741
3741
|
hint?: string | undefined;
|
|
3742
3742
|
messages?: {
|
|
3743
3743
|
text: string;
|
|
3744
|
-
type: "
|
|
3744
|
+
type: "success" | "error" | "info" | "warning";
|
|
3745
3745
|
id?: number | undefined;
|
|
3746
3746
|
}[] | undefined;
|
|
3747
3747
|
required?: boolean | undefined;
|
|
@@ -3990,7 +3990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3990
3990
|
hint?: string | undefined;
|
|
3991
3991
|
messages?: {
|
|
3992
3992
|
text: string;
|
|
3993
|
-
type: "
|
|
3993
|
+
type: "success" | "error" | "info" | "warning";
|
|
3994
3994
|
id?: number | undefined;
|
|
3995
3995
|
}[] | undefined;
|
|
3996
3996
|
required?: boolean | undefined;
|
|
@@ -4008,7 +4008,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4008
4008
|
hint?: string | undefined;
|
|
4009
4009
|
messages?: {
|
|
4010
4010
|
text: string;
|
|
4011
|
-
type: "
|
|
4011
|
+
type: "success" | "error" | "info" | "warning";
|
|
4012
4012
|
id?: number | undefined;
|
|
4013
4013
|
}[] | undefined;
|
|
4014
4014
|
required?: boolean | undefined;
|
|
@@ -4032,7 +4032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4032
4032
|
hint?: string | undefined;
|
|
4033
4033
|
messages?: {
|
|
4034
4034
|
text: string;
|
|
4035
|
-
type: "
|
|
4035
|
+
type: "success" | "error" | "info" | "warning";
|
|
4036
4036
|
id?: number | undefined;
|
|
4037
4037
|
}[] | undefined;
|
|
4038
4038
|
required?: boolean | undefined;
|
|
@@ -4056,7 +4056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4056
4056
|
hint?: string | undefined;
|
|
4057
4057
|
messages?: {
|
|
4058
4058
|
text: string;
|
|
4059
|
-
type: "
|
|
4059
|
+
type: "success" | "error" | "info" | "warning";
|
|
4060
4060
|
id?: number | undefined;
|
|
4061
4061
|
}[] | undefined;
|
|
4062
4062
|
required?: boolean | undefined;
|
|
@@ -4080,7 +4080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4080
4080
|
hint?: string | undefined;
|
|
4081
4081
|
messages?: {
|
|
4082
4082
|
text: string;
|
|
4083
|
-
type: "
|
|
4083
|
+
type: "success" | "error" | "info" | "warning";
|
|
4084
4084
|
id?: number | undefined;
|
|
4085
4085
|
}[] | undefined;
|
|
4086
4086
|
required?: boolean | undefined;
|
|
@@ -4109,7 +4109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4109
4109
|
hint?: string | undefined;
|
|
4110
4110
|
messages?: {
|
|
4111
4111
|
text: string;
|
|
4112
|
-
type: "
|
|
4112
|
+
type: "success" | "error" | "info" | "warning";
|
|
4113
4113
|
id?: number | undefined;
|
|
4114
4114
|
}[] | undefined;
|
|
4115
4115
|
required?: boolean | undefined;
|
|
@@ -4124,7 +4124,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4124
4124
|
hint?: string | undefined;
|
|
4125
4125
|
messages?: {
|
|
4126
4126
|
text: string;
|
|
4127
|
-
type: "
|
|
4127
|
+
type: "success" | "error" | "info" | "warning";
|
|
4128
4128
|
id?: number | undefined;
|
|
4129
4129
|
}[] | undefined;
|
|
4130
4130
|
required?: boolean | undefined;
|
|
@@ -4145,7 +4145,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4145
4145
|
hint?: string | undefined;
|
|
4146
4146
|
messages?: {
|
|
4147
4147
|
text: string;
|
|
4148
|
-
type: "
|
|
4148
|
+
type: "success" | "error" | "info" | "warning";
|
|
4149
4149
|
id?: number | undefined;
|
|
4150
4150
|
}[] | undefined;
|
|
4151
4151
|
required?: boolean | undefined;
|
|
@@ -4170,7 +4170,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4170
4170
|
hint?: string | undefined;
|
|
4171
4171
|
messages?: {
|
|
4172
4172
|
text: string;
|
|
4173
|
-
type: "
|
|
4173
|
+
type: "success" | "error" | "info" | "warning";
|
|
4174
4174
|
id?: number | undefined;
|
|
4175
4175
|
}[] | undefined;
|
|
4176
4176
|
required?: boolean | undefined;
|
|
@@ -4191,7 +4191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4191
4191
|
hint?: string | undefined;
|
|
4192
4192
|
messages?: {
|
|
4193
4193
|
text: string;
|
|
4194
|
-
type: "
|
|
4194
|
+
type: "success" | "error" | "info" | "warning";
|
|
4195
4195
|
id?: number | undefined;
|
|
4196
4196
|
}[] | undefined;
|
|
4197
4197
|
required?: boolean | undefined;
|
|
@@ -4211,7 +4211,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4211
4211
|
hint?: string | undefined;
|
|
4212
4212
|
messages?: {
|
|
4213
4213
|
text: string;
|
|
4214
|
-
type: "
|
|
4214
|
+
type: "success" | "error" | "info" | "warning";
|
|
4215
4215
|
id?: number | undefined;
|
|
4216
4216
|
}[] | undefined;
|
|
4217
4217
|
required?: boolean | undefined;
|
|
@@ -4230,7 +4230,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4230
4230
|
hint?: string | undefined;
|
|
4231
4231
|
messages?: {
|
|
4232
4232
|
text: string;
|
|
4233
|
-
type: "
|
|
4233
|
+
type: "success" | "error" | "info" | "warning";
|
|
4234
4234
|
id?: number | undefined;
|
|
4235
4235
|
}[] | undefined;
|
|
4236
4236
|
required?: boolean | undefined;
|
|
@@ -4252,7 +4252,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4252
4252
|
hint?: string | undefined;
|
|
4253
4253
|
messages?: {
|
|
4254
4254
|
text: string;
|
|
4255
|
-
type: "
|
|
4255
|
+
type: "success" | "error" | "info" | "warning";
|
|
4256
4256
|
id?: number | undefined;
|
|
4257
4257
|
}[] | undefined;
|
|
4258
4258
|
required?: boolean | undefined;
|
|
@@ -4274,7 +4274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4274
4274
|
hint?: string | undefined;
|
|
4275
4275
|
messages?: {
|
|
4276
4276
|
text: string;
|
|
4277
|
-
type: "
|
|
4277
|
+
type: "success" | "error" | "info" | "warning";
|
|
4278
4278
|
id?: number | undefined;
|
|
4279
4279
|
}[] | undefined;
|
|
4280
4280
|
required?: boolean | undefined;
|
|
@@ -4293,7 +4293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4293
4293
|
hint?: string | undefined;
|
|
4294
4294
|
messages?: {
|
|
4295
4295
|
text: string;
|
|
4296
|
-
type: "
|
|
4296
|
+
type: "success" | "error" | "info" | "warning";
|
|
4297
4297
|
id?: number | undefined;
|
|
4298
4298
|
}[] | undefined;
|
|
4299
4299
|
required?: boolean | undefined;
|
|
@@ -4320,7 +4320,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4320
4320
|
hint?: string | undefined;
|
|
4321
4321
|
messages?: {
|
|
4322
4322
|
text: string;
|
|
4323
|
-
type: "
|
|
4323
|
+
type: "success" | "error" | "info" | "warning";
|
|
4324
4324
|
id?: number | undefined;
|
|
4325
4325
|
}[] | undefined;
|
|
4326
4326
|
required?: boolean | undefined;
|
|
@@ -4341,7 +4341,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4341
4341
|
hint?: string | undefined;
|
|
4342
4342
|
messages?: {
|
|
4343
4343
|
text: string;
|
|
4344
|
-
type: "
|
|
4344
|
+
type: "success" | "error" | "info" | "warning";
|
|
4345
4345
|
id?: number | undefined;
|
|
4346
4346
|
}[] | undefined;
|
|
4347
4347
|
required?: boolean | undefined;
|
|
@@ -4364,7 +4364,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4364
4364
|
hint?: string | undefined;
|
|
4365
4365
|
messages?: {
|
|
4366
4366
|
text: string;
|
|
4367
|
-
type: "
|
|
4367
|
+
type: "success" | "error" | "info" | "warning";
|
|
4368
4368
|
id?: number | undefined;
|
|
4369
4369
|
}[] | undefined;
|
|
4370
4370
|
required?: boolean | undefined;
|
|
@@ -4618,7 +4618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4618
4618
|
hint?: string | undefined;
|
|
4619
4619
|
messages?: {
|
|
4620
4620
|
text: string;
|
|
4621
|
-
type: "
|
|
4621
|
+
type: "success" | "error" | "info" | "warning";
|
|
4622
4622
|
id?: number | undefined;
|
|
4623
4623
|
}[] | undefined;
|
|
4624
4624
|
required?: boolean | undefined;
|
|
@@ -4636,7 +4636,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4636
4636
|
hint?: string | undefined;
|
|
4637
4637
|
messages?: {
|
|
4638
4638
|
text: string;
|
|
4639
|
-
type: "
|
|
4639
|
+
type: "success" | "error" | "info" | "warning";
|
|
4640
4640
|
id?: number | undefined;
|
|
4641
4641
|
}[] | undefined;
|
|
4642
4642
|
required?: boolean | undefined;
|
|
@@ -4660,7 +4660,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4660
4660
|
hint?: string | undefined;
|
|
4661
4661
|
messages?: {
|
|
4662
4662
|
text: string;
|
|
4663
|
-
type: "
|
|
4663
|
+
type: "success" | "error" | "info" | "warning";
|
|
4664
4664
|
id?: number | undefined;
|
|
4665
4665
|
}[] | undefined;
|
|
4666
4666
|
required?: boolean | undefined;
|
|
@@ -4684,7 +4684,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4684
4684
|
hint?: string | undefined;
|
|
4685
4685
|
messages?: {
|
|
4686
4686
|
text: string;
|
|
4687
|
-
type: "
|
|
4687
|
+
type: "success" | "error" | "info" | "warning";
|
|
4688
4688
|
id?: number | undefined;
|
|
4689
4689
|
}[] | undefined;
|
|
4690
4690
|
required?: boolean | undefined;
|
|
@@ -4708,7 +4708,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4708
4708
|
hint?: string | undefined;
|
|
4709
4709
|
messages?: {
|
|
4710
4710
|
text: string;
|
|
4711
|
-
type: "
|
|
4711
|
+
type: "success" | "error" | "info" | "warning";
|
|
4712
4712
|
id?: number | undefined;
|
|
4713
4713
|
}[] | undefined;
|
|
4714
4714
|
required?: boolean | undefined;
|
|
@@ -4733,7 +4733,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4733
4733
|
hint?: string | undefined;
|
|
4734
4734
|
messages?: {
|
|
4735
4735
|
text: string;
|
|
4736
|
-
type: "
|
|
4736
|
+
type: "success" | "error" | "info" | "warning";
|
|
4737
4737
|
id?: number | undefined;
|
|
4738
4738
|
}[] | undefined;
|
|
4739
4739
|
required?: boolean | undefined;
|
|
@@ -4748,7 +4748,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4748
4748
|
hint?: string | undefined;
|
|
4749
4749
|
messages?: {
|
|
4750
4750
|
text: string;
|
|
4751
|
-
type: "
|
|
4751
|
+
type: "success" | "error" | "info" | "warning";
|
|
4752
4752
|
id?: number | undefined;
|
|
4753
4753
|
}[] | undefined;
|
|
4754
4754
|
required?: boolean | undefined;
|
|
@@ -4769,7 +4769,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4769
4769
|
hint?: string | undefined;
|
|
4770
4770
|
messages?: {
|
|
4771
4771
|
text: string;
|
|
4772
|
-
type: "
|
|
4772
|
+
type: "success" | "error" | "info" | "warning";
|
|
4773
4773
|
id?: number | undefined;
|
|
4774
4774
|
}[] | undefined;
|
|
4775
4775
|
required?: boolean | undefined;
|
|
@@ -4794,7 +4794,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4794
4794
|
hint?: string | undefined;
|
|
4795
4795
|
messages?: {
|
|
4796
4796
|
text: string;
|
|
4797
|
-
type: "
|
|
4797
|
+
type: "success" | "error" | "info" | "warning";
|
|
4798
4798
|
id?: number | undefined;
|
|
4799
4799
|
}[] | undefined;
|
|
4800
4800
|
required?: boolean | undefined;
|
|
@@ -4815,7 +4815,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4815
4815
|
hint?: string | undefined;
|
|
4816
4816
|
messages?: {
|
|
4817
4817
|
text: string;
|
|
4818
|
-
type: "
|
|
4818
|
+
type: "success" | "error" | "info" | "warning";
|
|
4819
4819
|
id?: number | undefined;
|
|
4820
4820
|
}[] | undefined;
|
|
4821
4821
|
required?: boolean | undefined;
|
|
@@ -4835,7 +4835,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4835
4835
|
hint?: string | undefined;
|
|
4836
4836
|
messages?: {
|
|
4837
4837
|
text: string;
|
|
4838
|
-
type: "
|
|
4838
|
+
type: "success" | "error" | "info" | "warning";
|
|
4839
4839
|
id?: number | undefined;
|
|
4840
4840
|
}[] | undefined;
|
|
4841
4841
|
required?: boolean | undefined;
|
|
@@ -4854,7 +4854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4854
4854
|
hint?: string | undefined;
|
|
4855
4855
|
messages?: {
|
|
4856
4856
|
text: string;
|
|
4857
|
-
type: "
|
|
4857
|
+
type: "success" | "error" | "info" | "warning";
|
|
4858
4858
|
id?: number | undefined;
|
|
4859
4859
|
}[] | undefined;
|
|
4860
4860
|
required?: boolean | undefined;
|
|
@@ -4876,7 +4876,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4876
4876
|
hint?: string | undefined;
|
|
4877
4877
|
messages?: {
|
|
4878
4878
|
text: string;
|
|
4879
|
-
type: "
|
|
4879
|
+
type: "success" | "error" | "info" | "warning";
|
|
4880
4880
|
id?: number | undefined;
|
|
4881
4881
|
}[] | undefined;
|
|
4882
4882
|
required?: boolean | undefined;
|
|
@@ -4898,7 +4898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4898
4898
|
hint?: string | undefined;
|
|
4899
4899
|
messages?: {
|
|
4900
4900
|
text: string;
|
|
4901
|
-
type: "
|
|
4901
|
+
type: "success" | "error" | "info" | "warning";
|
|
4902
4902
|
id?: number | undefined;
|
|
4903
4903
|
}[] | undefined;
|
|
4904
4904
|
required?: boolean | undefined;
|
|
@@ -4917,7 +4917,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4917
4917
|
hint?: string | undefined;
|
|
4918
4918
|
messages?: {
|
|
4919
4919
|
text: string;
|
|
4920
|
-
type: "
|
|
4920
|
+
type: "success" | "error" | "info" | "warning";
|
|
4921
4921
|
id?: number | undefined;
|
|
4922
4922
|
}[] | undefined;
|
|
4923
4923
|
required?: boolean | undefined;
|
|
@@ -4944,7 +4944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4944
4944
|
hint?: string | undefined;
|
|
4945
4945
|
messages?: {
|
|
4946
4946
|
text: string;
|
|
4947
|
-
type: "
|
|
4947
|
+
type: "success" | "error" | "info" | "warning";
|
|
4948
4948
|
id?: number | undefined;
|
|
4949
4949
|
}[] | undefined;
|
|
4950
4950
|
required?: boolean | undefined;
|
|
@@ -4965,7 +4965,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4965
4965
|
hint?: string | undefined;
|
|
4966
4966
|
messages?: {
|
|
4967
4967
|
text: string;
|
|
4968
|
-
type: "
|
|
4968
|
+
type: "success" | "error" | "info" | "warning";
|
|
4969
4969
|
id?: number | undefined;
|
|
4970
4970
|
}[] | undefined;
|
|
4971
4971
|
required?: boolean | undefined;
|
|
@@ -4988,7 +4988,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4988
4988
|
hint?: string | undefined;
|
|
4989
4989
|
messages?: {
|
|
4990
4990
|
text: string;
|
|
4991
|
-
type: "
|
|
4991
|
+
type: "success" | "error" | "info" | "warning";
|
|
4992
4992
|
id?: number | undefined;
|
|
4993
4993
|
}[] | undefined;
|
|
4994
4994
|
required?: boolean | undefined;
|
|
@@ -5219,7 +5219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5219
5219
|
hint?: string | undefined;
|
|
5220
5220
|
messages?: {
|
|
5221
5221
|
text: string;
|
|
5222
|
-
type: "
|
|
5222
|
+
type: "success" | "error" | "info" | "warning";
|
|
5223
5223
|
id?: number | undefined;
|
|
5224
5224
|
}[] | undefined;
|
|
5225
5225
|
required?: boolean | undefined;
|
|
@@ -5237,7 +5237,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5237
5237
|
hint?: string | undefined;
|
|
5238
5238
|
messages?: {
|
|
5239
5239
|
text: string;
|
|
5240
|
-
type: "
|
|
5240
|
+
type: "success" | "error" | "info" | "warning";
|
|
5241
5241
|
id?: number | undefined;
|
|
5242
5242
|
}[] | undefined;
|
|
5243
5243
|
required?: boolean | undefined;
|
|
@@ -5261,7 +5261,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5261
5261
|
hint?: string | undefined;
|
|
5262
5262
|
messages?: {
|
|
5263
5263
|
text: string;
|
|
5264
|
-
type: "
|
|
5264
|
+
type: "success" | "error" | "info" | "warning";
|
|
5265
5265
|
id?: number | undefined;
|
|
5266
5266
|
}[] | undefined;
|
|
5267
5267
|
required?: boolean | undefined;
|
|
@@ -5285,7 +5285,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5285
5285
|
hint?: string | undefined;
|
|
5286
5286
|
messages?: {
|
|
5287
5287
|
text: string;
|
|
5288
|
-
type: "
|
|
5288
|
+
type: "success" | "error" | "info" | "warning";
|
|
5289
5289
|
id?: number | undefined;
|
|
5290
5290
|
}[] | undefined;
|
|
5291
5291
|
required?: boolean | undefined;
|
|
@@ -5309,7 +5309,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5309
5309
|
hint?: string | undefined;
|
|
5310
5310
|
messages?: {
|
|
5311
5311
|
text: string;
|
|
5312
|
-
type: "
|
|
5312
|
+
type: "success" | "error" | "info" | "warning";
|
|
5313
5313
|
id?: number | undefined;
|
|
5314
5314
|
}[] | undefined;
|
|
5315
5315
|
required?: boolean | undefined;
|
|
@@ -5338,7 +5338,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5338
5338
|
hint?: string | undefined;
|
|
5339
5339
|
messages?: {
|
|
5340
5340
|
text: string;
|
|
5341
|
-
type: "
|
|
5341
|
+
type: "success" | "error" | "info" | "warning";
|
|
5342
5342
|
id?: number | undefined;
|
|
5343
5343
|
}[] | undefined;
|
|
5344
5344
|
required?: boolean | undefined;
|
|
@@ -5353,7 +5353,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5353
5353
|
hint?: string | undefined;
|
|
5354
5354
|
messages?: {
|
|
5355
5355
|
text: string;
|
|
5356
|
-
type: "
|
|
5356
|
+
type: "success" | "error" | "info" | "warning";
|
|
5357
5357
|
id?: number | undefined;
|
|
5358
5358
|
}[] | undefined;
|
|
5359
5359
|
required?: boolean | undefined;
|
|
@@ -5374,7 +5374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5374
5374
|
hint?: string | undefined;
|
|
5375
5375
|
messages?: {
|
|
5376
5376
|
text: string;
|
|
5377
|
-
type: "
|
|
5377
|
+
type: "success" | "error" | "info" | "warning";
|
|
5378
5378
|
id?: number | undefined;
|
|
5379
5379
|
}[] | undefined;
|
|
5380
5380
|
required?: boolean | undefined;
|
|
@@ -5399,7 +5399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5399
5399
|
hint?: string | undefined;
|
|
5400
5400
|
messages?: {
|
|
5401
5401
|
text: string;
|
|
5402
|
-
type: "
|
|
5402
|
+
type: "success" | "error" | "info" | "warning";
|
|
5403
5403
|
id?: number | undefined;
|
|
5404
5404
|
}[] | undefined;
|
|
5405
5405
|
required?: boolean | undefined;
|
|
@@ -5420,7 +5420,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5420
5420
|
hint?: string | undefined;
|
|
5421
5421
|
messages?: {
|
|
5422
5422
|
text: string;
|
|
5423
|
-
type: "
|
|
5423
|
+
type: "success" | "error" | "info" | "warning";
|
|
5424
5424
|
id?: number | undefined;
|
|
5425
5425
|
}[] | undefined;
|
|
5426
5426
|
required?: boolean | undefined;
|
|
@@ -5440,7 +5440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5440
5440
|
hint?: string | undefined;
|
|
5441
5441
|
messages?: {
|
|
5442
5442
|
text: string;
|
|
5443
|
-
type: "
|
|
5443
|
+
type: "success" | "error" | "info" | "warning";
|
|
5444
5444
|
id?: number | undefined;
|
|
5445
5445
|
}[] | undefined;
|
|
5446
5446
|
required?: boolean | undefined;
|
|
@@ -5459,7 +5459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5459
5459
|
hint?: string | undefined;
|
|
5460
5460
|
messages?: {
|
|
5461
5461
|
text: string;
|
|
5462
|
-
type: "
|
|
5462
|
+
type: "success" | "error" | "info" | "warning";
|
|
5463
5463
|
id?: number | undefined;
|
|
5464
5464
|
}[] | undefined;
|
|
5465
5465
|
required?: boolean | undefined;
|
|
@@ -5481,7 +5481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5481
5481
|
hint?: string | undefined;
|
|
5482
5482
|
messages?: {
|
|
5483
5483
|
text: string;
|
|
5484
|
-
type: "
|
|
5484
|
+
type: "success" | "error" | "info" | "warning";
|
|
5485
5485
|
id?: number | undefined;
|
|
5486
5486
|
}[] | undefined;
|
|
5487
5487
|
required?: boolean | undefined;
|
|
@@ -5503,7 +5503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5503
5503
|
hint?: string | undefined;
|
|
5504
5504
|
messages?: {
|
|
5505
5505
|
text: string;
|
|
5506
|
-
type: "
|
|
5506
|
+
type: "success" | "error" | "info" | "warning";
|
|
5507
5507
|
id?: number | undefined;
|
|
5508
5508
|
}[] | undefined;
|
|
5509
5509
|
required?: boolean | undefined;
|
|
@@ -5522,7 +5522,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5522
5522
|
hint?: string | undefined;
|
|
5523
5523
|
messages?: {
|
|
5524
5524
|
text: string;
|
|
5525
|
-
type: "
|
|
5525
|
+
type: "success" | "error" | "info" | "warning";
|
|
5526
5526
|
id?: number | undefined;
|
|
5527
5527
|
}[] | undefined;
|
|
5528
5528
|
required?: boolean | undefined;
|
|
@@ -5549,7 +5549,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5549
5549
|
hint?: string | undefined;
|
|
5550
5550
|
messages?: {
|
|
5551
5551
|
text: string;
|
|
5552
|
-
type: "
|
|
5552
|
+
type: "success" | "error" | "info" | "warning";
|
|
5553
5553
|
id?: number | undefined;
|
|
5554
5554
|
}[] | undefined;
|
|
5555
5555
|
required?: boolean | undefined;
|
|
@@ -5570,7 +5570,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5570
5570
|
hint?: string | undefined;
|
|
5571
5571
|
messages?: {
|
|
5572
5572
|
text: string;
|
|
5573
|
-
type: "
|
|
5573
|
+
type: "success" | "error" | "info" | "warning";
|
|
5574
5574
|
id?: number | undefined;
|
|
5575
5575
|
}[] | undefined;
|
|
5576
5576
|
required?: boolean | undefined;
|
|
@@ -5593,7 +5593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5593
5593
|
hint?: string | undefined;
|
|
5594
5594
|
messages?: {
|
|
5595
5595
|
text: string;
|
|
5596
|
-
type: "
|
|
5596
|
+
type: "success" | "error" | "info" | "warning";
|
|
5597
5597
|
id?: number | undefined;
|
|
5598
5598
|
}[] | undefined;
|
|
5599
5599
|
required?: boolean | undefined;
|
|
@@ -5826,7 +5826,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5826
5826
|
hint?: string | undefined;
|
|
5827
5827
|
messages?: {
|
|
5828
5828
|
text: string;
|
|
5829
|
-
type: "
|
|
5829
|
+
type: "success" | "error" | "info" | "warning";
|
|
5830
5830
|
id?: number | undefined;
|
|
5831
5831
|
}[] | undefined;
|
|
5832
5832
|
required?: boolean | undefined;
|
|
@@ -5844,7 +5844,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5844
5844
|
hint?: string | undefined;
|
|
5845
5845
|
messages?: {
|
|
5846
5846
|
text: string;
|
|
5847
|
-
type: "
|
|
5847
|
+
type: "success" | "error" | "info" | "warning";
|
|
5848
5848
|
id?: number | undefined;
|
|
5849
5849
|
}[] | undefined;
|
|
5850
5850
|
required?: boolean | undefined;
|
|
@@ -5868,7 +5868,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5868
5868
|
hint?: string | undefined;
|
|
5869
5869
|
messages?: {
|
|
5870
5870
|
text: string;
|
|
5871
|
-
type: "
|
|
5871
|
+
type: "success" | "error" | "info" | "warning";
|
|
5872
5872
|
id?: number | undefined;
|
|
5873
5873
|
}[] | undefined;
|
|
5874
5874
|
required?: boolean | undefined;
|
|
@@ -5892,7 +5892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5892
5892
|
hint?: string | undefined;
|
|
5893
5893
|
messages?: {
|
|
5894
5894
|
text: string;
|
|
5895
|
-
type: "
|
|
5895
|
+
type: "success" | "error" | "info" | "warning";
|
|
5896
5896
|
id?: number | undefined;
|
|
5897
5897
|
}[] | undefined;
|
|
5898
5898
|
required?: boolean | undefined;
|
|
@@ -5916,7 +5916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5916
5916
|
hint?: string | undefined;
|
|
5917
5917
|
messages?: {
|
|
5918
5918
|
text: string;
|
|
5919
|
-
type: "
|
|
5919
|
+
type: "success" | "error" | "info" | "warning";
|
|
5920
5920
|
id?: number | undefined;
|
|
5921
5921
|
}[] | undefined;
|
|
5922
5922
|
required?: boolean | undefined;
|
|
@@ -5941,7 +5941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5941
5941
|
hint?: string | undefined;
|
|
5942
5942
|
messages?: {
|
|
5943
5943
|
text: string;
|
|
5944
|
-
type: "
|
|
5944
|
+
type: "success" | "error" | "info" | "warning";
|
|
5945
5945
|
id?: number | undefined;
|
|
5946
5946
|
}[] | undefined;
|
|
5947
5947
|
required?: boolean | undefined;
|
|
@@ -5956,7 +5956,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5956
5956
|
hint?: string | undefined;
|
|
5957
5957
|
messages?: {
|
|
5958
5958
|
text: string;
|
|
5959
|
-
type: "
|
|
5959
|
+
type: "success" | "error" | "info" | "warning";
|
|
5960
5960
|
id?: number | undefined;
|
|
5961
5961
|
}[] | undefined;
|
|
5962
5962
|
required?: boolean | undefined;
|
|
@@ -5977,7 +5977,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5977
5977
|
hint?: string | undefined;
|
|
5978
5978
|
messages?: {
|
|
5979
5979
|
text: string;
|
|
5980
|
-
type: "
|
|
5980
|
+
type: "success" | "error" | "info" | "warning";
|
|
5981
5981
|
id?: number | undefined;
|
|
5982
5982
|
}[] | undefined;
|
|
5983
5983
|
required?: boolean | undefined;
|
|
@@ -6002,7 +6002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6002
6002
|
hint?: string | undefined;
|
|
6003
6003
|
messages?: {
|
|
6004
6004
|
text: string;
|
|
6005
|
-
type: "
|
|
6005
|
+
type: "success" | "error" | "info" | "warning";
|
|
6006
6006
|
id?: number | undefined;
|
|
6007
6007
|
}[] | undefined;
|
|
6008
6008
|
required?: boolean | undefined;
|
|
@@ -6023,7 +6023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6023
6023
|
hint?: string | undefined;
|
|
6024
6024
|
messages?: {
|
|
6025
6025
|
text: string;
|
|
6026
|
-
type: "
|
|
6026
|
+
type: "success" | "error" | "info" | "warning";
|
|
6027
6027
|
id?: number | undefined;
|
|
6028
6028
|
}[] | undefined;
|
|
6029
6029
|
required?: boolean | undefined;
|
|
@@ -6043,7 +6043,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6043
6043
|
hint?: string | undefined;
|
|
6044
6044
|
messages?: {
|
|
6045
6045
|
text: string;
|
|
6046
|
-
type: "
|
|
6046
|
+
type: "success" | "error" | "info" | "warning";
|
|
6047
6047
|
id?: number | undefined;
|
|
6048
6048
|
}[] | undefined;
|
|
6049
6049
|
required?: boolean | undefined;
|
|
@@ -6062,7 +6062,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6062
6062
|
hint?: string | undefined;
|
|
6063
6063
|
messages?: {
|
|
6064
6064
|
text: string;
|
|
6065
|
-
type: "
|
|
6065
|
+
type: "success" | "error" | "info" | "warning";
|
|
6066
6066
|
id?: number | undefined;
|
|
6067
6067
|
}[] | undefined;
|
|
6068
6068
|
required?: boolean | undefined;
|
|
@@ -6084,7 +6084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6084
6084
|
hint?: string | undefined;
|
|
6085
6085
|
messages?: {
|
|
6086
6086
|
text: string;
|
|
6087
|
-
type: "
|
|
6087
|
+
type: "success" | "error" | "info" | "warning";
|
|
6088
6088
|
id?: number | undefined;
|
|
6089
6089
|
}[] | undefined;
|
|
6090
6090
|
required?: boolean | undefined;
|
|
@@ -6106,7 +6106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6106
6106
|
hint?: string | undefined;
|
|
6107
6107
|
messages?: {
|
|
6108
6108
|
text: string;
|
|
6109
|
-
type: "
|
|
6109
|
+
type: "success" | "error" | "info" | "warning";
|
|
6110
6110
|
id?: number | undefined;
|
|
6111
6111
|
}[] | undefined;
|
|
6112
6112
|
required?: boolean | undefined;
|
|
@@ -6125,7 +6125,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6125
6125
|
hint?: string | undefined;
|
|
6126
6126
|
messages?: {
|
|
6127
6127
|
text: string;
|
|
6128
|
-
type: "
|
|
6128
|
+
type: "success" | "error" | "info" | "warning";
|
|
6129
6129
|
id?: number | undefined;
|
|
6130
6130
|
}[] | undefined;
|
|
6131
6131
|
required?: boolean | undefined;
|
|
@@ -6152,7 +6152,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6152
6152
|
hint?: string | undefined;
|
|
6153
6153
|
messages?: {
|
|
6154
6154
|
text: string;
|
|
6155
|
-
type: "
|
|
6155
|
+
type: "success" | "error" | "info" | "warning";
|
|
6156
6156
|
id?: number | undefined;
|
|
6157
6157
|
}[] | undefined;
|
|
6158
6158
|
required?: boolean | undefined;
|
|
@@ -6173,7 +6173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6173
6173
|
hint?: string | undefined;
|
|
6174
6174
|
messages?: {
|
|
6175
6175
|
text: string;
|
|
6176
|
-
type: "
|
|
6176
|
+
type: "success" | "error" | "info" | "warning";
|
|
6177
6177
|
id?: number | undefined;
|
|
6178
6178
|
}[] | undefined;
|
|
6179
6179
|
required?: boolean | undefined;
|
|
@@ -6196,7 +6196,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6196
6196
|
hint?: string | undefined;
|
|
6197
6197
|
messages?: {
|
|
6198
6198
|
text: string;
|
|
6199
|
-
type: "
|
|
6199
|
+
type: "success" | "error" | "info" | "warning";
|
|
6200
6200
|
id?: number | undefined;
|
|
6201
6201
|
}[] | undefined;
|
|
6202
6202
|
required?: boolean | undefined;
|
|
@@ -6427,7 +6427,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6427
6427
|
hint?: string | undefined;
|
|
6428
6428
|
messages?: {
|
|
6429
6429
|
text: string;
|
|
6430
|
-
type: "
|
|
6430
|
+
type: "success" | "error" | "info" | "warning";
|
|
6431
6431
|
id?: number | undefined;
|
|
6432
6432
|
}[] | undefined;
|
|
6433
6433
|
required?: boolean | undefined;
|
|
@@ -6445,7 +6445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6445
6445
|
hint?: string | undefined;
|
|
6446
6446
|
messages?: {
|
|
6447
6447
|
text: string;
|
|
6448
|
-
type: "
|
|
6448
|
+
type: "success" | "error" | "info" | "warning";
|
|
6449
6449
|
id?: number | undefined;
|
|
6450
6450
|
}[] | undefined;
|
|
6451
6451
|
required?: boolean | undefined;
|
|
@@ -6469,7 +6469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6469
6469
|
hint?: string | undefined;
|
|
6470
6470
|
messages?: {
|
|
6471
6471
|
text: string;
|
|
6472
|
-
type: "
|
|
6472
|
+
type: "success" | "error" | "info" | "warning";
|
|
6473
6473
|
id?: number | undefined;
|
|
6474
6474
|
}[] | undefined;
|
|
6475
6475
|
required?: boolean | undefined;
|
|
@@ -6493,7 +6493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6493
6493
|
hint?: string | undefined;
|
|
6494
6494
|
messages?: {
|
|
6495
6495
|
text: string;
|
|
6496
|
-
type: "
|
|
6496
|
+
type: "success" | "error" | "info" | "warning";
|
|
6497
6497
|
id?: number | undefined;
|
|
6498
6498
|
}[] | undefined;
|
|
6499
6499
|
required?: boolean | undefined;
|
|
@@ -6517,7 +6517,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6517
6517
|
hint?: string | undefined;
|
|
6518
6518
|
messages?: {
|
|
6519
6519
|
text: string;
|
|
6520
|
-
type: "
|
|
6520
|
+
type: "success" | "error" | "info" | "warning";
|
|
6521
6521
|
id?: number | undefined;
|
|
6522
6522
|
}[] | undefined;
|
|
6523
6523
|
required?: boolean | undefined;
|
|
@@ -6546,7 +6546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6546
6546
|
hint?: string | undefined;
|
|
6547
6547
|
messages?: {
|
|
6548
6548
|
text: string;
|
|
6549
|
-
type: "
|
|
6549
|
+
type: "success" | "error" | "info" | "warning";
|
|
6550
6550
|
id?: number | undefined;
|
|
6551
6551
|
}[] | undefined;
|
|
6552
6552
|
required?: boolean | undefined;
|
|
@@ -6561,7 +6561,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6561
6561
|
hint?: string | undefined;
|
|
6562
6562
|
messages?: {
|
|
6563
6563
|
text: string;
|
|
6564
|
-
type: "
|
|
6564
|
+
type: "success" | "error" | "info" | "warning";
|
|
6565
6565
|
id?: number | undefined;
|
|
6566
6566
|
}[] | undefined;
|
|
6567
6567
|
required?: boolean | undefined;
|
|
@@ -6582,7 +6582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6582
6582
|
hint?: string | undefined;
|
|
6583
6583
|
messages?: {
|
|
6584
6584
|
text: string;
|
|
6585
|
-
type: "
|
|
6585
|
+
type: "success" | "error" | "info" | "warning";
|
|
6586
6586
|
id?: number | undefined;
|
|
6587
6587
|
}[] | undefined;
|
|
6588
6588
|
required?: boolean | undefined;
|
|
@@ -6607,7 +6607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6607
6607
|
hint?: string | undefined;
|
|
6608
6608
|
messages?: {
|
|
6609
6609
|
text: string;
|
|
6610
|
-
type: "
|
|
6610
|
+
type: "success" | "error" | "info" | "warning";
|
|
6611
6611
|
id?: number | undefined;
|
|
6612
6612
|
}[] | undefined;
|
|
6613
6613
|
required?: boolean | undefined;
|
|
@@ -6628,7 +6628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6628
6628
|
hint?: string | undefined;
|
|
6629
6629
|
messages?: {
|
|
6630
6630
|
text: string;
|
|
6631
|
-
type: "
|
|
6631
|
+
type: "success" | "error" | "info" | "warning";
|
|
6632
6632
|
id?: number | undefined;
|
|
6633
6633
|
}[] | undefined;
|
|
6634
6634
|
required?: boolean | undefined;
|
|
@@ -6648,7 +6648,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6648
|
hint?: string | undefined;
|
|
6649
6649
|
messages?: {
|
|
6650
6650
|
text: string;
|
|
6651
|
-
type: "
|
|
6651
|
+
type: "success" | "error" | "info" | "warning";
|
|
6652
6652
|
id?: number | undefined;
|
|
6653
6653
|
}[] | undefined;
|
|
6654
6654
|
required?: boolean | undefined;
|
|
@@ -6667,7 +6667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6667
6667
|
hint?: string | undefined;
|
|
6668
6668
|
messages?: {
|
|
6669
6669
|
text: string;
|
|
6670
|
-
type: "
|
|
6670
|
+
type: "success" | "error" | "info" | "warning";
|
|
6671
6671
|
id?: number | undefined;
|
|
6672
6672
|
}[] | undefined;
|
|
6673
6673
|
required?: boolean | undefined;
|
|
@@ -6689,7 +6689,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6689
6689
|
hint?: string | undefined;
|
|
6690
6690
|
messages?: {
|
|
6691
6691
|
text: string;
|
|
6692
|
-
type: "
|
|
6692
|
+
type: "success" | "error" | "info" | "warning";
|
|
6693
6693
|
id?: number | undefined;
|
|
6694
6694
|
}[] | undefined;
|
|
6695
6695
|
required?: boolean | undefined;
|
|
@@ -6711,7 +6711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6711
6711
|
hint?: string | undefined;
|
|
6712
6712
|
messages?: {
|
|
6713
6713
|
text: string;
|
|
6714
|
-
type: "
|
|
6714
|
+
type: "success" | "error" | "info" | "warning";
|
|
6715
6715
|
id?: number | undefined;
|
|
6716
6716
|
}[] | undefined;
|
|
6717
6717
|
required?: boolean | undefined;
|
|
@@ -6730,7 +6730,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6730
6730
|
hint?: string | undefined;
|
|
6731
6731
|
messages?: {
|
|
6732
6732
|
text: string;
|
|
6733
|
-
type: "
|
|
6733
|
+
type: "success" | "error" | "info" | "warning";
|
|
6734
6734
|
id?: number | undefined;
|
|
6735
6735
|
}[] | undefined;
|
|
6736
6736
|
required?: boolean | undefined;
|
|
@@ -6757,7 +6757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6757
6757
|
hint?: string | undefined;
|
|
6758
6758
|
messages?: {
|
|
6759
6759
|
text: string;
|
|
6760
|
-
type: "
|
|
6760
|
+
type: "success" | "error" | "info" | "warning";
|
|
6761
6761
|
id?: number | undefined;
|
|
6762
6762
|
}[] | undefined;
|
|
6763
6763
|
required?: boolean | undefined;
|
|
@@ -6778,7 +6778,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6778
6778
|
hint?: string | undefined;
|
|
6779
6779
|
messages?: {
|
|
6780
6780
|
text: string;
|
|
6781
|
-
type: "
|
|
6781
|
+
type: "success" | "error" | "info" | "warning";
|
|
6782
6782
|
id?: number | undefined;
|
|
6783
6783
|
}[] | undefined;
|
|
6784
6784
|
required?: boolean | undefined;
|
|
@@ -6801,7 +6801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6801
6801
|
hint?: string | undefined;
|
|
6802
6802
|
messages?: {
|
|
6803
6803
|
text: string;
|
|
6804
|
-
type: "
|
|
6804
|
+
type: "success" | "error" | "info" | "warning";
|
|
6805
6805
|
id?: number | undefined;
|
|
6806
6806
|
}[] | undefined;
|
|
6807
6807
|
required?: boolean | undefined;
|
|
@@ -7107,7 +7107,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7107
7107
|
};
|
|
7108
7108
|
};
|
|
7109
7109
|
output: {
|
|
7110
|
-
prompt: "status" | "organizations" | "
|
|
7110
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7111
7111
|
language: string;
|
|
7112
7112
|
}[];
|
|
7113
7113
|
outputFormat: "json";
|
|
@@ -7145,7 +7145,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7145
7145
|
$get: {
|
|
7146
7146
|
input: {
|
|
7147
7147
|
param: {
|
|
7148
|
-
prompt: "status" | "organizations" | "
|
|
7148
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7149
7149
|
language: string;
|
|
7150
7150
|
};
|
|
7151
7151
|
} & {
|
|
@@ -7167,7 +7167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7167
7167
|
$put: {
|
|
7168
7168
|
input: {
|
|
7169
7169
|
param: {
|
|
7170
|
-
prompt: "status" | "organizations" | "
|
|
7170
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7171
7171
|
language: string;
|
|
7172
7172
|
};
|
|
7173
7173
|
} & {
|
|
@@ -7191,7 +7191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7191
7191
|
$delete: {
|
|
7192
7192
|
input: {
|
|
7193
7193
|
param: {
|
|
7194
|
-
prompt: "status" | "organizations" | "
|
|
7194
|
+
prompt: "status" | "organizations" | "mfa" | "signup" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7195
7195
|
language: string;
|
|
7196
7196
|
};
|
|
7197
7197
|
} & {
|
|
@@ -7287,7 +7287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7287
7287
|
active?: boolean | undefined;
|
|
7288
7288
|
} | undefined;
|
|
7289
7289
|
signup?: {
|
|
7290
|
-
status?: "
|
|
7290
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7291
7291
|
verification?: {
|
|
7292
7292
|
active?: boolean | undefined;
|
|
7293
7293
|
} | undefined;
|
|
@@ -7304,7 +7304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7304
7304
|
active?: boolean | undefined;
|
|
7305
7305
|
} | undefined;
|
|
7306
7306
|
signup?: {
|
|
7307
|
-
status?: "
|
|
7307
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7308
7308
|
} | undefined;
|
|
7309
7309
|
validation?: {
|
|
7310
7310
|
max_length?: number | undefined;
|
|
@@ -7321,7 +7321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7321
7321
|
active?: boolean | undefined;
|
|
7322
7322
|
} | undefined;
|
|
7323
7323
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7324
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7325
7325
|
} | undefined;
|
|
7326
7326
|
} | undefined;
|
|
7327
7327
|
} | undefined;
|
|
@@ -7425,7 +7425,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7425
7425
|
active?: boolean | undefined;
|
|
7426
7426
|
} | undefined;
|
|
7427
7427
|
signup?: {
|
|
7428
|
-
status?: "
|
|
7428
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7429
7429
|
verification?: {
|
|
7430
7430
|
active?: boolean | undefined;
|
|
7431
7431
|
} | undefined;
|
|
@@ -7442,7 +7442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7442
7442
|
active?: boolean | undefined;
|
|
7443
7443
|
} | undefined;
|
|
7444
7444
|
signup?: {
|
|
7445
|
-
status?: "
|
|
7445
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7446
7446
|
} | undefined;
|
|
7447
7447
|
validation?: {
|
|
7448
7448
|
max_length?: number | undefined;
|
|
@@ -7459,7 +7459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7459
7459
|
active?: boolean | undefined;
|
|
7460
7460
|
} | undefined;
|
|
7461
7461
|
signup?: {
|
|
7462
|
-
status?: "
|
|
7462
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7463
7463
|
} | undefined;
|
|
7464
7464
|
} | undefined;
|
|
7465
7465
|
} | undefined;
|
|
@@ -7579,7 +7579,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7579
7579
|
active?: boolean | undefined;
|
|
7580
7580
|
} | undefined;
|
|
7581
7581
|
signup?: {
|
|
7582
|
-
status?: "
|
|
7582
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7583
7583
|
verification?: {
|
|
7584
7584
|
active?: boolean | undefined;
|
|
7585
7585
|
} | undefined;
|
|
@@ -7596,7 +7596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7596
7596
|
active?: boolean | undefined;
|
|
7597
7597
|
} | undefined;
|
|
7598
7598
|
signup?: {
|
|
7599
|
-
status?: "
|
|
7599
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7600
7600
|
} | undefined;
|
|
7601
7601
|
validation?: {
|
|
7602
7602
|
max_length?: number | undefined;
|
|
@@ -7613,7 +7613,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7613
7613
|
active?: boolean | undefined;
|
|
7614
7614
|
} | undefined;
|
|
7615
7615
|
signup?: {
|
|
7616
|
-
status?: "
|
|
7616
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7617
7617
|
} | undefined;
|
|
7618
7618
|
} | undefined;
|
|
7619
7619
|
} | undefined;
|
|
@@ -7762,7 +7762,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7762
7762
|
active?: boolean | undefined;
|
|
7763
7763
|
} | undefined;
|
|
7764
7764
|
signup?: {
|
|
7765
|
-
status?: "
|
|
7765
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7766
7766
|
verification?: {
|
|
7767
7767
|
active?: boolean | undefined;
|
|
7768
7768
|
} | undefined;
|
|
@@ -7779,7 +7779,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7779
7779
|
active?: boolean | undefined;
|
|
7780
7780
|
} | undefined;
|
|
7781
7781
|
signup?: {
|
|
7782
|
-
status?: "
|
|
7782
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7783
7783
|
} | undefined;
|
|
7784
7784
|
validation?: {
|
|
7785
7785
|
max_length?: number | undefined;
|
|
@@ -7796,7 +7796,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7796
7796
|
active?: boolean | undefined;
|
|
7797
7797
|
} | undefined;
|
|
7798
7798
|
signup?: {
|
|
7799
|
-
status?: "
|
|
7799
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7800
7800
|
} | undefined;
|
|
7801
7801
|
} | undefined;
|
|
7802
7802
|
} | undefined;
|
|
@@ -7924,7 +7924,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7924
7924
|
active?: boolean | undefined;
|
|
7925
7925
|
} | undefined;
|
|
7926
7926
|
signup?: {
|
|
7927
|
-
status?: "
|
|
7927
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7928
7928
|
verification?: {
|
|
7929
7929
|
active?: boolean | undefined;
|
|
7930
7930
|
} | undefined;
|
|
@@ -7941,7 +7941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7941
7941
|
active?: boolean | undefined;
|
|
7942
7942
|
} | undefined;
|
|
7943
7943
|
signup?: {
|
|
7944
|
-
status?: "
|
|
7944
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7945
7945
|
} | undefined;
|
|
7946
7946
|
validation?: {
|
|
7947
7947
|
max_length?: number | undefined;
|
|
@@ -7958,7 +7958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7958
7958
|
active?: boolean | undefined;
|
|
7959
7959
|
} | undefined;
|
|
7960
7960
|
signup?: {
|
|
7961
|
-
status?: "
|
|
7961
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7962
7962
|
} | undefined;
|
|
7963
7963
|
} | undefined;
|
|
7964
7964
|
} | undefined;
|
|
@@ -8074,7 +8074,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8074
8074
|
};
|
|
8075
8075
|
} | {
|
|
8076
8076
|
mode: "inline";
|
|
8077
|
-
status: "
|
|
8077
|
+
status: "success" | "error";
|
|
8078
8078
|
connection_id: string;
|
|
8079
8079
|
connection_name: string;
|
|
8080
8080
|
strategy: string;
|
|
@@ -9114,7 +9114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9114
9114
|
created_at: string;
|
|
9115
9115
|
updated_at: string;
|
|
9116
9116
|
name: string;
|
|
9117
|
-
provider: "auth0" | "
|
|
9117
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9118
9118
|
connection: string;
|
|
9119
9119
|
enabled: boolean;
|
|
9120
9120
|
credentials: {
|
|
@@ -9146,7 +9146,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9146
9146
|
created_at: string;
|
|
9147
9147
|
updated_at: string;
|
|
9148
9148
|
name: string;
|
|
9149
|
-
provider: "auth0" | "
|
|
9149
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9150
9150
|
connection: string;
|
|
9151
9151
|
enabled: boolean;
|
|
9152
9152
|
credentials: {
|
|
@@ -9172,7 +9172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9172
9172
|
} & {
|
|
9173
9173
|
json: {
|
|
9174
9174
|
name: string;
|
|
9175
|
-
provider: "auth0" | "
|
|
9175
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9176
9176
|
connection: string;
|
|
9177
9177
|
credentials: {
|
|
9178
9178
|
domain: string;
|
|
@@ -9189,7 +9189,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9189
9189
|
created_at: string;
|
|
9190
9190
|
updated_at: string;
|
|
9191
9191
|
name: string;
|
|
9192
|
-
provider: "auth0" | "
|
|
9192
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9193
9193
|
connection: string;
|
|
9194
9194
|
enabled: boolean;
|
|
9195
9195
|
credentials: {
|
|
@@ -9220,7 +9220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9220
9220
|
json: {
|
|
9221
9221
|
id?: string | undefined;
|
|
9222
9222
|
name?: string | undefined;
|
|
9223
|
-
provider?: "auth0" | "
|
|
9223
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
9224
9224
|
connection?: string | undefined;
|
|
9225
9225
|
enabled?: boolean | undefined;
|
|
9226
9226
|
credentials?: {
|
|
@@ -9236,7 +9236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9236
9236
|
created_at: string;
|
|
9237
9237
|
updated_at: string;
|
|
9238
9238
|
name: string;
|
|
9239
|
-
provider: "auth0" | "
|
|
9239
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9240
9240
|
connection: string;
|
|
9241
9241
|
enabled: boolean;
|
|
9242
9242
|
credentials: {
|
|
@@ -9454,7 +9454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9454
9454
|
};
|
|
9455
9455
|
};
|
|
9456
9456
|
output: {
|
|
9457
|
-
type: "fn" | "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" | "
|
|
9457
|
+
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";
|
|
9458
9458
|
date: string;
|
|
9459
9459
|
isMobile: boolean;
|
|
9460
9460
|
log_id: string;
|
|
@@ -9493,7 +9493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9493
9493
|
limit: number;
|
|
9494
9494
|
length: number;
|
|
9495
9495
|
logs: {
|
|
9496
|
-
type: "fn" | "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" | "
|
|
9496
|
+
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";
|
|
9497
9497
|
date: string;
|
|
9498
9498
|
isMobile: boolean;
|
|
9499
9499
|
log_id: string;
|
|
@@ -9532,7 +9532,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9532
9532
|
next?: string | undefined;
|
|
9533
9533
|
} | {
|
|
9534
9534
|
logs: {
|
|
9535
|
-
type: "fn" | "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" | "
|
|
9535
|
+
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";
|
|
9536
9536
|
date: string;
|
|
9537
9537
|
isMobile: boolean;
|
|
9538
9538
|
log_id: string;
|
|
@@ -9586,7 +9586,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9586
9586
|
};
|
|
9587
9587
|
};
|
|
9588
9588
|
output: {
|
|
9589
|
-
type: "fn" | "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" | "
|
|
9589
|
+
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";
|
|
9590
9590
|
date: string;
|
|
9591
9591
|
isMobile: boolean;
|
|
9592
9592
|
log_id: string;
|
|
@@ -10831,7 +10831,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10831
10831
|
active?: boolean | undefined;
|
|
10832
10832
|
} | undefined;
|
|
10833
10833
|
signup?: {
|
|
10834
|
-
status?: "
|
|
10834
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10835
10835
|
verification?: {
|
|
10836
10836
|
active?: boolean | undefined;
|
|
10837
10837
|
} | undefined;
|
|
@@ -10848,7 +10848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10848
10848
|
active?: boolean | undefined;
|
|
10849
10849
|
} | undefined;
|
|
10850
10850
|
signup?: {
|
|
10851
|
-
status?: "
|
|
10851
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10852
10852
|
} | undefined;
|
|
10853
10853
|
validation?: {
|
|
10854
10854
|
max_length?: number | undefined;
|
|
@@ -10865,7 +10865,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10865
10865
|
active?: boolean | undefined;
|
|
10866
10866
|
} | undefined;
|
|
10867
10867
|
signup?: {
|
|
10868
|
-
status?: "
|
|
10868
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10869
10869
|
} | undefined;
|
|
10870
10870
|
} | undefined;
|
|
10871
10871
|
} | undefined;
|
|
@@ -10989,7 +10989,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10989
10989
|
active?: boolean | undefined;
|
|
10990
10990
|
} | undefined;
|
|
10991
10991
|
signup?: {
|
|
10992
|
-
status?: "
|
|
10992
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10993
10993
|
verification?: {
|
|
10994
10994
|
active?: boolean | undefined;
|
|
10995
10995
|
} | undefined;
|
|
@@ -11006,7 +11006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11006
11006
|
active?: boolean | undefined;
|
|
11007
11007
|
} | undefined;
|
|
11008
11008
|
signup?: {
|
|
11009
|
-
status?: "
|
|
11009
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11010
11010
|
} | undefined;
|
|
11011
11011
|
validation?: {
|
|
11012
11012
|
max_length?: number | undefined;
|
|
@@ -11023,7 +11023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11023
11023
|
active?: boolean | undefined;
|
|
11024
11024
|
} | undefined;
|
|
11025
11025
|
signup?: {
|
|
11026
|
-
status?: "
|
|
11026
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
11027
11027
|
} | undefined;
|
|
11028
11028
|
} | undefined;
|
|
11029
11029
|
} | undefined;
|
|
@@ -11156,6 +11156,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11156
11156
|
"/signing": {
|
|
11157
11157
|
$get: {
|
|
11158
11158
|
input: {
|
|
11159
|
+
query: {
|
|
11160
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
11161
|
+
};
|
|
11162
|
+
} & {
|
|
11159
11163
|
header: {
|
|
11160
11164
|
"tenant-id"?: string | undefined;
|
|
11161
11165
|
};
|
|
@@ -11167,7 +11171,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11167
11171
|
thumbprint: string;
|
|
11168
11172
|
type: "jwt_signing" | "saml_encryption";
|
|
11169
11173
|
tenant_id?: string | undefined;
|
|
11170
|
-
pkcs7?: string | undefined;
|
|
11171
11174
|
current?: boolean | undefined;
|
|
11172
11175
|
next?: boolean | undefined;
|
|
11173
11176
|
previous?: boolean | undefined;
|
|
@@ -11176,6 +11179,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11176
11179
|
revoked?: boolean | undefined;
|
|
11177
11180
|
revoked_at?: string | undefined;
|
|
11178
11181
|
connection?: string | undefined;
|
|
11182
|
+
expires_at?: string | undefined;
|
|
11183
|
+
expired?: boolean | undefined;
|
|
11184
|
+
inherited?: boolean | undefined;
|
|
11179
11185
|
}[];
|
|
11180
11186
|
outputFormat: "json";
|
|
11181
11187
|
status: 200;
|
|
@@ -11188,6 +11194,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11188
11194
|
param: {
|
|
11189
11195
|
kid: string;
|
|
11190
11196
|
};
|
|
11197
|
+
} & {
|
|
11198
|
+
query: {
|
|
11199
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
11200
|
+
};
|
|
11191
11201
|
} & {
|
|
11192
11202
|
header: {
|
|
11193
11203
|
"tenant-id"?: string | undefined;
|
|
@@ -11200,7 +11210,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11200
11210
|
thumbprint: string;
|
|
11201
11211
|
type: "jwt_signing" | "saml_encryption";
|
|
11202
11212
|
tenant_id?: string | undefined;
|
|
11203
|
-
pkcs7?: string | undefined;
|
|
11204
11213
|
current?: boolean | undefined;
|
|
11205
11214
|
next?: boolean | undefined;
|
|
11206
11215
|
previous?: boolean | undefined;
|
|
@@ -11209,6 +11218,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11209
11218
|
revoked?: boolean | undefined;
|
|
11210
11219
|
revoked_at?: string | undefined;
|
|
11211
11220
|
connection?: string | undefined;
|
|
11221
|
+
expires_at?: string | undefined;
|
|
11222
|
+
expired?: boolean | undefined;
|
|
11223
|
+
inherited?: boolean | undefined;
|
|
11212
11224
|
};
|
|
11213
11225
|
outputFormat: "json";
|
|
11214
11226
|
status: 200;
|
|
@@ -11218,15 +11230,80 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11218
11230
|
"/signing/rotate": {
|
|
11219
11231
|
$post: {
|
|
11220
11232
|
input: {
|
|
11233
|
+
query: {
|
|
11234
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
11235
|
+
validity_days?: unknown;
|
|
11236
|
+
activate_in_days?: unknown;
|
|
11237
|
+
grace_days?: unknown;
|
|
11238
|
+
};
|
|
11239
|
+
} & {
|
|
11221
11240
|
header: {
|
|
11222
11241
|
"tenant-id"?: string | undefined;
|
|
11223
11242
|
};
|
|
11224
11243
|
};
|
|
11225
|
-
output: {
|
|
11226
|
-
|
|
11244
|
+
output: {
|
|
11245
|
+
kid: string;
|
|
11246
|
+
cert: string;
|
|
11247
|
+
fingerprint: string;
|
|
11248
|
+
thumbprint: string;
|
|
11249
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11250
|
+
tenant_id?: string | undefined;
|
|
11251
|
+
current?: boolean | undefined;
|
|
11252
|
+
next?: boolean | undefined;
|
|
11253
|
+
previous?: boolean | undefined;
|
|
11254
|
+
current_since?: string | undefined;
|
|
11255
|
+
current_until?: string | undefined;
|
|
11256
|
+
revoked?: boolean | undefined;
|
|
11257
|
+
revoked_at?: string | undefined;
|
|
11258
|
+
connection?: string | undefined;
|
|
11259
|
+
expires_at?: string | undefined;
|
|
11260
|
+
expired?: boolean | undefined;
|
|
11261
|
+
inherited?: boolean | undefined;
|
|
11262
|
+
};
|
|
11263
|
+
outputFormat: "json";
|
|
11227
11264
|
status: 201;
|
|
11228
11265
|
};
|
|
11229
11266
|
};
|
|
11267
|
+
} & {
|
|
11268
|
+
"/signing/:kid/renew": {
|
|
11269
|
+
$post: {
|
|
11270
|
+
input: {
|
|
11271
|
+
param: {
|
|
11272
|
+
kid: string;
|
|
11273
|
+
};
|
|
11274
|
+
} & {
|
|
11275
|
+
query: {
|
|
11276
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
11277
|
+
validity_days?: unknown;
|
|
11278
|
+
};
|
|
11279
|
+
} & {
|
|
11280
|
+
header: {
|
|
11281
|
+
"tenant-id"?: string | undefined;
|
|
11282
|
+
};
|
|
11283
|
+
};
|
|
11284
|
+
output: {
|
|
11285
|
+
kid: string;
|
|
11286
|
+
cert: string;
|
|
11287
|
+
fingerprint: string;
|
|
11288
|
+
thumbprint: string;
|
|
11289
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11290
|
+
tenant_id?: string | undefined;
|
|
11291
|
+
current?: boolean | undefined;
|
|
11292
|
+
next?: boolean | undefined;
|
|
11293
|
+
previous?: boolean | undefined;
|
|
11294
|
+
current_since?: string | undefined;
|
|
11295
|
+
current_until?: string | undefined;
|
|
11296
|
+
revoked?: boolean | undefined;
|
|
11297
|
+
revoked_at?: string | undefined;
|
|
11298
|
+
connection?: string | undefined;
|
|
11299
|
+
expires_at?: string | undefined;
|
|
11300
|
+
expired?: boolean | undefined;
|
|
11301
|
+
inherited?: boolean | undefined;
|
|
11302
|
+
};
|
|
11303
|
+
outputFormat: "json";
|
|
11304
|
+
status: 200;
|
|
11305
|
+
};
|
|
11306
|
+
};
|
|
11230
11307
|
} & {
|
|
11231
11308
|
"/signing/:kid/revoke": {
|
|
11232
11309
|
$put: {
|
|
@@ -11234,6 +11311,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11234
11311
|
param: {
|
|
11235
11312
|
kid: string;
|
|
11236
11313
|
};
|
|
11314
|
+
} & {
|
|
11315
|
+
query: {
|
|
11316
|
+
type?: "jwt_signing" | "saml_encryption" | undefined;
|
|
11317
|
+
validity_days?: unknown;
|
|
11318
|
+
};
|
|
11237
11319
|
} & {
|
|
11238
11320
|
header: {
|
|
11239
11321
|
"tenant-id"?: string | undefined;
|
|
@@ -12058,10 +12140,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12058
12140
|
};
|
|
12059
12141
|
};
|
|
12060
12142
|
output: {
|
|
12061
|
-
id: string;
|
|
12062
12143
|
created_at: string;
|
|
12063
|
-
|
|
12144
|
+
id: string;
|
|
12064
12145
|
client_id: string;
|
|
12146
|
+
user_id: string;
|
|
12065
12147
|
rotating: boolean;
|
|
12066
12148
|
device: {
|
|
12067
12149
|
initial_user_agent: string;
|
|
@@ -12078,21 +12160,24 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12078
12160
|
}[];
|
|
12079
12161
|
revoked_at?: string | undefined;
|
|
12080
12162
|
expires_at?: string | undefined;
|
|
12081
|
-
idle_expires_at?: string | undefined;
|
|
12082
|
-
session_id?: string | undefined;
|
|
12083
12163
|
organization?: string | undefined;
|
|
12164
|
+
session_id?: string | undefined;
|
|
12084
12165
|
auth_connection?: string | undefined;
|
|
12085
12166
|
auth_strategy?: {
|
|
12086
12167
|
strategy: string;
|
|
12087
12168
|
strategy_type: string;
|
|
12088
12169
|
} | undefined;
|
|
12170
|
+
idle_expires_at?: string | undefined;
|
|
12089
12171
|
last_exchanged_at?: string | undefined;
|
|
12090
12172
|
}[] | {
|
|
12173
|
+
start: number;
|
|
12174
|
+
limit: number;
|
|
12175
|
+
length: number;
|
|
12091
12176
|
tokens: {
|
|
12092
|
-
id: string;
|
|
12093
12177
|
created_at: string;
|
|
12094
|
-
|
|
12178
|
+
id: string;
|
|
12095
12179
|
client_id: string;
|
|
12180
|
+
user_id: string;
|
|
12096
12181
|
rotating: boolean;
|
|
12097
12182
|
device: {
|
|
12098
12183
|
initial_user_agent: string;
|
|
@@ -12109,26 +12194,24 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12109
12194
|
}[];
|
|
12110
12195
|
revoked_at?: string | undefined;
|
|
12111
12196
|
expires_at?: string | undefined;
|
|
12112
|
-
idle_expires_at?: string | undefined;
|
|
12113
|
-
session_id?: string | undefined;
|
|
12114
12197
|
organization?: string | undefined;
|
|
12198
|
+
session_id?: string | undefined;
|
|
12115
12199
|
auth_connection?: string | undefined;
|
|
12116
12200
|
auth_strategy?: {
|
|
12117
12201
|
strategy: string;
|
|
12118
12202
|
strategy_type: string;
|
|
12119
12203
|
} | undefined;
|
|
12204
|
+
idle_expires_at?: string | undefined;
|
|
12120
12205
|
last_exchanged_at?: string | undefined;
|
|
12121
12206
|
}[];
|
|
12207
|
+
total?: number | undefined;
|
|
12122
12208
|
next?: string | undefined;
|
|
12123
12209
|
} | {
|
|
12124
|
-
start: number;
|
|
12125
|
-
limit: number;
|
|
12126
|
-
length: number;
|
|
12127
12210
|
tokens: {
|
|
12128
|
-
id: string;
|
|
12129
12211
|
created_at: string;
|
|
12130
|
-
|
|
12212
|
+
id: string;
|
|
12131
12213
|
client_id: string;
|
|
12214
|
+
user_id: string;
|
|
12132
12215
|
rotating: boolean;
|
|
12133
12216
|
device: {
|
|
12134
12217
|
initial_user_agent: string;
|
|
@@ -12145,17 +12228,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12145
12228
|
}[];
|
|
12146
12229
|
revoked_at?: string | undefined;
|
|
12147
12230
|
expires_at?: string | undefined;
|
|
12148
|
-
idle_expires_at?: string | undefined;
|
|
12149
|
-
session_id?: string | undefined;
|
|
12150
12231
|
organization?: string | undefined;
|
|
12232
|
+
session_id?: string | undefined;
|
|
12151
12233
|
auth_connection?: string | undefined;
|
|
12152
12234
|
auth_strategy?: {
|
|
12153
12235
|
strategy: string;
|
|
12154
12236
|
strategy_type: string;
|
|
12155
12237
|
} | undefined;
|
|
12238
|
+
idle_expires_at?: string | undefined;
|
|
12156
12239
|
last_exchanged_at?: string | undefined;
|
|
12157
12240
|
}[];
|
|
12158
|
-
total?: number | undefined;
|
|
12159
12241
|
next?: string | undefined;
|
|
12160
12242
|
};
|
|
12161
12243
|
outputFormat: "json";
|
|
@@ -12204,7 +12286,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12204
12286
|
};
|
|
12205
12287
|
};
|
|
12206
12288
|
output: {
|
|
12207
|
-
type: "fn" | "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" | "
|
|
12289
|
+
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";
|
|
12208
12290
|
date: string;
|
|
12209
12291
|
isMobile: boolean;
|
|
12210
12292
|
log_id: string;
|
|
@@ -12243,7 +12325,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12243
12325
|
limit: number;
|
|
12244
12326
|
length: number;
|
|
12245
12327
|
logs: {
|
|
12246
|
-
type: "fn" | "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" | "
|
|
12328
|
+
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";
|
|
12247
12329
|
date: string;
|
|
12248
12330
|
isMobile: boolean;
|
|
12249
12331
|
log_id: string;
|
|
@@ -12562,7 +12644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12562
12644
|
};
|
|
12563
12645
|
} & {
|
|
12564
12646
|
json: {
|
|
12565
|
-
template: "verify_email" | "
|
|
12647
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12566
12648
|
body: string;
|
|
12567
12649
|
from: string;
|
|
12568
12650
|
subject: string;
|
|
@@ -12583,7 +12665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12583
12665
|
};
|
|
12584
12666
|
} & {
|
|
12585
12667
|
json: {
|
|
12586
|
-
template: "verify_email" | "
|
|
12668
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12587
12669
|
body: string;
|
|
12588
12670
|
from: string;
|
|
12589
12671
|
subject: string;
|
|
@@ -12595,7 +12677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12595
12677
|
};
|
|
12596
12678
|
};
|
|
12597
12679
|
output: {
|
|
12598
|
-
template: "verify_email" | "
|
|
12680
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12599
12681
|
body: string;
|
|
12600
12682
|
from: string;
|
|
12601
12683
|
subject: string;
|
|
@@ -12618,7 +12700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12618
12700
|
};
|
|
12619
12701
|
};
|
|
12620
12702
|
output: {
|
|
12621
|
-
name: "verify_email" | "
|
|
12703
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12622
12704
|
body: string;
|
|
12623
12705
|
subject: string;
|
|
12624
12706
|
}[];
|
|
@@ -12631,7 +12713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12631
12713
|
$get: {
|
|
12632
12714
|
input: {
|
|
12633
12715
|
param: {
|
|
12634
|
-
templateName: "verify_email" | "
|
|
12716
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12635
12717
|
};
|
|
12636
12718
|
} & {
|
|
12637
12719
|
header: {
|
|
@@ -12644,7 +12726,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12644
12726
|
} | {
|
|
12645
12727
|
input: {
|
|
12646
12728
|
param: {
|
|
12647
|
-
templateName: "verify_email" | "
|
|
12729
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12648
12730
|
};
|
|
12649
12731
|
} & {
|
|
12650
12732
|
header: {
|
|
@@ -12652,7 +12734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12652
12734
|
};
|
|
12653
12735
|
};
|
|
12654
12736
|
output: {
|
|
12655
|
-
template: "verify_email" | "
|
|
12737
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12656
12738
|
body: string;
|
|
12657
12739
|
from: string;
|
|
12658
12740
|
subject: string;
|
|
@@ -12671,7 +12753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12671
12753
|
$put: {
|
|
12672
12754
|
input: {
|
|
12673
12755
|
param: {
|
|
12674
|
-
templateName: "verify_email" | "
|
|
12756
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12675
12757
|
};
|
|
12676
12758
|
} & {
|
|
12677
12759
|
header: {
|
|
@@ -12679,7 +12761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12679
12761
|
};
|
|
12680
12762
|
} & {
|
|
12681
12763
|
json: {
|
|
12682
|
-
template: "verify_email" | "
|
|
12764
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12683
12765
|
body: string;
|
|
12684
12766
|
subject: string;
|
|
12685
12767
|
syntax?: "liquid" | undefined;
|
|
@@ -12691,7 +12773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12691
12773
|
};
|
|
12692
12774
|
};
|
|
12693
12775
|
output: {
|
|
12694
|
-
template: "verify_email" | "
|
|
12776
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12695
12777
|
body: string;
|
|
12696
12778
|
from: string;
|
|
12697
12779
|
subject: string;
|
|
@@ -12710,7 +12792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12710
12792
|
$patch: {
|
|
12711
12793
|
input: {
|
|
12712
12794
|
param: {
|
|
12713
|
-
templateName: "verify_email" | "
|
|
12795
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12714
12796
|
};
|
|
12715
12797
|
} & {
|
|
12716
12798
|
header: {
|
|
@@ -12718,7 +12800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12718
12800
|
};
|
|
12719
12801
|
} & {
|
|
12720
12802
|
json: {
|
|
12721
|
-
template?: "verify_email" | "
|
|
12803
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12722
12804
|
body?: string | undefined;
|
|
12723
12805
|
from?: string | undefined;
|
|
12724
12806
|
subject?: string | undefined;
|
|
@@ -12735,7 +12817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12735
12817
|
} | {
|
|
12736
12818
|
input: {
|
|
12737
12819
|
param: {
|
|
12738
|
-
templateName: "verify_email" | "
|
|
12820
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12739
12821
|
};
|
|
12740
12822
|
} & {
|
|
12741
12823
|
header: {
|
|
@@ -12743,7 +12825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12743
12825
|
};
|
|
12744
12826
|
} & {
|
|
12745
12827
|
json: {
|
|
12746
|
-
template?: "verify_email" | "
|
|
12828
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12747
12829
|
body?: string | undefined;
|
|
12748
12830
|
from?: string | undefined;
|
|
12749
12831
|
subject?: string | undefined;
|
|
@@ -12755,7 +12837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12755
12837
|
};
|
|
12756
12838
|
};
|
|
12757
12839
|
output: {
|
|
12758
|
-
template: "verify_email" | "
|
|
12840
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12759
12841
|
body: string;
|
|
12760
12842
|
from: string;
|
|
12761
12843
|
subject: string;
|
|
@@ -12774,7 +12856,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12774
12856
|
$delete: {
|
|
12775
12857
|
input: {
|
|
12776
12858
|
param: {
|
|
12777
|
-
templateName: "verify_email" | "
|
|
12859
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12778
12860
|
};
|
|
12779
12861
|
} & {
|
|
12780
12862
|
header: {
|
|
@@ -12787,7 +12869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12787
12869
|
} | {
|
|
12788
12870
|
input: {
|
|
12789
12871
|
param: {
|
|
12790
|
-
templateName: "verify_email" | "
|
|
12872
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12791
12873
|
};
|
|
12792
12874
|
} & {
|
|
12793
12875
|
header: {
|
|
@@ -12804,7 +12886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12804
12886
|
$post: {
|
|
12805
12887
|
input: {
|
|
12806
12888
|
param: {
|
|
12807
|
-
templateName: "verify_email" | "
|
|
12889
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12808
12890
|
};
|
|
12809
12891
|
} & {
|
|
12810
12892
|
header: {
|
|
@@ -13087,7 +13169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13087
13169
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13088
13170
|
custom_domain_id: string;
|
|
13089
13171
|
primary: boolean;
|
|
13090
|
-
status: "
|
|
13172
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13091
13173
|
verification_method?: "txt" | undefined;
|
|
13092
13174
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13093
13175
|
domain_metadata?: {
|
|
@@ -13128,7 +13210,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13128
13210
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13129
13211
|
custom_domain_id: string;
|
|
13130
13212
|
primary: boolean;
|
|
13131
|
-
status: "
|
|
13213
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13132
13214
|
verification_method?: "txt" | undefined;
|
|
13133
13215
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13134
13216
|
domain_metadata?: {
|
|
@@ -13192,7 +13274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13192
13274
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13193
13275
|
custom_domain_id: string;
|
|
13194
13276
|
primary: boolean;
|
|
13195
|
-
status: "
|
|
13277
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13196
13278
|
verification_method?: "txt" | undefined;
|
|
13197
13279
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13198
13280
|
domain_metadata?: {
|
|
@@ -13239,7 +13321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13239
13321
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13240
13322
|
custom_domain_id: string;
|
|
13241
13323
|
primary: boolean;
|
|
13242
|
-
status: "
|
|
13324
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13243
13325
|
verification_method?: "txt" | undefined;
|
|
13244
13326
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13245
13327
|
domain_metadata?: {
|
|
@@ -13285,7 +13367,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13285
13367
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13286
13368
|
custom_domain_id: string;
|
|
13287
13369
|
primary: boolean;
|
|
13288
|
-
status: "
|
|
13370
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13289
13371
|
verification_method?: "txt" | undefined;
|
|
13290
13372
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13291
13373
|
domain_metadata?: {
|
|
@@ -13326,7 +13408,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13326
13408
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13327
13409
|
custom_domain_id: string;
|
|
13328
13410
|
primary: boolean;
|
|
13329
|
-
status: "
|
|
13411
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13330
13412
|
verification_method?: "txt" | undefined;
|
|
13331
13413
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13332
13414
|
domain_metadata?: {
|
|
@@ -15462,19 +15544,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15462
15544
|
email: string;
|
|
15463
15545
|
send: "code" | "link";
|
|
15464
15546
|
authParams: {
|
|
15465
|
-
username?: string | undefined;
|
|
15466
|
-
organization?: string | undefined;
|
|
15467
|
-
audience?: string | undefined;
|
|
15468
15547
|
scope?: string | undefined;
|
|
15548
|
+
username?: string | undefined;
|
|
15549
|
+
act_as?: string | undefined;
|
|
15469
15550
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15470
15551
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15471
|
-
state?: string | undefined;
|
|
15472
|
-
code_challenge?: string | undefined;
|
|
15473
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15474
15552
|
redirect_uri?: string | undefined;
|
|
15553
|
+
audience?: string | undefined;
|
|
15554
|
+
organization?: string | undefined;
|
|
15555
|
+
state?: string | undefined;
|
|
15475
15556
|
nonce?: string | undefined;
|
|
15476
|
-
act_as?: string | undefined;
|
|
15477
15557
|
prompt?: string | undefined;
|
|
15558
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15559
|
+
code_challenge?: string | undefined;
|
|
15478
15560
|
ui_locales?: string | undefined;
|
|
15479
15561
|
max_age?: number | undefined;
|
|
15480
15562
|
acr_values?: string | undefined;
|
|
@@ -15498,19 +15580,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15498
15580
|
phone_number: string;
|
|
15499
15581
|
send: "code" | "link";
|
|
15500
15582
|
authParams: {
|
|
15501
|
-
username?: string | undefined;
|
|
15502
|
-
organization?: string | undefined;
|
|
15503
|
-
audience?: string | undefined;
|
|
15504
15583
|
scope?: string | undefined;
|
|
15584
|
+
username?: string | undefined;
|
|
15585
|
+
act_as?: string | undefined;
|
|
15505
15586
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15506
15587
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15507
|
-
state?: string | undefined;
|
|
15508
|
-
code_challenge?: string | undefined;
|
|
15509
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15510
15588
|
redirect_uri?: string | undefined;
|
|
15589
|
+
audience?: string | undefined;
|
|
15590
|
+
organization?: string | undefined;
|
|
15591
|
+
state?: string | undefined;
|
|
15511
15592
|
nonce?: string | undefined;
|
|
15512
|
-
act_as?: string | undefined;
|
|
15513
15593
|
prompt?: string | undefined;
|
|
15594
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15595
|
+
code_challenge?: string | undefined;
|
|
15514
15596
|
ui_locales?: string | undefined;
|
|
15515
15597
|
max_age?: number | undefined;
|
|
15516
15598
|
acr_values?: string | undefined;
|
|
@@ -15642,14 +15724,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15642
15724
|
input: {
|
|
15643
15725
|
form: {
|
|
15644
15726
|
token: string;
|
|
15645
|
-
token_type_hint?: "
|
|
15727
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15646
15728
|
client_id?: string | undefined;
|
|
15647
15729
|
client_secret?: string | undefined;
|
|
15648
15730
|
};
|
|
15649
15731
|
} & {
|
|
15650
15732
|
json: {
|
|
15651
15733
|
token: string;
|
|
15652
|
-
token_type_hint?: "
|
|
15734
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15653
15735
|
client_id?: string | undefined;
|
|
15654
15736
|
client_secret?: string | undefined;
|
|
15655
15737
|
};
|
|
@@ -15661,14 +15743,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15661
15743
|
input: {
|
|
15662
15744
|
form: {
|
|
15663
15745
|
token: string;
|
|
15664
|
-
token_type_hint?: "
|
|
15746
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15665
15747
|
client_id?: string | undefined;
|
|
15666
15748
|
client_secret?: string | undefined;
|
|
15667
15749
|
};
|
|
15668
15750
|
} & {
|
|
15669
15751
|
json: {
|
|
15670
15752
|
token: string;
|
|
15671
|
-
token_type_hint?: "
|
|
15753
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15672
15754
|
client_id?: string | undefined;
|
|
15673
15755
|
client_secret?: string | undefined;
|
|
15674
15756
|
};
|
|
@@ -15683,14 +15765,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15683
15765
|
input: {
|
|
15684
15766
|
form: {
|
|
15685
15767
|
token: string;
|
|
15686
|
-
token_type_hint?: "
|
|
15768
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15687
15769
|
client_id?: string | undefined;
|
|
15688
15770
|
client_secret?: string | undefined;
|
|
15689
15771
|
};
|
|
15690
15772
|
} & {
|
|
15691
15773
|
json: {
|
|
15692
15774
|
token: string;
|
|
15693
|
-
token_type_hint?: "
|
|
15775
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15694
15776
|
client_id?: string | undefined;
|
|
15695
15777
|
client_secret?: string | undefined;
|
|
15696
15778
|
};
|
|
@@ -16226,7 +16308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16226
16308
|
output: {
|
|
16227
16309
|
keys: {
|
|
16228
16310
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
16229
|
-
kty: "
|
|
16311
|
+
kty: "RSA" | "EC" | "oct";
|
|
16230
16312
|
kid?: string | undefined;
|
|
16231
16313
|
use?: "sig" | "enc" | undefined;
|
|
16232
16314
|
n?: string | undefined;
|
|
@@ -17421,7 +17503,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17421
17503
|
$get: {
|
|
17422
17504
|
input: {
|
|
17423
17505
|
param: {
|
|
17424
|
-
screen: "signup" | "login" | "
|
|
17506
|
+
screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17425
17507
|
};
|
|
17426
17508
|
} & {
|
|
17427
17509
|
query: {
|
|
@@ -17437,7 +17519,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17437
17519
|
} | {
|
|
17438
17520
|
input: {
|
|
17439
17521
|
param: {
|
|
17440
|
-
screen: "signup" | "login" | "
|
|
17522
|
+
screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17441
17523
|
};
|
|
17442
17524
|
} & {
|
|
17443
17525
|
query: {
|
|
@@ -17453,7 +17535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17453
17535
|
} | {
|
|
17454
17536
|
input: {
|
|
17455
17537
|
param: {
|
|
17456
|
-
screen: "signup" | "login" | "
|
|
17538
|
+
screen: "signup" | "impersonate" | "login" | "account" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17457
17539
|
};
|
|
17458
17540
|
} & {
|
|
17459
17541
|
query: {
|
|
@@ -17473,7 +17555,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17473
17555
|
$post: {
|
|
17474
17556
|
input: {
|
|
17475
17557
|
param: {
|
|
17476
|
-
screen: "signup" | "
|
|
17558
|
+
screen: "signup" | "impersonate" | "login" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17477
17559
|
};
|
|
17478
17560
|
} & {
|
|
17479
17561
|
query: {
|
|
@@ -17491,7 +17573,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17491
17573
|
} | {
|
|
17492
17574
|
input: {
|
|
17493
17575
|
param: {
|
|
17494
|
-
screen: "signup" | "
|
|
17576
|
+
screen: "signup" | "impersonate" | "login" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17495
17577
|
};
|
|
17496
17578
|
} & {
|
|
17497
17579
|
query: {
|