authhero 9.11.1 → 9.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/authhero-widget.esm.js +1 -1
- package/dist/assets/u/widget/{p-f94037cd.entry.js → p-74f95441.entry.js} +1 -1
- package/dist/authhero.cjs +313 -167
- package/dist/authhero.d.ts +122 -119
- package/dist/authhero.mjs +81419 -89178
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/emails/render.d.ts +2 -0
- package/dist/types/helpers/action-executions-cleanup.d.ts +6 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +2 -2
- package/dist/types/helpers/logging.d.ts +11 -3
- package/dist/types/helpers/reserved-claims.d.ts +2 -2
- package/dist/types/helpers/run-retention.d.ts +1 -1
- package/dist/types/helpers/saml.d.ts +1 -1
- package/dist/types/helpers/scopes-permissions.d.ts +16 -0
- package/dist/types/helpers/users-import/map.d.ts +14 -0
- package/dist/types/hooks/codehooks.d.ts +28 -1
- package/dist/types/index.d.ts +115 -115
- package/dist/types/routes/auth-api/index.d.ts +15 -15
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- 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/branding.d.ts +5 -5
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +6 -6
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +83 -83
- package/dist/types/routes/management-api/keys.d.ts +8 -8
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/organizations.d.ts +4 -4
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-operations.d.ts +1 -1
- package/dist/types/routes/management-api/tenants.d.ts +12 -12
- package/dist/types/routes/management-api/users.d.ts +14 -14
- package/dist/types/routes/universal-login/common.d.ts +6 -6
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- package/dist/types/routes/universal-login/identifier.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/routes/universal-login/u2-widget-page.d.ts +13 -42
- package/dist/types/routes/universal-login/universal-login-template.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/package.json +7 -7
package/dist/types/index.d.ts
CHANGED
|
@@ -293,7 +293,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
293
293
|
};
|
|
294
294
|
} & {
|
|
295
295
|
json: {
|
|
296
|
-
type: "
|
|
296
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
297
297
|
phone_number?: string | undefined;
|
|
298
298
|
totp_secret?: string | undefined;
|
|
299
299
|
credential_id?: string | undefined;
|
|
@@ -433,7 +433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
433
433
|
};
|
|
434
434
|
};
|
|
435
435
|
output: {
|
|
436
|
-
name: "
|
|
436
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
437
437
|
enabled: boolean;
|
|
438
438
|
trial_expired?: boolean | undefined;
|
|
439
439
|
}[];
|
|
@@ -588,7 +588,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
588
588
|
$get: {
|
|
589
589
|
input: {
|
|
590
590
|
param: {
|
|
591
|
-
factor_name: "
|
|
591
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
592
592
|
};
|
|
593
593
|
} & {
|
|
594
594
|
header: {
|
|
@@ -596,7 +596,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
596
596
|
};
|
|
597
597
|
};
|
|
598
598
|
output: {
|
|
599
|
-
name: "
|
|
599
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
600
600
|
enabled: boolean;
|
|
601
601
|
trial_expired?: boolean | undefined;
|
|
602
602
|
};
|
|
@@ -609,7 +609,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
609
609
|
$put: {
|
|
610
610
|
input: {
|
|
611
611
|
param: {
|
|
612
|
-
factor_name: "
|
|
612
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
613
613
|
};
|
|
614
614
|
} & {
|
|
615
615
|
header: {
|
|
@@ -621,7 +621,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
621
621
|
};
|
|
622
622
|
};
|
|
623
623
|
output: {
|
|
624
|
-
name: "
|
|
624
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
625
625
|
enabled: boolean;
|
|
626
626
|
trial_expired?: boolean | undefined;
|
|
627
627
|
};
|
|
@@ -1400,9 +1400,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1400
1400
|
email?: string | undefined;
|
|
1401
1401
|
};
|
|
1402
1402
|
id?: string | undefined;
|
|
1403
|
+
connection_id?: string | undefined;
|
|
1403
1404
|
app_metadata?: Record<string, any> | undefined;
|
|
1404
1405
|
user_metadata?: Record<string, any> | undefined;
|
|
1405
|
-
connection_id?: string | undefined;
|
|
1406
1406
|
roles?: string[] | undefined;
|
|
1407
1407
|
ttl_sec?: number | undefined;
|
|
1408
1408
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1588,8 +1588,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1588
1588
|
};
|
|
1589
1589
|
} & {
|
|
1590
1590
|
json: {
|
|
1591
|
-
show_as_button?: boolean | undefined;
|
|
1592
1591
|
assign_membership_on_login?: boolean | undefined;
|
|
1592
|
+
show_as_button?: boolean | undefined;
|
|
1593
1593
|
is_signup_enabled?: boolean | undefined;
|
|
1594
1594
|
};
|
|
1595
1595
|
};
|
|
@@ -7232,7 +7232,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7232
7232
|
};
|
|
7233
7233
|
};
|
|
7234
7234
|
output: {
|
|
7235
|
-
prompt: "
|
|
7235
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7236
7236
|
language: string;
|
|
7237
7237
|
}[];
|
|
7238
7238
|
outputFormat: "json";
|
|
@@ -7270,7 +7270,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7270
7270
|
$get: {
|
|
7271
7271
|
input: {
|
|
7272
7272
|
param: {
|
|
7273
|
-
prompt: "
|
|
7273
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7274
7274
|
language: string;
|
|
7275
7275
|
};
|
|
7276
7276
|
} & {
|
|
@@ -7292,7 +7292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7292
7292
|
$put: {
|
|
7293
7293
|
input: {
|
|
7294
7294
|
param: {
|
|
7295
|
-
prompt: "
|
|
7295
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7296
7296
|
language: string;
|
|
7297
7297
|
};
|
|
7298
7298
|
} & {
|
|
@@ -7316,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7316
7316
|
$delete: {
|
|
7317
7317
|
input: {
|
|
7318
7318
|
param: {
|
|
7319
|
-
prompt: "
|
|
7319
|
+
prompt: "common" | "login" | "signup" | "mfa" | "organizations" | "status" | "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" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
7320
7320
|
language: string;
|
|
7321
7321
|
};
|
|
7322
7322
|
} & {
|
|
@@ -9259,7 +9259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9259
9259
|
created_at: string;
|
|
9260
9260
|
updated_at: string;
|
|
9261
9261
|
name: string;
|
|
9262
|
-
provider: "auth0" | "
|
|
9262
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9263
9263
|
connection: string;
|
|
9264
9264
|
enabled: boolean;
|
|
9265
9265
|
credentials: {
|
|
@@ -9291,7 +9291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9291
9291
|
created_at: string;
|
|
9292
9292
|
updated_at: string;
|
|
9293
9293
|
name: string;
|
|
9294
|
-
provider: "auth0" | "
|
|
9294
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9295
9295
|
connection: string;
|
|
9296
9296
|
enabled: boolean;
|
|
9297
9297
|
credentials: {
|
|
@@ -9317,7 +9317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9317
9317
|
} & {
|
|
9318
9318
|
json: {
|
|
9319
9319
|
name: string;
|
|
9320
|
-
provider: "auth0" | "
|
|
9320
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9321
9321
|
connection: string;
|
|
9322
9322
|
credentials: {
|
|
9323
9323
|
domain: string;
|
|
@@ -9334,7 +9334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9334
9334
|
created_at: string;
|
|
9335
9335
|
updated_at: string;
|
|
9336
9336
|
name: string;
|
|
9337
|
-
provider: "auth0" | "
|
|
9337
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9338
9338
|
connection: string;
|
|
9339
9339
|
enabled: boolean;
|
|
9340
9340
|
credentials: {
|
|
@@ -9365,7 +9365,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9365
9365
|
json: {
|
|
9366
9366
|
id?: string | undefined;
|
|
9367
9367
|
name?: string | undefined;
|
|
9368
|
-
provider?: "auth0" | "
|
|
9368
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
9369
9369
|
connection?: string | undefined;
|
|
9370
9370
|
enabled?: boolean | undefined;
|
|
9371
9371
|
credentials?: {
|
|
@@ -9381,7 +9381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9381
9381
|
created_at: string;
|
|
9382
9382
|
updated_at: string;
|
|
9383
9383
|
name: string;
|
|
9384
|
-
provider: "auth0" | "
|
|
9384
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9385
9385
|
connection: string;
|
|
9386
9386
|
enabled: boolean;
|
|
9387
9387
|
credentials: {
|
|
@@ -9429,7 +9429,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9429
9429
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9430
9430
|
};
|
|
9431
9431
|
id: string;
|
|
9432
|
-
status: "
|
|
9432
|
+
status: "suspended" | "active" | "paused";
|
|
9433
9433
|
filters?: {
|
|
9434
9434
|
type: string;
|
|
9435
9435
|
name: string;
|
|
@@ -9461,7 +9461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9461
9461
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9462
9462
|
};
|
|
9463
9463
|
id: string;
|
|
9464
|
-
status: "
|
|
9464
|
+
status: "suspended" | "active" | "paused";
|
|
9465
9465
|
filters?: {
|
|
9466
9466
|
type: string;
|
|
9467
9467
|
name: string;
|
|
@@ -9486,7 +9486,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9486
9486
|
name: string;
|
|
9487
9487
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9488
9488
|
sink: Record<string, unknown>;
|
|
9489
|
-
status?: "
|
|
9489
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9490
9490
|
filters?: {
|
|
9491
9491
|
type: string;
|
|
9492
9492
|
name: string;
|
|
@@ -9501,7 +9501,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9501
9501
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9502
9502
|
};
|
|
9503
9503
|
id: string;
|
|
9504
|
-
status: "
|
|
9504
|
+
status: "suspended" | "active" | "paused";
|
|
9505
9505
|
filters?: {
|
|
9506
9506
|
type: string;
|
|
9507
9507
|
name: string;
|
|
@@ -9536,7 +9536,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9536
9536
|
}[] | undefined;
|
|
9537
9537
|
isPriority?: boolean | undefined;
|
|
9538
9538
|
id?: string | undefined;
|
|
9539
|
-
status?: "
|
|
9539
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9540
9540
|
created_at?: string | undefined;
|
|
9541
9541
|
updated_at?: string | undefined;
|
|
9542
9542
|
};
|
|
@@ -9548,7 +9548,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9548
9548
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9549
9549
|
};
|
|
9550
9550
|
id: string;
|
|
9551
|
-
status: "
|
|
9551
|
+
status: "suspended" | "active" | "paused";
|
|
9552
9552
|
filters?: {
|
|
9553
9553
|
type: string;
|
|
9554
9554
|
name: string;
|
|
@@ -9599,7 +9599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9599
9599
|
};
|
|
9600
9600
|
};
|
|
9601
9601
|
output: {
|
|
9602
|
-
type: "
|
|
9602
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9603
9603
|
date: string;
|
|
9604
9604
|
isMobile: boolean;
|
|
9605
9605
|
log_id: string;
|
|
@@ -9638,7 +9638,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9638
9638
|
limit: number;
|
|
9639
9639
|
length: number;
|
|
9640
9640
|
logs: {
|
|
9641
|
-
type: "
|
|
9641
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9642
9642
|
date: string;
|
|
9643
9643
|
isMobile: boolean;
|
|
9644
9644
|
log_id: string;
|
|
@@ -9677,7 +9677,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9677
9677
|
next?: string | undefined;
|
|
9678
9678
|
} | {
|
|
9679
9679
|
logs: {
|
|
9680
|
-
type: "
|
|
9680
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9681
9681
|
date: string;
|
|
9682
9682
|
isMobile: boolean;
|
|
9683
9683
|
log_id: string;
|
|
@@ -9731,7 +9731,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9731
9731
|
};
|
|
9732
9732
|
};
|
|
9733
9733
|
output: {
|
|
9734
|
-
type: "
|
|
9734
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9735
9735
|
date: string;
|
|
9736
9736
|
isMobile: boolean;
|
|
9737
9737
|
log_id: string;
|
|
@@ -9887,7 +9887,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9887
9887
|
audience?: string | undefined;
|
|
9888
9888
|
client_id?: string | undefined;
|
|
9889
9889
|
allow_any_organization?: string | undefined;
|
|
9890
|
-
subject_type?: "
|
|
9890
|
+
subject_type?: "user" | "client" | undefined;
|
|
9891
9891
|
};
|
|
9892
9892
|
} & {
|
|
9893
9893
|
header: {
|
|
@@ -9902,7 +9902,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9902
9902
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9903
9903
|
allow_any_organization?: boolean | undefined;
|
|
9904
9904
|
is_system?: boolean | undefined;
|
|
9905
|
-
subject_type?: "
|
|
9905
|
+
subject_type?: "user" | "client" | undefined;
|
|
9906
9906
|
authorization_details_types?: string[] | undefined;
|
|
9907
9907
|
created_at?: string | undefined;
|
|
9908
9908
|
updated_at?: string | undefined;
|
|
@@ -9918,7 +9918,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9918
9918
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9919
9919
|
allow_any_organization?: boolean | undefined;
|
|
9920
9920
|
is_system?: boolean | undefined;
|
|
9921
|
-
subject_type?: "
|
|
9921
|
+
subject_type?: "user" | "client" | undefined;
|
|
9922
9922
|
authorization_details_types?: string[] | undefined;
|
|
9923
9923
|
created_at?: string | undefined;
|
|
9924
9924
|
updated_at?: string | undefined;
|
|
@@ -9934,7 +9934,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9934
9934
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9935
9935
|
allow_any_organization?: boolean | undefined;
|
|
9936
9936
|
is_system?: boolean | undefined;
|
|
9937
|
-
subject_type?: "
|
|
9937
|
+
subject_type?: "user" | "client" | undefined;
|
|
9938
9938
|
authorization_details_types?: string[] | undefined;
|
|
9939
9939
|
created_at?: string | undefined;
|
|
9940
9940
|
updated_at?: string | undefined;
|
|
@@ -9965,7 +9965,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9965
9965
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9966
9966
|
allow_any_organization?: boolean | undefined;
|
|
9967
9967
|
is_system?: boolean | undefined;
|
|
9968
|
-
subject_type?: "
|
|
9968
|
+
subject_type?: "user" | "client" | undefined;
|
|
9969
9969
|
authorization_details_types?: string[] | undefined;
|
|
9970
9970
|
created_at?: string | undefined;
|
|
9971
9971
|
updated_at?: string | undefined;
|
|
@@ -10010,7 +10010,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10010
10010
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
10011
10011
|
allow_any_organization?: boolean | undefined;
|
|
10012
10012
|
is_system?: boolean | undefined;
|
|
10013
|
-
subject_type?: "
|
|
10013
|
+
subject_type?: "user" | "client" | undefined;
|
|
10014
10014
|
authorization_details_types?: string[] | undefined;
|
|
10015
10015
|
};
|
|
10016
10016
|
};
|
|
@@ -10022,7 +10022,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10022
10022
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
10023
10023
|
allow_any_organization?: boolean | undefined;
|
|
10024
10024
|
is_system?: boolean | undefined;
|
|
10025
|
-
subject_type?: "
|
|
10025
|
+
subject_type?: "user" | "client" | undefined;
|
|
10026
10026
|
authorization_details_types?: string[] | undefined;
|
|
10027
10027
|
created_at?: string | undefined;
|
|
10028
10028
|
updated_at?: string | undefined;
|
|
@@ -10046,7 +10046,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10046
10046
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
10047
10047
|
allow_any_organization?: boolean | undefined;
|
|
10048
10048
|
is_system?: boolean | undefined;
|
|
10049
|
-
subject_type?: "
|
|
10049
|
+
subject_type?: "user" | "client" | undefined;
|
|
10050
10050
|
authorization_details_types?: string[] | undefined;
|
|
10051
10051
|
};
|
|
10052
10052
|
};
|
|
@@ -10058,7 +10058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10058
10058
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
10059
10059
|
allow_any_organization?: boolean | undefined;
|
|
10060
10060
|
is_system?: boolean | undefined;
|
|
10061
|
-
subject_type?: "
|
|
10061
|
+
subject_type?: "user" | "client" | undefined;
|
|
10062
10062
|
authorization_details_types?: string[] | undefined;
|
|
10063
10063
|
created_at?: string | undefined;
|
|
10064
10064
|
updated_at?: string | undefined;
|
|
@@ -10142,7 +10142,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10142
10142
|
addons?: {
|
|
10143
10143
|
[x: string]: any;
|
|
10144
10144
|
} | undefined;
|
|
10145
|
-
token_endpoint_auth_method?: "
|
|
10145
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10146
10146
|
client_metadata?: {
|
|
10147
10147
|
[x: string]: string;
|
|
10148
10148
|
} | undefined;
|
|
@@ -10244,7 +10244,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10244
10244
|
addons?: {
|
|
10245
10245
|
[x: string]: any;
|
|
10246
10246
|
} | undefined;
|
|
10247
|
-
token_endpoint_auth_method?: "
|
|
10247
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10248
10248
|
client_metadata?: {
|
|
10249
10249
|
[x: string]: string;
|
|
10250
10250
|
} | undefined;
|
|
@@ -10346,7 +10346,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10346
10346
|
addons?: {
|
|
10347
10347
|
[x: string]: any;
|
|
10348
10348
|
} | undefined;
|
|
10349
|
-
token_endpoint_auth_method?: "
|
|
10349
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10350
10350
|
client_metadata?: {
|
|
10351
10351
|
[x: string]: string;
|
|
10352
10352
|
} | undefined;
|
|
@@ -10463,7 +10463,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10463
10463
|
addons?: {
|
|
10464
10464
|
[x: string]: any;
|
|
10465
10465
|
} | undefined;
|
|
10466
|
-
token_endpoint_auth_method?: "
|
|
10466
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10467
10467
|
client_metadata?: {
|
|
10468
10468
|
[x: string]: string;
|
|
10469
10469
|
} | undefined;
|
|
@@ -10581,7 +10581,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10581
10581
|
custom_login_page_preview?: string | undefined;
|
|
10582
10582
|
form_template?: string | undefined;
|
|
10583
10583
|
addons?: Record<string, any> | undefined;
|
|
10584
|
-
token_endpoint_auth_method?: "
|
|
10584
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10585
10585
|
client_metadata?: Record<string, string> | undefined;
|
|
10586
10586
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10587
10587
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10667,7 +10667,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10667
10667
|
addons?: {
|
|
10668
10668
|
[x: string]: any;
|
|
10669
10669
|
} | undefined;
|
|
10670
|
-
token_endpoint_auth_method?: "
|
|
10670
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10671
10671
|
client_metadata?: {
|
|
10672
10672
|
[x: string]: string;
|
|
10673
10673
|
} | undefined;
|
|
@@ -10764,7 +10764,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10764
10764
|
custom_login_page_preview?: string | undefined;
|
|
10765
10765
|
form_template?: string | undefined;
|
|
10766
10766
|
addons?: Record<string, any> | undefined;
|
|
10767
|
-
token_endpoint_auth_method?: "
|
|
10767
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10768
10768
|
client_metadata?: Record<string, string> | undefined;
|
|
10769
10769
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10770
10770
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10850,7 +10850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10850
10850
|
addons?: {
|
|
10851
10851
|
[x: string]: any;
|
|
10852
10852
|
} | undefined;
|
|
10853
|
-
token_endpoint_auth_method?: "
|
|
10853
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10854
10854
|
client_metadata?: {
|
|
10855
10855
|
[x: string]: string;
|
|
10856
10856
|
} | undefined;
|
|
@@ -11310,20 +11310,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11310
11310
|
};
|
|
11311
11311
|
};
|
|
11312
11312
|
output: {
|
|
11313
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11313
11314
|
kid: string;
|
|
11314
11315
|
cert: string;
|
|
11315
11316
|
fingerprint: string;
|
|
11316
11317
|
thumbprint: string;
|
|
11317
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11318
11318
|
tenant_id?: string | undefined;
|
|
11319
11319
|
connection?: string | undefined;
|
|
11320
|
-
current?: boolean | undefined;
|
|
11321
11320
|
next?: boolean | undefined;
|
|
11321
|
+
revoked_at?: string | undefined;
|
|
11322
|
+
current?: boolean | undefined;
|
|
11322
11323
|
previous?: boolean | undefined;
|
|
11323
11324
|
current_since?: string | undefined;
|
|
11324
11325
|
current_until?: string | undefined;
|
|
11325
11326
|
revoked?: boolean | undefined;
|
|
11326
|
-
revoked_at?: string | undefined;
|
|
11327
11327
|
expires_at?: string | undefined;
|
|
11328
11328
|
expired?: boolean | undefined;
|
|
11329
11329
|
inherited?: boolean | undefined;
|
|
@@ -11349,20 +11349,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11349
11349
|
};
|
|
11350
11350
|
};
|
|
11351
11351
|
output: {
|
|
11352
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11352
11353
|
kid: string;
|
|
11353
11354
|
cert: string;
|
|
11354
11355
|
fingerprint: string;
|
|
11355
11356
|
thumbprint: string;
|
|
11356
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11357
11357
|
tenant_id?: string | undefined;
|
|
11358
11358
|
connection?: string | undefined;
|
|
11359
|
-
current?: boolean | undefined;
|
|
11360
11359
|
next?: boolean | undefined;
|
|
11360
|
+
revoked_at?: string | undefined;
|
|
11361
|
+
current?: boolean | undefined;
|
|
11361
11362
|
previous?: boolean | undefined;
|
|
11362
11363
|
current_since?: string | undefined;
|
|
11363
11364
|
current_until?: string | undefined;
|
|
11364
11365
|
revoked?: boolean | undefined;
|
|
11365
|
-
revoked_at?: string | undefined;
|
|
11366
11366
|
expires_at?: string | undefined;
|
|
11367
11367
|
expired?: boolean | undefined;
|
|
11368
11368
|
inherited?: boolean | undefined;
|
|
@@ -11387,20 +11387,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11387
11387
|
};
|
|
11388
11388
|
};
|
|
11389
11389
|
output: {
|
|
11390
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11390
11391
|
kid: string;
|
|
11391
11392
|
cert: string;
|
|
11392
11393
|
fingerprint: string;
|
|
11393
11394
|
thumbprint: string;
|
|
11394
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11395
11395
|
tenant_id?: string | undefined;
|
|
11396
11396
|
connection?: string | undefined;
|
|
11397
|
-
current?: boolean | undefined;
|
|
11398
11397
|
next?: boolean | undefined;
|
|
11398
|
+
revoked_at?: string | undefined;
|
|
11399
|
+
current?: boolean | undefined;
|
|
11399
11400
|
previous?: boolean | undefined;
|
|
11400
11401
|
current_since?: string | undefined;
|
|
11401
11402
|
current_until?: string | undefined;
|
|
11402
11403
|
revoked?: boolean | undefined;
|
|
11403
|
-
revoked_at?: string | undefined;
|
|
11404
11404
|
expires_at?: string | undefined;
|
|
11405
11405
|
expired?: boolean | undefined;
|
|
11406
11406
|
inherited?: boolean | undefined;
|
|
@@ -11427,20 +11427,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11427
11427
|
};
|
|
11428
11428
|
};
|
|
11429
11429
|
output: {
|
|
11430
|
+
type: "jwt_signing" | "saml_encryption";
|
|
11430
11431
|
kid: string;
|
|
11431
11432
|
cert: string;
|
|
11432
11433
|
fingerprint: string;
|
|
11433
11434
|
thumbprint: string;
|
|
11434
|
-
type: "jwt_signing" | "saml_encryption";
|
|
11435
11435
|
tenant_id?: string | undefined;
|
|
11436
11436
|
connection?: string | undefined;
|
|
11437
|
-
current?: boolean | undefined;
|
|
11438
11437
|
next?: boolean | undefined;
|
|
11438
|
+
revoked_at?: string | undefined;
|
|
11439
|
+
current?: boolean | undefined;
|
|
11439
11440
|
previous?: boolean | undefined;
|
|
11440
11441
|
current_since?: string | undefined;
|
|
11441
11442
|
current_until?: string | undefined;
|
|
11442
11443
|
revoked?: boolean | undefined;
|
|
11443
|
-
revoked_at?: string | undefined;
|
|
11444
11444
|
expires_at?: string | undefined;
|
|
11445
11445
|
expired?: boolean | undefined;
|
|
11446
11446
|
inherited?: boolean | undefined;
|
|
@@ -12285,8 +12285,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12285
12285
|
};
|
|
12286
12286
|
};
|
|
12287
12287
|
output: {
|
|
12288
|
-
created_at: string;
|
|
12289
12288
|
id: string;
|
|
12289
|
+
created_at: string;
|
|
12290
12290
|
client_id: string;
|
|
12291
12291
|
user_id: string;
|
|
12292
12292
|
rotating: boolean;
|
|
@@ -12303,24 +12303,21 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12303
12303
|
audience: string;
|
|
12304
12304
|
scopes: string;
|
|
12305
12305
|
}[];
|
|
12306
|
-
organization?: string | undefined;
|
|
12307
12306
|
revoked_at?: string | undefined;
|
|
12308
12307
|
expires_at?: string | undefined;
|
|
12308
|
+
idle_expires_at?: string | undefined;
|
|
12309
12309
|
session_id?: string | undefined;
|
|
12310
|
+
organization?: string | undefined;
|
|
12310
12311
|
auth_connection?: string | undefined;
|
|
12311
12312
|
auth_strategy?: {
|
|
12312
12313
|
strategy: string;
|
|
12313
12314
|
strategy_type: string;
|
|
12314
12315
|
} | undefined;
|
|
12315
|
-
idle_expires_at?: string | undefined;
|
|
12316
12316
|
last_exchanged_at?: string | undefined;
|
|
12317
12317
|
}[] | {
|
|
12318
|
-
start: number;
|
|
12319
|
-
limit: number;
|
|
12320
|
-
length: number;
|
|
12321
12318
|
tokens: {
|
|
12322
|
-
created_at: string;
|
|
12323
12319
|
id: string;
|
|
12320
|
+
created_at: string;
|
|
12324
12321
|
client_id: string;
|
|
12325
12322
|
user_id: string;
|
|
12326
12323
|
rotating: boolean;
|
|
@@ -12337,24 +12334,26 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12337
12334
|
audience: string;
|
|
12338
12335
|
scopes: string;
|
|
12339
12336
|
}[];
|
|
12340
|
-
organization?: string | undefined;
|
|
12341
12337
|
revoked_at?: string | undefined;
|
|
12342
12338
|
expires_at?: string | undefined;
|
|
12339
|
+
idle_expires_at?: string | undefined;
|
|
12343
12340
|
session_id?: string | undefined;
|
|
12341
|
+
organization?: string | undefined;
|
|
12344
12342
|
auth_connection?: string | undefined;
|
|
12345
12343
|
auth_strategy?: {
|
|
12346
12344
|
strategy: string;
|
|
12347
12345
|
strategy_type: string;
|
|
12348
12346
|
} | undefined;
|
|
12349
|
-
idle_expires_at?: string | undefined;
|
|
12350
12347
|
last_exchanged_at?: string | undefined;
|
|
12351
12348
|
}[];
|
|
12352
|
-
total?: number | undefined;
|
|
12353
12349
|
next?: string | undefined;
|
|
12354
12350
|
} | {
|
|
12351
|
+
start: number;
|
|
12352
|
+
limit: number;
|
|
12353
|
+
length: number;
|
|
12355
12354
|
tokens: {
|
|
12356
|
-
created_at: string;
|
|
12357
12355
|
id: string;
|
|
12356
|
+
created_at: string;
|
|
12358
12357
|
client_id: string;
|
|
12359
12358
|
user_id: string;
|
|
12360
12359
|
rotating: boolean;
|
|
@@ -12371,18 +12370,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12371
12370
|
audience: string;
|
|
12372
12371
|
scopes: string;
|
|
12373
12372
|
}[];
|
|
12374
|
-
organization?: string | undefined;
|
|
12375
12373
|
revoked_at?: string | undefined;
|
|
12376
12374
|
expires_at?: string | undefined;
|
|
12375
|
+
idle_expires_at?: string | undefined;
|
|
12377
12376
|
session_id?: string | undefined;
|
|
12377
|
+
organization?: string | undefined;
|
|
12378
12378
|
auth_connection?: string | undefined;
|
|
12379
12379
|
auth_strategy?: {
|
|
12380
12380
|
strategy: string;
|
|
12381
12381
|
strategy_type: string;
|
|
12382
12382
|
} | undefined;
|
|
12383
|
-
idle_expires_at?: string | undefined;
|
|
12384
12383
|
last_exchanged_at?: string | undefined;
|
|
12385
12384
|
}[];
|
|
12385
|
+
total?: number | undefined;
|
|
12386
12386
|
next?: string | undefined;
|
|
12387
12387
|
};
|
|
12388
12388
|
outputFormat: "json";
|
|
@@ -12431,7 +12431,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12431
12431
|
};
|
|
12432
12432
|
};
|
|
12433
12433
|
output: {
|
|
12434
|
-
type: "
|
|
12434
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12435
12435
|
date: string;
|
|
12436
12436
|
isMobile: boolean;
|
|
12437
12437
|
log_id: string;
|
|
@@ -12470,7 +12470,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12470
12470
|
limit: number;
|
|
12471
12471
|
length: number;
|
|
12472
12472
|
logs: {
|
|
12473
|
-
type: "
|
|
12473
|
+
type: "i" | "fn" | "cs" | "fi" | "sv" | "sapi" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "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" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12474
12474
|
date: string;
|
|
12475
12475
|
isMobile: boolean;
|
|
12476
12476
|
log_id: string;
|
|
@@ -13314,7 +13314,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13314
13314
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13315
13315
|
custom_domain_id: string;
|
|
13316
13316
|
primary: boolean;
|
|
13317
|
-
status: "
|
|
13317
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13318
13318
|
verification_method?: "txt" | undefined;
|
|
13319
13319
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13320
13320
|
domain_metadata?: {
|
|
@@ -13355,7 +13355,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13355
13355
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13356
13356
|
custom_domain_id: string;
|
|
13357
13357
|
primary: boolean;
|
|
13358
|
-
status: "
|
|
13358
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13359
13359
|
verification_method?: "txt" | undefined;
|
|
13360
13360
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13361
13361
|
domain_metadata?: {
|
|
@@ -13419,7 +13419,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13419
13419
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13420
13420
|
custom_domain_id: string;
|
|
13421
13421
|
primary: boolean;
|
|
13422
|
-
status: "
|
|
13422
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13423
13423
|
verification_method?: "txt" | undefined;
|
|
13424
13424
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13425
13425
|
domain_metadata?: {
|
|
@@ -13466,7 +13466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13466
13466
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13467
13467
|
custom_domain_id: string;
|
|
13468
13468
|
primary: boolean;
|
|
13469
|
-
status: "
|
|
13469
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13470
13470
|
verification_method?: "txt" | undefined;
|
|
13471
13471
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13472
13472
|
domain_metadata?: {
|
|
@@ -13512,7 +13512,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13512
13512
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13513
13513
|
custom_domain_id: string;
|
|
13514
13514
|
primary: boolean;
|
|
13515
|
-
status: "
|
|
13515
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13516
13516
|
verification_method?: "txt" | undefined;
|
|
13517
13517
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13518
13518
|
domain_metadata?: {
|
|
@@ -13553,7 +13553,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13553
13553
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13554
13554
|
custom_domain_id: string;
|
|
13555
13555
|
primary: boolean;
|
|
13556
|
-
status: "
|
|
13556
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
13557
13557
|
verification_method?: "txt" | undefined;
|
|
13558
13558
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13559
13559
|
domain_metadata?: {
|
|
@@ -13652,7 +13652,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13652
13652
|
background_color: string;
|
|
13653
13653
|
background_image_url: string;
|
|
13654
13654
|
page_layout: "center" | "left" | "right";
|
|
13655
|
-
logo_placement?: "
|
|
13655
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13656
13656
|
};
|
|
13657
13657
|
widget: {
|
|
13658
13658
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13742,7 +13742,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13742
13742
|
background_color: string;
|
|
13743
13743
|
background_image_url: string;
|
|
13744
13744
|
page_layout: "center" | "left" | "right";
|
|
13745
|
-
logo_placement?: "
|
|
13745
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13746
13746
|
};
|
|
13747
13747
|
widget: {
|
|
13748
13748
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13821,7 +13821,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13821
13821
|
background_color: string;
|
|
13822
13822
|
background_image_url: string;
|
|
13823
13823
|
page_layout: "center" | "left" | "right";
|
|
13824
|
-
logo_placement?: "
|
|
13824
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
13825
13825
|
};
|
|
13826
13826
|
widget: {
|
|
13827
13827
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13983,7 +13983,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13983
13983
|
} & {
|
|
13984
13984
|
json: {
|
|
13985
13985
|
body?: string | undefined;
|
|
13986
|
-
screen?: "
|
|
13986
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
13987
13987
|
branding?: {
|
|
13988
13988
|
colors?: {
|
|
13989
13989
|
primary: string;
|
|
@@ -14069,7 +14069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14069
14069
|
background_color: string;
|
|
14070
14070
|
background_image_url: string;
|
|
14071
14071
|
page_layout: "center" | "left" | "right";
|
|
14072
|
-
logo_placement?: "
|
|
14072
|
+
logo_placement?: "widget" | "chip" | "none" | undefined;
|
|
14073
14073
|
} | undefined;
|
|
14074
14074
|
widget?: {
|
|
14075
14075
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -15245,7 +15245,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15245
15245
|
scope?: string | undefined;
|
|
15246
15246
|
grant_types?: string[] | undefined;
|
|
15247
15247
|
response_types?: string[] | undefined;
|
|
15248
|
-
token_endpoint_auth_method?: "
|
|
15248
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15249
15249
|
jwks_uri?: string | undefined;
|
|
15250
15250
|
jwks?: Record<string, unknown> | undefined;
|
|
15251
15251
|
software_id?: string | undefined;
|
|
@@ -15334,7 +15334,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15334
15334
|
scope?: string | undefined;
|
|
15335
15335
|
grant_types?: string[] | undefined;
|
|
15336
15336
|
response_types?: string[] | undefined;
|
|
15337
|
-
token_endpoint_auth_method?: "
|
|
15337
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
15338
15338
|
jwks_uri?: string | undefined;
|
|
15339
15339
|
jwks?: Record<string, unknown> | undefined;
|
|
15340
15340
|
software_id?: string | undefined;
|
|
@@ -15680,17 +15680,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15680
15680
|
email: string;
|
|
15681
15681
|
send: "code" | "link";
|
|
15682
15682
|
authParams: {
|
|
15683
|
-
|
|
15684
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15685
|
-
scope?: string | undefined;
|
|
15686
|
-
username?: string | undefined;
|
|
15683
|
+
state?: string | undefined;
|
|
15687
15684
|
audience?: string | undefined;
|
|
15688
|
-
|
|
15685
|
+
username?: string | undefined;
|
|
15686
|
+
scope?: string | undefined;
|
|
15689
15687
|
organization?: string | undefined;
|
|
15688
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15689
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15690
15690
|
redirect_uri?: string | undefined;
|
|
15691
|
-
state?: string | undefined;
|
|
15692
|
-
act_as?: string | undefined;
|
|
15693
15691
|
prompt?: string | undefined;
|
|
15692
|
+
act_as?: string | undefined;
|
|
15693
|
+
nonce?: string | undefined;
|
|
15694
15694
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15695
15695
|
code_challenge?: string | undefined;
|
|
15696
15696
|
ui_locales?: string | undefined;
|
|
@@ -15716,17 +15716,17 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15716
15716
|
phone_number: string;
|
|
15717
15717
|
send: "code" | "link";
|
|
15718
15718
|
authParams: {
|
|
15719
|
-
|
|
15720
|
-
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15721
|
-
scope?: string | undefined;
|
|
15722
|
-
username?: string | undefined;
|
|
15719
|
+
state?: string | undefined;
|
|
15723
15720
|
audience?: string | undefined;
|
|
15724
|
-
|
|
15721
|
+
username?: string | undefined;
|
|
15722
|
+
scope?: string | undefined;
|
|
15725
15723
|
organization?: string | undefined;
|
|
15724
|
+
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15725
|
+
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15726
15726
|
redirect_uri?: string | undefined;
|
|
15727
|
-
state?: string | undefined;
|
|
15728
|
-
act_as?: string | undefined;
|
|
15729
15727
|
prompt?: string | undefined;
|
|
15728
|
+
act_as?: string | undefined;
|
|
15729
|
+
nonce?: string | undefined;
|
|
15730
15730
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15731
15731
|
code_challenge?: string | undefined;
|
|
15732
15732
|
ui_locales?: string | undefined;
|
|
@@ -15958,7 +15958,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15958
15958
|
client_id: string;
|
|
15959
15959
|
username: string;
|
|
15960
15960
|
otp: string;
|
|
15961
|
-
realm: "
|
|
15961
|
+
realm: "sms" | "email";
|
|
15962
15962
|
scope?: string | undefined;
|
|
15963
15963
|
audience?: string | undefined;
|
|
15964
15964
|
} | {
|
|
@@ -16007,7 +16007,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16007
16007
|
client_id: string;
|
|
16008
16008
|
username: string;
|
|
16009
16009
|
otp: string;
|
|
16010
|
-
realm: "
|
|
16010
|
+
realm: "sms" | "email";
|
|
16011
16011
|
scope?: string | undefined;
|
|
16012
16012
|
audience?: string | undefined;
|
|
16013
16013
|
} | {
|
|
@@ -16061,7 +16061,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16061
16061
|
client_id: string;
|
|
16062
16062
|
username: string;
|
|
16063
16063
|
otp: string;
|
|
16064
|
-
realm: "
|
|
16064
|
+
realm: "sms" | "email";
|
|
16065
16065
|
scope?: string | undefined;
|
|
16066
16066
|
audience?: string | undefined;
|
|
16067
16067
|
} | {
|
|
@@ -16110,7 +16110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16110
16110
|
client_id: string;
|
|
16111
16111
|
username: string;
|
|
16112
16112
|
otp: string;
|
|
16113
|
-
realm: "
|
|
16113
|
+
realm: "sms" | "email";
|
|
16114
16114
|
scope?: string | undefined;
|
|
16115
16115
|
audience?: string | undefined;
|
|
16116
16116
|
} | {
|
|
@@ -16172,7 +16172,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16172
16172
|
client_id: string;
|
|
16173
16173
|
username: string;
|
|
16174
16174
|
otp: string;
|
|
16175
|
-
realm: "
|
|
16175
|
+
realm: "sms" | "email";
|
|
16176
16176
|
scope?: string | undefined;
|
|
16177
16177
|
audience?: string | undefined;
|
|
16178
16178
|
} | {
|
|
@@ -16221,7 +16221,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16221
16221
|
client_id: string;
|
|
16222
16222
|
username: string;
|
|
16223
16223
|
otp: string;
|
|
16224
|
-
realm: "
|
|
16224
|
+
realm: "sms" | "email";
|
|
16225
16225
|
scope?: string | undefined;
|
|
16226
16226
|
audience?: string | undefined;
|
|
16227
16227
|
} | {
|
|
@@ -16278,7 +16278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16278
16278
|
client_id: string;
|
|
16279
16279
|
username: string;
|
|
16280
16280
|
otp: string;
|
|
16281
|
-
realm: "
|
|
16281
|
+
realm: "sms" | "email";
|
|
16282
16282
|
scope?: string | undefined;
|
|
16283
16283
|
audience?: string | undefined;
|
|
16284
16284
|
} | {
|
|
@@ -16327,7 +16327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16327
16327
|
client_id: string;
|
|
16328
16328
|
username: string;
|
|
16329
16329
|
otp: string;
|
|
16330
|
-
realm: "
|
|
16330
|
+
realm: "sms" | "email";
|
|
16331
16331
|
scope?: string | undefined;
|
|
16332
16332
|
audience?: string | undefined;
|
|
16333
16333
|
} | {
|
|
@@ -16384,7 +16384,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16384
16384
|
client_id: string;
|
|
16385
16385
|
username: string;
|
|
16386
16386
|
otp: string;
|
|
16387
|
-
realm: "
|
|
16387
|
+
realm: "sms" | "email";
|
|
16388
16388
|
scope?: string | undefined;
|
|
16389
16389
|
audience?: string | undefined;
|
|
16390
16390
|
} | {
|
|
@@ -16433,7 +16433,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16433
16433
|
client_id: string;
|
|
16434
16434
|
username: string;
|
|
16435
16435
|
otp: string;
|
|
16436
|
-
realm: "
|
|
16436
|
+
realm: "sms" | "email";
|
|
16437
16437
|
scope?: string | undefined;
|
|
16438
16438
|
audience?: string | undefined;
|
|
16439
16439
|
} | {
|
|
@@ -16464,7 +16464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16464
16464
|
output: {
|
|
16465
16465
|
keys: {
|
|
16466
16466
|
alg: "RS256" | "RS384" | "RS512" | "ES256" | "ES384" | "ES512" | "HS256" | "HS384" | "HS512";
|
|
16467
|
-
kty: "
|
|
16467
|
+
kty: "EC" | "RSA" | "oct";
|
|
16468
16468
|
kid?: string | undefined;
|
|
16469
16469
|
use?: "sig" | "enc" | undefined;
|
|
16470
16470
|
n?: string | undefined;
|
|
@@ -17659,7 +17659,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17659
17659
|
$get: {
|
|
17660
17660
|
input: {
|
|
17661
17661
|
param: {
|
|
17662
|
-
screen: "
|
|
17662
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
17663
17663
|
};
|
|
17664
17664
|
} & {
|
|
17665
17665
|
query: {
|
|
@@ -17675,7 +17675,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17675
17675
|
} | {
|
|
17676
17676
|
input: {
|
|
17677
17677
|
param: {
|
|
17678
|
-
screen: "
|
|
17678
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
17679
17679
|
};
|
|
17680
17680
|
} & {
|
|
17681
17681
|
query: {
|
|
@@ -17691,7 +17691,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17691
17691
|
} | {
|
|
17692
17692
|
input: {
|
|
17693
17693
|
param: {
|
|
17694
|
-
screen: "
|
|
17694
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "account" | "enter-password" | "reset-password/request" | "reset-password/code" | "try-connection-result" | "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";
|
|
17695
17695
|
};
|
|
17696
17696
|
} & {
|
|
17697
17697
|
query: {
|
|
@@ -17711,7 +17711,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17711
17711
|
$post: {
|
|
17712
17712
|
input: {
|
|
17713
17713
|
param: {
|
|
17714
|
-
screen: "
|
|
17714
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17715
17715
|
};
|
|
17716
17716
|
} & {
|
|
17717
17717
|
query: {
|
|
@@ -17729,7 +17729,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17729
17729
|
} | {
|
|
17730
17730
|
input: {
|
|
17731
17731
|
param: {
|
|
17732
|
-
screen: "
|
|
17732
|
+
screen: "login" | "signup" | "impersonate" | "reset-password" | "consent" | "enter-password" | "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";
|
|
17733
17733
|
};
|
|
17734
17734
|
} & {
|
|
17735
17735
|
query: {
|