authhero 8.24.0 → 8.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/css/tailwind.css +1 -1
- package/dist/authhero.cjs +138 -138
- package/dist/authhero.css +1 -1
- package/dist/authhero.d.ts +667 -72
- package/dist/authhero.mjs +12181 -11479
- package/dist/tailwind.css +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/components/AuthCard.d.ts +17 -0
- package/dist/types/components/PasswordField.d.ts +18 -0
- package/dist/types/components/auth-form-styles.d.ts +39 -0
- package/dist/types/components/auth-forms.render.test.d.ts +1 -0
- package/dist/types/components/ui/input.d.ts +1 -0
- package/dist/types/index.d.ts +74 -68
- package/dist/types/routes/auth-api/index.d.ts +25 -25
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- 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/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +37 -37
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- 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/tenant-members.d.ts +304 -0
- package/dist/types/routes/management-api/tenant-members.test.d.ts +1 -0
- package/dist/types/routes/management-api/tenants.d.ts +9 -9
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +29 -0
- package/dist/types/routes/proxy-control-plane/scopes.d.ts +7 -0
- package/dist/types/routes/proxy-control-plane/tenant-members.d.ts +37 -0
- package/dist/types/routes/proxy-control-plane/verify.d.ts +26 -0
- package/dist/types/routes/proxy-control-plane/verify.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/dist/types/styles/tailwind.d.ts +1 -1
- package/dist/types/tenant-members/control-plane-roundtrip.test.d.ts +1 -0
- package/dist/types/tenant-members/local-backend.d.ts +43 -0
- package/dist/types/tenant-members/local-backend.test.d.ts +1 -0
- package/dist/types/tenant-members/remote-backend.d.ts +17 -0
- package/dist/types/tenant-members/types.d.ts +112 -0
- package/dist/types/tenant-members/wire.d.ts +28 -0
- package/dist/types/types/AuthHeroConfig.d.ts +37 -0
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -29,8 +29,14 @@ export { RegistrationFinalizerDestination } from "./helpers/outbox-destinations/
|
|
|
29
29
|
export { ControlPlaneSyncDestination, type ControlPlaneSyncDestinationOptions, } from "./helpers/outbox-destinations/control-plane-sync";
|
|
30
30
|
export { type SyncEvent, type SyncEntity, type SyncOp, CONTROL_PLANE_SYNC_EVENT_PREFIX, } from "./helpers/control-plane-sync-events";
|
|
31
31
|
export { createApplySyncEvents, type CreateApplySyncEventsOptions, } from "./routes/proxy-control-plane";
|
|
32
|
-
export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, } from "./routes/proxy-control-plane/scopes";
|
|
32
|
+
export { CONTROL_PLANE_SYNC_SCOPE, CONTROL_PLANE_CUSTOM_DOMAINS_SCOPE, CONTROL_PLANE_TENANT_MEMBERS_SCOPE, } from "./routes/proxy-control-plane/scopes";
|
|
33
33
|
export { createControlPlaneCustomDomainsAdapter, CONTROL_PLANE_CUSTOM_DOMAINS_PATH, type ControlPlaneCustomDomainsOptions, } from "./adapters/control-plane-custom-domains";
|
|
34
|
+
export { createTenantMembersControlPlaneApp, type TenantMembersControlPlaneOptions, } from "./routes/proxy-control-plane/tenant-members";
|
|
35
|
+
export { createTenantMembersRoutes, type GetTenantMembersBackend, } from "./routes/management-api/tenant-members";
|
|
36
|
+
export { createLocalTenantMembersBackend, type LocalTenantMembersBackendOptions, } from "./tenant-members/local-backend";
|
|
37
|
+
export { createControlPlaneTenantMembersAdapter, type ControlPlaneTenantMembersOptions, } from "./tenant-members/remote-backend";
|
|
38
|
+
export { CONTROL_PLANE_TENANT_MEMBERS_PATH } from "./tenant-members/wire";
|
|
39
|
+
export { type TenantMembersBackend, type TenantMember, type TenantMembersListResult, type TenantInvitation, type TenantInvitationInput, type TenantRole, type TenantMembersPageParams, TenantMembersNotFoundError, TenantOrganizationNotFoundError, TenantInvitationNotFoundError, } from "./tenant-members/types";
|
|
34
40
|
export { createServiceTokenCore, type CreateServiceTokenCoreParams, type ServiceTokenResponse, } from "./helpers/service-token";
|
|
35
41
|
export { createServiceBindingFetch, type ServiceBindingFetcher, } from "@authhero/proxy";
|
|
36
42
|
export { createControlPlaneClient, type ControlPlaneClient, type ControlPlaneClientOptions, type ControlPlaneRequest, type ControlPlaneResponse, type GetControlPlaneToken, } from "./helpers/control-plane-client";
|
|
@@ -156,7 +162,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
156
162
|
};
|
|
157
163
|
} & {
|
|
158
164
|
json: {
|
|
159
|
-
type: "
|
|
165
|
+
type: "email" | "passkey" | "push" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
160
166
|
phone_number?: string | undefined;
|
|
161
167
|
totp_secret?: string | undefined;
|
|
162
168
|
credential_id?: string | undefined;
|
|
@@ -296,7 +302,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
296
302
|
};
|
|
297
303
|
};
|
|
298
304
|
output: {
|
|
299
|
-
name: "
|
|
305
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
300
306
|
enabled: boolean;
|
|
301
307
|
trial_expired?: boolean | undefined;
|
|
302
308
|
}[];
|
|
@@ -451,7 +457,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
451
457
|
$get: {
|
|
452
458
|
input: {
|
|
453
459
|
param: {
|
|
454
|
-
factor_name: "
|
|
460
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
455
461
|
};
|
|
456
462
|
} & {
|
|
457
463
|
header: {
|
|
@@ -459,7 +465,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
459
465
|
};
|
|
460
466
|
};
|
|
461
467
|
output: {
|
|
462
|
-
name: "
|
|
468
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
463
469
|
enabled: boolean;
|
|
464
470
|
trial_expired?: boolean | undefined;
|
|
465
471
|
};
|
|
@@ -472,7 +478,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
472
478
|
$put: {
|
|
473
479
|
input: {
|
|
474
480
|
param: {
|
|
475
|
-
factor_name: "
|
|
481
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
476
482
|
};
|
|
477
483
|
} & {
|
|
478
484
|
header: {
|
|
@@ -484,7 +490,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
484
490
|
};
|
|
485
491
|
};
|
|
486
492
|
output: {
|
|
487
|
-
name: "
|
|
493
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
488
494
|
enabled: boolean;
|
|
489
495
|
trial_expired?: boolean | undefined;
|
|
490
496
|
};
|
|
@@ -1263,9 +1269,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1263
1269
|
email?: string | undefined;
|
|
1264
1270
|
};
|
|
1265
1271
|
id?: string | undefined;
|
|
1266
|
-
connection_id?: string | undefined;
|
|
1267
1272
|
app_metadata?: Record<string, any> | undefined;
|
|
1268
1273
|
user_metadata?: Record<string, any> | undefined;
|
|
1274
|
+
connection_id?: string | undefined;
|
|
1269
1275
|
roles?: string[] | undefined;
|
|
1270
1276
|
ttl_sec?: number | undefined;
|
|
1271
1277
|
send_invitation_email?: boolean | undefined;
|
|
@@ -6977,7 +6983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6977
6983
|
};
|
|
6978
6984
|
};
|
|
6979
6985
|
output: {
|
|
6980
|
-
prompt: "
|
|
6986
|
+
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";
|
|
6981
6987
|
language: string;
|
|
6982
6988
|
}[];
|
|
6983
6989
|
outputFormat: "json";
|
|
@@ -7015,7 +7021,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7015
7021
|
$get: {
|
|
7016
7022
|
input: {
|
|
7017
7023
|
param: {
|
|
7018
|
-
prompt: "
|
|
7024
|
+
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";
|
|
7019
7025
|
language: string;
|
|
7020
7026
|
};
|
|
7021
7027
|
} & {
|
|
@@ -7037,7 +7043,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7037
7043
|
$put: {
|
|
7038
7044
|
input: {
|
|
7039
7045
|
param: {
|
|
7040
|
-
prompt: "
|
|
7046
|
+
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";
|
|
7041
7047
|
language: string;
|
|
7042
7048
|
};
|
|
7043
7049
|
} & {
|
|
@@ -7061,7 +7067,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7061
7067
|
$delete: {
|
|
7062
7068
|
input: {
|
|
7063
7069
|
param: {
|
|
7064
|
-
prompt: "
|
|
7070
|
+
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";
|
|
7065
7071
|
language: string;
|
|
7066
7072
|
};
|
|
7067
7073
|
} & {
|
|
@@ -8874,7 +8880,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8874
8880
|
created_at: string;
|
|
8875
8881
|
updated_at: string;
|
|
8876
8882
|
name: string;
|
|
8877
|
-
provider: "auth0" | "
|
|
8883
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8878
8884
|
connection: string;
|
|
8879
8885
|
enabled: boolean;
|
|
8880
8886
|
credentials: {
|
|
@@ -8906,7 +8912,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8906
8912
|
created_at: string;
|
|
8907
8913
|
updated_at: string;
|
|
8908
8914
|
name: string;
|
|
8909
|
-
provider: "auth0" | "
|
|
8915
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8910
8916
|
connection: string;
|
|
8911
8917
|
enabled: boolean;
|
|
8912
8918
|
credentials: {
|
|
@@ -8932,7 +8938,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8932
8938
|
} & {
|
|
8933
8939
|
json: {
|
|
8934
8940
|
name: string;
|
|
8935
|
-
provider: "auth0" | "
|
|
8941
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8936
8942
|
connection: string;
|
|
8937
8943
|
credentials: {
|
|
8938
8944
|
domain: string;
|
|
@@ -8949,7 +8955,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8949
8955
|
created_at: string;
|
|
8950
8956
|
updated_at: string;
|
|
8951
8957
|
name: string;
|
|
8952
|
-
provider: "auth0" | "
|
|
8958
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8953
8959
|
connection: string;
|
|
8954
8960
|
enabled: boolean;
|
|
8955
8961
|
credentials: {
|
|
@@ -8980,7 +8986,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8980
8986
|
json: {
|
|
8981
8987
|
id?: string | undefined;
|
|
8982
8988
|
name?: string | undefined;
|
|
8983
|
-
provider?: "auth0" | "
|
|
8989
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8984
8990
|
connection?: string | undefined;
|
|
8985
8991
|
enabled?: boolean | undefined;
|
|
8986
8992
|
credentials?: {
|
|
@@ -8996,7 +9002,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8996
9002
|
created_at: string;
|
|
8997
9003
|
updated_at: string;
|
|
8998
9004
|
name: string;
|
|
8999
|
-
provider: "auth0" | "
|
|
9005
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9000
9006
|
connection: string;
|
|
9001
9007
|
enabled: boolean;
|
|
9002
9008
|
credentials: {
|
|
@@ -9214,7 +9220,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9214
9220
|
};
|
|
9215
9221
|
};
|
|
9216
9222
|
output: {
|
|
9217
|
-
type: "
|
|
9223
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9218
9224
|
date: string;
|
|
9219
9225
|
isMobile: boolean;
|
|
9220
9226
|
log_id: string;
|
|
@@ -9253,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9253
9259
|
limit: number;
|
|
9254
9260
|
length: number;
|
|
9255
9261
|
logs: {
|
|
9256
|
-
type: "
|
|
9262
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9257
9263
|
date: string;
|
|
9258
9264
|
isMobile: boolean;
|
|
9259
9265
|
log_id: string;
|
|
@@ -9292,7 +9298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9292
9298
|
next?: string | undefined;
|
|
9293
9299
|
} | {
|
|
9294
9300
|
logs: {
|
|
9295
|
-
type: "
|
|
9301
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9296
9302
|
date: string;
|
|
9297
9303
|
isMobile: boolean;
|
|
9298
9304
|
log_id: string;
|
|
@@ -9346,7 +9352,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9346
9352
|
};
|
|
9347
9353
|
};
|
|
9348
9354
|
output: {
|
|
9349
|
-
type: "
|
|
9355
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9350
9356
|
date: string;
|
|
9351
9357
|
isMobile: boolean;
|
|
9352
9358
|
log_id: string;
|
|
@@ -9757,7 +9763,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9757
9763
|
addons?: {
|
|
9758
9764
|
[x: string]: any;
|
|
9759
9765
|
} | undefined;
|
|
9760
|
-
token_endpoint_auth_method?: "
|
|
9766
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9761
9767
|
client_metadata?: {
|
|
9762
9768
|
[x: string]: string;
|
|
9763
9769
|
} | undefined;
|
|
@@ -9859,7 +9865,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9859
9865
|
addons?: {
|
|
9860
9866
|
[x: string]: any;
|
|
9861
9867
|
} | undefined;
|
|
9862
|
-
token_endpoint_auth_method?: "
|
|
9868
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9863
9869
|
client_metadata?: {
|
|
9864
9870
|
[x: string]: string;
|
|
9865
9871
|
} | undefined;
|
|
@@ -9961,7 +9967,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9961
9967
|
addons?: {
|
|
9962
9968
|
[x: string]: any;
|
|
9963
9969
|
} | undefined;
|
|
9964
|
-
token_endpoint_auth_method?: "
|
|
9970
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9965
9971
|
client_metadata?: {
|
|
9966
9972
|
[x: string]: string;
|
|
9967
9973
|
} | undefined;
|
|
@@ -10078,7 +10084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10078
10084
|
addons?: {
|
|
10079
10085
|
[x: string]: any;
|
|
10080
10086
|
} | undefined;
|
|
10081
|
-
token_endpoint_auth_method?: "
|
|
10087
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10082
10088
|
client_metadata?: {
|
|
10083
10089
|
[x: string]: string;
|
|
10084
10090
|
} | undefined;
|
|
@@ -10196,7 +10202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10196
10202
|
custom_login_page_preview?: string | undefined;
|
|
10197
10203
|
form_template?: string | undefined;
|
|
10198
10204
|
addons?: Record<string, any> | undefined;
|
|
10199
|
-
token_endpoint_auth_method?: "
|
|
10205
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10200
10206
|
client_metadata?: Record<string, string> | undefined;
|
|
10201
10207
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10202
10208
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10282,7 +10288,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10282
10288
|
addons?: {
|
|
10283
10289
|
[x: string]: any;
|
|
10284
10290
|
} | undefined;
|
|
10285
|
-
token_endpoint_auth_method?: "
|
|
10291
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10286
10292
|
client_metadata?: {
|
|
10287
10293
|
[x: string]: string;
|
|
10288
10294
|
} | undefined;
|
|
@@ -10379,7 +10385,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10379
10385
|
custom_login_page_preview?: string | undefined;
|
|
10380
10386
|
form_template?: string | undefined;
|
|
10381
10387
|
addons?: Record<string, any> | undefined;
|
|
10382
|
-
token_endpoint_auth_method?: "
|
|
10388
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10383
10389
|
client_metadata?: Record<string, string> | undefined;
|
|
10384
10390
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10385
10391
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10465,7 +10471,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10465
10471
|
addons?: {
|
|
10466
10472
|
[x: string]: any;
|
|
10467
10473
|
} | undefined;
|
|
10468
|
-
token_endpoint_auth_method?: "
|
|
10474
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10469
10475
|
client_metadata?: {
|
|
10470
10476
|
[x: string]: string;
|
|
10471
10477
|
} | undefined;
|
|
@@ -11801,7 +11807,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11801
11807
|
};
|
|
11802
11808
|
};
|
|
11803
11809
|
output: {
|
|
11804
|
-
type: "
|
|
11810
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11805
11811
|
date: string;
|
|
11806
11812
|
isMobile: boolean;
|
|
11807
11813
|
log_id: string;
|
|
@@ -11840,7 +11846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11840
11846
|
limit: number;
|
|
11841
11847
|
length: number;
|
|
11842
11848
|
logs: {
|
|
11843
|
-
type: "
|
|
11849
|
+
type: "sapi" | "fn" | "i" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11844
11850
|
date: string;
|
|
11845
11851
|
isMobile: boolean;
|
|
11846
11852
|
log_id: string;
|
|
@@ -12684,7 +12690,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12684
12690
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12685
12691
|
custom_domain_id: string;
|
|
12686
12692
|
primary: boolean;
|
|
12687
|
-
status: "
|
|
12693
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12688
12694
|
verification_method?: "txt" | undefined;
|
|
12689
12695
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12690
12696
|
domain_metadata?: {
|
|
@@ -12725,7 +12731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12725
12731
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12726
12732
|
custom_domain_id: string;
|
|
12727
12733
|
primary: boolean;
|
|
12728
|
-
status: "
|
|
12734
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12729
12735
|
verification_method?: "txt" | undefined;
|
|
12730
12736
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12731
12737
|
domain_metadata?: {
|
|
@@ -12789,7 +12795,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12789
12795
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12790
12796
|
custom_domain_id: string;
|
|
12791
12797
|
primary: boolean;
|
|
12792
|
-
status: "
|
|
12798
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12793
12799
|
verification_method?: "txt" | undefined;
|
|
12794
12800
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12795
12801
|
domain_metadata?: {
|
|
@@ -12836,7 +12842,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12836
12842
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12837
12843
|
custom_domain_id: string;
|
|
12838
12844
|
primary: boolean;
|
|
12839
|
-
status: "
|
|
12845
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12840
12846
|
verification_method?: "txt" | undefined;
|
|
12841
12847
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12842
12848
|
domain_metadata?: {
|
|
@@ -12882,7 +12888,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12882
12888
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12883
12889
|
custom_domain_id: string;
|
|
12884
12890
|
primary: boolean;
|
|
12885
|
-
status: "
|
|
12891
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12886
12892
|
verification_method?: "txt" | undefined;
|
|
12887
12893
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12888
12894
|
domain_metadata?: {
|
|
@@ -12923,7 +12929,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12923
12929
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12924
12930
|
custom_domain_id: string;
|
|
12925
12931
|
primary: boolean;
|
|
12926
|
-
status: "
|
|
12932
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12927
12933
|
verification_method?: "txt" | undefined;
|
|
12928
12934
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12929
12935
|
domain_metadata?: {
|
|
@@ -14624,7 +14630,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14624
14630
|
scope?: string | undefined;
|
|
14625
14631
|
grant_types?: string[] | undefined;
|
|
14626
14632
|
response_types?: string[] | undefined;
|
|
14627
|
-
token_endpoint_auth_method?: "
|
|
14633
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14628
14634
|
jwks_uri?: string | undefined;
|
|
14629
14635
|
jwks?: Record<string, unknown> | undefined;
|
|
14630
14636
|
software_id?: string | undefined;
|
|
@@ -14713,7 +14719,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14713
14719
|
scope?: string | undefined;
|
|
14714
14720
|
grant_types?: string[] | undefined;
|
|
14715
14721
|
response_types?: string[] | undefined;
|
|
14716
|
-
token_endpoint_auth_method?: "
|
|
14722
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14717
14723
|
jwks_uri?: string | undefined;
|
|
14718
14724
|
jwks?: Record<string, unknown> | undefined;
|
|
14719
14725
|
software_id?: string | undefined;
|
|
@@ -15059,17 +15065,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15059
15065
|
email: string;
|
|
15060
15066
|
send: "code" | "link";
|
|
15061
15067
|
authParams: {
|
|
15062
|
-
audience?: string | undefined;
|
|
15063
15068
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15064
15069
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15065
15070
|
scope?: string | undefined;
|
|
15066
15071
|
username?: string | undefined;
|
|
15072
|
+
audience?: string | undefined;
|
|
15073
|
+
organization?: string | undefined;
|
|
15067
15074
|
state?: string | undefined;
|
|
15068
15075
|
nonce?: string | undefined;
|
|
15069
|
-
prompt?: string | undefined;
|
|
15070
15076
|
act_as?: string | undefined;
|
|
15071
15077
|
redirect_uri?: string | undefined;
|
|
15072
|
-
|
|
15078
|
+
prompt?: string | undefined;
|
|
15073
15079
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15074
15080
|
code_challenge?: string | undefined;
|
|
15075
15081
|
ui_locales?: string | undefined;
|
|
@@ -15095,17 +15101,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15095
15101
|
phone_number: string;
|
|
15096
15102
|
send: "code" | "link";
|
|
15097
15103
|
authParams: {
|
|
15098
|
-
audience?: string | undefined;
|
|
15099
15104
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15100
15105
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15101
15106
|
scope?: string | undefined;
|
|
15102
15107
|
username?: string | undefined;
|
|
15108
|
+
audience?: string | undefined;
|
|
15109
|
+
organization?: string | undefined;
|
|
15103
15110
|
state?: string | undefined;
|
|
15104
15111
|
nonce?: string | undefined;
|
|
15105
|
-
prompt?: string | undefined;
|
|
15106
15112
|
act_as?: string | undefined;
|
|
15107
15113
|
redirect_uri?: string | undefined;
|
|
15108
|
-
|
|
15114
|
+
prompt?: string | undefined;
|
|
15109
15115
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15110
15116
|
code_challenge?: string | undefined;
|
|
15111
15117
|
ui_locales?: string | undefined;
|
|
@@ -15239,14 +15245,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15239
15245
|
input: {
|
|
15240
15246
|
form: {
|
|
15241
15247
|
token: string;
|
|
15242
|
-
token_type_hint?: "
|
|
15248
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15243
15249
|
client_id?: string | undefined;
|
|
15244
15250
|
client_secret?: string | undefined;
|
|
15245
15251
|
};
|
|
15246
15252
|
} & {
|
|
15247
15253
|
json: {
|
|
15248
15254
|
token: string;
|
|
15249
|
-
token_type_hint?: "
|
|
15255
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15250
15256
|
client_id?: string | undefined;
|
|
15251
15257
|
client_secret?: string | undefined;
|
|
15252
15258
|
};
|
|
@@ -15258,14 +15264,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15258
15264
|
input: {
|
|
15259
15265
|
form: {
|
|
15260
15266
|
token: string;
|
|
15261
|
-
token_type_hint?: "
|
|
15267
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15262
15268
|
client_id?: string | undefined;
|
|
15263
15269
|
client_secret?: string | undefined;
|
|
15264
15270
|
};
|
|
15265
15271
|
} & {
|
|
15266
15272
|
json: {
|
|
15267
15273
|
token: string;
|
|
15268
|
-
token_type_hint?: "
|
|
15274
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15269
15275
|
client_id?: string | undefined;
|
|
15270
15276
|
client_secret?: string | undefined;
|
|
15271
15277
|
};
|
|
@@ -15280,14 +15286,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15280
15286
|
input: {
|
|
15281
15287
|
form: {
|
|
15282
15288
|
token: string;
|
|
15283
|
-
token_type_hint?: "
|
|
15289
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15284
15290
|
client_id?: string | undefined;
|
|
15285
15291
|
client_secret?: string | undefined;
|
|
15286
15292
|
};
|
|
15287
15293
|
} & {
|
|
15288
15294
|
json: {
|
|
15289
15295
|
token: string;
|
|
15290
|
-
token_type_hint?: "
|
|
15296
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15291
15297
|
client_id?: string | undefined;
|
|
15292
15298
|
client_secret?: string | undefined;
|
|
15293
15299
|
};
|
|
@@ -15337,7 +15343,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15337
15343
|
client_id: string;
|
|
15338
15344
|
username: string;
|
|
15339
15345
|
otp: string;
|
|
15340
|
-
realm: "
|
|
15346
|
+
realm: "email" | "sms";
|
|
15341
15347
|
} | {
|
|
15342
15348
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15343
15349
|
subject_token: string;
|
|
@@ -15384,7 +15390,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15384
15390
|
client_id: string;
|
|
15385
15391
|
username: string;
|
|
15386
15392
|
otp: string;
|
|
15387
|
-
realm: "
|
|
15393
|
+
realm: "email" | "sms";
|
|
15388
15394
|
} | {
|
|
15389
15395
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15390
15396
|
subject_token: string;
|
|
@@ -15436,7 +15442,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15436
15442
|
client_id: string;
|
|
15437
15443
|
username: string;
|
|
15438
15444
|
otp: string;
|
|
15439
|
-
realm: "
|
|
15445
|
+
realm: "email" | "sms";
|
|
15440
15446
|
} | {
|
|
15441
15447
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15442
15448
|
subject_token: string;
|
|
@@ -15483,7 +15489,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15483
15489
|
client_id: string;
|
|
15484
15490
|
username: string;
|
|
15485
15491
|
otp: string;
|
|
15486
|
-
realm: "
|
|
15492
|
+
realm: "email" | "sms";
|
|
15487
15493
|
} | {
|
|
15488
15494
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15489
15495
|
subject_token: string;
|
|
@@ -15543,7 +15549,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15543
15549
|
client_id: string;
|
|
15544
15550
|
username: string;
|
|
15545
15551
|
otp: string;
|
|
15546
|
-
realm: "
|
|
15552
|
+
realm: "email" | "sms";
|
|
15547
15553
|
} | {
|
|
15548
15554
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15549
15555
|
subject_token: string;
|
|
@@ -15590,7 +15596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15590
15596
|
client_id: string;
|
|
15591
15597
|
username: string;
|
|
15592
15598
|
otp: string;
|
|
15593
|
-
realm: "
|
|
15599
|
+
realm: "email" | "sms";
|
|
15594
15600
|
} | {
|
|
15595
15601
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15596
15602
|
subject_token: string;
|
|
@@ -15645,7 +15651,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15645
15651
|
client_id: string;
|
|
15646
15652
|
username: string;
|
|
15647
15653
|
otp: string;
|
|
15648
|
-
realm: "
|
|
15654
|
+
realm: "email" | "sms";
|
|
15649
15655
|
} | {
|
|
15650
15656
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15651
15657
|
subject_token: string;
|
|
@@ -15692,7 +15698,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15692
15698
|
client_id: string;
|
|
15693
15699
|
username: string;
|
|
15694
15700
|
otp: string;
|
|
15695
|
-
realm: "
|
|
15701
|
+
realm: "email" | "sms";
|
|
15696
15702
|
} | {
|
|
15697
15703
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15698
15704
|
subject_token: string;
|
|
@@ -15747,7 +15753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15747
15753
|
client_id: string;
|
|
15748
15754
|
username: string;
|
|
15749
15755
|
otp: string;
|
|
15750
|
-
realm: "
|
|
15756
|
+
realm: "email" | "sms";
|
|
15751
15757
|
} | {
|
|
15752
15758
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15753
15759
|
subject_token: string;
|
|
@@ -15794,7 +15800,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15794
15800
|
client_id: string;
|
|
15795
15801
|
username: string;
|
|
15796
15802
|
otp: string;
|
|
15797
|
-
realm: "
|
|
15803
|
+
realm: "email" | "sms";
|
|
15798
15804
|
} | {
|
|
15799
15805
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15800
15806
|
subject_token: string;
|
|
@@ -15823,7 +15829,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15823
15829
|
output: {
|
|
15824
15830
|
keys: {
|
|
15825
15831
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
15826
|
-
kty: "
|
|
15832
|
+
kty: "RSA" | "EC" | "oct";
|
|
15827
15833
|
kid?: string | undefined;
|
|
15828
15834
|
use?: "sig" | "enc" | undefined;
|
|
15829
15835
|
n?: string | undefined;
|
|
@@ -17018,7 +17024,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17018
17024
|
$get: {
|
|
17019
17025
|
input: {
|
|
17020
17026
|
param: {
|
|
17021
|
-
screen: "signup" | "
|
|
17027
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
|
|
17022
17028
|
};
|
|
17023
17029
|
} & {
|
|
17024
17030
|
query: {
|
|
@@ -17034,7 +17040,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17034
17040
|
} | {
|
|
17035
17041
|
input: {
|
|
17036
17042
|
param: {
|
|
17037
|
-
screen: "signup" | "
|
|
17043
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
|
|
17038
17044
|
};
|
|
17039
17045
|
} & {
|
|
17040
17046
|
query: {
|
|
@@ -17050,7 +17056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17050
17056
|
} | {
|
|
17051
17057
|
input: {
|
|
17052
17058
|
param: {
|
|
17053
|
-
screen: "signup" | "
|
|
17059
|
+
screen: "signup" | "login" | "account" | "reset-password" | "consent" | "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";
|
|
17054
17060
|
};
|
|
17055
17061
|
} & {
|
|
17056
17062
|
query: {
|
|
@@ -17070,7 +17076,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17070
17076
|
$post: {
|
|
17071
17077
|
input: {
|
|
17072
17078
|
param: {
|
|
17073
|
-
screen: "signup" | "
|
|
17079
|
+
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";
|
|
17074
17080
|
};
|
|
17075
17081
|
} & {
|
|
17076
17082
|
query: {
|
|
@@ -17088,7 +17094,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17088
17094
|
} | {
|
|
17089
17095
|
input: {
|
|
17090
17096
|
param: {
|
|
17091
|
-
screen: "signup" | "
|
|
17097
|
+
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";
|
|
17092
17098
|
};
|
|
17093
17099
|
} & {
|
|
17094
17100
|
query: {
|