authhero 8.25.2 → 8.26.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 +115 -115
- package/dist/authhero.d.ts +148 -120
- package/dist/authhero.mjs +55 -46
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +7 -7
- package/dist/types/helpers/codes-cleanup.d.ts +28 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +119 -117
- package/dist/types/routes/auth-api/index.d.ts +20 -20
- package/dist/types/routes/auth-api/passwordless.d.ts +12 -12
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +1 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +16 -16
- package/dist/types/routes/management-api/connections.d.ts +20 -20
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/index.d.ts +90 -90
- 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 +5 -5
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- 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 +14 -14
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -15,7 +15,9 @@ export type { UserSessionCleanupParams } from "./helpers/user-session-cleanup";
|
|
|
15
15
|
export { drainOutbox } from "./helpers/outbox-relay";
|
|
16
16
|
export type { EventDestination } from "./helpers/outbox-relay";
|
|
17
17
|
export { cleanupOutbox } from "./helpers/outbox-cleanup";
|
|
18
|
+
export { cleanupCodes } from "./helpers/codes-cleanup";
|
|
18
19
|
export type { OutboxCleanupParams } from "./helpers/outbox-cleanup";
|
|
20
|
+
export type { CodesCleanupParams } from "./helpers/codes-cleanup";
|
|
19
21
|
export { createDefaultDestinations } from "./helpers/default-destinations";
|
|
20
22
|
export type { CreateDefaultDestinationsConfig } from "./helpers/default-destinations";
|
|
21
23
|
export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provision-tenant-clients";
|
|
@@ -74,8 +76,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
74
76
|
$get: {
|
|
75
77
|
input: {
|
|
76
78
|
query: {
|
|
77
|
-
include_password_hashes?: "
|
|
78
|
-
gzip?: "
|
|
79
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
80
|
+
gzip?: "false" | "true" | undefined;
|
|
79
81
|
};
|
|
80
82
|
} & {
|
|
81
83
|
header: {
|
|
@@ -88,8 +90,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
88
90
|
} | {
|
|
89
91
|
input: {
|
|
90
92
|
query: {
|
|
91
|
-
include_password_hashes?: "
|
|
92
|
-
gzip?: "
|
|
93
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
94
|
+
gzip?: "false" | "true" | undefined;
|
|
93
95
|
};
|
|
94
96
|
} & {
|
|
95
97
|
header: {
|
|
@@ -108,7 +110,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
108
110
|
$post: {
|
|
109
111
|
input: {
|
|
110
112
|
query: {
|
|
111
|
-
include_password_hashes?: "
|
|
113
|
+
include_password_hashes?: "false" | "true" | undefined;
|
|
112
114
|
};
|
|
113
115
|
} & {
|
|
114
116
|
header: {
|
|
@@ -162,7 +164,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
162
164
|
};
|
|
163
165
|
} & {
|
|
164
166
|
json: {
|
|
165
|
-
type: "push" | "email" | "passkey" | "
|
|
167
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
166
168
|
phone_number?: string | undefined;
|
|
167
169
|
totp_secret?: string | undefined;
|
|
168
170
|
credential_id?: string | undefined;
|
|
@@ -302,7 +304,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
302
304
|
};
|
|
303
305
|
};
|
|
304
306
|
output: {
|
|
305
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
307
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
306
308
|
enabled: boolean;
|
|
307
309
|
trial_expired?: boolean | undefined;
|
|
308
310
|
}[];
|
|
@@ -457,7 +459,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
457
459
|
$get: {
|
|
458
460
|
input: {
|
|
459
461
|
param: {
|
|
460
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
462
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
461
463
|
};
|
|
462
464
|
} & {
|
|
463
465
|
header: {
|
|
@@ -465,7 +467,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
465
467
|
};
|
|
466
468
|
};
|
|
467
469
|
output: {
|
|
468
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
470
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
469
471
|
enabled: boolean;
|
|
470
472
|
trial_expired?: boolean | undefined;
|
|
471
473
|
};
|
|
@@ -478,7 +480,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
478
480
|
$put: {
|
|
479
481
|
input: {
|
|
480
482
|
param: {
|
|
481
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
483
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
482
484
|
};
|
|
483
485
|
} & {
|
|
484
486
|
header: {
|
|
@@ -490,7 +492,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
490
492
|
};
|
|
491
493
|
};
|
|
492
494
|
output: {
|
|
493
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
495
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
494
496
|
enabled: boolean;
|
|
495
497
|
trial_expired?: boolean | undefined;
|
|
496
498
|
};
|
|
@@ -1262,19 +1264,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1262
1264
|
} & {
|
|
1263
1265
|
json: {
|
|
1264
1266
|
client_id: string;
|
|
1265
|
-
invitee: {
|
|
1266
|
-
email?: string | undefined;
|
|
1267
|
-
};
|
|
1268
1267
|
inviter: {
|
|
1269
1268
|
name?: string | undefined;
|
|
1270
1269
|
};
|
|
1270
|
+
invitee: {
|
|
1271
|
+
email?: string | undefined;
|
|
1272
|
+
};
|
|
1271
1273
|
id?: string | undefined;
|
|
1272
1274
|
app_metadata?: Record<string, any> | undefined;
|
|
1273
1275
|
user_metadata?: Record<string, any> | undefined;
|
|
1274
1276
|
connection_id?: string | undefined;
|
|
1275
1277
|
roles?: string[] | undefined;
|
|
1276
|
-
send_invitation_email?: boolean | undefined;
|
|
1277
1278
|
ttl_sec?: number | undefined;
|
|
1279
|
+
send_invitation_email?: boolean | undefined;
|
|
1278
1280
|
};
|
|
1279
1281
|
};
|
|
1280
1282
|
output: {
|
|
@@ -1457,8 +1459,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1457
1459
|
};
|
|
1458
1460
|
} & {
|
|
1459
1461
|
json: {
|
|
1460
|
-
show_as_button?: boolean | undefined;
|
|
1461
1462
|
assign_membership_on_login?: boolean | undefined;
|
|
1463
|
+
show_as_button?: boolean | undefined;
|
|
1462
1464
|
is_signup_enabled?: boolean | undefined;
|
|
1463
1465
|
};
|
|
1464
1466
|
};
|
|
@@ -2029,9 +2031,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2029
2031
|
};
|
|
2030
2032
|
} & {
|
|
2031
2033
|
query: {
|
|
2032
|
-
from?: string | undefined;
|
|
2033
2034
|
page?: string | undefined;
|
|
2034
2035
|
include_totals?: string | undefined;
|
|
2036
|
+
from?: string | undefined;
|
|
2035
2037
|
per_page?: string | undefined;
|
|
2036
2038
|
take?: string | undefined;
|
|
2037
2039
|
};
|
|
@@ -6983,7 +6985,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6983
6985
|
};
|
|
6984
6986
|
};
|
|
6985
6987
|
output: {
|
|
6986
|
-
prompt: "status" | "
|
|
6988
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
6987
6989
|
language: string;
|
|
6988
6990
|
}[];
|
|
6989
6991
|
outputFormat: "json";
|
|
@@ -7021,7 +7023,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7021
7023
|
$get: {
|
|
7022
7024
|
input: {
|
|
7023
7025
|
param: {
|
|
7024
|
-
prompt: "status" | "
|
|
7026
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
7025
7027
|
language: string;
|
|
7026
7028
|
};
|
|
7027
7029
|
} & {
|
|
@@ -7043,7 +7045,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7043
7045
|
$put: {
|
|
7044
7046
|
input: {
|
|
7045
7047
|
param: {
|
|
7046
|
-
prompt: "status" | "
|
|
7048
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
7047
7049
|
language: string;
|
|
7048
7050
|
};
|
|
7049
7051
|
} & {
|
|
@@ -7067,7 +7069,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7067
7069
|
$delete: {
|
|
7068
7070
|
input: {
|
|
7069
7071
|
param: {
|
|
7070
|
-
prompt: "status" | "
|
|
7072
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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";
|
|
7071
7073
|
language: string;
|
|
7072
7074
|
};
|
|
7073
7075
|
} & {
|
|
@@ -7159,7 +7161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7159
7161
|
active?: boolean | undefined;
|
|
7160
7162
|
} | undefined;
|
|
7161
7163
|
signup?: {
|
|
7162
|
-
status?: "
|
|
7164
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7163
7165
|
verification?: {
|
|
7164
7166
|
active?: boolean | undefined;
|
|
7165
7167
|
} | undefined;
|
|
@@ -7176,7 +7178,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7176
7178
|
active?: boolean | undefined;
|
|
7177
7179
|
} | undefined;
|
|
7178
7180
|
signup?: {
|
|
7179
|
-
status?: "
|
|
7181
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7180
7182
|
} | undefined;
|
|
7181
7183
|
validation?: {
|
|
7182
7184
|
max_length?: number | undefined;
|
|
@@ -7193,7 +7195,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7193
7195
|
active?: boolean | undefined;
|
|
7194
7196
|
} | undefined;
|
|
7195
7197
|
signup?: {
|
|
7196
|
-
status?: "
|
|
7198
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7197
7199
|
} | undefined;
|
|
7198
7200
|
} | undefined;
|
|
7199
7201
|
} | undefined;
|
|
@@ -7206,7 +7208,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7206
7208
|
} | undefined;
|
|
7207
7209
|
} | undefined;
|
|
7208
7210
|
passkey_options?: {
|
|
7209
|
-
challenge_ui?: "
|
|
7211
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7210
7212
|
local_enrollment_enabled?: boolean | undefined;
|
|
7211
7213
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7212
7214
|
} | undefined;
|
|
@@ -7293,7 +7295,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7293
7295
|
active?: boolean | undefined;
|
|
7294
7296
|
} | undefined;
|
|
7295
7297
|
signup?: {
|
|
7296
|
-
status?: "
|
|
7298
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7297
7299
|
verification?: {
|
|
7298
7300
|
active?: boolean | undefined;
|
|
7299
7301
|
} | undefined;
|
|
@@ -7310,7 +7312,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7310
7312
|
active?: boolean | undefined;
|
|
7311
7313
|
} | undefined;
|
|
7312
7314
|
signup?: {
|
|
7313
|
-
status?: "
|
|
7315
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7314
7316
|
} | undefined;
|
|
7315
7317
|
validation?: {
|
|
7316
7318
|
max_length?: number | undefined;
|
|
@@ -7327,7 +7329,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7327
7329
|
active?: boolean | undefined;
|
|
7328
7330
|
} | undefined;
|
|
7329
7331
|
signup?: {
|
|
7330
|
-
status?: "
|
|
7332
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7331
7333
|
} | undefined;
|
|
7332
7334
|
} | undefined;
|
|
7333
7335
|
} | undefined;
|
|
@@ -7340,7 +7342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7340
7342
|
} | undefined;
|
|
7341
7343
|
} | undefined;
|
|
7342
7344
|
passkey_options?: {
|
|
7343
|
-
challenge_ui?: "
|
|
7345
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7344
7346
|
local_enrollment_enabled?: boolean | undefined;
|
|
7345
7347
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7346
7348
|
} | undefined;
|
|
@@ -7443,7 +7445,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7443
7445
|
active?: boolean | undefined;
|
|
7444
7446
|
} | undefined;
|
|
7445
7447
|
signup?: {
|
|
7446
|
-
status?: "
|
|
7448
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7447
7449
|
verification?: {
|
|
7448
7450
|
active?: boolean | undefined;
|
|
7449
7451
|
} | undefined;
|
|
@@ -7460,7 +7462,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7460
7462
|
active?: boolean | undefined;
|
|
7461
7463
|
} | undefined;
|
|
7462
7464
|
signup?: {
|
|
7463
|
-
status?: "
|
|
7465
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7464
7466
|
} | undefined;
|
|
7465
7467
|
validation?: {
|
|
7466
7468
|
max_length?: number | undefined;
|
|
@@ -7477,7 +7479,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7477
7479
|
active?: boolean | undefined;
|
|
7478
7480
|
} | undefined;
|
|
7479
7481
|
signup?: {
|
|
7480
|
-
status?: "
|
|
7482
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7481
7483
|
} | undefined;
|
|
7482
7484
|
} | undefined;
|
|
7483
7485
|
} | undefined;
|
|
@@ -7490,7 +7492,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7490
7492
|
} | undefined;
|
|
7491
7493
|
} | undefined;
|
|
7492
7494
|
passkey_options?: {
|
|
7493
|
-
challenge_ui?: "
|
|
7495
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7494
7496
|
local_enrollment_enabled?: boolean | undefined;
|
|
7495
7497
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7496
7498
|
} | undefined;
|
|
@@ -7622,7 +7624,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7622
7624
|
active?: boolean | undefined;
|
|
7623
7625
|
} | undefined;
|
|
7624
7626
|
signup?: {
|
|
7625
|
-
status?: "
|
|
7627
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7626
7628
|
verification?: {
|
|
7627
7629
|
active?: boolean | undefined;
|
|
7628
7630
|
} | undefined;
|
|
@@ -7639,7 +7641,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7639
7641
|
active?: boolean | undefined;
|
|
7640
7642
|
} | undefined;
|
|
7641
7643
|
signup?: {
|
|
7642
|
-
status?: "
|
|
7644
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7643
7645
|
} | undefined;
|
|
7644
7646
|
validation?: {
|
|
7645
7647
|
max_length?: number | undefined;
|
|
@@ -7656,7 +7658,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7656
7658
|
active?: boolean | undefined;
|
|
7657
7659
|
} | undefined;
|
|
7658
7660
|
signup?: {
|
|
7659
|
-
status?: "
|
|
7661
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7660
7662
|
} | undefined;
|
|
7661
7663
|
} | undefined;
|
|
7662
7664
|
} | undefined;
|
|
@@ -7669,7 +7671,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7669
7671
|
} | undefined;
|
|
7670
7672
|
} | undefined;
|
|
7671
7673
|
passkey_options?: {
|
|
7672
|
-
challenge_ui?: "
|
|
7674
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7673
7675
|
local_enrollment_enabled?: boolean | undefined;
|
|
7674
7676
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7675
7677
|
} | undefined;
|
|
@@ -7780,7 +7782,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7780
7782
|
active?: boolean | undefined;
|
|
7781
7783
|
} | undefined;
|
|
7782
7784
|
signup?: {
|
|
7783
|
-
status?: "
|
|
7785
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7784
7786
|
verification?: {
|
|
7785
7787
|
active?: boolean | undefined;
|
|
7786
7788
|
} | undefined;
|
|
@@ -7797,7 +7799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7797
7799
|
active?: boolean | undefined;
|
|
7798
7800
|
} | undefined;
|
|
7799
7801
|
signup?: {
|
|
7800
|
-
status?: "
|
|
7802
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7801
7803
|
} | undefined;
|
|
7802
7804
|
validation?: {
|
|
7803
7805
|
max_length?: number | undefined;
|
|
@@ -7814,7 +7816,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7814
7816
|
active?: boolean | undefined;
|
|
7815
7817
|
} | undefined;
|
|
7816
7818
|
signup?: {
|
|
7817
|
-
status?: "
|
|
7819
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7818
7820
|
} | undefined;
|
|
7819
7821
|
} | undefined;
|
|
7820
7822
|
} | undefined;
|
|
@@ -7827,7 +7829,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7827
7829
|
} | undefined;
|
|
7828
7830
|
} | undefined;
|
|
7829
7831
|
passkey_options?: {
|
|
7830
|
-
challenge_ui?: "
|
|
7832
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
7831
7833
|
local_enrollment_enabled?: boolean | undefined;
|
|
7832
7834
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
7833
7835
|
} | undefined;
|
|
@@ -7966,7 +7968,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7966
7968
|
tenant_id: string;
|
|
7967
7969
|
created_at: string;
|
|
7968
7970
|
updated_at: string;
|
|
7969
|
-
deploymentStatus: "
|
|
7971
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7970
7972
|
secrets?: {
|
|
7971
7973
|
[x: string]: string;
|
|
7972
7974
|
} | undefined;
|
|
@@ -8056,7 +8058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8056
8058
|
tenant_id: string;
|
|
8057
8059
|
created_at: string;
|
|
8058
8060
|
updated_at: string;
|
|
8059
|
-
deploymentStatus: "
|
|
8061
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
8060
8062
|
secrets?: {
|
|
8061
8063
|
[x: string]: string;
|
|
8062
8064
|
} | undefined;
|
|
@@ -8570,7 +8572,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8570
8572
|
log_type: string;
|
|
8571
8573
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8572
8574
|
actor: {
|
|
8573
|
-
type: "
|
|
8575
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8574
8576
|
id?: string | undefined;
|
|
8575
8577
|
email?: string | undefined;
|
|
8576
8578
|
org_id?: string | undefined;
|
|
@@ -8880,7 +8882,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8880
8882
|
created_at: string;
|
|
8881
8883
|
updated_at: string;
|
|
8882
8884
|
name: string;
|
|
8883
|
-
provider: "auth0" | "
|
|
8885
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8884
8886
|
connection: string;
|
|
8885
8887
|
enabled: boolean;
|
|
8886
8888
|
credentials: {
|
|
@@ -8912,7 +8914,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8912
8914
|
created_at: string;
|
|
8913
8915
|
updated_at: string;
|
|
8914
8916
|
name: string;
|
|
8915
|
-
provider: "auth0" | "
|
|
8917
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8916
8918
|
connection: string;
|
|
8917
8919
|
enabled: boolean;
|
|
8918
8920
|
credentials: {
|
|
@@ -8938,7 +8940,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8938
8940
|
} & {
|
|
8939
8941
|
json: {
|
|
8940
8942
|
name: string;
|
|
8941
|
-
provider: "auth0" | "
|
|
8943
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8942
8944
|
connection: string;
|
|
8943
8945
|
credentials: {
|
|
8944
8946
|
domain: string;
|
|
@@ -8955,7 +8957,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8955
8957
|
created_at: string;
|
|
8956
8958
|
updated_at: string;
|
|
8957
8959
|
name: string;
|
|
8958
|
-
provider: "auth0" | "
|
|
8960
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8959
8961
|
connection: string;
|
|
8960
8962
|
enabled: boolean;
|
|
8961
8963
|
credentials: {
|
|
@@ -8986,7 +8988,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8986
8988
|
json: {
|
|
8987
8989
|
id?: string | undefined;
|
|
8988
8990
|
name?: string | undefined;
|
|
8989
|
-
provider?: "auth0" | "
|
|
8991
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8990
8992
|
connection?: string | undefined;
|
|
8991
8993
|
enabled?: boolean | undefined;
|
|
8992
8994
|
credentials?: {
|
|
@@ -9002,7 +9004,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9002
9004
|
created_at: string;
|
|
9003
9005
|
updated_at: string;
|
|
9004
9006
|
name: string;
|
|
9005
|
-
provider: "auth0" | "
|
|
9007
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
9006
9008
|
connection: string;
|
|
9007
9009
|
enabled: boolean;
|
|
9008
9010
|
credentials: {
|
|
@@ -9050,7 +9052,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9050
9052
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9051
9053
|
};
|
|
9052
9054
|
id: string;
|
|
9053
|
-
status: "
|
|
9055
|
+
status: "suspended" | "active" | "paused";
|
|
9054
9056
|
filters?: {
|
|
9055
9057
|
type: string;
|
|
9056
9058
|
name: string;
|
|
@@ -9082,7 +9084,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9082
9084
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9083
9085
|
};
|
|
9084
9086
|
id: string;
|
|
9085
|
-
status: "
|
|
9087
|
+
status: "suspended" | "active" | "paused";
|
|
9086
9088
|
filters?: {
|
|
9087
9089
|
type: string;
|
|
9088
9090
|
name: string;
|
|
@@ -9107,7 +9109,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9107
9109
|
name: string;
|
|
9108
9110
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9109
9111
|
sink: Record<string, unknown>;
|
|
9110
|
-
status?: "
|
|
9112
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9111
9113
|
filters?: {
|
|
9112
9114
|
type: string;
|
|
9113
9115
|
name: string;
|
|
@@ -9122,7 +9124,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9122
9124
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9123
9125
|
};
|
|
9124
9126
|
id: string;
|
|
9125
|
-
status: "
|
|
9127
|
+
status: "suspended" | "active" | "paused";
|
|
9126
9128
|
filters?: {
|
|
9127
9129
|
type: string;
|
|
9128
9130
|
name: string;
|
|
@@ -9157,7 +9159,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9157
9159
|
}[] | undefined;
|
|
9158
9160
|
isPriority?: boolean | undefined;
|
|
9159
9161
|
id?: string | undefined;
|
|
9160
|
-
status?: "
|
|
9162
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9161
9163
|
created_at?: string | undefined;
|
|
9162
9164
|
updated_at?: string | undefined;
|
|
9163
9165
|
};
|
|
@@ -9169,7 +9171,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9169
9171
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9170
9172
|
};
|
|
9171
9173
|
id: string;
|
|
9172
|
-
status: "
|
|
9174
|
+
status: "suspended" | "active" | "paused";
|
|
9173
9175
|
filters?: {
|
|
9174
9176
|
type: string;
|
|
9175
9177
|
name: string;
|
|
@@ -9220,7 +9222,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9220
9222
|
};
|
|
9221
9223
|
};
|
|
9222
9224
|
output: {
|
|
9223
|
-
type: "
|
|
9225
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9224
9226
|
date: string;
|
|
9225
9227
|
isMobile: boolean;
|
|
9226
9228
|
log_id: string;
|
|
@@ -9259,7 +9261,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9259
9261
|
limit: number;
|
|
9260
9262
|
length: number;
|
|
9261
9263
|
logs: {
|
|
9262
|
-
type: "
|
|
9264
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9263
9265
|
date: string;
|
|
9264
9266
|
isMobile: boolean;
|
|
9265
9267
|
log_id: string;
|
|
@@ -9298,7 +9300,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9298
9300
|
next?: string | undefined;
|
|
9299
9301
|
} | {
|
|
9300
9302
|
logs: {
|
|
9301
|
-
type: "
|
|
9303
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9302
9304
|
date: string;
|
|
9303
9305
|
isMobile: boolean;
|
|
9304
9306
|
log_id: string;
|
|
@@ -9352,7 +9354,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9352
9354
|
};
|
|
9353
9355
|
};
|
|
9354
9356
|
output: {
|
|
9355
|
-
type: "
|
|
9357
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9356
9358
|
date: string;
|
|
9357
9359
|
isMobile: boolean;
|
|
9358
9360
|
log_id: string;
|
|
@@ -9763,7 +9765,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9763
9765
|
addons?: {
|
|
9764
9766
|
[x: string]: any;
|
|
9765
9767
|
} | undefined;
|
|
9766
|
-
token_endpoint_auth_method?: "none" | "
|
|
9768
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9767
9769
|
client_metadata?: {
|
|
9768
9770
|
[x: string]: string;
|
|
9769
9771
|
} | undefined;
|
|
@@ -9865,7 +9867,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9865
9867
|
addons?: {
|
|
9866
9868
|
[x: string]: any;
|
|
9867
9869
|
} | undefined;
|
|
9868
|
-
token_endpoint_auth_method?: "none" | "
|
|
9870
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9869
9871
|
client_metadata?: {
|
|
9870
9872
|
[x: string]: string;
|
|
9871
9873
|
} | undefined;
|
|
@@ -9967,7 +9969,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9967
9969
|
addons?: {
|
|
9968
9970
|
[x: string]: any;
|
|
9969
9971
|
} | undefined;
|
|
9970
|
-
token_endpoint_auth_method?: "none" | "
|
|
9972
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9971
9973
|
client_metadata?: {
|
|
9972
9974
|
[x: string]: string;
|
|
9973
9975
|
} | undefined;
|
|
@@ -10084,7 +10086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10084
10086
|
addons?: {
|
|
10085
10087
|
[x: string]: any;
|
|
10086
10088
|
} | undefined;
|
|
10087
|
-
token_endpoint_auth_method?: "none" | "
|
|
10089
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10088
10090
|
client_metadata?: {
|
|
10089
10091
|
[x: string]: string;
|
|
10090
10092
|
} | undefined;
|
|
@@ -10202,7 +10204,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10202
10204
|
custom_login_page_preview?: string | undefined;
|
|
10203
10205
|
form_template?: string | undefined;
|
|
10204
10206
|
addons?: Record<string, any> | undefined;
|
|
10205
|
-
token_endpoint_auth_method?: "none" | "
|
|
10207
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10206
10208
|
client_metadata?: Record<string, string> | undefined;
|
|
10207
10209
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10208
10210
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10288,7 +10290,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10288
10290
|
addons?: {
|
|
10289
10291
|
[x: string]: any;
|
|
10290
10292
|
} | undefined;
|
|
10291
|
-
token_endpoint_auth_method?: "none" | "
|
|
10293
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10292
10294
|
client_metadata?: {
|
|
10293
10295
|
[x: string]: string;
|
|
10294
10296
|
} | undefined;
|
|
@@ -10385,7 +10387,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10385
10387
|
custom_login_page_preview?: string | undefined;
|
|
10386
10388
|
form_template?: string | undefined;
|
|
10387
10389
|
addons?: Record<string, any> | undefined;
|
|
10388
|
-
token_endpoint_auth_method?: "none" | "
|
|
10390
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10389
10391
|
client_metadata?: Record<string, string> | undefined;
|
|
10390
10392
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10391
10393
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10471,7 +10473,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10471
10473
|
addons?: {
|
|
10472
10474
|
[x: string]: any;
|
|
10473
10475
|
} | undefined;
|
|
10474
|
-
token_endpoint_auth_method?: "none" | "
|
|
10476
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10475
10477
|
client_metadata?: {
|
|
10476
10478
|
[x: string]: string;
|
|
10477
10479
|
} | undefined;
|
|
@@ -10593,7 +10595,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10593
10595
|
active?: boolean | undefined;
|
|
10594
10596
|
} | undefined;
|
|
10595
10597
|
signup?: {
|
|
10596
|
-
status?: "
|
|
10598
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10597
10599
|
verification?: {
|
|
10598
10600
|
active?: boolean | undefined;
|
|
10599
10601
|
} | undefined;
|
|
@@ -10610,7 +10612,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10610
10612
|
active?: boolean | undefined;
|
|
10611
10613
|
} | undefined;
|
|
10612
10614
|
signup?: {
|
|
10613
|
-
status?: "
|
|
10615
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10614
10616
|
} | undefined;
|
|
10615
10617
|
validation?: {
|
|
10616
10618
|
max_length?: number | undefined;
|
|
@@ -10627,7 +10629,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10627
10629
|
active?: boolean | undefined;
|
|
10628
10630
|
} | undefined;
|
|
10629
10631
|
signup?: {
|
|
10630
|
-
status?: "
|
|
10632
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10631
10633
|
} | undefined;
|
|
10632
10634
|
} | undefined;
|
|
10633
10635
|
} | undefined;
|
|
@@ -10640,7 +10642,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10640
10642
|
} | undefined;
|
|
10641
10643
|
} | undefined;
|
|
10642
10644
|
passkey_options?: {
|
|
10643
|
-
challenge_ui?: "
|
|
10645
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10644
10646
|
local_enrollment_enabled?: boolean | undefined;
|
|
10645
10647
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10646
10648
|
} | undefined;
|
|
@@ -10747,7 +10749,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10747
10749
|
active?: boolean | undefined;
|
|
10748
10750
|
} | undefined;
|
|
10749
10751
|
signup?: {
|
|
10750
|
-
status?: "
|
|
10752
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10751
10753
|
verification?: {
|
|
10752
10754
|
active?: boolean | undefined;
|
|
10753
10755
|
} | undefined;
|
|
@@ -10764,7 +10766,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10764
10766
|
active?: boolean | undefined;
|
|
10765
10767
|
} | undefined;
|
|
10766
10768
|
signup?: {
|
|
10767
|
-
status?: "
|
|
10769
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10768
10770
|
} | undefined;
|
|
10769
10771
|
validation?: {
|
|
10770
10772
|
max_length?: number | undefined;
|
|
@@ -10781,7 +10783,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10781
10783
|
active?: boolean | undefined;
|
|
10782
10784
|
} | undefined;
|
|
10783
10785
|
signup?: {
|
|
10784
|
-
status?: "
|
|
10786
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10785
10787
|
} | undefined;
|
|
10786
10788
|
} | undefined;
|
|
10787
10789
|
} | undefined;
|
|
@@ -10794,7 +10796,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10794
10796
|
} | undefined;
|
|
10795
10797
|
} | undefined;
|
|
10796
10798
|
passkey_options?: {
|
|
10797
|
-
challenge_ui?: "
|
|
10799
|
+
challenge_ui?: "both" | "autofill" | "button" | undefined;
|
|
10798
10800
|
local_enrollment_enabled?: boolean | undefined;
|
|
10799
10801
|
progressive_enrollment_enabled?: boolean | undefined;
|
|
10800
10802
|
} | undefined;
|
|
@@ -11807,7 +11809,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11807
11809
|
};
|
|
11808
11810
|
};
|
|
11809
11811
|
output: {
|
|
11810
|
-
type: "
|
|
11812
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11811
11813
|
date: string;
|
|
11812
11814
|
isMobile: boolean;
|
|
11813
11815
|
log_id: string;
|
|
@@ -11846,7 +11848,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11846
11848
|
limit: number;
|
|
11847
11849
|
length: number;
|
|
11848
11850
|
logs: {
|
|
11849
|
-
type: "
|
|
11851
|
+
type: "fn" | "i" | "cs" | "fi" | "sv" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "festft" | "fh" | "fimp" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "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" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11850
11852
|
date: string;
|
|
11851
11853
|
isMobile: boolean;
|
|
11852
11854
|
log_id: string;
|
|
@@ -13028,12 +13030,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13028
13030
|
background_color: string;
|
|
13029
13031
|
background_image_url: string;
|
|
13030
13032
|
page_layout: "center" | "left" | "right";
|
|
13031
|
-
logo_placement?: "
|
|
13033
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13032
13034
|
};
|
|
13033
13035
|
widget: {
|
|
13034
13036
|
header_text_alignment: "center" | "left" | "right";
|
|
13035
13037
|
logo_height: number;
|
|
13036
|
-
logo_position: "
|
|
13038
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13037
13039
|
logo_url: string;
|
|
13038
13040
|
social_buttons_layout: "bottom" | "top";
|
|
13039
13041
|
};
|
|
@@ -13118,12 +13120,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13118
13120
|
background_color: string;
|
|
13119
13121
|
background_image_url: string;
|
|
13120
13122
|
page_layout: "center" | "left" | "right";
|
|
13121
|
-
logo_placement?: "
|
|
13123
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13122
13124
|
};
|
|
13123
13125
|
widget: {
|
|
13124
13126
|
header_text_alignment: "center" | "left" | "right";
|
|
13125
13127
|
logo_height: number;
|
|
13126
|
-
logo_position: "
|
|
13128
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13127
13129
|
logo_url: string;
|
|
13128
13130
|
social_buttons_layout: "bottom" | "top";
|
|
13129
13131
|
};
|
|
@@ -13197,12 +13199,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13197
13199
|
background_color: string;
|
|
13198
13200
|
background_image_url: string;
|
|
13199
13201
|
page_layout: "center" | "left" | "right";
|
|
13200
|
-
logo_placement?: "
|
|
13202
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13201
13203
|
};
|
|
13202
13204
|
widget: {
|
|
13203
13205
|
header_text_alignment: "center" | "left" | "right";
|
|
13204
13206
|
logo_height: number;
|
|
13205
|
-
logo_position: "
|
|
13207
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13206
13208
|
logo_url: string;
|
|
13207
13209
|
social_buttons_layout: "bottom" | "top";
|
|
13208
13210
|
};
|
|
@@ -13359,7 +13361,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13359
13361
|
} & {
|
|
13360
13362
|
json: {
|
|
13361
13363
|
body?: string | undefined;
|
|
13362
|
-
screen?: "
|
|
13364
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
13363
13365
|
branding?: {
|
|
13364
13366
|
colors?: {
|
|
13365
13367
|
primary: string;
|
|
@@ -13445,12 +13447,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13445
13447
|
background_color: string;
|
|
13446
13448
|
background_image_url: string;
|
|
13447
13449
|
page_layout: "center" | "left" | "right";
|
|
13448
|
-
logo_placement?: "
|
|
13450
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13449
13451
|
} | undefined;
|
|
13450
13452
|
widget?: {
|
|
13451
13453
|
header_text_alignment: "center" | "left" | "right";
|
|
13452
13454
|
logo_height: number;
|
|
13453
|
-
logo_position: "
|
|
13455
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13454
13456
|
logo_url: string;
|
|
13455
13457
|
social_buttons_layout: "bottom" | "top";
|
|
13456
13458
|
} | undefined;
|
|
@@ -13603,7 +13605,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13603
13605
|
output: {
|
|
13604
13606
|
id: string;
|
|
13605
13607
|
trigger_id: string;
|
|
13606
|
-
status: "
|
|
13608
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13607
13609
|
results: {
|
|
13608
13610
|
action_name: string;
|
|
13609
13611
|
error: {
|
|
@@ -13650,7 +13652,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13650
13652
|
logs: {
|
|
13651
13653
|
action_name: string;
|
|
13652
13654
|
lines: {
|
|
13653
|
-
level: "
|
|
13655
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13654
13656
|
message: string;
|
|
13655
13657
|
}[];
|
|
13656
13658
|
}[];
|
|
@@ -14319,7 +14321,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14319
14321
|
args: import("hono/utils/types").JSONValue[];
|
|
14320
14322
|
}[];
|
|
14321
14323
|
logs: {
|
|
14322
|
-
level: "
|
|
14324
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14323
14325
|
message: string;
|
|
14324
14326
|
}[];
|
|
14325
14327
|
error?: string | undefined;
|
|
@@ -14630,7 +14632,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14630
14632
|
scope?: string | undefined;
|
|
14631
14633
|
grant_types?: string[] | undefined;
|
|
14632
14634
|
response_types?: string[] | undefined;
|
|
14633
|
-
token_endpoint_auth_method?: "none" | "
|
|
14635
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14634
14636
|
jwks_uri?: string | undefined;
|
|
14635
14637
|
jwks?: Record<string, unknown> | undefined;
|
|
14636
14638
|
software_id?: string | undefined;
|
|
@@ -14719,7 +14721,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14719
14721
|
scope?: string | undefined;
|
|
14720
14722
|
grant_types?: string[] | undefined;
|
|
14721
14723
|
response_types?: string[] | undefined;
|
|
14722
|
-
token_endpoint_auth_method?: "none" | "
|
|
14724
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
14723
14725
|
jwks_uri?: string | undefined;
|
|
14724
14726
|
jwks?: Record<string, unknown> | undefined;
|
|
14725
14727
|
software_id?: string | undefined;
|
|
@@ -15065,20 +15067,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15065
15067
|
email: string;
|
|
15066
15068
|
send: "code" | "link";
|
|
15067
15069
|
authParams: {
|
|
15068
|
-
username?: string | undefined;
|
|
15069
|
-
state?: string | undefined;
|
|
15070
15070
|
audience?: string | undefined;
|
|
15071
|
+
username?: string | undefined;
|
|
15072
|
+
scope?: string | undefined;
|
|
15071
15073
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15072
15074
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15073
|
-
|
|
15075
|
+
state?: string | undefined;
|
|
15076
|
+
prompt?: string | undefined;
|
|
15077
|
+
ui_locales?: string | undefined;
|
|
15074
15078
|
organization?: string | undefined;
|
|
15075
|
-
nonce?: string | undefined;
|
|
15076
15079
|
redirect_uri?: string | undefined;
|
|
15077
15080
|
act_as?: string | undefined;
|
|
15078
|
-
|
|
15081
|
+
nonce?: string | undefined;
|
|
15079
15082
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15080
15083
|
code_challenge?: string | undefined;
|
|
15081
|
-
ui_locales?: string | undefined;
|
|
15082
15084
|
max_age?: number | undefined;
|
|
15083
15085
|
acr_values?: string | undefined;
|
|
15084
15086
|
claims?: {
|
|
@@ -15101,20 +15103,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15101
15103
|
phone_number: string;
|
|
15102
15104
|
send: "code" | "link";
|
|
15103
15105
|
authParams: {
|
|
15104
|
-
username?: string | undefined;
|
|
15105
|
-
state?: string | undefined;
|
|
15106
15106
|
audience?: string | undefined;
|
|
15107
|
+
username?: string | undefined;
|
|
15108
|
+
scope?: string | undefined;
|
|
15107
15109
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15108
15110
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15109
|
-
|
|
15111
|
+
state?: string | undefined;
|
|
15112
|
+
prompt?: string | undefined;
|
|
15113
|
+
ui_locales?: string | undefined;
|
|
15110
15114
|
organization?: string | undefined;
|
|
15111
|
-
nonce?: string | undefined;
|
|
15112
15115
|
redirect_uri?: string | undefined;
|
|
15113
15116
|
act_as?: string | undefined;
|
|
15114
|
-
|
|
15117
|
+
nonce?: string | undefined;
|
|
15115
15118
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15116
15119
|
code_challenge?: string | undefined;
|
|
15117
|
-
ui_locales?: string | undefined;
|
|
15118
15120
|
max_age?: number | undefined;
|
|
15119
15121
|
acr_values?: string | undefined;
|
|
15120
15122
|
claims?: {
|
|
@@ -15245,14 +15247,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15245
15247
|
input: {
|
|
15246
15248
|
form: {
|
|
15247
15249
|
token: string;
|
|
15248
|
-
token_type_hint?: "
|
|
15250
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15249
15251
|
client_id?: string | undefined;
|
|
15250
15252
|
client_secret?: string | undefined;
|
|
15251
15253
|
};
|
|
15252
15254
|
} & {
|
|
15253
15255
|
json: {
|
|
15254
15256
|
token: string;
|
|
15255
|
-
token_type_hint?: "
|
|
15257
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15256
15258
|
client_id?: string | undefined;
|
|
15257
15259
|
client_secret?: string | undefined;
|
|
15258
15260
|
};
|
|
@@ -15264,14 +15266,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15264
15266
|
input: {
|
|
15265
15267
|
form: {
|
|
15266
15268
|
token: string;
|
|
15267
|
-
token_type_hint?: "
|
|
15269
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15268
15270
|
client_id?: string | undefined;
|
|
15269
15271
|
client_secret?: string | undefined;
|
|
15270
15272
|
};
|
|
15271
15273
|
} & {
|
|
15272
15274
|
json: {
|
|
15273
15275
|
token: string;
|
|
15274
|
-
token_type_hint?: "
|
|
15276
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15275
15277
|
client_id?: string | undefined;
|
|
15276
15278
|
client_secret?: string | undefined;
|
|
15277
15279
|
};
|
|
@@ -15286,14 +15288,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15286
15288
|
input: {
|
|
15287
15289
|
form: {
|
|
15288
15290
|
token: string;
|
|
15289
|
-
token_type_hint?: "
|
|
15291
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15290
15292
|
client_id?: string | undefined;
|
|
15291
15293
|
client_secret?: string | undefined;
|
|
15292
15294
|
};
|
|
15293
15295
|
} & {
|
|
15294
15296
|
json: {
|
|
15295
15297
|
token: string;
|
|
15296
|
-
token_type_hint?: "
|
|
15298
|
+
token_type_hint?: "access_token" | "refresh_token" | undefined;
|
|
15297
15299
|
client_id?: string | undefined;
|
|
15298
15300
|
client_secret?: string | undefined;
|
|
15299
15301
|
};
|
|
@@ -16645,7 +16647,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16645
16647
|
} & {
|
|
16646
16648
|
form: {
|
|
16647
16649
|
username: string;
|
|
16648
|
-
login_selection?: "
|
|
16650
|
+
login_selection?: "password" | "code" | undefined;
|
|
16649
16651
|
};
|
|
16650
16652
|
};
|
|
16651
16653
|
output: {};
|
|
@@ -16659,7 +16661,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16659
16661
|
} & {
|
|
16660
16662
|
form: {
|
|
16661
16663
|
username: string;
|
|
16662
|
-
login_selection?: "
|
|
16664
|
+
login_selection?: "password" | "code" | undefined;
|
|
16663
16665
|
};
|
|
16664
16666
|
};
|
|
16665
16667
|
output: {};
|
|
@@ -17024,7 +17026,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17024
17026
|
$get: {
|
|
17025
17027
|
input: {
|
|
17026
17028
|
param: {
|
|
17027
|
-
screen: "
|
|
17029
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
17028
17030
|
};
|
|
17029
17031
|
} & {
|
|
17030
17032
|
query: {
|
|
@@ -17040,7 +17042,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17040
17042
|
} | {
|
|
17041
17043
|
input: {
|
|
17042
17044
|
param: {
|
|
17043
|
-
screen: "
|
|
17045
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
17044
17046
|
};
|
|
17045
17047
|
} & {
|
|
17046
17048
|
query: {
|
|
@@ -17056,7 +17058,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17056
17058
|
} | {
|
|
17057
17059
|
input: {
|
|
17058
17060
|
param: {
|
|
17059
|
-
screen: "
|
|
17061
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "account" | "enter-password" | "impersonate" | "try-connection-result" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
17060
17062
|
};
|
|
17061
17063
|
} & {
|
|
17062
17064
|
query: {
|
|
@@ -17076,7 +17078,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17076
17078
|
$post: {
|
|
17077
17079
|
input: {
|
|
17078
17080
|
param: {
|
|
17079
|
-
screen: "
|
|
17081
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
17080
17082
|
};
|
|
17081
17083
|
} & {
|
|
17082
17084
|
query: {
|
|
@@ -17094,7 +17096,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17094
17096
|
} | {
|
|
17095
17097
|
input: {
|
|
17096
17098
|
param: {
|
|
17097
|
-
screen: "
|
|
17099
|
+
screen: "login" | "signup" | "reset-password" | "consent" | "enter-password" | "impersonate" | "login/identifier" | "login/email-otp-challenge" | "login/sms-otp-challenge" | "login/login-passwordless-identifier" | "reset-password/code" | "reset-password/request" | "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";
|
|
17098
17100
|
};
|
|
17099
17101
|
} & {
|
|
17100
17102
|
query: {
|