authhero 8.5.0 → 8.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/authhero.cjs +3 -3
- package/dist/authhero.d.ts +118 -86
- package/dist/authhero.mjs +41 -19
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/index.d.ts +86 -86
- package/dist/types/routes/auth-api/account.d.ts +2 -2
- package/dist/types/routes/auth-api/index.d.ts +16 -16
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/flows.d.ts +7 -7
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +64 -64
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- 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/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/types/AuthHeroConfig.d.ts +33 -1
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -1226,6 +1226,38 @@ interface AuthHeroConfig {
|
|
|
1226
1226
|
/** Per-request timeout for the sync POST (default: 10_000ms). */
|
|
1227
1227
|
timeoutMs?: number;
|
|
1228
1228
|
};
|
|
1229
|
+
/**
|
|
1230
|
+
* Optional middleware that dispatches a management-API request to its
|
|
1231
|
+
* tenant's own worker instead of serving it from this (control-plane)
|
|
1232
|
+
* instance — the inbound twin of the control-plane defaults projection.
|
|
1233
|
+
*
|
|
1234
|
+
* It is mounted inside the management API **after** the CORS middleware and
|
|
1235
|
+
* **before** the auth/data chain, so:
|
|
1236
|
+
* - when it forwards (returns the tenant worker's `Response`), the central
|
|
1237
|
+
* CORS middleware applies the `Access-Control-Allow-*` headers to that
|
|
1238
|
+
* response — no manual CORS handling needed in the host app;
|
|
1239
|
+
* - when it calls `next()` (control-plane tenant, non-`wfp` tenant, tenant
|
|
1240
|
+
* not yet provisioned, or no dispatch binding), the request is served
|
|
1241
|
+
* locally as usual.
|
|
1242
|
+
*
|
|
1243
|
+
* Provide the implementation from `@authhero/cloudflare-adapter`'s
|
|
1244
|
+
* `createWfpForwardMiddleware`, which dispatches over a Workers-for-Platforms
|
|
1245
|
+
* dispatch namespace. Kept as a generic Hono `MiddlewareHandler` so authhero
|
|
1246
|
+
* core carries no dispatch-namespace dependency.
|
|
1247
|
+
*
|
|
1248
|
+
* @example
|
|
1249
|
+
* ```typescript
|
|
1250
|
+
* const { app } = init({
|
|
1251
|
+
* dataAdapter,
|
|
1252
|
+
* allowedOrigins: ["https://admin.example.com"],
|
|
1253
|
+
* tenantDispatch: createWfpForwardMiddleware({
|
|
1254
|
+
* tenants: managementAdapter.tenants,
|
|
1255
|
+
* controlPlaneTenantId: "main",
|
|
1256
|
+
* }),
|
|
1257
|
+
* });
|
|
1258
|
+
* ```
|
|
1259
|
+
*/
|
|
1260
|
+
tenantDispatch?: MiddlewareHandler;
|
|
1229
1261
|
/**
|
|
1230
1262
|
* Optional powered-by logo to display at the bottom left of the login widget.
|
|
1231
1263
|
* This is only configurable in code, not stored in the database.
|
|
@@ -3023,7 +3055,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3023
3055
|
};
|
|
3024
3056
|
};
|
|
3025
3057
|
output: {
|
|
3026
|
-
name: "email" | "
|
|
3058
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3027
3059
|
enabled: boolean;
|
|
3028
3060
|
trial_expired?: boolean | undefined;
|
|
3029
3061
|
}[];
|
|
@@ -3178,7 +3210,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3178
3210
|
$get: {
|
|
3179
3211
|
input: {
|
|
3180
3212
|
param: {
|
|
3181
|
-
factor_name: "email" | "
|
|
3213
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3182
3214
|
};
|
|
3183
3215
|
} & {
|
|
3184
3216
|
header: {
|
|
@@ -3186,7 +3218,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3186
3218
|
};
|
|
3187
3219
|
};
|
|
3188
3220
|
output: {
|
|
3189
|
-
name: "email" | "
|
|
3221
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3190
3222
|
enabled: boolean;
|
|
3191
3223
|
trial_expired?: boolean | undefined;
|
|
3192
3224
|
};
|
|
@@ -3199,7 +3231,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3199
3231
|
$put: {
|
|
3200
3232
|
input: {
|
|
3201
3233
|
param: {
|
|
3202
|
-
factor_name: "email" | "
|
|
3234
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3203
3235
|
};
|
|
3204
3236
|
} & {
|
|
3205
3237
|
header: {
|
|
@@ -3211,7 +3243,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3211
3243
|
};
|
|
3212
3244
|
};
|
|
3213
3245
|
output: {
|
|
3214
|
-
name: "email" | "
|
|
3246
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
3215
3247
|
enabled: boolean;
|
|
3216
3248
|
trial_expired?: boolean | undefined;
|
|
3217
3249
|
};
|
|
@@ -3960,8 +3992,8 @@ declare function init(config: AuthHeroConfig): {
|
|
|
3960
3992
|
connection_id?: string | undefined;
|
|
3961
3993
|
app_metadata?: Record<string, any> | undefined;
|
|
3962
3994
|
user_metadata?: Record<string, any> | undefined;
|
|
3963
|
-
ttl_sec?: number | undefined;
|
|
3964
3995
|
roles?: string[] | undefined;
|
|
3996
|
+
ttl_sec?: number | undefined;
|
|
3965
3997
|
send_invitation_email?: boolean | undefined;
|
|
3966
3998
|
};
|
|
3967
3999
|
};
|
|
@@ -4811,7 +4843,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4811
4843
|
type: "REDIRECT";
|
|
4812
4844
|
action: "REDIRECT_USER";
|
|
4813
4845
|
params: {
|
|
4814
|
-
target: "custom" | "
|
|
4846
|
+
target: "custom" | "change-email" | "account";
|
|
4815
4847
|
custom_url?: string | undefined;
|
|
4816
4848
|
};
|
|
4817
4849
|
alias?: string | undefined;
|
|
@@ -4864,7 +4896,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4864
4896
|
type: "REDIRECT";
|
|
4865
4897
|
action: "REDIRECT_USER";
|
|
4866
4898
|
params: {
|
|
4867
|
-
target: "custom" | "
|
|
4899
|
+
target: "custom" | "change-email" | "account";
|
|
4868
4900
|
custom_url?: string | undefined;
|
|
4869
4901
|
};
|
|
4870
4902
|
alias?: string | undefined;
|
|
@@ -4932,7 +4964,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
4932
4964
|
type: "REDIRECT";
|
|
4933
4965
|
action: "REDIRECT_USER";
|
|
4934
4966
|
params: {
|
|
4935
|
-
target: "custom" | "
|
|
4967
|
+
target: "custom" | "change-email" | "account";
|
|
4936
4968
|
custom_url?: string | undefined;
|
|
4937
4969
|
};
|
|
4938
4970
|
alias?: string | undefined;
|
|
@@ -5013,7 +5045,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5013
5045
|
type: "REDIRECT";
|
|
5014
5046
|
action: "REDIRECT_USER";
|
|
5015
5047
|
params: {
|
|
5016
|
-
target: "custom" | "
|
|
5048
|
+
target: "custom" | "change-email" | "account";
|
|
5017
5049
|
custom_url?: string | undefined;
|
|
5018
5050
|
};
|
|
5019
5051
|
alias?: string | undefined;
|
|
@@ -5061,7 +5093,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5061
5093
|
type: "REDIRECT";
|
|
5062
5094
|
action: "REDIRECT_USER";
|
|
5063
5095
|
params: {
|
|
5064
|
-
target: "custom" | "
|
|
5096
|
+
target: "custom" | "change-email" | "account";
|
|
5065
5097
|
custom_url?: string | undefined;
|
|
5066
5098
|
};
|
|
5067
5099
|
alias?: string | undefined;
|
|
@@ -5121,7 +5153,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5121
5153
|
type: "REDIRECT";
|
|
5122
5154
|
action: "REDIRECT_USER";
|
|
5123
5155
|
params: {
|
|
5124
|
-
target: "custom" | "
|
|
5156
|
+
target: "custom" | "change-email" | "account";
|
|
5125
5157
|
custom_url?: string | undefined;
|
|
5126
5158
|
};
|
|
5127
5159
|
alias?: string | undefined;
|
|
@@ -5169,7 +5201,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
5169
5201
|
type: "REDIRECT";
|
|
5170
5202
|
action: "REDIRECT_USER";
|
|
5171
5203
|
params: {
|
|
5172
|
-
target: "custom" | "
|
|
5204
|
+
target: "custom" | "change-email" | "account";
|
|
5173
5205
|
custom_url?: string | undefined;
|
|
5174
5206
|
};
|
|
5175
5207
|
alias?: string | undefined;
|
|
@@ -9447,7 +9479,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9447
9479
|
};
|
|
9448
9480
|
};
|
|
9449
9481
|
output: {
|
|
9450
|
-
prompt: "signup" | "status" | "
|
|
9482
|
+
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";
|
|
9451
9483
|
language: string;
|
|
9452
9484
|
}[];
|
|
9453
9485
|
outputFormat: "json";
|
|
@@ -9485,7 +9517,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9485
9517
|
$get: {
|
|
9486
9518
|
input: {
|
|
9487
9519
|
param: {
|
|
9488
|
-
prompt: "signup" | "status" | "
|
|
9520
|
+
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";
|
|
9489
9521
|
language: string;
|
|
9490
9522
|
};
|
|
9491
9523
|
} & {
|
|
@@ -9507,7 +9539,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9507
9539
|
$put: {
|
|
9508
9540
|
input: {
|
|
9509
9541
|
param: {
|
|
9510
|
-
prompt: "signup" | "status" | "
|
|
9542
|
+
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";
|
|
9511
9543
|
language: string;
|
|
9512
9544
|
};
|
|
9513
9545
|
} & {
|
|
@@ -9531,7 +9563,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
9531
9563
|
$delete: {
|
|
9532
9564
|
input: {
|
|
9533
9565
|
param: {
|
|
9534
|
-
prompt: "signup" | "status" | "
|
|
9566
|
+
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";
|
|
9535
9567
|
language: string;
|
|
9536
9568
|
};
|
|
9537
9569
|
} & {
|
|
@@ -11032,7 +11064,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11032
11064
|
log_type: string;
|
|
11033
11065
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
11034
11066
|
actor: {
|
|
11035
|
-
type: "
|
|
11067
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
11036
11068
|
id?: string | undefined;
|
|
11037
11069
|
email?: string | undefined;
|
|
11038
11070
|
org_id?: string | undefined;
|
|
@@ -11340,7 +11372,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11340
11372
|
created_at: string;
|
|
11341
11373
|
updated_at: string;
|
|
11342
11374
|
name: string;
|
|
11343
|
-
provider: "auth0" | "
|
|
11375
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11344
11376
|
connection: string;
|
|
11345
11377
|
enabled: boolean;
|
|
11346
11378
|
credentials: {
|
|
@@ -11372,7 +11404,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11372
11404
|
created_at: string;
|
|
11373
11405
|
updated_at: string;
|
|
11374
11406
|
name: string;
|
|
11375
|
-
provider: "auth0" | "
|
|
11407
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11376
11408
|
connection: string;
|
|
11377
11409
|
enabled: boolean;
|
|
11378
11410
|
credentials: {
|
|
@@ -11398,7 +11430,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11398
11430
|
} & {
|
|
11399
11431
|
json: {
|
|
11400
11432
|
name: string;
|
|
11401
|
-
provider: "auth0" | "
|
|
11433
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11402
11434
|
connection: string;
|
|
11403
11435
|
credentials: {
|
|
11404
11436
|
domain: string;
|
|
@@ -11415,7 +11447,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11415
11447
|
created_at: string;
|
|
11416
11448
|
updated_at: string;
|
|
11417
11449
|
name: string;
|
|
11418
|
-
provider: "auth0" | "
|
|
11450
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11419
11451
|
connection: string;
|
|
11420
11452
|
enabled: boolean;
|
|
11421
11453
|
credentials: {
|
|
@@ -11446,7 +11478,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11446
11478
|
json: {
|
|
11447
11479
|
id?: string | undefined;
|
|
11448
11480
|
name?: string | undefined;
|
|
11449
|
-
provider?: "auth0" | "
|
|
11481
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
11450
11482
|
connection?: string | undefined;
|
|
11451
11483
|
enabled?: boolean | undefined;
|
|
11452
11484
|
credentials?: {
|
|
@@ -11462,7 +11494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11462
11494
|
created_at: string;
|
|
11463
11495
|
updated_at: string;
|
|
11464
11496
|
name: string;
|
|
11465
|
-
provider: "auth0" | "
|
|
11497
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
11466
11498
|
connection: string;
|
|
11467
11499
|
enabled: boolean;
|
|
11468
11500
|
credentials: {
|
|
@@ -11680,7 +11712,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11680
11712
|
};
|
|
11681
11713
|
};
|
|
11682
11714
|
output: {
|
|
11683
|
-
type: "
|
|
11715
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11684
11716
|
date: string;
|
|
11685
11717
|
isMobile: boolean;
|
|
11686
11718
|
log_id: string;
|
|
@@ -11719,7 +11751,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11719
11751
|
limit: number;
|
|
11720
11752
|
length: number;
|
|
11721
11753
|
logs: {
|
|
11722
|
-
type: "
|
|
11754
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11723
11755
|
date: string;
|
|
11724
11756
|
isMobile: boolean;
|
|
11725
11757
|
log_id: string;
|
|
@@ -11773,7 +11805,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
11773
11805
|
};
|
|
11774
11806
|
};
|
|
11775
11807
|
output: {
|
|
11776
|
-
type: "
|
|
11808
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11777
11809
|
date: string;
|
|
11778
11810
|
isMobile: boolean;
|
|
11779
11811
|
log_id: string;
|
|
@@ -12129,7 +12161,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12129
12161
|
client_id: string;
|
|
12130
12162
|
description?: string | undefined;
|
|
12131
12163
|
client_secret?: string | undefined;
|
|
12132
|
-
app_type?: "
|
|
12164
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12133
12165
|
logo_uri?: string | undefined;
|
|
12134
12166
|
callbacks?: string[] | undefined;
|
|
12135
12167
|
allowed_origins?: string[] | undefined;
|
|
@@ -12225,7 +12257,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12225
12257
|
client_id: string;
|
|
12226
12258
|
description?: string | undefined;
|
|
12227
12259
|
client_secret?: string | undefined;
|
|
12228
|
-
app_type?: "
|
|
12260
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12229
12261
|
logo_uri?: string | undefined;
|
|
12230
12262
|
callbacks?: string[] | undefined;
|
|
12231
12263
|
allowed_origins?: string[] | undefined;
|
|
@@ -12336,7 +12368,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12336
12368
|
client_id: string;
|
|
12337
12369
|
description?: string | undefined;
|
|
12338
12370
|
client_secret?: string | undefined;
|
|
12339
|
-
app_type?: "
|
|
12371
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12340
12372
|
logo_uri?: string | undefined;
|
|
12341
12373
|
callbacks?: string[] | undefined;
|
|
12342
12374
|
allowed_origins?: string[] | undefined;
|
|
@@ -12451,7 +12483,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12451
12483
|
description?: string | undefined;
|
|
12452
12484
|
global?: boolean | undefined;
|
|
12453
12485
|
client_secret?: string | undefined;
|
|
12454
|
-
app_type?: "
|
|
12486
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12455
12487
|
logo_uri?: string | undefined;
|
|
12456
12488
|
is_first_party?: boolean | undefined;
|
|
12457
12489
|
oidc_conformant?: boolean | undefined;
|
|
@@ -12526,7 +12558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12526
12558
|
client_id: string;
|
|
12527
12559
|
description?: string | undefined;
|
|
12528
12560
|
client_secret?: string | undefined;
|
|
12529
|
-
app_type?: "
|
|
12561
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12530
12562
|
logo_uri?: string | undefined;
|
|
12531
12563
|
callbacks?: string[] | undefined;
|
|
12532
12564
|
allowed_origins?: string[] | undefined;
|
|
@@ -12620,7 +12652,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12620
12652
|
description?: string | undefined;
|
|
12621
12653
|
global?: boolean | undefined;
|
|
12622
12654
|
client_secret?: string | undefined;
|
|
12623
|
-
app_type?: "
|
|
12655
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12624
12656
|
logo_uri?: string | undefined;
|
|
12625
12657
|
is_first_party?: boolean | undefined;
|
|
12626
12658
|
oidc_conformant?: boolean | undefined;
|
|
@@ -12695,7 +12727,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
12695
12727
|
client_id: string;
|
|
12696
12728
|
description?: string | undefined;
|
|
12697
12729
|
client_secret?: string | undefined;
|
|
12698
|
-
app_type?: "
|
|
12730
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
12699
12731
|
logo_uri?: string | undefined;
|
|
12700
12732
|
callbacks?: string[] | undefined;
|
|
12701
12733
|
allowed_origins?: string[] | undefined;
|
|
@@ -13991,7 +14023,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
13991
14023
|
};
|
|
13992
14024
|
};
|
|
13993
14025
|
output: {
|
|
13994
|
-
type: "
|
|
14026
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
13995
14027
|
date: string;
|
|
13996
14028
|
isMobile: boolean;
|
|
13997
14029
|
log_id: string;
|
|
@@ -14030,7 +14062,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14030
14062
|
limit: number;
|
|
14031
14063
|
length: number;
|
|
14032
14064
|
logs: {
|
|
14033
|
-
type: "
|
|
14065
|
+
type: "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" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
14034
14066
|
date: string;
|
|
14035
14067
|
isMobile: boolean;
|
|
14036
14068
|
log_id: string;
|
|
@@ -14345,7 +14377,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14345
14377
|
};
|
|
14346
14378
|
} & {
|
|
14347
14379
|
json: {
|
|
14348
|
-
template: "
|
|
14380
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14349
14381
|
body: string;
|
|
14350
14382
|
from: string;
|
|
14351
14383
|
subject: string;
|
|
@@ -14366,7 +14398,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14366
14398
|
};
|
|
14367
14399
|
} & {
|
|
14368
14400
|
json: {
|
|
14369
|
-
template: "
|
|
14401
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14370
14402
|
body: string;
|
|
14371
14403
|
from: string;
|
|
14372
14404
|
subject: string;
|
|
@@ -14378,7 +14410,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14378
14410
|
};
|
|
14379
14411
|
};
|
|
14380
14412
|
output: {
|
|
14381
|
-
template: "
|
|
14413
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14382
14414
|
body: string;
|
|
14383
14415
|
from: string;
|
|
14384
14416
|
subject: string;
|
|
@@ -14401,7 +14433,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14401
14433
|
};
|
|
14402
14434
|
};
|
|
14403
14435
|
output: {
|
|
14404
|
-
name: "
|
|
14436
|
+
name: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14405
14437
|
body: string;
|
|
14406
14438
|
subject: string;
|
|
14407
14439
|
}[];
|
|
@@ -14414,7 +14446,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14414
14446
|
$get: {
|
|
14415
14447
|
input: {
|
|
14416
14448
|
param: {
|
|
14417
|
-
templateName: "
|
|
14449
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14418
14450
|
};
|
|
14419
14451
|
} & {
|
|
14420
14452
|
header: {
|
|
@@ -14427,7 +14459,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14427
14459
|
} | {
|
|
14428
14460
|
input: {
|
|
14429
14461
|
param: {
|
|
14430
|
-
templateName: "
|
|
14462
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14431
14463
|
};
|
|
14432
14464
|
} & {
|
|
14433
14465
|
header: {
|
|
@@ -14435,7 +14467,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14435
14467
|
};
|
|
14436
14468
|
};
|
|
14437
14469
|
output: {
|
|
14438
|
-
template: "
|
|
14470
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14439
14471
|
body: string;
|
|
14440
14472
|
from: string;
|
|
14441
14473
|
subject: string;
|
|
@@ -14454,7 +14486,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14454
14486
|
$put: {
|
|
14455
14487
|
input: {
|
|
14456
14488
|
param: {
|
|
14457
|
-
templateName: "
|
|
14489
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14458
14490
|
};
|
|
14459
14491
|
} & {
|
|
14460
14492
|
header: {
|
|
@@ -14462,7 +14494,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14462
14494
|
};
|
|
14463
14495
|
} & {
|
|
14464
14496
|
json: {
|
|
14465
|
-
template: "
|
|
14497
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14466
14498
|
body: string;
|
|
14467
14499
|
subject: string;
|
|
14468
14500
|
syntax?: "liquid" | undefined;
|
|
@@ -14474,7 +14506,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14474
14506
|
};
|
|
14475
14507
|
};
|
|
14476
14508
|
output: {
|
|
14477
|
-
template: "
|
|
14509
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14478
14510
|
body: string;
|
|
14479
14511
|
from: string;
|
|
14480
14512
|
subject: string;
|
|
@@ -14493,7 +14525,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14493
14525
|
$patch: {
|
|
14494
14526
|
input: {
|
|
14495
14527
|
param: {
|
|
14496
|
-
templateName: "
|
|
14528
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14497
14529
|
};
|
|
14498
14530
|
} & {
|
|
14499
14531
|
header: {
|
|
@@ -14501,7 +14533,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14501
14533
|
};
|
|
14502
14534
|
} & {
|
|
14503
14535
|
json: {
|
|
14504
|
-
template?: "
|
|
14536
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14505
14537
|
body?: string | undefined;
|
|
14506
14538
|
from?: string | undefined;
|
|
14507
14539
|
subject?: string | undefined;
|
|
@@ -14518,7 +14550,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14518
14550
|
} | {
|
|
14519
14551
|
input: {
|
|
14520
14552
|
param: {
|
|
14521
|
-
templateName: "
|
|
14553
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14522
14554
|
};
|
|
14523
14555
|
} & {
|
|
14524
14556
|
header: {
|
|
@@ -14526,7 +14558,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14526
14558
|
};
|
|
14527
14559
|
} & {
|
|
14528
14560
|
json: {
|
|
14529
|
-
template?: "
|
|
14561
|
+
template?: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
14530
14562
|
body?: string | undefined;
|
|
14531
14563
|
from?: string | undefined;
|
|
14532
14564
|
subject?: string | undefined;
|
|
@@ -14538,7 +14570,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14538
14570
|
};
|
|
14539
14571
|
};
|
|
14540
14572
|
output: {
|
|
14541
|
-
template: "
|
|
14573
|
+
template: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14542
14574
|
body: string;
|
|
14543
14575
|
from: string;
|
|
14544
14576
|
subject: string;
|
|
@@ -14557,7 +14589,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14557
14589
|
$delete: {
|
|
14558
14590
|
input: {
|
|
14559
14591
|
param: {
|
|
14560
|
-
templateName: "
|
|
14592
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14561
14593
|
};
|
|
14562
14594
|
} & {
|
|
14563
14595
|
header: {
|
|
@@ -14570,7 +14602,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14570
14602
|
} | {
|
|
14571
14603
|
input: {
|
|
14572
14604
|
param: {
|
|
14573
|
-
templateName: "
|
|
14605
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14574
14606
|
};
|
|
14575
14607
|
} & {
|
|
14576
14608
|
header: {
|
|
@@ -14587,7 +14619,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14587
14619
|
$post: {
|
|
14588
14620
|
input: {
|
|
14589
14621
|
param: {
|
|
14590
|
-
templateName: "
|
|
14622
|
+
templateName: "change_password" | "password_reset" | "verify_email" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
14591
14623
|
};
|
|
14592
14624
|
} & {
|
|
14593
14625
|
header: {
|
|
@@ -14872,7 +14904,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14872
14904
|
primary: boolean;
|
|
14873
14905
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14874
14906
|
verification_method?: "txt" | undefined;
|
|
14875
|
-
custom_client_ip_header?: "null" | "
|
|
14907
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14876
14908
|
domain_metadata?: {
|
|
14877
14909
|
[x: string]: string;
|
|
14878
14910
|
} | undefined;
|
|
@@ -14913,7 +14945,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14913
14945
|
primary: boolean;
|
|
14914
14946
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14915
14947
|
verification_method?: "txt" | undefined;
|
|
14916
|
-
custom_client_ip_header?: "null" | "
|
|
14948
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14917
14949
|
domain_metadata?: {
|
|
14918
14950
|
[x: string]: string;
|
|
14919
14951
|
} | undefined;
|
|
@@ -14966,7 +14998,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14966
14998
|
} & {
|
|
14967
14999
|
json: {
|
|
14968
15000
|
tls_policy?: "recommended" | undefined;
|
|
14969
|
-
custom_client_ip_header?: "null" | "
|
|
15001
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14970
15002
|
domain_metadata?: Record<string, string> | undefined;
|
|
14971
15003
|
};
|
|
14972
15004
|
};
|
|
@@ -14977,7 +15009,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
14977
15009
|
primary: boolean;
|
|
14978
15010
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
14979
15011
|
verification_method?: "txt" | undefined;
|
|
14980
|
-
custom_client_ip_header?: "null" | "
|
|
15012
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
14981
15013
|
domain_metadata?: {
|
|
14982
15014
|
[x: string]: string;
|
|
14983
15015
|
} | undefined;
|
|
@@ -15013,7 +15045,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15013
15045
|
custom_domain_id?: string | undefined;
|
|
15014
15046
|
verification_method?: "txt" | undefined;
|
|
15015
15047
|
tls_policy?: "recommended" | undefined;
|
|
15016
|
-
custom_client_ip_header?: "null" | "
|
|
15048
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15017
15049
|
domain_metadata?: Record<string, string> | undefined;
|
|
15018
15050
|
};
|
|
15019
15051
|
};
|
|
@@ -15024,7 +15056,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15024
15056
|
primary: boolean;
|
|
15025
15057
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15026
15058
|
verification_method?: "txt" | undefined;
|
|
15027
|
-
custom_client_ip_header?: "null" | "
|
|
15059
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15028
15060
|
domain_metadata?: {
|
|
15029
15061
|
[x: string]: string;
|
|
15030
15062
|
} | undefined;
|
|
@@ -15070,7 +15102,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15070
15102
|
primary: boolean;
|
|
15071
15103
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15072
15104
|
verification_method?: "txt" | undefined;
|
|
15073
|
-
custom_client_ip_header?: "null" | "
|
|
15105
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15074
15106
|
domain_metadata?: {
|
|
15075
15107
|
[x: string]: string;
|
|
15076
15108
|
} | undefined;
|
|
@@ -15111,7 +15143,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15111
15143
|
primary: boolean;
|
|
15112
15144
|
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
15113
15145
|
verification_method?: "txt" | undefined;
|
|
15114
|
-
custom_client_ip_header?: "null" | "
|
|
15146
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
15115
15147
|
domain_metadata?: {
|
|
15116
15148
|
[x: string]: string;
|
|
15117
15149
|
} | undefined;
|
|
@@ -15716,7 +15748,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
15716
15748
|
logs: {
|
|
15717
15749
|
action_name: string;
|
|
15718
15750
|
lines: {
|
|
15719
|
-
level: "log" | "error" | "info" | "
|
|
15751
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
15720
15752
|
message: string;
|
|
15721
15753
|
}[];
|
|
15722
15754
|
}[];
|
|
@@ -16383,7 +16415,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16383
16415
|
args: hono_utils_types.JSONValue[];
|
|
16384
16416
|
}[];
|
|
16385
16417
|
logs: {
|
|
16386
|
-
level: "log" | "error" | "info" | "
|
|
16418
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
16387
16419
|
message: string;
|
|
16388
16420
|
}[];
|
|
16389
16421
|
error?: string | undefined;
|
|
@@ -16827,7 +16859,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16827
16859
|
client_id: string;
|
|
16828
16860
|
redirect_url?: string | undefined;
|
|
16829
16861
|
login_hint?: string | undefined;
|
|
16830
|
-
screen_hint?: "
|
|
16862
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16831
16863
|
};
|
|
16832
16864
|
};
|
|
16833
16865
|
output: {};
|
|
@@ -16839,7 +16871,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
16839
16871
|
client_id: string;
|
|
16840
16872
|
redirect_url?: string | undefined;
|
|
16841
16873
|
login_hint?: string | undefined;
|
|
16842
|
-
screen_hint?: "
|
|
16874
|
+
screen_hint?: "change-email" | "account" | "change-phone" | "change-password" | undefined;
|
|
16843
16875
|
};
|
|
16844
16876
|
};
|
|
16845
16877
|
output: {
|
|
@@ -17116,18 +17148,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17116
17148
|
email: string;
|
|
17117
17149
|
send: "code" | "link";
|
|
17118
17150
|
authParams: {
|
|
17119
|
-
state?: string | undefined;
|
|
17120
17151
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17121
17152
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17122
17153
|
scope?: string | undefined;
|
|
17123
17154
|
username?: string | undefined;
|
|
17124
|
-
|
|
17125
|
-
organization?: string | undefined;
|
|
17155
|
+
audience?: string | undefined;
|
|
17126
17156
|
code_challenge?: string | undefined;
|
|
17127
17157
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17128
17158
|
redirect_uri?: string | undefined;
|
|
17159
|
+
nonce?: string | undefined;
|
|
17160
|
+
state?: string | undefined;
|
|
17129
17161
|
act_as?: string | undefined;
|
|
17130
|
-
|
|
17162
|
+
organization?: string | undefined;
|
|
17131
17163
|
prompt?: string | undefined;
|
|
17132
17164
|
ui_locales?: string | undefined;
|
|
17133
17165
|
max_age?: number | undefined;
|
|
@@ -17152,18 +17184,18 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17152
17184
|
phone_number: string;
|
|
17153
17185
|
send: "code" | "link";
|
|
17154
17186
|
authParams: {
|
|
17155
|
-
state?: string | undefined;
|
|
17156
17187
|
response_type?: _authhero_adapter_interfaces.AuthorizationResponseType | undefined;
|
|
17157
17188
|
response_mode?: _authhero_adapter_interfaces.AuthorizationResponseMode | undefined;
|
|
17158
17189
|
scope?: string | undefined;
|
|
17159
17190
|
username?: string | undefined;
|
|
17160
|
-
|
|
17161
|
-
organization?: string | undefined;
|
|
17191
|
+
audience?: string | undefined;
|
|
17162
17192
|
code_challenge?: string | undefined;
|
|
17163
17193
|
code_challenge_method?: _authhero_adapter_interfaces.CodeChallengeMethod | undefined;
|
|
17164
17194
|
redirect_uri?: string | undefined;
|
|
17195
|
+
nonce?: string | undefined;
|
|
17196
|
+
state?: string | undefined;
|
|
17165
17197
|
act_as?: string | undefined;
|
|
17166
|
-
|
|
17198
|
+
organization?: string | undefined;
|
|
17167
17199
|
prompt?: string | undefined;
|
|
17168
17200
|
ui_locales?: string | undefined;
|
|
17169
17201
|
max_age?: number | undefined;
|
|
@@ -17296,14 +17328,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17296
17328
|
input: {
|
|
17297
17329
|
form: {
|
|
17298
17330
|
token: string;
|
|
17299
|
-
token_type_hint?: "
|
|
17331
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17300
17332
|
client_id?: string | undefined;
|
|
17301
17333
|
client_secret?: string | undefined;
|
|
17302
17334
|
};
|
|
17303
17335
|
} & {
|
|
17304
17336
|
json: {
|
|
17305
17337
|
token: string;
|
|
17306
|
-
token_type_hint?: "
|
|
17338
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17307
17339
|
client_id?: string | undefined;
|
|
17308
17340
|
client_secret?: string | undefined;
|
|
17309
17341
|
};
|
|
@@ -17315,14 +17347,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17315
17347
|
input: {
|
|
17316
17348
|
form: {
|
|
17317
17349
|
token: string;
|
|
17318
|
-
token_type_hint?: "
|
|
17350
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17319
17351
|
client_id?: string | undefined;
|
|
17320
17352
|
client_secret?: string | undefined;
|
|
17321
17353
|
};
|
|
17322
17354
|
} & {
|
|
17323
17355
|
json: {
|
|
17324
17356
|
token: string;
|
|
17325
|
-
token_type_hint?: "
|
|
17357
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17326
17358
|
client_id?: string | undefined;
|
|
17327
17359
|
client_secret?: string | undefined;
|
|
17328
17360
|
};
|
|
@@ -17337,14 +17369,14 @@ declare function init(config: AuthHeroConfig): {
|
|
|
17337
17369
|
input: {
|
|
17338
17370
|
form: {
|
|
17339
17371
|
token: string;
|
|
17340
|
-
token_type_hint?: "
|
|
17372
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17341
17373
|
client_id?: string | undefined;
|
|
17342
17374
|
client_secret?: string | undefined;
|
|
17343
17375
|
};
|
|
17344
17376
|
} & {
|
|
17345
17377
|
json: {
|
|
17346
17378
|
token: string;
|
|
17347
|
-
token_type_hint?: "
|
|
17379
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
17348
17380
|
client_id?: string | undefined;
|
|
17349
17381
|
client_secret?: string | undefined;
|
|
17350
17382
|
};
|
|
@@ -19071,7 +19103,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19071
19103
|
$get: {
|
|
19072
19104
|
input: {
|
|
19073
19105
|
param: {
|
|
19074
|
-
screen: "signup" | "login" | "
|
|
19106
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19075
19107
|
};
|
|
19076
19108
|
} & {
|
|
19077
19109
|
query: {
|
|
@@ -19087,7 +19119,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19087
19119
|
} | {
|
|
19088
19120
|
input: {
|
|
19089
19121
|
param: {
|
|
19090
|
-
screen: "signup" | "login" | "
|
|
19122
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19091
19123
|
};
|
|
19092
19124
|
} & {
|
|
19093
19125
|
query: {
|
|
@@ -19103,7 +19135,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19103
19135
|
} | {
|
|
19104
19136
|
input: {
|
|
19105
19137
|
param: {
|
|
19106
|
-
screen: "signup" | "login" | "
|
|
19138
|
+
screen: "signup" | "login" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
19107
19139
|
};
|
|
19108
19140
|
} & {
|
|
19109
19141
|
query: {
|
|
@@ -19123,7 +19155,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19123
19155
|
$post: {
|
|
19124
19156
|
input: {
|
|
19125
19157
|
param: {
|
|
19126
|
-
screen: "signup" | "login" | "
|
|
19158
|
+
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";
|
|
19127
19159
|
};
|
|
19128
19160
|
} & {
|
|
19129
19161
|
query: {
|
|
@@ -19141,7 +19173,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19141
19173
|
} | {
|
|
19142
19174
|
input: {
|
|
19143
19175
|
param: {
|
|
19144
|
-
screen: "signup" | "login" | "
|
|
19176
|
+
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";
|
|
19145
19177
|
};
|
|
19146
19178
|
} & {
|
|
19147
19179
|
query: {
|
|
@@ -19159,7 +19191,7 @@ declare function init(config: AuthHeroConfig): {
|
|
|
19159
19191
|
} | {
|
|
19160
19192
|
input: {
|
|
19161
19193
|
param: {
|
|
19162
|
-
screen: "signup" | "login" | "
|
|
19194
|
+
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";
|
|
19163
19195
|
};
|
|
19164
19196
|
} & {
|
|
19165
19197
|
query: {
|