authhero 8.26.0 → 8.27.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 +139 -139
- package/dist/authhero.d.ts +201 -116
- package/dist/authhero.mjs +6339 -6281
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -6
- package/dist/types/components/stories/IdentifierPage.stories.d.ts +2 -0
- package/dist/types/helpers/codes-cleanup.d.ts +4 -4
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/run-retention.d.ts +86 -0
- package/dist/types/index.d.ts +112 -110
- 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 +14 -14
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- 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 +83 -83
- 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 +12 -12
- 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/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +6 -6
package/dist/types/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export { provisionDefaultClients, isInteractiveClient, } from "./helpers/provisi
|
|
|
24
24
|
export type { ProvisionDefaultClientsOptions, ProvisionDefaultClientsResult, ManagementApiScope, } from "./helpers/provision-tenant-clients";
|
|
25
25
|
export { runOutboxRelay } from "./helpers/run-outbox-relay";
|
|
26
26
|
export type { RunOutboxRelayConfig } from "./helpers/run-outbox-relay";
|
|
27
|
+
export { runRetention, RetentionSweepError } from "./helpers/run-retention";
|
|
28
|
+
export type { RunRetentionConfig, RunRetentionResult, RetentionSweep, RetentionSweepStatus, RetentionSweepSwept, RetentionSweepSkipped, RetentionSweepFailed, } from "./helpers/run-retention";
|
|
27
29
|
export { LogsDestination } from "./helpers/outbox-destinations/logs";
|
|
28
30
|
export { WebhookDestination, type WebhookDestinationOptions, type GetServiceToken, } from "./helpers/outbox-destinations/webhooks";
|
|
29
31
|
export { CodeHookDestination } from "./helpers/outbox-destinations/code-hooks";
|
|
@@ -76,8 +78,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
76
78
|
$get: {
|
|
77
79
|
input: {
|
|
78
80
|
query: {
|
|
79
|
-
include_password_hashes?: "
|
|
80
|
-
gzip?: "
|
|
81
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
82
|
+
gzip?: "true" | "false" | undefined;
|
|
81
83
|
};
|
|
82
84
|
} & {
|
|
83
85
|
header: {
|
|
@@ -90,8 +92,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
90
92
|
} | {
|
|
91
93
|
input: {
|
|
92
94
|
query: {
|
|
93
|
-
include_password_hashes?: "
|
|
94
|
-
gzip?: "
|
|
95
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
96
|
+
gzip?: "true" | "false" | undefined;
|
|
95
97
|
};
|
|
96
98
|
} & {
|
|
97
99
|
header: {
|
|
@@ -110,7 +112,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
110
112
|
$post: {
|
|
111
113
|
input: {
|
|
112
114
|
query: {
|
|
113
|
-
include_password_hashes?: "
|
|
115
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
114
116
|
};
|
|
115
117
|
} & {
|
|
116
118
|
header: {
|
|
@@ -164,7 +166,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
164
166
|
};
|
|
165
167
|
} & {
|
|
166
168
|
json: {
|
|
167
|
-
type: "push" | "email" | "passkey" | "
|
|
169
|
+
type: "push" | "email" | "passkey" | "phone" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
168
170
|
phone_number?: string | undefined;
|
|
169
171
|
totp_secret?: string | undefined;
|
|
170
172
|
credential_id?: string | undefined;
|
|
@@ -304,7 +306,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
304
306
|
};
|
|
305
307
|
};
|
|
306
308
|
output: {
|
|
307
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
309
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
308
310
|
enabled: boolean;
|
|
309
311
|
trial_expired?: boolean | undefined;
|
|
310
312
|
}[];
|
|
@@ -459,7 +461,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
459
461
|
$get: {
|
|
460
462
|
input: {
|
|
461
463
|
param: {
|
|
462
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
464
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
463
465
|
};
|
|
464
466
|
} & {
|
|
465
467
|
header: {
|
|
@@ -467,7 +469,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
467
469
|
};
|
|
468
470
|
};
|
|
469
471
|
output: {
|
|
470
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
472
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
471
473
|
enabled: boolean;
|
|
472
474
|
trial_expired?: boolean | undefined;
|
|
473
475
|
};
|
|
@@ -480,7 +482,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
480
482
|
$put: {
|
|
481
483
|
input: {
|
|
482
484
|
param: {
|
|
483
|
-
factor_name: "sms" | "otp" | "email" | "duo" | "
|
|
485
|
+
factor_name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
484
486
|
};
|
|
485
487
|
} & {
|
|
486
488
|
header: {
|
|
@@ -492,7 +494,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
492
494
|
};
|
|
493
495
|
};
|
|
494
496
|
output: {
|
|
495
|
-
name: "sms" | "otp" | "email" | "duo" | "
|
|
497
|
+
name: "sms" | "otp" | "email" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
496
498
|
enabled: boolean;
|
|
497
499
|
trial_expired?: boolean | undefined;
|
|
498
500
|
};
|
|
@@ -1264,19 +1266,19 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1264
1266
|
} & {
|
|
1265
1267
|
json: {
|
|
1266
1268
|
client_id: string;
|
|
1267
|
-
inviter: {
|
|
1268
|
-
name?: string | undefined;
|
|
1269
|
-
};
|
|
1270
1269
|
invitee: {
|
|
1271
1270
|
email?: string | undefined;
|
|
1272
1271
|
};
|
|
1272
|
+
inviter: {
|
|
1273
|
+
name?: string | undefined;
|
|
1274
|
+
};
|
|
1273
1275
|
id?: string | undefined;
|
|
1274
1276
|
app_metadata?: Record<string, any> | undefined;
|
|
1275
1277
|
user_metadata?: Record<string, any> | undefined;
|
|
1276
1278
|
connection_id?: string | undefined;
|
|
1277
1279
|
roles?: string[] | undefined;
|
|
1278
|
-
ttl_sec?: number | undefined;
|
|
1279
1280
|
send_invitation_email?: boolean | undefined;
|
|
1281
|
+
ttl_sec?: number | undefined;
|
|
1280
1282
|
};
|
|
1281
1283
|
};
|
|
1282
1284
|
output: {
|
|
@@ -1459,8 +1461,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
1459
1461
|
};
|
|
1460
1462
|
} & {
|
|
1461
1463
|
json: {
|
|
1462
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1463
1464
|
show_as_button?: boolean | undefined;
|
|
1465
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1464
1466
|
is_signup_enabled?: boolean | undefined;
|
|
1465
1467
|
};
|
|
1466
1468
|
};
|
|
@@ -2031,9 +2033,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
2031
2033
|
};
|
|
2032
2034
|
} & {
|
|
2033
2035
|
query: {
|
|
2036
|
+
from?: string | undefined;
|
|
2034
2037
|
page?: string | undefined;
|
|
2035
2038
|
include_totals?: string | undefined;
|
|
2036
|
-
from?: string | undefined;
|
|
2037
2039
|
per_page?: string | undefined;
|
|
2038
2040
|
take?: string | undefined;
|
|
2039
2041
|
};
|
|
@@ -6985,7 +6987,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6985
6987
|
};
|
|
6986
6988
|
};
|
|
6987
6989
|
output: {
|
|
6988
|
-
prompt: "status" | "
|
|
6990
|
+
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";
|
|
6989
6991
|
language: string;
|
|
6990
6992
|
}[];
|
|
6991
6993
|
outputFormat: "json";
|
|
@@ -7023,7 +7025,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7023
7025
|
$get: {
|
|
7024
7026
|
input: {
|
|
7025
7027
|
param: {
|
|
7026
|
-
prompt: "status" | "
|
|
7028
|
+
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";
|
|
7027
7029
|
language: string;
|
|
7028
7030
|
};
|
|
7029
7031
|
} & {
|
|
@@ -7045,7 +7047,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7045
7047
|
$put: {
|
|
7046
7048
|
input: {
|
|
7047
7049
|
param: {
|
|
7048
|
-
prompt: "status" | "
|
|
7050
|
+
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";
|
|
7049
7051
|
language: string;
|
|
7050
7052
|
};
|
|
7051
7053
|
} & {
|
|
@@ -7069,7 +7071,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7069
7071
|
$delete: {
|
|
7070
7072
|
input: {
|
|
7071
7073
|
param: {
|
|
7072
|
-
prompt: "status" | "
|
|
7074
|
+
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";
|
|
7073
7075
|
language: string;
|
|
7074
7076
|
};
|
|
7075
7077
|
} & {
|
|
@@ -7161,7 +7163,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7161
7163
|
active?: boolean | undefined;
|
|
7162
7164
|
} | undefined;
|
|
7163
7165
|
signup?: {
|
|
7164
|
-
status?: "
|
|
7166
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7165
7167
|
verification?: {
|
|
7166
7168
|
active?: boolean | undefined;
|
|
7167
7169
|
} | undefined;
|
|
@@ -7178,7 +7180,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7178
7180
|
active?: boolean | undefined;
|
|
7179
7181
|
} | undefined;
|
|
7180
7182
|
signup?: {
|
|
7181
|
-
status?: "
|
|
7183
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7182
7184
|
} | undefined;
|
|
7183
7185
|
validation?: {
|
|
7184
7186
|
max_length?: number | undefined;
|
|
@@ -7195,7 +7197,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7195
7197
|
active?: boolean | undefined;
|
|
7196
7198
|
} | undefined;
|
|
7197
7199
|
signup?: {
|
|
7198
|
-
status?: "
|
|
7200
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7199
7201
|
} | undefined;
|
|
7200
7202
|
} | undefined;
|
|
7201
7203
|
} | undefined;
|
|
@@ -7295,7 +7297,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7295
7297
|
active?: boolean | undefined;
|
|
7296
7298
|
} | undefined;
|
|
7297
7299
|
signup?: {
|
|
7298
|
-
status?: "
|
|
7300
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7299
7301
|
verification?: {
|
|
7300
7302
|
active?: boolean | undefined;
|
|
7301
7303
|
} | undefined;
|
|
@@ -7312,7 +7314,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7312
7314
|
active?: boolean | undefined;
|
|
7313
7315
|
} | undefined;
|
|
7314
7316
|
signup?: {
|
|
7315
|
-
status?: "
|
|
7317
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7316
7318
|
} | undefined;
|
|
7317
7319
|
validation?: {
|
|
7318
7320
|
max_length?: number | undefined;
|
|
@@ -7329,7 +7331,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7329
7331
|
active?: boolean | undefined;
|
|
7330
7332
|
} | undefined;
|
|
7331
7333
|
signup?: {
|
|
7332
|
-
status?: "
|
|
7334
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7333
7335
|
} | undefined;
|
|
7334
7336
|
} | undefined;
|
|
7335
7337
|
} | undefined;
|
|
@@ -7445,7 +7447,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7445
7447
|
active?: boolean | undefined;
|
|
7446
7448
|
} | undefined;
|
|
7447
7449
|
signup?: {
|
|
7448
|
-
status?: "
|
|
7450
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7449
7451
|
verification?: {
|
|
7450
7452
|
active?: boolean | undefined;
|
|
7451
7453
|
} | undefined;
|
|
@@ -7462,7 +7464,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7462
7464
|
active?: boolean | undefined;
|
|
7463
7465
|
} | undefined;
|
|
7464
7466
|
signup?: {
|
|
7465
|
-
status?: "
|
|
7467
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7466
7468
|
} | undefined;
|
|
7467
7469
|
validation?: {
|
|
7468
7470
|
max_length?: number | undefined;
|
|
@@ -7479,7 +7481,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7479
7481
|
active?: boolean | undefined;
|
|
7480
7482
|
} | undefined;
|
|
7481
7483
|
signup?: {
|
|
7482
|
-
status?: "
|
|
7484
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7483
7485
|
} | undefined;
|
|
7484
7486
|
} | undefined;
|
|
7485
7487
|
} | undefined;
|
|
@@ -7624,7 +7626,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7624
7626
|
active?: boolean | undefined;
|
|
7625
7627
|
} | undefined;
|
|
7626
7628
|
signup?: {
|
|
7627
|
-
status?: "
|
|
7629
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7628
7630
|
verification?: {
|
|
7629
7631
|
active?: boolean | undefined;
|
|
7630
7632
|
} | undefined;
|
|
@@ -7641,7 +7643,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7641
7643
|
active?: boolean | undefined;
|
|
7642
7644
|
} | undefined;
|
|
7643
7645
|
signup?: {
|
|
7644
|
-
status?: "
|
|
7646
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7645
7647
|
} | undefined;
|
|
7646
7648
|
validation?: {
|
|
7647
7649
|
max_length?: number | undefined;
|
|
@@ -7658,7 +7660,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7658
7660
|
active?: boolean | undefined;
|
|
7659
7661
|
} | undefined;
|
|
7660
7662
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7663
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7662
7664
|
} | undefined;
|
|
7663
7665
|
} | undefined;
|
|
7664
7666
|
} | undefined;
|
|
@@ -7782,7 +7784,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7782
7784
|
active?: boolean | undefined;
|
|
7783
7785
|
} | undefined;
|
|
7784
7786
|
signup?: {
|
|
7785
|
-
status?: "
|
|
7787
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7786
7788
|
verification?: {
|
|
7787
7789
|
active?: boolean | undefined;
|
|
7788
7790
|
} | undefined;
|
|
@@ -7799,7 +7801,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7799
7801
|
active?: boolean | undefined;
|
|
7800
7802
|
} | undefined;
|
|
7801
7803
|
signup?: {
|
|
7802
|
-
status?: "
|
|
7804
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7803
7805
|
} | undefined;
|
|
7804
7806
|
validation?: {
|
|
7805
7807
|
max_length?: number | undefined;
|
|
@@ -7816,7 +7818,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7816
7818
|
active?: boolean | undefined;
|
|
7817
7819
|
} | undefined;
|
|
7818
7820
|
signup?: {
|
|
7819
|
-
status?: "
|
|
7821
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7820
7822
|
} | undefined;
|
|
7821
7823
|
} | undefined;
|
|
7822
7824
|
} | undefined;
|
|
@@ -7968,7 +7970,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7968
7970
|
tenant_id: string;
|
|
7969
7971
|
created_at: string;
|
|
7970
7972
|
updated_at: string;
|
|
7971
|
-
deploymentStatus: "
|
|
7973
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7972
7974
|
secrets?: {
|
|
7973
7975
|
[x: string]: string;
|
|
7974
7976
|
} | undefined;
|
|
@@ -8058,7 +8060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8058
8060
|
tenant_id: string;
|
|
8059
8061
|
created_at: string;
|
|
8060
8062
|
updated_at: string;
|
|
8061
|
-
deploymentStatus: "
|
|
8063
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
8062
8064
|
secrets?: {
|
|
8063
8065
|
[x: string]: string;
|
|
8064
8066
|
} | undefined;
|
|
@@ -8572,7 +8574,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8572
8574
|
log_type: string;
|
|
8573
8575
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8574
8576
|
actor: {
|
|
8575
|
-
type: "
|
|
8577
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8576
8578
|
id?: string | undefined;
|
|
8577
8579
|
email?: string | undefined;
|
|
8578
8580
|
org_id?: string | undefined;
|
|
@@ -8882,7 +8884,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8882
8884
|
created_at: string;
|
|
8883
8885
|
updated_at: string;
|
|
8884
8886
|
name: string;
|
|
8885
|
-
provider: "auth0" | "
|
|
8887
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8886
8888
|
connection: string;
|
|
8887
8889
|
enabled: boolean;
|
|
8888
8890
|
credentials: {
|
|
@@ -8914,7 +8916,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8914
8916
|
created_at: string;
|
|
8915
8917
|
updated_at: string;
|
|
8916
8918
|
name: string;
|
|
8917
|
-
provider: "auth0" | "
|
|
8919
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8918
8920
|
connection: string;
|
|
8919
8921
|
enabled: boolean;
|
|
8920
8922
|
credentials: {
|
|
@@ -8940,7 +8942,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8940
8942
|
} & {
|
|
8941
8943
|
json: {
|
|
8942
8944
|
name: string;
|
|
8943
|
-
provider: "auth0" | "
|
|
8945
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8944
8946
|
connection: string;
|
|
8945
8947
|
credentials: {
|
|
8946
8948
|
domain: string;
|
|
@@ -8957,7 +8959,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8957
8959
|
created_at: string;
|
|
8958
8960
|
updated_at: string;
|
|
8959
8961
|
name: string;
|
|
8960
|
-
provider: "auth0" | "
|
|
8962
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8961
8963
|
connection: string;
|
|
8962
8964
|
enabled: boolean;
|
|
8963
8965
|
credentials: {
|
|
@@ -8988,7 +8990,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
8988
8990
|
json: {
|
|
8989
8991
|
id?: string | undefined;
|
|
8990
8992
|
name?: string | undefined;
|
|
8991
|
-
provider?: "auth0" | "
|
|
8993
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8992
8994
|
connection?: string | undefined;
|
|
8993
8995
|
enabled?: boolean | undefined;
|
|
8994
8996
|
credentials?: {
|
|
@@ -9004,7 +9006,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9004
9006
|
created_at: string;
|
|
9005
9007
|
updated_at: string;
|
|
9006
9008
|
name: string;
|
|
9007
|
-
provider: "auth0" | "
|
|
9009
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
9008
9010
|
connection: string;
|
|
9009
9011
|
enabled: boolean;
|
|
9010
9012
|
credentials: {
|
|
@@ -9052,7 +9054,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9052
9054
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9053
9055
|
};
|
|
9054
9056
|
id: string;
|
|
9055
|
-
status: "
|
|
9057
|
+
status: "active" | "suspended" | "paused";
|
|
9056
9058
|
filters?: {
|
|
9057
9059
|
type: string;
|
|
9058
9060
|
name: string;
|
|
@@ -9084,7 +9086,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9084
9086
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9085
9087
|
};
|
|
9086
9088
|
id: string;
|
|
9087
|
-
status: "
|
|
9089
|
+
status: "active" | "suspended" | "paused";
|
|
9088
9090
|
filters?: {
|
|
9089
9091
|
type: string;
|
|
9090
9092
|
name: string;
|
|
@@ -9109,7 +9111,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9109
9111
|
name: string;
|
|
9110
9112
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
9111
9113
|
sink: Record<string, unknown>;
|
|
9112
|
-
status?: "
|
|
9114
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9113
9115
|
filters?: {
|
|
9114
9116
|
type: string;
|
|
9115
9117
|
name: string;
|
|
@@ -9124,7 +9126,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9124
9126
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9125
9127
|
};
|
|
9126
9128
|
id: string;
|
|
9127
|
-
status: "
|
|
9129
|
+
status: "active" | "suspended" | "paused";
|
|
9128
9130
|
filters?: {
|
|
9129
9131
|
type: string;
|
|
9130
9132
|
name: string;
|
|
@@ -9159,7 +9161,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9159
9161
|
}[] | undefined;
|
|
9160
9162
|
isPriority?: boolean | undefined;
|
|
9161
9163
|
id?: string | undefined;
|
|
9162
|
-
status?: "
|
|
9164
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9163
9165
|
created_at?: string | undefined;
|
|
9164
9166
|
updated_at?: string | undefined;
|
|
9165
9167
|
};
|
|
@@ -9171,7 +9173,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9171
9173
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9172
9174
|
};
|
|
9173
9175
|
id: string;
|
|
9174
|
-
status: "
|
|
9176
|
+
status: "active" | "suspended" | "paused";
|
|
9175
9177
|
filters?: {
|
|
9176
9178
|
type: string;
|
|
9177
9179
|
name: string;
|
|
@@ -9222,7 +9224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9222
9224
|
};
|
|
9223
9225
|
};
|
|
9224
9226
|
output: {
|
|
9225
|
-
type: "
|
|
9227
|
+
type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
|
|
9226
9228
|
date: string;
|
|
9227
9229
|
isMobile: boolean;
|
|
9228
9230
|
log_id: string;
|
|
@@ -9261,7 +9263,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9261
9263
|
limit: number;
|
|
9262
9264
|
length: number;
|
|
9263
9265
|
logs: {
|
|
9264
|
-
type: "
|
|
9266
|
+
type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
|
|
9265
9267
|
date: string;
|
|
9266
9268
|
isMobile: boolean;
|
|
9267
9269
|
log_id: string;
|
|
@@ -9300,7 +9302,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9300
9302
|
next?: string | undefined;
|
|
9301
9303
|
} | {
|
|
9302
9304
|
logs: {
|
|
9303
|
-
type: "
|
|
9305
|
+
type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
|
|
9304
9306
|
date: string;
|
|
9305
9307
|
isMobile: boolean;
|
|
9306
9308
|
log_id: string;
|
|
@@ -9354,7 +9356,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9354
9356
|
};
|
|
9355
9357
|
};
|
|
9356
9358
|
output: {
|
|
9357
|
-
type: "
|
|
9359
|
+
type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
|
|
9358
9360
|
date: string;
|
|
9359
9361
|
isMobile: boolean;
|
|
9360
9362
|
log_id: string;
|
|
@@ -9765,7 +9767,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9765
9767
|
addons?: {
|
|
9766
9768
|
[x: string]: any;
|
|
9767
9769
|
} | undefined;
|
|
9768
|
-
token_endpoint_auth_method?: "none" | "
|
|
9770
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9769
9771
|
client_metadata?: {
|
|
9770
9772
|
[x: string]: string;
|
|
9771
9773
|
} | undefined;
|
|
@@ -9867,7 +9869,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9867
9869
|
addons?: {
|
|
9868
9870
|
[x: string]: any;
|
|
9869
9871
|
} | undefined;
|
|
9870
|
-
token_endpoint_auth_method?: "none" | "
|
|
9872
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9871
9873
|
client_metadata?: {
|
|
9872
9874
|
[x: string]: string;
|
|
9873
9875
|
} | undefined;
|
|
@@ -9969,7 +9971,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9969
9971
|
addons?: {
|
|
9970
9972
|
[x: string]: any;
|
|
9971
9973
|
} | undefined;
|
|
9972
|
-
token_endpoint_auth_method?: "none" | "
|
|
9974
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9973
9975
|
client_metadata?: {
|
|
9974
9976
|
[x: string]: string;
|
|
9975
9977
|
} | undefined;
|
|
@@ -10086,7 +10088,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10086
10088
|
addons?: {
|
|
10087
10089
|
[x: string]: any;
|
|
10088
10090
|
} | undefined;
|
|
10089
|
-
token_endpoint_auth_method?: "none" | "
|
|
10091
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10090
10092
|
client_metadata?: {
|
|
10091
10093
|
[x: string]: string;
|
|
10092
10094
|
} | undefined;
|
|
@@ -10204,7 +10206,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10204
10206
|
custom_login_page_preview?: string | undefined;
|
|
10205
10207
|
form_template?: string | undefined;
|
|
10206
10208
|
addons?: Record<string, any> | undefined;
|
|
10207
|
-
token_endpoint_auth_method?: "none" | "
|
|
10209
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10208
10210
|
client_metadata?: Record<string, string> | undefined;
|
|
10209
10211
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10210
10212
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10290,7 +10292,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10290
10292
|
addons?: {
|
|
10291
10293
|
[x: string]: any;
|
|
10292
10294
|
} | undefined;
|
|
10293
|
-
token_endpoint_auth_method?: "none" | "
|
|
10295
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10294
10296
|
client_metadata?: {
|
|
10295
10297
|
[x: string]: string;
|
|
10296
10298
|
} | undefined;
|
|
@@ -10387,7 +10389,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10387
10389
|
custom_login_page_preview?: string | undefined;
|
|
10388
10390
|
form_template?: string | undefined;
|
|
10389
10391
|
addons?: Record<string, any> | undefined;
|
|
10390
|
-
token_endpoint_auth_method?: "none" | "
|
|
10392
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10391
10393
|
client_metadata?: Record<string, string> | undefined;
|
|
10392
10394
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10393
10395
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10473,7 +10475,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10473
10475
|
addons?: {
|
|
10474
10476
|
[x: string]: any;
|
|
10475
10477
|
} | undefined;
|
|
10476
|
-
token_endpoint_auth_method?: "none" | "
|
|
10478
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10477
10479
|
client_metadata?: {
|
|
10478
10480
|
[x: string]: string;
|
|
10479
10481
|
} | undefined;
|
|
@@ -10595,7 +10597,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10595
10597
|
active?: boolean | undefined;
|
|
10596
10598
|
} | undefined;
|
|
10597
10599
|
signup?: {
|
|
10598
|
-
status?: "
|
|
10600
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10599
10601
|
verification?: {
|
|
10600
10602
|
active?: boolean | undefined;
|
|
10601
10603
|
} | undefined;
|
|
@@ -10612,7 +10614,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10612
10614
|
active?: boolean | undefined;
|
|
10613
10615
|
} | undefined;
|
|
10614
10616
|
signup?: {
|
|
10615
|
-
status?: "
|
|
10617
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10616
10618
|
} | undefined;
|
|
10617
10619
|
validation?: {
|
|
10618
10620
|
max_length?: number | undefined;
|
|
@@ -10629,7 +10631,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10629
10631
|
active?: boolean | undefined;
|
|
10630
10632
|
} | undefined;
|
|
10631
10633
|
signup?: {
|
|
10632
|
-
status?: "
|
|
10634
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10633
10635
|
} | undefined;
|
|
10634
10636
|
} | undefined;
|
|
10635
10637
|
} | undefined;
|
|
@@ -10749,7 +10751,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10749
10751
|
active?: boolean | undefined;
|
|
10750
10752
|
} | undefined;
|
|
10751
10753
|
signup?: {
|
|
10752
|
-
status?: "
|
|
10754
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10753
10755
|
verification?: {
|
|
10754
10756
|
active?: boolean | undefined;
|
|
10755
10757
|
} | undefined;
|
|
@@ -10766,7 +10768,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10766
10768
|
active?: boolean | undefined;
|
|
10767
10769
|
} | undefined;
|
|
10768
10770
|
signup?: {
|
|
10769
|
-
status?: "
|
|
10771
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10770
10772
|
} | undefined;
|
|
10771
10773
|
validation?: {
|
|
10772
10774
|
max_length?: number | undefined;
|
|
@@ -10783,7 +10785,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
10783
10785
|
active?: boolean | undefined;
|
|
10784
10786
|
} | undefined;
|
|
10785
10787
|
signup?: {
|
|
10786
|
-
status?: "
|
|
10788
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10787
10789
|
} | undefined;
|
|
10788
10790
|
} | undefined;
|
|
10789
10791
|
} | undefined;
|
|
@@ -11809,7 +11811,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11809
11811
|
};
|
|
11810
11812
|
};
|
|
11811
11813
|
output: {
|
|
11812
|
-
type: "
|
|
11814
|
+
type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
|
|
11813
11815
|
date: string;
|
|
11814
11816
|
isMobile: boolean;
|
|
11815
11817
|
log_id: string;
|
|
@@ -11848,7 +11850,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
11848
11850
|
limit: number;
|
|
11849
11851
|
length: number;
|
|
11850
11852
|
logs: {
|
|
11851
|
-
type: "
|
|
11853
|
+
type: "fc" | "fd" | "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" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "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";
|
|
11852
11854
|
date: string;
|
|
11853
11855
|
isMobile: boolean;
|
|
11854
11856
|
log_id: string;
|
|
@@ -13030,12 +13032,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13030
13032
|
background_color: string;
|
|
13031
13033
|
background_image_url: string;
|
|
13032
13034
|
page_layout: "center" | "left" | "right";
|
|
13033
|
-
logo_placement?: "
|
|
13035
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13034
13036
|
};
|
|
13035
13037
|
widget: {
|
|
13036
13038
|
header_text_alignment: "center" | "left" | "right";
|
|
13037
13039
|
logo_height: number;
|
|
13038
|
-
logo_position: "
|
|
13040
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13039
13041
|
logo_url: string;
|
|
13040
13042
|
social_buttons_layout: "bottom" | "top";
|
|
13041
13043
|
};
|
|
@@ -13120,12 +13122,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13120
13122
|
background_color: string;
|
|
13121
13123
|
background_image_url: string;
|
|
13122
13124
|
page_layout: "center" | "left" | "right";
|
|
13123
|
-
logo_placement?: "
|
|
13125
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13124
13126
|
};
|
|
13125
13127
|
widget: {
|
|
13126
13128
|
header_text_alignment: "center" | "left" | "right";
|
|
13127
13129
|
logo_height: number;
|
|
13128
|
-
logo_position: "
|
|
13130
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13129
13131
|
logo_url: string;
|
|
13130
13132
|
social_buttons_layout: "bottom" | "top";
|
|
13131
13133
|
};
|
|
@@ -13199,12 +13201,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13199
13201
|
background_color: string;
|
|
13200
13202
|
background_image_url: string;
|
|
13201
13203
|
page_layout: "center" | "left" | "right";
|
|
13202
|
-
logo_placement?: "
|
|
13204
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13203
13205
|
};
|
|
13204
13206
|
widget: {
|
|
13205
13207
|
header_text_alignment: "center" | "left" | "right";
|
|
13206
13208
|
logo_height: number;
|
|
13207
|
-
logo_position: "
|
|
13209
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13208
13210
|
logo_url: string;
|
|
13209
13211
|
social_buttons_layout: "bottom" | "top";
|
|
13210
13212
|
};
|
|
@@ -13361,7 +13363,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13361
13363
|
} & {
|
|
13362
13364
|
json: {
|
|
13363
13365
|
body?: string | undefined;
|
|
13364
|
-
screen?: "
|
|
13366
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13365
13367
|
branding?: {
|
|
13366
13368
|
colors?: {
|
|
13367
13369
|
primary: string;
|
|
@@ -13447,12 +13449,12 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13447
13449
|
background_color: string;
|
|
13448
13450
|
background_image_url: string;
|
|
13449
13451
|
page_layout: "center" | "left" | "right";
|
|
13450
|
-
logo_placement?: "
|
|
13452
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13451
13453
|
} | undefined;
|
|
13452
13454
|
widget?: {
|
|
13453
13455
|
header_text_alignment: "center" | "left" | "right";
|
|
13454
13456
|
logo_height: number;
|
|
13455
|
-
logo_position: "
|
|
13457
|
+
logo_position: "none" | "center" | "left" | "right";
|
|
13456
13458
|
logo_url: string;
|
|
13457
13459
|
social_buttons_layout: "bottom" | "top";
|
|
13458
13460
|
} | undefined;
|
|
@@ -13605,7 +13607,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13605
13607
|
output: {
|
|
13606
13608
|
id: string;
|
|
13607
13609
|
trigger_id: string;
|
|
13608
|
-
status: "
|
|
13610
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
13609
13611
|
results: {
|
|
13610
13612
|
action_name: string;
|
|
13611
13613
|
error: {
|
|
@@ -13652,7 +13654,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
13652
13654
|
logs: {
|
|
13653
13655
|
action_name: string;
|
|
13654
13656
|
lines: {
|
|
13655
|
-
level: "
|
|
13657
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13656
13658
|
message: string;
|
|
13657
13659
|
}[];
|
|
13658
13660
|
}[];
|
|
@@ -14321,7 +14323,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14321
14323
|
args: import("hono/utils/types").JSONValue[];
|
|
14322
14324
|
}[];
|
|
14323
14325
|
logs: {
|
|
14324
|
-
level: "
|
|
14326
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
14325
14327
|
message: string;
|
|
14326
14328
|
}[];
|
|
14327
14329
|
error?: string | undefined;
|
|
@@ -14632,7 +14634,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14632
14634
|
scope?: string | undefined;
|
|
14633
14635
|
grant_types?: string[] | undefined;
|
|
14634
14636
|
response_types?: string[] | undefined;
|
|
14635
|
-
token_endpoint_auth_method?: "none" | "
|
|
14637
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14636
14638
|
jwks_uri?: string | undefined;
|
|
14637
14639
|
jwks?: Record<string, unknown> | undefined;
|
|
14638
14640
|
software_id?: string | undefined;
|
|
@@ -14721,7 +14723,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14721
14723
|
scope?: string | undefined;
|
|
14722
14724
|
grant_types?: string[] | undefined;
|
|
14723
14725
|
response_types?: string[] | undefined;
|
|
14724
|
-
token_endpoint_auth_method?: "none" | "
|
|
14726
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
14725
14727
|
jwks_uri?: string | undefined;
|
|
14726
14728
|
jwks?: Record<string, unknown> | undefined;
|
|
14727
14729
|
software_id?: string | undefined;
|
|
@@ -15067,20 +15069,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15067
15069
|
email: string;
|
|
15068
15070
|
send: "code" | "link";
|
|
15069
15071
|
authParams: {
|
|
15070
|
-
audience?: string | undefined;
|
|
15071
15072
|
username?: string | undefined;
|
|
15072
|
-
|
|
15073
|
+
state?: string | undefined;
|
|
15074
|
+
audience?: string | undefined;
|
|
15073
15075
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15074
15076
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15075
|
-
|
|
15076
|
-
prompt?: string | undefined;
|
|
15077
|
-
ui_locales?: string | undefined;
|
|
15077
|
+
scope?: string | undefined;
|
|
15078
15078
|
organization?: string | undefined;
|
|
15079
|
+
nonce?: string | undefined;
|
|
15079
15080
|
redirect_uri?: string | undefined;
|
|
15080
15081
|
act_as?: string | undefined;
|
|
15081
|
-
|
|
15082
|
+
prompt?: string | undefined;
|
|
15082
15083
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15083
15084
|
code_challenge?: string | undefined;
|
|
15085
|
+
ui_locales?: string | undefined;
|
|
15084
15086
|
max_age?: number | undefined;
|
|
15085
15087
|
acr_values?: string | undefined;
|
|
15086
15088
|
claims?: {
|
|
@@ -15103,20 +15105,20 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15103
15105
|
phone_number: string;
|
|
15104
15106
|
send: "code" | "link";
|
|
15105
15107
|
authParams: {
|
|
15106
|
-
audience?: string | undefined;
|
|
15107
15108
|
username?: string | undefined;
|
|
15108
|
-
|
|
15109
|
+
state?: string | undefined;
|
|
15110
|
+
audience?: string | undefined;
|
|
15109
15111
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15110
15112
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15111
|
-
|
|
15112
|
-
prompt?: string | undefined;
|
|
15113
|
-
ui_locales?: string | undefined;
|
|
15113
|
+
scope?: string | undefined;
|
|
15114
15114
|
organization?: string | undefined;
|
|
15115
|
+
nonce?: string | undefined;
|
|
15115
15116
|
redirect_uri?: string | undefined;
|
|
15116
15117
|
act_as?: string | undefined;
|
|
15117
|
-
|
|
15118
|
+
prompt?: string | undefined;
|
|
15118
15119
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15119
15120
|
code_challenge?: string | undefined;
|
|
15121
|
+
ui_locales?: string | undefined;
|
|
15120
15122
|
max_age?: number | undefined;
|
|
15121
15123
|
acr_values?: string | undefined;
|
|
15122
15124
|
claims?: {
|
|
@@ -15247,14 +15249,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15247
15249
|
input: {
|
|
15248
15250
|
form: {
|
|
15249
15251
|
token: string;
|
|
15250
|
-
token_type_hint?: "
|
|
15252
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15251
15253
|
client_id?: string | undefined;
|
|
15252
15254
|
client_secret?: string | undefined;
|
|
15253
15255
|
};
|
|
15254
15256
|
} & {
|
|
15255
15257
|
json: {
|
|
15256
15258
|
token: string;
|
|
15257
|
-
token_type_hint?: "
|
|
15259
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15258
15260
|
client_id?: string | undefined;
|
|
15259
15261
|
client_secret?: string | undefined;
|
|
15260
15262
|
};
|
|
@@ -15266,14 +15268,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15266
15268
|
input: {
|
|
15267
15269
|
form: {
|
|
15268
15270
|
token: string;
|
|
15269
|
-
token_type_hint?: "
|
|
15271
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15270
15272
|
client_id?: string | undefined;
|
|
15271
15273
|
client_secret?: string | undefined;
|
|
15272
15274
|
};
|
|
15273
15275
|
} & {
|
|
15274
15276
|
json: {
|
|
15275
15277
|
token: string;
|
|
15276
|
-
token_type_hint?: "
|
|
15278
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15277
15279
|
client_id?: string | undefined;
|
|
15278
15280
|
client_secret?: string | undefined;
|
|
15279
15281
|
};
|
|
@@ -15288,14 +15290,14 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15288
15290
|
input: {
|
|
15289
15291
|
form: {
|
|
15290
15292
|
token: string;
|
|
15291
|
-
token_type_hint?: "
|
|
15293
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15292
15294
|
client_id?: string | undefined;
|
|
15293
15295
|
client_secret?: string | undefined;
|
|
15294
15296
|
};
|
|
15295
15297
|
} & {
|
|
15296
15298
|
json: {
|
|
15297
15299
|
token: string;
|
|
15298
|
-
token_type_hint?: "
|
|
15300
|
+
token_type_hint?: "refresh_token" | "access_token" | undefined;
|
|
15299
15301
|
client_id?: string | undefined;
|
|
15300
15302
|
client_secret?: string | undefined;
|
|
15301
15303
|
};
|
|
@@ -16647,7 +16649,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16647
16649
|
} & {
|
|
16648
16650
|
form: {
|
|
16649
16651
|
username: string;
|
|
16650
|
-
login_selection?: "
|
|
16652
|
+
login_selection?: "code" | "password" | undefined;
|
|
16651
16653
|
};
|
|
16652
16654
|
};
|
|
16653
16655
|
output: {};
|
|
@@ -16661,7 +16663,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
16661
16663
|
} & {
|
|
16662
16664
|
form: {
|
|
16663
16665
|
username: string;
|
|
16664
|
-
login_selection?: "
|
|
16666
|
+
login_selection?: "code" | "password" | undefined;
|
|
16665
16667
|
};
|
|
16666
16668
|
};
|
|
16667
16669
|
output: {};
|
|
@@ -17026,7 +17028,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17026
17028
|
$get: {
|
|
17027
17029
|
input: {
|
|
17028
17030
|
param: {
|
|
17029
|
-
screen: "
|
|
17031
|
+
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";
|
|
17030
17032
|
};
|
|
17031
17033
|
} & {
|
|
17032
17034
|
query: {
|
|
@@ -17042,7 +17044,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17042
17044
|
} | {
|
|
17043
17045
|
input: {
|
|
17044
17046
|
param: {
|
|
17045
|
-
screen: "
|
|
17047
|
+
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";
|
|
17046
17048
|
};
|
|
17047
17049
|
} & {
|
|
17048
17050
|
query: {
|
|
@@ -17058,7 +17060,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17058
17060
|
} | {
|
|
17059
17061
|
input: {
|
|
17060
17062
|
param: {
|
|
17061
|
-
screen: "
|
|
17063
|
+
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";
|
|
17062
17064
|
};
|
|
17063
17065
|
} & {
|
|
17064
17066
|
query: {
|
|
@@ -17078,7 +17080,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17078
17080
|
$post: {
|
|
17079
17081
|
input: {
|
|
17080
17082
|
param: {
|
|
17081
|
-
screen: "
|
|
17083
|
+
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";
|
|
17082
17084
|
};
|
|
17083
17085
|
} & {
|
|
17084
17086
|
query: {
|
|
@@ -17096,7 +17098,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
17096
17098
|
} | {
|
|
17097
17099
|
input: {
|
|
17098
17100
|
param: {
|
|
17099
|
-
screen: "
|
|
17101
|
+
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";
|
|
17100
17102
|
};
|
|
17101
17103
|
} & {
|
|
17102
17104
|
query: {
|