authhero 8.26.1 → 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 +218 -133
- package/dist/authhero.mjs +6292 -6240
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- 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 +129 -127
- package/dist/types/routes/auth-api/index.d.ts +24 -24
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- 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/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/action-executions.d.ts +1 -1
- package/dist/types/routes/management-api/action-triggers.d.ts +1 -1
- 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 +1 -1
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +92 -92
- 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 +6 -6
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-operations.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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 +5 -5
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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: "
|
|
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;
|
|
@@ -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: {
|
|
@@ -9222,7 +9224,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
9222
9224
|
};
|
|
9223
9225
|
};
|
|
9224
9226
|
output: {
|
|
9225
|
-
type: "fn" | "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" | "
|
|
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: "fn" | "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" | "
|
|
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: "fn" | "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" | "
|
|
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: "fn" | "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" | "
|
|
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: "fn" | "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" | "
|
|
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: "fn" | "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" | "
|
|
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;
|
|
@@ -12167,7 +12169,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12167
12169
|
};
|
|
12168
12170
|
} & {
|
|
12169
12171
|
json: {
|
|
12170
|
-
template: "
|
|
12172
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12171
12173
|
body: string;
|
|
12172
12174
|
from: string;
|
|
12173
12175
|
subject: string;
|
|
@@ -12188,7 +12190,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12188
12190
|
};
|
|
12189
12191
|
} & {
|
|
12190
12192
|
json: {
|
|
12191
|
-
template: "
|
|
12193
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12192
12194
|
body: string;
|
|
12193
12195
|
from: string;
|
|
12194
12196
|
subject: string;
|
|
@@ -12200,7 +12202,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12200
12202
|
};
|
|
12201
12203
|
};
|
|
12202
12204
|
output: {
|
|
12203
|
-
template: "
|
|
12205
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12204
12206
|
body: string;
|
|
12205
12207
|
from: string;
|
|
12206
12208
|
subject: string;
|
|
@@ -12223,7 +12225,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12223
12225
|
};
|
|
12224
12226
|
};
|
|
12225
12227
|
output: {
|
|
12226
|
-
name: "
|
|
12228
|
+
name: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12227
12229
|
body: string;
|
|
12228
12230
|
subject: string;
|
|
12229
12231
|
}[];
|
|
@@ -12236,7 +12238,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12236
12238
|
$get: {
|
|
12237
12239
|
input: {
|
|
12238
12240
|
param: {
|
|
12239
|
-
templateName: "
|
|
12241
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12240
12242
|
};
|
|
12241
12243
|
} & {
|
|
12242
12244
|
header: {
|
|
@@ -12249,7 +12251,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12249
12251
|
} | {
|
|
12250
12252
|
input: {
|
|
12251
12253
|
param: {
|
|
12252
|
-
templateName: "
|
|
12254
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12253
12255
|
};
|
|
12254
12256
|
} & {
|
|
12255
12257
|
header: {
|
|
@@ -12257,7 +12259,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12257
12259
|
};
|
|
12258
12260
|
};
|
|
12259
12261
|
output: {
|
|
12260
|
-
template: "
|
|
12262
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12261
12263
|
body: string;
|
|
12262
12264
|
from: string;
|
|
12263
12265
|
subject: string;
|
|
@@ -12276,7 +12278,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12276
12278
|
$put: {
|
|
12277
12279
|
input: {
|
|
12278
12280
|
param: {
|
|
12279
|
-
templateName: "
|
|
12281
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12280
12282
|
};
|
|
12281
12283
|
} & {
|
|
12282
12284
|
header: {
|
|
@@ -12284,7 +12286,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12284
12286
|
};
|
|
12285
12287
|
} & {
|
|
12286
12288
|
json: {
|
|
12287
|
-
template: "
|
|
12289
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12288
12290
|
body: string;
|
|
12289
12291
|
subject: string;
|
|
12290
12292
|
syntax?: "liquid" | undefined;
|
|
@@ -12296,7 +12298,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12296
12298
|
};
|
|
12297
12299
|
};
|
|
12298
12300
|
output: {
|
|
12299
|
-
template: "
|
|
12301
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12300
12302
|
body: string;
|
|
12301
12303
|
from: string;
|
|
12302
12304
|
subject: string;
|
|
@@ -12315,7 +12317,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12315
12317
|
$patch: {
|
|
12316
12318
|
input: {
|
|
12317
12319
|
param: {
|
|
12318
|
-
templateName: "
|
|
12320
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12319
12321
|
};
|
|
12320
12322
|
} & {
|
|
12321
12323
|
header: {
|
|
@@ -12323,7 +12325,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12323
12325
|
};
|
|
12324
12326
|
} & {
|
|
12325
12327
|
json: {
|
|
12326
|
-
template?: "
|
|
12328
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12327
12329
|
body?: string | undefined;
|
|
12328
12330
|
from?: string | undefined;
|
|
12329
12331
|
subject?: string | undefined;
|
|
@@ -12340,7 +12342,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12340
12342
|
} | {
|
|
12341
12343
|
input: {
|
|
12342
12344
|
param: {
|
|
12343
|
-
templateName: "
|
|
12345
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12344
12346
|
};
|
|
12345
12347
|
} & {
|
|
12346
12348
|
header: {
|
|
@@ -12348,7 +12350,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12348
12350
|
};
|
|
12349
12351
|
} & {
|
|
12350
12352
|
json: {
|
|
12351
|
-
template?: "
|
|
12353
|
+
template?: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
12352
12354
|
body?: string | undefined;
|
|
12353
12355
|
from?: string | undefined;
|
|
12354
12356
|
subject?: string | undefined;
|
|
@@ -12360,7 +12362,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12360
12362
|
};
|
|
12361
12363
|
};
|
|
12362
12364
|
output: {
|
|
12363
|
-
template: "
|
|
12365
|
+
template: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12364
12366
|
body: string;
|
|
12365
12367
|
from: string;
|
|
12366
12368
|
subject: string;
|
|
@@ -12379,7 +12381,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12379
12381
|
$delete: {
|
|
12380
12382
|
input: {
|
|
12381
12383
|
param: {
|
|
12382
|
-
templateName: "
|
|
12384
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12383
12385
|
};
|
|
12384
12386
|
} & {
|
|
12385
12387
|
header: {
|
|
@@ -12392,7 +12394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12392
12394
|
} | {
|
|
12393
12395
|
input: {
|
|
12394
12396
|
param: {
|
|
12395
|
-
templateName: "
|
|
12397
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12396
12398
|
};
|
|
12397
12399
|
} & {
|
|
12398
12400
|
header: {
|
|
@@ -12409,7 +12411,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12409
12411
|
$post: {
|
|
12410
12412
|
input: {
|
|
12411
12413
|
param: {
|
|
12412
|
-
templateName: "
|
|
12414
|
+
templateName: "change_password" | "verify_email" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
12413
12415
|
};
|
|
12414
12416
|
} & {
|
|
12415
12417
|
header: {
|
|
@@ -12692,7 +12694,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12692
12694
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12693
12695
|
custom_domain_id: string;
|
|
12694
12696
|
primary: boolean;
|
|
12695
|
-
status: "
|
|
12697
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12696
12698
|
verification_method?: "txt" | undefined;
|
|
12697
12699
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12698
12700
|
domain_metadata?: {
|
|
@@ -12733,7 +12735,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12733
12735
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12734
12736
|
custom_domain_id: string;
|
|
12735
12737
|
primary: boolean;
|
|
12736
|
-
status: "
|
|
12738
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12737
12739
|
verification_method?: "txt" | undefined;
|
|
12738
12740
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12739
12741
|
domain_metadata?: {
|
|
@@ -12797,7 +12799,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12797
12799
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12798
12800
|
custom_domain_id: string;
|
|
12799
12801
|
primary: boolean;
|
|
12800
|
-
status: "
|
|
12802
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12801
12803
|
verification_method?: "txt" | undefined;
|
|
12802
12804
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12803
12805
|
domain_metadata?: {
|
|
@@ -12844,7 +12846,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12844
12846
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12845
12847
|
custom_domain_id: string;
|
|
12846
12848
|
primary: boolean;
|
|
12847
|
-
status: "
|
|
12849
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12848
12850
|
verification_method?: "txt" | undefined;
|
|
12849
12851
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12850
12852
|
domain_metadata?: {
|
|
@@ -12890,7 +12892,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12890
12892
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12891
12893
|
custom_domain_id: string;
|
|
12892
12894
|
primary: boolean;
|
|
12893
|
-
status: "
|
|
12895
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12894
12896
|
verification_method?: "txt" | undefined;
|
|
12895
12897
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12896
12898
|
domain_metadata?: {
|
|
@@ -12931,7 +12933,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
12931
12933
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12932
12934
|
custom_domain_id: string;
|
|
12933
12935
|
primary: boolean;
|
|
12934
|
-
status: "
|
|
12936
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12935
12937
|
verification_method?: "txt" | undefined;
|
|
12936
12938
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12937
12939
|
domain_metadata?: {
|
|
@@ -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;
|
|
@@ -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;
|
|
@@ -15068,16 +15070,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15068
15070
|
send: "code" | "link";
|
|
15069
15071
|
authParams: {
|
|
15070
15072
|
username?: string | undefined;
|
|
15071
|
-
audience?: string | undefined;
|
|
15072
|
-
scope?: string | undefined;
|
|
15073
15073
|
state?: string | undefined;
|
|
15074
|
+
audience?: string | undefined;
|
|
15074
15075
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15075
15076
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15076
|
-
|
|
15077
|
-
act_as?: string | undefined;
|
|
15078
|
-
redirect_uri?: string | undefined;
|
|
15077
|
+
scope?: string | undefined;
|
|
15079
15078
|
organization?: string | undefined;
|
|
15080
15079
|
nonce?: string | undefined;
|
|
15080
|
+
redirect_uri?: string | undefined;
|
|
15081
|
+
act_as?: string | undefined;
|
|
15082
|
+
prompt?: string | undefined;
|
|
15081
15083
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15082
15084
|
code_challenge?: string | undefined;
|
|
15083
15085
|
ui_locales?: string | undefined;
|
|
@@ -15104,16 +15106,16 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15104
15106
|
send: "code" | "link";
|
|
15105
15107
|
authParams: {
|
|
15106
15108
|
username?: string | undefined;
|
|
15107
|
-
audience?: string | undefined;
|
|
15108
|
-
scope?: string | undefined;
|
|
15109
15109
|
state?: string | undefined;
|
|
15110
|
+
audience?: string | undefined;
|
|
15110
15111
|
response_type?: import("@authhero/adapter-interfaces").AuthorizationResponseType | undefined;
|
|
15111
15112
|
response_mode?: import("@authhero/adapter-interfaces").AuthorizationResponseMode | undefined;
|
|
15112
|
-
|
|
15113
|
-
act_as?: string | undefined;
|
|
15114
|
-
redirect_uri?: string | undefined;
|
|
15113
|
+
scope?: string | undefined;
|
|
15115
15114
|
organization?: string | undefined;
|
|
15116
15115
|
nonce?: string | undefined;
|
|
15116
|
+
redirect_uri?: string | undefined;
|
|
15117
|
+
act_as?: string | undefined;
|
|
15118
|
+
prompt?: string | undefined;
|
|
15117
15119
|
code_challenge_method?: import("@authhero/adapter-interfaces").CodeChallengeMethod | undefined;
|
|
15118
15120
|
code_challenge?: string | undefined;
|
|
15119
15121
|
ui_locales?: string | undefined;
|
|
@@ -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
|
};
|
|
@@ -15345,7 +15347,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15345
15347
|
client_id: string;
|
|
15346
15348
|
username: string;
|
|
15347
15349
|
otp: string;
|
|
15348
|
-
realm: "
|
|
15350
|
+
realm: "sms" | "email";
|
|
15349
15351
|
} | {
|
|
15350
15352
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15351
15353
|
subject_token: string;
|
|
@@ -15392,7 +15394,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15392
15394
|
client_id: string;
|
|
15393
15395
|
username: string;
|
|
15394
15396
|
otp: string;
|
|
15395
|
-
realm: "
|
|
15397
|
+
realm: "sms" | "email";
|
|
15396
15398
|
} | {
|
|
15397
15399
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15398
15400
|
subject_token: string;
|
|
@@ -15444,7 +15446,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15444
15446
|
client_id: string;
|
|
15445
15447
|
username: string;
|
|
15446
15448
|
otp: string;
|
|
15447
|
-
realm: "
|
|
15449
|
+
realm: "sms" | "email";
|
|
15448
15450
|
} | {
|
|
15449
15451
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15450
15452
|
subject_token: string;
|
|
@@ -15491,7 +15493,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15491
15493
|
client_id: string;
|
|
15492
15494
|
username: string;
|
|
15493
15495
|
otp: string;
|
|
15494
|
-
realm: "
|
|
15496
|
+
realm: "sms" | "email";
|
|
15495
15497
|
} | {
|
|
15496
15498
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15497
15499
|
subject_token: string;
|
|
@@ -15551,7 +15553,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15551
15553
|
client_id: string;
|
|
15552
15554
|
username: string;
|
|
15553
15555
|
otp: string;
|
|
15554
|
-
realm: "
|
|
15556
|
+
realm: "sms" | "email";
|
|
15555
15557
|
} | {
|
|
15556
15558
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15557
15559
|
subject_token: string;
|
|
@@ -15598,7 +15600,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15598
15600
|
client_id: string;
|
|
15599
15601
|
username: string;
|
|
15600
15602
|
otp: string;
|
|
15601
|
-
realm: "
|
|
15603
|
+
realm: "sms" | "email";
|
|
15602
15604
|
} | {
|
|
15603
15605
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15604
15606
|
subject_token: string;
|
|
@@ -15653,7 +15655,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15653
15655
|
client_id: string;
|
|
15654
15656
|
username: string;
|
|
15655
15657
|
otp: string;
|
|
15656
|
-
realm: "
|
|
15658
|
+
realm: "sms" | "email";
|
|
15657
15659
|
} | {
|
|
15658
15660
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15659
15661
|
subject_token: string;
|
|
@@ -15700,7 +15702,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15700
15702
|
client_id: string;
|
|
15701
15703
|
username: string;
|
|
15702
15704
|
otp: string;
|
|
15703
|
-
realm: "
|
|
15705
|
+
realm: "sms" | "email";
|
|
15704
15706
|
} | {
|
|
15705
15707
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15706
15708
|
subject_token: string;
|
|
@@ -15755,7 +15757,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15755
15757
|
client_id: string;
|
|
15756
15758
|
username: string;
|
|
15757
15759
|
otp: string;
|
|
15758
|
-
realm: "
|
|
15760
|
+
realm: "sms" | "email";
|
|
15759
15761
|
} | {
|
|
15760
15762
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15761
15763
|
subject_token: string;
|
|
@@ -15802,7 +15804,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
15802
15804
|
client_id: string;
|
|
15803
15805
|
username: string;
|
|
15804
15806
|
otp: string;
|
|
15805
|
-
realm: "
|
|
15807
|
+
realm: "sms" | "email";
|
|
15806
15808
|
} | {
|
|
15807
15809
|
grant_type: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
15808
15810
|
subject_token: string;
|
|
@@ -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: "signup" | "
|
|
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: "signup" | "
|
|
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: "signup" | "
|
|
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: "signup" | "login" | "reset-password" | "
|
|
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: "signup" | "login" | "reset-password" | "
|
|
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: {
|