authhero 8.16.0 → 8.17.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/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +100 -100
- package/dist/authhero.d.ts +132 -130
- package/dist/authhero.mjs +9256 -9203
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/helpers/logging.d.ts +11 -0
- package/dist/types/index.d.ts +132 -130
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +51 -51
- package/dist/types/routes/auth-api/oidc-logout.d.ts +2 -2
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +7 -7
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +16 -16
- package/dist/types/routes/management-api/failed-events.d.ts +3 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/index.d.ts +181 -179
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +34 -34
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/continue.d.ts +2 -2
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/impersonate.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-index.d.ts +7 -7
- package/dist/types/routes/universal-login/u2-routes.d.ts +7 -7
- package/dist/types/utils/username-password-provider.d.ts +1 -10
- package/package.json +5 -5
package/dist/authhero.d.ts
CHANGED
|
@@ -3042,8 +3042,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3042
3042
|
$get: {
|
|
3043
3043
|
input: {
|
|
3044
3044
|
query: {
|
|
3045
|
-
include_password_hashes?: "
|
|
3046
|
-
gzip?: "
|
|
3045
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3046
|
+
gzip?: "false" | "true" | undefined;
|
|
3047
3047
|
};
|
|
3048
3048
|
} & {
|
|
3049
3049
|
header: {
|
|
@@ -3056,8 +3056,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3056
3056
|
} | {
|
|
3057
3057
|
input: {
|
|
3058
3058
|
query: {
|
|
3059
|
-
include_password_hashes?: "
|
|
3060
|
-
gzip?: "
|
|
3059
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3060
|
+
gzip?: "false" | "true" | undefined;
|
|
3061
3061
|
};
|
|
3062
3062
|
} & {
|
|
3063
3063
|
header: {
|
|
@@ -3076,7 +3076,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3076
3076
|
$post: {
|
|
3077
3077
|
input: {
|
|
3078
3078
|
query: {
|
|
3079
|
-
include_password_hashes?: "
|
|
3079
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
3080
3080
|
};
|
|
3081
3081
|
} & {
|
|
3082
3082
|
header: {
|
|
@@ -3130,7 +3130,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3130
3130
|
};
|
|
3131
3131
|
} & {
|
|
3132
3132
|
json: {
|
|
3133
|
-
type: "push" | "email" | "passkey" | "phone" | "
|
|
3133
|
+
type: "push" | "email" | "passkey" | "phone" | "webauthn-roaming" | "webauthn-platform" | "totp";
|
|
3134
3134
|
phone_number?: string | undefined;
|
|
3135
3135
|
totp_secret?: string | undefined;
|
|
3136
3136
|
credential_id?: string | undefined;
|
|
@@ -3270,7 +3270,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3270
3270
|
};
|
|
3271
3271
|
};
|
|
3272
3272
|
output: {
|
|
3273
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3273
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3274
3274
|
enabled: boolean;
|
|
3275
3275
|
trial_expired?: boolean | undefined;
|
|
3276
3276
|
}[];
|
|
@@ -3425,7 +3425,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3425
3425
|
$get: {
|
|
3426
3426
|
input: {
|
|
3427
3427
|
param: {
|
|
3428
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3428
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3429
3429
|
};
|
|
3430
3430
|
} & {
|
|
3431
3431
|
header: {
|
|
@@ -3433,7 +3433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3433
3433
|
};
|
|
3434
3434
|
};
|
|
3435
3435
|
output: {
|
|
3436
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3436
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3437
3437
|
enabled: boolean;
|
|
3438
3438
|
trial_expired?: boolean | undefined;
|
|
3439
3439
|
};
|
|
@@ -3446,7 +3446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3446
3446
|
$put: {
|
|
3447
3447
|
input: {
|
|
3448
3448
|
param: {
|
|
3449
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
3449
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3450
3450
|
};
|
|
3451
3451
|
} & {
|
|
3452
3452
|
header: {
|
|
@@ -3458,7 +3458,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3458
3458
|
};
|
|
3459
3459
|
};
|
|
3460
3460
|
output: {
|
|
3461
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
3461
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
3462
3462
|
enabled: boolean;
|
|
3463
3463
|
trial_expired?: boolean | undefined;
|
|
3464
3464
|
};
|
|
@@ -5058,7 +5058,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5058
5058
|
type: "REDIRECT";
|
|
5059
5059
|
action: "REDIRECT_USER";
|
|
5060
5060
|
params: {
|
|
5061
|
-
target: "custom" | "
|
|
5061
|
+
target: "custom" | "account" | "change-email";
|
|
5062
5062
|
custom_url?: string | undefined;
|
|
5063
5063
|
};
|
|
5064
5064
|
alias?: string | undefined;
|
|
@@ -5111,7 +5111,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5111
5111
|
type: "REDIRECT";
|
|
5112
5112
|
action: "REDIRECT_USER";
|
|
5113
5113
|
params: {
|
|
5114
|
-
target: "custom" | "
|
|
5114
|
+
target: "custom" | "account" | "change-email";
|
|
5115
5115
|
custom_url?: string | undefined;
|
|
5116
5116
|
};
|
|
5117
5117
|
alias?: string | undefined;
|
|
@@ -5179,7 +5179,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5179
5179
|
type: "REDIRECT";
|
|
5180
5180
|
action: "REDIRECT_USER";
|
|
5181
5181
|
params: {
|
|
5182
|
-
target: "custom" | "
|
|
5182
|
+
target: "custom" | "account" | "change-email";
|
|
5183
5183
|
custom_url?: string | undefined;
|
|
5184
5184
|
};
|
|
5185
5185
|
alias?: string | undefined;
|
|
@@ -5260,7 +5260,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5260
5260
|
type: "REDIRECT";
|
|
5261
5261
|
action: "REDIRECT_USER";
|
|
5262
5262
|
params: {
|
|
5263
|
-
target: "custom" | "
|
|
5263
|
+
target: "custom" | "account" | "change-email";
|
|
5264
5264
|
custom_url?: string | undefined;
|
|
5265
5265
|
};
|
|
5266
5266
|
alias?: string | undefined;
|
|
@@ -5308,7 +5308,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5308
5308
|
type: "REDIRECT";
|
|
5309
5309
|
action: "REDIRECT_USER";
|
|
5310
5310
|
params: {
|
|
5311
|
-
target: "custom" | "
|
|
5311
|
+
target: "custom" | "account" | "change-email";
|
|
5312
5312
|
custom_url?: string | undefined;
|
|
5313
5313
|
};
|
|
5314
5314
|
alias?: string | undefined;
|
|
@@ -5368,7 +5368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5368
5368
|
type: "REDIRECT";
|
|
5369
5369
|
action: "REDIRECT_USER";
|
|
5370
5370
|
params: {
|
|
5371
|
-
target: "custom" | "
|
|
5371
|
+
target: "custom" | "account" | "change-email";
|
|
5372
5372
|
custom_url?: string | undefined;
|
|
5373
5373
|
};
|
|
5374
5374
|
alias?: string | undefined;
|
|
@@ -5416,7 +5416,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5416
5416
|
type: "REDIRECT";
|
|
5417
5417
|
action: "REDIRECT_USER";
|
|
5418
5418
|
params: {
|
|
5419
|
-
target: "custom" | "
|
|
5419
|
+
target: "custom" | "account" | "change-email";
|
|
5420
5420
|
custom_url?: string | undefined;
|
|
5421
5421
|
};
|
|
5422
5422
|
alias?: string | undefined;
|
|
@@ -5686,7 +5686,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5686
5686
|
value: string;
|
|
5687
5687
|
label: string;
|
|
5688
5688
|
}[] | undefined;
|
|
5689
|
-
display?: "
|
|
5689
|
+
display?: "checkbox" | "radio" | undefined;
|
|
5690
5690
|
multiple?: boolean | undefined;
|
|
5691
5691
|
default_value?: string | string[] | undefined;
|
|
5692
5692
|
} | undefined;
|
|
@@ -6287,7 +6287,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6287
6287
|
value: string;
|
|
6288
6288
|
label: string;
|
|
6289
6289
|
}[] | undefined;
|
|
6290
|
-
display?: "
|
|
6290
|
+
display?: "checkbox" | "radio" | undefined;
|
|
6291
6291
|
multiple?: boolean | undefined;
|
|
6292
6292
|
default_value?: string | string[] | undefined;
|
|
6293
6293
|
} | undefined;
|
|
@@ -6903,7 +6903,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
6903
6903
|
value: string;
|
|
6904
6904
|
label: string;
|
|
6905
6905
|
}[] | undefined;
|
|
6906
|
-
display?: "
|
|
6906
|
+
display?: "checkbox" | "radio" | undefined;
|
|
6907
6907
|
multiple?: boolean | undefined;
|
|
6908
6908
|
default_value?: string | string[] | undefined;
|
|
6909
6909
|
} | undefined;
|
|
@@ -7525,7 +7525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
7525
7525
|
value: string;
|
|
7526
7526
|
label: string;
|
|
7527
7527
|
}[] | undefined;
|
|
7528
|
-
display?: "
|
|
7528
|
+
display?: "checkbox" | "radio" | undefined;
|
|
7529
7529
|
multiple?: boolean | undefined;
|
|
7530
7530
|
default_value?: string | string[] | undefined;
|
|
7531
7531
|
} | undefined;
|
|
@@ -8120,7 +8120,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8120
8120
|
value: string;
|
|
8121
8121
|
label: string;
|
|
8122
8122
|
}[] | undefined;
|
|
8123
|
-
display?: "
|
|
8123
|
+
display?: "checkbox" | "radio" | undefined;
|
|
8124
8124
|
multiple?: boolean | undefined;
|
|
8125
8125
|
default_value?: string | string[] | undefined;
|
|
8126
8126
|
} | undefined;
|
|
@@ -8721,7 +8721,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
8721
8721
|
value: string;
|
|
8722
8722
|
label: string;
|
|
8723
8723
|
}[] | undefined;
|
|
8724
|
-
display?: "
|
|
8724
|
+
display?: "checkbox" | "radio" | undefined;
|
|
8725
8725
|
multiple?: boolean | undefined;
|
|
8726
8726
|
default_value?: string | string[] | undefined;
|
|
8727
8727
|
} | undefined;
|
|
@@ -9316,7 +9316,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9316
9316
|
value: string;
|
|
9317
9317
|
label: string;
|
|
9318
9318
|
}[] | undefined;
|
|
9319
|
-
display?: "
|
|
9319
|
+
display?: "checkbox" | "radio" | undefined;
|
|
9320
9320
|
multiple?: boolean | undefined;
|
|
9321
9321
|
default_value?: string | string[] | undefined;
|
|
9322
9322
|
} | undefined;
|
|
@@ -9824,7 +9824,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9824
9824
|
};
|
|
9825
9825
|
};
|
|
9826
9826
|
output: {
|
|
9827
|
-
universal_login_experience: "
|
|
9827
|
+
universal_login_experience: "classic" | "new";
|
|
9828
9828
|
identifier_first: boolean;
|
|
9829
9829
|
password_first: boolean;
|
|
9830
9830
|
webauthn_platform_first_factor: boolean;
|
|
@@ -9842,7 +9842,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9842
9842
|
};
|
|
9843
9843
|
} & {
|
|
9844
9844
|
json: {
|
|
9845
|
-
universal_login_experience?: "
|
|
9845
|
+
universal_login_experience?: "classic" | "new" | undefined;
|
|
9846
9846
|
identifier_first?: boolean | undefined;
|
|
9847
9847
|
password_first?: boolean | undefined;
|
|
9848
9848
|
webauthn_platform_first_factor?: boolean | undefined;
|
|
@@ -9862,7 +9862,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9862
9862
|
};
|
|
9863
9863
|
};
|
|
9864
9864
|
output: {
|
|
9865
|
-
prompt: "
|
|
9865
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9866
9866
|
language: string;
|
|
9867
9867
|
}[];
|
|
9868
9868
|
outputFormat: "json";
|
|
@@ -9900,7 +9900,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9900
9900
|
$get: {
|
|
9901
9901
|
input: {
|
|
9902
9902
|
param: {
|
|
9903
|
-
prompt: "
|
|
9903
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9904
9904
|
language: string;
|
|
9905
9905
|
};
|
|
9906
9906
|
} & {
|
|
@@ -9922,7 +9922,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9922
9922
|
$put: {
|
|
9923
9923
|
input: {
|
|
9924
9924
|
param: {
|
|
9925
|
-
prompt: "
|
|
9925
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9926
9926
|
language: string;
|
|
9927
9927
|
};
|
|
9928
9928
|
} & {
|
|
@@ -9946,7 +9946,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9946
9946
|
$delete: {
|
|
9947
9947
|
input: {
|
|
9948
9948
|
param: {
|
|
9949
|
-
prompt: "
|
|
9949
|
+
prompt: "signup" | "mfa" | "organizations" | "status" | "login" | "email-otp-challenge" | "login-id" | "reset-password" | "mfa-login-options" | "consent" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
9950
9950
|
language: string;
|
|
9951
9951
|
};
|
|
9952
9952
|
} & {
|
|
@@ -10038,7 +10038,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10038
10038
|
active?: boolean | undefined;
|
|
10039
10039
|
} | undefined;
|
|
10040
10040
|
signup?: {
|
|
10041
|
-
status?: "
|
|
10041
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10042
10042
|
verification?: {
|
|
10043
10043
|
active?: boolean | undefined;
|
|
10044
10044
|
} | undefined;
|
|
@@ -10055,7 +10055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10055
10055
|
active?: boolean | undefined;
|
|
10056
10056
|
} | undefined;
|
|
10057
10057
|
signup?: {
|
|
10058
|
-
status?: "
|
|
10058
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10059
10059
|
} | undefined;
|
|
10060
10060
|
validation?: {
|
|
10061
10061
|
max_length?: number | undefined;
|
|
@@ -10072,7 +10072,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10072
10072
|
active?: boolean | undefined;
|
|
10073
10073
|
} | undefined;
|
|
10074
10074
|
signup?: {
|
|
10075
|
-
status?: "
|
|
10075
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10076
10076
|
} | undefined;
|
|
10077
10077
|
} | undefined;
|
|
10078
10078
|
} | undefined;
|
|
@@ -10172,7 +10172,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10172
10172
|
active?: boolean | undefined;
|
|
10173
10173
|
} | undefined;
|
|
10174
10174
|
signup?: {
|
|
10175
|
-
status?: "
|
|
10175
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10176
10176
|
verification?: {
|
|
10177
10177
|
active?: boolean | undefined;
|
|
10178
10178
|
} | undefined;
|
|
@@ -10189,7 +10189,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10189
10189
|
active?: boolean | undefined;
|
|
10190
10190
|
} | undefined;
|
|
10191
10191
|
signup?: {
|
|
10192
|
-
status?: "
|
|
10192
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10193
10193
|
} | undefined;
|
|
10194
10194
|
validation?: {
|
|
10195
10195
|
max_length?: number | undefined;
|
|
@@ -10206,7 +10206,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10206
10206
|
active?: boolean | undefined;
|
|
10207
10207
|
} | undefined;
|
|
10208
10208
|
signup?: {
|
|
10209
|
-
status?: "
|
|
10209
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10210
10210
|
} | undefined;
|
|
10211
10211
|
} | undefined;
|
|
10212
10212
|
} | undefined;
|
|
@@ -10321,7 +10321,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10321
10321
|
active?: boolean | undefined;
|
|
10322
10322
|
} | undefined;
|
|
10323
10323
|
signup?: {
|
|
10324
|
-
status?: "
|
|
10324
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10325
10325
|
verification?: {
|
|
10326
10326
|
active?: boolean | undefined;
|
|
10327
10327
|
} | undefined;
|
|
@@ -10338,7 +10338,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10338
10338
|
active?: boolean | undefined;
|
|
10339
10339
|
} | undefined;
|
|
10340
10340
|
signup?: {
|
|
10341
|
-
status?: "
|
|
10341
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10342
10342
|
} | undefined;
|
|
10343
10343
|
validation?: {
|
|
10344
10344
|
max_length?: number | undefined;
|
|
@@ -10355,7 +10355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10355
10355
|
active?: boolean | undefined;
|
|
10356
10356
|
} | undefined;
|
|
10357
10357
|
signup?: {
|
|
10358
|
-
status?: "
|
|
10358
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10359
10359
|
} | undefined;
|
|
10360
10360
|
} | undefined;
|
|
10361
10361
|
} | undefined;
|
|
@@ -10500,7 +10500,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10500
10500
|
active?: boolean | undefined;
|
|
10501
10501
|
} | undefined;
|
|
10502
10502
|
signup?: {
|
|
10503
|
-
status?: "
|
|
10503
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10504
10504
|
verification?: {
|
|
10505
10505
|
active?: boolean | undefined;
|
|
10506
10506
|
} | undefined;
|
|
@@ -10517,7 +10517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10517
10517
|
active?: boolean | undefined;
|
|
10518
10518
|
} | undefined;
|
|
10519
10519
|
signup?: {
|
|
10520
|
-
status?: "
|
|
10520
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10521
10521
|
} | undefined;
|
|
10522
10522
|
validation?: {
|
|
10523
10523
|
max_length?: number | undefined;
|
|
@@ -10534,7 +10534,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10534
10534
|
active?: boolean | undefined;
|
|
10535
10535
|
} | undefined;
|
|
10536
10536
|
signup?: {
|
|
10537
|
-
status?: "
|
|
10537
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10538
10538
|
} | undefined;
|
|
10539
10539
|
} | undefined;
|
|
10540
10540
|
} | undefined;
|
|
@@ -10658,7 +10658,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10658
10658
|
active?: boolean | undefined;
|
|
10659
10659
|
} | undefined;
|
|
10660
10660
|
signup?: {
|
|
10661
|
-
status?: "
|
|
10661
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10662
10662
|
verification?: {
|
|
10663
10663
|
active?: boolean | undefined;
|
|
10664
10664
|
} | undefined;
|
|
@@ -10675,7 +10675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10675
10675
|
active?: boolean | undefined;
|
|
10676
10676
|
} | undefined;
|
|
10677
10677
|
signup?: {
|
|
10678
|
-
status?: "
|
|
10678
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10679
10679
|
} | undefined;
|
|
10680
10680
|
validation?: {
|
|
10681
10681
|
max_length?: number | undefined;
|
|
@@ -10692,7 +10692,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10692
10692
|
active?: boolean | undefined;
|
|
10693
10693
|
} | undefined;
|
|
10694
10694
|
signup?: {
|
|
10695
|
-
status?: "
|
|
10695
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10696
10696
|
} | undefined;
|
|
10697
10697
|
} | undefined;
|
|
10698
10698
|
} | undefined;
|
|
@@ -11447,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11447
11447
|
log_type: string;
|
|
11448
11448
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11449
11449
|
actor: {
|
|
11450
|
-
type: "
|
|
11450
|
+
type: "client_credentials" | "user" | "system" | "api_key" | "admin";
|
|
11451
11451
|
id?: string | undefined;
|
|
11452
11452
|
email?: string | undefined;
|
|
11453
11453
|
org_id?: string | undefined;
|
|
@@ -11496,6 +11496,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11496
11496
|
body?: hono_utils_types.JSONValue | undefined;
|
|
11497
11497
|
} | undefined;
|
|
11498
11498
|
connection?: string | undefined;
|
|
11499
|
+
connection_id?: string | undefined;
|
|
11500
|
+
client_name?: string | undefined;
|
|
11499
11501
|
strategy?: string | undefined;
|
|
11500
11502
|
strategy_type?: string | undefined;
|
|
11501
11503
|
audience?: string | undefined;
|
|
@@ -12095,7 +12097,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12095
12097
|
};
|
|
12096
12098
|
};
|
|
12097
12099
|
output: {
|
|
12098
|
-
type: "fn" | "
|
|
12100
|
+
type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12099
12101
|
date: string;
|
|
12100
12102
|
isMobile: boolean;
|
|
12101
12103
|
log_id: string;
|
|
@@ -12134,7 +12136,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12134
12136
|
limit: number;
|
|
12135
12137
|
length: number;
|
|
12136
12138
|
logs: {
|
|
12137
|
-
type: "fn" | "
|
|
12139
|
+
type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12138
12140
|
date: string;
|
|
12139
12141
|
isMobile: boolean;
|
|
12140
12142
|
log_id: string;
|
|
@@ -12188,7 +12190,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12188
12190
|
};
|
|
12189
12191
|
};
|
|
12190
12192
|
output: {
|
|
12191
|
-
type: "fn" | "
|
|
12193
|
+
type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12192
12194
|
date: string;
|
|
12193
12195
|
isMobile: boolean;
|
|
12194
12196
|
log_id: string;
|
|
@@ -12576,7 +12578,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12576
12578
|
addons?: {
|
|
12577
12579
|
[x: string]: any;
|
|
12578
12580
|
} | undefined;
|
|
12579
|
-
token_endpoint_auth_method?: "none" | "
|
|
12581
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12580
12582
|
client_metadata?: {
|
|
12581
12583
|
[x: string]: string;
|
|
12582
12584
|
} | undefined;
|
|
@@ -12672,7 +12674,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12672
12674
|
addons?: {
|
|
12673
12675
|
[x: string]: any;
|
|
12674
12676
|
} | undefined;
|
|
12675
|
-
token_endpoint_auth_method?: "none" | "
|
|
12677
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12676
12678
|
client_metadata?: {
|
|
12677
12679
|
[x: string]: string;
|
|
12678
12680
|
} | undefined;
|
|
@@ -12783,7 +12785,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12783
12785
|
addons?: {
|
|
12784
12786
|
[x: string]: any;
|
|
12785
12787
|
} | undefined;
|
|
12786
|
-
token_endpoint_auth_method?: "none" | "
|
|
12788
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12787
12789
|
client_metadata?: {
|
|
12788
12790
|
[x: string]: string;
|
|
12789
12791
|
} | undefined;
|
|
@@ -12893,7 +12895,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12893
12895
|
custom_login_page_preview?: string | undefined;
|
|
12894
12896
|
form_template?: string | undefined;
|
|
12895
12897
|
addons?: Record<string, any> | undefined;
|
|
12896
|
-
token_endpoint_auth_method?: "none" | "
|
|
12898
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12897
12899
|
client_metadata?: Record<string, string> | undefined;
|
|
12898
12900
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12899
12901
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12973,7 +12975,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12973
12975
|
addons?: {
|
|
12974
12976
|
[x: string]: any;
|
|
12975
12977
|
} | undefined;
|
|
12976
|
-
token_endpoint_auth_method?: "none" | "
|
|
12978
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12977
12979
|
client_metadata?: {
|
|
12978
12980
|
[x: string]: string;
|
|
12979
12981
|
} | undefined;
|
|
@@ -13062,7 +13064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13062
13064
|
custom_login_page_preview?: string | undefined;
|
|
13063
13065
|
form_template?: string | undefined;
|
|
13064
13066
|
addons?: Record<string, any> | undefined;
|
|
13065
|
-
token_endpoint_auth_method?: "none" | "
|
|
13067
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13066
13068
|
client_metadata?: Record<string, string> | undefined;
|
|
13067
13069
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
13068
13070
|
mobile?: Record<string, any> | undefined;
|
|
@@ -13142,7 +13144,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13142
13144
|
addons?: {
|
|
13143
13145
|
[x: string]: any;
|
|
13144
13146
|
} | undefined;
|
|
13145
|
-
token_endpoint_auth_method?: "none" | "
|
|
13147
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13146
13148
|
client_metadata?: {
|
|
13147
13149
|
[x: string]: string;
|
|
13148
13150
|
} | undefined;
|
|
@@ -13264,7 +13266,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13264
13266
|
active?: boolean | undefined;
|
|
13265
13267
|
} | undefined;
|
|
13266
13268
|
signup?: {
|
|
13267
|
-
status?: "
|
|
13269
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13268
13270
|
verification?: {
|
|
13269
13271
|
active?: boolean | undefined;
|
|
13270
13272
|
} | undefined;
|
|
@@ -13281,7 +13283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13281
13283
|
active?: boolean | undefined;
|
|
13282
13284
|
} | undefined;
|
|
13283
13285
|
signup?: {
|
|
13284
|
-
status?: "
|
|
13286
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13285
13287
|
} | undefined;
|
|
13286
13288
|
validation?: {
|
|
13287
13289
|
max_length?: number | undefined;
|
|
@@ -13298,7 +13300,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13298
13300
|
active?: boolean | undefined;
|
|
13299
13301
|
} | undefined;
|
|
13300
13302
|
signup?: {
|
|
13301
|
-
status?: "
|
|
13303
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13302
13304
|
} | undefined;
|
|
13303
13305
|
} | undefined;
|
|
13304
13306
|
} | undefined;
|
|
@@ -13418,7 +13420,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13418
13420
|
active?: boolean | undefined;
|
|
13419
13421
|
} | undefined;
|
|
13420
13422
|
signup?: {
|
|
13421
|
-
status?: "
|
|
13423
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13422
13424
|
verification?: {
|
|
13423
13425
|
active?: boolean | undefined;
|
|
13424
13426
|
} | undefined;
|
|
@@ -13435,7 +13437,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13435
13437
|
active?: boolean | undefined;
|
|
13436
13438
|
} | undefined;
|
|
13437
13439
|
signup?: {
|
|
13438
|
-
status?: "
|
|
13440
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13439
13441
|
} | undefined;
|
|
13440
13442
|
validation?: {
|
|
13441
13443
|
max_length?: number | undefined;
|
|
@@ -13452,7 +13454,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13452
13454
|
active?: boolean | undefined;
|
|
13453
13455
|
} | undefined;
|
|
13454
13456
|
signup?: {
|
|
13455
|
-
status?: "
|
|
13457
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
13456
13458
|
} | undefined;
|
|
13457
13459
|
} | undefined;
|
|
13458
13460
|
} | undefined;
|
|
@@ -14406,7 +14408,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14406
14408
|
};
|
|
14407
14409
|
};
|
|
14408
14410
|
output: {
|
|
14409
|
-
type: "fn" | "
|
|
14411
|
+
type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14410
14412
|
date: string;
|
|
14411
14413
|
isMobile: boolean;
|
|
14412
14414
|
log_id: string;
|
|
@@ -14445,7 +14447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14445
14447
|
limit: number;
|
|
14446
14448
|
length: number;
|
|
14447
14449
|
logs: {
|
|
14448
|
-
type: "fn" | "
|
|
14450
|
+
type: "fn" | "i" | "fs" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "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" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14449
14451
|
date: string;
|
|
14450
14452
|
isMobile: boolean;
|
|
14451
14453
|
log_id: string;
|
|
@@ -15954,7 +15956,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15954
15956
|
} & {
|
|
15955
15957
|
json: {
|
|
15956
15958
|
body?: string | undefined;
|
|
15957
|
-
screen?: "password" | "
|
|
15959
|
+
screen?: "password" | "signup" | "identifier" | "login" | undefined;
|
|
15958
15960
|
branding?: {
|
|
15959
15961
|
colors?: {
|
|
15960
15962
|
primary: string;
|
|
@@ -17223,7 +17225,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17223
17225
|
scope?: string | undefined;
|
|
17224
17226
|
grant_types?: string[] | undefined;
|
|
17225
17227
|
response_types?: string[] | undefined;
|
|
17226
|
-
token_endpoint_auth_method?: "none" | "
|
|
17228
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17227
17229
|
jwks_uri?: string | undefined;
|
|
17228
17230
|
jwks?: Record<string, unknown> | undefined;
|
|
17229
17231
|
software_id?: string | undefined;
|
|
@@ -17312,7 +17314,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17312
17314
|
scope?: string | undefined;
|
|
17313
17315
|
grant_types?: string[] | undefined;
|
|
17314
17316
|
response_types?: string[] | undefined;
|
|
17315
|
-
token_endpoint_auth_method?: "none" | "
|
|
17317
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
17316
17318
|
jwks_uri?: string | undefined;
|
|
17317
17319
|
jwks?: Record<string, unknown> | undefined;
|
|
17318
17320
|
software_id?: string | undefined;
|
|
@@ -17369,7 +17371,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17369
17371
|
client_id: string;
|
|
17370
17372
|
redirect_url?: string | undefined;
|
|
17371
17373
|
login_hint?: string | undefined;
|
|
17372
|
-
screen_hint?: "
|
|
17374
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
17373
17375
|
};
|
|
17374
17376
|
};
|
|
17375
17377
|
output: {};
|
|
@@ -17381,7 +17383,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17381
17383
|
client_id: string;
|
|
17382
17384
|
redirect_url?: string | undefined;
|
|
17383
17385
|
login_hint?: string | undefined;
|
|
17384
|
-
screen_hint?: "
|
|
17386
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
17385
17387
|
};
|
|
17386
17388
|
};
|
|
17387
17389
|
output: {
|
|
@@ -17458,9 +17460,17 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17458
17460
|
request_uri?: string | undefined;
|
|
17459
17461
|
};
|
|
17460
17462
|
};
|
|
17461
|
-
output: {
|
|
17462
|
-
|
|
17463
|
-
|
|
17463
|
+
output: string | {
|
|
17464
|
+
access_token: string;
|
|
17465
|
+
token_type: string;
|
|
17466
|
+
expires_in: number;
|
|
17467
|
+
id_token?: string | undefined;
|
|
17468
|
+
scope?: string | undefined;
|
|
17469
|
+
state?: string | undefined;
|
|
17470
|
+
refresh_token?: string | undefined;
|
|
17471
|
+
};
|
|
17472
|
+
outputFormat: "json";
|
|
17473
|
+
status: 200;
|
|
17464
17474
|
} | {
|
|
17465
17475
|
input: {
|
|
17466
17476
|
query: {
|
|
@@ -17492,17 +17502,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17492
17502
|
request_uri?: string | undefined;
|
|
17493
17503
|
};
|
|
17494
17504
|
};
|
|
17495
|
-
output:
|
|
17496
|
-
|
|
17497
|
-
|
|
17498
|
-
expires_in: number;
|
|
17499
|
-
id_token?: string | undefined;
|
|
17500
|
-
scope?: string | undefined;
|
|
17501
|
-
state?: string | undefined;
|
|
17502
|
-
refresh_token?: string | undefined;
|
|
17503
|
-
};
|
|
17504
|
-
outputFormat: "json";
|
|
17505
|
-
status: 200;
|
|
17505
|
+
output: {};
|
|
17506
|
+
outputFormat: string;
|
|
17507
|
+
status: 302;
|
|
17506
17508
|
} | {
|
|
17507
17509
|
input: {
|
|
17508
17510
|
query: {
|
|
@@ -17658,22 +17660,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17658
17660
|
email: string;
|
|
17659
17661
|
send: "code" | "link";
|
|
17660
17662
|
authParams: {
|
|
17661
|
-
|
|
17663
|
+
vendor_id?: string | undefined;
|
|
17664
|
+
redirect_uri?: string | undefined;
|
|
17665
|
+
scope?: string | undefined;
|
|
17662
17666
|
state?: string | undefined;
|
|
17663
|
-
|
|
17664
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17667
|
+
prompt?: string | undefined;
|
|
17665
17668
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17666
|
-
|
|
17667
|
-
|
|
17669
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17670
|
+
audience?: string | undefined;
|
|
17668
17671
|
nonce?: string | undefined;
|
|
17669
|
-
|
|
17670
|
-
|
|
17671
|
-
prompt?: string | undefined;
|
|
17672
|
+
max_age?: number | undefined;
|
|
17673
|
+
acr_values?: string | undefined;
|
|
17672
17674
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17673
17675
|
code_challenge?: string | undefined;
|
|
17676
|
+
organization?: string | undefined;
|
|
17674
17677
|
ui_locales?: string | undefined;
|
|
17675
|
-
max_age?: number | undefined;
|
|
17676
|
-
acr_values?: string | undefined;
|
|
17677
17678
|
claims?: {
|
|
17678
17679
|
userinfo?: Record<string, {
|
|
17679
17680
|
essential?: boolean | undefined;
|
|
@@ -17686,7 +17687,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17686
17687
|
values?: unknown[] | undefined;
|
|
17687
17688
|
} | null> | undefined;
|
|
17688
17689
|
} | undefined;
|
|
17689
|
-
|
|
17690
|
+
act_as?: string | undefined;
|
|
17691
|
+
username?: string | undefined;
|
|
17690
17692
|
};
|
|
17691
17693
|
} | {
|
|
17692
17694
|
client_id: string;
|
|
@@ -17694,22 +17696,21 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17694
17696
|
phone_number: string;
|
|
17695
17697
|
send: "code" | "link";
|
|
17696
17698
|
authParams: {
|
|
17697
|
-
|
|
17699
|
+
vendor_id?: string | undefined;
|
|
17700
|
+
redirect_uri?: string | undefined;
|
|
17701
|
+
scope?: string | undefined;
|
|
17698
17702
|
state?: string | undefined;
|
|
17699
|
-
|
|
17700
|
-
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17703
|
+
prompt?: string | undefined;
|
|
17701
17704
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17702
|
-
|
|
17703
|
-
|
|
17705
|
+
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17706
|
+
audience?: string | undefined;
|
|
17704
17707
|
nonce?: string | undefined;
|
|
17705
|
-
|
|
17706
|
-
|
|
17707
|
-
prompt?: string | undefined;
|
|
17708
|
+
max_age?: number | undefined;
|
|
17709
|
+
acr_values?: string | undefined;
|
|
17708
17710
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17709
17711
|
code_challenge?: string | undefined;
|
|
17712
|
+
organization?: string | undefined;
|
|
17710
17713
|
ui_locales?: string | undefined;
|
|
17711
|
-
max_age?: number | undefined;
|
|
17712
|
-
acr_values?: string | undefined;
|
|
17713
17714
|
claims?: {
|
|
17714
17715
|
userinfo?: Record<string, {
|
|
17715
17716
|
essential?: boolean | undefined;
|
|
@@ -17722,7 +17723,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17722
17723
|
values?: unknown[] | undefined;
|
|
17723
17724
|
} | null> | undefined;
|
|
17724
17725
|
} | undefined;
|
|
17725
|
-
|
|
17726
|
+
act_as?: string | undefined;
|
|
17727
|
+
username?: string | undefined;
|
|
17726
17728
|
};
|
|
17727
17729
|
};
|
|
17728
17730
|
};
|
|
@@ -17838,14 +17840,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17838
17840
|
input: {
|
|
17839
17841
|
form: {
|
|
17840
17842
|
token: string;
|
|
17841
|
-
token_type_hint?: "
|
|
17843
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17842
17844
|
client_id?: string | undefined;
|
|
17843
17845
|
client_secret?: string | undefined;
|
|
17844
17846
|
};
|
|
17845
17847
|
} & {
|
|
17846
17848
|
json: {
|
|
17847
17849
|
token: string;
|
|
17848
|
-
token_type_hint?: "
|
|
17850
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17849
17851
|
client_id?: string | undefined;
|
|
17850
17852
|
client_secret?: string | undefined;
|
|
17851
17853
|
};
|
|
@@ -17857,14 +17859,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17857
17859
|
input: {
|
|
17858
17860
|
form: {
|
|
17859
17861
|
token: string;
|
|
17860
|
-
token_type_hint?: "
|
|
17862
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17861
17863
|
client_id?: string | undefined;
|
|
17862
17864
|
client_secret?: string | undefined;
|
|
17863
17865
|
};
|
|
17864
17866
|
} & {
|
|
17865
17867
|
json: {
|
|
17866
17868
|
token: string;
|
|
17867
|
-
token_type_hint?: "
|
|
17869
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17868
17870
|
client_id?: string | undefined;
|
|
17869
17871
|
client_secret?: string | undefined;
|
|
17870
17872
|
};
|
|
@@ -17879,14 +17881,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17879
17881
|
input: {
|
|
17880
17882
|
form: {
|
|
17881
17883
|
token: string;
|
|
17882
|
-
token_type_hint?: "
|
|
17884
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17883
17885
|
client_id?: string | undefined;
|
|
17884
17886
|
client_secret?: string | undefined;
|
|
17885
17887
|
};
|
|
17886
17888
|
} & {
|
|
17887
17889
|
json: {
|
|
17888
17890
|
token: string;
|
|
17889
|
-
token_type_hint?: "
|
|
17891
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17890
17892
|
client_id?: string | undefined;
|
|
17891
17893
|
client_secret?: string | undefined;
|
|
17892
17894
|
};
|
|
@@ -18310,7 +18312,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18310
18312
|
error_description?: string | undefined;
|
|
18311
18313
|
};
|
|
18312
18314
|
outputFormat: "json";
|
|
18313
|
-
status:
|
|
18315
|
+
status: 403;
|
|
18314
18316
|
} | {
|
|
18315
18317
|
input: {
|
|
18316
18318
|
form: {
|
|
@@ -18412,7 +18414,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18412
18414
|
error_description?: string | undefined;
|
|
18413
18415
|
};
|
|
18414
18416
|
outputFormat: "json";
|
|
18415
|
-
status:
|
|
18417
|
+
status: 401;
|
|
18416
18418
|
};
|
|
18417
18419
|
};
|
|
18418
18420
|
}, "/oauth/token"> & hono_types.MergeSchemaPath<{
|
|
@@ -18611,7 +18613,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18611
18613
|
};
|
|
18612
18614
|
output: {};
|
|
18613
18615
|
outputFormat: string;
|
|
18614
|
-
status:
|
|
18616
|
+
status: 302;
|
|
18615
18617
|
} | {
|
|
18616
18618
|
input: {
|
|
18617
18619
|
query: {
|
|
@@ -18625,7 +18627,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18625
18627
|
};
|
|
18626
18628
|
output: {};
|
|
18627
18629
|
outputFormat: string;
|
|
18628
|
-
status:
|
|
18630
|
+
status: 200;
|
|
18629
18631
|
} | {
|
|
18630
18632
|
input: {
|
|
18631
18633
|
query: {
|
|
@@ -18639,7 +18641,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18639
18641
|
};
|
|
18640
18642
|
output: {};
|
|
18641
18643
|
outputFormat: string;
|
|
18642
|
-
status:
|
|
18644
|
+
status: 400;
|
|
18643
18645
|
};
|
|
18644
18646
|
};
|
|
18645
18647
|
}, "/oidc/logout"> & hono_types.MergeSchemaPath<{
|
|
@@ -18746,7 +18748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18746
18748
|
};
|
|
18747
18749
|
output: {};
|
|
18748
18750
|
outputFormat: string;
|
|
18749
|
-
status:
|
|
18751
|
+
status: 302;
|
|
18750
18752
|
} | {
|
|
18751
18753
|
input: {
|
|
18752
18754
|
query: {
|
|
@@ -18755,7 +18757,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18755
18757
|
};
|
|
18756
18758
|
output: {};
|
|
18757
18759
|
outputFormat: string;
|
|
18758
|
-
status:
|
|
18760
|
+
status: 400;
|
|
18759
18761
|
} | {
|
|
18760
18762
|
input: {
|
|
18761
18763
|
query: {
|
|
@@ -18884,7 +18886,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18884
18886
|
};
|
|
18885
18887
|
output: {};
|
|
18886
18888
|
outputFormat: string;
|
|
18887
|
-
status:
|
|
18889
|
+
status: 302;
|
|
18888
18890
|
} | {
|
|
18889
18891
|
input: {
|
|
18890
18892
|
query: {
|
|
@@ -18897,7 +18899,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18897
18899
|
};
|
|
18898
18900
|
output: {};
|
|
18899
18901
|
outputFormat: string;
|
|
18900
|
-
status:
|
|
18902
|
+
status: 400;
|
|
18901
18903
|
};
|
|
18902
18904
|
};
|
|
18903
18905
|
}, "/impersonate"> & hono_types.MergeSchemaPath<{
|
|
@@ -19239,7 +19241,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19239
19241
|
};
|
|
19240
19242
|
output: {};
|
|
19241
19243
|
outputFormat: string;
|
|
19242
|
-
status:
|
|
19244
|
+
status: 302;
|
|
19243
19245
|
} | {
|
|
19244
19246
|
input: {
|
|
19245
19247
|
query: {
|
|
@@ -19253,7 +19255,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19253
19255
|
};
|
|
19254
19256
|
output: {};
|
|
19255
19257
|
outputFormat: string;
|
|
19256
|
-
status:
|
|
19258
|
+
status: 400;
|
|
19257
19259
|
};
|
|
19258
19260
|
};
|
|
19259
19261
|
}, "/login/identifier"> & hono_types.MergeSchemaPath<{
|
|
@@ -19613,7 +19615,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19613
19615
|
$get: {
|
|
19614
19616
|
input: {
|
|
19615
19617
|
param: {
|
|
19616
|
-
screen: "signup" | "
|
|
19618
|
+
screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19617
19619
|
};
|
|
19618
19620
|
} & {
|
|
19619
19621
|
query: {
|
|
@@ -19629,7 +19631,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19629
19631
|
} | {
|
|
19630
19632
|
input: {
|
|
19631
19633
|
param: {
|
|
19632
|
-
screen: "signup" | "
|
|
19634
|
+
screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19633
19635
|
};
|
|
19634
19636
|
} & {
|
|
19635
19637
|
query: {
|
|
@@ -19641,11 +19643,11 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19641
19643
|
};
|
|
19642
19644
|
output: {};
|
|
19643
19645
|
outputFormat: string;
|
|
19644
|
-
status:
|
|
19646
|
+
status: 302;
|
|
19645
19647
|
} | {
|
|
19646
19648
|
input: {
|
|
19647
19649
|
param: {
|
|
19648
|
-
screen: "signup" | "
|
|
19650
|
+
screen: "signup" | "account" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19649
19651
|
};
|
|
19650
19652
|
} & {
|
|
19651
19653
|
query: {
|
|
@@ -19657,7 +19659,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19657
19659
|
};
|
|
19658
19660
|
output: {};
|
|
19659
19661
|
outputFormat: string;
|
|
19660
|
-
status:
|
|
19662
|
+
status: 400;
|
|
19661
19663
|
};
|
|
19662
19664
|
};
|
|
19663
19665
|
} & {
|
|
@@ -19665,7 +19667,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19665
19667
|
$post: {
|
|
19666
19668
|
input: {
|
|
19667
19669
|
param: {
|
|
19668
|
-
screen: "signup" | "
|
|
19670
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
|
|
19669
19671
|
};
|
|
19670
19672
|
} & {
|
|
19671
19673
|
query: {
|
|
@@ -19683,7 +19685,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19683
19685
|
} | {
|
|
19684
19686
|
input: {
|
|
19685
19687
|
param: {
|
|
19686
|
-
screen: "signup" | "
|
|
19688
|
+
screen: "signup" | "login" | "enter-password" | "reset-password" | "impersonate" | "consent" | "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";
|
|
19687
19689
|
};
|
|
19688
19690
|
} & {
|
|
19689
19691
|
query: {
|