authhero 8.26.1 → 9.0.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/LICENSE +661 -21
- package/dist/assets/u/js/client.js +2 -2
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +265 -251
- package/dist/authhero.d.ts +257 -110
- package/dist/authhero.mjs +24690 -17997
- package/dist/client.js +2 -2
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +2 -2
- package/dist/types/client/client-bundle.d.ts +1 -1
- 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/link-candidates.d.ts +28 -0
- package/dist/types/helpers/logging.d.ts +8 -0
- package/dist/types/helpers/run-retention.d.ts +86 -0
- package/dist/types/helpers/scopes-permissions.d.ts +18 -0
- package/dist/types/helpers/signing-keys.d.ts +36 -0
- package/dist/types/helpers/users.d.ts +43 -0
- package/dist/types/hooks/codehooks.d.ts +9 -1
- package/dist/types/hooks/helpers/post-login-account-linking.d.ts +52 -0
- package/dist/types/hooks/pre-defined/account-linking.d.ts +20 -0
- package/dist/types/index.d.ts +107 -104
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/auth-api/passwordless.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/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 +2 -1
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +86 -85
- 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 +7 -7
- 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/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +5 -5
- 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/Hooks.d.ts +8 -1
- package/dist/types/types/IdToken.d.ts +1 -1
- package/package.json +7 -6
|
@@ -8,8 +8,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8
8
|
$get: {
|
|
9
9
|
input: {
|
|
10
10
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
11
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
12
|
+
gzip?: "true" | "false" | undefined;
|
|
13
13
|
};
|
|
14
14
|
} & {
|
|
15
15
|
header: {
|
|
@@ -22,8 +22,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
22
|
} | {
|
|
23
23
|
input: {
|
|
24
24
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
25
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
26
|
+
gzip?: "true" | "false" | undefined;
|
|
27
27
|
};
|
|
28
28
|
} & {
|
|
29
29
|
header: {
|
|
@@ -42,7 +42,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
42
|
$post: {
|
|
43
43
|
input: {
|
|
44
44
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
45
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "
|
|
99
|
+
type: "email" | "phone" | "push" | "passkey" | "totp" | "webauthn-roaming" | "webauthn-platform";
|
|
100
100
|
phone_number?: string | undefined;
|
|
101
101
|
totp_secret?: string | undefined;
|
|
102
102
|
credential_id?: string | undefined;
|
|
@@ -236,7 +236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
236
|
};
|
|
237
237
|
};
|
|
238
238
|
output: {
|
|
239
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
239
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
240
240
|
enabled: boolean;
|
|
241
241
|
trial_expired?: boolean | undefined;
|
|
242
242
|
}[];
|
|
@@ -391,7 +391,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
391
|
$get: {
|
|
392
392
|
input: {
|
|
393
393
|
param: {
|
|
394
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
394
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
395
395
|
};
|
|
396
396
|
} & {
|
|
397
397
|
header: {
|
|
@@ -399,7 +399,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
399
|
};
|
|
400
400
|
};
|
|
401
401
|
output: {
|
|
402
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
402
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
403
403
|
enabled: boolean;
|
|
404
404
|
trial_expired?: boolean | undefined;
|
|
405
405
|
};
|
|
@@ -412,7 +412,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
412
|
$put: {
|
|
413
413
|
input: {
|
|
414
414
|
param: {
|
|
415
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
415
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
416
416
|
};
|
|
417
417
|
} & {
|
|
418
418
|
header: {
|
|
@@ -424,7 +424,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
424
|
};
|
|
425
425
|
};
|
|
426
426
|
output: {
|
|
427
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
427
|
+
name: "email" | "sms" | "otp" | "duo" | "webauthn-roaming" | "webauthn-platform" | "push-notification" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1196,19 +1196,19 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1196
1196
|
} & {
|
|
1197
1197
|
json: {
|
|
1198
1198
|
client_id: string;
|
|
1199
|
-
inviter: {
|
|
1200
|
-
name?: string | undefined;
|
|
1201
|
-
};
|
|
1202
1199
|
invitee: {
|
|
1203
1200
|
email?: string | undefined;
|
|
1204
1201
|
};
|
|
1202
|
+
inviter: {
|
|
1203
|
+
name?: string | undefined;
|
|
1204
|
+
};
|
|
1205
1205
|
id?: string | undefined;
|
|
1206
1206
|
app_metadata?: Record<string, any> | undefined;
|
|
1207
1207
|
user_metadata?: Record<string, any> | undefined;
|
|
1208
1208
|
connection_id?: string | undefined;
|
|
1209
1209
|
roles?: string[] | undefined;
|
|
1210
|
-
ttl_sec?: number | undefined;
|
|
1211
1210
|
send_invitation_email?: boolean | undefined;
|
|
1211
|
+
ttl_sec?: number | undefined;
|
|
1212
1212
|
};
|
|
1213
1213
|
};
|
|
1214
1214
|
output: {
|
|
@@ -1963,9 +1963,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1963
1963
|
};
|
|
1964
1964
|
} & {
|
|
1965
1965
|
query: {
|
|
1966
|
+
from?: string | undefined;
|
|
1966
1967
|
page?: string | undefined;
|
|
1967
1968
|
include_totals?: string | undefined;
|
|
1968
|
-
from?: string | undefined;
|
|
1969
1969
|
per_page?: string | undefined;
|
|
1970
1970
|
take?: string | undefined;
|
|
1971
1971
|
};
|
|
@@ -6917,7 +6917,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6917
6917
|
};
|
|
6918
6918
|
};
|
|
6919
6919
|
output: {
|
|
6920
|
-
prompt: "
|
|
6920
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6921
6921
|
language: string;
|
|
6922
6922
|
}[];
|
|
6923
6923
|
outputFormat: "json";
|
|
@@ -6955,7 +6955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6955
6955
|
$get: {
|
|
6956
6956
|
input: {
|
|
6957
6957
|
param: {
|
|
6958
|
-
prompt: "
|
|
6958
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6959
6959
|
language: string;
|
|
6960
6960
|
};
|
|
6961
6961
|
} & {
|
|
@@ -6977,7 +6977,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6977
6977
|
$put: {
|
|
6978
6978
|
input: {
|
|
6979
6979
|
param: {
|
|
6980
|
-
prompt: "
|
|
6980
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
6981
6981
|
language: string;
|
|
6982
6982
|
};
|
|
6983
6983
|
} & {
|
|
@@ -7001,7 +7001,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7001
7001
|
$delete: {
|
|
7002
7002
|
input: {
|
|
7003
7003
|
param: {
|
|
7004
|
-
prompt: "
|
|
7004
|
+
prompt: "mfa" | "organizations" | "signup" | "status" | "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";
|
|
7005
7005
|
language: string;
|
|
7006
7006
|
};
|
|
7007
7007
|
} & {
|
|
@@ -7093,7 +7093,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7093
7093
|
active?: boolean | undefined;
|
|
7094
7094
|
} | undefined;
|
|
7095
7095
|
signup?: {
|
|
7096
|
-
status?: "
|
|
7096
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7097
7097
|
verification?: {
|
|
7098
7098
|
active?: boolean | undefined;
|
|
7099
7099
|
} | undefined;
|
|
@@ -7110,7 +7110,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7110
7110
|
active?: boolean | undefined;
|
|
7111
7111
|
} | undefined;
|
|
7112
7112
|
signup?: {
|
|
7113
|
-
status?: "
|
|
7113
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7114
7114
|
} | undefined;
|
|
7115
7115
|
validation?: {
|
|
7116
7116
|
max_length?: number | undefined;
|
|
@@ -7127,7 +7127,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7127
7127
|
active?: boolean | undefined;
|
|
7128
7128
|
} | undefined;
|
|
7129
7129
|
signup?: {
|
|
7130
|
-
status?: "
|
|
7130
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7131
7131
|
} | undefined;
|
|
7132
7132
|
} | undefined;
|
|
7133
7133
|
} | undefined;
|
|
@@ -7227,7 +7227,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7227
7227
|
active?: boolean | undefined;
|
|
7228
7228
|
} | undefined;
|
|
7229
7229
|
signup?: {
|
|
7230
|
-
status?: "
|
|
7230
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7231
7231
|
verification?: {
|
|
7232
7232
|
active?: boolean | undefined;
|
|
7233
7233
|
} | undefined;
|
|
@@ -7244,7 +7244,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7244
7244
|
active?: boolean | undefined;
|
|
7245
7245
|
} | undefined;
|
|
7246
7246
|
signup?: {
|
|
7247
|
-
status?: "
|
|
7247
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7248
7248
|
} | undefined;
|
|
7249
7249
|
validation?: {
|
|
7250
7250
|
max_length?: number | undefined;
|
|
@@ -7261,7 +7261,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7261
7261
|
active?: boolean | undefined;
|
|
7262
7262
|
} | undefined;
|
|
7263
7263
|
signup?: {
|
|
7264
|
-
status?: "
|
|
7264
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7265
7265
|
} | undefined;
|
|
7266
7266
|
} | undefined;
|
|
7267
7267
|
} | undefined;
|
|
@@ -7377,7 +7377,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7377
7377
|
active?: boolean | undefined;
|
|
7378
7378
|
} | undefined;
|
|
7379
7379
|
signup?: {
|
|
7380
|
-
status?: "
|
|
7380
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7381
7381
|
verification?: {
|
|
7382
7382
|
active?: boolean | undefined;
|
|
7383
7383
|
} | undefined;
|
|
@@ -7394,7 +7394,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7394
7394
|
active?: boolean | undefined;
|
|
7395
7395
|
} | undefined;
|
|
7396
7396
|
signup?: {
|
|
7397
|
-
status?: "
|
|
7397
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7398
7398
|
} | undefined;
|
|
7399
7399
|
validation?: {
|
|
7400
7400
|
max_length?: number | undefined;
|
|
@@ -7411,7 +7411,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7411
7411
|
active?: boolean | undefined;
|
|
7412
7412
|
} | undefined;
|
|
7413
7413
|
signup?: {
|
|
7414
|
-
status?: "
|
|
7414
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7415
7415
|
} | undefined;
|
|
7416
7416
|
} | undefined;
|
|
7417
7417
|
} | undefined;
|
|
@@ -7556,7 +7556,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7556
7556
|
active?: boolean | undefined;
|
|
7557
7557
|
} | undefined;
|
|
7558
7558
|
signup?: {
|
|
7559
|
-
status?: "
|
|
7559
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7560
7560
|
verification?: {
|
|
7561
7561
|
active?: boolean | undefined;
|
|
7562
7562
|
} | undefined;
|
|
@@ -7573,7 +7573,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7573
7573
|
active?: boolean | undefined;
|
|
7574
7574
|
} | undefined;
|
|
7575
7575
|
signup?: {
|
|
7576
|
-
status?: "
|
|
7576
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7577
7577
|
} | undefined;
|
|
7578
7578
|
validation?: {
|
|
7579
7579
|
max_length?: number | undefined;
|
|
@@ -7590,7 +7590,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7590
7590
|
active?: boolean | undefined;
|
|
7591
7591
|
} | undefined;
|
|
7592
7592
|
signup?: {
|
|
7593
|
-
status?: "
|
|
7593
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7594
7594
|
} | undefined;
|
|
7595
7595
|
} | undefined;
|
|
7596
7596
|
} | undefined;
|
|
@@ -7714,7 +7714,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7714
7714
|
active?: boolean | undefined;
|
|
7715
7715
|
} | undefined;
|
|
7716
7716
|
signup?: {
|
|
7717
|
-
status?: "
|
|
7717
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7718
7718
|
verification?: {
|
|
7719
7719
|
active?: boolean | undefined;
|
|
7720
7720
|
} | undefined;
|
|
@@ -7731,7 +7731,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7731
7731
|
active?: boolean | undefined;
|
|
7732
7732
|
} | undefined;
|
|
7733
7733
|
signup?: {
|
|
7734
|
-
status?: "
|
|
7734
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7735
7735
|
} | undefined;
|
|
7736
7736
|
validation?: {
|
|
7737
7737
|
max_length?: number | undefined;
|
|
@@ -7748,7 +7748,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7748
7748
|
active?: boolean | undefined;
|
|
7749
7749
|
} | undefined;
|
|
7750
7750
|
signup?: {
|
|
7751
|
-
status?: "
|
|
7751
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7752
7752
|
} | undefined;
|
|
7753
7753
|
} | undefined;
|
|
7754
7754
|
} | undefined;
|
|
@@ -7900,7 +7900,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7900
7900
|
tenant_id: string;
|
|
7901
7901
|
created_at: string;
|
|
7902
7902
|
updated_at: string;
|
|
7903
|
-
deploymentStatus: "
|
|
7903
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7904
7904
|
secrets?: {
|
|
7905
7905
|
[x: string]: string;
|
|
7906
7906
|
} | undefined;
|
|
@@ -7990,7 +7990,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7990
7990
|
tenant_id: string;
|
|
7991
7991
|
created_at: string;
|
|
7992
7992
|
updated_at: string;
|
|
7993
|
-
deploymentStatus: "
|
|
7993
|
+
deploymentStatus: "failed" | "deployed" | "not_required";
|
|
7994
7994
|
secrets?: {
|
|
7995
7995
|
[x: string]: string;
|
|
7996
7996
|
} | undefined;
|
|
@@ -8504,7 +8504,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8504
8504
|
log_type: string;
|
|
8505
8505
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8506
8506
|
actor: {
|
|
8507
|
-
type: "
|
|
8507
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
8508
8508
|
id?: string | undefined;
|
|
8509
8509
|
email?: string | undefined;
|
|
8510
8510
|
org_id?: string | undefined;
|
|
@@ -8538,6 +8538,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8538
8538
|
body?: import("hono/utils/types").JSONValue | undefined;
|
|
8539
8539
|
user_agent?: string | undefined;
|
|
8540
8540
|
correlation_id?: string | undefined;
|
|
8541
|
+
redirect_uri?: string | undefined;
|
|
8541
8542
|
};
|
|
8542
8543
|
hostname: string;
|
|
8543
8544
|
timestamp: string;
|
|
@@ -8814,7 +8815,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8814
8815
|
created_at: string;
|
|
8815
8816
|
updated_at: string;
|
|
8816
8817
|
name: string;
|
|
8817
|
-
provider: "auth0" | "
|
|
8818
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8818
8819
|
connection: string;
|
|
8819
8820
|
enabled: boolean;
|
|
8820
8821
|
credentials: {
|
|
@@ -8846,7 +8847,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8846
8847
|
created_at: string;
|
|
8847
8848
|
updated_at: string;
|
|
8848
8849
|
name: string;
|
|
8849
|
-
provider: "auth0" | "
|
|
8850
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8850
8851
|
connection: string;
|
|
8851
8852
|
enabled: boolean;
|
|
8852
8853
|
credentials: {
|
|
@@ -8872,7 +8873,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8872
8873
|
} & {
|
|
8873
8874
|
json: {
|
|
8874
8875
|
name: string;
|
|
8875
|
-
provider: "auth0" | "
|
|
8876
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8876
8877
|
connection: string;
|
|
8877
8878
|
credentials: {
|
|
8878
8879
|
domain: string;
|
|
@@ -8889,7 +8890,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8889
8890
|
created_at: string;
|
|
8890
8891
|
updated_at: string;
|
|
8891
8892
|
name: string;
|
|
8892
|
-
provider: "auth0" | "
|
|
8893
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8893
8894
|
connection: string;
|
|
8894
8895
|
enabled: boolean;
|
|
8895
8896
|
credentials: {
|
|
@@ -8920,7 +8921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8920
8921
|
json: {
|
|
8921
8922
|
id?: string | undefined;
|
|
8922
8923
|
name?: string | undefined;
|
|
8923
|
-
provider?: "auth0" | "
|
|
8924
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8924
8925
|
connection?: string | undefined;
|
|
8925
8926
|
enabled?: boolean | undefined;
|
|
8926
8927
|
credentials?: {
|
|
@@ -8936,7 +8937,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8936
8937
|
created_at: string;
|
|
8937
8938
|
updated_at: string;
|
|
8938
8939
|
name: string;
|
|
8939
|
-
provider: "auth0" | "
|
|
8940
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8940
8941
|
connection: string;
|
|
8941
8942
|
enabled: boolean;
|
|
8942
8943
|
credentials: {
|
|
@@ -9154,7 +9155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9154
9155
|
};
|
|
9155
9156
|
};
|
|
9156
9157
|
output: {
|
|
9157
|
-
type: "
|
|
9158
|
+
type: "fertft" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9158
9159
|
date: string;
|
|
9159
9160
|
isMobile: boolean;
|
|
9160
9161
|
log_id: string;
|
|
@@ -9193,7 +9194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9193
9194
|
limit: number;
|
|
9194
9195
|
length: number;
|
|
9195
9196
|
logs: {
|
|
9196
|
-
type: "
|
|
9197
|
+
type: "fertft" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9197
9198
|
date: string;
|
|
9198
9199
|
isMobile: boolean;
|
|
9199
9200
|
log_id: string;
|
|
@@ -9232,7 +9233,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9232
9233
|
next?: string | undefined;
|
|
9233
9234
|
} | {
|
|
9234
9235
|
logs: {
|
|
9235
|
-
type: "
|
|
9236
|
+
type: "fertft" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9236
9237
|
date: string;
|
|
9237
9238
|
isMobile: boolean;
|
|
9238
9239
|
log_id: string;
|
|
@@ -9286,7 +9287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9286
9287
|
};
|
|
9287
9288
|
};
|
|
9288
9289
|
output: {
|
|
9289
|
-
type: "
|
|
9290
|
+
type: "fertft" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9290
9291
|
date: string;
|
|
9291
9292
|
isMobile: boolean;
|
|
9292
9293
|
log_id: string;
|
|
@@ -10527,7 +10528,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10527
10528
|
active?: boolean | undefined;
|
|
10528
10529
|
} | undefined;
|
|
10529
10530
|
signup?: {
|
|
10530
|
-
status?: "
|
|
10531
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10531
10532
|
verification?: {
|
|
10532
10533
|
active?: boolean | undefined;
|
|
10533
10534
|
} | undefined;
|
|
@@ -10544,7 +10545,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10544
10545
|
active?: boolean | undefined;
|
|
10545
10546
|
} | undefined;
|
|
10546
10547
|
signup?: {
|
|
10547
|
-
status?: "
|
|
10548
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10548
10549
|
} | undefined;
|
|
10549
10550
|
validation?: {
|
|
10550
10551
|
max_length?: number | undefined;
|
|
@@ -10561,7 +10562,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10561
10562
|
active?: boolean | undefined;
|
|
10562
10563
|
} | undefined;
|
|
10563
10564
|
signup?: {
|
|
10564
|
-
status?: "
|
|
10565
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10565
10566
|
} | undefined;
|
|
10566
10567
|
} | undefined;
|
|
10567
10568
|
} | undefined;
|
|
@@ -10681,7 +10682,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10681
10682
|
active?: boolean | undefined;
|
|
10682
10683
|
} | undefined;
|
|
10683
10684
|
signup?: {
|
|
10684
|
-
status?: "
|
|
10685
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10685
10686
|
verification?: {
|
|
10686
10687
|
active?: boolean | undefined;
|
|
10687
10688
|
} | undefined;
|
|
@@ -10698,7 +10699,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10698
10699
|
active?: boolean | undefined;
|
|
10699
10700
|
} | undefined;
|
|
10700
10701
|
signup?: {
|
|
10701
|
-
status?: "
|
|
10702
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10702
10703
|
} | undefined;
|
|
10703
10704
|
validation?: {
|
|
10704
10705
|
max_length?: number | undefined;
|
|
@@ -10715,7 +10716,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10715
10716
|
active?: boolean | undefined;
|
|
10716
10717
|
} | undefined;
|
|
10717
10718
|
signup?: {
|
|
10718
|
-
status?: "
|
|
10719
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10719
10720
|
} | undefined;
|
|
10720
10721
|
} | undefined;
|
|
10721
10722
|
} | undefined;
|
|
@@ -11414,8 +11415,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11414
11415
|
locale?: string | undefined;
|
|
11415
11416
|
linked_to?: string | undefined;
|
|
11416
11417
|
profileData?: string | undefined;
|
|
11417
|
-
app_metadata?: any;
|
|
11418
|
-
user_metadata?: any;
|
|
11419
11418
|
middle_name?: string | undefined;
|
|
11420
11419
|
preferred_username?: string | undefined;
|
|
11421
11420
|
profile?: string | undefined;
|
|
@@ -11431,7 +11430,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11431
11430
|
postal_code?: string | undefined;
|
|
11432
11431
|
country?: string | undefined;
|
|
11433
11432
|
} | undefined;
|
|
11434
|
-
email_verified?: boolean | undefined;
|
|
11435
11433
|
last_ip?: string | undefined;
|
|
11436
11434
|
last_login?: string | undefined;
|
|
11437
11435
|
user_id?: string | undefined;
|
|
@@ -11441,6 +11439,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11441
11439
|
registration_completed_at?: string | undefined;
|
|
11442
11440
|
verify_email?: boolean | undefined;
|
|
11443
11441
|
password?: string | undefined;
|
|
11442
|
+
email_verified?: boolean | undefined;
|
|
11443
|
+
app_metadata?: any;
|
|
11444
|
+
user_metadata?: any;
|
|
11444
11445
|
};
|
|
11445
11446
|
};
|
|
11446
11447
|
output: {};
|
|
@@ -11741,7 +11742,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11741
11742
|
};
|
|
11742
11743
|
};
|
|
11743
11744
|
output: {
|
|
11744
|
-
type: "
|
|
11745
|
+
type: "fertft" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11745
11746
|
date: string;
|
|
11746
11747
|
isMobile: boolean;
|
|
11747
11748
|
log_id: string;
|
|
@@ -11780,7 +11781,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11780
11781
|
limit: number;
|
|
11781
11782
|
length: number;
|
|
11782
11783
|
logs: {
|
|
11783
|
-
type: "
|
|
11784
|
+
type: "fertft" | "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "festft" | "fh" | "fimp" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11784
11785
|
date: string;
|
|
11785
11786
|
isMobile: boolean;
|
|
11786
11787
|
log_id: string;
|
|
@@ -12099,7 +12100,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12099
12100
|
};
|
|
12100
12101
|
} & {
|
|
12101
12102
|
json: {
|
|
12102
|
-
template: "
|
|
12103
|
+
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";
|
|
12103
12104
|
body: string;
|
|
12104
12105
|
from: string;
|
|
12105
12106
|
subject: string;
|
|
@@ -12120,7 +12121,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12120
12121
|
};
|
|
12121
12122
|
} & {
|
|
12122
12123
|
json: {
|
|
12123
|
-
template: "
|
|
12124
|
+
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";
|
|
12124
12125
|
body: string;
|
|
12125
12126
|
from: string;
|
|
12126
12127
|
subject: string;
|
|
@@ -12132,7 +12133,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12132
12133
|
};
|
|
12133
12134
|
};
|
|
12134
12135
|
output: {
|
|
12135
|
-
template: "
|
|
12136
|
+
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";
|
|
12136
12137
|
body: string;
|
|
12137
12138
|
from: string;
|
|
12138
12139
|
subject: string;
|
|
@@ -12155,7 +12156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12155
12156
|
};
|
|
12156
12157
|
};
|
|
12157
12158
|
output: {
|
|
12158
|
-
name: "
|
|
12159
|
+
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";
|
|
12159
12160
|
body: string;
|
|
12160
12161
|
subject: string;
|
|
12161
12162
|
}[];
|
|
@@ -12168,7 +12169,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12168
12169
|
$get: {
|
|
12169
12170
|
input: {
|
|
12170
12171
|
param: {
|
|
12171
|
-
templateName: "
|
|
12172
|
+
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";
|
|
12172
12173
|
};
|
|
12173
12174
|
} & {
|
|
12174
12175
|
header: {
|
|
@@ -12181,7 +12182,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12181
12182
|
} | {
|
|
12182
12183
|
input: {
|
|
12183
12184
|
param: {
|
|
12184
|
-
templateName: "
|
|
12185
|
+
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";
|
|
12185
12186
|
};
|
|
12186
12187
|
} & {
|
|
12187
12188
|
header: {
|
|
@@ -12189,7 +12190,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12189
12190
|
};
|
|
12190
12191
|
};
|
|
12191
12192
|
output: {
|
|
12192
|
-
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";
|
|
12193
12194
|
body: string;
|
|
12194
12195
|
from: string;
|
|
12195
12196
|
subject: string;
|
|
@@ -12208,7 +12209,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12208
12209
|
$put: {
|
|
12209
12210
|
input: {
|
|
12210
12211
|
param: {
|
|
12211
|
-
templateName: "
|
|
12212
|
+
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";
|
|
12212
12213
|
};
|
|
12213
12214
|
} & {
|
|
12214
12215
|
header: {
|
|
@@ -12216,7 +12217,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12216
12217
|
};
|
|
12217
12218
|
} & {
|
|
12218
12219
|
json: {
|
|
12219
|
-
template: "
|
|
12220
|
+
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";
|
|
12220
12221
|
body: string;
|
|
12221
12222
|
subject: string;
|
|
12222
12223
|
syntax?: "liquid" | undefined;
|
|
@@ -12228,7 +12229,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12228
12229
|
};
|
|
12229
12230
|
};
|
|
12230
12231
|
output: {
|
|
12231
|
-
template: "
|
|
12232
|
+
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";
|
|
12232
12233
|
body: string;
|
|
12233
12234
|
from: string;
|
|
12234
12235
|
subject: string;
|
|
@@ -12247,7 +12248,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12247
12248
|
$patch: {
|
|
12248
12249
|
input: {
|
|
12249
12250
|
param: {
|
|
12250
|
-
templateName: "
|
|
12251
|
+
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";
|
|
12251
12252
|
};
|
|
12252
12253
|
} & {
|
|
12253
12254
|
header: {
|
|
@@ -12255,7 +12256,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12255
12256
|
};
|
|
12256
12257
|
} & {
|
|
12257
12258
|
json: {
|
|
12258
|
-
template?: "
|
|
12259
|
+
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;
|
|
12259
12260
|
body?: string | undefined;
|
|
12260
12261
|
from?: string | undefined;
|
|
12261
12262
|
subject?: string | undefined;
|
|
@@ -12272,7 +12273,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12272
12273
|
} | {
|
|
12273
12274
|
input: {
|
|
12274
12275
|
param: {
|
|
12275
|
-
templateName: "
|
|
12276
|
+
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";
|
|
12276
12277
|
};
|
|
12277
12278
|
} & {
|
|
12278
12279
|
header: {
|
|
@@ -12280,7 +12281,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12280
12281
|
};
|
|
12281
12282
|
} & {
|
|
12282
12283
|
json: {
|
|
12283
|
-
template?: "
|
|
12284
|
+
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;
|
|
12284
12285
|
body?: string | undefined;
|
|
12285
12286
|
from?: string | undefined;
|
|
12286
12287
|
subject?: string | undefined;
|
|
@@ -12292,7 +12293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12292
12293
|
};
|
|
12293
12294
|
};
|
|
12294
12295
|
output: {
|
|
12295
|
-
template: "
|
|
12296
|
+
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";
|
|
12296
12297
|
body: string;
|
|
12297
12298
|
from: string;
|
|
12298
12299
|
subject: string;
|
|
@@ -12311,7 +12312,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12311
12312
|
$delete: {
|
|
12312
12313
|
input: {
|
|
12313
12314
|
param: {
|
|
12314
|
-
templateName: "
|
|
12315
|
+
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";
|
|
12315
12316
|
};
|
|
12316
12317
|
} & {
|
|
12317
12318
|
header: {
|
|
@@ -12324,7 +12325,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12324
12325
|
} | {
|
|
12325
12326
|
input: {
|
|
12326
12327
|
param: {
|
|
12327
|
-
templateName: "
|
|
12328
|
+
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";
|
|
12328
12329
|
};
|
|
12329
12330
|
} & {
|
|
12330
12331
|
header: {
|
|
@@ -12341,7 +12342,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12341
12342
|
$post: {
|
|
12342
12343
|
input: {
|
|
12343
12344
|
param: {
|
|
12344
|
-
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";
|
|
12345
12346
|
};
|
|
12346
12347
|
} & {
|
|
12347
12348
|
header: {
|
|
@@ -12624,7 +12625,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12624
12625
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12625
12626
|
custom_domain_id: string;
|
|
12626
12627
|
primary: boolean;
|
|
12627
|
-
status: "
|
|
12628
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12628
12629
|
verification_method?: "txt" | undefined;
|
|
12629
12630
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12630
12631
|
domain_metadata?: {
|
|
@@ -12665,7 +12666,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12665
12666
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12666
12667
|
custom_domain_id: string;
|
|
12667
12668
|
primary: boolean;
|
|
12668
|
-
status: "
|
|
12669
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12669
12670
|
verification_method?: "txt" | undefined;
|
|
12670
12671
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12671
12672
|
domain_metadata?: {
|
|
@@ -12729,7 +12730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12729
12730
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12730
12731
|
custom_domain_id: string;
|
|
12731
12732
|
primary: boolean;
|
|
12732
|
-
status: "
|
|
12733
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12733
12734
|
verification_method?: "txt" | undefined;
|
|
12734
12735
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12735
12736
|
domain_metadata?: {
|
|
@@ -12776,7 +12777,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12776
12777
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12777
12778
|
custom_domain_id: string;
|
|
12778
12779
|
primary: boolean;
|
|
12779
|
-
status: "
|
|
12780
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12780
12781
|
verification_method?: "txt" | undefined;
|
|
12781
12782
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12782
12783
|
domain_metadata?: {
|
|
@@ -12822,7 +12823,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12822
12823
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12823
12824
|
custom_domain_id: string;
|
|
12824
12825
|
primary: boolean;
|
|
12825
|
-
status: "
|
|
12826
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12826
12827
|
verification_method?: "txt" | undefined;
|
|
12827
12828
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12828
12829
|
domain_metadata?: {
|
|
@@ -12863,7 +12864,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12863
12864
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12864
12865
|
custom_domain_id: string;
|
|
12865
12866
|
primary: boolean;
|
|
12866
|
-
status: "
|
|
12867
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12867
12868
|
verification_method?: "txt" | undefined;
|
|
12868
12869
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12869
12870
|
domain_metadata?: {
|
|
@@ -13293,7 +13294,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13293
13294
|
} & {
|
|
13294
13295
|
json: {
|
|
13295
13296
|
body?: string | undefined;
|
|
13296
|
-
screen?: "
|
|
13297
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13297
13298
|
branding?: {
|
|
13298
13299
|
colors?: {
|
|
13299
13300
|
primary: string;
|
|
@@ -13537,7 +13538,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13537
13538
|
output: {
|
|
13538
13539
|
id: string;
|
|
13539
13540
|
trigger_id: string;
|
|
13540
|
-
status: "
|
|
13541
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
13541
13542
|
results: {
|
|
13542
13543
|
action_name: string;
|
|
13543
13544
|
error: {
|