authhero 8.4.1 → 8.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +3 -3
- package/dist/authhero.d.ts +125 -109
- package/dist/authhero.mjs +55 -71
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/index.d.ts +108 -106
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +14 -14
- package/dist/types/routes/management-api/custom-domains.d.ts +14 -14
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +76 -76
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- 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/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +4 -4
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ export { HttpSamlSigner } from "@authhero/saml/core";
|
|
|
38
38
|
export { fetchAll } from "./utils/fetchAll";
|
|
39
39
|
export type { FetchAllOptions } from "./utils/fetchAll";
|
|
40
40
|
export { deepMergePatch } from "./utils/deep-merge";
|
|
41
|
+
export { listControlPlaneKeys, resolveSigningKeys, resolveSigningKeyMode, } from "./helpers/signing-keys";
|
|
42
|
+
export type { ResolveSigningKeysOptions } from "./helpers/signing-keys";
|
|
41
43
|
export { USERNAME_PASSWORD_PROVIDER } from "./constants";
|
|
42
44
|
export * as preDefinedHooks from "./hooks/pre-defined";
|
|
43
45
|
export type { EnsureUsernameOptions } from "./hooks/pre-defined";
|
|
@@ -84,7 +86,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
84
86
|
};
|
|
85
87
|
} & {
|
|
86
88
|
json: {
|
|
87
|
-
type: "email" | "
|
|
89
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
88
90
|
phone_number?: string | undefined;
|
|
89
91
|
totp_secret?: string | undefined;
|
|
90
92
|
credential_id?: string | undefined;
|
|
@@ -1157,10 +1159,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1157
1159
|
invitee: {
|
|
1158
1160
|
email?: string | undefined;
|
|
1159
1161
|
};
|
|
1160
|
-
app_metadata?: Record<string, any> | undefined;
|
|
1161
|
-
user_metadata?: Record<string, any> | undefined;
|
|
1162
1162
|
id?: string | undefined;
|
|
1163
1163
|
connection_id?: string | undefined;
|
|
1164
|
+
app_metadata?: Record<string, any> | undefined;
|
|
1165
|
+
user_metadata?: Record<string, any> | undefined;
|
|
1164
1166
|
ttl_sec?: number | undefined;
|
|
1165
1167
|
roles?: string[] | undefined;
|
|
1166
1168
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1345,8 +1347,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1345
1347
|
};
|
|
1346
1348
|
} & {
|
|
1347
1349
|
json: {
|
|
1348
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1349
1350
|
show_as_button?: boolean | undefined;
|
|
1351
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1350
1352
|
is_signup_enabled?: boolean | undefined;
|
|
1351
1353
|
};
|
|
1352
1354
|
};
|
|
@@ -2012,7 +2014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2012
2014
|
type: "REDIRECT";
|
|
2013
2015
|
action: "REDIRECT_USER";
|
|
2014
2016
|
params: {
|
|
2015
|
-
target: "custom" | "
|
|
2017
|
+
target: "custom" | "account" | "change-email";
|
|
2016
2018
|
custom_url?: string | undefined;
|
|
2017
2019
|
};
|
|
2018
2020
|
alias?: string | undefined;
|
|
@@ -2065,7 +2067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2065
2067
|
type: "REDIRECT";
|
|
2066
2068
|
action: "REDIRECT_USER";
|
|
2067
2069
|
params: {
|
|
2068
|
-
target: "custom" | "
|
|
2070
|
+
target: "custom" | "account" | "change-email";
|
|
2069
2071
|
custom_url?: string | undefined;
|
|
2070
2072
|
};
|
|
2071
2073
|
alias?: string | undefined;
|
|
@@ -2133,7 +2135,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2133
2135
|
type: "REDIRECT";
|
|
2134
2136
|
action: "REDIRECT_USER";
|
|
2135
2137
|
params: {
|
|
2136
|
-
target: "custom" | "
|
|
2138
|
+
target: "custom" | "account" | "change-email";
|
|
2137
2139
|
custom_url?: string | undefined;
|
|
2138
2140
|
};
|
|
2139
2141
|
alias?: string | undefined;
|
|
@@ -2214,7 +2216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2214
2216
|
type: "REDIRECT";
|
|
2215
2217
|
action: "REDIRECT_USER";
|
|
2216
2218
|
params: {
|
|
2217
|
-
target: "custom" | "
|
|
2219
|
+
target: "custom" | "account" | "change-email";
|
|
2218
2220
|
custom_url?: string | undefined;
|
|
2219
2221
|
};
|
|
2220
2222
|
alias?: string | undefined;
|
|
@@ -2262,7 +2264,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2262
2264
|
type: "REDIRECT";
|
|
2263
2265
|
action: "REDIRECT_USER";
|
|
2264
2266
|
params: {
|
|
2265
|
-
target: "custom" | "
|
|
2267
|
+
target: "custom" | "account" | "change-email";
|
|
2266
2268
|
custom_url?: string | undefined;
|
|
2267
2269
|
};
|
|
2268
2270
|
alias?: string | undefined;
|
|
@@ -2322,7 +2324,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2322
2324
|
type: "REDIRECT";
|
|
2323
2325
|
action: "REDIRECT_USER";
|
|
2324
2326
|
params: {
|
|
2325
|
-
target: "custom" | "
|
|
2327
|
+
target: "custom" | "account" | "change-email";
|
|
2326
2328
|
custom_url?: string | undefined;
|
|
2327
2329
|
};
|
|
2328
2330
|
alias?: string | undefined;
|
|
@@ -2370,7 +2372,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2370
2372
|
type: "REDIRECT";
|
|
2371
2373
|
action: "REDIRECT_USER";
|
|
2372
2374
|
params: {
|
|
2373
|
-
target: "custom" | "
|
|
2375
|
+
target: "custom" | "account" | "change-email";
|
|
2374
2376
|
custom_url?: string | undefined;
|
|
2375
2377
|
};
|
|
2376
2378
|
alias?: string | undefined;
|
|
@@ -6648,7 +6650,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6648
6650
|
};
|
|
6649
6651
|
};
|
|
6650
6652
|
output: {
|
|
6651
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
6653
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6652
6654
|
language: string;
|
|
6653
6655
|
}[];
|
|
6654
6656
|
outputFormat: "json";
|
|
@@ -6686,7 +6688,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6686
6688
|
$get: {
|
|
6687
6689
|
input: {
|
|
6688
6690
|
param: {
|
|
6689
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
6691
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6690
6692
|
language: string;
|
|
6691
6693
|
};
|
|
6692
6694
|
} & {
|
|
@@ -6708,7 +6710,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6708
6710
|
$put: {
|
|
6709
6711
|
input: {
|
|
6710
6712
|
param: {
|
|
6711
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
6713
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6712
6714
|
language: string;
|
|
6713
6715
|
};
|
|
6714
6716
|
} & {
|
|
@@ -6732,7 +6734,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6732
6734
|
$delete: {
|
|
6733
6735
|
input: {
|
|
6734
6736
|
param: {
|
|
6735
|
-
prompt: "status" | "login" | "mfa" | "organizations" | "
|
|
6737
|
+
prompt: "signup" | "status" | "login" | "mfa" | "organizations" | "email-verification" | "mfa-phone" | "invitation" | "email-otp-challenge" | "reset-password" | "mfa-login-options" | "consent" | "login-id" | "login-password" | "signup-id" | "signup-password" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless";
|
|
6736
6738
|
language: string;
|
|
6737
6739
|
};
|
|
6738
6740
|
} & {
|
|
@@ -8233,7 +8235,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8233
8235
|
log_type: string;
|
|
8234
8236
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8235
8237
|
actor: {
|
|
8236
|
-
type: "user" | "client_credentials" | "
|
|
8238
|
+
type: "user" | "client_credentials" | "api_key" | "system" | "admin";
|
|
8237
8239
|
id?: string | undefined;
|
|
8238
8240
|
email?: string | undefined;
|
|
8239
8241
|
org_id?: string | undefined;
|
|
@@ -8541,7 +8543,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8541
8543
|
created_at: string;
|
|
8542
8544
|
updated_at: string;
|
|
8543
8545
|
name: string;
|
|
8544
|
-
provider: "auth0" | "
|
|
8546
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8545
8547
|
connection: string;
|
|
8546
8548
|
enabled: boolean;
|
|
8547
8549
|
credentials: {
|
|
@@ -8573,7 +8575,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8573
8575
|
created_at: string;
|
|
8574
8576
|
updated_at: string;
|
|
8575
8577
|
name: string;
|
|
8576
|
-
provider: "auth0" | "
|
|
8578
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8577
8579
|
connection: string;
|
|
8578
8580
|
enabled: boolean;
|
|
8579
8581
|
credentials: {
|
|
@@ -8599,7 +8601,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8599
8601
|
} & {
|
|
8600
8602
|
json: {
|
|
8601
8603
|
name: string;
|
|
8602
|
-
provider: "auth0" | "
|
|
8604
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8603
8605
|
connection: string;
|
|
8604
8606
|
credentials: {
|
|
8605
8607
|
domain: string;
|
|
@@ -8616,7 +8618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8616
8618
|
created_at: string;
|
|
8617
8619
|
updated_at: string;
|
|
8618
8620
|
name: string;
|
|
8619
|
-
provider: "auth0" | "
|
|
8621
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8620
8622
|
connection: string;
|
|
8621
8623
|
enabled: boolean;
|
|
8622
8624
|
credentials: {
|
|
@@ -8647,7 +8649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8647
8649
|
json: {
|
|
8648
8650
|
id?: string | undefined;
|
|
8649
8651
|
name?: string | undefined;
|
|
8650
|
-
provider?: "auth0" | "
|
|
8652
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8651
8653
|
connection?: string | undefined;
|
|
8652
8654
|
enabled?: boolean | undefined;
|
|
8653
8655
|
credentials?: {
|
|
@@ -8663,7 +8665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8663
8665
|
created_at: string;
|
|
8664
8666
|
updated_at: string;
|
|
8665
8667
|
name: string;
|
|
8666
|
-
provider: "auth0" | "
|
|
8668
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8667
8669
|
connection: string;
|
|
8668
8670
|
enabled: boolean;
|
|
8669
8671
|
credentials: {
|
|
@@ -8881,7 +8883,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8881
8883
|
};
|
|
8882
8884
|
};
|
|
8883
8885
|
output: {
|
|
8884
|
-
type: "
|
|
8886
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8885
8887
|
date: string;
|
|
8886
8888
|
isMobile: boolean;
|
|
8887
8889
|
log_id: string;
|
|
@@ -8920,7 +8922,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8920
8922
|
limit: number;
|
|
8921
8923
|
length: number;
|
|
8922
8924
|
logs: {
|
|
8923
|
-
type: "
|
|
8925
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8924
8926
|
date: string;
|
|
8925
8927
|
isMobile: boolean;
|
|
8926
8928
|
log_id: string;
|
|
@@ -8974,7 +8976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8974
8976
|
};
|
|
8975
8977
|
};
|
|
8976
8978
|
output: {
|
|
8977
|
-
type: "
|
|
8979
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
8978
8980
|
date: string;
|
|
8979
8981
|
isMobile: boolean;
|
|
8980
8982
|
log_id: string;
|
|
@@ -9330,7 +9332,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9330
9332
|
client_id: string;
|
|
9331
9333
|
description?: string | undefined;
|
|
9332
9334
|
client_secret?: string | undefined;
|
|
9333
|
-
app_type?: "
|
|
9335
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9334
9336
|
logo_uri?: string | undefined;
|
|
9335
9337
|
callbacks?: string[] | undefined;
|
|
9336
9338
|
allowed_origins?: string[] | undefined;
|
|
@@ -9362,7 +9364,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9362
9364
|
addons?: {
|
|
9363
9365
|
[x: string]: any;
|
|
9364
9366
|
} | undefined;
|
|
9365
|
-
token_endpoint_auth_method?: "
|
|
9367
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9366
9368
|
client_metadata?: {
|
|
9367
9369
|
[x: string]: string;
|
|
9368
9370
|
} | undefined;
|
|
@@ -9426,7 +9428,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9426
9428
|
client_id: string;
|
|
9427
9429
|
description?: string | undefined;
|
|
9428
9430
|
client_secret?: string | undefined;
|
|
9429
|
-
app_type?: "
|
|
9431
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9430
9432
|
logo_uri?: string | undefined;
|
|
9431
9433
|
callbacks?: string[] | undefined;
|
|
9432
9434
|
allowed_origins?: string[] | undefined;
|
|
@@ -9458,7 +9460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9458
9460
|
addons?: {
|
|
9459
9461
|
[x: string]: any;
|
|
9460
9462
|
} | undefined;
|
|
9461
|
-
token_endpoint_auth_method?: "
|
|
9463
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9462
9464
|
client_metadata?: {
|
|
9463
9465
|
[x: string]: string;
|
|
9464
9466
|
} | undefined;
|
|
@@ -9537,7 +9539,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9537
9539
|
client_id: string;
|
|
9538
9540
|
description?: string | undefined;
|
|
9539
9541
|
client_secret?: string | undefined;
|
|
9540
|
-
app_type?: "
|
|
9542
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9541
9543
|
logo_uri?: string | undefined;
|
|
9542
9544
|
callbacks?: string[] | undefined;
|
|
9543
9545
|
allowed_origins?: string[] | undefined;
|
|
@@ -9569,7 +9571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9569
9571
|
addons?: {
|
|
9570
9572
|
[x: string]: any;
|
|
9571
9573
|
} | undefined;
|
|
9572
|
-
token_endpoint_auth_method?: "
|
|
9574
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9573
9575
|
client_metadata?: {
|
|
9574
9576
|
[x: string]: string;
|
|
9575
9577
|
} | undefined;
|
|
@@ -9652,7 +9654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9652
9654
|
description?: string | undefined;
|
|
9653
9655
|
global?: boolean | undefined;
|
|
9654
9656
|
client_secret?: string | undefined;
|
|
9655
|
-
app_type?: "
|
|
9657
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9656
9658
|
logo_uri?: string | undefined;
|
|
9657
9659
|
is_first_party?: boolean | undefined;
|
|
9658
9660
|
oidc_conformant?: boolean | undefined;
|
|
@@ -9679,7 +9681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9679
9681
|
custom_login_page_preview?: string | undefined;
|
|
9680
9682
|
form_template?: string | undefined;
|
|
9681
9683
|
addons?: Record<string, any> | undefined;
|
|
9682
|
-
token_endpoint_auth_method?: "
|
|
9684
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9683
9685
|
client_metadata?: Record<string, string> | undefined;
|
|
9684
9686
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9685
9687
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9727,7 +9729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9727
9729
|
client_id: string;
|
|
9728
9730
|
description?: string | undefined;
|
|
9729
9731
|
client_secret?: string | undefined;
|
|
9730
|
-
app_type?: "
|
|
9732
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9731
9733
|
logo_uri?: string | undefined;
|
|
9732
9734
|
callbacks?: string[] | undefined;
|
|
9733
9735
|
allowed_origins?: string[] | undefined;
|
|
@@ -9759,7 +9761,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9759
9761
|
addons?: {
|
|
9760
9762
|
[x: string]: any;
|
|
9761
9763
|
} | undefined;
|
|
9762
|
-
token_endpoint_auth_method?: "
|
|
9764
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9763
9765
|
client_metadata?: {
|
|
9764
9766
|
[x: string]: string;
|
|
9765
9767
|
} | undefined;
|
|
@@ -9821,7 +9823,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9821
9823
|
description?: string | undefined;
|
|
9822
9824
|
global?: boolean | undefined;
|
|
9823
9825
|
client_secret?: string | undefined;
|
|
9824
|
-
app_type?: "
|
|
9826
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9825
9827
|
logo_uri?: string | undefined;
|
|
9826
9828
|
is_first_party?: boolean | undefined;
|
|
9827
9829
|
oidc_conformant?: boolean | undefined;
|
|
@@ -9848,7 +9850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9848
9850
|
custom_login_page_preview?: string | undefined;
|
|
9849
9851
|
form_template?: string | undefined;
|
|
9850
9852
|
addons?: Record<string, any> | undefined;
|
|
9851
|
-
token_endpoint_auth_method?: "
|
|
9853
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9852
9854
|
client_metadata?: Record<string, string> | undefined;
|
|
9853
9855
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9854
9856
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9896,7 +9898,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9896
9898
|
client_id: string;
|
|
9897
9899
|
description?: string | undefined;
|
|
9898
9900
|
client_secret?: string | undefined;
|
|
9899
|
-
app_type?: "
|
|
9901
|
+
app_type?: "resource_server" | "native" | "spa" | "regular_web" | "non_interactive" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9900
9902
|
logo_uri?: string | undefined;
|
|
9901
9903
|
callbacks?: string[] | undefined;
|
|
9902
9904
|
allowed_origins?: string[] | undefined;
|
|
@@ -9928,7 +9930,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9928
9930
|
addons?: {
|
|
9929
9931
|
[x: string]: any;
|
|
9930
9932
|
} | undefined;
|
|
9931
|
-
token_endpoint_auth_method?: "
|
|
9933
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9932
9934
|
client_metadata?: {
|
|
9933
9935
|
[x: string]: string;
|
|
9934
9936
|
} | undefined;
|
|
@@ -11192,7 +11194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11192
11194
|
};
|
|
11193
11195
|
};
|
|
11194
11196
|
output: {
|
|
11195
|
-
type: "
|
|
11197
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11196
11198
|
date: string;
|
|
11197
11199
|
isMobile: boolean;
|
|
11198
11200
|
log_id: string;
|
|
@@ -11231,7 +11233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11231
11233
|
limit: number;
|
|
11232
11234
|
length: number;
|
|
11233
11235
|
logs: {
|
|
11234
|
-
type: "
|
|
11236
|
+
type: "fn" | "i" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11235
11237
|
date: string;
|
|
11236
11238
|
isMobile: boolean;
|
|
11237
11239
|
log_id: string;
|
|
@@ -11546,7 +11548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11546
11548
|
};
|
|
11547
11549
|
} & {
|
|
11548
11550
|
json: {
|
|
11549
|
-
template: "
|
|
11551
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11550
11552
|
body: string;
|
|
11551
11553
|
from: string;
|
|
11552
11554
|
subject: string;
|
|
@@ -11567,7 +11569,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11567
11569
|
};
|
|
11568
11570
|
} & {
|
|
11569
11571
|
json: {
|
|
11570
|
-
template: "
|
|
11572
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11571
11573
|
body: string;
|
|
11572
11574
|
from: string;
|
|
11573
11575
|
subject: string;
|
|
@@ -11579,7 +11581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11579
11581
|
};
|
|
11580
11582
|
};
|
|
11581
11583
|
output: {
|
|
11582
|
-
template: "
|
|
11584
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11583
11585
|
body: string;
|
|
11584
11586
|
from: string;
|
|
11585
11587
|
subject: string;
|
|
@@ -11602,7 +11604,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11602
11604
|
};
|
|
11603
11605
|
};
|
|
11604
11606
|
output: {
|
|
11605
|
-
name: "
|
|
11607
|
+
name: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11606
11608
|
body: string;
|
|
11607
11609
|
subject: string;
|
|
11608
11610
|
}[];
|
|
@@ -11615,7 +11617,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11615
11617
|
$get: {
|
|
11616
11618
|
input: {
|
|
11617
11619
|
param: {
|
|
11618
|
-
templateName: "
|
|
11620
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11619
11621
|
};
|
|
11620
11622
|
} & {
|
|
11621
11623
|
header: {
|
|
@@ -11628,7 +11630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11628
11630
|
} | {
|
|
11629
11631
|
input: {
|
|
11630
11632
|
param: {
|
|
11631
|
-
templateName: "
|
|
11633
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11632
11634
|
};
|
|
11633
11635
|
} & {
|
|
11634
11636
|
header: {
|
|
@@ -11636,7 +11638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11636
11638
|
};
|
|
11637
11639
|
};
|
|
11638
11640
|
output: {
|
|
11639
|
-
template: "
|
|
11641
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11640
11642
|
body: string;
|
|
11641
11643
|
from: string;
|
|
11642
11644
|
subject: string;
|
|
@@ -11655,7 +11657,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11655
11657
|
$put: {
|
|
11656
11658
|
input: {
|
|
11657
11659
|
param: {
|
|
11658
|
-
templateName: "
|
|
11660
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11659
11661
|
};
|
|
11660
11662
|
} & {
|
|
11661
11663
|
header: {
|
|
@@ -11663,7 +11665,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11663
11665
|
};
|
|
11664
11666
|
} & {
|
|
11665
11667
|
json: {
|
|
11666
|
-
template: "
|
|
11668
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11667
11669
|
body: string;
|
|
11668
11670
|
subject: string;
|
|
11669
11671
|
syntax?: "liquid" | undefined;
|
|
@@ -11675,7 +11677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11675
11677
|
};
|
|
11676
11678
|
};
|
|
11677
11679
|
output: {
|
|
11678
|
-
template: "
|
|
11680
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11679
11681
|
body: string;
|
|
11680
11682
|
from: string;
|
|
11681
11683
|
subject: string;
|
|
@@ -11694,7 +11696,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11694
11696
|
$patch: {
|
|
11695
11697
|
input: {
|
|
11696
11698
|
param: {
|
|
11697
|
-
templateName: "
|
|
11699
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11698
11700
|
};
|
|
11699
11701
|
} & {
|
|
11700
11702
|
header: {
|
|
@@ -11702,7 +11704,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11702
11704
|
};
|
|
11703
11705
|
} & {
|
|
11704
11706
|
json: {
|
|
11705
|
-
template?: "
|
|
11707
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11706
11708
|
body?: string | undefined;
|
|
11707
11709
|
from?: string | undefined;
|
|
11708
11710
|
subject?: string | undefined;
|
|
@@ -11719,7 +11721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11719
11721
|
} | {
|
|
11720
11722
|
input: {
|
|
11721
11723
|
param: {
|
|
11722
|
-
templateName: "
|
|
11724
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11723
11725
|
};
|
|
11724
11726
|
} & {
|
|
11725
11727
|
header: {
|
|
@@ -11727,7 +11729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11727
11729
|
};
|
|
11728
11730
|
} & {
|
|
11729
11731
|
json: {
|
|
11730
|
-
template?: "
|
|
11732
|
+
template?: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11731
11733
|
body?: string | undefined;
|
|
11732
11734
|
from?: string | undefined;
|
|
11733
11735
|
subject?: string | undefined;
|
|
@@ -11739,7 +11741,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11739
11741
|
};
|
|
11740
11742
|
};
|
|
11741
11743
|
output: {
|
|
11742
|
-
template: "
|
|
11744
|
+
template: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11743
11745
|
body: string;
|
|
11744
11746
|
from: string;
|
|
11745
11747
|
subject: string;
|
|
@@ -11758,7 +11760,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11758
11760
|
$delete: {
|
|
11759
11761
|
input: {
|
|
11760
11762
|
param: {
|
|
11761
|
-
templateName: "
|
|
11763
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11762
11764
|
};
|
|
11763
11765
|
} & {
|
|
11764
11766
|
header: {
|
|
@@ -11771,7 +11773,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11771
11773
|
} | {
|
|
11772
11774
|
input: {
|
|
11773
11775
|
param: {
|
|
11774
|
-
templateName: "
|
|
11776
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11775
11777
|
};
|
|
11776
11778
|
} & {
|
|
11777
11779
|
header: {
|
|
@@ -11788,7 +11790,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11788
11790
|
$post: {
|
|
11789
11791
|
input: {
|
|
11790
11792
|
param: {
|
|
11791
|
-
templateName: "
|
|
11793
|
+
templateName: "password_reset" | "verify_email" | "change_password" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11792
11794
|
};
|
|
11793
11795
|
} & {
|
|
11794
11796
|
header: {
|
|
@@ -12071,9 +12073,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12071
12073
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12072
12074
|
custom_domain_id: string;
|
|
12073
12075
|
primary: boolean;
|
|
12074
|
-
status: "
|
|
12076
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12075
12077
|
verification_method?: "txt" | undefined;
|
|
12076
|
-
custom_client_ip_header?: "null" | "
|
|
12078
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12077
12079
|
domain_metadata?: {
|
|
12078
12080
|
[x: string]: string;
|
|
12079
12081
|
} | undefined;
|
|
@@ -12112,9 +12114,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12114
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12113
12115
|
custom_domain_id: string;
|
|
12114
12116
|
primary: boolean;
|
|
12115
|
-
status: "
|
|
12117
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12116
12118
|
verification_method?: "txt" | undefined;
|
|
12117
|
-
custom_client_ip_header?: "null" | "
|
|
12119
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12118
12120
|
domain_metadata?: {
|
|
12119
12121
|
[x: string]: string;
|
|
12120
12122
|
} | undefined;
|
|
@@ -12167,7 +12169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12167
12169
|
} & {
|
|
12168
12170
|
json: {
|
|
12169
12171
|
tls_policy?: "recommended" | undefined;
|
|
12170
|
-
custom_client_ip_header?: "null" | "
|
|
12172
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12171
12173
|
domain_metadata?: Record<string, string> | undefined;
|
|
12172
12174
|
};
|
|
12173
12175
|
};
|
|
@@ -12176,9 +12178,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12178
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12177
12179
|
custom_domain_id: string;
|
|
12178
12180
|
primary: boolean;
|
|
12179
|
-
status: "
|
|
12181
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12180
12182
|
verification_method?: "txt" | undefined;
|
|
12181
|
-
custom_client_ip_header?: "null" | "
|
|
12183
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12182
12184
|
domain_metadata?: {
|
|
12183
12185
|
[x: string]: string;
|
|
12184
12186
|
} | undefined;
|
|
@@ -12214,7 +12216,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12214
12216
|
custom_domain_id?: string | undefined;
|
|
12215
12217
|
verification_method?: "txt" | undefined;
|
|
12216
12218
|
tls_policy?: "recommended" | undefined;
|
|
12217
|
-
custom_client_ip_header?: "null" | "
|
|
12219
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12218
12220
|
domain_metadata?: Record<string, string> | undefined;
|
|
12219
12221
|
};
|
|
12220
12222
|
};
|
|
@@ -12223,9 +12225,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12223
12225
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12224
12226
|
custom_domain_id: string;
|
|
12225
12227
|
primary: boolean;
|
|
12226
|
-
status: "
|
|
12228
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12227
12229
|
verification_method?: "txt" | undefined;
|
|
12228
|
-
custom_client_ip_header?: "null" | "
|
|
12230
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12229
12231
|
domain_metadata?: {
|
|
12230
12232
|
[x: string]: string;
|
|
12231
12233
|
} | undefined;
|
|
@@ -12269,9 +12271,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12269
12271
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12270
12272
|
custom_domain_id: string;
|
|
12271
12273
|
primary: boolean;
|
|
12272
|
-
status: "
|
|
12274
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12273
12275
|
verification_method?: "txt" | undefined;
|
|
12274
|
-
custom_client_ip_header?: "null" | "
|
|
12276
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12275
12277
|
domain_metadata?: {
|
|
12276
12278
|
[x: string]: string;
|
|
12277
12279
|
} | undefined;
|
|
@@ -12310,9 +12312,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12310
12312
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12311
12313
|
custom_domain_id: string;
|
|
12312
12314
|
primary: boolean;
|
|
12313
|
-
status: "
|
|
12315
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12314
12316
|
verification_method?: "txt" | undefined;
|
|
12315
|
-
custom_client_ip_header?: "null" | "
|
|
12317
|
+
custom_client_ip_header?: "null" | "x-forwarded-for" | "cf-connecting-ip" | "true-client-ip" | "x-azure-clientip" | undefined;
|
|
12316
12318
|
domain_metadata?: {
|
|
12317
12319
|
[x: string]: string;
|
|
12318
12320
|
} | undefined;
|
|
@@ -12795,7 +12797,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12795
12797
|
json: {
|
|
12796
12798
|
bindings: {
|
|
12797
12799
|
ref: {
|
|
12798
|
-
type?: "
|
|
12800
|
+
type?: "action_id" | "action_name" | undefined;
|
|
12799
12801
|
value?: string | undefined;
|
|
12800
12802
|
id?: string | undefined;
|
|
12801
12803
|
name?: string | undefined;
|
|
@@ -12917,7 +12919,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12917
12919
|
logs: {
|
|
12918
12920
|
action_name: string;
|
|
12919
12921
|
lines: {
|
|
12920
|
-
level: "log" | "error" | "info" | "
|
|
12922
|
+
level: "log" | "error" | "info" | "debug" | "warn";
|
|
12921
12923
|
message: string;
|
|
12922
12924
|
}[];
|
|
12923
12925
|
}[];
|
|
@@ -13584,7 +13586,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13584
13586
|
args: import("hono/utils/types").JSONValue[];
|
|
13585
13587
|
}[];
|
|
13586
13588
|
logs: {
|
|
13587
|
-
level: "log" | "error" | "info" | "
|
|
13589
|
+
level: "log" | "error" | "info" | "debug" | "warn";
|
|
13588
13590
|
message: string;
|
|
13589
13591
|
}[];
|
|
13590
13592
|
error?: string | undefined;
|
|
@@ -13882,7 +13884,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13882
13884
|
scope?: string | undefined;
|
|
13883
13885
|
grant_types?: string[] | undefined;
|
|
13884
13886
|
response_types?: string[] | undefined;
|
|
13885
|
-
token_endpoint_auth_method?: "
|
|
13887
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13886
13888
|
jwks_uri?: string | undefined;
|
|
13887
13889
|
jwks?: Record<string, unknown> | undefined;
|
|
13888
13890
|
software_id?: string | undefined;
|
|
@@ -13971,7 +13973,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13971
13973
|
scope?: string | undefined;
|
|
13972
13974
|
grant_types?: string[] | undefined;
|
|
13973
13975
|
response_types?: string[] | undefined;
|
|
13974
|
-
token_endpoint_auth_method?: "
|
|
13976
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13975
13977
|
jwks_uri?: string | undefined;
|
|
13976
13978
|
jwks?: Record<string, unknown> | undefined;
|
|
13977
13979
|
software_id?: string | undefined;
|
|
@@ -14028,7 +14030,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14028
14030
|
client_id: string;
|
|
14029
14031
|
redirect_url?: string | undefined;
|
|
14030
14032
|
login_hint?: string | undefined;
|
|
14031
|
-
screen_hint?: "
|
|
14033
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
14032
14034
|
};
|
|
14033
14035
|
};
|
|
14034
14036
|
output: {};
|
|
@@ -14040,7 +14042,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14040
14042
|
client_id: string;
|
|
14041
14043
|
redirect_url?: string | undefined;
|
|
14042
14044
|
login_hint?: string | undefined;
|
|
14043
|
-
screen_hint?: "
|
|
14045
|
+
screen_hint?: "account" | "change-email" | "change-phone" | "change-password" | undefined;
|
|
14044
14046
|
};
|
|
14045
14047
|
};
|
|
14046
14048
|
output: {
|
|
@@ -14317,19 +14319,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14317
14319
|
email: string;
|
|
14318
14320
|
send: "code" | "link";
|
|
14319
14321
|
authParams: {
|
|
14320
|
-
username?: string | undefined;
|
|
14321
14322
|
state?: string | undefined;
|
|
14322
|
-
act_as?: string | undefined;
|
|
14323
14323
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14324
14324
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14325
|
+
scope?: string | undefined;
|
|
14326
|
+
username?: string | undefined;
|
|
14327
|
+
nonce?: string | undefined;
|
|
14328
|
+
organization?: string | undefined;
|
|
14329
|
+
code_challenge?: string | undefined;
|
|
14330
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14325
14331
|
redirect_uri?: string | undefined;
|
|
14332
|
+
act_as?: string | undefined;
|
|
14326
14333
|
audience?: string | undefined;
|
|
14327
|
-
organization?: string | undefined;
|
|
14328
|
-
nonce?: string | undefined;
|
|
14329
|
-
scope?: string | undefined;
|
|
14330
14334
|
prompt?: string | undefined;
|
|
14331
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14332
|
-
code_challenge?: string | undefined;
|
|
14333
14335
|
ui_locales?: string | undefined;
|
|
14334
14336
|
max_age?: number | undefined;
|
|
14335
14337
|
acr_values?: string | undefined;
|
|
@@ -14353,19 +14355,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14353
14355
|
phone_number: string;
|
|
14354
14356
|
send: "code" | "link";
|
|
14355
14357
|
authParams: {
|
|
14356
|
-
username?: string | undefined;
|
|
14357
14358
|
state?: string | undefined;
|
|
14358
|
-
act_as?: string | undefined;
|
|
14359
14359
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14360
14360
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14361
|
+
scope?: string | undefined;
|
|
14362
|
+
username?: string | undefined;
|
|
14363
|
+
nonce?: string | undefined;
|
|
14364
|
+
organization?: string | undefined;
|
|
14365
|
+
code_challenge?: string | undefined;
|
|
14366
|
+
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14361
14367
|
redirect_uri?: string | undefined;
|
|
14368
|
+
act_as?: string | undefined;
|
|
14362
14369
|
audience?: string | undefined;
|
|
14363
|
-
organization?: string | undefined;
|
|
14364
|
-
nonce?: string | undefined;
|
|
14365
|
-
scope?: string | undefined;
|
|
14366
14370
|
prompt?: string | undefined;
|
|
14367
|
-
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14368
|
-
code_challenge?: string | undefined;
|
|
14369
14371
|
ui_locales?: string | undefined;
|
|
14370
14372
|
max_age?: number | undefined;
|
|
14371
14373
|
acr_values?: string | undefined;
|
|
@@ -14497,14 +14499,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14497
14499
|
input: {
|
|
14498
14500
|
form: {
|
|
14499
14501
|
token: string;
|
|
14500
|
-
token_type_hint?: "
|
|
14502
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14501
14503
|
client_id?: string | undefined;
|
|
14502
14504
|
client_secret?: string | undefined;
|
|
14503
14505
|
};
|
|
14504
14506
|
} & {
|
|
14505
14507
|
json: {
|
|
14506
14508
|
token: string;
|
|
14507
|
-
token_type_hint?: "
|
|
14509
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14508
14510
|
client_id?: string | undefined;
|
|
14509
14511
|
client_secret?: string | undefined;
|
|
14510
14512
|
};
|
|
@@ -14516,14 +14518,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14516
14518
|
input: {
|
|
14517
14519
|
form: {
|
|
14518
14520
|
token: string;
|
|
14519
|
-
token_type_hint?: "
|
|
14521
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14520
14522
|
client_id?: string | undefined;
|
|
14521
14523
|
client_secret?: string | undefined;
|
|
14522
14524
|
};
|
|
14523
14525
|
} & {
|
|
14524
14526
|
json: {
|
|
14525
14527
|
token: string;
|
|
14526
|
-
token_type_hint?: "
|
|
14528
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14527
14529
|
client_id?: string | undefined;
|
|
14528
14530
|
client_secret?: string | undefined;
|
|
14529
14531
|
};
|
|
@@ -14538,14 +14540,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14538
14540
|
input: {
|
|
14539
14541
|
form: {
|
|
14540
14542
|
token: string;
|
|
14541
|
-
token_type_hint?: "
|
|
14543
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14542
14544
|
client_id?: string | undefined;
|
|
14543
14545
|
client_secret?: string | undefined;
|
|
14544
14546
|
};
|
|
14545
14547
|
} & {
|
|
14546
14548
|
json: {
|
|
14547
14549
|
token: string;
|
|
14548
|
-
token_type_hint?: "
|
|
14550
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
14549
14551
|
client_id?: string | undefined;
|
|
14550
14552
|
client_secret?: string | undefined;
|
|
14551
14553
|
};
|
|
@@ -16272,7 +16274,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16272
16274
|
$get: {
|
|
16273
16275
|
input: {
|
|
16274
16276
|
param: {
|
|
16275
|
-
screen: "
|
|
16277
|
+
screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "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";
|
|
16276
16278
|
};
|
|
16277
16279
|
} & {
|
|
16278
16280
|
query: {
|
|
@@ -16288,7 +16290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16288
16290
|
} | {
|
|
16289
16291
|
input: {
|
|
16290
16292
|
param: {
|
|
16291
|
-
screen: "
|
|
16293
|
+
screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "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";
|
|
16292
16294
|
};
|
|
16293
16295
|
} & {
|
|
16294
16296
|
query: {
|
|
@@ -16304,7 +16306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16304
16306
|
} | {
|
|
16305
16307
|
input: {
|
|
16306
16308
|
param: {
|
|
16307
|
-
screen: "
|
|
16309
|
+
screen: "signup" | "login" | "account" | "enter-password" | "reset-password" | "impersonate" | "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";
|
|
16308
16310
|
};
|
|
16309
16311
|
} & {
|
|
16310
16312
|
query: {
|
|
@@ -16324,7 +16326,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16324
16326
|
$post: {
|
|
16325
16327
|
input: {
|
|
16326
16328
|
param: {
|
|
16327
|
-
screen: "
|
|
16329
|
+
screen: "signup" | "login" | "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";
|
|
16328
16330
|
};
|
|
16329
16331
|
} & {
|
|
16330
16332
|
query: {
|
|
@@ -16342,7 +16344,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16342
16344
|
} | {
|
|
16343
16345
|
input: {
|
|
16344
16346
|
param: {
|
|
16345
|
-
screen: "
|
|
16347
|
+
screen: "signup" | "login" | "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";
|
|
16346
16348
|
};
|
|
16347
16349
|
} & {
|
|
16348
16350
|
query: {
|
|
@@ -16360,7 +16362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16360
16362
|
} | {
|
|
16361
16363
|
input: {
|
|
16362
16364
|
param: {
|
|
16363
|
-
screen: "
|
|
16365
|
+
screen: "signup" | "login" | "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";
|
|
16364
16366
|
};
|
|
16365
16367
|
} & {
|
|
16366
16368
|
query: {
|