authhero 9.12.0 → 9.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +27 -13
- package/dist/authhero.d.ts +253 -253
- package/dist/authhero.mjs +2429 -2425
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/index.d.ts +253 -253
- package/dist/types/routes/management-api/branding.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +222 -222
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -293,7 +293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
293
293
|
};
|
|
294
294
|
} & {
|
|
295
295
|
json: {
|
|
296
|
-
type: "
|
|
296
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
297
297
|
phone_number?: string | undefined;
|
|
298
298
|
totp_secret?: string | undefined;
|
|
299
299
|
credential_id?: string | undefined;
|
|
@@ -433,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
433
433
|
};
|
|
434
434
|
};
|
|
435
435
|
output: {
|
|
436
|
-
name: "
|
|
436
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
437
437
|
enabled: boolean;
|
|
438
438
|
trial_expired?: boolean | undefined;
|
|
439
439
|
}[];
|
|
@@ -588,7 +588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
588
588
|
$get: {
|
|
589
589
|
input: {
|
|
590
590
|
param: {
|
|
591
|
-
factor_name: "
|
|
591
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
592
592
|
};
|
|
593
593
|
} & {
|
|
594
594
|
header: {
|
|
@@ -596,7 +596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
596
596
|
};
|
|
597
597
|
};
|
|
598
598
|
output: {
|
|
599
|
-
name: "
|
|
599
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
600
600
|
enabled: boolean;
|
|
601
601
|
trial_expired?: boolean | undefined;
|
|
602
602
|
};
|
|
@@ -609,7 +609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
609
609
|
$put: {
|
|
610
610
|
input: {
|
|
611
611
|
param: {
|
|
612
|
-
factor_name: "
|
|
612
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
613
613
|
};
|
|
614
614
|
} & {
|
|
615
615
|
header: {
|
|
@@ -621,7 +621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
621
621
|
};
|
|
622
622
|
};
|
|
623
623
|
output: {
|
|
624
|
-
name: "
|
|
624
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
625
625
|
enabled: boolean;
|
|
626
626
|
trial_expired?: boolean | undefined;
|
|
627
627
|
};
|
|
@@ -1393,19 +1393,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1393
1393
|
} & {
|
|
1394
1394
|
json: {
|
|
1395
1395
|
client_id: string;
|
|
1396
|
-
invitee: {
|
|
1397
|
-
email?: string | undefined;
|
|
1398
|
-
};
|
|
1399
1396
|
inviter: {
|
|
1400
1397
|
name?: string | undefined;
|
|
1401
1398
|
};
|
|
1399
|
+
invitee: {
|
|
1400
|
+
email?: string | undefined;
|
|
1401
|
+
};
|
|
1402
1402
|
id?: string | undefined;
|
|
1403
|
+
connection_id?: string | undefined;
|
|
1403
1404
|
app_metadata?: Record<string, any> | undefined;
|
|
1404
1405
|
user_metadata?: Record<string, any> | undefined;
|
|
1405
|
-
connection_id?: string | undefined;
|
|
1406
1406
|
roles?: string[] | undefined;
|
|
1407
|
-
send_invitation_email?: boolean | undefined;
|
|
1408
1407
|
ttl_sec?: number | undefined;
|
|
1408
|
+
send_invitation_email?: boolean | undefined;
|
|
1409
1409
|
};
|
|
1410
1410
|
};
|
|
1411
1411
|
output: {
|
|
@@ -1588,8 +1588,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1588
1588
|
};
|
|
1589
1589
|
} & {
|
|
1590
1590
|
json: {
|
|
1591
|
-
show_as_button?: boolean | undefined;
|
|
1592
1591
|
assign_membership_on_login?: boolean | undefined;
|
|
1592
|
+
show_as_button?: boolean | undefined;
|
|
1593
1593
|
is_signup_enabled?: boolean | undefined;
|
|
1594
1594
|
};
|
|
1595
1595
|
};
|
|
@@ -2160,9 +2160,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2160
2160
|
};
|
|
2161
2161
|
} & {
|
|
2162
2162
|
query: {
|
|
2163
|
+
from?: string | undefined;
|
|
2163
2164
|
page?: string | undefined;
|
|
2164
2165
|
include_totals?: string | undefined;
|
|
2165
|
-
from?: string | undefined;
|
|
2166
2166
|
per_page?: string | undefined;
|
|
2167
2167
|
take?: string | undefined;
|
|
2168
2168
|
};
|
|
@@ -2885,7 +2885,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2885
2885
|
hint?: string | undefined;
|
|
2886
2886
|
messages?: {
|
|
2887
2887
|
text: string;
|
|
2888
|
-
type: "
|
|
2888
|
+
type: "error" | "success" | "info" | "warning";
|
|
2889
2889
|
id?: number | undefined;
|
|
2890
2890
|
}[] | undefined;
|
|
2891
2891
|
required?: boolean | undefined;
|
|
@@ -2903,7 +2903,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2903
2903
|
hint?: string | undefined;
|
|
2904
2904
|
messages?: {
|
|
2905
2905
|
text: string;
|
|
2906
|
-
type: "
|
|
2906
|
+
type: "error" | "success" | "info" | "warning";
|
|
2907
2907
|
id?: number | undefined;
|
|
2908
2908
|
}[] | undefined;
|
|
2909
2909
|
required?: boolean | undefined;
|
|
@@ -2927,7 +2927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2927
2927
|
hint?: string | undefined;
|
|
2928
2928
|
messages?: {
|
|
2929
2929
|
text: string;
|
|
2930
|
-
type: "
|
|
2930
|
+
type: "error" | "success" | "info" | "warning";
|
|
2931
2931
|
id?: number | undefined;
|
|
2932
2932
|
}[] | undefined;
|
|
2933
2933
|
required?: boolean | undefined;
|
|
@@ -2951,7 +2951,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2951
2951
|
hint?: string | undefined;
|
|
2952
2952
|
messages?: {
|
|
2953
2953
|
text: string;
|
|
2954
|
-
type: "
|
|
2954
|
+
type: "error" | "success" | "info" | "warning";
|
|
2955
2955
|
id?: number | undefined;
|
|
2956
2956
|
}[] | undefined;
|
|
2957
2957
|
required?: boolean | undefined;
|
|
@@ -2975,7 +2975,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2975
2975
|
hint?: string | undefined;
|
|
2976
2976
|
messages?: {
|
|
2977
2977
|
text: string;
|
|
2978
|
-
type: "
|
|
2978
|
+
type: "error" | "success" | "info" | "warning";
|
|
2979
2979
|
id?: number | undefined;
|
|
2980
2980
|
}[] | undefined;
|
|
2981
2981
|
required?: boolean | undefined;
|
|
@@ -3004,7 +3004,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3004
3004
|
hint?: string | undefined;
|
|
3005
3005
|
messages?: {
|
|
3006
3006
|
text: string;
|
|
3007
|
-
type: "
|
|
3007
|
+
type: "error" | "success" | "info" | "warning";
|
|
3008
3008
|
id?: number | undefined;
|
|
3009
3009
|
}[] | undefined;
|
|
3010
3010
|
required?: boolean | undefined;
|
|
@@ -3019,7 +3019,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3019
3019
|
hint?: string | undefined;
|
|
3020
3020
|
messages?: {
|
|
3021
3021
|
text: string;
|
|
3022
|
-
type: "
|
|
3022
|
+
type: "error" | "success" | "info" | "warning";
|
|
3023
3023
|
id?: number | undefined;
|
|
3024
3024
|
}[] | undefined;
|
|
3025
3025
|
required?: boolean | undefined;
|
|
@@ -3040,7 +3040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3040
3040
|
hint?: string | undefined;
|
|
3041
3041
|
messages?: {
|
|
3042
3042
|
text: string;
|
|
3043
|
-
type: "
|
|
3043
|
+
type: "error" | "success" | "info" | "warning";
|
|
3044
3044
|
id?: number | undefined;
|
|
3045
3045
|
}[] | undefined;
|
|
3046
3046
|
required?: boolean | undefined;
|
|
@@ -3065,7 +3065,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3065
3065
|
hint?: string | undefined;
|
|
3066
3066
|
messages?: {
|
|
3067
3067
|
text: string;
|
|
3068
|
-
type: "
|
|
3068
|
+
type: "error" | "success" | "info" | "warning";
|
|
3069
3069
|
id?: number | undefined;
|
|
3070
3070
|
}[] | undefined;
|
|
3071
3071
|
required?: boolean | undefined;
|
|
@@ -3086,7 +3086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3086
3086
|
hint?: string | undefined;
|
|
3087
3087
|
messages?: {
|
|
3088
3088
|
text: string;
|
|
3089
|
-
type: "
|
|
3089
|
+
type: "error" | "success" | "info" | "warning";
|
|
3090
3090
|
id?: number | undefined;
|
|
3091
3091
|
}[] | undefined;
|
|
3092
3092
|
required?: boolean | undefined;
|
|
@@ -3106,7 +3106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3106
3106
|
hint?: string | undefined;
|
|
3107
3107
|
messages?: {
|
|
3108
3108
|
text: string;
|
|
3109
|
-
type: "
|
|
3109
|
+
type: "error" | "success" | "info" | "warning";
|
|
3110
3110
|
id?: number | undefined;
|
|
3111
3111
|
}[] | undefined;
|
|
3112
3112
|
required?: boolean | undefined;
|
|
@@ -3125,7 +3125,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3125
3125
|
hint?: string | undefined;
|
|
3126
3126
|
messages?: {
|
|
3127
3127
|
text: string;
|
|
3128
|
-
type: "
|
|
3128
|
+
type: "error" | "success" | "info" | "warning";
|
|
3129
3129
|
id?: number | undefined;
|
|
3130
3130
|
}[] | undefined;
|
|
3131
3131
|
required?: boolean | undefined;
|
|
@@ -3147,7 +3147,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3147
3147
|
hint?: string | undefined;
|
|
3148
3148
|
messages?: {
|
|
3149
3149
|
text: string;
|
|
3150
|
-
type: "
|
|
3150
|
+
type: "error" | "success" | "info" | "warning";
|
|
3151
3151
|
id?: number | undefined;
|
|
3152
3152
|
}[] | undefined;
|
|
3153
3153
|
required?: boolean | undefined;
|
|
@@ -3169,7 +3169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3169
3169
|
hint?: string | undefined;
|
|
3170
3170
|
messages?: {
|
|
3171
3171
|
text: string;
|
|
3172
|
-
type: "
|
|
3172
|
+
type: "error" | "success" | "info" | "warning";
|
|
3173
3173
|
id?: number | undefined;
|
|
3174
3174
|
}[] | undefined;
|
|
3175
3175
|
required?: boolean | undefined;
|
|
@@ -3188,7 +3188,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3188
3188
|
hint?: string | undefined;
|
|
3189
3189
|
messages?: {
|
|
3190
3190
|
text: string;
|
|
3191
|
-
type: "
|
|
3191
|
+
type: "error" | "success" | "info" | "warning";
|
|
3192
3192
|
id?: number | undefined;
|
|
3193
3193
|
}[] | undefined;
|
|
3194
3194
|
required?: boolean | undefined;
|
|
@@ -3215,7 +3215,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3215
3215
|
hint?: string | undefined;
|
|
3216
3216
|
messages?: {
|
|
3217
3217
|
text: string;
|
|
3218
|
-
type: "
|
|
3218
|
+
type: "error" | "success" | "info" | "warning";
|
|
3219
3219
|
id?: number | undefined;
|
|
3220
3220
|
}[] | undefined;
|
|
3221
3221
|
required?: boolean | undefined;
|
|
@@ -3236,7 +3236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3236
3236
|
hint?: string | undefined;
|
|
3237
3237
|
messages?: {
|
|
3238
3238
|
text: string;
|
|
3239
|
-
type: "
|
|
3239
|
+
type: "error" | "success" | "info" | "warning";
|
|
3240
3240
|
id?: number | undefined;
|
|
3241
3241
|
}[] | undefined;
|
|
3242
3242
|
required?: boolean | undefined;
|
|
@@ -3259,7 +3259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3259
3259
|
hint?: string | undefined;
|
|
3260
3260
|
messages?: {
|
|
3261
3261
|
text: string;
|
|
3262
|
-
type: "
|
|
3262
|
+
type: "error" | "success" | "info" | "warning";
|
|
3263
3263
|
id?: number | undefined;
|
|
3264
3264
|
}[] | undefined;
|
|
3265
3265
|
required?: boolean | undefined;
|
|
@@ -3492,7 +3492,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3492
3492
|
hint?: string | undefined;
|
|
3493
3493
|
messages?: {
|
|
3494
3494
|
text: string;
|
|
3495
|
-
type: "
|
|
3495
|
+
type: "error" | "success" | "info" | "warning";
|
|
3496
3496
|
id?: number | undefined;
|
|
3497
3497
|
}[] | undefined;
|
|
3498
3498
|
required?: boolean | undefined;
|
|
@@ -3510,7 +3510,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3510
3510
|
hint?: string | undefined;
|
|
3511
3511
|
messages?: {
|
|
3512
3512
|
text: string;
|
|
3513
|
-
type: "
|
|
3513
|
+
type: "error" | "success" | "info" | "warning";
|
|
3514
3514
|
id?: number | undefined;
|
|
3515
3515
|
}[] | undefined;
|
|
3516
3516
|
required?: boolean | undefined;
|
|
@@ -3534,7 +3534,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3534
3534
|
hint?: string | undefined;
|
|
3535
3535
|
messages?: {
|
|
3536
3536
|
text: string;
|
|
3537
|
-
type: "
|
|
3537
|
+
type: "error" | "success" | "info" | "warning";
|
|
3538
3538
|
id?: number | undefined;
|
|
3539
3539
|
}[] | undefined;
|
|
3540
3540
|
required?: boolean | undefined;
|
|
@@ -3558,7 +3558,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3558
3558
|
hint?: string | undefined;
|
|
3559
3559
|
messages?: {
|
|
3560
3560
|
text: string;
|
|
3561
|
-
type: "
|
|
3561
|
+
type: "error" | "success" | "info" | "warning";
|
|
3562
3562
|
id?: number | undefined;
|
|
3563
3563
|
}[] | undefined;
|
|
3564
3564
|
required?: boolean | undefined;
|
|
@@ -3582,7 +3582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3582
3582
|
hint?: string | undefined;
|
|
3583
3583
|
messages?: {
|
|
3584
3584
|
text: string;
|
|
3585
|
-
type: "
|
|
3585
|
+
type: "error" | "success" | "info" | "warning";
|
|
3586
3586
|
id?: number | undefined;
|
|
3587
3587
|
}[] | undefined;
|
|
3588
3588
|
required?: boolean | undefined;
|
|
@@ -3611,7 +3611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3611
3611
|
hint?: string | undefined;
|
|
3612
3612
|
messages?: {
|
|
3613
3613
|
text: string;
|
|
3614
|
-
type: "
|
|
3614
|
+
type: "error" | "success" | "info" | "warning";
|
|
3615
3615
|
id?: number | undefined;
|
|
3616
3616
|
}[] | undefined;
|
|
3617
3617
|
required?: boolean | undefined;
|
|
@@ -3626,7 +3626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3626
3626
|
hint?: string | undefined;
|
|
3627
3627
|
messages?: {
|
|
3628
3628
|
text: string;
|
|
3629
|
-
type: "
|
|
3629
|
+
type: "error" | "success" | "info" | "warning";
|
|
3630
3630
|
id?: number | undefined;
|
|
3631
3631
|
}[] | undefined;
|
|
3632
3632
|
required?: boolean | undefined;
|
|
@@ -3647,7 +3647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3647
3647
|
hint?: string | undefined;
|
|
3648
3648
|
messages?: {
|
|
3649
3649
|
text: string;
|
|
3650
|
-
type: "
|
|
3650
|
+
type: "error" | "success" | "info" | "warning";
|
|
3651
3651
|
id?: number | undefined;
|
|
3652
3652
|
}[] | undefined;
|
|
3653
3653
|
required?: boolean | undefined;
|
|
@@ -3672,7 +3672,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3672
3672
|
hint?: string | undefined;
|
|
3673
3673
|
messages?: {
|
|
3674
3674
|
text: string;
|
|
3675
|
-
type: "
|
|
3675
|
+
type: "error" | "success" | "info" | "warning";
|
|
3676
3676
|
id?: number | undefined;
|
|
3677
3677
|
}[] | undefined;
|
|
3678
3678
|
required?: boolean | undefined;
|
|
@@ -3693,7 +3693,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3693
3693
|
hint?: string | undefined;
|
|
3694
3694
|
messages?: {
|
|
3695
3695
|
text: string;
|
|
3696
|
-
type: "
|
|
3696
|
+
type: "error" | "success" | "info" | "warning";
|
|
3697
3697
|
id?: number | undefined;
|
|
3698
3698
|
}[] | undefined;
|
|
3699
3699
|
required?: boolean | undefined;
|
|
@@ -3713,7 +3713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3713
3713
|
hint?: string | undefined;
|
|
3714
3714
|
messages?: {
|
|
3715
3715
|
text: string;
|
|
3716
|
-
type: "
|
|
3716
|
+
type: "error" | "success" | "info" | "warning";
|
|
3717
3717
|
id?: number | undefined;
|
|
3718
3718
|
}[] | undefined;
|
|
3719
3719
|
required?: boolean | undefined;
|
|
@@ -3732,7 +3732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3732
3732
|
hint?: string | undefined;
|
|
3733
3733
|
messages?: {
|
|
3734
3734
|
text: string;
|
|
3735
|
-
type: "
|
|
3735
|
+
type: "error" | "success" | "info" | "warning";
|
|
3736
3736
|
id?: number | undefined;
|
|
3737
3737
|
}[] | undefined;
|
|
3738
3738
|
required?: boolean | undefined;
|
|
@@ -3754,7 +3754,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3754
3754
|
hint?: string | undefined;
|
|
3755
3755
|
messages?: {
|
|
3756
3756
|
text: string;
|
|
3757
|
-
type: "
|
|
3757
|
+
type: "error" | "success" | "info" | "warning";
|
|
3758
3758
|
id?: number | undefined;
|
|
3759
3759
|
}[] | undefined;
|
|
3760
3760
|
required?: boolean | undefined;
|
|
@@ -3776,7 +3776,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3776
3776
|
hint?: string | undefined;
|
|
3777
3777
|
messages?: {
|
|
3778
3778
|
text: string;
|
|
3779
|
-
type: "
|
|
3779
|
+
type: "error" | "success" | "info" | "warning";
|
|
3780
3780
|
id?: number | undefined;
|
|
3781
3781
|
}[] | undefined;
|
|
3782
3782
|
required?: boolean | undefined;
|
|
@@ -3795,7 +3795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3795
3795
|
hint?: string | undefined;
|
|
3796
3796
|
messages?: {
|
|
3797
3797
|
text: string;
|
|
3798
|
-
type: "
|
|
3798
|
+
type: "error" | "success" | "info" | "warning";
|
|
3799
3799
|
id?: number | undefined;
|
|
3800
3800
|
}[] | undefined;
|
|
3801
3801
|
required?: boolean | undefined;
|
|
@@ -3822,7 +3822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3822
3822
|
hint?: string | undefined;
|
|
3823
3823
|
messages?: {
|
|
3824
3824
|
text: string;
|
|
3825
|
-
type: "
|
|
3825
|
+
type: "error" | "success" | "info" | "warning";
|
|
3826
3826
|
id?: number | undefined;
|
|
3827
3827
|
}[] | undefined;
|
|
3828
3828
|
required?: boolean | undefined;
|
|
@@ -3843,7 +3843,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3843
3843
|
hint?: string | undefined;
|
|
3844
3844
|
messages?: {
|
|
3845
3845
|
text: string;
|
|
3846
|
-
type: "
|
|
3846
|
+
type: "error" | "success" | "info" | "warning";
|
|
3847
3847
|
id?: number | undefined;
|
|
3848
3848
|
}[] | undefined;
|
|
3849
3849
|
required?: boolean | undefined;
|
|
@@ -3866,7 +3866,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
3866
3866
|
hint?: string | undefined;
|
|
3867
3867
|
messages?: {
|
|
3868
3868
|
text: string;
|
|
3869
|
-
type: "
|
|
3869
|
+
type: "error" | "success" | "info" | "warning";
|
|
3870
3870
|
id?: number | undefined;
|
|
3871
3871
|
}[] | undefined;
|
|
3872
3872
|
required?: boolean | undefined;
|
|
@@ -4115,7 +4115,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4115
4115
|
hint?: string | undefined;
|
|
4116
4116
|
messages?: {
|
|
4117
4117
|
text: string;
|
|
4118
|
-
type: "
|
|
4118
|
+
type: "error" | "success" | "info" | "warning";
|
|
4119
4119
|
id?: number | undefined;
|
|
4120
4120
|
}[] | undefined;
|
|
4121
4121
|
required?: boolean | undefined;
|
|
@@ -4133,7 +4133,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4133
4133
|
hint?: string | undefined;
|
|
4134
4134
|
messages?: {
|
|
4135
4135
|
text: string;
|
|
4136
|
-
type: "
|
|
4136
|
+
type: "error" | "success" | "info" | "warning";
|
|
4137
4137
|
id?: number | undefined;
|
|
4138
4138
|
}[] | undefined;
|
|
4139
4139
|
required?: boolean | undefined;
|
|
@@ -4157,7 +4157,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4157
4157
|
hint?: string | undefined;
|
|
4158
4158
|
messages?: {
|
|
4159
4159
|
text: string;
|
|
4160
|
-
type: "
|
|
4160
|
+
type: "error" | "success" | "info" | "warning";
|
|
4161
4161
|
id?: number | undefined;
|
|
4162
4162
|
}[] | undefined;
|
|
4163
4163
|
required?: boolean | undefined;
|
|
@@ -4181,7 +4181,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4181
4181
|
hint?: string | undefined;
|
|
4182
4182
|
messages?: {
|
|
4183
4183
|
text: string;
|
|
4184
|
-
type: "
|
|
4184
|
+
type: "error" | "success" | "info" | "warning";
|
|
4185
4185
|
id?: number | undefined;
|
|
4186
4186
|
}[] | undefined;
|
|
4187
4187
|
required?: boolean | undefined;
|
|
@@ -4205,7 +4205,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4205
4205
|
hint?: string | undefined;
|
|
4206
4206
|
messages?: {
|
|
4207
4207
|
text: string;
|
|
4208
|
-
type: "
|
|
4208
|
+
type: "error" | "success" | "info" | "warning";
|
|
4209
4209
|
id?: number | undefined;
|
|
4210
4210
|
}[] | undefined;
|
|
4211
4211
|
required?: boolean | undefined;
|
|
@@ -4234,7 +4234,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4234
4234
|
hint?: string | undefined;
|
|
4235
4235
|
messages?: {
|
|
4236
4236
|
text: string;
|
|
4237
|
-
type: "
|
|
4237
|
+
type: "error" | "success" | "info" | "warning";
|
|
4238
4238
|
id?: number | undefined;
|
|
4239
4239
|
}[] | undefined;
|
|
4240
4240
|
required?: boolean | undefined;
|
|
@@ -4249,7 +4249,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4249
4249
|
hint?: string | undefined;
|
|
4250
4250
|
messages?: {
|
|
4251
4251
|
text: string;
|
|
4252
|
-
type: "
|
|
4252
|
+
type: "error" | "success" | "info" | "warning";
|
|
4253
4253
|
id?: number | undefined;
|
|
4254
4254
|
}[] | undefined;
|
|
4255
4255
|
required?: boolean | undefined;
|
|
@@ -4270,7 +4270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4270
4270
|
hint?: string | undefined;
|
|
4271
4271
|
messages?: {
|
|
4272
4272
|
text: string;
|
|
4273
|
-
type: "
|
|
4273
|
+
type: "error" | "success" | "info" | "warning";
|
|
4274
4274
|
id?: number | undefined;
|
|
4275
4275
|
}[] | undefined;
|
|
4276
4276
|
required?: boolean | undefined;
|
|
@@ -4295,7 +4295,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4295
4295
|
hint?: string | undefined;
|
|
4296
4296
|
messages?: {
|
|
4297
4297
|
text: string;
|
|
4298
|
-
type: "
|
|
4298
|
+
type: "error" | "success" | "info" | "warning";
|
|
4299
4299
|
id?: number | undefined;
|
|
4300
4300
|
}[] | undefined;
|
|
4301
4301
|
required?: boolean | undefined;
|
|
@@ -4316,7 +4316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4316
4316
|
hint?: string | undefined;
|
|
4317
4317
|
messages?: {
|
|
4318
4318
|
text: string;
|
|
4319
|
-
type: "
|
|
4319
|
+
type: "error" | "success" | "info" | "warning";
|
|
4320
4320
|
id?: number | undefined;
|
|
4321
4321
|
}[] | undefined;
|
|
4322
4322
|
required?: boolean | undefined;
|
|
@@ -4336,7 +4336,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4336
4336
|
hint?: string | undefined;
|
|
4337
4337
|
messages?: {
|
|
4338
4338
|
text: string;
|
|
4339
|
-
type: "
|
|
4339
|
+
type: "error" | "success" | "info" | "warning";
|
|
4340
4340
|
id?: number | undefined;
|
|
4341
4341
|
}[] | undefined;
|
|
4342
4342
|
required?: boolean | undefined;
|
|
@@ -4355,7 +4355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4355
4355
|
hint?: string | undefined;
|
|
4356
4356
|
messages?: {
|
|
4357
4357
|
text: string;
|
|
4358
|
-
type: "
|
|
4358
|
+
type: "error" | "success" | "info" | "warning";
|
|
4359
4359
|
id?: number | undefined;
|
|
4360
4360
|
}[] | undefined;
|
|
4361
4361
|
required?: boolean | undefined;
|
|
@@ -4377,7 +4377,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4377
4377
|
hint?: string | undefined;
|
|
4378
4378
|
messages?: {
|
|
4379
4379
|
text: string;
|
|
4380
|
-
type: "
|
|
4380
|
+
type: "error" | "success" | "info" | "warning";
|
|
4381
4381
|
id?: number | undefined;
|
|
4382
4382
|
}[] | undefined;
|
|
4383
4383
|
required?: boolean | undefined;
|
|
@@ -4399,7 +4399,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4399
4399
|
hint?: string | undefined;
|
|
4400
4400
|
messages?: {
|
|
4401
4401
|
text: string;
|
|
4402
|
-
type: "
|
|
4402
|
+
type: "error" | "success" | "info" | "warning";
|
|
4403
4403
|
id?: number | undefined;
|
|
4404
4404
|
}[] | undefined;
|
|
4405
4405
|
required?: boolean | undefined;
|
|
@@ -4418,7 +4418,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4418
4418
|
hint?: string | undefined;
|
|
4419
4419
|
messages?: {
|
|
4420
4420
|
text: string;
|
|
4421
|
-
type: "
|
|
4421
|
+
type: "error" | "success" | "info" | "warning";
|
|
4422
4422
|
id?: number | undefined;
|
|
4423
4423
|
}[] | undefined;
|
|
4424
4424
|
required?: boolean | undefined;
|
|
@@ -4445,7 +4445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4445
4445
|
hint?: string | undefined;
|
|
4446
4446
|
messages?: {
|
|
4447
4447
|
text: string;
|
|
4448
|
-
type: "
|
|
4448
|
+
type: "error" | "success" | "info" | "warning";
|
|
4449
4449
|
id?: number | undefined;
|
|
4450
4450
|
}[] | undefined;
|
|
4451
4451
|
required?: boolean | undefined;
|
|
@@ -4466,7 +4466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4466
4466
|
hint?: string | undefined;
|
|
4467
4467
|
messages?: {
|
|
4468
4468
|
text: string;
|
|
4469
|
-
type: "
|
|
4469
|
+
type: "error" | "success" | "info" | "warning";
|
|
4470
4470
|
id?: number | undefined;
|
|
4471
4471
|
}[] | undefined;
|
|
4472
4472
|
required?: boolean | undefined;
|
|
@@ -4489,7 +4489,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4489
4489
|
hint?: string | undefined;
|
|
4490
4490
|
messages?: {
|
|
4491
4491
|
text: string;
|
|
4492
|
-
type: "
|
|
4492
|
+
type: "error" | "success" | "info" | "warning";
|
|
4493
4493
|
id?: number | undefined;
|
|
4494
4494
|
}[] | undefined;
|
|
4495
4495
|
required?: boolean | undefined;
|
|
@@ -4743,7 +4743,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4743
4743
|
hint?: string | undefined;
|
|
4744
4744
|
messages?: {
|
|
4745
4745
|
text: string;
|
|
4746
|
-
type: "
|
|
4746
|
+
type: "error" | "success" | "info" | "warning";
|
|
4747
4747
|
id?: number | undefined;
|
|
4748
4748
|
}[] | undefined;
|
|
4749
4749
|
required?: boolean | undefined;
|
|
@@ -4761,7 +4761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4761
4761
|
hint?: string | undefined;
|
|
4762
4762
|
messages?: {
|
|
4763
4763
|
text: string;
|
|
4764
|
-
type: "
|
|
4764
|
+
type: "error" | "success" | "info" | "warning";
|
|
4765
4765
|
id?: number | undefined;
|
|
4766
4766
|
}[] | undefined;
|
|
4767
4767
|
required?: boolean | undefined;
|
|
@@ -4785,7 +4785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4785
4785
|
hint?: string | undefined;
|
|
4786
4786
|
messages?: {
|
|
4787
4787
|
text: string;
|
|
4788
|
-
type: "
|
|
4788
|
+
type: "error" | "success" | "info" | "warning";
|
|
4789
4789
|
id?: number | undefined;
|
|
4790
4790
|
}[] | undefined;
|
|
4791
4791
|
required?: boolean | undefined;
|
|
@@ -4809,7 +4809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4809
4809
|
hint?: string | undefined;
|
|
4810
4810
|
messages?: {
|
|
4811
4811
|
text: string;
|
|
4812
|
-
type: "
|
|
4812
|
+
type: "error" | "success" | "info" | "warning";
|
|
4813
4813
|
id?: number | undefined;
|
|
4814
4814
|
}[] | undefined;
|
|
4815
4815
|
required?: boolean | undefined;
|
|
@@ -4833,7 +4833,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4833
4833
|
hint?: string | undefined;
|
|
4834
4834
|
messages?: {
|
|
4835
4835
|
text: string;
|
|
4836
|
-
type: "
|
|
4836
|
+
type: "error" | "success" | "info" | "warning";
|
|
4837
4837
|
id?: number | undefined;
|
|
4838
4838
|
}[] | undefined;
|
|
4839
4839
|
required?: boolean | undefined;
|
|
@@ -4858,7 +4858,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4858
4858
|
hint?: string | undefined;
|
|
4859
4859
|
messages?: {
|
|
4860
4860
|
text: string;
|
|
4861
|
-
type: "
|
|
4861
|
+
type: "error" | "success" | "info" | "warning";
|
|
4862
4862
|
id?: number | undefined;
|
|
4863
4863
|
}[] | undefined;
|
|
4864
4864
|
required?: boolean | undefined;
|
|
@@ -4873,7 +4873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4873
4873
|
hint?: string | undefined;
|
|
4874
4874
|
messages?: {
|
|
4875
4875
|
text: string;
|
|
4876
|
-
type: "
|
|
4876
|
+
type: "error" | "success" | "info" | "warning";
|
|
4877
4877
|
id?: number | undefined;
|
|
4878
4878
|
}[] | undefined;
|
|
4879
4879
|
required?: boolean | undefined;
|
|
@@ -4894,7 +4894,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4894
4894
|
hint?: string | undefined;
|
|
4895
4895
|
messages?: {
|
|
4896
4896
|
text: string;
|
|
4897
|
-
type: "
|
|
4897
|
+
type: "error" | "success" | "info" | "warning";
|
|
4898
4898
|
id?: number | undefined;
|
|
4899
4899
|
}[] | undefined;
|
|
4900
4900
|
required?: boolean | undefined;
|
|
@@ -4919,7 +4919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4919
4919
|
hint?: string | undefined;
|
|
4920
4920
|
messages?: {
|
|
4921
4921
|
text: string;
|
|
4922
|
-
type: "
|
|
4922
|
+
type: "error" | "success" | "info" | "warning";
|
|
4923
4923
|
id?: number | undefined;
|
|
4924
4924
|
}[] | undefined;
|
|
4925
4925
|
required?: boolean | undefined;
|
|
@@ -4940,7 +4940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4940
4940
|
hint?: string | undefined;
|
|
4941
4941
|
messages?: {
|
|
4942
4942
|
text: string;
|
|
4943
|
-
type: "
|
|
4943
|
+
type: "error" | "success" | "info" | "warning";
|
|
4944
4944
|
id?: number | undefined;
|
|
4945
4945
|
}[] | undefined;
|
|
4946
4946
|
required?: boolean | undefined;
|
|
@@ -4960,7 +4960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4960
4960
|
hint?: string | undefined;
|
|
4961
4961
|
messages?: {
|
|
4962
4962
|
text: string;
|
|
4963
|
-
type: "
|
|
4963
|
+
type: "error" | "success" | "info" | "warning";
|
|
4964
4964
|
id?: number | undefined;
|
|
4965
4965
|
}[] | undefined;
|
|
4966
4966
|
required?: boolean | undefined;
|
|
@@ -4979,7 +4979,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
4979
4979
|
hint?: string | undefined;
|
|
4980
4980
|
messages?: {
|
|
4981
4981
|
text: string;
|
|
4982
|
-
type: "
|
|
4982
|
+
type: "error" | "success" | "info" | "warning";
|
|
4983
4983
|
id?: number | undefined;
|
|
4984
4984
|
}[] | undefined;
|
|
4985
4985
|
required?: boolean | undefined;
|
|
@@ -5001,7 +5001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5001
5001
|
hint?: string | undefined;
|
|
5002
5002
|
messages?: {
|
|
5003
5003
|
text: string;
|
|
5004
|
-
type: "
|
|
5004
|
+
type: "error" | "success" | "info" | "warning";
|
|
5005
5005
|
id?: number | undefined;
|
|
5006
5006
|
}[] | undefined;
|
|
5007
5007
|
required?: boolean | undefined;
|
|
@@ -5023,7 +5023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5023
5023
|
hint?: string | undefined;
|
|
5024
5024
|
messages?: {
|
|
5025
5025
|
text: string;
|
|
5026
|
-
type: "
|
|
5026
|
+
type: "error" | "success" | "info" | "warning";
|
|
5027
5027
|
id?: number | undefined;
|
|
5028
5028
|
}[] | undefined;
|
|
5029
5029
|
required?: boolean | undefined;
|
|
@@ -5042,7 +5042,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5042
5042
|
hint?: string | undefined;
|
|
5043
5043
|
messages?: {
|
|
5044
5044
|
text: string;
|
|
5045
|
-
type: "
|
|
5045
|
+
type: "error" | "success" | "info" | "warning";
|
|
5046
5046
|
id?: number | undefined;
|
|
5047
5047
|
}[] | undefined;
|
|
5048
5048
|
required?: boolean | undefined;
|
|
@@ -5069,7 +5069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5069
5069
|
hint?: string | undefined;
|
|
5070
5070
|
messages?: {
|
|
5071
5071
|
text: string;
|
|
5072
|
-
type: "
|
|
5072
|
+
type: "error" | "success" | "info" | "warning";
|
|
5073
5073
|
id?: number | undefined;
|
|
5074
5074
|
}[] | undefined;
|
|
5075
5075
|
required?: boolean | undefined;
|
|
@@ -5090,7 +5090,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5090
5090
|
hint?: string | undefined;
|
|
5091
5091
|
messages?: {
|
|
5092
5092
|
text: string;
|
|
5093
|
-
type: "
|
|
5093
|
+
type: "error" | "success" | "info" | "warning";
|
|
5094
5094
|
id?: number | undefined;
|
|
5095
5095
|
}[] | undefined;
|
|
5096
5096
|
required?: boolean | undefined;
|
|
@@ -5113,7 +5113,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5113
5113
|
hint?: string | undefined;
|
|
5114
5114
|
messages?: {
|
|
5115
5115
|
text: string;
|
|
5116
|
-
type: "
|
|
5116
|
+
type: "error" | "success" | "info" | "warning";
|
|
5117
5117
|
id?: number | undefined;
|
|
5118
5118
|
}[] | undefined;
|
|
5119
5119
|
required?: boolean | undefined;
|
|
@@ -5344,7 +5344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5344
5344
|
hint?: string | undefined;
|
|
5345
5345
|
messages?: {
|
|
5346
5346
|
text: string;
|
|
5347
|
-
type: "
|
|
5347
|
+
type: "error" | "success" | "info" | "warning";
|
|
5348
5348
|
id?: number | undefined;
|
|
5349
5349
|
}[] | undefined;
|
|
5350
5350
|
required?: boolean | undefined;
|
|
@@ -5362,7 +5362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5362
5362
|
hint?: string | undefined;
|
|
5363
5363
|
messages?: {
|
|
5364
5364
|
text: string;
|
|
5365
|
-
type: "
|
|
5365
|
+
type: "error" | "success" | "info" | "warning";
|
|
5366
5366
|
id?: number | undefined;
|
|
5367
5367
|
}[] | undefined;
|
|
5368
5368
|
required?: boolean | undefined;
|
|
@@ -5386,7 +5386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5386
5386
|
hint?: string | undefined;
|
|
5387
5387
|
messages?: {
|
|
5388
5388
|
text: string;
|
|
5389
|
-
type: "
|
|
5389
|
+
type: "error" | "success" | "info" | "warning";
|
|
5390
5390
|
id?: number | undefined;
|
|
5391
5391
|
}[] | undefined;
|
|
5392
5392
|
required?: boolean | undefined;
|
|
@@ -5410,7 +5410,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5410
5410
|
hint?: string | undefined;
|
|
5411
5411
|
messages?: {
|
|
5412
5412
|
text: string;
|
|
5413
|
-
type: "
|
|
5413
|
+
type: "error" | "success" | "info" | "warning";
|
|
5414
5414
|
id?: number | undefined;
|
|
5415
5415
|
}[] | undefined;
|
|
5416
5416
|
required?: boolean | undefined;
|
|
@@ -5434,7 +5434,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5434
5434
|
hint?: string | undefined;
|
|
5435
5435
|
messages?: {
|
|
5436
5436
|
text: string;
|
|
5437
|
-
type: "
|
|
5437
|
+
type: "error" | "success" | "info" | "warning";
|
|
5438
5438
|
id?: number | undefined;
|
|
5439
5439
|
}[] | undefined;
|
|
5440
5440
|
required?: boolean | undefined;
|
|
@@ -5463,7 +5463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5463
5463
|
hint?: string | undefined;
|
|
5464
5464
|
messages?: {
|
|
5465
5465
|
text: string;
|
|
5466
|
-
type: "
|
|
5466
|
+
type: "error" | "success" | "info" | "warning";
|
|
5467
5467
|
id?: number | undefined;
|
|
5468
5468
|
}[] | undefined;
|
|
5469
5469
|
required?: boolean | undefined;
|
|
@@ -5478,7 +5478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5478
5478
|
hint?: string | undefined;
|
|
5479
5479
|
messages?: {
|
|
5480
5480
|
text: string;
|
|
5481
|
-
type: "
|
|
5481
|
+
type: "error" | "success" | "info" | "warning";
|
|
5482
5482
|
id?: number | undefined;
|
|
5483
5483
|
}[] | undefined;
|
|
5484
5484
|
required?: boolean | undefined;
|
|
@@ -5499,7 +5499,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5499
5499
|
hint?: string | undefined;
|
|
5500
5500
|
messages?: {
|
|
5501
5501
|
text: string;
|
|
5502
|
-
type: "
|
|
5502
|
+
type: "error" | "success" | "info" | "warning";
|
|
5503
5503
|
id?: number | undefined;
|
|
5504
5504
|
}[] | undefined;
|
|
5505
5505
|
required?: boolean | undefined;
|
|
@@ -5524,7 +5524,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5524
5524
|
hint?: string | undefined;
|
|
5525
5525
|
messages?: {
|
|
5526
5526
|
text: string;
|
|
5527
|
-
type: "
|
|
5527
|
+
type: "error" | "success" | "info" | "warning";
|
|
5528
5528
|
id?: number | undefined;
|
|
5529
5529
|
}[] | undefined;
|
|
5530
5530
|
required?: boolean | undefined;
|
|
@@ -5545,7 +5545,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5545
5545
|
hint?: string | undefined;
|
|
5546
5546
|
messages?: {
|
|
5547
5547
|
text: string;
|
|
5548
|
-
type: "
|
|
5548
|
+
type: "error" | "success" | "info" | "warning";
|
|
5549
5549
|
id?: number | undefined;
|
|
5550
5550
|
}[] | undefined;
|
|
5551
5551
|
required?: boolean | undefined;
|
|
@@ -5565,7 +5565,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5565
5565
|
hint?: string | undefined;
|
|
5566
5566
|
messages?: {
|
|
5567
5567
|
text: string;
|
|
5568
|
-
type: "
|
|
5568
|
+
type: "error" | "success" | "info" | "warning";
|
|
5569
5569
|
id?: number | undefined;
|
|
5570
5570
|
}[] | undefined;
|
|
5571
5571
|
required?: boolean | undefined;
|
|
@@ -5584,7 +5584,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5584
5584
|
hint?: string | undefined;
|
|
5585
5585
|
messages?: {
|
|
5586
5586
|
text: string;
|
|
5587
|
-
type: "
|
|
5587
|
+
type: "error" | "success" | "info" | "warning";
|
|
5588
5588
|
id?: number | undefined;
|
|
5589
5589
|
}[] | undefined;
|
|
5590
5590
|
required?: boolean | undefined;
|
|
@@ -5606,7 +5606,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5606
5606
|
hint?: string | undefined;
|
|
5607
5607
|
messages?: {
|
|
5608
5608
|
text: string;
|
|
5609
|
-
type: "
|
|
5609
|
+
type: "error" | "success" | "info" | "warning";
|
|
5610
5610
|
id?: number | undefined;
|
|
5611
5611
|
}[] | undefined;
|
|
5612
5612
|
required?: boolean | undefined;
|
|
@@ -5628,7 +5628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5628
5628
|
hint?: string | undefined;
|
|
5629
5629
|
messages?: {
|
|
5630
5630
|
text: string;
|
|
5631
|
-
type: "
|
|
5631
|
+
type: "error" | "success" | "info" | "warning";
|
|
5632
5632
|
id?: number | undefined;
|
|
5633
5633
|
}[] | undefined;
|
|
5634
5634
|
required?: boolean | undefined;
|
|
@@ -5647,7 +5647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5647
5647
|
hint?: string | undefined;
|
|
5648
5648
|
messages?: {
|
|
5649
5649
|
text: string;
|
|
5650
|
-
type: "
|
|
5650
|
+
type: "error" | "success" | "info" | "warning";
|
|
5651
5651
|
id?: number | undefined;
|
|
5652
5652
|
}[] | undefined;
|
|
5653
5653
|
required?: boolean | undefined;
|
|
@@ -5674,7 +5674,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5674
5674
|
hint?: string | undefined;
|
|
5675
5675
|
messages?: {
|
|
5676
5676
|
text: string;
|
|
5677
|
-
type: "
|
|
5677
|
+
type: "error" | "success" | "info" | "warning";
|
|
5678
5678
|
id?: number | undefined;
|
|
5679
5679
|
}[] | undefined;
|
|
5680
5680
|
required?: boolean | undefined;
|
|
@@ -5695,7 +5695,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5695
5695
|
hint?: string | undefined;
|
|
5696
5696
|
messages?: {
|
|
5697
5697
|
text: string;
|
|
5698
|
-
type: "
|
|
5698
|
+
type: "error" | "success" | "info" | "warning";
|
|
5699
5699
|
id?: number | undefined;
|
|
5700
5700
|
}[] | undefined;
|
|
5701
5701
|
required?: boolean | undefined;
|
|
@@ -5718,7 +5718,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5718
5718
|
hint?: string | undefined;
|
|
5719
5719
|
messages?: {
|
|
5720
5720
|
text: string;
|
|
5721
|
-
type: "
|
|
5721
|
+
type: "error" | "success" | "info" | "warning";
|
|
5722
5722
|
id?: number | undefined;
|
|
5723
5723
|
}[] | undefined;
|
|
5724
5724
|
required?: boolean | undefined;
|
|
@@ -5951,7 +5951,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5951
5951
|
hint?: string | undefined;
|
|
5952
5952
|
messages?: {
|
|
5953
5953
|
text: string;
|
|
5954
|
-
type: "
|
|
5954
|
+
type: "error" | "success" | "info" | "warning";
|
|
5955
5955
|
id?: number | undefined;
|
|
5956
5956
|
}[] | undefined;
|
|
5957
5957
|
required?: boolean | undefined;
|
|
@@ -5969,7 +5969,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5969
5969
|
hint?: string | undefined;
|
|
5970
5970
|
messages?: {
|
|
5971
5971
|
text: string;
|
|
5972
|
-
type: "
|
|
5972
|
+
type: "error" | "success" | "info" | "warning";
|
|
5973
5973
|
id?: number | undefined;
|
|
5974
5974
|
}[] | undefined;
|
|
5975
5975
|
required?: boolean | undefined;
|
|
@@ -5993,7 +5993,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
5993
5993
|
hint?: string | undefined;
|
|
5994
5994
|
messages?: {
|
|
5995
5995
|
text: string;
|
|
5996
|
-
type: "
|
|
5996
|
+
type: "error" | "success" | "info" | "warning";
|
|
5997
5997
|
id?: number | undefined;
|
|
5998
5998
|
}[] | undefined;
|
|
5999
5999
|
required?: boolean | undefined;
|
|
@@ -6017,7 +6017,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6017
6017
|
hint?: string | undefined;
|
|
6018
6018
|
messages?: {
|
|
6019
6019
|
text: string;
|
|
6020
|
-
type: "
|
|
6020
|
+
type: "error" | "success" | "info" | "warning";
|
|
6021
6021
|
id?: number | undefined;
|
|
6022
6022
|
}[] | undefined;
|
|
6023
6023
|
required?: boolean | undefined;
|
|
@@ -6041,7 +6041,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6041
6041
|
hint?: string | undefined;
|
|
6042
6042
|
messages?: {
|
|
6043
6043
|
text: string;
|
|
6044
|
-
type: "
|
|
6044
|
+
type: "error" | "success" | "info" | "warning";
|
|
6045
6045
|
id?: number | undefined;
|
|
6046
6046
|
}[] | undefined;
|
|
6047
6047
|
required?: boolean | undefined;
|
|
@@ -6066,7 +6066,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6066
6066
|
hint?: string | undefined;
|
|
6067
6067
|
messages?: {
|
|
6068
6068
|
text: string;
|
|
6069
|
-
type: "
|
|
6069
|
+
type: "error" | "success" | "info" | "warning";
|
|
6070
6070
|
id?: number | undefined;
|
|
6071
6071
|
}[] | undefined;
|
|
6072
6072
|
required?: boolean | undefined;
|
|
@@ -6081,7 +6081,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6081
6081
|
hint?: string | undefined;
|
|
6082
6082
|
messages?: {
|
|
6083
6083
|
text: string;
|
|
6084
|
-
type: "
|
|
6084
|
+
type: "error" | "success" | "info" | "warning";
|
|
6085
6085
|
id?: number | undefined;
|
|
6086
6086
|
}[] | undefined;
|
|
6087
6087
|
required?: boolean | undefined;
|
|
@@ -6102,7 +6102,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6102
6102
|
hint?: string | undefined;
|
|
6103
6103
|
messages?: {
|
|
6104
6104
|
text: string;
|
|
6105
|
-
type: "
|
|
6105
|
+
type: "error" | "success" | "info" | "warning";
|
|
6106
6106
|
id?: number | undefined;
|
|
6107
6107
|
}[] | undefined;
|
|
6108
6108
|
required?: boolean | undefined;
|
|
@@ -6127,7 +6127,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6127
6127
|
hint?: string | undefined;
|
|
6128
6128
|
messages?: {
|
|
6129
6129
|
text: string;
|
|
6130
|
-
type: "
|
|
6130
|
+
type: "error" | "success" | "info" | "warning";
|
|
6131
6131
|
id?: number | undefined;
|
|
6132
6132
|
}[] | undefined;
|
|
6133
6133
|
required?: boolean | undefined;
|
|
@@ -6148,7 +6148,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6148
6148
|
hint?: string | undefined;
|
|
6149
6149
|
messages?: {
|
|
6150
6150
|
text: string;
|
|
6151
|
-
type: "
|
|
6151
|
+
type: "error" | "success" | "info" | "warning";
|
|
6152
6152
|
id?: number | undefined;
|
|
6153
6153
|
}[] | undefined;
|
|
6154
6154
|
required?: boolean | undefined;
|
|
@@ -6168,7 +6168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6168
6168
|
hint?: string | undefined;
|
|
6169
6169
|
messages?: {
|
|
6170
6170
|
text: string;
|
|
6171
|
-
type: "
|
|
6171
|
+
type: "error" | "success" | "info" | "warning";
|
|
6172
6172
|
id?: number | undefined;
|
|
6173
6173
|
}[] | undefined;
|
|
6174
6174
|
required?: boolean | undefined;
|
|
@@ -6187,7 +6187,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6187
6187
|
hint?: string | undefined;
|
|
6188
6188
|
messages?: {
|
|
6189
6189
|
text: string;
|
|
6190
|
-
type: "
|
|
6190
|
+
type: "error" | "success" | "info" | "warning";
|
|
6191
6191
|
id?: number | undefined;
|
|
6192
6192
|
}[] | undefined;
|
|
6193
6193
|
required?: boolean | undefined;
|
|
@@ -6209,7 +6209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6209
6209
|
hint?: string | undefined;
|
|
6210
6210
|
messages?: {
|
|
6211
6211
|
text: string;
|
|
6212
|
-
type: "
|
|
6212
|
+
type: "error" | "success" | "info" | "warning";
|
|
6213
6213
|
id?: number | undefined;
|
|
6214
6214
|
}[] | undefined;
|
|
6215
6215
|
required?: boolean | undefined;
|
|
@@ -6231,7 +6231,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6231
6231
|
hint?: string | undefined;
|
|
6232
6232
|
messages?: {
|
|
6233
6233
|
text: string;
|
|
6234
|
-
type: "
|
|
6234
|
+
type: "error" | "success" | "info" | "warning";
|
|
6235
6235
|
id?: number | undefined;
|
|
6236
6236
|
}[] | undefined;
|
|
6237
6237
|
required?: boolean | undefined;
|
|
@@ -6250,7 +6250,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6250
6250
|
hint?: string | undefined;
|
|
6251
6251
|
messages?: {
|
|
6252
6252
|
text: string;
|
|
6253
|
-
type: "
|
|
6253
|
+
type: "error" | "success" | "info" | "warning";
|
|
6254
6254
|
id?: number | undefined;
|
|
6255
6255
|
}[] | undefined;
|
|
6256
6256
|
required?: boolean | undefined;
|
|
@@ -6277,7 +6277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6277
6277
|
hint?: string | undefined;
|
|
6278
6278
|
messages?: {
|
|
6279
6279
|
text: string;
|
|
6280
|
-
type: "
|
|
6280
|
+
type: "error" | "success" | "info" | "warning";
|
|
6281
6281
|
id?: number | undefined;
|
|
6282
6282
|
}[] | undefined;
|
|
6283
6283
|
required?: boolean | undefined;
|
|
@@ -6298,7 +6298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6298
6298
|
hint?: string | undefined;
|
|
6299
6299
|
messages?: {
|
|
6300
6300
|
text: string;
|
|
6301
|
-
type: "
|
|
6301
|
+
type: "error" | "success" | "info" | "warning";
|
|
6302
6302
|
id?: number | undefined;
|
|
6303
6303
|
}[] | undefined;
|
|
6304
6304
|
required?: boolean | undefined;
|
|
@@ -6321,7 +6321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6321
6321
|
hint?: string | undefined;
|
|
6322
6322
|
messages?: {
|
|
6323
6323
|
text: string;
|
|
6324
|
-
type: "
|
|
6324
|
+
type: "error" | "success" | "info" | "warning";
|
|
6325
6325
|
id?: number | undefined;
|
|
6326
6326
|
}[] | undefined;
|
|
6327
6327
|
required?: boolean | undefined;
|
|
@@ -6552,7 +6552,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6552
6552
|
hint?: string | undefined;
|
|
6553
6553
|
messages?: {
|
|
6554
6554
|
text: string;
|
|
6555
|
-
type: "
|
|
6555
|
+
type: "error" | "success" | "info" | "warning";
|
|
6556
6556
|
id?: number | undefined;
|
|
6557
6557
|
}[] | undefined;
|
|
6558
6558
|
required?: boolean | undefined;
|
|
@@ -6570,7 +6570,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6570
6570
|
hint?: string | undefined;
|
|
6571
6571
|
messages?: {
|
|
6572
6572
|
text: string;
|
|
6573
|
-
type: "
|
|
6573
|
+
type: "error" | "success" | "info" | "warning";
|
|
6574
6574
|
id?: number | undefined;
|
|
6575
6575
|
}[] | undefined;
|
|
6576
6576
|
required?: boolean | undefined;
|
|
@@ -6594,7 +6594,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6594
6594
|
hint?: string | undefined;
|
|
6595
6595
|
messages?: {
|
|
6596
6596
|
text: string;
|
|
6597
|
-
type: "
|
|
6597
|
+
type: "error" | "success" | "info" | "warning";
|
|
6598
6598
|
id?: number | undefined;
|
|
6599
6599
|
}[] | undefined;
|
|
6600
6600
|
required?: boolean | undefined;
|
|
@@ -6618,7 +6618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6618
6618
|
hint?: string | undefined;
|
|
6619
6619
|
messages?: {
|
|
6620
6620
|
text: string;
|
|
6621
|
-
type: "
|
|
6621
|
+
type: "error" | "success" | "info" | "warning";
|
|
6622
6622
|
id?: number | undefined;
|
|
6623
6623
|
}[] | undefined;
|
|
6624
6624
|
required?: boolean | undefined;
|
|
@@ -6642,7 +6642,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6642
6642
|
hint?: string | undefined;
|
|
6643
6643
|
messages?: {
|
|
6644
6644
|
text: string;
|
|
6645
|
-
type: "
|
|
6645
|
+
type: "error" | "success" | "info" | "warning";
|
|
6646
6646
|
id?: number | undefined;
|
|
6647
6647
|
}[] | undefined;
|
|
6648
6648
|
required?: boolean | undefined;
|
|
@@ -6671,7 +6671,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6671
6671
|
hint?: string | undefined;
|
|
6672
6672
|
messages?: {
|
|
6673
6673
|
text: string;
|
|
6674
|
-
type: "
|
|
6674
|
+
type: "error" | "success" | "info" | "warning";
|
|
6675
6675
|
id?: number | undefined;
|
|
6676
6676
|
}[] | undefined;
|
|
6677
6677
|
required?: boolean | undefined;
|
|
@@ -6686,7 +6686,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6686
|
hint?: string | undefined;
|
|
6687
6687
|
messages?: {
|
|
6688
6688
|
text: string;
|
|
6689
|
-
type: "
|
|
6689
|
+
type: "error" | "success" | "info" | "warning";
|
|
6690
6690
|
id?: number | undefined;
|
|
6691
6691
|
}[] | undefined;
|
|
6692
6692
|
required?: boolean | undefined;
|
|
@@ -6707,7 +6707,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6707
6707
|
hint?: string | undefined;
|
|
6708
6708
|
messages?: {
|
|
6709
6709
|
text: string;
|
|
6710
|
-
type: "
|
|
6710
|
+
type: "error" | "success" | "info" | "warning";
|
|
6711
6711
|
id?: number | undefined;
|
|
6712
6712
|
}[] | undefined;
|
|
6713
6713
|
required?: boolean | undefined;
|
|
@@ -6732,7 +6732,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6732
|
hint?: string | undefined;
|
|
6733
6733
|
messages?: {
|
|
6734
6734
|
text: string;
|
|
6735
|
-
type: "
|
|
6735
|
+
type: "error" | "success" | "info" | "warning";
|
|
6736
6736
|
id?: number | undefined;
|
|
6737
6737
|
}[] | undefined;
|
|
6738
6738
|
required?: boolean | undefined;
|
|
@@ -6753,7 +6753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6753
6753
|
hint?: string | undefined;
|
|
6754
6754
|
messages?: {
|
|
6755
6755
|
text: string;
|
|
6756
|
-
type: "
|
|
6756
|
+
type: "error" | "success" | "info" | "warning";
|
|
6757
6757
|
id?: number | undefined;
|
|
6758
6758
|
}[] | undefined;
|
|
6759
6759
|
required?: boolean | undefined;
|
|
@@ -6773,7 +6773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6773
6773
|
hint?: string | undefined;
|
|
6774
6774
|
messages?: {
|
|
6775
6775
|
text: string;
|
|
6776
|
-
type: "
|
|
6776
|
+
type: "error" | "success" | "info" | "warning";
|
|
6777
6777
|
id?: number | undefined;
|
|
6778
6778
|
}[] | undefined;
|
|
6779
6779
|
required?: boolean | undefined;
|
|
@@ -6792,7 +6792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6792
6792
|
hint?: string | undefined;
|
|
6793
6793
|
messages?: {
|
|
6794
6794
|
text: string;
|
|
6795
|
-
type: "
|
|
6795
|
+
type: "error" | "success" | "info" | "warning";
|
|
6796
6796
|
id?: number | undefined;
|
|
6797
6797
|
}[] | undefined;
|
|
6798
6798
|
required?: boolean | undefined;
|
|
@@ -6814,7 +6814,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6814
6814
|
hint?: string | undefined;
|
|
6815
6815
|
messages?: {
|
|
6816
6816
|
text: string;
|
|
6817
|
-
type: "
|
|
6817
|
+
type: "error" | "success" | "info" | "warning";
|
|
6818
6818
|
id?: number | undefined;
|
|
6819
6819
|
}[] | undefined;
|
|
6820
6820
|
required?: boolean | undefined;
|
|
@@ -6836,7 +6836,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6836
6836
|
hint?: string | undefined;
|
|
6837
6837
|
messages?: {
|
|
6838
6838
|
text: string;
|
|
6839
|
-
type: "
|
|
6839
|
+
type: "error" | "success" | "info" | "warning";
|
|
6840
6840
|
id?: number | undefined;
|
|
6841
6841
|
}[] | undefined;
|
|
6842
6842
|
required?: boolean | undefined;
|
|
@@ -6855,7 +6855,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6855
6855
|
hint?: string | undefined;
|
|
6856
6856
|
messages?: {
|
|
6857
6857
|
text: string;
|
|
6858
|
-
type: "
|
|
6858
|
+
type: "error" | "success" | "info" | "warning";
|
|
6859
6859
|
id?: number | undefined;
|
|
6860
6860
|
}[] | undefined;
|
|
6861
6861
|
required?: boolean | undefined;
|
|
@@ -6882,7 +6882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6882
6882
|
hint?: string | undefined;
|
|
6883
6883
|
messages?: {
|
|
6884
6884
|
text: string;
|
|
6885
|
-
type: "
|
|
6885
|
+
type: "error" | "success" | "info" | "warning";
|
|
6886
6886
|
id?: number | undefined;
|
|
6887
6887
|
}[] | undefined;
|
|
6888
6888
|
required?: boolean | undefined;
|
|
@@ -6903,7 +6903,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6903
6903
|
hint?: string | undefined;
|
|
6904
6904
|
messages?: {
|
|
6905
6905
|
text: string;
|
|
6906
|
-
type: "
|
|
6906
|
+
type: "error" | "success" | "info" | "warning";
|
|
6907
6907
|
id?: number | undefined;
|
|
6908
6908
|
}[] | undefined;
|
|
6909
6909
|
required?: boolean | undefined;
|
|
@@ -6926,7 +6926,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6926
6926
|
hint?: string | undefined;
|
|
6927
6927
|
messages?: {
|
|
6928
6928
|
text: string;
|
|
6929
|
-
type: "
|
|
6929
|
+
type: "error" | "success" | "info" | "warning";
|
|
6930
6930
|
id?: number | undefined;
|
|
6931
6931
|
}[] | undefined;
|
|
6932
6932
|
required?: boolean | undefined;
|
|
@@ -7232,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7232
7232
|
};
|
|
7233
7233
|
};
|
|
7234
7234
|
output: {
|
|
7235
|
-
prompt: "
|
|
7235
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7236
7236
|
language: string;
|
|
7237
7237
|
}[];
|
|
7238
7238
|
outputFormat: "json";
|
|
@@ -7270,7 +7270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7270
7270
|
$get: {
|
|
7271
7271
|
input: {
|
|
7272
7272
|
param: {
|
|
7273
|
-
prompt: "
|
|
7273
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7274
7274
|
language: string;
|
|
7275
7275
|
};
|
|
7276
7276
|
} & {
|
|
@@ -7292,7 +7292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7292
7292
|
$put: {
|
|
7293
7293
|
input: {
|
|
7294
7294
|
param: {
|
|
7295
|
-
prompt: "
|
|
7295
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7296
7296
|
language: string;
|
|
7297
7297
|
};
|
|
7298
7298
|
} & {
|
|
@@ -7316,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7316
7316
|
$delete: {
|
|
7317
7317
|
input: {
|
|
7318
7318
|
param: {
|
|
7319
|
-
prompt: "
|
|
7319
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7320
7320
|
language: string;
|
|
7321
7321
|
};
|
|
7322
7322
|
} & {
|
|
@@ -8199,7 +8199,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8199
8199
|
};
|
|
8200
8200
|
} | {
|
|
8201
8201
|
mode: "inline";
|
|
8202
|
-
status: "
|
|
8202
|
+
status: "error" | "success";
|
|
8203
8203
|
connection_id: string;
|
|
8204
8204
|
connection_name: string;
|
|
8205
8205
|
strategy: string;
|
|
@@ -8928,7 +8928,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8928
8928
|
log_type: string;
|
|
8929
8929
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8930
8930
|
actor: {
|
|
8931
|
-
type: "
|
|
8931
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8932
8932
|
id?: string | undefined;
|
|
8933
8933
|
email?: string | undefined;
|
|
8934
8934
|
org_id?: string | undefined;
|
|
@@ -9259,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9259
9259
|
created_at: string;
|
|
9260
9260
|
updated_at: string;
|
|
9261
9261
|
name: string;
|
|
9262
|
-
provider: "auth0" | "
|
|
9262
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9263
9263
|
connection: string;
|
|
9264
9264
|
enabled: boolean;
|
|
9265
9265
|
credentials: {
|
|
@@ -9291,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9291
9291
|
created_at: string;
|
|
9292
9292
|
updated_at: string;
|
|
9293
9293
|
name: string;
|
|
9294
|
-
provider: "auth0" | "
|
|
9294
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9295
9295
|
connection: string;
|
|
9296
9296
|
enabled: boolean;
|
|
9297
9297
|
credentials: {
|
|
@@ -9317,7 +9317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9317
9317
|
} & {
|
|
9318
9318
|
json: {
|
|
9319
9319
|
name: string;
|
|
9320
|
-
provider: "auth0" | "
|
|
9320
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9321
9321
|
connection: string;
|
|
9322
9322
|
credentials: {
|
|
9323
9323
|
domain: string;
|
|
@@ -9334,7 +9334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9334
9334
|
created_at: string;
|
|
9335
9335
|
updated_at: string;
|
|
9336
9336
|
name: string;
|
|
9337
|
-
provider: "auth0" | "
|
|
9337
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9338
9338
|
connection: string;
|
|
9339
9339
|
enabled: boolean;
|
|
9340
9340
|
credentials: {
|
|
@@ -9365,7 +9365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9365
9365
|
json: {
|
|
9366
9366
|
id?: string | undefined;
|
|
9367
9367
|
name?: string | undefined;
|
|
9368
|
-
provider?: "auth0" | "
|
|
9368
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
9369
9369
|
connection?: string | undefined;
|
|
9370
9370
|
enabled?: boolean | undefined;
|
|
9371
9371
|
credentials?: {
|
|
@@ -9381,7 +9381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9381
9381
|
created_at: string;
|
|
9382
9382
|
updated_at: string;
|
|
9383
9383
|
name: string;
|
|
9384
|
-
provider: "auth0" | "
|
|
9384
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9385
9385
|
connection: string;
|
|
9386
9386
|
enabled: boolean;
|
|
9387
9387
|
credentials: {
|
|
@@ -9429,7 +9429,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9429
9429
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9430
9430
|
};
|
|
9431
9431
|
id: string;
|
|
9432
|
-
status: "
|
|
9432
|
+
status: "suspended" | "active" | "paused";
|
|
9433
9433
|
filters?: {
|
|
9434
9434
|
type: string;
|
|
9435
9435
|
name: string;
|
|
@@ -9461,7 +9461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9461
9461
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9462
9462
|
};
|
|
9463
9463
|
id: string;
|
|
9464
|
-
status: "
|
|
9464
|
+
status: "suspended" | "active" | "paused";
|
|
9465
9465
|
filters?: {
|
|
9466
9466
|
type: string;
|
|
9467
9467
|
name: string;
|
|
@@ -9486,7 +9486,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9486
9486
|
name: string;
|
|
9487
9487
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9488
9488
|
sink: Record<string, unknown>;
|
|
9489
|
-
status?: "
|
|
9489
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9490
9490
|
filters?: {
|
|
9491
9491
|
type: string;
|
|
9492
9492
|
name: string;
|
|
@@ -9501,7 +9501,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9501
9501
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9502
9502
|
};
|
|
9503
9503
|
id: string;
|
|
9504
|
-
status: "
|
|
9504
|
+
status: "suspended" | "active" | "paused";
|
|
9505
9505
|
filters?: {
|
|
9506
9506
|
type: string;
|
|
9507
9507
|
name: string;
|
|
@@ -9536,7 +9536,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9536
9536
|
}[] | undefined;
|
|
9537
9537
|
isPriority?: boolean | undefined;
|
|
9538
9538
|
id?: string | undefined;
|
|
9539
|
-
status?: "
|
|
9539
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9540
9540
|
created_at?: string | undefined;
|
|
9541
9541
|
updated_at?: string | undefined;
|
|
9542
9542
|
};
|
|
@@ -9548,7 +9548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9548
9548
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9549
9549
|
};
|
|
9550
9550
|
id: string;
|
|
9551
|
-
status: "
|
|
9551
|
+
status: "suspended" | "active" | "paused";
|
|
9552
9552
|
filters?: {
|
|
9553
9553
|
type: string;
|
|
9554
9554
|
name: string;
|
|
@@ -9599,7 +9599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9599
9599
|
};
|
|
9600
9600
|
};
|
|
9601
9601
|
output: {
|
|
9602
|
-
type: "fn" | "
|
|
9602
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9603
9603
|
date: string;
|
|
9604
9604
|
isMobile: boolean;
|
|
9605
9605
|
log_id: string;
|
|
@@ -9638,7 +9638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9638
9638
|
limit: number;
|
|
9639
9639
|
length: number;
|
|
9640
9640
|
logs: {
|
|
9641
|
-
type: "fn" | "
|
|
9641
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9642
9642
|
date: string;
|
|
9643
9643
|
isMobile: boolean;
|
|
9644
9644
|
log_id: string;
|
|
@@ -9677,7 +9677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9677
9677
|
next?: string | undefined;
|
|
9678
9678
|
} | {
|
|
9679
9679
|
logs: {
|
|
9680
|
-
type: "fn" | "
|
|
9680
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9681
9681
|
date: string;
|
|
9682
9682
|
isMobile: boolean;
|
|
9683
9683
|
log_id: string;
|
|
@@ -9731,7 +9731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9731
9731
|
};
|
|
9732
9732
|
};
|
|
9733
9733
|
output: {
|
|
9734
|
-
type: "fn" | "
|
|
9734
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9735
9735
|
date: string;
|
|
9736
9736
|
isMobile: boolean;
|
|
9737
9737
|
log_id: string;
|
|
@@ -10142,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10142
10142
|
addons?: {
|
|
10143
10143
|
[x: string]: any;
|
|
10144
10144
|
} | undefined;
|
|
10145
|
-
token_endpoint_auth_method?: "none" | "
|
|
10145
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10146
10146
|
client_metadata?: {
|
|
10147
10147
|
[x: string]: string;
|
|
10148
10148
|
} | undefined;
|
|
@@ -10244,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10244
10244
|
addons?: {
|
|
10245
10245
|
[x: string]: any;
|
|
10246
10246
|
} | undefined;
|
|
10247
|
-
token_endpoint_auth_method?: "none" | "
|
|
10247
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10248
10248
|
client_metadata?: {
|
|
10249
10249
|
[x: string]: string;
|
|
10250
10250
|
} | undefined;
|
|
@@ -10346,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10346
10346
|
addons?: {
|
|
10347
10347
|
[x: string]: any;
|
|
10348
10348
|
} | undefined;
|
|
10349
|
-
token_endpoint_auth_method?: "none" | "
|
|
10349
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10350
10350
|
client_metadata?: {
|
|
10351
10351
|
[x: string]: string;
|
|
10352
10352
|
} | undefined;
|
|
@@ -10463,7 +10463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10463
10463
|
addons?: {
|
|
10464
10464
|
[x: string]: any;
|
|
10465
10465
|
} | undefined;
|
|
10466
|
-
token_endpoint_auth_method?: "none" | "
|
|
10466
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10467
10467
|
client_metadata?: {
|
|
10468
10468
|
[x: string]: string;
|
|
10469
10469
|
} | undefined;
|
|
@@ -10581,7 +10581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10581
10581
|
custom_login_page_preview?: string | undefined;
|
|
10582
10582
|
form_template?: string | undefined;
|
|
10583
10583
|
addons?: Record<string, any> | undefined;
|
|
10584
|
-
token_endpoint_auth_method?: "none" | "
|
|
10584
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10585
10585
|
client_metadata?: Record<string, string> | undefined;
|
|
10586
10586
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10587
10587
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10667,7 +10667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10667
10667
|
addons?: {
|
|
10668
10668
|
[x: string]: any;
|
|
10669
10669
|
} | undefined;
|
|
10670
|
-
token_endpoint_auth_method?: "none" | "
|
|
10670
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10671
10671
|
client_metadata?: {
|
|
10672
10672
|
[x: string]: string;
|
|
10673
10673
|
} | undefined;
|
|
@@ -10764,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10764
10764
|
custom_login_page_preview?: string | undefined;
|
|
10765
10765
|
form_template?: string | undefined;
|
|
10766
10766
|
addons?: Record<string, any> | undefined;
|
|
10767
|
-
token_endpoint_auth_method?: "none" | "
|
|
10767
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10768
10768
|
client_metadata?: Record<string, string> | undefined;
|
|
10769
10769
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10770
10770
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10850,7 +10850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10850
10850
|
addons?: {
|
|
10851
10851
|
[x: string]: any;
|
|
10852
10852
|
} | undefined;
|
|
10853
|
-
token_endpoint_auth_method?: "none" | "
|
|
10853
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10854
10854
|
client_metadata?: {
|
|
10855
10855
|
[x: string]: string;
|
|
10856
10856
|
} | undefined;
|
|
@@ -11315,15 +11315,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11315
11315
|
cert: string;
|
|
11316
11316
|
fingerprint: string;
|
|
11317
11317
|
thumbprint: string;
|
|
11318
|
-
connection?: string | undefined;
|
|
11319
11318
|
tenant_id?: string | undefined;
|
|
11320
|
-
|
|
11319
|
+
connection?: string | undefined;
|
|
11321
11320
|
next?: boolean | undefined;
|
|
11321
|
+
revoked_at?: string | undefined;
|
|
11322
|
+
current?: boolean | undefined;
|
|
11322
11323
|
previous?: boolean | undefined;
|
|
11323
11324
|
current_since?: string | undefined;
|
|
11324
11325
|
current_until?: string | undefined;
|
|
11325
11326
|
revoked?: boolean | undefined;
|
|
11326
|
-
revoked_at?: string | undefined;
|
|
11327
11327
|
expires_at?: string | undefined;
|
|
11328
11328
|
expired?: boolean | undefined;
|
|
11329
11329
|
inherited?: boolean | undefined;
|
|
@@ -11354,15 +11354,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11354
11354
|
cert: string;
|
|
11355
11355
|
fingerprint: string;
|
|
11356
11356
|
thumbprint: string;
|
|
11357
|
-
connection?: string | undefined;
|
|
11358
11357
|
tenant_id?: string | undefined;
|
|
11359
|
-
|
|
11358
|
+
connection?: string | undefined;
|
|
11360
11359
|
next?: boolean | undefined;
|
|
11360
|
+
revoked_at?: string | undefined;
|
|
11361
|
+
current?: boolean | undefined;
|
|
11361
11362
|
previous?: boolean | undefined;
|
|
11362
11363
|
current_since?: string | undefined;
|
|
11363
11364
|
current_until?: string | undefined;
|
|
11364
11365
|
revoked?: boolean | undefined;
|
|
11365
|
-
revoked_at?: string | undefined;
|
|
11366
11366
|
expires_at?: string | undefined;
|
|
11367
11367
|
expired?: boolean | undefined;
|
|
11368
11368
|
inherited?: boolean | undefined;
|
|
@@ -11392,15 +11392,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11392
11392
|
cert: string;
|
|
11393
11393
|
fingerprint: string;
|
|
11394
11394
|
thumbprint: string;
|
|
11395
|
-
connection?: string | undefined;
|
|
11396
11395
|
tenant_id?: string | undefined;
|
|
11397
|
-
|
|
11396
|
+
connection?: string | undefined;
|
|
11398
11397
|
next?: boolean | undefined;
|
|
11398
|
+
revoked_at?: string | undefined;
|
|
11399
|
+
current?: boolean | undefined;
|
|
11399
11400
|
previous?: boolean | undefined;
|
|
11400
11401
|
current_since?: string | undefined;
|
|
11401
11402
|
current_until?: string | undefined;
|
|
11402
11403
|
revoked?: boolean | undefined;
|
|
11403
|
-
revoked_at?: string | undefined;
|
|
11404
11404
|
expires_at?: string | undefined;
|
|
11405
11405
|
expired?: boolean | undefined;
|
|
11406
11406
|
inherited?: boolean | undefined;
|
|
@@ -11432,15 +11432,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11432
11432
|
cert: string;
|
|
11433
11433
|
fingerprint: string;
|
|
11434
11434
|
thumbprint: string;
|
|
11435
|
-
connection?: string | undefined;
|
|
11436
11435
|
tenant_id?: string | undefined;
|
|
11437
|
-
|
|
11436
|
+
connection?: string | undefined;
|
|
11438
11437
|
next?: boolean | undefined;
|
|
11438
|
+
revoked_at?: string | undefined;
|
|
11439
|
+
current?: boolean | undefined;
|
|
11439
11440
|
previous?: boolean | undefined;
|
|
11440
11441
|
current_since?: string | undefined;
|
|
11441
11442
|
current_until?: string | undefined;
|
|
11442
11443
|
revoked?: boolean | undefined;
|
|
11443
|
-
revoked_at?: string | undefined;
|
|
11444
11444
|
expires_at?: string | undefined;
|
|
11445
11445
|
expired?: boolean | undefined;
|
|
11446
11446
|
inherited?: boolean | undefined;
|
|
@@ -12286,9 +12286,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12286
12286
|
};
|
|
12287
12287
|
output: {
|
|
12288
12288
|
id: string;
|
|
12289
|
-
user_id: string;
|
|
12290
12289
|
created_at: string;
|
|
12291
12290
|
client_id: string;
|
|
12291
|
+
user_id: string;
|
|
12292
12292
|
rotating: boolean;
|
|
12293
12293
|
device: {
|
|
12294
12294
|
initial_user_agent: string;
|
|
@@ -12303,26 +12303,23 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12303
12303
|
audience: string;
|
|
12304
12304
|
scopes: string;
|
|
12305
12305
|
}[];
|
|
12306
|
+
revoked_at?: string | undefined;
|
|
12306
12307
|
expires_at?: string | undefined;
|
|
12308
|
+
idle_expires_at?: string | undefined;
|
|
12307
12309
|
session_id?: string | undefined;
|
|
12310
|
+
organization?: string | undefined;
|
|
12308
12311
|
auth_connection?: string | undefined;
|
|
12309
12312
|
auth_strategy?: {
|
|
12310
12313
|
strategy: string;
|
|
12311
12314
|
strategy_type: string;
|
|
12312
12315
|
} | undefined;
|
|
12313
|
-
organization?: string | undefined;
|
|
12314
|
-
revoked_at?: string | undefined;
|
|
12315
|
-
idle_expires_at?: string | undefined;
|
|
12316
12316
|
last_exchanged_at?: string | undefined;
|
|
12317
12317
|
}[] | {
|
|
12318
|
-
start: number;
|
|
12319
|
-
limit: number;
|
|
12320
|
-
length: number;
|
|
12321
12318
|
tokens: {
|
|
12322
12319
|
id: string;
|
|
12323
|
-
user_id: string;
|
|
12324
12320
|
created_at: string;
|
|
12325
12321
|
client_id: string;
|
|
12322
|
+
user_id: string;
|
|
12326
12323
|
rotating: boolean;
|
|
12327
12324
|
device: {
|
|
12328
12325
|
initial_user_agent: string;
|
|
@@ -12337,26 +12334,28 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12337
12334
|
audience: string;
|
|
12338
12335
|
scopes: string;
|
|
12339
12336
|
}[];
|
|
12337
|
+
revoked_at?: string | undefined;
|
|
12340
12338
|
expires_at?: string | undefined;
|
|
12339
|
+
idle_expires_at?: string | undefined;
|
|
12341
12340
|
session_id?: string | undefined;
|
|
12341
|
+
organization?: string | undefined;
|
|
12342
12342
|
auth_connection?: string | undefined;
|
|
12343
12343
|
auth_strategy?: {
|
|
12344
12344
|
strategy: string;
|
|
12345
12345
|
strategy_type: string;
|
|
12346
12346
|
} | undefined;
|
|
12347
|
-
organization?: string | undefined;
|
|
12348
|
-
revoked_at?: string | undefined;
|
|
12349
|
-
idle_expires_at?: string | undefined;
|
|
12350
12347
|
last_exchanged_at?: string | undefined;
|
|
12351
12348
|
}[];
|
|
12352
|
-
total?: number | undefined;
|
|
12353
12349
|
next?: string | undefined;
|
|
12354
12350
|
} | {
|
|
12351
|
+
start: number;
|
|
12352
|
+
limit: number;
|
|
12353
|
+
length: number;
|
|
12355
12354
|
tokens: {
|
|
12356
12355
|
id: string;
|
|
12357
|
-
user_id: string;
|
|
12358
12356
|
created_at: string;
|
|
12359
12357
|
client_id: string;
|
|
12358
|
+
user_id: string;
|
|
12360
12359
|
rotating: boolean;
|
|
12361
12360
|
device: {
|
|
12362
12361
|
initial_user_agent: string;
|
|
@@ -12371,18 +12370,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12371
12370
|
audience: string;
|
|
12372
12371
|
scopes: string;
|
|
12373
12372
|
}[];
|
|
12373
|
+
revoked_at?: string | undefined;
|
|
12374
12374
|
expires_at?: string | undefined;
|
|
12375
|
+
idle_expires_at?: string | undefined;
|
|
12375
12376
|
session_id?: string | undefined;
|
|
12377
|
+
organization?: string | undefined;
|
|
12376
12378
|
auth_connection?: string | undefined;
|
|
12377
12379
|
auth_strategy?: {
|
|
12378
12380
|
strategy: string;
|
|
12379
12381
|
strategy_type: string;
|
|
12380
12382
|
} | undefined;
|
|
12381
|
-
organization?: string | undefined;
|
|
12382
|
-
revoked_at?: string | undefined;
|
|
12383
|
-
idle_expires_at?: string | undefined;
|
|
12384
12383
|
last_exchanged_at?: string | undefined;
|
|
12385
12384
|
}[];
|
|
12385
|
+
total?: number | undefined;
|
|
12386
12386
|
next?: string | undefined;
|
|
12387
12387
|
};
|
|
12388
12388
|
outputFormat: "json";
|
|
@@ -12431,7 +12431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12431
12431
|
};
|
|
12432
12432
|
};
|
|
12433
12433
|
output: {
|
|
12434
|
-
type: "fn" | "
|
|
12434
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12435
12435
|
date: string;
|
|
12436
12436
|
isMobile: boolean;
|
|
12437
12437
|
log_id: string;
|
|
@@ -12470,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12470
12470
|
limit: number;
|
|
12471
12471
|
length: number;
|
|
12472
12472
|
logs: {
|
|
12473
|
-
type: "fn" | "
|
|
12473
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "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" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12474
12474
|
date: string;
|
|
12475
12475
|
isMobile: boolean;
|
|
12476
12476
|
log_id: string;
|
|
@@ -12789,7 +12789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12789
12789
|
};
|
|
12790
12790
|
} & {
|
|
12791
12791
|
json: {
|
|
12792
|
-
template: "
|
|
12792
|
+
template: "change_password" | "verify_email" | "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";
|
|
12793
12793
|
body: string;
|
|
12794
12794
|
from: string;
|
|
12795
12795
|
subject: string;
|
|
@@ -12810,7 +12810,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12810
12810
|
};
|
|
12811
12811
|
} & {
|
|
12812
12812
|
json: {
|
|
12813
|
-
template: "
|
|
12813
|
+
template: "change_password" | "verify_email" | "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";
|
|
12814
12814
|
body: string;
|
|
12815
12815
|
from: string;
|
|
12816
12816
|
subject: string;
|
|
@@ -12822,7 +12822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12822
12822
|
};
|
|
12823
12823
|
};
|
|
12824
12824
|
output: {
|
|
12825
|
-
template: "
|
|
12825
|
+
template: "change_password" | "verify_email" | "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";
|
|
12826
12826
|
body: string;
|
|
12827
12827
|
from: string;
|
|
12828
12828
|
subject: string;
|
|
@@ -12845,7 +12845,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12845
12845
|
};
|
|
12846
12846
|
};
|
|
12847
12847
|
output: {
|
|
12848
|
-
name: "
|
|
12848
|
+
name: "change_password" | "verify_email" | "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";
|
|
12849
12849
|
body: string;
|
|
12850
12850
|
subject: string;
|
|
12851
12851
|
}[];
|
|
@@ -12858,7 +12858,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12858
12858
|
$get: {
|
|
12859
12859
|
input: {
|
|
12860
12860
|
param: {
|
|
12861
|
-
templateName: "
|
|
12861
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12862
12862
|
};
|
|
12863
12863
|
} & {
|
|
12864
12864
|
header: {
|
|
@@ -12871,7 +12871,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12871
12871
|
} | {
|
|
12872
12872
|
input: {
|
|
12873
12873
|
param: {
|
|
12874
|
-
templateName: "
|
|
12874
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12875
12875
|
};
|
|
12876
12876
|
} & {
|
|
12877
12877
|
header: {
|
|
@@ -12879,7 +12879,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12879
12879
|
};
|
|
12880
12880
|
};
|
|
12881
12881
|
output: {
|
|
12882
|
-
template: "
|
|
12882
|
+
template: "change_password" | "verify_email" | "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";
|
|
12883
12883
|
body: string;
|
|
12884
12884
|
from: string;
|
|
12885
12885
|
subject: string;
|
|
@@ -12898,7 +12898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12898
12898
|
$put: {
|
|
12899
12899
|
input: {
|
|
12900
12900
|
param: {
|
|
12901
|
-
templateName: "
|
|
12901
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12902
12902
|
};
|
|
12903
12903
|
} & {
|
|
12904
12904
|
header: {
|
|
@@ -12906,7 +12906,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12906
12906
|
};
|
|
12907
12907
|
} & {
|
|
12908
12908
|
json: {
|
|
12909
|
-
template: "
|
|
12909
|
+
template: "change_password" | "verify_email" | "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";
|
|
12910
12910
|
body: string;
|
|
12911
12911
|
subject: string;
|
|
12912
12912
|
syntax?: "liquid" | undefined;
|
|
@@ -12918,7 +12918,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12918
12918
|
};
|
|
12919
12919
|
};
|
|
12920
12920
|
output: {
|
|
12921
|
-
template: "
|
|
12921
|
+
template: "change_password" | "verify_email" | "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";
|
|
12922
12922
|
body: string;
|
|
12923
12923
|
from: string;
|
|
12924
12924
|
subject: string;
|
|
@@ -12937,7 +12937,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12937
12937
|
$patch: {
|
|
12938
12938
|
input: {
|
|
12939
12939
|
param: {
|
|
12940
|
-
templateName: "
|
|
12940
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12941
12941
|
};
|
|
12942
12942
|
} & {
|
|
12943
12943
|
header: {
|
|
@@ -12945,7 +12945,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12945
12945
|
};
|
|
12946
12946
|
} & {
|
|
12947
12947
|
json: {
|
|
12948
|
-
template?: "
|
|
12948
|
+
template?: "change_password" | "verify_email" | "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;
|
|
12949
12949
|
body?: string | undefined;
|
|
12950
12950
|
from?: string | undefined;
|
|
12951
12951
|
subject?: string | undefined;
|
|
@@ -12962,7 +12962,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12962
12962
|
} | {
|
|
12963
12963
|
input: {
|
|
12964
12964
|
param: {
|
|
12965
|
-
templateName: "
|
|
12965
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
12966
12966
|
};
|
|
12967
12967
|
} & {
|
|
12968
12968
|
header: {
|
|
@@ -12970,7 +12970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12970
12970
|
};
|
|
12971
12971
|
} & {
|
|
12972
12972
|
json: {
|
|
12973
|
-
template?: "
|
|
12973
|
+
template?: "change_password" | "verify_email" | "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;
|
|
12974
12974
|
body?: string | undefined;
|
|
12975
12975
|
from?: string | undefined;
|
|
12976
12976
|
subject?: string | undefined;
|
|
@@ -12982,7 +12982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12982
12982
|
};
|
|
12983
12983
|
};
|
|
12984
12984
|
output: {
|
|
12985
|
-
template: "
|
|
12985
|
+
template: "change_password" | "verify_email" | "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";
|
|
12986
12986
|
body: string;
|
|
12987
12987
|
from: string;
|
|
12988
12988
|
subject: string;
|
|
@@ -13001,7 +13001,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13001
13001
|
$delete: {
|
|
13002
13002
|
input: {
|
|
13003
13003
|
param: {
|
|
13004
|
-
templateName: "
|
|
13004
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
13005
13005
|
};
|
|
13006
13006
|
} & {
|
|
13007
13007
|
header: {
|
|
@@ -13014,7 +13014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13014
13014
|
} | {
|
|
13015
13015
|
input: {
|
|
13016
13016
|
param: {
|
|
13017
|
-
templateName: "
|
|
13017
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
13018
13018
|
};
|
|
13019
13019
|
} & {
|
|
13020
13020
|
header: {
|
|
@@ -13031,7 +13031,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13031
13031
|
$post: {
|
|
13032
13032
|
input: {
|
|
13033
13033
|
param: {
|
|
13034
|
-
templateName: "
|
|
13034
|
+
templateName: "change_password" | "verify_email" | "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";
|
|
13035
13035
|
};
|
|
13036
13036
|
} & {
|
|
13037
13037
|
header: {
|
|
@@ -13652,7 +13652,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13652
13652
|
background_color: string;
|
|
13653
13653
|
background_image_url: string;
|
|
13654
13654
|
page_layout: "center" | "left" | "right";
|
|
13655
|
-
logo_placement?: "
|
|
13655
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13656
13656
|
};
|
|
13657
13657
|
widget: {
|
|
13658
13658
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13742,7 +13742,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13742
13742
|
background_color: string;
|
|
13743
13743
|
background_image_url: string;
|
|
13744
13744
|
page_layout: "center" | "left" | "right";
|
|
13745
|
-
logo_placement?: "
|
|
13745
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13746
13746
|
};
|
|
13747
13747
|
widget: {
|
|
13748
13748
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13821,7 +13821,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13821
13821
|
background_color: string;
|
|
13822
13822
|
background_image_url: string;
|
|
13823
13823
|
page_layout: "center" | "left" | "right";
|
|
13824
|
-
logo_placement?: "
|
|
13824
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13825
13825
|
};
|
|
13826
13826
|
widget: {
|
|
13827
13827
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13983,7 +13983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13983
13983
|
} & {
|
|
13984
13984
|
json: {
|
|
13985
13985
|
body?: string | undefined;
|
|
13986
|
-
screen?: "password" | "
|
|
13986
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
13987
13987
|
branding?: {
|
|
13988
13988
|
colors?: {
|
|
13989
13989
|
primary: string;
|
|
@@ -14069,7 +14069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14069
14069
|
background_color: string;
|
|
14070
14070
|
background_image_url: string;
|
|
14071
14071
|
page_layout: "center" | "left" | "right";
|
|
14072
|
-
logo_placement?: "
|
|
14072
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
14073
14073
|
} | undefined;
|
|
14074
14074
|
widget?: {
|
|
14075
14075
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15245,7 +15245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15245
15245
|
scope?: string | undefined;
|
|
15246
15246
|
grant_types?: string[] | undefined;
|
|
15247
15247
|
response_types?: string[] | undefined;
|
|
15248
|
-
token_endpoint_auth_method?: "none" | "
|
|
15248
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15249
15249
|
jwks_uri?: string | undefined;
|
|
15250
15250
|
jwks?: Record<string, unknown> | undefined;
|
|
15251
15251
|
software_id?: string | undefined;
|
|
@@ -15334,7 +15334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15334
15334
|
scope?: string | undefined;
|
|
15335
15335
|
grant_types?: string[] | undefined;
|
|
15336
15336
|
response_types?: string[] | undefined;
|
|
15337
|
-
token_endpoint_auth_method?: "none" | "
|
|
15337
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15338
15338
|
jwks_uri?: string | undefined;
|
|
15339
15339
|
jwks?: Record<string, unknown> | undefined;
|
|
15340
15340
|
software_id?: string | undefined;
|
|
@@ -15680,19 +15680,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15680
15680
|
email: string;
|
|
15681
15681
|
send: "code" | "link";
|
|
15682
15682
|
authParams: {
|
|
15683
|
-
username?: string | undefined;
|
|
15684
15683
|
state?: string | undefined;
|
|
15685
15684
|
audience?: string | undefined;
|
|
15686
|
-
|
|
15687
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15685
|
+
username?: string | undefined;
|
|
15688
15686
|
scope?: string | undefined;
|
|
15689
15687
|
organization?: string | undefined;
|
|
15688
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15689
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15690
15690
|
redirect_uri?: string | undefined;
|
|
15691
|
+
prompt?: string | undefined;
|
|
15692
|
+
act_as?: string | undefined;
|
|
15693
|
+
nonce?: string | undefined;
|
|
15691
15694
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15692
15695
|
code_challenge?: string | undefined;
|
|
15693
|
-
nonce?: string | undefined;
|
|
15694
|
-
act_as?: string | undefined;
|
|
15695
|
-
prompt?: string | undefined;
|
|
15696
15696
|
ui_locales?: string | undefined;
|
|
15697
15697
|
max_age?: number | undefined;
|
|
15698
15698
|
acr_values?: string | undefined;
|
|
@@ -15716,19 +15716,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15716
15716
|
phone_number: string;
|
|
15717
15717
|
send: "code" | "link";
|
|
15718
15718
|
authParams: {
|
|
15719
|
-
username?: string | undefined;
|
|
15720
15719
|
state?: string | undefined;
|
|
15721
15720
|
audience?: string | undefined;
|
|
15722
|
-
|
|
15723
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15721
|
+
username?: string | undefined;
|
|
15724
15722
|
scope?: string | undefined;
|
|
15725
15723
|
organization?: string | undefined;
|
|
15724
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15725
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15726
15726
|
redirect_uri?: string | undefined;
|
|
15727
|
+
prompt?: string | undefined;
|
|
15728
|
+
act_as?: string | undefined;
|
|
15729
|
+
nonce?: string | undefined;
|
|
15727
15730
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15728
15731
|
code_challenge?: string | undefined;
|
|
15729
|
-
nonce?: string | undefined;
|
|
15730
|
-
act_as?: string | undefined;
|
|
15731
|
-
prompt?: string | undefined;
|
|
15732
15732
|
ui_locales?: string | undefined;
|
|
15733
15733
|
max_age?: number | undefined;
|
|
15734
15734
|
acr_values?: string | undefined;
|
|
@@ -15958,7 +15958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15958
15958
|
client_id: string;
|
|
15959
15959
|
username: string;
|
|
15960
15960
|
otp: string;
|
|
15961
|
-
realm: "
|
|
15961
|
+
realm: "sms" | "email";
|
|
15962
15962
|
scope?: string | undefined;
|
|
15963
15963
|
audience?: string | undefined;
|
|
15964
15964
|
} | {
|
|
@@ -16007,7 +16007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16007
16007
|
client_id: string;
|
|
16008
16008
|
username: string;
|
|
16009
16009
|
otp: string;
|
|
16010
|
-
realm: "
|
|
16010
|
+
realm: "sms" | "email";
|
|
16011
16011
|
scope?: string | undefined;
|
|
16012
16012
|
audience?: string | undefined;
|
|
16013
16013
|
} | {
|
|
@@ -16061,7 +16061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16061
16061
|
client_id: string;
|
|
16062
16062
|
username: string;
|
|
16063
16063
|
otp: string;
|
|
16064
|
-
realm: "
|
|
16064
|
+
realm: "sms" | "email";
|
|
16065
16065
|
scope?: string | undefined;
|
|
16066
16066
|
audience?: string | undefined;
|
|
16067
16067
|
} | {
|
|
@@ -16110,7 +16110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16110
16110
|
client_id: string;
|
|
16111
16111
|
username: string;
|
|
16112
16112
|
otp: string;
|
|
16113
|
-
realm: "
|
|
16113
|
+
realm: "sms" | "email";
|
|
16114
16114
|
scope?: string | undefined;
|
|
16115
16115
|
audience?: string | undefined;
|
|
16116
16116
|
} | {
|
|
@@ -16172,7 +16172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16172
16172
|
client_id: string;
|
|
16173
16173
|
username: string;
|
|
16174
16174
|
otp: string;
|
|
16175
|
-
realm: "
|
|
16175
|
+
realm: "sms" | "email";
|
|
16176
16176
|
scope?: string | undefined;
|
|
16177
16177
|
audience?: string | undefined;
|
|
16178
16178
|
} | {
|
|
@@ -16221,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16221
16221
|
client_id: string;
|
|
16222
16222
|
username: string;
|
|
16223
16223
|
otp: string;
|
|
16224
|
-
realm: "
|
|
16224
|
+
realm: "sms" | "email";
|
|
16225
16225
|
scope?: string | undefined;
|
|
16226
16226
|
audience?: string | undefined;
|
|
16227
16227
|
} | {
|
|
@@ -16278,7 +16278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16278
16278
|
client_id: string;
|
|
16279
16279
|
username: string;
|
|
16280
16280
|
otp: string;
|
|
16281
|
-
realm: "
|
|
16281
|
+
realm: "sms" | "email";
|
|
16282
16282
|
scope?: string | undefined;
|
|
16283
16283
|
audience?: string | undefined;
|
|
16284
16284
|
} | {
|
|
@@ -16327,7 +16327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16327
16327
|
client_id: string;
|
|
16328
16328
|
username: string;
|
|
16329
16329
|
otp: string;
|
|
16330
|
-
realm: "
|
|
16330
|
+
realm: "sms" | "email";
|
|
16331
16331
|
scope?: string | undefined;
|
|
16332
16332
|
audience?: string | undefined;
|
|
16333
16333
|
} | {
|
|
@@ -16384,7 +16384,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16384
16384
|
client_id: string;
|
|
16385
16385
|
username: string;
|
|
16386
16386
|
otp: string;
|
|
16387
|
-
realm: "
|
|
16387
|
+
realm: "sms" | "email";
|
|
16388
16388
|
scope?: string | undefined;
|
|
16389
16389
|
audience?: string | undefined;
|
|
16390
16390
|
} | {
|
|
@@ -16433,7 +16433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16433
16433
|
client_id: string;
|
|
16434
16434
|
username: string;
|
|
16435
16435
|
otp: string;
|
|
16436
|
-
realm: "
|
|
16436
|
+
realm: "sms" | "email";
|
|
16437
16437
|
scope?: string | undefined;
|
|
16438
16438
|
audience?: string | undefined;
|
|
16439
16439
|
} | {
|
|
@@ -17280,7 +17280,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17280
17280
|
} & {
|
|
17281
17281
|
form: {
|
|
17282
17282
|
username: string;
|
|
17283
|
-
login_selection?: "
|
|
17283
|
+
login_selection?: "code" | "password" | undefined;
|
|
17284
17284
|
};
|
|
17285
17285
|
};
|
|
17286
17286
|
output: {};
|
|
@@ -17294,7 +17294,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17294
17294
|
} & {
|
|
17295
17295
|
form: {
|
|
17296
17296
|
username: string;
|
|
17297
|
-
login_selection?: "
|
|
17297
|
+
login_selection?: "code" | "password" | undefined;
|
|
17298
17298
|
};
|
|
17299
17299
|
};
|
|
17300
17300
|
output: {};
|
|
@@ -17659,7 +17659,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17659
17659
|
$get: {
|
|
17660
17660
|
input: {
|
|
17661
17661
|
param: {
|
|
17662
|
-
screen: "
|
|
17662
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
17663
17663
|
};
|
|
17664
17664
|
} & {
|
|
17665
17665
|
query: {
|
|
@@ -17675,7 +17675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17675
17675
|
} | {
|
|
17676
17676
|
input: {
|
|
17677
17677
|
param: {
|
|
17678
|
-
screen: "
|
|
17678
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
17679
17679
|
};
|
|
17680
17680
|
} & {
|
|
17681
17681
|
query: {
|
|
@@ -17691,7 +17691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17691
17691
|
} | {
|
|
17692
17692
|
input: {
|
|
17693
17693
|
param: {
|
|
17694
|
-
screen: "
|
|
17694
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
17695
17695
|
};
|
|
17696
17696
|
} & {
|
|
17697
17697
|
query: {
|
|
@@ -17711,7 +17711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17711
17711
|
$post: {
|
|
17712
17712
|
input: {
|
|
17713
17713
|
param: {
|
|
17714
|
-
screen: "
|
|
17714
|
+
screen: "login" | "signup" | "impersonate" | "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";
|
|
17715
17715
|
};
|
|
17716
17716
|
} & {
|
|
17717
17717
|
query: {
|
|
@@ -17729,7 +17729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17729
17729
|
} | {
|
|
17730
17730
|
input: {
|
|
17731
17731
|
param: {
|
|
17732
|
-
screen: "
|
|
17732
|
+
screen: "login" | "signup" | "impersonate" | "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";
|
|
17733
17733
|
};
|
|
17734
17734
|
} & {
|
|
17735
17735
|
query: {
|