authhero 8.22.0 → 8.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +142 -142
- package/dist/authhero.d.ts +242 -127
- package/dist/authhero.mjs +20674 -15903
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +12 -4
- package/dist/types/helpers/backchannel-logout.d.ts +19 -0
- package/dist/types/helpers/client.d.ts +10 -1
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +232 -126
- package/dist/types/routes/auth-api/index.d.ts +24 -20
- package/dist/types/routes/auth-api/passwordless.d.ts +8 -8
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/auth-api/well-known.d.ts +4 -0
- package/dist/types/routes/management-api/action-executions.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 +9 -9
- package/dist/types/routes/management-api/clients.d.ts +68 -16
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +179 -77
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +50 -0
- package/dist/types/routes/management-api/tenants.d.ts +5 -5
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +24 -8
- 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/types/IdToken.d.ts +2 -2
- package/dist/types/utils/crypto.d.ts +3 -0
- package/dist/types/utils/jwt.d.ts +29 -0
- package/dist/types/utils/request-origin.d.ts +6 -0
- package/dist/types/utils/totp.d.ts +10 -0
- package/dist/types/variables.d.ts +8 -0
- package/package.json +6 -7
package/dist/types/index.d.ts
CHANGED
|
@@ -151,7 +151,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
151
151
|
};
|
|
152
152
|
} & {
|
|
153
153
|
json: {
|
|
154
|
-
type: "
|
|
154
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
155
155
|
phone_number?: string | undefined;
|
|
156
156
|
totp_secret?: string | undefined;
|
|
157
157
|
credential_id?: string | undefined;
|
|
@@ -291,7 +291,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
291
291
|
};
|
|
292
292
|
};
|
|
293
293
|
output: {
|
|
294
|
-
name: "
|
|
294
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
295
295
|
enabled: boolean;
|
|
296
296
|
trial_expired?: boolean | undefined;
|
|
297
297
|
}[];
|
|
@@ -446,7 +446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
446
446
|
$get: {
|
|
447
447
|
input: {
|
|
448
448
|
param: {
|
|
449
|
-
factor_name: "
|
|
449
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
450
450
|
};
|
|
451
451
|
} & {
|
|
452
452
|
header: {
|
|
@@ -454,7 +454,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
454
454
|
};
|
|
455
455
|
};
|
|
456
456
|
output: {
|
|
457
|
-
name: "
|
|
457
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
458
458
|
enabled: boolean;
|
|
459
459
|
trial_expired?: boolean | undefined;
|
|
460
460
|
};
|
|
@@ -467,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
467
467
|
$put: {
|
|
468
468
|
input: {
|
|
469
469
|
param: {
|
|
470
|
-
factor_name: "
|
|
470
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
471
471
|
};
|
|
472
472
|
} & {
|
|
473
473
|
header: {
|
|
@@ -479,7 +479,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
479
479
|
};
|
|
480
480
|
};
|
|
481
481
|
output: {
|
|
482
|
-
name: "
|
|
482
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
483
483
|
enabled: boolean;
|
|
484
484
|
trial_expired?: boolean | undefined;
|
|
485
485
|
};
|
|
@@ -1257,11 +1257,11 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1257
1257
|
invitee: {
|
|
1258
1258
|
email?: string | undefined;
|
|
1259
1259
|
};
|
|
1260
|
+
roles?: string[] | undefined;
|
|
1260
1261
|
id?: string | undefined;
|
|
1261
1262
|
app_metadata?: Record<string, any> | undefined;
|
|
1262
1263
|
user_metadata?: Record<string, any> | undefined;
|
|
1263
1264
|
connection_id?: string | undefined;
|
|
1264
|
-
roles?: string[] | undefined;
|
|
1265
1265
|
ttl_sec?: number | undefined;
|
|
1266
1266
|
send_invitation_email?: boolean | undefined;
|
|
1267
1267
|
};
|
|
@@ -1446,8 +1446,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1446
1446
|
};
|
|
1447
1447
|
} & {
|
|
1448
1448
|
json: {
|
|
1449
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1450
1449
|
show_as_button?: boolean | undefined;
|
|
1450
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1451
1451
|
is_signup_enabled?: boolean | undefined;
|
|
1452
1452
|
};
|
|
1453
1453
|
};
|
|
@@ -2009,6 +2009,56 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2009
2009
|
status: 200;
|
|
2010
2010
|
};
|
|
2011
2011
|
};
|
|
2012
|
+
} & {
|
|
2013
|
+
"/:id/users": {
|
|
2014
|
+
$get: {
|
|
2015
|
+
input: {
|
|
2016
|
+
param: {
|
|
2017
|
+
id: string;
|
|
2018
|
+
};
|
|
2019
|
+
} & {
|
|
2020
|
+
query: {
|
|
2021
|
+
page?: string | undefined;
|
|
2022
|
+
include_totals?: string | undefined;
|
|
2023
|
+
from?: string | undefined;
|
|
2024
|
+
per_page?: string | undefined;
|
|
2025
|
+
take?: string | undefined;
|
|
2026
|
+
};
|
|
2027
|
+
} & {
|
|
2028
|
+
header: {
|
|
2029
|
+
"tenant-id"?: string | undefined;
|
|
2030
|
+
};
|
|
2031
|
+
};
|
|
2032
|
+
output: {
|
|
2033
|
+
user_id: string;
|
|
2034
|
+
email?: string | undefined;
|
|
2035
|
+
name?: string | undefined;
|
|
2036
|
+
picture?: string | undefined;
|
|
2037
|
+
}[] | {
|
|
2038
|
+
start: number;
|
|
2039
|
+
limit: number;
|
|
2040
|
+
length: number;
|
|
2041
|
+
users: {
|
|
2042
|
+
user_id: string;
|
|
2043
|
+
email?: string | undefined;
|
|
2044
|
+
name?: string | undefined;
|
|
2045
|
+
picture?: string | undefined;
|
|
2046
|
+
}[];
|
|
2047
|
+
total?: number | undefined;
|
|
2048
|
+
next?: string | undefined;
|
|
2049
|
+
} | {
|
|
2050
|
+
users: {
|
|
2051
|
+
user_id: string;
|
|
2052
|
+
email?: string | undefined;
|
|
2053
|
+
name?: string | undefined;
|
|
2054
|
+
picture?: string | undefined;
|
|
2055
|
+
}[];
|
|
2056
|
+
next?: string | undefined;
|
|
2057
|
+
};
|
|
2058
|
+
outputFormat: "json";
|
|
2059
|
+
status: 200;
|
|
2060
|
+
};
|
|
2061
|
+
};
|
|
2012
2062
|
} & {
|
|
2013
2063
|
"/:id/permissions": {
|
|
2014
2064
|
$post: {
|
|
@@ -6922,7 +6972,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6922
6972
|
};
|
|
6923
6973
|
};
|
|
6924
6974
|
output: {
|
|
6925
|
-
prompt: "
|
|
6975
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6926
6976
|
language: string;
|
|
6927
6977
|
}[];
|
|
6928
6978
|
outputFormat: "json";
|
|
@@ -6960,7 +7010,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6960
7010
|
$get: {
|
|
6961
7011
|
input: {
|
|
6962
7012
|
param: {
|
|
6963
|
-
prompt: "
|
|
7013
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6964
7014
|
language: string;
|
|
6965
7015
|
};
|
|
6966
7016
|
} & {
|
|
@@ -6982,7 +7032,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6982
7032
|
$put: {
|
|
6983
7033
|
input: {
|
|
6984
7034
|
param: {
|
|
6985
|
-
prompt: "
|
|
7035
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
6986
7036
|
language: string;
|
|
6987
7037
|
};
|
|
6988
7038
|
} & {
|
|
@@ -7006,7 +7056,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7006
7056
|
$delete: {
|
|
7007
7057
|
input: {
|
|
7008
7058
|
param: {
|
|
7009
|
-
prompt: "
|
|
7059
|
+
prompt: "status" | "mfa" | "organizations" | "signup" | "common" | "consent" | "device-flow" | "email-otp-challenge" | "email-verification" | "invitation" | "login" | "login-id" | "login-password" | "login-passwordless" | "mfa-email" | "mfa-otp" | "mfa-phone" | "mfa-login-options" | "mfa-push" | "mfa-recovery-code" | "mfa-voice" | "mfa-webauthn" | "passkeys" | "reset-password" | "signup-id" | "signup-password" | "captcha" | "custom-form";
|
|
7010
7060
|
language: string;
|
|
7011
7061
|
};
|
|
7012
7062
|
} & {
|
|
@@ -7098,7 +7148,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7098
7148
|
active?: boolean | undefined;
|
|
7099
7149
|
} | undefined;
|
|
7100
7150
|
signup?: {
|
|
7101
|
-
status?: "
|
|
7151
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7102
7152
|
verification?: {
|
|
7103
7153
|
active?: boolean | undefined;
|
|
7104
7154
|
} | undefined;
|
|
@@ -7115,7 +7165,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7115
7165
|
active?: boolean | undefined;
|
|
7116
7166
|
} | undefined;
|
|
7117
7167
|
signup?: {
|
|
7118
|
-
status?: "
|
|
7168
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7119
7169
|
} | undefined;
|
|
7120
7170
|
validation?: {
|
|
7121
7171
|
max_length?: number | undefined;
|
|
@@ -7132,7 +7182,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7132
7182
|
active?: boolean | undefined;
|
|
7133
7183
|
} | undefined;
|
|
7134
7184
|
signup?: {
|
|
7135
|
-
status?: "
|
|
7185
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7136
7186
|
} | undefined;
|
|
7137
7187
|
} | undefined;
|
|
7138
7188
|
} | undefined;
|
|
@@ -7232,7 +7282,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7232
7282
|
active?: boolean | undefined;
|
|
7233
7283
|
} | undefined;
|
|
7234
7284
|
signup?: {
|
|
7235
|
-
status?: "
|
|
7285
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7236
7286
|
verification?: {
|
|
7237
7287
|
active?: boolean | undefined;
|
|
7238
7288
|
} | undefined;
|
|
@@ -7249,7 +7299,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7249
7299
|
active?: boolean | undefined;
|
|
7250
7300
|
} | undefined;
|
|
7251
7301
|
signup?: {
|
|
7252
|
-
status?: "
|
|
7302
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7253
7303
|
} | undefined;
|
|
7254
7304
|
validation?: {
|
|
7255
7305
|
max_length?: number | undefined;
|
|
@@ -7266,7 +7316,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7266
7316
|
active?: boolean | undefined;
|
|
7267
7317
|
} | undefined;
|
|
7268
7318
|
signup?: {
|
|
7269
|
-
status?: "
|
|
7319
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7270
7320
|
} | undefined;
|
|
7271
7321
|
} | undefined;
|
|
7272
7322
|
} | undefined;
|
|
@@ -7382,7 +7432,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7382
7432
|
active?: boolean | undefined;
|
|
7383
7433
|
} | undefined;
|
|
7384
7434
|
signup?: {
|
|
7385
|
-
status?: "
|
|
7435
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7386
7436
|
verification?: {
|
|
7387
7437
|
active?: boolean | undefined;
|
|
7388
7438
|
} | undefined;
|
|
@@ -7399,7 +7449,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7399
7449
|
active?: boolean | undefined;
|
|
7400
7450
|
} | undefined;
|
|
7401
7451
|
signup?: {
|
|
7402
|
-
status?: "
|
|
7452
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7403
7453
|
} | undefined;
|
|
7404
7454
|
validation?: {
|
|
7405
7455
|
max_length?: number | undefined;
|
|
@@ -7416,7 +7466,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7416
7466
|
active?: boolean | undefined;
|
|
7417
7467
|
} | undefined;
|
|
7418
7468
|
signup?: {
|
|
7419
|
-
status?: "
|
|
7469
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7420
7470
|
} | undefined;
|
|
7421
7471
|
} | undefined;
|
|
7422
7472
|
} | undefined;
|
|
@@ -7561,7 +7611,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7561
7611
|
active?: boolean | undefined;
|
|
7562
7612
|
} | undefined;
|
|
7563
7613
|
signup?: {
|
|
7564
|
-
status?: "
|
|
7614
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7565
7615
|
verification?: {
|
|
7566
7616
|
active?: boolean | undefined;
|
|
7567
7617
|
} | undefined;
|
|
@@ -7578,7 +7628,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7578
7628
|
active?: boolean | undefined;
|
|
7579
7629
|
} | undefined;
|
|
7580
7630
|
signup?: {
|
|
7581
|
-
status?: "
|
|
7631
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7582
7632
|
} | undefined;
|
|
7583
7633
|
validation?: {
|
|
7584
7634
|
max_length?: number | undefined;
|
|
@@ -7595,7 +7645,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7595
7645
|
active?: boolean | undefined;
|
|
7596
7646
|
} | undefined;
|
|
7597
7647
|
signup?: {
|
|
7598
|
-
status?: "
|
|
7648
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7599
7649
|
} | undefined;
|
|
7600
7650
|
} | undefined;
|
|
7601
7651
|
} | undefined;
|
|
@@ -7719,7 +7769,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7719
7769
|
active?: boolean | undefined;
|
|
7720
7770
|
} | undefined;
|
|
7721
7771
|
signup?: {
|
|
7722
|
-
status?: "
|
|
7772
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7723
7773
|
verification?: {
|
|
7724
7774
|
active?: boolean | undefined;
|
|
7725
7775
|
} | undefined;
|
|
@@ -7736,7 +7786,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7736
7786
|
active?: boolean | undefined;
|
|
7737
7787
|
} | undefined;
|
|
7738
7788
|
signup?: {
|
|
7739
|
-
status?: "
|
|
7789
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7740
7790
|
} | undefined;
|
|
7741
7791
|
validation?: {
|
|
7742
7792
|
max_length?: number | undefined;
|
|
@@ -7753,7 +7803,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7753
7803
|
active?: boolean | undefined;
|
|
7754
7804
|
} | undefined;
|
|
7755
7805
|
signup?: {
|
|
7756
|
-
status?: "
|
|
7806
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7757
7807
|
} | undefined;
|
|
7758
7808
|
} | undefined;
|
|
7759
7809
|
} | undefined;
|
|
@@ -8509,7 +8559,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8509
8559
|
log_type: string;
|
|
8510
8560
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8511
8561
|
actor: {
|
|
8512
|
-
type: "
|
|
8562
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8513
8563
|
id?: string | undefined;
|
|
8514
8564
|
email?: string | undefined;
|
|
8515
8565
|
org_id?: string | undefined;
|
|
@@ -8819,7 +8869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8819
8869
|
created_at: string;
|
|
8820
8870
|
updated_at: string;
|
|
8821
8871
|
name: string;
|
|
8822
|
-
provider: "auth0" | "
|
|
8872
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8823
8873
|
connection: string;
|
|
8824
8874
|
enabled: boolean;
|
|
8825
8875
|
credentials: {
|
|
@@ -8851,7 +8901,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8851
8901
|
created_at: string;
|
|
8852
8902
|
updated_at: string;
|
|
8853
8903
|
name: string;
|
|
8854
|
-
provider: "auth0" | "
|
|
8904
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8855
8905
|
connection: string;
|
|
8856
8906
|
enabled: boolean;
|
|
8857
8907
|
credentials: {
|
|
@@ -8877,7 +8927,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8877
8927
|
} & {
|
|
8878
8928
|
json: {
|
|
8879
8929
|
name: string;
|
|
8880
|
-
provider: "auth0" | "
|
|
8930
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8881
8931
|
connection: string;
|
|
8882
8932
|
credentials: {
|
|
8883
8933
|
domain: string;
|
|
@@ -8894,7 +8944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8894
8944
|
created_at: string;
|
|
8895
8945
|
updated_at: string;
|
|
8896
8946
|
name: string;
|
|
8897
|
-
provider: "auth0" | "
|
|
8947
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8898
8948
|
connection: string;
|
|
8899
8949
|
enabled: boolean;
|
|
8900
8950
|
credentials: {
|
|
@@ -8925,7 +8975,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8925
8975
|
json: {
|
|
8926
8976
|
id?: string | undefined;
|
|
8927
8977
|
name?: string | undefined;
|
|
8928
|
-
provider?: "auth0" | "
|
|
8978
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8929
8979
|
connection?: string | undefined;
|
|
8930
8980
|
enabled?: boolean | undefined;
|
|
8931
8981
|
credentials?: {
|
|
@@ -8941,7 +8991,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8941
8991
|
created_at: string;
|
|
8942
8992
|
updated_at: string;
|
|
8943
8993
|
name: string;
|
|
8944
|
-
provider: "auth0" | "
|
|
8994
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8945
8995
|
connection: string;
|
|
8946
8996
|
enabled: boolean;
|
|
8947
8997
|
credentials: {
|
|
@@ -8989,7 +9039,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8989
9039
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8990
9040
|
};
|
|
8991
9041
|
id: string;
|
|
8992
|
-
status: "
|
|
9042
|
+
status: "active" | "suspended" | "paused";
|
|
8993
9043
|
filters?: {
|
|
8994
9044
|
type: string;
|
|
8995
9045
|
name: string;
|
|
@@ -9021,7 +9071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9021
9071
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9022
9072
|
};
|
|
9023
9073
|
id: string;
|
|
9024
|
-
status: "
|
|
9074
|
+
status: "active" | "suspended" | "paused";
|
|
9025
9075
|
filters?: {
|
|
9026
9076
|
type: string;
|
|
9027
9077
|
name: string;
|
|
@@ -9046,7 +9096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9046
9096
|
name: string;
|
|
9047
9097
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9048
9098
|
sink: Record<string, unknown>;
|
|
9049
|
-
status?: "
|
|
9099
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9050
9100
|
filters?: {
|
|
9051
9101
|
type: string;
|
|
9052
9102
|
name: string;
|
|
@@ -9061,7 +9111,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9061
9111
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9062
9112
|
};
|
|
9063
9113
|
id: string;
|
|
9064
|
-
status: "
|
|
9114
|
+
status: "active" | "suspended" | "paused";
|
|
9065
9115
|
filters?: {
|
|
9066
9116
|
type: string;
|
|
9067
9117
|
name: string;
|
|
@@ -9096,7 +9146,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9096
9146
|
}[] | undefined;
|
|
9097
9147
|
isPriority?: boolean | undefined;
|
|
9098
9148
|
id?: string | undefined;
|
|
9099
|
-
status?: "
|
|
9149
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9100
9150
|
created_at?: string | undefined;
|
|
9101
9151
|
updated_at?: string | undefined;
|
|
9102
9152
|
};
|
|
@@ -9108,7 +9158,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9108
9158
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9109
9159
|
};
|
|
9110
9160
|
id: string;
|
|
9111
|
-
status: "
|
|
9161
|
+
status: "active" | "suspended" | "paused";
|
|
9112
9162
|
filters?: {
|
|
9113
9163
|
type: string;
|
|
9114
9164
|
name: string;
|
|
@@ -9159,7 +9209,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9159
9209
|
};
|
|
9160
9210
|
};
|
|
9161
9211
|
output: {
|
|
9162
|
-
type: "fn" | "i" | "
|
|
9212
|
+
type: "fn" | "i" | "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" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9163
9213
|
date: string;
|
|
9164
9214
|
isMobile: boolean;
|
|
9165
9215
|
log_id: string;
|
|
@@ -9198,7 +9248,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9198
9248
|
limit: number;
|
|
9199
9249
|
length: number;
|
|
9200
9250
|
logs: {
|
|
9201
|
-
type: "fn" | "i" | "
|
|
9251
|
+
type: "fn" | "i" | "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" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9202
9252
|
date: string;
|
|
9203
9253
|
isMobile: boolean;
|
|
9204
9254
|
log_id: string;
|
|
@@ -9237,7 +9287,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9237
9287
|
next?: string | undefined;
|
|
9238
9288
|
} | {
|
|
9239
9289
|
logs: {
|
|
9240
|
-
type: "fn" | "i" | "
|
|
9290
|
+
type: "fn" | "i" | "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" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9241
9291
|
date: string;
|
|
9242
9292
|
isMobile: boolean;
|
|
9243
9293
|
log_id: string;
|
|
@@ -9291,7 +9341,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9291
9341
|
};
|
|
9292
9342
|
};
|
|
9293
9343
|
output: {
|
|
9294
|
-
type: "fn" | "i" | "
|
|
9344
|
+
type: "fn" | "i" | "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" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9295
9345
|
date: string;
|
|
9296
9346
|
isMobile: boolean;
|
|
9297
9347
|
log_id: string;
|
|
@@ -9677,7 +9727,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9677
9727
|
[x: string]: any;
|
|
9678
9728
|
} | undefined;
|
|
9679
9729
|
oidc_logout?: {
|
|
9680
|
-
[x: string]:
|
|
9730
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9731
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9732
|
+
backchannel_logout_initiators?: {
|
|
9733
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9734
|
+
mode?: "custom" | "all" | undefined;
|
|
9735
|
+
selected_initiators?: string[] | undefined;
|
|
9736
|
+
} | undefined;
|
|
9681
9737
|
} | undefined;
|
|
9682
9738
|
grant_types?: string[] | undefined;
|
|
9683
9739
|
jwt_configuration?: {
|
|
@@ -9696,7 +9752,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9696
9752
|
addons?: {
|
|
9697
9753
|
[x: string]: any;
|
|
9698
9754
|
} | undefined;
|
|
9699
|
-
token_endpoint_auth_method?: "none" | "
|
|
9755
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9700
9756
|
client_metadata?: {
|
|
9701
9757
|
[x: string]: string;
|
|
9702
9758
|
} | undefined;
|
|
@@ -9773,7 +9829,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9773
9829
|
[x: string]: any;
|
|
9774
9830
|
} | undefined;
|
|
9775
9831
|
oidc_logout?: {
|
|
9776
|
-
[x: string]:
|
|
9832
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9833
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9834
|
+
backchannel_logout_initiators?: {
|
|
9835
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9836
|
+
mode?: "custom" | "all" | undefined;
|
|
9837
|
+
selected_initiators?: string[] | undefined;
|
|
9838
|
+
} | undefined;
|
|
9777
9839
|
} | undefined;
|
|
9778
9840
|
grant_types?: string[] | undefined;
|
|
9779
9841
|
jwt_configuration?: {
|
|
@@ -9792,7 +9854,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9792
9854
|
addons?: {
|
|
9793
9855
|
[x: string]: any;
|
|
9794
9856
|
} | undefined;
|
|
9795
|
-
token_endpoint_auth_method?: "none" | "
|
|
9857
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9796
9858
|
client_metadata?: {
|
|
9797
9859
|
[x: string]: string;
|
|
9798
9860
|
} | undefined;
|
|
@@ -9869,7 +9931,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9869
9931
|
[x: string]: any;
|
|
9870
9932
|
} | undefined;
|
|
9871
9933
|
oidc_logout?: {
|
|
9872
|
-
[x: string]:
|
|
9934
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9935
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
9936
|
+
backchannel_logout_initiators?: {
|
|
9937
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
9938
|
+
mode?: "custom" | "all" | undefined;
|
|
9939
|
+
selected_initiators?: string[] | undefined;
|
|
9940
|
+
} | undefined;
|
|
9873
9941
|
} | undefined;
|
|
9874
9942
|
grant_types?: string[] | undefined;
|
|
9875
9943
|
jwt_configuration?: {
|
|
@@ -9888,7 +9956,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9888
9956
|
addons?: {
|
|
9889
9957
|
[x: string]: any;
|
|
9890
9958
|
} | undefined;
|
|
9891
|
-
token_endpoint_auth_method?: "none" | "
|
|
9959
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9892
9960
|
client_metadata?: {
|
|
9893
9961
|
[x: string]: string;
|
|
9894
9962
|
} | undefined;
|
|
@@ -9980,7 +10048,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9980
10048
|
[x: string]: any;
|
|
9981
10049
|
} | undefined;
|
|
9982
10050
|
oidc_logout?: {
|
|
9983
|
-
[x: string]:
|
|
10051
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10052
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10053
|
+
backchannel_logout_initiators?: {
|
|
10054
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10055
|
+
mode?: "custom" | "all" | undefined;
|
|
10056
|
+
selected_initiators?: string[] | undefined;
|
|
10057
|
+
} | undefined;
|
|
9984
10058
|
} | undefined;
|
|
9985
10059
|
grant_types?: string[] | undefined;
|
|
9986
10060
|
jwt_configuration?: {
|
|
@@ -9999,7 +10073,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9999
10073
|
addons?: {
|
|
10000
10074
|
[x: string]: any;
|
|
10001
10075
|
} | undefined;
|
|
10002
|
-
token_endpoint_auth_method?: "none" | "
|
|
10076
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10003
10077
|
client_metadata?: {
|
|
10004
10078
|
[x: string]: string;
|
|
10005
10079
|
} | undefined;
|
|
@@ -10095,7 +10169,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10095
10169
|
connections?: string[] | undefined;
|
|
10096
10170
|
allowed_logout_urls?: string[] | undefined;
|
|
10097
10171
|
session_transfer?: Record<string, any> | undefined;
|
|
10098
|
-
oidc_logout?:
|
|
10172
|
+
oidc_logout?: {
|
|
10173
|
+
[x: string]: unknown;
|
|
10174
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10175
|
+
backchannel_logout_initiators?: {
|
|
10176
|
+
[x: string]: unknown;
|
|
10177
|
+
mode?: "custom" | "all" | undefined;
|
|
10178
|
+
selected_initiators?: string[] | undefined;
|
|
10179
|
+
} | undefined;
|
|
10180
|
+
} | undefined;
|
|
10099
10181
|
grant_types?: string[] | undefined;
|
|
10100
10182
|
jwt_configuration?: Record<string, any> | undefined;
|
|
10101
10183
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -10109,7 +10191,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10109
10191
|
custom_login_page_preview?: string | undefined;
|
|
10110
10192
|
form_template?: string | undefined;
|
|
10111
10193
|
addons?: Record<string, any> | undefined;
|
|
10112
|
-
token_endpoint_auth_method?: "none" | "
|
|
10194
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10113
10195
|
client_metadata?: Record<string, string> | undefined;
|
|
10114
10196
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10115
10197
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10170,7 +10252,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10170
10252
|
[x: string]: any;
|
|
10171
10253
|
} | undefined;
|
|
10172
10254
|
oidc_logout?: {
|
|
10173
|
-
[x: string]:
|
|
10255
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10256
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10257
|
+
backchannel_logout_initiators?: {
|
|
10258
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10259
|
+
mode?: "custom" | "all" | undefined;
|
|
10260
|
+
selected_initiators?: string[] | undefined;
|
|
10261
|
+
} | undefined;
|
|
10174
10262
|
} | undefined;
|
|
10175
10263
|
grant_types?: string[] | undefined;
|
|
10176
10264
|
jwt_configuration?: {
|
|
@@ -10189,7 +10277,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10189
10277
|
addons?: {
|
|
10190
10278
|
[x: string]: any;
|
|
10191
10279
|
} | undefined;
|
|
10192
|
-
token_endpoint_auth_method?: "none" | "
|
|
10280
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10193
10281
|
client_metadata?: {
|
|
10194
10282
|
[x: string]: string;
|
|
10195
10283
|
} | undefined;
|
|
@@ -10264,7 +10352,15 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10264
10352
|
connections?: string[] | undefined;
|
|
10265
10353
|
allowed_logout_urls?: string[] | undefined;
|
|
10266
10354
|
session_transfer?: Record<string, any> | undefined;
|
|
10267
|
-
oidc_logout?:
|
|
10355
|
+
oidc_logout?: {
|
|
10356
|
+
[x: string]: unknown;
|
|
10357
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10358
|
+
backchannel_logout_initiators?: {
|
|
10359
|
+
[x: string]: unknown;
|
|
10360
|
+
mode?: "custom" | "all" | undefined;
|
|
10361
|
+
selected_initiators?: string[] | undefined;
|
|
10362
|
+
} | undefined;
|
|
10363
|
+
} | undefined;
|
|
10268
10364
|
grant_types?: string[] | undefined;
|
|
10269
10365
|
jwt_configuration?: Record<string, any> | undefined;
|
|
10270
10366
|
signing_keys?: Record<string, any>[] | undefined;
|
|
@@ -10278,7 +10374,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10278
10374
|
custom_login_page_preview?: string | undefined;
|
|
10279
10375
|
form_template?: string | undefined;
|
|
10280
10376
|
addons?: Record<string, any> | undefined;
|
|
10281
|
-
token_endpoint_auth_method?: "none" | "
|
|
10377
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10282
10378
|
client_metadata?: Record<string, string> | undefined;
|
|
10283
10379
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10284
10380
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10339,7 +10435,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10339
10435
|
[x: string]: any;
|
|
10340
10436
|
} | undefined;
|
|
10341
10437
|
oidc_logout?: {
|
|
10342
|
-
[x: string]:
|
|
10438
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10439
|
+
backchannel_logout_urls?: string[] | undefined;
|
|
10440
|
+
backchannel_logout_initiators?: {
|
|
10441
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
10442
|
+
mode?: "custom" | "all" | undefined;
|
|
10443
|
+
selected_initiators?: string[] | undefined;
|
|
10444
|
+
} | undefined;
|
|
10343
10445
|
} | undefined;
|
|
10344
10446
|
grant_types?: string[] | undefined;
|
|
10345
10447
|
jwt_configuration?: {
|
|
@@ -10358,7 +10460,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10358
10460
|
addons?: {
|
|
10359
10461
|
[x: string]: any;
|
|
10360
10462
|
} | undefined;
|
|
10361
|
-
token_endpoint_auth_method?: "none" | "
|
|
10463
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10362
10464
|
client_metadata?: {
|
|
10363
10465
|
[x: string]: string;
|
|
10364
10466
|
} | undefined;
|
|
@@ -10480,7 +10582,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10480
10582
|
active?: boolean | undefined;
|
|
10481
10583
|
} | undefined;
|
|
10482
10584
|
signup?: {
|
|
10483
|
-
status?: "
|
|
10585
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10484
10586
|
verification?: {
|
|
10485
10587
|
active?: boolean | undefined;
|
|
10486
10588
|
} | undefined;
|
|
@@ -10497,7 +10599,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10497
10599
|
active?: boolean | undefined;
|
|
10498
10600
|
} | undefined;
|
|
10499
10601
|
signup?: {
|
|
10500
|
-
status?: "
|
|
10602
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10501
10603
|
} | undefined;
|
|
10502
10604
|
validation?: {
|
|
10503
10605
|
max_length?: number | undefined;
|
|
@@ -10514,7 +10616,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10514
10616
|
active?: boolean | undefined;
|
|
10515
10617
|
} | undefined;
|
|
10516
10618
|
signup?: {
|
|
10517
|
-
status?: "
|
|
10619
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10518
10620
|
} | undefined;
|
|
10519
10621
|
} | undefined;
|
|
10520
10622
|
} | undefined;
|
|
@@ -10634,7 +10736,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10634
10736
|
active?: boolean | undefined;
|
|
10635
10737
|
} | undefined;
|
|
10636
10738
|
signup?: {
|
|
10637
|
-
status?: "
|
|
10739
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10638
10740
|
verification?: {
|
|
10639
10741
|
active?: boolean | undefined;
|
|
10640
10742
|
} | undefined;
|
|
@@ -10651,7 +10753,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10651
10753
|
active?: boolean | undefined;
|
|
10652
10754
|
} | undefined;
|
|
10653
10755
|
signup?: {
|
|
10654
|
-
status?: "
|
|
10756
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10655
10757
|
} | undefined;
|
|
10656
10758
|
validation?: {
|
|
10657
10759
|
max_length?: number | undefined;
|
|
@@ -10668,7 +10770,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10668
10770
|
active?: boolean | undefined;
|
|
10669
10771
|
} | undefined;
|
|
10670
10772
|
signup?: {
|
|
10671
|
-
status?: "
|
|
10773
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10672
10774
|
} | undefined;
|
|
10673
10775
|
} | undefined;
|
|
10674
10776
|
} | undefined;
|
|
@@ -11625,7 +11727,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11625
11727
|
};
|
|
11626
11728
|
};
|
|
11627
11729
|
output: {
|
|
11628
|
-
type: "fn" | "i" | "
|
|
11730
|
+
type: "fn" | "i" | "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" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11629
11731
|
date: string;
|
|
11630
11732
|
isMobile: boolean;
|
|
11631
11733
|
log_id: string;
|
|
@@ -11664,7 +11766,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11664
11766
|
limit: number;
|
|
11665
11767
|
length: number;
|
|
11666
11768
|
logs: {
|
|
11667
|
-
type: "fn" | "i" | "
|
|
11769
|
+
type: "fn" | "i" | "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" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11668
11770
|
date: string;
|
|
11669
11771
|
isMobile: boolean;
|
|
11670
11772
|
log_id: string;
|
|
@@ -11983,7 +12085,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11983
12085
|
};
|
|
11984
12086
|
} & {
|
|
11985
12087
|
json: {
|
|
11986
|
-
template: "
|
|
12088
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
11987
12089
|
body: string;
|
|
11988
12090
|
from: string;
|
|
11989
12091
|
subject: string;
|
|
@@ -12004,7 +12106,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12004
12106
|
};
|
|
12005
12107
|
} & {
|
|
12006
12108
|
json: {
|
|
12007
|
-
template: "
|
|
12109
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12008
12110
|
body: string;
|
|
12009
12111
|
from: string;
|
|
12010
12112
|
subject: string;
|
|
@@ -12016,7 +12118,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12016
12118
|
};
|
|
12017
12119
|
};
|
|
12018
12120
|
output: {
|
|
12019
|
-
template: "
|
|
12121
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12020
12122
|
body: string;
|
|
12021
12123
|
from: string;
|
|
12022
12124
|
subject: string;
|
|
@@ -12039,7 +12141,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12039
12141
|
};
|
|
12040
12142
|
};
|
|
12041
12143
|
output: {
|
|
12042
|
-
name: "
|
|
12144
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12043
12145
|
body: string;
|
|
12044
12146
|
subject: string;
|
|
12045
12147
|
}[];
|
|
@@ -12052,7 +12154,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12052
12154
|
$get: {
|
|
12053
12155
|
input: {
|
|
12054
12156
|
param: {
|
|
12055
|
-
templateName: "
|
|
12157
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12056
12158
|
};
|
|
12057
12159
|
} & {
|
|
12058
12160
|
header: {
|
|
@@ -12065,7 +12167,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12065
12167
|
} | {
|
|
12066
12168
|
input: {
|
|
12067
12169
|
param: {
|
|
12068
|
-
templateName: "
|
|
12170
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12069
12171
|
};
|
|
12070
12172
|
} & {
|
|
12071
12173
|
header: {
|
|
@@ -12073,7 +12175,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12073
12175
|
};
|
|
12074
12176
|
};
|
|
12075
12177
|
output: {
|
|
12076
|
-
template: "
|
|
12178
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12077
12179
|
body: string;
|
|
12078
12180
|
from: string;
|
|
12079
12181
|
subject: string;
|
|
@@ -12092,7 +12194,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12092
12194
|
$put: {
|
|
12093
12195
|
input: {
|
|
12094
12196
|
param: {
|
|
12095
|
-
templateName: "
|
|
12197
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12096
12198
|
};
|
|
12097
12199
|
} & {
|
|
12098
12200
|
header: {
|
|
@@ -12100,7 +12202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12100
12202
|
};
|
|
12101
12203
|
} & {
|
|
12102
12204
|
json: {
|
|
12103
|
-
template: "
|
|
12205
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12104
12206
|
body: string;
|
|
12105
12207
|
subject: string;
|
|
12106
12208
|
syntax?: "liquid" | undefined;
|
|
@@ -12112,7 +12214,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12112
12214
|
};
|
|
12113
12215
|
};
|
|
12114
12216
|
output: {
|
|
12115
|
-
template: "
|
|
12217
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12116
12218
|
body: string;
|
|
12117
12219
|
from: string;
|
|
12118
12220
|
subject: string;
|
|
@@ -12131,7 +12233,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12131
12233
|
$patch: {
|
|
12132
12234
|
input: {
|
|
12133
12235
|
param: {
|
|
12134
|
-
templateName: "
|
|
12236
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12135
12237
|
};
|
|
12136
12238
|
} & {
|
|
12137
12239
|
header: {
|
|
@@ -12139,7 +12241,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12139
12241
|
};
|
|
12140
12242
|
} & {
|
|
12141
12243
|
json: {
|
|
12142
|
-
template?: "
|
|
12244
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12143
12245
|
body?: string | undefined;
|
|
12144
12246
|
from?: string | undefined;
|
|
12145
12247
|
subject?: string | undefined;
|
|
@@ -12156,7 +12258,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12156
12258
|
} | {
|
|
12157
12259
|
input: {
|
|
12158
12260
|
param: {
|
|
12159
|
-
templateName: "
|
|
12261
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12160
12262
|
};
|
|
12161
12263
|
} & {
|
|
12162
12264
|
header: {
|
|
@@ -12164,7 +12266,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12164
12266
|
};
|
|
12165
12267
|
} & {
|
|
12166
12268
|
json: {
|
|
12167
|
-
template?: "
|
|
12269
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12168
12270
|
body?: string | undefined;
|
|
12169
12271
|
from?: string | undefined;
|
|
12170
12272
|
subject?: string | undefined;
|
|
@@ -12176,7 +12278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12176
12278
|
};
|
|
12177
12279
|
};
|
|
12178
12280
|
output: {
|
|
12179
|
-
template: "
|
|
12281
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12180
12282
|
body: string;
|
|
12181
12283
|
from: string;
|
|
12182
12284
|
subject: string;
|
|
@@ -12195,7 +12297,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12195
12297
|
$delete: {
|
|
12196
12298
|
input: {
|
|
12197
12299
|
param: {
|
|
12198
|
-
templateName: "
|
|
12300
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12199
12301
|
};
|
|
12200
12302
|
} & {
|
|
12201
12303
|
header: {
|
|
@@ -12208,7 +12310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12208
12310
|
} | {
|
|
12209
12311
|
input: {
|
|
12210
12312
|
param: {
|
|
12211
|
-
templateName: "
|
|
12313
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12212
12314
|
};
|
|
12213
12315
|
} & {
|
|
12214
12316
|
header: {
|
|
@@ -12225,7 +12327,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12225
12327
|
$post: {
|
|
12226
12328
|
input: {
|
|
12227
12329
|
param: {
|
|
12228
|
-
templateName: "
|
|
12330
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12229
12331
|
};
|
|
12230
12332
|
} & {
|
|
12231
12333
|
header: {
|
|
@@ -12846,12 +12948,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12846
12948
|
background_color: string;
|
|
12847
12949
|
background_image_url: string;
|
|
12848
12950
|
page_layout: "center" | "left" | "right";
|
|
12849
|
-
logo_placement?: "
|
|
12951
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12850
12952
|
};
|
|
12851
12953
|
widget: {
|
|
12852
12954
|
header_text_alignment: "center" | "left" | "right";
|
|
12853
12955
|
logo_height: number;
|
|
12854
|
-
logo_position: "
|
|
12956
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12855
12957
|
logo_url: string;
|
|
12856
12958
|
social_buttons_layout: "bottom" | "top";
|
|
12857
12959
|
};
|
|
@@ -12936,12 +13038,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12936
13038
|
background_color: string;
|
|
12937
13039
|
background_image_url: string;
|
|
12938
13040
|
page_layout: "center" | "left" | "right";
|
|
12939
|
-
logo_placement?: "
|
|
13041
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12940
13042
|
};
|
|
12941
13043
|
widget: {
|
|
12942
13044
|
header_text_alignment: "center" | "left" | "right";
|
|
12943
13045
|
logo_height: number;
|
|
12944
|
-
logo_position: "
|
|
13046
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
12945
13047
|
logo_url: string;
|
|
12946
13048
|
social_buttons_layout: "bottom" | "top";
|
|
12947
13049
|
};
|
|
@@ -13015,12 +13117,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13015
13117
|
background_color: string;
|
|
13016
13118
|
background_image_url: string;
|
|
13017
13119
|
page_layout: "center" | "left" | "right";
|
|
13018
|
-
logo_placement?: "
|
|
13120
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13019
13121
|
};
|
|
13020
13122
|
widget: {
|
|
13021
13123
|
header_text_alignment: "center" | "left" | "right";
|
|
13022
13124
|
logo_height: number;
|
|
13023
|
-
logo_position: "
|
|
13125
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13024
13126
|
logo_url: string;
|
|
13025
13127
|
social_buttons_layout: "bottom" | "top";
|
|
13026
13128
|
};
|
|
@@ -13177,7 +13279,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13177
13279
|
} & {
|
|
13178
13280
|
json: {
|
|
13179
13281
|
body?: string | undefined;
|
|
13180
|
-
screen?: "password" | "
|
|
13282
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
13181
13283
|
branding?: {
|
|
13182
13284
|
colors?: {
|
|
13183
13285
|
primary: string;
|
|
@@ -13263,12 +13365,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13263
13365
|
background_color: string;
|
|
13264
13366
|
background_image_url: string;
|
|
13265
13367
|
page_layout: "center" | "left" | "right";
|
|
13266
|
-
logo_placement?: "
|
|
13368
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13267
13369
|
} | undefined;
|
|
13268
13370
|
widget?: {
|
|
13269
13371
|
header_text_alignment: "center" | "left" | "right";
|
|
13270
13372
|
logo_height: number;
|
|
13271
|
-
logo_position: "
|
|
13373
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13272
13374
|
logo_url: string;
|
|
13273
13375
|
social_buttons_layout: "bottom" | "top";
|
|
13274
13376
|
} | undefined;
|
|
@@ -14448,7 +14550,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14448
14550
|
scope?: string | undefined;
|
|
14449
14551
|
grant_types?: string[] | undefined;
|
|
14450
14552
|
response_types?: string[] | undefined;
|
|
14451
|
-
token_endpoint_auth_method?: "none" | "
|
|
14553
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14452
14554
|
jwks_uri?: string | undefined;
|
|
14453
14555
|
jwks?: Record<string, unknown> | undefined;
|
|
14454
14556
|
software_id?: string | undefined;
|
|
@@ -14537,7 +14639,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14537
14639
|
scope?: string | undefined;
|
|
14538
14640
|
grant_types?: string[] | undefined;
|
|
14539
14641
|
response_types?: string[] | undefined;
|
|
14540
|
-
token_endpoint_auth_method?: "none" | "
|
|
14642
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14541
14643
|
jwks_uri?: string | undefined;
|
|
14542
14644
|
jwks?: Record<string, unknown> | undefined;
|
|
14543
14645
|
software_id?: string | undefined;
|
|
@@ -14883,20 +14985,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14883
14985
|
email: string;
|
|
14884
14986
|
send: "code" | "link";
|
|
14885
14987
|
authParams: {
|
|
14886
|
-
audience?: string | undefined;
|
|
14887
14988
|
username?: string | undefined;
|
|
14888
|
-
|
|
14989
|
+
state?: string | undefined;
|
|
14990
|
+
audience?: string | undefined;
|
|
14889
14991
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14890
14992
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14891
|
-
|
|
14892
|
-
prompt?: string | undefined;
|
|
14893
|
-
ui_locales?: string | undefined;
|
|
14993
|
+
scope?: string | undefined;
|
|
14894
14994
|
organization?: string | undefined;
|
|
14895
|
-
redirect_uri?: string | undefined;
|
|
14896
|
-
act_as?: string | undefined;
|
|
14897
14995
|
nonce?: string | undefined;
|
|
14996
|
+
act_as?: string | undefined;
|
|
14997
|
+
redirect_uri?: string | undefined;
|
|
14998
|
+
prompt?: string | undefined;
|
|
14898
14999
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14899
15000
|
code_challenge?: string | undefined;
|
|
15001
|
+
ui_locales?: string | undefined;
|
|
14900
15002
|
max_age?: number | undefined;
|
|
14901
15003
|
acr_values?: string | undefined;
|
|
14902
15004
|
claims?: {
|
|
@@ -14919,20 +15021,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14919
15021
|
phone_number: string;
|
|
14920
15022
|
send: "code" | "link";
|
|
14921
15023
|
authParams: {
|
|
14922
|
-
audience?: string | undefined;
|
|
14923
15024
|
username?: string | undefined;
|
|
14924
|
-
|
|
15025
|
+
state?: string | undefined;
|
|
15026
|
+
audience?: string | undefined;
|
|
14925
15027
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
14926
15028
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
14927
|
-
|
|
14928
|
-
prompt?: string | undefined;
|
|
14929
|
-
ui_locales?: string | undefined;
|
|
15029
|
+
scope?: string | undefined;
|
|
14930
15030
|
organization?: string | undefined;
|
|
14931
|
-
redirect_uri?: string | undefined;
|
|
14932
|
-
act_as?: string | undefined;
|
|
14933
15031
|
nonce?: string | undefined;
|
|
15032
|
+
act_as?: string | undefined;
|
|
15033
|
+
redirect_uri?: string | undefined;
|
|
15034
|
+
prompt?: string | undefined;
|
|
14934
15035
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
14935
15036
|
code_challenge?: string | undefined;
|
|
15037
|
+
ui_locales?: string | undefined;
|
|
14936
15038
|
max_age?: number | undefined;
|
|
14937
15039
|
acr_values?: string | undefined;
|
|
14938
15040
|
claims?: {
|
|
@@ -15161,7 +15263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15161
15263
|
client_id: string;
|
|
15162
15264
|
username: string;
|
|
15163
15265
|
otp: string;
|
|
15164
|
-
realm: "
|
|
15266
|
+
realm: "email" | "sms";
|
|
15165
15267
|
} | {
|
|
15166
15268
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15167
15269
|
subject_token: string;
|
|
@@ -15208,7 +15310,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15208
15310
|
client_id: string;
|
|
15209
15311
|
username: string;
|
|
15210
15312
|
otp: string;
|
|
15211
|
-
realm: "
|
|
15313
|
+
realm: "email" | "sms";
|
|
15212
15314
|
} | {
|
|
15213
15315
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15214
15316
|
subject_token: string;
|
|
@@ -15260,7 +15362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15260
15362
|
client_id: string;
|
|
15261
15363
|
username: string;
|
|
15262
15364
|
otp: string;
|
|
15263
|
-
realm: "
|
|
15365
|
+
realm: "email" | "sms";
|
|
15264
15366
|
} | {
|
|
15265
15367
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15266
15368
|
subject_token: string;
|
|
@@ -15307,7 +15409,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15307
15409
|
client_id: string;
|
|
15308
15410
|
username: string;
|
|
15309
15411
|
otp: string;
|
|
15310
|
-
realm: "
|
|
15412
|
+
realm: "email" | "sms";
|
|
15311
15413
|
} | {
|
|
15312
15414
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15313
15415
|
subject_token: string;
|
|
@@ -15367,7 +15469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15367
15469
|
client_id: string;
|
|
15368
15470
|
username: string;
|
|
15369
15471
|
otp: string;
|
|
15370
|
-
realm: "
|
|
15472
|
+
realm: "email" | "sms";
|
|
15371
15473
|
} | {
|
|
15372
15474
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15373
15475
|
subject_token: string;
|
|
@@ -15414,7 +15516,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15414
15516
|
client_id: string;
|
|
15415
15517
|
username: string;
|
|
15416
15518
|
otp: string;
|
|
15417
|
-
realm: "
|
|
15519
|
+
realm: "email" | "sms";
|
|
15418
15520
|
} | {
|
|
15419
15521
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15420
15522
|
subject_token: string;
|
|
@@ -15469,7 +15571,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15469
15571
|
client_id: string;
|
|
15470
15572
|
username: string;
|
|
15471
15573
|
otp: string;
|
|
15472
|
-
realm: "
|
|
15574
|
+
realm: "email" | "sms";
|
|
15473
15575
|
} | {
|
|
15474
15576
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15475
15577
|
subject_token: string;
|
|
@@ -15516,7 +15618,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15516
15618
|
client_id: string;
|
|
15517
15619
|
username: string;
|
|
15518
15620
|
otp: string;
|
|
15519
|
-
realm: "
|
|
15621
|
+
realm: "email" | "sms";
|
|
15520
15622
|
} | {
|
|
15521
15623
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15522
15624
|
subject_token: string;
|
|
@@ -15571,7 +15673,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15571
15673
|
client_id: string;
|
|
15572
15674
|
username: string;
|
|
15573
15675
|
otp: string;
|
|
15574
|
-
realm: "
|
|
15676
|
+
realm: "email" | "sms";
|
|
15575
15677
|
} | {
|
|
15576
15678
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15577
15679
|
subject_token: string;
|
|
@@ -15618,7 +15720,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15618
15720
|
client_id: string;
|
|
15619
15721
|
username: string;
|
|
15620
15722
|
otp: string;
|
|
15621
|
-
realm: "
|
|
15723
|
+
realm: "email" | "sms";
|
|
15622
15724
|
} | {
|
|
15623
15725
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15624
15726
|
subject_token: string;
|
|
@@ -15691,6 +15793,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15691
15793
|
claims_parameter_supported?: boolean | undefined;
|
|
15692
15794
|
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
15693
15795
|
client_id_metadata_document_supported?: boolean | undefined;
|
|
15796
|
+
backchannel_logout_supported?: boolean | undefined;
|
|
15797
|
+
backchannel_logout_session_supported?: boolean | undefined;
|
|
15694
15798
|
};
|
|
15695
15799
|
outputFormat: "json";
|
|
15696
15800
|
status: 200;
|
|
@@ -15724,6 +15828,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15724
15828
|
claims_parameter_supported?: boolean | undefined;
|
|
15725
15829
|
request_object_signing_alg_values_supported?: string[] | undefined;
|
|
15726
15830
|
client_id_metadata_document_supported?: boolean | undefined;
|
|
15831
|
+
backchannel_logout_supported?: boolean | undefined;
|
|
15832
|
+
backchannel_logout_session_supported?: boolean | undefined;
|
|
15727
15833
|
};
|
|
15728
15834
|
outputFormat: "json";
|
|
15729
15835
|
status: 200;
|
|
@@ -16838,7 +16944,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16838
16944
|
$get: {
|
|
16839
16945
|
input: {
|
|
16840
16946
|
param: {
|
|
16841
|
-
screen: "
|
|
16947
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16842
16948
|
};
|
|
16843
16949
|
} & {
|
|
16844
16950
|
query: {
|
|
@@ -16854,7 +16960,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16854
16960
|
} | {
|
|
16855
16961
|
input: {
|
|
16856
16962
|
param: {
|
|
16857
|
-
screen: "
|
|
16963
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16858
16964
|
};
|
|
16859
16965
|
} & {
|
|
16860
16966
|
query: {
|
|
@@ -16870,7 +16976,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16870
16976
|
} | {
|
|
16871
16977
|
input: {
|
|
16872
16978
|
param: {
|
|
16873
|
-
screen: "
|
|
16979
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16874
16980
|
};
|
|
16875
16981
|
} & {
|
|
16876
16982
|
query: {
|
|
@@ -16890,7 +16996,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16890
16996
|
$post: {
|
|
16891
16997
|
input: {
|
|
16892
16998
|
param: {
|
|
16893
|
-
screen: "
|
|
16999
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16894
17000
|
};
|
|
16895
17001
|
} & {
|
|
16896
17002
|
query: {
|
|
@@ -16908,7 +17014,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16908
17014
|
} | {
|
|
16909
17015
|
input: {
|
|
16910
17016
|
param: {
|
|
16911
|
-
screen: "
|
|
17017
|
+
screen: "signup" | "consent" | "login" | "reset-password" | "enter-password" | "impersonate" | "reset-password/request" | "reset-password/code" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "mfa/login-options" | "mfa/totp-challenge" | "mfa/totp-enrollment" | "mfa/phone-challenge" | "mfa/phone-enrollment" | "passkey/challenge" | "passkey/enrollment" | "passkey/enrollment-nudge" | "account/profile" | "account/security" | "account/security/totp-enrollment" | "account/security/phone-enrollment" | "account/linked" | "account/delete" | "account/passkeys" | "connect/start" | "connect/select-tenant";
|
|
16912
17018
|
};
|
|
16913
17019
|
} & {
|
|
16914
17020
|
query: {
|