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
|
@@ -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: "push" | "email" | "passkey" | "
|
|
99
|
+
type: "push" | "email" | "passkey" | "phone" | "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: "
|
|
239
|
+
name: "sms" | "otp" | "email" | "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: "
|
|
394
|
+
factor_name: "sms" | "otp" | "email" | "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: "
|
|
402
|
+
name: "sms" | "otp" | "email" | "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: "
|
|
415
|
+
factor_name: "sms" | "otp" | "email" | "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: "
|
|
427
|
+
name: "sms" | "otp" | "email" | "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: {
|
|
@@ -1391,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1391
1391
|
};
|
|
1392
1392
|
} & {
|
|
1393
1393
|
json: {
|
|
1394
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1395
1394
|
show_as_button?: boolean | undefined;
|
|
1395
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1396
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1397
1397
|
};
|
|
1398
1398
|
};
|
|
@@ -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: "status" | "
|
|
6920
|
+
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";
|
|
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: "status" | "
|
|
6958
|
+
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";
|
|
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: "status" | "
|
|
6980
|
+
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";
|
|
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: "status" | "
|
|
7004
|
+
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";
|
|
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;
|
|
@@ -8814,7 +8814,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8814
8814
|
created_at: string;
|
|
8815
8815
|
updated_at: string;
|
|
8816
8816
|
name: string;
|
|
8817
|
-
provider: "auth0" | "
|
|
8817
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8818
8818
|
connection: string;
|
|
8819
8819
|
enabled: boolean;
|
|
8820
8820
|
credentials: {
|
|
@@ -8846,7 +8846,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8846
8846
|
created_at: string;
|
|
8847
8847
|
updated_at: string;
|
|
8848
8848
|
name: string;
|
|
8849
|
-
provider: "auth0" | "
|
|
8849
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8850
8850
|
connection: string;
|
|
8851
8851
|
enabled: boolean;
|
|
8852
8852
|
credentials: {
|
|
@@ -8872,7 +8872,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8872
8872
|
} & {
|
|
8873
8873
|
json: {
|
|
8874
8874
|
name: string;
|
|
8875
|
-
provider: "auth0" | "
|
|
8875
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8876
8876
|
connection: string;
|
|
8877
8877
|
credentials: {
|
|
8878
8878
|
domain: string;
|
|
@@ -8889,7 +8889,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8889
8889
|
created_at: string;
|
|
8890
8890
|
updated_at: string;
|
|
8891
8891
|
name: string;
|
|
8892
|
-
provider: "auth0" | "
|
|
8892
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8893
8893
|
connection: string;
|
|
8894
8894
|
enabled: boolean;
|
|
8895
8895
|
credentials: {
|
|
@@ -8920,7 +8920,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8920
8920
|
json: {
|
|
8921
8921
|
id?: string | undefined;
|
|
8922
8922
|
name?: string | undefined;
|
|
8923
|
-
provider?: "auth0" | "
|
|
8923
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8924
8924
|
connection?: string | undefined;
|
|
8925
8925
|
enabled?: boolean | undefined;
|
|
8926
8926
|
credentials?: {
|
|
@@ -8936,7 +8936,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8936
8936
|
created_at: string;
|
|
8937
8937
|
updated_at: string;
|
|
8938
8938
|
name: string;
|
|
8939
|
-
provider: "auth0" | "
|
|
8939
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8940
8940
|
connection: string;
|
|
8941
8941
|
enabled: boolean;
|
|
8942
8942
|
credentials: {
|
|
@@ -9154,7 +9154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9154
9154
|
};
|
|
9155
9155
|
};
|
|
9156
9156
|
output: {
|
|
9157
|
-
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" | "
|
|
9157
|
+
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";
|
|
9158
9158
|
date: string;
|
|
9159
9159
|
isMobile: boolean;
|
|
9160
9160
|
log_id: string;
|
|
@@ -9193,7 +9193,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9193
9193
|
limit: number;
|
|
9194
9194
|
length: number;
|
|
9195
9195
|
logs: {
|
|
9196
|
-
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" | "
|
|
9196
|
+
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";
|
|
9197
9197
|
date: string;
|
|
9198
9198
|
isMobile: boolean;
|
|
9199
9199
|
log_id: string;
|
|
@@ -9232,7 +9232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9232
9232
|
next?: string | undefined;
|
|
9233
9233
|
} | {
|
|
9234
9234
|
logs: {
|
|
9235
|
-
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" | "
|
|
9235
|
+
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";
|
|
9236
9236
|
date: string;
|
|
9237
9237
|
isMobile: boolean;
|
|
9238
9238
|
log_id: string;
|
|
@@ -9286,7 +9286,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9286
9286
|
};
|
|
9287
9287
|
};
|
|
9288
9288
|
output: {
|
|
9289
|
-
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" | "
|
|
9289
|
+
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";
|
|
9290
9290
|
date: string;
|
|
9291
9291
|
isMobile: boolean;
|
|
9292
9292
|
log_id: string;
|
|
@@ -9697,7 +9697,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9697
9697
|
addons?: {
|
|
9698
9698
|
[x: string]: any;
|
|
9699
9699
|
} | undefined;
|
|
9700
|
-
token_endpoint_auth_method?: "none" | "
|
|
9700
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9701
9701
|
client_metadata?: {
|
|
9702
9702
|
[x: string]: string;
|
|
9703
9703
|
} | undefined;
|
|
@@ -9799,7 +9799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9799
9799
|
addons?: {
|
|
9800
9800
|
[x: string]: any;
|
|
9801
9801
|
} | undefined;
|
|
9802
|
-
token_endpoint_auth_method?: "none" | "
|
|
9802
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9803
9803
|
client_metadata?: {
|
|
9804
9804
|
[x: string]: string;
|
|
9805
9805
|
} | undefined;
|
|
@@ -9901,7 +9901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9901
9901
|
addons?: {
|
|
9902
9902
|
[x: string]: any;
|
|
9903
9903
|
} | undefined;
|
|
9904
|
-
token_endpoint_auth_method?: "none" | "
|
|
9904
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9905
9905
|
client_metadata?: {
|
|
9906
9906
|
[x: string]: string;
|
|
9907
9907
|
} | undefined;
|
|
@@ -10018,7 +10018,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10018
10018
|
addons?: {
|
|
10019
10019
|
[x: string]: any;
|
|
10020
10020
|
} | undefined;
|
|
10021
|
-
token_endpoint_auth_method?: "none" | "
|
|
10021
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10022
10022
|
client_metadata?: {
|
|
10023
10023
|
[x: string]: string;
|
|
10024
10024
|
} | undefined;
|
|
@@ -10136,7 +10136,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10136
10136
|
custom_login_page_preview?: string | undefined;
|
|
10137
10137
|
form_template?: string | undefined;
|
|
10138
10138
|
addons?: Record<string, any> | undefined;
|
|
10139
|
-
token_endpoint_auth_method?: "none" | "
|
|
10139
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10140
10140
|
client_metadata?: Record<string, string> | undefined;
|
|
10141
10141
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10142
10142
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10222,7 +10222,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10222
10222
|
addons?: {
|
|
10223
10223
|
[x: string]: any;
|
|
10224
10224
|
} | undefined;
|
|
10225
|
-
token_endpoint_auth_method?: "none" | "
|
|
10225
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10226
10226
|
client_metadata?: {
|
|
10227
10227
|
[x: string]: string;
|
|
10228
10228
|
} | undefined;
|
|
@@ -10319,7 +10319,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10319
10319
|
custom_login_page_preview?: string | undefined;
|
|
10320
10320
|
form_template?: string | undefined;
|
|
10321
10321
|
addons?: Record<string, any> | undefined;
|
|
10322
|
-
token_endpoint_auth_method?: "none" | "
|
|
10322
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10323
10323
|
client_metadata?: Record<string, string> | undefined;
|
|
10324
10324
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10325
10325
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10405,7 +10405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10405
10405
|
addons?: {
|
|
10406
10406
|
[x: string]: any;
|
|
10407
10407
|
} | undefined;
|
|
10408
|
-
token_endpoint_auth_method?: "none" | "
|
|
10408
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10409
10409
|
client_metadata?: {
|
|
10410
10410
|
[x: string]: string;
|
|
10411
10411
|
} | undefined;
|
|
@@ -10527,7 +10527,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10527
10527
|
active?: boolean | undefined;
|
|
10528
10528
|
} | undefined;
|
|
10529
10529
|
signup?: {
|
|
10530
|
-
status?: "
|
|
10530
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10531
10531
|
verification?: {
|
|
10532
10532
|
active?: boolean | undefined;
|
|
10533
10533
|
} | undefined;
|
|
@@ -10544,7 +10544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10544
10544
|
active?: boolean | undefined;
|
|
10545
10545
|
} | undefined;
|
|
10546
10546
|
signup?: {
|
|
10547
|
-
status?: "
|
|
10547
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10548
10548
|
} | undefined;
|
|
10549
10549
|
validation?: {
|
|
10550
10550
|
max_length?: number | undefined;
|
|
@@ -10561,7 +10561,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10561
10561
|
active?: boolean | undefined;
|
|
10562
10562
|
} | undefined;
|
|
10563
10563
|
signup?: {
|
|
10564
|
-
status?: "
|
|
10564
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10565
10565
|
} | undefined;
|
|
10566
10566
|
} | undefined;
|
|
10567
10567
|
} | undefined;
|
|
@@ -10681,7 +10681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10681
10681
|
active?: boolean | undefined;
|
|
10682
10682
|
} | undefined;
|
|
10683
10683
|
signup?: {
|
|
10684
|
-
status?: "
|
|
10684
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10685
10685
|
verification?: {
|
|
10686
10686
|
active?: boolean | undefined;
|
|
10687
10687
|
} | undefined;
|
|
@@ -10698,7 +10698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10698
10698
|
active?: boolean | undefined;
|
|
10699
10699
|
} | undefined;
|
|
10700
10700
|
signup?: {
|
|
10701
|
-
status?: "
|
|
10701
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10702
10702
|
} | undefined;
|
|
10703
10703
|
validation?: {
|
|
10704
10704
|
max_length?: number | undefined;
|
|
@@ -10715,7 +10715,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10715
10715
|
active?: boolean | undefined;
|
|
10716
10716
|
} | undefined;
|
|
10717
10717
|
signup?: {
|
|
10718
|
-
status?: "
|
|
10718
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10719
10719
|
} | undefined;
|
|
10720
10720
|
} | undefined;
|
|
10721
10721
|
} | undefined;
|
|
@@ -11741,7 +11741,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11741
11741
|
};
|
|
11742
11742
|
};
|
|
11743
11743
|
output: {
|
|
11744
|
-
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" | "
|
|
11744
|
+
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";
|
|
11745
11745
|
date: string;
|
|
11746
11746
|
isMobile: boolean;
|
|
11747
11747
|
log_id: string;
|
|
@@ -11780,7 +11780,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11780
11780
|
limit: number;
|
|
11781
11781
|
length: number;
|
|
11782
11782
|
logs: {
|
|
11783
|
-
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" | "
|
|
11783
|
+
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";
|
|
11784
11784
|
date: string;
|
|
11785
11785
|
isMobile: boolean;
|
|
11786
11786
|
log_id: string;
|
|
@@ -12099,7 +12099,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12099
12099
|
};
|
|
12100
12100
|
} & {
|
|
12101
12101
|
json: {
|
|
12102
|
-
template: "
|
|
12102
|
+
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
12103
|
body: string;
|
|
12104
12104
|
from: string;
|
|
12105
12105
|
subject: string;
|
|
@@ -12120,7 +12120,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12120
12120
|
};
|
|
12121
12121
|
} & {
|
|
12122
12122
|
json: {
|
|
12123
|
-
template: "
|
|
12123
|
+
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
12124
|
body: string;
|
|
12125
12125
|
from: string;
|
|
12126
12126
|
subject: string;
|
|
@@ -12132,7 +12132,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12132
12132
|
};
|
|
12133
12133
|
};
|
|
12134
12134
|
output: {
|
|
12135
|
-
template: "
|
|
12135
|
+
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
12136
|
body: string;
|
|
12137
12137
|
from: string;
|
|
12138
12138
|
subject: string;
|
|
@@ -12155,7 +12155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12155
12155
|
};
|
|
12156
12156
|
};
|
|
12157
12157
|
output: {
|
|
12158
|
-
name: "
|
|
12158
|
+
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
12159
|
body: string;
|
|
12160
12160
|
subject: string;
|
|
12161
12161
|
}[];
|
|
@@ -12168,7 +12168,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12168
12168
|
$get: {
|
|
12169
12169
|
input: {
|
|
12170
12170
|
param: {
|
|
12171
|
-
templateName: "
|
|
12171
|
+
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
12172
|
};
|
|
12173
12173
|
} & {
|
|
12174
12174
|
header: {
|
|
@@ -12181,7 +12181,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12181
12181
|
} | {
|
|
12182
12182
|
input: {
|
|
12183
12183
|
param: {
|
|
12184
|
-
templateName: "
|
|
12184
|
+
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
12185
|
};
|
|
12186
12186
|
} & {
|
|
12187
12187
|
header: {
|
|
@@ -12189,7 +12189,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12189
12189
|
};
|
|
12190
12190
|
};
|
|
12191
12191
|
output: {
|
|
12192
|
-
template: "
|
|
12192
|
+
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
12193
|
body: string;
|
|
12194
12194
|
from: string;
|
|
12195
12195
|
subject: string;
|
|
@@ -12208,7 +12208,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12208
12208
|
$put: {
|
|
12209
12209
|
input: {
|
|
12210
12210
|
param: {
|
|
12211
|
-
templateName: "
|
|
12211
|
+
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
12212
|
};
|
|
12213
12213
|
} & {
|
|
12214
12214
|
header: {
|
|
@@ -12216,7 +12216,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12216
12216
|
};
|
|
12217
12217
|
} & {
|
|
12218
12218
|
json: {
|
|
12219
|
-
template: "
|
|
12219
|
+
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
12220
|
body: string;
|
|
12221
12221
|
subject: string;
|
|
12222
12222
|
syntax?: "liquid" | undefined;
|
|
@@ -12228,7 +12228,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12228
12228
|
};
|
|
12229
12229
|
};
|
|
12230
12230
|
output: {
|
|
12231
|
-
template: "
|
|
12231
|
+
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
12232
|
body: string;
|
|
12233
12233
|
from: string;
|
|
12234
12234
|
subject: string;
|
|
@@ -12247,7 +12247,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12247
12247
|
$patch: {
|
|
12248
12248
|
input: {
|
|
12249
12249
|
param: {
|
|
12250
|
-
templateName: "
|
|
12250
|
+
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
12251
|
};
|
|
12252
12252
|
} & {
|
|
12253
12253
|
header: {
|
|
@@ -12255,7 +12255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12255
12255
|
};
|
|
12256
12256
|
} & {
|
|
12257
12257
|
json: {
|
|
12258
|
-
template?: "
|
|
12258
|
+
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
12259
|
body?: string | undefined;
|
|
12260
12260
|
from?: string | undefined;
|
|
12261
12261
|
subject?: string | undefined;
|
|
@@ -12272,7 +12272,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12272
12272
|
} | {
|
|
12273
12273
|
input: {
|
|
12274
12274
|
param: {
|
|
12275
|
-
templateName: "
|
|
12275
|
+
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
12276
|
};
|
|
12277
12277
|
} & {
|
|
12278
12278
|
header: {
|
|
@@ -12280,7 +12280,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12280
12280
|
};
|
|
12281
12281
|
} & {
|
|
12282
12282
|
json: {
|
|
12283
|
-
template?: "
|
|
12283
|
+
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
12284
|
body?: string | undefined;
|
|
12285
12285
|
from?: string | undefined;
|
|
12286
12286
|
subject?: string | undefined;
|
|
@@ -12292,7 +12292,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12292
12292
|
};
|
|
12293
12293
|
};
|
|
12294
12294
|
output: {
|
|
12295
|
-
template: "
|
|
12295
|
+
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
12296
|
body: string;
|
|
12297
12297
|
from: string;
|
|
12298
12298
|
subject: string;
|
|
@@ -12311,7 +12311,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12311
12311
|
$delete: {
|
|
12312
12312
|
input: {
|
|
12313
12313
|
param: {
|
|
12314
|
-
templateName: "
|
|
12314
|
+
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
12315
|
};
|
|
12316
12316
|
} & {
|
|
12317
12317
|
header: {
|
|
@@ -12324,7 +12324,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12324
12324
|
} | {
|
|
12325
12325
|
input: {
|
|
12326
12326
|
param: {
|
|
12327
|
-
templateName: "
|
|
12327
|
+
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
12328
|
};
|
|
12329
12329
|
} & {
|
|
12330
12330
|
header: {
|
|
@@ -12341,7 +12341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12341
12341
|
$post: {
|
|
12342
12342
|
input: {
|
|
12343
12343
|
param: {
|
|
12344
|
-
templateName: "
|
|
12344
|
+
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
12345
|
};
|
|
12346
12346
|
} & {
|
|
12347
12347
|
header: {
|
|
@@ -12624,7 +12624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12624
12624
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12625
12625
|
custom_domain_id: string;
|
|
12626
12626
|
primary: boolean;
|
|
12627
|
-
status: "
|
|
12627
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12628
12628
|
verification_method?: "txt" | undefined;
|
|
12629
12629
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12630
12630
|
domain_metadata?: {
|
|
@@ -12665,7 +12665,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12665
12665
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12666
12666
|
custom_domain_id: string;
|
|
12667
12667
|
primary: boolean;
|
|
12668
|
-
status: "
|
|
12668
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12669
12669
|
verification_method?: "txt" | undefined;
|
|
12670
12670
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12671
12671
|
domain_metadata?: {
|
|
@@ -12729,7 +12729,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12729
12729
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12730
12730
|
custom_domain_id: string;
|
|
12731
12731
|
primary: boolean;
|
|
12732
|
-
status: "
|
|
12732
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12733
12733
|
verification_method?: "txt" | undefined;
|
|
12734
12734
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12735
12735
|
domain_metadata?: {
|
|
@@ -12776,7 +12776,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12776
12776
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12777
12777
|
custom_domain_id: string;
|
|
12778
12778
|
primary: boolean;
|
|
12779
|
-
status: "
|
|
12779
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12780
12780
|
verification_method?: "txt" | undefined;
|
|
12781
12781
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12782
12782
|
domain_metadata?: {
|
|
@@ -12822,7 +12822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12822
12822
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12823
12823
|
custom_domain_id: string;
|
|
12824
12824
|
primary: boolean;
|
|
12825
|
-
status: "
|
|
12825
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12826
12826
|
verification_method?: "txt" | undefined;
|
|
12827
12827
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12828
12828
|
domain_metadata?: {
|
|
@@ -12863,7 +12863,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12863
12863
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12864
12864
|
custom_domain_id: string;
|
|
12865
12865
|
primary: boolean;
|
|
12866
|
-
status: "
|
|
12866
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12867
12867
|
verification_method?: "txt" | undefined;
|
|
12868
12868
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12869
12869
|
domain_metadata?: {
|
|
@@ -13293,7 +13293,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13293
13293
|
} & {
|
|
13294
13294
|
json: {
|
|
13295
13295
|
body?: string | undefined;
|
|
13296
|
-
screen?: "
|
|
13296
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
13297
13297
|
branding?: {
|
|
13298
13298
|
colors?: {
|
|
13299
13299
|
primary: string;
|
|
@@ -13537,7 +13537,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13537
13537
|
output: {
|
|
13538
13538
|
id: string;
|
|
13539
13539
|
trigger_id: string;
|
|
13540
|
-
status: "
|
|
13540
|
+
status: "pending" | "unspecified" | "final" | "partial" | "canceled" | "suspended";
|
|
13541
13541
|
results: {
|
|
13542
13542
|
action_name: string;
|
|
13543
13543
|
error: {
|
|
@@ -13584,7 +13584,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13584
13584
|
logs: {
|
|
13585
13585
|
action_name: string;
|
|
13586
13586
|
lines: {
|
|
13587
|
-
level: "
|
|
13587
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13588
13588
|
message: string;
|
|
13589
13589
|
}[];
|
|
13590
13590
|
}[];
|
|
@@ -14253,7 +14253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14253
14253
|
args: import("hono/utils/types").JSONValue[];
|
|
14254
14254
|
}[];
|
|
14255
14255
|
logs: {
|
|
14256
|
-
level: "
|
|
14256
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
14257
14257
|
message: string;
|
|
14258
14258
|
}[];
|
|
14259
14259
|
error?: string | undefined;
|