authhero 5.10.0 → 5.11.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/assets/u/js/client.js +33 -1
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/assets/u/widget/p-FUW5zvoZ.js +2 -0
- package/dist/assets/u/widget/{p-e91b632f.entry.js → p-aa120307.entry.js} +1 -1
- package/dist/assets/u/widget/{p-f63fd386.entry.js → p-f0f9eca3.entry.js} +1 -1
- package/dist/authhero.cjs +229 -212
- package/dist/authhero.css +2 -1
- package/dist/authhero.d.ts +123 -86
- package/dist/authhero.mjs +80125 -82252
- package/dist/client.js +33 -1
- package/dist/passkey-enrollment-DKWsGt-K.js +1 -0
- package/dist/passkey-enrollment-Dw1ObR65.mjs +26 -0
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/client/client-bundle.d.ts +1 -1
- package/dist/types/email-services/mailgun.d.ts +1 -0
- package/dist/types/helpers/service-token.d.ts +21 -0
- package/dist/types/hooks/helpers/token-api.d.ts +7 -0
- package/dist/types/index.d.ts +122 -86
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +30 -30
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- 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/email-templates.d.ts +14 -14
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +72 -36
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/organizations.d.ts +40 -4
- 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/types/IdToken.d.ts +4 -4
- package/package.json +24 -24
- package/dist/assets/u/widget/p-BFP_5sHV.js +0 -2
- package/dist/passkey-enrollment-D0dl7raT.mjs +0 -42
- package/dist/passkey-enrollment-dbZd6Zqw.js +0 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -219,7 +219,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
219
219
|
};
|
|
220
220
|
};
|
|
221
221
|
output: {
|
|
222
|
-
name: "
|
|
222
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
223
223
|
enabled: boolean;
|
|
224
224
|
trial_expired?: boolean | undefined;
|
|
225
225
|
}[];
|
|
@@ -374,7 +374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
374
374
|
$get: {
|
|
375
375
|
input: {
|
|
376
376
|
param: {
|
|
377
|
-
factor_name: "
|
|
377
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
378
378
|
};
|
|
379
379
|
} & {
|
|
380
380
|
header: {
|
|
@@ -382,7 +382,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
382
382
|
};
|
|
383
383
|
};
|
|
384
384
|
output: {
|
|
385
|
-
name: "
|
|
385
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
386
386
|
enabled: boolean;
|
|
387
387
|
trial_expired?: boolean | undefined;
|
|
388
388
|
};
|
|
@@ -395,7 +395,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
395
395
|
$put: {
|
|
396
396
|
input: {
|
|
397
397
|
param: {
|
|
398
|
-
factor_name: "
|
|
398
|
+
factor_name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
399
399
|
};
|
|
400
400
|
} & {
|
|
401
401
|
header: {
|
|
@@ -407,7 +407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
407
407
|
};
|
|
408
408
|
};
|
|
409
409
|
output: {
|
|
410
|
-
name: "
|
|
410
|
+
name: "email" | "webauthn-roaming" | "webauthn-platform" | "sms" | "otp" | "duo" | "push-notification" | "recovery-code";
|
|
411
411
|
enabled: boolean;
|
|
412
412
|
trial_expired?: boolean | undefined;
|
|
413
413
|
};
|
|
@@ -773,22 +773,58 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
773
773
|
};
|
|
774
774
|
output: {
|
|
775
775
|
user_id: string;
|
|
776
|
-
roles: {
|
|
776
|
+
roles: {
|
|
777
|
+
name: string;
|
|
778
|
+
id: string;
|
|
779
|
+
description?: string | undefined;
|
|
780
|
+
is_system?: boolean | undefined;
|
|
781
|
+
metadata?: {
|
|
782
|
+
[x: string]: any;
|
|
783
|
+
} | undefined;
|
|
784
|
+
created_at?: string | undefined;
|
|
785
|
+
updated_at?: string | undefined;
|
|
786
|
+
}[];
|
|
777
787
|
email?: string | undefined;
|
|
788
|
+
name?: string | undefined;
|
|
789
|
+
picture?: string | undefined;
|
|
778
790
|
}[] | {
|
|
779
791
|
start: number;
|
|
780
792
|
limit: number;
|
|
781
793
|
total: number;
|
|
782
794
|
members: {
|
|
783
795
|
user_id: string;
|
|
784
|
-
roles: {
|
|
796
|
+
roles: {
|
|
797
|
+
name: string;
|
|
798
|
+
id: string;
|
|
799
|
+
description?: string | undefined;
|
|
800
|
+
is_system?: boolean | undefined;
|
|
801
|
+
metadata?: {
|
|
802
|
+
[x: string]: any;
|
|
803
|
+
} | undefined;
|
|
804
|
+
created_at?: string | undefined;
|
|
805
|
+
updated_at?: string | undefined;
|
|
806
|
+
}[];
|
|
785
807
|
email?: string | undefined;
|
|
808
|
+
name?: string | undefined;
|
|
809
|
+
picture?: string | undefined;
|
|
786
810
|
}[];
|
|
787
811
|
} | {
|
|
788
812
|
members: {
|
|
789
813
|
user_id: string;
|
|
790
|
-
roles: {
|
|
814
|
+
roles: {
|
|
815
|
+
name: string;
|
|
816
|
+
id: string;
|
|
817
|
+
description?: string | undefined;
|
|
818
|
+
is_system?: boolean | undefined;
|
|
819
|
+
metadata?: {
|
|
820
|
+
[x: string]: any;
|
|
821
|
+
} | undefined;
|
|
822
|
+
created_at?: string | undefined;
|
|
823
|
+
updated_at?: string | undefined;
|
|
824
|
+
}[];
|
|
791
825
|
email?: string | undefined;
|
|
826
|
+
name?: string | undefined;
|
|
827
|
+
picture?: string | undefined;
|
|
792
828
|
}[];
|
|
793
829
|
next?: string | undefined;
|
|
794
830
|
};
|
|
@@ -1116,8 +1152,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1116
1152
|
invitee: {
|
|
1117
1153
|
email?: string | undefined;
|
|
1118
1154
|
};
|
|
1119
|
-
connection_id?: string | undefined;
|
|
1120
1155
|
id?: string | undefined;
|
|
1156
|
+
connection_id?: string | undefined;
|
|
1121
1157
|
app_metadata?: Record<string, any> | undefined;
|
|
1122
1158
|
user_metadata?: Record<string, any> | undefined;
|
|
1123
1159
|
roles?: string[] | undefined;
|
|
@@ -1971,7 +2007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1971
2007
|
type: "REDIRECT";
|
|
1972
2008
|
action: "REDIRECT_USER";
|
|
1973
2009
|
params: {
|
|
1974
|
-
target: "custom" | "
|
|
2010
|
+
target: "custom" | "change-email" | "account";
|
|
1975
2011
|
custom_url?: string | undefined;
|
|
1976
2012
|
};
|
|
1977
2013
|
alias?: string | undefined;
|
|
@@ -2024,7 +2060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2024
2060
|
type: "REDIRECT";
|
|
2025
2061
|
action: "REDIRECT_USER";
|
|
2026
2062
|
params: {
|
|
2027
|
-
target: "custom" | "
|
|
2063
|
+
target: "custom" | "change-email" | "account";
|
|
2028
2064
|
custom_url?: string | undefined;
|
|
2029
2065
|
};
|
|
2030
2066
|
alias?: string | undefined;
|
|
@@ -2092,7 +2128,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2092
2128
|
type: "REDIRECT";
|
|
2093
2129
|
action: "REDIRECT_USER";
|
|
2094
2130
|
params: {
|
|
2095
|
-
target: "custom" | "
|
|
2131
|
+
target: "custom" | "change-email" | "account";
|
|
2096
2132
|
custom_url?: string | undefined;
|
|
2097
2133
|
};
|
|
2098
2134
|
alias?: string | undefined;
|
|
@@ -2173,7 +2209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2173
2209
|
type: "REDIRECT";
|
|
2174
2210
|
action: "REDIRECT_USER";
|
|
2175
2211
|
params: {
|
|
2176
|
-
target: "custom" | "
|
|
2212
|
+
target: "custom" | "change-email" | "account";
|
|
2177
2213
|
custom_url?: string | undefined;
|
|
2178
2214
|
};
|
|
2179
2215
|
alias?: string | undefined;
|
|
@@ -2221,7 +2257,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2221
2257
|
type: "REDIRECT";
|
|
2222
2258
|
action: "REDIRECT_USER";
|
|
2223
2259
|
params: {
|
|
2224
|
-
target: "custom" | "
|
|
2260
|
+
target: "custom" | "change-email" | "account";
|
|
2225
2261
|
custom_url?: string | undefined;
|
|
2226
2262
|
};
|
|
2227
2263
|
alias?: string | undefined;
|
|
@@ -2281,7 +2317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2281
2317
|
type: "REDIRECT";
|
|
2282
2318
|
action: "REDIRECT_USER";
|
|
2283
2319
|
params: {
|
|
2284
|
-
target: "custom" | "
|
|
2320
|
+
target: "custom" | "change-email" | "account";
|
|
2285
2321
|
custom_url?: string | undefined;
|
|
2286
2322
|
};
|
|
2287
2323
|
alias?: string | undefined;
|
|
@@ -2329,7 +2365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2329
2365
|
type: "REDIRECT";
|
|
2330
2366
|
action: "REDIRECT_USER";
|
|
2331
2367
|
params: {
|
|
2332
|
-
target: "custom" | "
|
|
2368
|
+
target: "custom" | "change-email" | "account";
|
|
2333
2369
|
custom_url?: string | undefined;
|
|
2334
2370
|
};
|
|
2335
2371
|
alias?: string | undefined;
|
|
@@ -6607,7 +6643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6607
6643
|
};
|
|
6608
6644
|
};
|
|
6609
6645
|
output: {
|
|
6610
|
-
prompt: "
|
|
6646
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6611
6647
|
language: string;
|
|
6612
6648
|
}[];
|
|
6613
6649
|
outputFormat: "json";
|
|
@@ -6645,7 +6681,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6645
6681
|
$get: {
|
|
6646
6682
|
input: {
|
|
6647
6683
|
param: {
|
|
6648
|
-
prompt: "
|
|
6684
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6649
6685
|
language: string;
|
|
6650
6686
|
};
|
|
6651
6687
|
} & {
|
|
@@ -6667,7 +6703,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6667
6703
|
$put: {
|
|
6668
6704
|
input: {
|
|
6669
6705
|
param: {
|
|
6670
|
-
prompt: "
|
|
6706
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6671
6707
|
language: string;
|
|
6672
6708
|
};
|
|
6673
6709
|
} & {
|
|
@@ -6691,7 +6727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6691
6727
|
$delete: {
|
|
6692
6728
|
input: {
|
|
6693
6729
|
param: {
|
|
6694
|
-
prompt: "
|
|
6730
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "invitation" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6695
6731
|
language: string;
|
|
6696
6732
|
};
|
|
6697
6733
|
} & {
|
|
@@ -8132,7 +8168,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8132
8168
|
log_type: string;
|
|
8133
8169
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8134
8170
|
actor: {
|
|
8135
|
-
type: "
|
|
8171
|
+
type: "client_credentials" | "user" | "api_key" | "system" | "admin";
|
|
8136
8172
|
id?: string | undefined;
|
|
8137
8173
|
email?: string | undefined;
|
|
8138
8174
|
org_id?: string | undefined;
|
|
@@ -8780,7 +8816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8780
8816
|
};
|
|
8781
8817
|
};
|
|
8782
8818
|
output: {
|
|
8783
|
-
type: "
|
|
8819
|
+
type: "gd_send_sms" | "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" | "fh" | "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_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" | "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";
|
|
8784
8820
|
date: string;
|
|
8785
8821
|
isMobile: boolean;
|
|
8786
8822
|
log_id: string;
|
|
@@ -8819,7 +8855,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8819
8855
|
limit: number;
|
|
8820
8856
|
length: number;
|
|
8821
8857
|
logs: {
|
|
8822
|
-
type: "
|
|
8858
|
+
type: "gd_send_sms" | "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" | "fh" | "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_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" | "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";
|
|
8823
8859
|
date: string;
|
|
8824
8860
|
isMobile: boolean;
|
|
8825
8861
|
log_id: string;
|
|
@@ -8873,7 +8909,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8873
8909
|
};
|
|
8874
8910
|
};
|
|
8875
8911
|
output: {
|
|
8876
|
-
type: "
|
|
8912
|
+
type: "gd_send_sms" | "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" | "fh" | "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_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" | "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";
|
|
8877
8913
|
date: string;
|
|
8878
8914
|
isMobile: boolean;
|
|
8879
8915
|
log_id: string;
|
|
@@ -9187,7 +9223,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9187
9223
|
addons?: {
|
|
9188
9224
|
[x: string]: any;
|
|
9189
9225
|
} | undefined;
|
|
9190
|
-
token_endpoint_auth_method?: "
|
|
9226
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9191
9227
|
client_metadata?: {
|
|
9192
9228
|
[x: string]: string;
|
|
9193
9229
|
} | undefined;
|
|
@@ -9283,7 +9319,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9283
9319
|
addons?: {
|
|
9284
9320
|
[x: string]: any;
|
|
9285
9321
|
} | undefined;
|
|
9286
|
-
token_endpoint_auth_method?: "
|
|
9322
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9287
9323
|
client_metadata?: {
|
|
9288
9324
|
[x: string]: string;
|
|
9289
9325
|
} | undefined;
|
|
@@ -9394,7 +9430,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9394
9430
|
addons?: {
|
|
9395
9431
|
[x: string]: any;
|
|
9396
9432
|
} | undefined;
|
|
9397
|
-
token_endpoint_auth_method?: "
|
|
9433
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9398
9434
|
client_metadata?: {
|
|
9399
9435
|
[x: string]: string;
|
|
9400
9436
|
} | undefined;
|
|
@@ -9504,7 +9540,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9504
9540
|
custom_login_page_preview?: string | undefined;
|
|
9505
9541
|
form_template?: string | undefined;
|
|
9506
9542
|
addons?: Record<string, any> | undefined;
|
|
9507
|
-
token_endpoint_auth_method?: "
|
|
9543
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9508
9544
|
client_metadata?: Record<string, string> | undefined;
|
|
9509
9545
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9510
9546
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9584,7 +9620,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9584
9620
|
addons?: {
|
|
9585
9621
|
[x: string]: any;
|
|
9586
9622
|
} | undefined;
|
|
9587
|
-
token_endpoint_auth_method?: "
|
|
9623
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9588
9624
|
client_metadata?: {
|
|
9589
9625
|
[x: string]: string;
|
|
9590
9626
|
} | undefined;
|
|
@@ -9673,7 +9709,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9673
9709
|
custom_login_page_preview?: string | undefined;
|
|
9674
9710
|
form_template?: string | undefined;
|
|
9675
9711
|
addons?: Record<string, any> | undefined;
|
|
9676
|
-
token_endpoint_auth_method?: "
|
|
9712
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9677
9713
|
client_metadata?: Record<string, string> | undefined;
|
|
9678
9714
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9679
9715
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9753,7 +9789,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9753
9789
|
addons?: {
|
|
9754
9790
|
[x: string]: any;
|
|
9755
9791
|
} | undefined;
|
|
9756
|
-
token_endpoint_auth_method?: "
|
|
9792
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9757
9793
|
client_metadata?: {
|
|
9758
9794
|
[x: string]: string;
|
|
9759
9795
|
} | undefined;
|
|
@@ -11017,7 +11053,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11017
11053
|
};
|
|
11018
11054
|
};
|
|
11019
11055
|
output: {
|
|
11020
|
-
type: "
|
|
11056
|
+
type: "gd_send_sms" | "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" | "fh" | "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_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" | "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";
|
|
11021
11057
|
date: string;
|
|
11022
11058
|
isMobile: boolean;
|
|
11023
11059
|
log_id: string;
|
|
@@ -11056,7 +11092,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11056
11092
|
limit: number;
|
|
11057
11093
|
length: number;
|
|
11058
11094
|
logs: {
|
|
11059
|
-
type: "
|
|
11095
|
+
type: "gd_send_sms" | "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" | "fh" | "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_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" | "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";
|
|
11060
11096
|
date: string;
|
|
11061
11097
|
isMobile: boolean;
|
|
11062
11098
|
log_id: string;
|
|
@@ -11371,7 +11407,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11371
11407
|
};
|
|
11372
11408
|
} & {
|
|
11373
11409
|
json: {
|
|
11374
|
-
template: "
|
|
11410
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11375
11411
|
body: string;
|
|
11376
11412
|
from: string;
|
|
11377
11413
|
subject: string;
|
|
@@ -11392,7 +11428,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11392
11428
|
};
|
|
11393
11429
|
} & {
|
|
11394
11430
|
json: {
|
|
11395
|
-
template: "
|
|
11431
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11396
11432
|
body: string;
|
|
11397
11433
|
from: string;
|
|
11398
11434
|
subject: string;
|
|
@@ -11404,7 +11440,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11404
11440
|
};
|
|
11405
11441
|
};
|
|
11406
11442
|
output: {
|
|
11407
|
-
template: "
|
|
11443
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11408
11444
|
body: string;
|
|
11409
11445
|
from: string;
|
|
11410
11446
|
subject: string;
|
|
@@ -11423,7 +11459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11423
11459
|
$get: {
|
|
11424
11460
|
input: {
|
|
11425
11461
|
param: {
|
|
11426
|
-
templateName: "
|
|
11462
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11427
11463
|
};
|
|
11428
11464
|
} & {
|
|
11429
11465
|
header: {
|
|
@@ -11436,7 +11472,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11436
11472
|
} | {
|
|
11437
11473
|
input: {
|
|
11438
11474
|
param: {
|
|
11439
|
-
templateName: "
|
|
11475
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11440
11476
|
};
|
|
11441
11477
|
} & {
|
|
11442
11478
|
header: {
|
|
@@ -11444,7 +11480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11444
11480
|
};
|
|
11445
11481
|
};
|
|
11446
11482
|
output: {
|
|
11447
|
-
template: "
|
|
11483
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11448
11484
|
body: string;
|
|
11449
11485
|
from: string;
|
|
11450
11486
|
subject: string;
|
|
@@ -11463,7 +11499,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11463
11499
|
$put: {
|
|
11464
11500
|
input: {
|
|
11465
11501
|
param: {
|
|
11466
|
-
templateName: "
|
|
11502
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11467
11503
|
};
|
|
11468
11504
|
} & {
|
|
11469
11505
|
header: {
|
|
@@ -11471,7 +11507,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11471
11507
|
};
|
|
11472
11508
|
} & {
|
|
11473
11509
|
json: {
|
|
11474
|
-
template: "
|
|
11510
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11475
11511
|
body: string;
|
|
11476
11512
|
from: string;
|
|
11477
11513
|
subject: string;
|
|
@@ -11483,7 +11519,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11483
11519
|
};
|
|
11484
11520
|
};
|
|
11485
11521
|
output: {
|
|
11486
|
-
template: "
|
|
11522
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11487
11523
|
body: string;
|
|
11488
11524
|
from: string;
|
|
11489
11525
|
subject: string;
|
|
@@ -11502,7 +11538,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11502
11538
|
$patch: {
|
|
11503
11539
|
input: {
|
|
11504
11540
|
param: {
|
|
11505
|
-
templateName: "
|
|
11541
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11506
11542
|
};
|
|
11507
11543
|
} & {
|
|
11508
11544
|
header: {
|
|
@@ -11510,7 +11546,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11510
11546
|
};
|
|
11511
11547
|
} & {
|
|
11512
11548
|
json: {
|
|
11513
|
-
template?: "
|
|
11549
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11514
11550
|
body?: string | undefined;
|
|
11515
11551
|
from?: string | undefined;
|
|
11516
11552
|
subject?: string | undefined;
|
|
@@ -11527,7 +11563,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11527
11563
|
} | {
|
|
11528
11564
|
input: {
|
|
11529
11565
|
param: {
|
|
11530
|
-
templateName: "
|
|
11566
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11531
11567
|
};
|
|
11532
11568
|
} & {
|
|
11533
11569
|
header: {
|
|
@@ -11535,7 +11571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11535
11571
|
};
|
|
11536
11572
|
} & {
|
|
11537
11573
|
json: {
|
|
11538
|
-
template?: "
|
|
11574
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
11539
11575
|
body?: string | undefined;
|
|
11540
11576
|
from?: string | undefined;
|
|
11541
11577
|
subject?: string | undefined;
|
|
@@ -11547,7 +11583,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11547
11583
|
};
|
|
11548
11584
|
};
|
|
11549
11585
|
output: {
|
|
11550
|
-
template: "
|
|
11586
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11551
11587
|
body: string;
|
|
11552
11588
|
from: string;
|
|
11553
11589
|
subject: string;
|
|
@@ -12593,7 +12629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12593
12629
|
output: {
|
|
12594
12630
|
id: string;
|
|
12595
12631
|
trigger_id: string;
|
|
12596
|
-
status: "
|
|
12632
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
12597
12633
|
results: {
|
|
12598
12634
|
action_name: string;
|
|
12599
12635
|
error: {
|
|
@@ -12640,7 +12676,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12640
12676
|
logs: {
|
|
12641
12677
|
action_name: string;
|
|
12642
12678
|
lines: {
|
|
12643
|
-
level: "
|
|
12679
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
12644
12680
|
message: string;
|
|
12645
12681
|
}[];
|
|
12646
12682
|
}[];
|
|
@@ -13307,7 +13343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13307
13343
|
args: import("hono/utils/types").JSONValue[];
|
|
13308
13344
|
}[];
|
|
13309
13345
|
logs: {
|
|
13310
|
-
level: "
|
|
13346
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13311
13347
|
message: string;
|
|
13312
13348
|
}[];
|
|
13313
13349
|
error?: string | undefined;
|
|
@@ -13605,7 +13641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13605
13641
|
scope?: string | undefined;
|
|
13606
13642
|
grant_types?: string[] | undefined;
|
|
13607
13643
|
response_types?: string[] | undefined;
|
|
13608
|
-
token_endpoint_auth_method?: "
|
|
13644
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13609
13645
|
jwks_uri?: string | undefined;
|
|
13610
13646
|
jwks?: Record<string, unknown> | undefined;
|
|
13611
13647
|
software_id?: string | undefined;
|
|
@@ -13694,7 +13730,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13694
13730
|
scope?: string | undefined;
|
|
13695
13731
|
grant_types?: string[] | undefined;
|
|
13696
13732
|
response_types?: string[] | undefined;
|
|
13697
|
-
token_endpoint_auth_method?: "
|
|
13733
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
13698
13734
|
jwks_uri?: string | undefined;
|
|
13699
13735
|
jwks?: Record<string, unknown> | undefined;
|
|
13700
13736
|
software_id?: string | undefined;
|
|
@@ -13751,7 +13787,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13751
13787
|
client_id: string;
|
|
13752
13788
|
redirect_url?: string | undefined;
|
|
13753
13789
|
login_hint?: string | undefined;
|
|
13754
|
-
screen_hint?: "
|
|
13790
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
13755
13791
|
};
|
|
13756
13792
|
};
|
|
13757
13793
|
output: {};
|
|
@@ -13763,7 +13799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13763
13799
|
client_id: string;
|
|
13764
13800
|
redirect_url?: string | undefined;
|
|
13765
13801
|
login_hint?: string | undefined;
|
|
13766
|
-
screen_hint?: "
|
|
13802
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
13767
13803
|
};
|
|
13768
13804
|
};
|
|
13769
13805
|
output: {
|
|
@@ -13840,17 +13876,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13840
13876
|
request_uri?: string | undefined;
|
|
13841
13877
|
};
|
|
13842
13878
|
};
|
|
13843
|
-
output:
|
|
13844
|
-
|
|
13845
|
-
|
|
13846
|
-
expires_in: number;
|
|
13847
|
-
id_token?: string | undefined;
|
|
13848
|
-
scope?: string | undefined;
|
|
13849
|
-
state?: string | undefined;
|
|
13850
|
-
refresh_token?: string | undefined;
|
|
13851
|
-
};
|
|
13852
|
-
outputFormat: "json";
|
|
13853
|
-
status: 200;
|
|
13879
|
+
output: {};
|
|
13880
|
+
outputFormat: string;
|
|
13881
|
+
status: 302;
|
|
13854
13882
|
} | {
|
|
13855
13883
|
input: {
|
|
13856
13884
|
query: {
|
|
@@ -13882,9 +13910,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13882
13910
|
request_uri?: string | undefined;
|
|
13883
13911
|
};
|
|
13884
13912
|
};
|
|
13885
|
-
output: {
|
|
13886
|
-
|
|
13887
|
-
|
|
13913
|
+
output: string | {
|
|
13914
|
+
access_token: string;
|
|
13915
|
+
token_type: string;
|
|
13916
|
+
expires_in: number;
|
|
13917
|
+
id_token?: string | undefined;
|
|
13918
|
+
scope?: string | undefined;
|
|
13919
|
+
state?: string | undefined;
|
|
13920
|
+
refresh_token?: string | undefined;
|
|
13921
|
+
};
|
|
13922
|
+
outputFormat: "json";
|
|
13923
|
+
status: 200;
|
|
13888
13924
|
} | {
|
|
13889
13925
|
input: {
|
|
13890
13926
|
query: {
|
|
@@ -14040,19 +14076,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14040
14076
|
email: string;
|
|
14041
14077
|
send: "code" | "link";
|
|
14042
14078
|
authParams: {
|
|
14079
|
+
scope?: string | undefined;
|
|
14080
|
+
state?: string | undefined;
|
|
14081
|
+
audience?: string | undefined;
|
|
14043
14082
|
code_challenge?: string | undefined;
|
|
14044
14083
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14045
14084
|
redirect_uri?: string | undefined;
|
|
14046
14085
|
nonce?: string | undefined;
|
|
14047
|
-
state?: string | undefined;
|
|
14048
|
-
act_as?: string | undefined;
|
|
14049
14086
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14050
14087
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14051
|
-
|
|
14088
|
+
username?: string | undefined;
|
|
14089
|
+
act_as?: string | undefined;
|
|
14052
14090
|
organization?: string | undefined;
|
|
14053
|
-
scope?: string | undefined;
|
|
14054
14091
|
prompt?: string | undefined;
|
|
14055
|
-
username?: string | undefined;
|
|
14056
14092
|
ui_locales?: string | undefined;
|
|
14057
14093
|
max_age?: number | undefined;
|
|
14058
14094
|
acr_values?: string | undefined;
|
|
@@ -14076,19 +14112,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14076
14112
|
phone_number: string;
|
|
14077
14113
|
send: "code" | "link";
|
|
14078
14114
|
authParams: {
|
|
14115
|
+
scope?: string | undefined;
|
|
14116
|
+
state?: string | undefined;
|
|
14117
|
+
audience?: string | undefined;
|
|
14079
14118
|
code_challenge?: string | undefined;
|
|
14080
14119
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14081
14120
|
redirect_uri?: string | undefined;
|
|
14082
14121
|
nonce?: string | undefined;
|
|
14083
|
-
state?: string | undefined;
|
|
14084
|
-
act_as?: string | undefined;
|
|
14085
14122
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14086
14123
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14087
|
-
|
|
14124
|
+
username?: string | undefined;
|
|
14125
|
+
act_as?: string | undefined;
|
|
14088
14126
|
organization?: string | undefined;
|
|
14089
|
-
scope?: string | undefined;
|
|
14090
14127
|
prompt?: string | undefined;
|
|
14091
|
-
username?: string | undefined;
|
|
14092
14128
|
ui_locales?: string | undefined;
|
|
14093
14129
|
max_age?: number | undefined;
|
|
14094
14130
|
acr_values?: string | undefined;
|
|
@@ -14849,7 +14885,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14849
14885
|
};
|
|
14850
14886
|
output: {};
|
|
14851
14887
|
outputFormat: string;
|
|
14852
|
-
status:
|
|
14888
|
+
status: 200;
|
|
14853
14889
|
} | {
|
|
14854
14890
|
input: {
|
|
14855
14891
|
query: {
|
|
@@ -14863,7 +14899,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14863
14899
|
};
|
|
14864
14900
|
output: {};
|
|
14865
14901
|
outputFormat: string;
|
|
14866
|
-
status:
|
|
14902
|
+
status: 302;
|
|
14867
14903
|
} | {
|
|
14868
14904
|
input: {
|
|
14869
14905
|
query: {
|
|
@@ -15835,7 +15871,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15835
15871
|
$get: {
|
|
15836
15872
|
input: {
|
|
15837
15873
|
param: {
|
|
15838
|
-
screen: "signup" | "
|
|
15874
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
15839
15875
|
};
|
|
15840
15876
|
} & {
|
|
15841
15877
|
query: {
|
|
@@ -15851,7 +15887,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15851
15887
|
} | {
|
|
15852
15888
|
input: {
|
|
15853
15889
|
param: {
|
|
15854
|
-
screen: "signup" | "
|
|
15890
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
15855
15891
|
};
|
|
15856
15892
|
} & {
|
|
15857
15893
|
query: {
|
|
@@ -15867,7 +15903,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15867
15903
|
} | {
|
|
15868
15904
|
input: {
|
|
15869
15905
|
param: {
|
|
15870
|
-
screen: "signup" | "
|
|
15906
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
15871
15907
|
};
|
|
15872
15908
|
} & {
|
|
15873
15909
|
query: {
|
|
@@ -15887,7 +15923,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15887
15923
|
$post: {
|
|
15888
15924
|
input: {
|
|
15889
15925
|
param: {
|
|
15890
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
15926
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
15891
15927
|
};
|
|
15892
15928
|
} & {
|
|
15893
15929
|
query: {
|
|
@@ -15905,7 +15941,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15905
15941
|
} | {
|
|
15906
15942
|
input: {
|
|
15907
15943
|
param: {
|
|
15908
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
15944
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
15909
15945
|
};
|
|
15910
15946
|
} & {
|
|
15911
15947
|
query: {
|
|
@@ -15923,7 +15959,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15923
15959
|
} | {
|
|
15924
15960
|
input: {
|
|
15925
15961
|
param: {
|
|
15926
|
-
screen: "signup" | "login" | "reset-password" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "
|
|
15962
|
+
screen: "signup" | "login" | "reset-password" | "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";
|
|
15927
15963
|
};
|
|
15928
15964
|
} & {
|
|
15929
15965
|
query: {
|