authhero 9.9.0 → 9.9.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 +543 -344
- package/dist/authhero.d.ts +135 -135
- package/dist/authhero.mjs +12205 -11732
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/grant-tokens.d.ts +16 -0
- package/dist/types/helpers/refresh-token-lifetime.d.ts +103 -0
- package/dist/types/hooks/addDataHooks.d.ts +4 -3
- package/dist/types/index.d.ts +135 -135
- package/dist/types/routes/auth-api/index.d.ts +32 -32
- package/dist/types/routes/auth-api/passwordless.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +24 -24
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +80 -80
- package/dist/types/routes/management-api/keys.d.ts +8 -8
- package/dist/types/routes/management-api/organizations.d.ts +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- package/dist/types/routes/management-api/users.d.ts +20 -20
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/info-code-exchange.d.ts +27 -0
- package/dist/types/routes/universal-login/token-info-page.d.ts +26 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/utils/email.d.ts +21 -9
- package/package.json +8 -8
package/dist/types/index.d.ts
CHANGED
|
@@ -80,8 +80,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
80
80
|
$get: {
|
|
81
81
|
input: {
|
|
82
82
|
query: {
|
|
83
|
-
include_password_hashes?: "
|
|
84
|
-
gzip?: "
|
|
83
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
84
|
+
gzip?: "false" | "true" | undefined;
|
|
85
85
|
};
|
|
86
86
|
} & {
|
|
87
87
|
header: {
|
|
@@ -94,8 +94,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
94
94
|
} | {
|
|
95
95
|
input: {
|
|
96
96
|
query: {
|
|
97
|
-
include_password_hashes?: "
|
|
98
|
-
gzip?: "
|
|
97
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
98
|
+
gzip?: "false" | "true" | undefined;
|
|
99
99
|
};
|
|
100
100
|
} & {
|
|
101
101
|
header: {
|
|
@@ -114,7 +114,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
114
114
|
$post: {
|
|
115
115
|
input: {
|
|
116
116
|
query: {
|
|
117
|
-
include_password_hashes?: "
|
|
117
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
118
118
|
};
|
|
119
119
|
} & {
|
|
120
120
|
header: {
|
|
@@ -168,7 +168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
168
168
|
};
|
|
169
169
|
} & {
|
|
170
170
|
json: {
|
|
171
|
-
type: "
|
|
171
|
+
type: "email" | "push" | "phone" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "totp";
|
|
172
172
|
phone_number?: string | undefined;
|
|
173
173
|
totp_secret?: string | undefined;
|
|
174
174
|
credential_id?: string | undefined;
|
|
@@ -308,7 +308,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
308
308
|
};
|
|
309
309
|
};
|
|
310
310
|
output: {
|
|
311
|
-
name: "
|
|
311
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
312
312
|
enabled: boolean;
|
|
313
313
|
trial_expired?: boolean | undefined;
|
|
314
314
|
}[];
|
|
@@ -463,7 +463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
463
463
|
$get: {
|
|
464
464
|
input: {
|
|
465
465
|
param: {
|
|
466
|
-
factor_name: "
|
|
466
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
467
467
|
};
|
|
468
468
|
} & {
|
|
469
469
|
header: {
|
|
@@ -471,7 +471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
471
471
|
};
|
|
472
472
|
};
|
|
473
473
|
output: {
|
|
474
|
-
name: "
|
|
474
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
475
475
|
enabled: boolean;
|
|
476
476
|
trial_expired?: boolean | undefined;
|
|
477
477
|
};
|
|
@@ -484,7 +484,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
484
484
|
$put: {
|
|
485
485
|
input: {
|
|
486
486
|
param: {
|
|
487
|
-
factor_name: "
|
|
487
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
488
488
|
};
|
|
489
489
|
} & {
|
|
490
490
|
header: {
|
|
@@ -496,7 +496,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
496
496
|
};
|
|
497
497
|
};
|
|
498
498
|
output: {
|
|
499
|
-
name: "
|
|
499
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
500
500
|
enabled: boolean;
|
|
501
501
|
trial_expired?: boolean | undefined;
|
|
502
502
|
};
|
|
@@ -1268,19 +1268,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1268
1268
|
} & {
|
|
1269
1269
|
json: {
|
|
1270
1270
|
client_id: string;
|
|
1271
|
-
invitee: {
|
|
1272
|
-
email?: string | undefined;
|
|
1273
|
-
};
|
|
1274
1271
|
inviter: {
|
|
1275
1272
|
name?: string | undefined;
|
|
1276
1273
|
};
|
|
1274
|
+
invitee: {
|
|
1275
|
+
email?: string | undefined;
|
|
1276
|
+
};
|
|
1277
1277
|
id?: string | undefined;
|
|
1278
1278
|
app_metadata?: Record<string, any> | undefined;
|
|
1279
1279
|
user_metadata?: Record<string, any> | undefined;
|
|
1280
1280
|
connection_id?: string | undefined;
|
|
1281
1281
|
roles?: string[] | undefined;
|
|
1282
|
-
send_invitation_email?: boolean | undefined;
|
|
1283
1282
|
ttl_sec?: number | undefined;
|
|
1283
|
+
send_invitation_email?: boolean | undefined;
|
|
1284
1284
|
};
|
|
1285
1285
|
};
|
|
1286
1286
|
output: {
|
|
@@ -2035,8 +2035,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2035
2035
|
};
|
|
2036
2036
|
} & {
|
|
2037
2037
|
query: {
|
|
2038
|
-
page?: string | undefined;
|
|
2039
2038
|
from?: string | undefined;
|
|
2039
|
+
page?: string | undefined;
|
|
2040
2040
|
include_totals?: string | undefined;
|
|
2041
2041
|
per_page?: string | undefined;
|
|
2042
2042
|
take?: string | undefined;
|
|
@@ -2183,7 +2183,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2183
2183
|
type: "REDIRECT";
|
|
2184
2184
|
action: "REDIRECT_USER";
|
|
2185
2185
|
params: {
|
|
2186
|
-
target: "custom" | "
|
|
2186
|
+
target: "custom" | "account" | "change-email";
|
|
2187
2187
|
custom_url?: string | undefined;
|
|
2188
2188
|
};
|
|
2189
2189
|
alias?: string | undefined;
|
|
@@ -2236,7 +2236,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2236
2236
|
type: "REDIRECT";
|
|
2237
2237
|
action: "REDIRECT_USER";
|
|
2238
2238
|
params: {
|
|
2239
|
-
target: "custom" | "
|
|
2239
|
+
target: "custom" | "account" | "change-email";
|
|
2240
2240
|
custom_url?: string | undefined;
|
|
2241
2241
|
};
|
|
2242
2242
|
alias?: string | undefined;
|
|
@@ -2305,7 +2305,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2305
2305
|
type: "REDIRECT";
|
|
2306
2306
|
action: "REDIRECT_USER";
|
|
2307
2307
|
params: {
|
|
2308
|
-
target: "custom" | "
|
|
2308
|
+
target: "custom" | "account" | "change-email";
|
|
2309
2309
|
custom_url?: string | undefined;
|
|
2310
2310
|
};
|
|
2311
2311
|
alias?: string | undefined;
|
|
@@ -2386,7 +2386,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2386
2386
|
type: "REDIRECT";
|
|
2387
2387
|
action: "REDIRECT_USER";
|
|
2388
2388
|
params: {
|
|
2389
|
-
target: "custom" | "
|
|
2389
|
+
target: "custom" | "account" | "change-email";
|
|
2390
2390
|
custom_url?: string | undefined;
|
|
2391
2391
|
};
|
|
2392
2392
|
alias?: string | undefined;
|
|
@@ -2434,7 +2434,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2434
2434
|
type: "REDIRECT";
|
|
2435
2435
|
action: "REDIRECT_USER";
|
|
2436
2436
|
params: {
|
|
2437
|
-
target: "custom" | "
|
|
2437
|
+
target: "custom" | "account" | "change-email";
|
|
2438
2438
|
custom_url?: string | undefined;
|
|
2439
2439
|
};
|
|
2440
2440
|
alias?: string | undefined;
|
|
@@ -2494,7 +2494,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2494
2494
|
type: "REDIRECT";
|
|
2495
2495
|
action: "REDIRECT_USER";
|
|
2496
2496
|
params: {
|
|
2497
|
-
target: "custom" | "
|
|
2497
|
+
target: "custom" | "account" | "change-email";
|
|
2498
2498
|
custom_url?: string | undefined;
|
|
2499
2499
|
};
|
|
2500
2500
|
alias?: string | undefined;
|
|
@@ -2542,7 +2542,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2542
2542
|
type: "REDIRECT";
|
|
2543
2543
|
action: "REDIRECT_USER";
|
|
2544
2544
|
params: {
|
|
2545
|
-
target: "custom" | "
|
|
2545
|
+
target: "custom" | "account" | "change-email";
|
|
2546
2546
|
custom_url?: string | undefined;
|
|
2547
2547
|
};
|
|
2548
2548
|
alias?: string | undefined;
|
|
@@ -7107,7 +7107,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7107
7107
|
};
|
|
7108
7108
|
};
|
|
7109
7109
|
output: {
|
|
7110
|
-
prompt: "
|
|
7110
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
7111
7111
|
language: string;
|
|
7112
7112
|
}[];
|
|
7113
7113
|
outputFormat: "json";
|
|
@@ -7145,7 +7145,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7145
7145
|
$get: {
|
|
7146
7146
|
input: {
|
|
7147
7147
|
param: {
|
|
7148
|
-
prompt: "
|
|
7148
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
7149
7149
|
language: string;
|
|
7150
7150
|
};
|
|
7151
7151
|
} & {
|
|
@@ -7167,7 +7167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7167
7167
|
$put: {
|
|
7168
7168
|
input: {
|
|
7169
7169
|
param: {
|
|
7170
|
-
prompt: "
|
|
7170
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
7171
7171
|
language: string;
|
|
7172
7172
|
};
|
|
7173
7173
|
} & {
|
|
@@ -7191,7 +7191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7191
7191
|
$delete: {
|
|
7192
7192
|
input: {
|
|
7193
7193
|
param: {
|
|
7194
|
-
prompt: "
|
|
7194
|
+
prompt: "mfa" | "organizations" | "status" | "invitation" | "login" | "email-otp-challenge" | "signup" | "reset-password" | "mfa-login-options" | "consent" | "email-verification" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
7195
7195
|
language: string;
|
|
7196
7196
|
};
|
|
7197
7197
|
} & {
|
|
@@ -7334,7 +7334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7334
7334
|
} | undefined;
|
|
7335
7335
|
} | undefined;
|
|
7336
7336
|
passkey_options?: {
|
|
7337
|
-
challenge_ui?: "
|
|
7337
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7338
7338
|
local_enrollment_enabled?: boolean | undefined;
|
|
7339
7339
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7340
7340
|
} | undefined;
|
|
@@ -7472,7 +7472,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7472
7472
|
} | undefined;
|
|
7473
7473
|
} | undefined;
|
|
7474
7474
|
passkey_options?: {
|
|
7475
|
-
challenge_ui?: "
|
|
7475
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7476
7476
|
local_enrollment_enabled?: boolean | undefined;
|
|
7477
7477
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7478
7478
|
} | undefined;
|
|
@@ -7626,7 +7626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7626
7626
|
} | undefined;
|
|
7627
7627
|
} | undefined;
|
|
7628
7628
|
passkey_options?: {
|
|
7629
|
-
challenge_ui?: "
|
|
7629
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7630
7630
|
local_enrollment_enabled?: boolean | undefined;
|
|
7631
7631
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7632
7632
|
} | undefined;
|
|
@@ -7809,7 +7809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7809
7809
|
} | undefined;
|
|
7810
7810
|
} | undefined;
|
|
7811
7811
|
passkey_options?: {
|
|
7812
|
-
challenge_ui?: "
|
|
7812
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7813
7813
|
local_enrollment_enabled?: boolean | undefined;
|
|
7814
7814
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7815
7815
|
} | undefined;
|
|
@@ -7971,7 +7971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7971
7971
|
} | undefined;
|
|
7972
7972
|
} | undefined;
|
|
7973
7973
|
passkey_options?: {
|
|
7974
|
-
challenge_ui?: "
|
|
7974
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
7975
7975
|
local_enrollment_enabled?: boolean | undefined;
|
|
7976
7976
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7977
7977
|
} | undefined;
|
|
@@ -8803,7 +8803,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8803
8803
|
log_type: string;
|
|
8804
8804
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8805
8805
|
actor: {
|
|
8806
|
-
type: "
|
|
8806
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8807
8807
|
id?: string | undefined;
|
|
8808
8808
|
email?: string | undefined;
|
|
8809
8809
|
org_id?: string | undefined;
|
|
@@ -9454,7 +9454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9454
9454
|
};
|
|
9455
9455
|
};
|
|
9456
9456
|
output: {
|
|
9457
|
-
type: "
|
|
9457
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9458
9458
|
date: string;
|
|
9459
9459
|
isMobile: boolean;
|
|
9460
9460
|
log_id: string;
|
|
@@ -9493,7 +9493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9493
9493
|
limit: number;
|
|
9494
9494
|
length: number;
|
|
9495
9495
|
logs: {
|
|
9496
|
-
type: "
|
|
9496
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9497
9497
|
date: string;
|
|
9498
9498
|
isMobile: boolean;
|
|
9499
9499
|
log_id: string;
|
|
@@ -9532,7 +9532,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9532
9532
|
next?: string | undefined;
|
|
9533
9533
|
} | {
|
|
9534
9534
|
logs: {
|
|
9535
|
-
type: "
|
|
9535
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9536
9536
|
date: string;
|
|
9537
9537
|
isMobile: boolean;
|
|
9538
9538
|
log_id: string;
|
|
@@ -9586,7 +9586,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9586
9586
|
};
|
|
9587
9587
|
};
|
|
9588
9588
|
output: {
|
|
9589
|
-
type: "
|
|
9589
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
9590
9590
|
date: string;
|
|
9591
9591
|
isMobile: boolean;
|
|
9592
9592
|
log_id: string;
|
|
@@ -10878,7 +10878,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10878
10878
|
} | undefined;
|
|
10879
10879
|
} | undefined;
|
|
10880
10880
|
passkey_options?: {
|
|
10881
|
-
challenge_ui?: "
|
|
10881
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
10882
10882
|
local_enrollment_enabled?: boolean | undefined;
|
|
10883
10883
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10884
10884
|
} | undefined;
|
|
@@ -11036,7 +11036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11036
11036
|
} | undefined;
|
|
11037
11037
|
} | undefined;
|
|
11038
11038
|
passkey_options?: {
|
|
11039
|
-
challenge_ui?: "
|
|
11039
|
+
challenge_ui?: "button" | "both" | "autofill" | undefined;
|
|
11040
11040
|
local_enrollment_enabled?: boolean | undefined;
|
|
11041
11041
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
11042
11042
|
} | undefined;
|
|
@@ -11170,15 +11170,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11170
11170
|
cert: string;
|
|
11171
11171
|
fingerprint: string;
|
|
11172
11172
|
thumbprint: string;
|
|
11173
|
-
revoked_at?: string | undefined;
|
|
11174
|
-
tenant_id?: string | undefined;
|
|
11175
11173
|
connection?: string | undefined;
|
|
11174
|
+
tenant_id?: string | undefined;
|
|
11176
11175
|
current?: boolean | undefined;
|
|
11177
11176
|
next?: boolean | undefined;
|
|
11178
11177
|
previous?: boolean | undefined;
|
|
11179
11178
|
current_since?: string | undefined;
|
|
11180
11179
|
current_until?: string | undefined;
|
|
11181
11180
|
revoked?: boolean | undefined;
|
|
11181
|
+
revoked_at?: string | undefined;
|
|
11182
11182
|
expires_at?: string | undefined;
|
|
11183
11183
|
expired?: boolean | undefined;
|
|
11184
11184
|
inherited?: boolean | undefined;
|
|
@@ -11209,15 +11209,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11209
11209
|
cert: string;
|
|
11210
11210
|
fingerprint: string;
|
|
11211
11211
|
thumbprint: string;
|
|
11212
|
-
revoked_at?: string | undefined;
|
|
11213
|
-
tenant_id?: string | undefined;
|
|
11214
11212
|
connection?: string | undefined;
|
|
11213
|
+
tenant_id?: string | undefined;
|
|
11215
11214
|
current?: boolean | undefined;
|
|
11216
11215
|
next?: boolean | undefined;
|
|
11217
11216
|
previous?: boolean | undefined;
|
|
11218
11217
|
current_since?: string | undefined;
|
|
11219
11218
|
current_until?: string | undefined;
|
|
11220
11219
|
revoked?: boolean | undefined;
|
|
11220
|
+
revoked_at?: string | undefined;
|
|
11221
11221
|
expires_at?: string | undefined;
|
|
11222
11222
|
expired?: boolean | undefined;
|
|
11223
11223
|
inherited?: boolean | undefined;
|
|
@@ -11247,15 +11247,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11247
11247
|
cert: string;
|
|
11248
11248
|
fingerprint: string;
|
|
11249
11249
|
thumbprint: string;
|
|
11250
|
-
revoked_at?: string | undefined;
|
|
11251
|
-
tenant_id?: string | undefined;
|
|
11252
11250
|
connection?: string | undefined;
|
|
11251
|
+
tenant_id?: string | undefined;
|
|
11253
11252
|
current?: boolean | undefined;
|
|
11254
11253
|
next?: boolean | undefined;
|
|
11255
11254
|
previous?: boolean | undefined;
|
|
11256
11255
|
current_since?: string | undefined;
|
|
11257
11256
|
current_until?: string | undefined;
|
|
11258
11257
|
revoked?: boolean | undefined;
|
|
11258
|
+
revoked_at?: string | undefined;
|
|
11259
11259
|
expires_at?: string | undefined;
|
|
11260
11260
|
expired?: boolean | undefined;
|
|
11261
11261
|
inherited?: boolean | undefined;
|
|
@@ -11287,15 +11287,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11287
11287
|
cert: string;
|
|
11288
11288
|
fingerprint: string;
|
|
11289
11289
|
thumbprint: string;
|
|
11290
|
-
revoked_at?: string | undefined;
|
|
11291
|
-
tenant_id?: string | undefined;
|
|
11292
11290
|
connection?: string | undefined;
|
|
11291
|
+
tenant_id?: string | undefined;
|
|
11293
11292
|
current?: boolean | undefined;
|
|
11294
11293
|
next?: boolean | undefined;
|
|
11295
11294
|
previous?: boolean | undefined;
|
|
11296
11295
|
current_since?: string | undefined;
|
|
11297
11296
|
current_until?: string | undefined;
|
|
11298
11297
|
revoked?: boolean | undefined;
|
|
11298
|
+
revoked_at?: string | undefined;
|
|
11299
11299
|
expires_at?: string | undefined;
|
|
11300
11300
|
expired?: boolean | undefined;
|
|
11301
11301
|
inherited?: boolean | undefined;
|
|
@@ -12140,9 +12140,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12140
12140
|
};
|
|
12141
12141
|
};
|
|
12142
12142
|
output: {
|
|
12143
|
+
client_id: string;
|
|
12143
12144
|
created_at: string;
|
|
12145
|
+
rotating: boolean;
|
|
12144
12146
|
id: string;
|
|
12145
12147
|
user_id: string;
|
|
12148
|
+
login_id: string;
|
|
12146
12149
|
device: {
|
|
12147
12150
|
initial_user_agent: string;
|
|
12148
12151
|
initial_ip: string;
|
|
@@ -12151,32 +12154,29 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12151
12154
|
last_ip: string;
|
|
12152
12155
|
last_asn: string;
|
|
12153
12156
|
};
|
|
12154
|
-
client_id: string;
|
|
12155
|
-
rotating: boolean;
|
|
12156
|
-
login_id: string;
|
|
12157
12157
|
resource_servers: {
|
|
12158
12158
|
audience: string;
|
|
12159
12159
|
scopes: string;
|
|
12160
12160
|
}[];
|
|
12161
|
-
|
|
12161
|
+
organization?: string | undefined;
|
|
12162
12162
|
expires_at?: string | undefined;
|
|
12163
|
-
idle_expires_at?: string | undefined;
|
|
12164
12163
|
session_id?: string | undefined;
|
|
12165
12164
|
auth_connection?: string | undefined;
|
|
12166
12165
|
auth_strategy?: {
|
|
12167
12166
|
strategy: string;
|
|
12168
12167
|
strategy_type: string;
|
|
12169
12168
|
} | undefined;
|
|
12170
|
-
|
|
12169
|
+
revoked_at?: string | undefined;
|
|
12170
|
+
idle_expires_at?: string | undefined;
|
|
12171
12171
|
last_exchanged_at?: string | undefined;
|
|
12172
12172
|
}[] | {
|
|
12173
|
-
start: number;
|
|
12174
|
-
limit: number;
|
|
12175
|
-
length: number;
|
|
12176
12173
|
tokens: {
|
|
12174
|
+
client_id: string;
|
|
12177
12175
|
created_at: string;
|
|
12176
|
+
rotating: boolean;
|
|
12178
12177
|
id: string;
|
|
12179
12178
|
user_id: string;
|
|
12179
|
+
login_id: string;
|
|
12180
12180
|
device: {
|
|
12181
12181
|
initial_user_agent: string;
|
|
12182
12182
|
initial_ip: string;
|
|
@@ -12185,32 +12185,34 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12185
12185
|
last_ip: string;
|
|
12186
12186
|
last_asn: string;
|
|
12187
12187
|
};
|
|
12188
|
-
client_id: string;
|
|
12189
|
-
rotating: boolean;
|
|
12190
|
-
login_id: string;
|
|
12191
12188
|
resource_servers: {
|
|
12192
12189
|
audience: string;
|
|
12193
12190
|
scopes: string;
|
|
12194
12191
|
}[];
|
|
12195
|
-
|
|
12192
|
+
organization?: string | undefined;
|
|
12196
12193
|
expires_at?: string | undefined;
|
|
12197
|
-
idle_expires_at?: string | undefined;
|
|
12198
12194
|
session_id?: string | undefined;
|
|
12199
12195
|
auth_connection?: string | undefined;
|
|
12200
12196
|
auth_strategy?: {
|
|
12201
12197
|
strategy: string;
|
|
12202
12198
|
strategy_type: string;
|
|
12203
12199
|
} | undefined;
|
|
12204
|
-
|
|
12200
|
+
revoked_at?: string | undefined;
|
|
12201
|
+
idle_expires_at?: string | undefined;
|
|
12205
12202
|
last_exchanged_at?: string | undefined;
|
|
12206
12203
|
}[];
|
|
12207
|
-
total?: number | undefined;
|
|
12208
12204
|
next?: string | undefined;
|
|
12209
12205
|
} | {
|
|
12206
|
+
start: number;
|
|
12207
|
+
limit: number;
|
|
12208
|
+
length: number;
|
|
12210
12209
|
tokens: {
|
|
12210
|
+
client_id: string;
|
|
12211
12211
|
created_at: string;
|
|
12212
|
+
rotating: boolean;
|
|
12212
12213
|
id: string;
|
|
12213
12214
|
user_id: string;
|
|
12215
|
+
login_id: string;
|
|
12214
12216
|
device: {
|
|
12215
12217
|
initial_user_agent: string;
|
|
12216
12218
|
initial_ip: string;
|
|
@@ -12219,25 +12221,23 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12219
12221
|
last_ip: string;
|
|
12220
12222
|
last_asn: string;
|
|
12221
12223
|
};
|
|
12222
|
-
client_id: string;
|
|
12223
|
-
rotating: boolean;
|
|
12224
|
-
login_id: string;
|
|
12225
12224
|
resource_servers: {
|
|
12226
12225
|
audience: string;
|
|
12227
12226
|
scopes: string;
|
|
12228
12227
|
}[];
|
|
12229
|
-
|
|
12228
|
+
organization?: string | undefined;
|
|
12230
12229
|
expires_at?: string | undefined;
|
|
12231
|
-
idle_expires_at?: string | undefined;
|
|
12232
12230
|
session_id?: string | undefined;
|
|
12233
12231
|
auth_connection?: string | undefined;
|
|
12234
12232
|
auth_strategy?: {
|
|
12235
12233
|
strategy: string;
|
|
12236
12234
|
strategy_type: string;
|
|
12237
12235
|
} | undefined;
|
|
12238
|
-
|
|
12236
|
+
revoked_at?: string | undefined;
|
|
12237
|
+
idle_expires_at?: string | undefined;
|
|
12239
12238
|
last_exchanged_at?: string | undefined;
|
|
12240
12239
|
}[];
|
|
12240
|
+
total?: number | undefined;
|
|
12241
12241
|
next?: string | undefined;
|
|
12242
12242
|
};
|
|
12243
12243
|
outputFormat: "json";
|
|
@@ -12286,7 +12286,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12286
12286
|
};
|
|
12287
12287
|
};
|
|
12288
12288
|
output: {
|
|
12289
|
-
type: "
|
|
12289
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
12290
12290
|
date: string;
|
|
12291
12291
|
isMobile: boolean;
|
|
12292
12292
|
log_id: string;
|
|
@@ -12325,7 +12325,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12325
12325
|
limit: number;
|
|
12326
12326
|
length: number;
|
|
12327
12327
|
logs: {
|
|
12328
|
-
type: "
|
|
12328
|
+
type: "fn" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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";
|
|
12329
12329
|
date: string;
|
|
12330
12330
|
isMobile: boolean;
|
|
12331
12331
|
log_id: string;
|
|
@@ -12644,7 +12644,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12644
12644
|
};
|
|
12645
12645
|
} & {
|
|
12646
12646
|
json: {
|
|
12647
|
-
template: "
|
|
12647
|
+
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";
|
|
12648
12648
|
body: string;
|
|
12649
12649
|
from: string;
|
|
12650
12650
|
subject: string;
|
|
@@ -12665,7 +12665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12665
12665
|
};
|
|
12666
12666
|
} & {
|
|
12667
12667
|
json: {
|
|
12668
|
-
template: "
|
|
12668
|
+
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";
|
|
12669
12669
|
body: string;
|
|
12670
12670
|
from: string;
|
|
12671
12671
|
subject: string;
|
|
@@ -12677,7 +12677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12677
12677
|
};
|
|
12678
12678
|
};
|
|
12679
12679
|
output: {
|
|
12680
|
-
template: "
|
|
12680
|
+
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";
|
|
12681
12681
|
body: string;
|
|
12682
12682
|
from: string;
|
|
12683
12683
|
subject: string;
|
|
@@ -12700,7 +12700,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12700
12700
|
};
|
|
12701
12701
|
};
|
|
12702
12702
|
output: {
|
|
12703
|
-
name: "
|
|
12703
|
+
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";
|
|
12704
12704
|
body: string;
|
|
12705
12705
|
subject: string;
|
|
12706
12706
|
}[];
|
|
@@ -12713,7 +12713,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12713
12713
|
$get: {
|
|
12714
12714
|
input: {
|
|
12715
12715
|
param: {
|
|
12716
|
-
templateName: "
|
|
12716
|
+
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";
|
|
12717
12717
|
};
|
|
12718
12718
|
} & {
|
|
12719
12719
|
header: {
|
|
@@ -12726,7 +12726,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12726
12726
|
} | {
|
|
12727
12727
|
input: {
|
|
12728
12728
|
param: {
|
|
12729
|
-
templateName: "
|
|
12729
|
+
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";
|
|
12730
12730
|
};
|
|
12731
12731
|
} & {
|
|
12732
12732
|
header: {
|
|
@@ -12734,7 +12734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12734
12734
|
};
|
|
12735
12735
|
};
|
|
12736
12736
|
output: {
|
|
12737
|
-
template: "
|
|
12737
|
+
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";
|
|
12738
12738
|
body: string;
|
|
12739
12739
|
from: string;
|
|
12740
12740
|
subject: string;
|
|
@@ -12753,7 +12753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12753
12753
|
$put: {
|
|
12754
12754
|
input: {
|
|
12755
12755
|
param: {
|
|
12756
|
-
templateName: "
|
|
12756
|
+
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";
|
|
12757
12757
|
};
|
|
12758
12758
|
} & {
|
|
12759
12759
|
header: {
|
|
@@ -12761,7 +12761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12761
12761
|
};
|
|
12762
12762
|
} & {
|
|
12763
12763
|
json: {
|
|
12764
|
-
template: "
|
|
12764
|
+
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";
|
|
12765
12765
|
body: string;
|
|
12766
12766
|
subject: string;
|
|
12767
12767
|
syntax?: "liquid" | undefined;
|
|
@@ -12773,7 +12773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12773
12773
|
};
|
|
12774
12774
|
};
|
|
12775
12775
|
output: {
|
|
12776
|
-
template: "
|
|
12776
|
+
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";
|
|
12777
12777
|
body: string;
|
|
12778
12778
|
from: string;
|
|
12779
12779
|
subject: string;
|
|
@@ -12792,7 +12792,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12792
12792
|
$patch: {
|
|
12793
12793
|
input: {
|
|
12794
12794
|
param: {
|
|
12795
|
-
templateName: "
|
|
12795
|
+
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";
|
|
12796
12796
|
};
|
|
12797
12797
|
} & {
|
|
12798
12798
|
header: {
|
|
@@ -12800,7 +12800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12800
12800
|
};
|
|
12801
12801
|
} & {
|
|
12802
12802
|
json: {
|
|
12803
|
-
template?: "
|
|
12803
|
+
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;
|
|
12804
12804
|
body?: string | undefined;
|
|
12805
12805
|
from?: string | undefined;
|
|
12806
12806
|
subject?: string | undefined;
|
|
@@ -12817,7 +12817,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12817
12817
|
} | {
|
|
12818
12818
|
input: {
|
|
12819
12819
|
param: {
|
|
12820
|
-
templateName: "
|
|
12820
|
+
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";
|
|
12821
12821
|
};
|
|
12822
12822
|
} & {
|
|
12823
12823
|
header: {
|
|
@@ -12825,7 +12825,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12825
12825
|
};
|
|
12826
12826
|
} & {
|
|
12827
12827
|
json: {
|
|
12828
|
-
template?: "
|
|
12828
|
+
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;
|
|
12829
12829
|
body?: string | undefined;
|
|
12830
12830
|
from?: string | undefined;
|
|
12831
12831
|
subject?: string | undefined;
|
|
@@ -12837,7 +12837,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12837
12837
|
};
|
|
12838
12838
|
};
|
|
12839
12839
|
output: {
|
|
12840
|
-
template: "
|
|
12840
|
+
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";
|
|
12841
12841
|
body: string;
|
|
12842
12842
|
from: string;
|
|
12843
12843
|
subject: string;
|
|
@@ -12856,7 +12856,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12856
12856
|
$delete: {
|
|
12857
12857
|
input: {
|
|
12858
12858
|
param: {
|
|
12859
|
-
templateName: "
|
|
12859
|
+
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";
|
|
12860
12860
|
};
|
|
12861
12861
|
} & {
|
|
12862
12862
|
header: {
|
|
@@ -12869,7 +12869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12869
12869
|
} | {
|
|
12870
12870
|
input: {
|
|
12871
12871
|
param: {
|
|
12872
|
-
templateName: "
|
|
12872
|
+
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";
|
|
12873
12873
|
};
|
|
12874
12874
|
} & {
|
|
12875
12875
|
header: {
|
|
@@ -12886,7 +12886,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12886
12886
|
$post: {
|
|
12887
12887
|
input: {
|
|
12888
12888
|
param: {
|
|
12889
|
-
templateName: "
|
|
12889
|
+
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";
|
|
12890
12890
|
};
|
|
12891
12891
|
} & {
|
|
12892
12892
|
header: {
|
|
@@ -13456,7 +13456,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13456
13456
|
base_focus_color: string;
|
|
13457
13457
|
base_hover_color: string;
|
|
13458
13458
|
body_text: string;
|
|
13459
|
-
captcha_widget_theme: "
|
|
13459
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13460
13460
|
error: string;
|
|
13461
13461
|
header: string;
|
|
13462
13462
|
icons: string;
|
|
@@ -13546,7 +13546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13546
13546
|
base_focus_color: string;
|
|
13547
13547
|
base_hover_color: string;
|
|
13548
13548
|
body_text: string;
|
|
13549
|
-
captcha_widget_theme: "
|
|
13549
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13550
13550
|
error: string;
|
|
13551
13551
|
header: string;
|
|
13552
13552
|
icons: string;
|
|
@@ -13625,7 +13625,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13625
13625
|
base_focus_color: string;
|
|
13626
13626
|
base_hover_color: string;
|
|
13627
13627
|
body_text: string;
|
|
13628
|
-
captcha_widget_theme: "
|
|
13628
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13629
13629
|
error: string;
|
|
13630
13630
|
header: string;
|
|
13631
13631
|
icons: string;
|
|
@@ -13715,7 +13715,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13715
13715
|
font?: {
|
|
13716
13716
|
url: string;
|
|
13717
13717
|
} | undefined;
|
|
13718
|
-
dark_mode?: "
|
|
13718
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13719
13719
|
};
|
|
13720
13720
|
outputFormat: "json";
|
|
13721
13721
|
status: 200;
|
|
@@ -13745,7 +13745,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13745
13745
|
font?: {
|
|
13746
13746
|
url: string;
|
|
13747
13747
|
} | undefined;
|
|
13748
|
-
dark_mode?: "
|
|
13748
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13749
13749
|
};
|
|
13750
13750
|
};
|
|
13751
13751
|
output: {
|
|
@@ -13764,7 +13764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13764
13764
|
font?: {
|
|
13765
13765
|
url: string;
|
|
13766
13766
|
} | undefined;
|
|
13767
|
-
dark_mode?: "
|
|
13767
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13768
13768
|
};
|
|
13769
13769
|
outputFormat: "json";
|
|
13770
13770
|
status: 200;
|
|
@@ -13838,7 +13838,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13838
13838
|
} & {
|
|
13839
13839
|
json: {
|
|
13840
13840
|
body?: string | undefined;
|
|
13841
|
-
screen?: "password" | "
|
|
13841
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
13842
13842
|
branding?: {
|
|
13843
13843
|
colors?: {
|
|
13844
13844
|
primary: string;
|
|
@@ -13855,7 +13855,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13855
13855
|
font?: {
|
|
13856
13856
|
url: string;
|
|
13857
13857
|
} | undefined;
|
|
13858
|
-
dark_mode?: "
|
|
13858
|
+
dark_mode?: "auto" | "light" | "dark" | undefined;
|
|
13859
13859
|
} | undefined;
|
|
13860
13860
|
theme?: {
|
|
13861
13861
|
borders?: {
|
|
@@ -13873,7 +13873,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13873
13873
|
base_focus_color: string;
|
|
13874
13874
|
base_hover_color: string;
|
|
13875
13875
|
body_text: string;
|
|
13876
|
-
captcha_widget_theme: "
|
|
13876
|
+
captcha_widget_theme: "auto" | "light" | "dark";
|
|
13877
13877
|
error: string;
|
|
13878
13878
|
header: string;
|
|
13879
13879
|
icons: string;
|
|
@@ -15255,7 +15255,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15255
15255
|
client_id: string;
|
|
15256
15256
|
redirect_url?: string | undefined;
|
|
15257
15257
|
login_hint?: string | undefined;
|
|
15258
|
-
screen_hint?: "
|
|
15258
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
15259
15259
|
};
|
|
15260
15260
|
};
|
|
15261
15261
|
output: {};
|
|
@@ -15267,7 +15267,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15267
15267
|
client_id: string;
|
|
15268
15268
|
redirect_url?: string | undefined;
|
|
15269
15269
|
login_hint?: string | undefined;
|
|
15270
|
-
screen_hint?: "
|
|
15270
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
15271
15271
|
};
|
|
15272
15272
|
};
|
|
15273
15273
|
output: {
|
|
@@ -15544,19 +15544,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15544
15544
|
email: string;
|
|
15545
15545
|
send: "code" | "link";
|
|
15546
15546
|
authParams: {
|
|
15547
|
-
username?: string | undefined;
|
|
15548
15547
|
scope?: string | undefined;
|
|
15549
|
-
audience?: string | undefined;
|
|
15550
15548
|
state?: string | undefined;
|
|
15551
15549
|
act_as?: string | undefined;
|
|
15552
15550
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15553
15551
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15554
15552
|
redirect_uri?: string | undefined;
|
|
15553
|
+
audience?: string | undefined;
|
|
15555
15554
|
organization?: string | undefined;
|
|
15556
15555
|
nonce?: string | undefined;
|
|
15557
15556
|
prompt?: string | undefined;
|
|
15558
15557
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15559
15558
|
code_challenge?: string | undefined;
|
|
15559
|
+
username?: string | undefined;
|
|
15560
15560
|
ui_locales?: string | undefined;
|
|
15561
15561
|
max_age?: number | undefined;
|
|
15562
15562
|
acr_values?: string | undefined;
|
|
@@ -15580,19 +15580,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15580
15580
|
phone_number: string;
|
|
15581
15581
|
send: "code" | "link";
|
|
15582
15582
|
authParams: {
|
|
15583
|
-
username?: string | undefined;
|
|
15584
15583
|
scope?: string | undefined;
|
|
15585
|
-
audience?: string | undefined;
|
|
15586
15584
|
state?: string | undefined;
|
|
15587
15585
|
act_as?: string | undefined;
|
|
15588
15586
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15589
15587
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15590
15588
|
redirect_uri?: string | undefined;
|
|
15589
|
+
audience?: string | undefined;
|
|
15591
15590
|
organization?: string | undefined;
|
|
15592
15591
|
nonce?: string | undefined;
|
|
15593
15592
|
prompt?: string | undefined;
|
|
15594
15593
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15595
15594
|
code_challenge?: string | undefined;
|
|
15595
|
+
username?: string | undefined;
|
|
15596
15596
|
ui_locales?: string | undefined;
|
|
15597
15597
|
max_age?: number | undefined;
|
|
15598
15598
|
acr_values?: string | undefined;
|
|
@@ -15822,7 +15822,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15822
15822
|
client_id: string;
|
|
15823
15823
|
username: string;
|
|
15824
15824
|
otp: string;
|
|
15825
|
-
realm: "
|
|
15825
|
+
realm: "sms" | "email";
|
|
15826
15826
|
scope?: string | undefined;
|
|
15827
15827
|
audience?: string | undefined;
|
|
15828
15828
|
} | {
|
|
@@ -15871,7 +15871,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15871
15871
|
client_id: string;
|
|
15872
15872
|
username: string;
|
|
15873
15873
|
otp: string;
|
|
15874
|
-
realm: "
|
|
15874
|
+
realm: "sms" | "email";
|
|
15875
15875
|
scope?: string | undefined;
|
|
15876
15876
|
audience?: string | undefined;
|
|
15877
15877
|
} | {
|
|
@@ -15887,9 +15887,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15887
15887
|
client_assertion_type?: string | undefined;
|
|
15888
15888
|
};
|
|
15889
15889
|
};
|
|
15890
|
-
output: {
|
|
15891
|
-
|
|
15892
|
-
|
|
15890
|
+
output: {
|
|
15891
|
+
access_token: string;
|
|
15892
|
+
token_type: string;
|
|
15893
|
+
expires_in: number;
|
|
15894
|
+
id_token?: string | undefined;
|
|
15895
|
+
scope?: string | undefined;
|
|
15896
|
+
state?: string | undefined;
|
|
15897
|
+
refresh_token?: string | undefined;
|
|
15898
|
+
};
|
|
15899
|
+
outputFormat: "json";
|
|
15900
|
+
status: 200;
|
|
15893
15901
|
} | {
|
|
15894
15902
|
input: {
|
|
15895
15903
|
form: {
|
|
@@ -15925,7 +15933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15925
15933
|
client_id: string;
|
|
15926
15934
|
username: string;
|
|
15927
15935
|
otp: string;
|
|
15928
|
-
realm: "
|
|
15936
|
+
realm: "sms" | "email";
|
|
15929
15937
|
scope?: string | undefined;
|
|
15930
15938
|
audience?: string | undefined;
|
|
15931
15939
|
} | {
|
|
@@ -15974,7 +15982,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15974
15982
|
client_id: string;
|
|
15975
15983
|
username: string;
|
|
15976
15984
|
otp: string;
|
|
15977
|
-
realm: "
|
|
15985
|
+
realm: "sms" | "email";
|
|
15978
15986
|
scope?: string | undefined;
|
|
15979
15987
|
audience?: string | undefined;
|
|
15980
15988
|
} | {
|
|
@@ -15990,17 +15998,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15990
15998
|
client_assertion_type?: string | undefined;
|
|
15991
15999
|
};
|
|
15992
16000
|
};
|
|
15993
|
-
output: {
|
|
15994
|
-
|
|
15995
|
-
|
|
15996
|
-
expires_in: number;
|
|
15997
|
-
id_token?: string | undefined;
|
|
15998
|
-
scope?: string | undefined;
|
|
15999
|
-
state?: string | undefined;
|
|
16000
|
-
refresh_token?: string | undefined;
|
|
16001
|
-
};
|
|
16002
|
-
outputFormat: "json";
|
|
16003
|
-
status: 200;
|
|
16001
|
+
output: {};
|
|
16002
|
+
outputFormat: string;
|
|
16003
|
+
status: 302;
|
|
16004
16004
|
} | {
|
|
16005
16005
|
input: {
|
|
16006
16006
|
form: {
|
|
@@ -16036,7 +16036,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16036
16036
|
client_id: string;
|
|
16037
16037
|
username: string;
|
|
16038
16038
|
otp: string;
|
|
16039
|
-
realm: "
|
|
16039
|
+
realm: "sms" | "email";
|
|
16040
16040
|
scope?: string | undefined;
|
|
16041
16041
|
audience?: string | undefined;
|
|
16042
16042
|
} | {
|
|
@@ -16085,7 +16085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16085
16085
|
client_id: string;
|
|
16086
16086
|
username: string;
|
|
16087
16087
|
otp: string;
|
|
16088
|
-
realm: "
|
|
16088
|
+
realm: "sms" | "email";
|
|
16089
16089
|
scope?: string | undefined;
|
|
16090
16090
|
audience?: string | undefined;
|
|
16091
16091
|
} | {
|
|
@@ -16142,7 +16142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16142
16142
|
client_id: string;
|
|
16143
16143
|
username: string;
|
|
16144
16144
|
otp: string;
|
|
16145
|
-
realm: "
|
|
16145
|
+
realm: "sms" | "email";
|
|
16146
16146
|
scope?: string | undefined;
|
|
16147
16147
|
audience?: string | undefined;
|
|
16148
16148
|
} | {
|
|
@@ -16191,7 +16191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16191
16191
|
client_id: string;
|
|
16192
16192
|
username: string;
|
|
16193
16193
|
otp: string;
|
|
16194
|
-
realm: "
|
|
16194
|
+
realm: "sms" | "email";
|
|
16195
16195
|
scope?: string | undefined;
|
|
16196
16196
|
audience?: string | undefined;
|
|
16197
16197
|
} | {
|
|
@@ -16248,7 +16248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16248
16248
|
client_id: string;
|
|
16249
16249
|
username: string;
|
|
16250
16250
|
otp: string;
|
|
16251
|
-
realm: "
|
|
16251
|
+
realm: "sms" | "email";
|
|
16252
16252
|
scope?: string | undefined;
|
|
16253
16253
|
audience?: string | undefined;
|
|
16254
16254
|
} | {
|
|
@@ -16297,7 +16297,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16297
16297
|
client_id: string;
|
|
16298
16298
|
username: string;
|
|
16299
16299
|
otp: string;
|
|
16300
|
-
realm: "
|
|
16300
|
+
realm: "sms" | "email";
|
|
16301
16301
|
scope?: string | undefined;
|
|
16302
16302
|
audience?: string | undefined;
|
|
16303
16303
|
} | {
|
|
@@ -16521,7 +16521,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16521
16521
|
};
|
|
16522
16522
|
output: {};
|
|
16523
16523
|
outputFormat: string;
|
|
16524
|
-
status:
|
|
16524
|
+
status: 302;
|
|
16525
16525
|
} | {
|
|
16526
16526
|
input: {
|
|
16527
16527
|
query: {
|
|
@@ -16535,7 +16535,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16535
16535
|
};
|
|
16536
16536
|
output: {};
|
|
16537
16537
|
outputFormat: string;
|
|
16538
|
-
status:
|
|
16538
|
+
status: 200;
|
|
16539
16539
|
} | {
|
|
16540
16540
|
input: {
|
|
16541
16541
|
query: {
|
|
@@ -17523,7 +17523,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17523
17523
|
$get: {
|
|
17524
17524
|
input: {
|
|
17525
17525
|
param: {
|
|
17526
|
-
screen: "
|
|
17526
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17527
17527
|
};
|
|
17528
17528
|
} & {
|
|
17529
17529
|
query: {
|
|
@@ -17539,7 +17539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17539
17539
|
} | {
|
|
17540
17540
|
input: {
|
|
17541
17541
|
param: {
|
|
17542
|
-
screen: "
|
|
17542
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17543
17543
|
};
|
|
17544
17544
|
} & {
|
|
17545
17545
|
query: {
|
|
@@ -17555,7 +17555,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17555
17555
|
} | {
|
|
17556
17556
|
input: {
|
|
17557
17557
|
param: {
|
|
17558
|
-
screen: "
|
|
17558
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "account" | "consent" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17559
17559
|
};
|
|
17560
17560
|
} & {
|
|
17561
17561
|
query: {
|
|
@@ -17575,7 +17575,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17575
17575
|
$post: {
|
|
17576
17576
|
input: {
|
|
17577
17577
|
param: {
|
|
17578
|
-
screen: "
|
|
17578
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17579
17579
|
};
|
|
17580
17580
|
} & {
|
|
17581
17581
|
query: {
|
|
@@ -17593,7 +17593,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17593
17593
|
} | {
|
|
17594
17594
|
input: {
|
|
17595
17595
|
param: {
|
|
17596
|
-
screen: "
|
|
17596
|
+
screen: "login" | "signup" | "enter-password" | "reset-password" | "impersonate" | "consent" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
17597
17597
|
};
|
|
17598
17598
|
} & {
|
|
17599
17599
|
query: {
|