authhero 8.1.0 → 8.2.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 +215 -215
- package/dist/authhero.d.ts +96 -89
- package/dist/authhero.mjs +9007 -8979
- package/dist/{passkey-enrollment-Dw1ObR65.mjs → passkey-enrollment-Ba_8I87G.mjs} +1 -5
- package/dist/passkey-enrollment-CB7HjMH_.js +1 -0
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +18 -10
- package/dist/types/authentication-flows/connection.d.ts +2 -2
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +85 -85
- package/dist/types/middlewares/tenant.d.ts +11 -4
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +3 -3
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- 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/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +61 -61
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +1 -1
- 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 +2 -2
- 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/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +3 -3
- package/dist/passkey-enrollment-DKWsGt-K.js +0 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -2397,10 +2397,17 @@ interface SeedResult {
|
|
|
2397
2397
|
declare function seed(adapters: DataAdapters, options: SeedOptions): Promise<SeedResult>;
|
|
2398
2398
|
|
|
2399
2399
|
/**
|
|
2400
|
-
* Sets the tenant id in the context based on the url and headers
|
|
2401
|
-
*
|
|
2402
|
-
*
|
|
2403
|
-
*
|
|
2400
|
+
* Sets the tenant id in the context based on the url and headers.
|
|
2401
|
+
*
|
|
2402
|
+
* Resolution order:
|
|
2403
|
+
* 1. Authenticated user's tenant
|
|
2404
|
+
* 2. `tenant-id` header (API calls)
|
|
2405
|
+
* 3. Tenant subdomain of the ISSUER apex — `{tenant_id}.{issuerHost}` carries
|
|
2406
|
+
* the tenant id in the host itself, zero lookups
|
|
2407
|
+
* 4. Custom domain lookup (hosts outside the ISSUER apex)
|
|
2408
|
+
* 5. `tenant_id` query param (enrollment ticket URLs)
|
|
2409
|
+
* 6. Single-tenant auto-detect (skipped for state-keyed routes and for
|
|
2410
|
+
* /authorize with a registered client_id)
|
|
2404
2411
|
*/
|
|
2405
2412
|
declare function tenantMiddleware(ctx: Context<{
|
|
2406
2413
|
Bindings: Bindings;
|
|
@@ -2724,7 +2731,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2724
2731
|
};
|
|
2725
2732
|
} & {
|
|
2726
2733
|
json: {
|
|
2727
|
-
type: "email" | "
|
|
2734
|
+
type: "email" | "passkey" | "push" | "phone" | "webauthn-roaming" | "webauthn-platform" | "totp";
|
|
2728
2735
|
phone_number?: string | undefined;
|
|
2729
2736
|
totp_secret?: string | undefined;
|
|
2730
2737
|
credential_id?: string | undefined;
|
|
@@ -2864,7 +2871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
2864
2871
|
};
|
|
2865
2872
|
};
|
|
2866
2873
|
output: {
|
|
2867
|
-
name: "email" | "
|
|
2874
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
2868
2875
|
enabled: boolean;
|
|
2869
2876
|
trial_expired?: boolean | undefined;
|
|
2870
2877
|
}[];
|
|
@@ -3019,7 +3026,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3019
3026
|
$get: {
|
|
3020
3027
|
input: {
|
|
3021
3028
|
param: {
|
|
3022
|
-
factor_name: "email" | "
|
|
3029
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3023
3030
|
};
|
|
3024
3031
|
} & {
|
|
3025
3032
|
header: {
|
|
@@ -3027,7 +3034,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3027
3034
|
};
|
|
3028
3035
|
};
|
|
3029
3036
|
output: {
|
|
3030
|
-
name: "email" | "
|
|
3037
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3031
3038
|
enabled: boolean;
|
|
3032
3039
|
trial_expired?: boolean | undefined;
|
|
3033
3040
|
};
|
|
@@ -3040,7 +3047,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3040
3047
|
$put: {
|
|
3041
3048
|
input: {
|
|
3042
3049
|
param: {
|
|
3043
|
-
factor_name: "email" | "
|
|
3050
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3044
3051
|
};
|
|
3045
3052
|
} & {
|
|
3046
3053
|
header: {
|
|
@@ -3052,7 +3059,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3052
3059
|
};
|
|
3053
3060
|
};
|
|
3054
3061
|
output: {
|
|
3055
|
-
name: "email" | "
|
|
3062
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3056
3063
|
enabled: boolean;
|
|
3057
3064
|
trial_expired?: boolean | undefined;
|
|
3058
3065
|
};
|
|
@@ -3797,9 +3804,9 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3797
3804
|
invitee: {
|
|
3798
3805
|
email?: string | undefined;
|
|
3799
3806
|
};
|
|
3807
|
+
id?: string | undefined;
|
|
3800
3808
|
app_metadata?: Record<string, any> | undefined;
|
|
3801
3809
|
user_metadata?: Record<string, any> | undefined;
|
|
3802
|
-
id?: string | undefined;
|
|
3803
3810
|
connection_id?: string | undefined;
|
|
3804
3811
|
roles?: string[] | undefined;
|
|
3805
3812
|
ttl_sec?: number | undefined;
|
|
@@ -4652,7 +4659,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4652
4659
|
type: "REDIRECT";
|
|
4653
4660
|
action: "REDIRECT_USER";
|
|
4654
4661
|
params: {
|
|
4655
|
-
target: "custom" | "
|
|
4662
|
+
target: "custom" | "change-email" | "account";
|
|
4656
4663
|
custom_url?: string | undefined;
|
|
4657
4664
|
};
|
|
4658
4665
|
alias?: string | undefined;
|
|
@@ -4705,7 +4712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4705
4712
|
type: "REDIRECT";
|
|
4706
4713
|
action: "REDIRECT_USER";
|
|
4707
4714
|
params: {
|
|
4708
|
-
target: "custom" | "
|
|
4715
|
+
target: "custom" | "change-email" | "account";
|
|
4709
4716
|
custom_url?: string | undefined;
|
|
4710
4717
|
};
|
|
4711
4718
|
alias?: string | undefined;
|
|
@@ -4773,7 +4780,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4773
4780
|
type: "REDIRECT";
|
|
4774
4781
|
action: "REDIRECT_USER";
|
|
4775
4782
|
params: {
|
|
4776
|
-
target: "custom" | "
|
|
4783
|
+
target: "custom" | "change-email" | "account";
|
|
4777
4784
|
custom_url?: string | undefined;
|
|
4778
4785
|
};
|
|
4779
4786
|
alias?: string | undefined;
|
|
@@ -4854,7 +4861,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4854
4861
|
type: "REDIRECT";
|
|
4855
4862
|
action: "REDIRECT_USER";
|
|
4856
4863
|
params: {
|
|
4857
|
-
target: "custom" | "
|
|
4864
|
+
target: "custom" | "change-email" | "account";
|
|
4858
4865
|
custom_url?: string | undefined;
|
|
4859
4866
|
};
|
|
4860
4867
|
alias?: string | undefined;
|
|
@@ -4902,7 +4909,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4902
4909
|
type: "REDIRECT";
|
|
4903
4910
|
action: "REDIRECT_USER";
|
|
4904
4911
|
params: {
|
|
4905
|
-
target: "custom" | "
|
|
4912
|
+
target: "custom" | "change-email" | "account";
|
|
4906
4913
|
custom_url?: string | undefined;
|
|
4907
4914
|
};
|
|
4908
4915
|
alias?: string | undefined;
|
|
@@ -4962,7 +4969,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4962
4969
|
type: "REDIRECT";
|
|
4963
4970
|
action: "REDIRECT_USER";
|
|
4964
4971
|
params: {
|
|
4965
|
-
target: "custom" | "
|
|
4972
|
+
target: "custom" | "change-email" | "account";
|
|
4966
4973
|
custom_url?: string | undefined;
|
|
4967
4974
|
};
|
|
4968
4975
|
alias?: string | undefined;
|
|
@@ -5010,7 +5017,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5010
5017
|
type: "REDIRECT";
|
|
5011
5018
|
action: "REDIRECT_USER";
|
|
5012
5019
|
params: {
|
|
5013
|
-
target: "custom" | "
|
|
5020
|
+
target: "custom" | "change-email" | "account";
|
|
5014
5021
|
custom_url?: string | undefined;
|
|
5015
5022
|
};
|
|
5016
5023
|
alias?: string | undefined;
|
|
@@ -9288,7 +9295,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9288
9295
|
};
|
|
9289
9296
|
};
|
|
9290
9297
|
output: {
|
|
9291
|
-
prompt: "
|
|
9298
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9292
9299
|
language: string;
|
|
9293
9300
|
}[];
|
|
9294
9301
|
outputFormat: "json";
|
|
@@ -9326,7 +9333,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9326
9333
|
$get: {
|
|
9327
9334
|
input: {
|
|
9328
9335
|
param: {
|
|
9329
|
-
prompt: "
|
|
9336
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9330
9337
|
language: string;
|
|
9331
9338
|
};
|
|
9332
9339
|
} & {
|
|
@@ -9348,7 +9355,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9348
9355
|
$put: {
|
|
9349
9356
|
input: {
|
|
9350
9357
|
param: {
|
|
9351
|
-
prompt: "
|
|
9358
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9352
9359
|
language: string;
|
|
9353
9360
|
};
|
|
9354
9361
|
} & {
|
|
@@ -9372,7 +9379,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9372
9379
|
$delete: {
|
|
9373
9380
|
input: {
|
|
9374
9381
|
param: {
|
|
9375
|
-
prompt: "
|
|
9382
|
+
prompt: "signup" | "status" | "mfa" | "organizations" | "login" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
9376
9383
|
language: string;
|
|
9377
9384
|
};
|
|
9378
9385
|
} & {
|
|
@@ -10873,7 +10880,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
10873
10880
|
log_type: string;
|
|
10874
10881
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
10875
10882
|
actor: {
|
|
10876
|
-
type: "
|
|
10883
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
10877
10884
|
id?: string | undefined;
|
|
10878
10885
|
email?: string | undefined;
|
|
10879
10886
|
org_id?: string | undefined;
|
|
@@ -11181,7 +11188,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11181
11188
|
created_at: string;
|
|
11182
11189
|
updated_at: string;
|
|
11183
11190
|
name: string;
|
|
11184
|
-
provider: "auth0" | "
|
|
11191
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11185
11192
|
connection: string;
|
|
11186
11193
|
enabled: boolean;
|
|
11187
11194
|
credentials: {
|
|
@@ -11213,7 +11220,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11213
11220
|
created_at: string;
|
|
11214
11221
|
updated_at: string;
|
|
11215
11222
|
name: string;
|
|
11216
|
-
provider: "auth0" | "
|
|
11223
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11217
11224
|
connection: string;
|
|
11218
11225
|
enabled: boolean;
|
|
11219
11226
|
credentials: {
|
|
@@ -11239,7 +11246,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11239
11246
|
} & {
|
|
11240
11247
|
json: {
|
|
11241
11248
|
name: string;
|
|
11242
|
-
provider: "auth0" | "
|
|
11249
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11243
11250
|
connection: string;
|
|
11244
11251
|
credentials: {
|
|
11245
11252
|
domain: string;
|
|
@@ -11256,7 +11263,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11256
11263
|
created_at: string;
|
|
11257
11264
|
updated_at: string;
|
|
11258
11265
|
name: string;
|
|
11259
|
-
provider: "auth0" | "
|
|
11266
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11260
11267
|
connection: string;
|
|
11261
11268
|
enabled: boolean;
|
|
11262
11269
|
credentials: {
|
|
@@ -11287,7 +11294,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11287
11294
|
json: {
|
|
11288
11295
|
id?: string | undefined;
|
|
11289
11296
|
name?: string | undefined;
|
|
11290
|
-
provider?: "auth0" | "
|
|
11297
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11291
11298
|
connection?: string | undefined;
|
|
11292
11299
|
enabled?: boolean | undefined;
|
|
11293
11300
|
credentials?: {
|
|
@@ -11303,7 +11310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11303
11310
|
created_at: string;
|
|
11304
11311
|
updated_at: string;
|
|
11305
11312
|
name: string;
|
|
11306
|
-
provider: "auth0" | "
|
|
11313
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11307
11314
|
connection: string;
|
|
11308
11315
|
enabled: boolean;
|
|
11309
11316
|
credentials: {
|
|
@@ -11521,7 +11528,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11521
11528
|
};
|
|
11522
11529
|
};
|
|
11523
11530
|
output: {
|
|
11524
|
-
type: "
|
|
11531
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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";
|
|
11525
11532
|
date: string;
|
|
11526
11533
|
isMobile: boolean;
|
|
11527
11534
|
log_id: string;
|
|
@@ -11560,7 +11567,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11560
11567
|
limit: number;
|
|
11561
11568
|
length: number;
|
|
11562
11569
|
logs: {
|
|
11563
|
-
type: "
|
|
11570
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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";
|
|
11564
11571
|
date: string;
|
|
11565
11572
|
isMobile: boolean;
|
|
11566
11573
|
log_id: string;
|
|
@@ -11614,7 +11621,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11614
11621
|
};
|
|
11615
11622
|
};
|
|
11616
11623
|
output: {
|
|
11617
|
-
type: "
|
|
11624
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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";
|
|
11618
11625
|
date: string;
|
|
11619
11626
|
isMobile: boolean;
|
|
11620
11627
|
log_id: string;
|
|
@@ -12002,7 +12009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12002
12009
|
addons?: {
|
|
12003
12010
|
[x: string]: any;
|
|
12004
12011
|
} | undefined;
|
|
12005
|
-
token_endpoint_auth_method?: "
|
|
12012
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12006
12013
|
client_metadata?: {
|
|
12007
12014
|
[x: string]: string;
|
|
12008
12015
|
} | undefined;
|
|
@@ -12098,7 +12105,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12098
12105
|
addons?: {
|
|
12099
12106
|
[x: string]: any;
|
|
12100
12107
|
} | undefined;
|
|
12101
|
-
token_endpoint_auth_method?: "
|
|
12108
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12102
12109
|
client_metadata?: {
|
|
12103
12110
|
[x: string]: string;
|
|
12104
12111
|
} | undefined;
|
|
@@ -12209,7 +12216,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12209
12216
|
addons?: {
|
|
12210
12217
|
[x: string]: any;
|
|
12211
12218
|
} | undefined;
|
|
12212
|
-
token_endpoint_auth_method?: "
|
|
12219
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12213
12220
|
client_metadata?: {
|
|
12214
12221
|
[x: string]: string;
|
|
12215
12222
|
} | undefined;
|
|
@@ -12319,7 +12326,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12319
12326
|
custom_login_page_preview?: string | undefined;
|
|
12320
12327
|
form_template?: string | undefined;
|
|
12321
12328
|
addons?: Record<string, any> | undefined;
|
|
12322
|
-
token_endpoint_auth_method?: "
|
|
12329
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12323
12330
|
client_metadata?: Record<string, string> | undefined;
|
|
12324
12331
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12325
12332
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12399,7 +12406,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12399
12406
|
addons?: {
|
|
12400
12407
|
[x: string]: any;
|
|
12401
12408
|
} | undefined;
|
|
12402
|
-
token_endpoint_auth_method?: "
|
|
12409
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12403
12410
|
client_metadata?: {
|
|
12404
12411
|
[x: string]: string;
|
|
12405
12412
|
} | undefined;
|
|
@@ -12488,7 +12495,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12488
12495
|
custom_login_page_preview?: string | undefined;
|
|
12489
12496
|
form_template?: string | undefined;
|
|
12490
12497
|
addons?: Record<string, any> | undefined;
|
|
12491
|
-
token_endpoint_auth_method?: "
|
|
12498
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12492
12499
|
client_metadata?: Record<string, string> | undefined;
|
|
12493
12500
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
12494
12501
|
mobile?: Record<string, any> | undefined;
|
|
@@ -12568,7 +12575,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12568
12575
|
addons?: {
|
|
12569
12576
|
[x: string]: any;
|
|
12570
12577
|
} | undefined;
|
|
12571
|
-
token_endpoint_auth_method?: "
|
|
12578
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
12572
12579
|
client_metadata?: {
|
|
12573
12580
|
[x: string]: string;
|
|
12574
12581
|
} | undefined;
|
|
@@ -13832,7 +13839,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13832
13839
|
};
|
|
13833
13840
|
};
|
|
13834
13841
|
output: {
|
|
13835
|
-
type: "
|
|
13842
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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";
|
|
13836
13843
|
date: string;
|
|
13837
13844
|
isMobile: boolean;
|
|
13838
13845
|
log_id: string;
|
|
@@ -13871,7 +13878,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13871
13878
|
limit: number;
|
|
13872
13879
|
length: number;
|
|
13873
13880
|
logs: {
|
|
13874
|
-
type: "
|
|
13881
|
+
type: "fh" | "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" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "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";
|
|
13875
13882
|
date: string;
|
|
13876
13883
|
isMobile: boolean;
|
|
13877
13884
|
log_id: string;
|
|
@@ -14186,7 +14193,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14186
14193
|
};
|
|
14187
14194
|
} & {
|
|
14188
14195
|
json: {
|
|
14189
|
-
template: "verify_email" | "
|
|
14196
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14190
14197
|
body: string;
|
|
14191
14198
|
from: string;
|
|
14192
14199
|
subject: string;
|
|
@@ -14207,7 +14214,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14207
14214
|
};
|
|
14208
14215
|
} & {
|
|
14209
14216
|
json: {
|
|
14210
|
-
template: "verify_email" | "
|
|
14217
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14211
14218
|
body: string;
|
|
14212
14219
|
from: string;
|
|
14213
14220
|
subject: string;
|
|
@@ -14219,7 +14226,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14219
14226
|
};
|
|
14220
14227
|
};
|
|
14221
14228
|
output: {
|
|
14222
|
-
template: "verify_email" | "
|
|
14229
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14223
14230
|
body: string;
|
|
14224
14231
|
from: string;
|
|
14225
14232
|
subject: string;
|
|
@@ -14242,7 +14249,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14242
14249
|
};
|
|
14243
14250
|
};
|
|
14244
14251
|
output: {
|
|
14245
|
-
name: "verify_email" | "
|
|
14252
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14246
14253
|
body: string;
|
|
14247
14254
|
subject: string;
|
|
14248
14255
|
}[];
|
|
@@ -14255,7 +14262,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14255
14262
|
$get: {
|
|
14256
14263
|
input: {
|
|
14257
14264
|
param: {
|
|
14258
|
-
templateName: "verify_email" | "
|
|
14265
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14259
14266
|
};
|
|
14260
14267
|
} & {
|
|
14261
14268
|
header: {
|
|
@@ -14268,7 +14275,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14268
14275
|
} | {
|
|
14269
14276
|
input: {
|
|
14270
14277
|
param: {
|
|
14271
|
-
templateName: "verify_email" | "
|
|
14278
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14272
14279
|
};
|
|
14273
14280
|
} & {
|
|
14274
14281
|
header: {
|
|
@@ -14276,7 +14283,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14276
14283
|
};
|
|
14277
14284
|
};
|
|
14278
14285
|
output: {
|
|
14279
|
-
template: "verify_email" | "
|
|
14286
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14280
14287
|
body: string;
|
|
14281
14288
|
from: string;
|
|
14282
14289
|
subject: string;
|
|
@@ -14295,7 +14302,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14295
14302
|
$put: {
|
|
14296
14303
|
input: {
|
|
14297
14304
|
param: {
|
|
14298
|
-
templateName: "verify_email" | "
|
|
14305
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14299
14306
|
};
|
|
14300
14307
|
} & {
|
|
14301
14308
|
header: {
|
|
@@ -14303,7 +14310,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14303
14310
|
};
|
|
14304
14311
|
} & {
|
|
14305
14312
|
json: {
|
|
14306
|
-
template: "verify_email" | "
|
|
14313
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14307
14314
|
body: string;
|
|
14308
14315
|
subject: string;
|
|
14309
14316
|
syntax?: "liquid" | undefined;
|
|
@@ -14315,7 +14322,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14315
14322
|
};
|
|
14316
14323
|
};
|
|
14317
14324
|
output: {
|
|
14318
|
-
template: "verify_email" | "
|
|
14325
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14319
14326
|
body: string;
|
|
14320
14327
|
from: string;
|
|
14321
14328
|
subject: string;
|
|
@@ -14334,7 +14341,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14334
14341
|
$patch: {
|
|
14335
14342
|
input: {
|
|
14336
14343
|
param: {
|
|
14337
|
-
templateName: "verify_email" | "
|
|
14344
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14338
14345
|
};
|
|
14339
14346
|
} & {
|
|
14340
14347
|
header: {
|
|
@@ -14342,7 +14349,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14342
14349
|
};
|
|
14343
14350
|
} & {
|
|
14344
14351
|
json: {
|
|
14345
|
-
template?: "verify_email" | "
|
|
14352
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14346
14353
|
body?: string | undefined;
|
|
14347
14354
|
from?: string | undefined;
|
|
14348
14355
|
subject?: string | undefined;
|
|
@@ -14359,7 +14366,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14359
14366
|
} | {
|
|
14360
14367
|
input: {
|
|
14361
14368
|
param: {
|
|
14362
|
-
templateName: "verify_email" | "
|
|
14369
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14363
14370
|
};
|
|
14364
14371
|
} & {
|
|
14365
14372
|
header: {
|
|
@@ -14367,7 +14374,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14367
14374
|
};
|
|
14368
14375
|
} & {
|
|
14369
14376
|
json: {
|
|
14370
|
-
template?: "verify_email" | "
|
|
14377
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14371
14378
|
body?: string | undefined;
|
|
14372
14379
|
from?: string | undefined;
|
|
14373
14380
|
subject?: string | undefined;
|
|
@@ -14379,7 +14386,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14379
14386
|
};
|
|
14380
14387
|
};
|
|
14381
14388
|
output: {
|
|
14382
|
-
template: "verify_email" | "
|
|
14389
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14383
14390
|
body: string;
|
|
14384
14391
|
from: string;
|
|
14385
14392
|
subject: string;
|
|
@@ -14398,7 +14405,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14398
14405
|
$delete: {
|
|
14399
14406
|
input: {
|
|
14400
14407
|
param: {
|
|
14401
|
-
templateName: "verify_email" | "
|
|
14408
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14402
14409
|
};
|
|
14403
14410
|
} & {
|
|
14404
14411
|
header: {
|
|
@@ -14411,7 +14418,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14411
14418
|
} | {
|
|
14412
14419
|
input: {
|
|
14413
14420
|
param: {
|
|
14414
|
-
templateName: "verify_email" | "
|
|
14421
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14415
14422
|
};
|
|
14416
14423
|
} & {
|
|
14417
14424
|
header: {
|
|
@@ -14428,7 +14435,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14428
14435
|
$post: {
|
|
14429
14436
|
input: {
|
|
14430
14437
|
param: {
|
|
14431
|
-
templateName: "verify_email" | "
|
|
14438
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14432
14439
|
};
|
|
14433
14440
|
} & {
|
|
14434
14441
|
header: {
|
|
@@ -14711,7 +14718,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14711
14718
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14712
14719
|
custom_domain_id: string;
|
|
14713
14720
|
primary: boolean;
|
|
14714
|
-
status: "
|
|
14721
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14715
14722
|
verification_method?: "txt" | undefined;
|
|
14716
14723
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14717
14724
|
domain_metadata?: {
|
|
@@ -14752,7 +14759,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14752
14759
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14753
14760
|
custom_domain_id: string;
|
|
14754
14761
|
primary: boolean;
|
|
14755
|
-
status: "
|
|
14762
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14756
14763
|
verification_method?: "txt" | undefined;
|
|
14757
14764
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14758
14765
|
domain_metadata?: {
|
|
@@ -14816,7 +14823,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14816
14823
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14817
14824
|
custom_domain_id: string;
|
|
14818
14825
|
primary: boolean;
|
|
14819
|
-
status: "
|
|
14826
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14820
14827
|
verification_method?: "txt" | undefined;
|
|
14821
14828
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14822
14829
|
domain_metadata?: {
|
|
@@ -14863,7 +14870,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14863
14870
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14864
14871
|
custom_domain_id: string;
|
|
14865
14872
|
primary: boolean;
|
|
14866
|
-
status: "
|
|
14873
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14867
14874
|
verification_method?: "txt" | undefined;
|
|
14868
14875
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14869
14876
|
domain_metadata?: {
|
|
@@ -14909,7 +14916,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14909
14916
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14910
14917
|
custom_domain_id: string;
|
|
14911
14918
|
primary: boolean;
|
|
14912
|
-
status: "
|
|
14919
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14913
14920
|
verification_method?: "txt" | undefined;
|
|
14914
14921
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14915
14922
|
domain_metadata?: {
|
|
@@ -14950,7 +14957,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14950
14957
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
14951
14958
|
custom_domain_id: string;
|
|
14952
14959
|
primary: boolean;
|
|
14953
|
-
status: "
|
|
14960
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14954
14961
|
verification_method?: "txt" | undefined;
|
|
14955
14962
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14956
14963
|
domain_metadata?: {
|
|
@@ -16522,7 +16529,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16522
16529
|
scope?: string | undefined;
|
|
16523
16530
|
grant_types?: string[] | undefined;
|
|
16524
16531
|
response_types?: string[] | undefined;
|
|
16525
|
-
token_endpoint_auth_method?: "
|
|
16532
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16526
16533
|
jwks_uri?: string | undefined;
|
|
16527
16534
|
jwks?: Record<string, unknown> | undefined;
|
|
16528
16535
|
software_id?: string | undefined;
|
|
@@ -16611,7 +16618,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16611
16618
|
scope?: string | undefined;
|
|
16612
16619
|
grant_types?: string[] | undefined;
|
|
16613
16620
|
response_types?: string[] | undefined;
|
|
16614
|
-
token_endpoint_auth_method?: "
|
|
16621
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
16615
16622
|
jwks_uri?: string | undefined;
|
|
16616
16623
|
jwks?: Record<string, unknown> | undefined;
|
|
16617
16624
|
software_id?: string | undefined;
|
|
@@ -16668,7 +16675,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16668
16675
|
client_id: string;
|
|
16669
16676
|
redirect_url?: string | undefined;
|
|
16670
16677
|
login_hint?: string | undefined;
|
|
16671
|
-
screen_hint?: "
|
|
16678
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16672
16679
|
};
|
|
16673
16680
|
};
|
|
16674
16681
|
output: {};
|
|
@@ -16680,7 +16687,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16680
16687
|
client_id: string;
|
|
16681
16688
|
redirect_url?: string | undefined;
|
|
16682
16689
|
login_hint?: string | undefined;
|
|
16683
|
-
screen_hint?: "
|
|
16690
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16684
16691
|
};
|
|
16685
16692
|
};
|
|
16686
16693
|
output: {
|
|
@@ -16957,19 +16964,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16957
16964
|
email: string;
|
|
16958
16965
|
send: "code" | "link";
|
|
16959
16966
|
authParams: {
|
|
16960
|
-
username?: string | undefined;
|
|
16961
16967
|
state?: string | undefined;
|
|
16962
|
-
|
|
16963
|
-
code_challenge?: string | undefined;
|
|
16964
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16965
|
-
redirect_uri?: string | undefined;
|
|
16966
|
-
nonce?: string | undefined;
|
|
16967
|
-
act_as?: string | undefined;
|
|
16968
|
+
username?: string | undefined;
|
|
16968
16969
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
16969
16970
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
16971
|
+
scope?: string | undefined;
|
|
16972
|
+
act_as?: string | undefined;
|
|
16973
|
+
redirect_uri?: string | undefined;
|
|
16970
16974
|
audience?: string | undefined;
|
|
16971
16975
|
organization?: string | undefined;
|
|
16976
|
+
nonce?: string | undefined;
|
|
16972
16977
|
prompt?: string | undefined;
|
|
16978
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
16979
|
+
code_challenge?: string | undefined;
|
|
16973
16980
|
ui_locales?: string | undefined;
|
|
16974
16981
|
max_age?: number | undefined;
|
|
16975
16982
|
acr_values?: string | undefined;
|
|
@@ -16993,19 +17000,19 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16993
17000
|
phone_number: string;
|
|
16994
17001
|
send: "code" | "link";
|
|
16995
17002
|
authParams: {
|
|
16996
|
-
username?: string | undefined;
|
|
16997
17003
|
state?: string | undefined;
|
|
16998
|
-
|
|
16999
|
-
code_challenge?: string | undefined;
|
|
17000
|
-
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17001
|
-
redirect_uri?: string | undefined;
|
|
17002
|
-
nonce?: string | undefined;
|
|
17003
|
-
act_as?: string | undefined;
|
|
17004
|
+
username?: string | undefined;
|
|
17004
17005
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17005
17006
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17007
|
+
scope?: string | undefined;
|
|
17008
|
+
act_as?: string | undefined;
|
|
17009
|
+
redirect_uri?: string | undefined;
|
|
17006
17010
|
audience?: string | undefined;
|
|
17007
17011
|
organization?: string | undefined;
|
|
17012
|
+
nonce?: string | undefined;
|
|
17008
17013
|
prompt?: string | undefined;
|
|
17014
|
+
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17015
|
+
code_challenge?: string | undefined;
|
|
17009
17016
|
ui_locales?: string | undefined;
|
|
17010
17017
|
max_age?: number | undefined;
|
|
17011
17018
|
acr_values?: string | undefined;
|
|
@@ -18912,7 +18919,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18912
18919
|
$get: {
|
|
18913
18920
|
input: {
|
|
18914
18921
|
param: {
|
|
18915
|
-
screen: "signup" | "
|
|
18922
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18916
18923
|
};
|
|
18917
18924
|
} & {
|
|
18918
18925
|
query: {
|
|
@@ -18928,7 +18935,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18928
18935
|
} | {
|
|
18929
18936
|
input: {
|
|
18930
18937
|
param: {
|
|
18931
|
-
screen: "signup" | "
|
|
18938
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18932
18939
|
};
|
|
18933
18940
|
} & {
|
|
18934
18941
|
query: {
|
|
@@ -18944,7 +18951,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18944
18951
|
} | {
|
|
18945
18952
|
input: {
|
|
18946
18953
|
param: {
|
|
18947
|
-
screen: "signup" | "
|
|
18954
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18948
18955
|
};
|
|
18949
18956
|
} & {
|
|
18950
18957
|
query: {
|
|
@@ -18964,7 +18971,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18964
18971
|
$post: {
|
|
18965
18972
|
input: {
|
|
18966
18973
|
param: {
|
|
18967
|
-
screen: "signup" | "login" | "
|
|
18974
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18968
18975
|
};
|
|
18969
18976
|
} & {
|
|
18970
18977
|
query: {
|
|
@@ -18982,7 +18989,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
18982
18989
|
} | {
|
|
18983
18990
|
input: {
|
|
18984
18991
|
param: {
|
|
18985
|
-
screen: "signup" | "login" | "
|
|
18992
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
18986
18993
|
};
|
|
18987
18994
|
} & {
|
|
18988
18995
|
query: {
|
|
@@ -19000,7 +19007,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19000
19007
|
} | {
|
|
19001
19008
|
input: {
|
|
19002
19009
|
param: {
|
|
19003
|
-
screen: "signup" | "login" | "
|
|
19010
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19004
19011
|
};
|
|
19005
19012
|
} & {
|
|
19006
19013
|
query: {
|