authhero 8.18.0 → 8.20.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 +106 -106
- package/dist/authhero.d.ts +197 -119
- package/dist/authhero.mjs +8376 -8234
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/helpers/audit-target-types.d.ts +6 -0
- package/dist/types/helpers/default-destinations.d.ts +14 -4
- package/dist/types/helpers/hook-events.d.ts +35 -15
- package/dist/types/helpers/outbox-destinations/code-hooks.d.ts +56 -0
- package/dist/types/helpers/password-connection.d.ts +16 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -1
- package/dist/types/hooks/codehooks.d.ts +78 -9
- package/dist/types/hooks/link-users.d.ts +9 -1
- package/dist/types/hooks/user-registration.d.ts +8 -5
- package/dist/types/index.d.ts +116 -115
- package/dist/types/routes/auth-api/index.d.ts +10 -10
- package/dist/types/routes/management-api/clients.d.ts +2 -2
- package/dist/types/routes/management-api/connections.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +82 -82
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/tenants.d.ts +1 -1
- 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/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
|
};
|
|
@@ -1357,8 +1357,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1357
1357
|
};
|
|
1358
1358
|
} & {
|
|
1359
1359
|
json: {
|
|
1360
|
-
assign_membership_on_login?: boolean | undefined;
|
|
1361
1360
|
show_as_button?: boolean | undefined;
|
|
1361
|
+
assign_membership_on_login?: boolean | undefined;
|
|
1362
1362
|
is_signup_enabled?: boolean | undefined;
|
|
1363
1363
|
};
|
|
1364
1364
|
};
|
|
@@ -6828,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6828
|
};
|
|
6829
6829
|
};
|
|
6830
6830
|
output: {
|
|
6831
|
-
prompt: "status" | "
|
|
6831
|
+
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";
|
|
6832
6832
|
language: string;
|
|
6833
6833
|
}[];
|
|
6834
6834
|
outputFormat: "json";
|
|
@@ -6866,7 +6866,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6866
|
$get: {
|
|
6867
6867
|
input: {
|
|
6868
6868
|
param: {
|
|
6869
|
-
prompt: "status" | "
|
|
6869
|
+
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";
|
|
6870
6870
|
language: string;
|
|
6871
6871
|
};
|
|
6872
6872
|
} & {
|
|
@@ -6888,7 +6888,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6888
|
$put: {
|
|
6889
6889
|
input: {
|
|
6890
6890
|
param: {
|
|
6891
|
-
prompt: "status" | "
|
|
6891
|
+
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";
|
|
6892
6892
|
language: string;
|
|
6893
6893
|
};
|
|
6894
6894
|
} & {
|
|
@@ -6912,7 +6912,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6912
|
$delete: {
|
|
6913
6913
|
input: {
|
|
6914
6914
|
param: {
|
|
6915
|
-
prompt: "status" | "
|
|
6915
|
+
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";
|
|
6916
6916
|
language: string;
|
|
6917
6917
|
};
|
|
6918
6918
|
} & {
|
|
@@ -7004,7 +7004,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7004
7004
|
active?: boolean | undefined;
|
|
7005
7005
|
} | undefined;
|
|
7006
7006
|
signup?: {
|
|
7007
|
-
status?: "
|
|
7007
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7008
7008
|
verification?: {
|
|
7009
7009
|
active?: boolean | undefined;
|
|
7010
7010
|
} | undefined;
|
|
@@ -7021,7 +7021,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7021
|
active?: boolean | undefined;
|
|
7022
7022
|
} | undefined;
|
|
7023
7023
|
signup?: {
|
|
7024
|
-
status?: "
|
|
7024
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7025
7025
|
} | undefined;
|
|
7026
7026
|
validation?: {
|
|
7027
7027
|
max_length?: number | undefined;
|
|
@@ -7038,7 +7038,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7038
7038
|
active?: boolean | undefined;
|
|
7039
7039
|
} | undefined;
|
|
7040
7040
|
signup?: {
|
|
7041
|
-
status?: "
|
|
7041
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7042
7042
|
} | undefined;
|
|
7043
7043
|
} | undefined;
|
|
7044
7044
|
} | undefined;
|
|
@@ -7138,7 +7138,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7138
7138
|
active?: boolean | undefined;
|
|
7139
7139
|
} | undefined;
|
|
7140
7140
|
signup?: {
|
|
7141
|
-
status?: "
|
|
7141
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7142
7142
|
verification?: {
|
|
7143
7143
|
active?: boolean | undefined;
|
|
7144
7144
|
} | undefined;
|
|
@@ -7155,7 +7155,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7155
7155
|
active?: boolean | undefined;
|
|
7156
7156
|
} | undefined;
|
|
7157
7157
|
signup?: {
|
|
7158
|
-
status?: "
|
|
7158
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7159
7159
|
} | undefined;
|
|
7160
7160
|
validation?: {
|
|
7161
7161
|
max_length?: number | undefined;
|
|
@@ -7172,7 +7172,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7172
7172
|
active?: boolean | undefined;
|
|
7173
7173
|
} | undefined;
|
|
7174
7174
|
signup?: {
|
|
7175
|
-
status?: "
|
|
7175
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7176
7176
|
} | undefined;
|
|
7177
7177
|
} | undefined;
|
|
7178
7178
|
} | undefined;
|
|
@@ -7287,7 +7287,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7287
7287
|
active?: boolean | undefined;
|
|
7288
7288
|
} | undefined;
|
|
7289
7289
|
signup?: {
|
|
7290
|
-
status?: "
|
|
7290
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7291
7291
|
verification?: {
|
|
7292
7292
|
active?: boolean | undefined;
|
|
7293
7293
|
} | undefined;
|
|
@@ -7304,7 +7304,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7304
7304
|
active?: boolean | undefined;
|
|
7305
7305
|
} | undefined;
|
|
7306
7306
|
signup?: {
|
|
7307
|
-
status?: "
|
|
7307
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7308
7308
|
} | undefined;
|
|
7309
7309
|
validation?: {
|
|
7310
7310
|
max_length?: number | undefined;
|
|
@@ -7321,7 +7321,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7321
7321
|
active?: boolean | undefined;
|
|
7322
7322
|
} | undefined;
|
|
7323
7323
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7324
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7325
7325
|
} | undefined;
|
|
7326
7326
|
} | undefined;
|
|
7327
7327
|
} | undefined;
|
|
@@ -7466,7 +7466,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7466
7466
|
active?: boolean | undefined;
|
|
7467
7467
|
} | undefined;
|
|
7468
7468
|
signup?: {
|
|
7469
|
-
status?: "
|
|
7469
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7470
7470
|
verification?: {
|
|
7471
7471
|
active?: boolean | undefined;
|
|
7472
7472
|
} | undefined;
|
|
@@ -7483,7 +7483,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7483
7483
|
active?: boolean | undefined;
|
|
7484
7484
|
} | undefined;
|
|
7485
7485
|
signup?: {
|
|
7486
|
-
status?: "
|
|
7486
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7487
7487
|
} | undefined;
|
|
7488
7488
|
validation?: {
|
|
7489
7489
|
max_length?: number | undefined;
|
|
@@ -7500,7 +7500,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7500
7500
|
active?: boolean | undefined;
|
|
7501
7501
|
} | undefined;
|
|
7502
7502
|
signup?: {
|
|
7503
|
-
status?: "
|
|
7503
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7504
7504
|
} | undefined;
|
|
7505
7505
|
} | undefined;
|
|
7506
7506
|
} | undefined;
|
|
@@ -7624,7 +7624,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7624
7624
|
active?: boolean | undefined;
|
|
7625
7625
|
} | undefined;
|
|
7626
7626
|
signup?: {
|
|
7627
|
-
status?: "
|
|
7627
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7628
7628
|
verification?: {
|
|
7629
7629
|
active?: boolean | undefined;
|
|
7630
7630
|
} | undefined;
|
|
@@ -7641,7 +7641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7641
7641
|
active?: boolean | undefined;
|
|
7642
7642
|
} | undefined;
|
|
7643
7643
|
signup?: {
|
|
7644
|
-
status?: "
|
|
7644
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7645
7645
|
} | undefined;
|
|
7646
7646
|
validation?: {
|
|
7647
7647
|
max_length?: number | undefined;
|
|
@@ -7658,7 +7658,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7658
7658
|
active?: boolean | undefined;
|
|
7659
7659
|
} | undefined;
|
|
7660
7660
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7661
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
7662
7662
|
} | undefined;
|
|
7663
7663
|
} | undefined;
|
|
7664
7664
|
} | undefined;
|
|
@@ -8723,7 +8723,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8723
8723
|
created_at: string;
|
|
8724
8724
|
updated_at: string;
|
|
8725
8725
|
name: string;
|
|
8726
|
-
provider: "auth0" | "
|
|
8726
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8727
8727
|
connection: string;
|
|
8728
8728
|
enabled: boolean;
|
|
8729
8729
|
credentials: {
|
|
@@ -8755,7 +8755,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8755
8755
|
created_at: string;
|
|
8756
8756
|
updated_at: string;
|
|
8757
8757
|
name: string;
|
|
8758
|
-
provider: "auth0" | "
|
|
8758
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8759
8759
|
connection: string;
|
|
8760
8760
|
enabled: boolean;
|
|
8761
8761
|
credentials: {
|
|
@@ -8781,7 +8781,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8781
8781
|
} & {
|
|
8782
8782
|
json: {
|
|
8783
8783
|
name: string;
|
|
8784
|
-
provider: "auth0" | "
|
|
8784
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8785
8785
|
connection: string;
|
|
8786
8786
|
credentials: {
|
|
8787
8787
|
domain: string;
|
|
@@ -8798,7 +8798,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8798
8798
|
created_at: string;
|
|
8799
8799
|
updated_at: string;
|
|
8800
8800
|
name: string;
|
|
8801
|
-
provider: "auth0" | "
|
|
8801
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8802
8802
|
connection: string;
|
|
8803
8803
|
enabled: boolean;
|
|
8804
8804
|
credentials: {
|
|
@@ -8829,7 +8829,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8829
8829
|
json: {
|
|
8830
8830
|
id?: string | undefined;
|
|
8831
8831
|
name?: string | undefined;
|
|
8832
|
-
provider?: "auth0" | "
|
|
8832
|
+
provider?: "auth0" | "oidc" | "okta" | "cognito" | undefined;
|
|
8833
8833
|
connection?: string | undefined;
|
|
8834
8834
|
enabled?: boolean | undefined;
|
|
8835
8835
|
credentials?: {
|
|
@@ -8845,7 +8845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8845
8845
|
created_at: string;
|
|
8846
8846
|
updated_at: string;
|
|
8847
8847
|
name: string;
|
|
8848
|
-
provider: "auth0" | "
|
|
8848
|
+
provider: "auth0" | "oidc" | "okta" | "cognito";
|
|
8849
8849
|
connection: string;
|
|
8850
8850
|
enabled: boolean;
|
|
8851
8851
|
credentials: {
|
|
@@ -9063,7 +9063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9063
|
};
|
|
9064
9064
|
};
|
|
9065
9065
|
output: {
|
|
9066
|
-
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" | "
|
|
9066
|
+
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";
|
|
9067
9067
|
date: string;
|
|
9068
9068
|
isMobile: boolean;
|
|
9069
9069
|
log_id: string;
|
|
@@ -9102,7 +9102,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9102
9102
|
limit: number;
|
|
9103
9103
|
length: number;
|
|
9104
9104
|
logs: {
|
|
9105
|
-
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" | "
|
|
9105
|
+
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";
|
|
9106
9106
|
date: string;
|
|
9107
9107
|
isMobile: boolean;
|
|
9108
9108
|
log_id: string;
|
|
@@ -9156,7 +9156,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9156
9156
|
};
|
|
9157
9157
|
};
|
|
9158
9158
|
output: {
|
|
9159
|
-
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" | "
|
|
9159
|
+
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";
|
|
9160
9160
|
date: string;
|
|
9161
9161
|
isMobile: boolean;
|
|
9162
9162
|
log_id: string;
|
|
@@ -9544,7 +9544,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9544
9544
|
addons?: {
|
|
9545
9545
|
[x: string]: any;
|
|
9546
9546
|
} | undefined;
|
|
9547
|
-
token_endpoint_auth_method?: "none" | "
|
|
9547
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9548
9548
|
client_metadata?: {
|
|
9549
9549
|
[x: string]: string;
|
|
9550
9550
|
} | undefined;
|
|
@@ -9640,7 +9640,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9640
9640
|
addons?: {
|
|
9641
9641
|
[x: string]: any;
|
|
9642
9642
|
} | undefined;
|
|
9643
|
-
token_endpoint_auth_method?: "none" | "
|
|
9643
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9644
9644
|
client_metadata?: {
|
|
9645
9645
|
[x: string]: string;
|
|
9646
9646
|
} | undefined;
|
|
@@ -9751,7 +9751,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9751
9751
|
addons?: {
|
|
9752
9752
|
[x: string]: any;
|
|
9753
9753
|
} | undefined;
|
|
9754
|
-
token_endpoint_auth_method?: "none" | "
|
|
9754
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9755
9755
|
client_metadata?: {
|
|
9756
9756
|
[x: string]: string;
|
|
9757
9757
|
} | undefined;
|
|
@@ -9861,7 +9861,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9861
9861
|
custom_login_page_preview?: string | undefined;
|
|
9862
9862
|
form_template?: string | undefined;
|
|
9863
9863
|
addons?: Record<string, any> | undefined;
|
|
9864
|
-
token_endpoint_auth_method?: "none" | "
|
|
9864
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9865
9865
|
client_metadata?: Record<string, string> | undefined;
|
|
9866
9866
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9867
9867
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9941,7 +9941,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9941
9941
|
addons?: {
|
|
9942
9942
|
[x: string]: any;
|
|
9943
9943
|
} | undefined;
|
|
9944
|
-
token_endpoint_auth_method?: "none" | "
|
|
9944
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
9945
9945
|
client_metadata?: {
|
|
9946
9946
|
[x: string]: string;
|
|
9947
9947
|
} | undefined;
|
|
@@ -10030,7 +10030,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10030
10030
|
custom_login_page_preview?: string | undefined;
|
|
10031
10031
|
form_template?: string | undefined;
|
|
10032
10032
|
addons?: Record<string, any> | undefined;
|
|
10033
|
-
token_endpoint_auth_method?: "none" | "
|
|
10033
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10034
10034
|
client_metadata?: Record<string, string> | undefined;
|
|
10035
10035
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10036
10036
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10110,7 +10110,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10110
10110
|
addons?: {
|
|
10111
10111
|
[x: string]: any;
|
|
10112
10112
|
} | undefined;
|
|
10113
|
-
token_endpoint_auth_method?: "none" | "
|
|
10113
|
+
token_endpoint_auth_method?: "none" | "private_key_jwt" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | undefined;
|
|
10114
10114
|
client_metadata?: {
|
|
10115
10115
|
[x: string]: string;
|
|
10116
10116
|
} | undefined;
|
|
@@ -10232,7 +10232,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10232
10232
|
active?: boolean | undefined;
|
|
10233
10233
|
} | undefined;
|
|
10234
10234
|
signup?: {
|
|
10235
|
-
status?: "
|
|
10235
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10236
10236
|
verification?: {
|
|
10237
10237
|
active?: boolean | undefined;
|
|
10238
10238
|
} | undefined;
|
|
@@ -10249,7 +10249,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10249
10249
|
active?: boolean | undefined;
|
|
10250
10250
|
} | undefined;
|
|
10251
10251
|
signup?: {
|
|
10252
|
-
status?: "
|
|
10252
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10253
10253
|
} | undefined;
|
|
10254
10254
|
validation?: {
|
|
10255
10255
|
max_length?: number | undefined;
|
|
@@ -10266,7 +10266,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10266
10266
|
active?: boolean | undefined;
|
|
10267
10267
|
} | undefined;
|
|
10268
10268
|
signup?: {
|
|
10269
|
-
status?: "
|
|
10269
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10270
10270
|
} | undefined;
|
|
10271
10271
|
} | undefined;
|
|
10272
10272
|
} | undefined;
|
|
@@ -10386,7 +10386,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10386
10386
|
active?: boolean | undefined;
|
|
10387
10387
|
} | undefined;
|
|
10388
10388
|
signup?: {
|
|
10389
|
-
status?: "
|
|
10389
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10390
10390
|
verification?: {
|
|
10391
10391
|
active?: boolean | undefined;
|
|
10392
10392
|
} | undefined;
|
|
@@ -10403,7 +10403,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10403
10403
|
active?: boolean | undefined;
|
|
10404
10404
|
} | undefined;
|
|
10405
10405
|
signup?: {
|
|
10406
|
-
status?: "
|
|
10406
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10407
10407
|
} | undefined;
|
|
10408
10408
|
validation?: {
|
|
10409
10409
|
max_length?: number | undefined;
|
|
@@ -10420,7 +10420,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10420
10420
|
active?: boolean | undefined;
|
|
10421
10421
|
} | undefined;
|
|
10422
10422
|
signup?: {
|
|
10423
|
-
status?: "
|
|
10423
|
+
status?: "optional" | "required" | "disabled" | undefined;
|
|
10424
10424
|
} | undefined;
|
|
10425
10425
|
} | undefined;
|
|
10426
10426
|
} | undefined;
|
|
@@ -11374,7 +11374,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11374
11374
|
};
|
|
11375
11375
|
};
|
|
11376
11376
|
output: {
|
|
11377
|
-
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" | "
|
|
11377
|
+
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";
|
|
11378
11378
|
date: string;
|
|
11379
11379
|
isMobile: boolean;
|
|
11380
11380
|
log_id: string;
|
|
@@ -11413,7 +11413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11413
11413
|
limit: number;
|
|
11414
11414
|
length: number;
|
|
11415
11415
|
logs: {
|
|
11416
|
-
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" | "
|
|
11416
|
+
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";
|
|
11417
11417
|
date: string;
|
|
11418
11418
|
isMobile: boolean;
|
|
11419
11419
|
log_id: string;
|
|
@@ -11730,7 +11730,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11730
11730
|
};
|
|
11731
11731
|
} & {
|
|
11732
11732
|
json: {
|
|
11733
|
-
template: "
|
|
11733
|
+
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";
|
|
11734
11734
|
body: string;
|
|
11735
11735
|
from: string;
|
|
11736
11736
|
subject: string;
|
|
@@ -11751,7 +11751,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11751
11751
|
};
|
|
11752
11752
|
} & {
|
|
11753
11753
|
json: {
|
|
11754
|
-
template: "
|
|
11754
|
+
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";
|
|
11755
11755
|
body: string;
|
|
11756
11756
|
from: string;
|
|
11757
11757
|
subject: string;
|
|
@@ -11763,7 +11763,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11763
11763
|
};
|
|
11764
11764
|
};
|
|
11765
11765
|
output: {
|
|
11766
|
-
template: "
|
|
11766
|
+
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";
|
|
11767
11767
|
body: string;
|
|
11768
11768
|
from: string;
|
|
11769
11769
|
subject: string;
|
|
@@ -11786,7 +11786,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11786
11786
|
};
|
|
11787
11787
|
};
|
|
11788
11788
|
output: {
|
|
11789
|
-
name: "
|
|
11789
|
+
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";
|
|
11790
11790
|
body: string;
|
|
11791
11791
|
subject: string;
|
|
11792
11792
|
}[];
|
|
@@ -11799,7 +11799,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11799
11799
|
$get: {
|
|
11800
11800
|
input: {
|
|
11801
11801
|
param: {
|
|
11802
|
-
templateName: "
|
|
11802
|
+
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";
|
|
11803
11803
|
};
|
|
11804
11804
|
} & {
|
|
11805
11805
|
header: {
|
|
@@ -11812,7 +11812,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11812
11812
|
} | {
|
|
11813
11813
|
input: {
|
|
11814
11814
|
param: {
|
|
11815
|
-
templateName: "
|
|
11815
|
+
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";
|
|
11816
11816
|
};
|
|
11817
11817
|
} & {
|
|
11818
11818
|
header: {
|
|
@@ -11820,7 +11820,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11820
11820
|
};
|
|
11821
11821
|
};
|
|
11822
11822
|
output: {
|
|
11823
|
-
template: "
|
|
11823
|
+
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";
|
|
11824
11824
|
body: string;
|
|
11825
11825
|
from: string;
|
|
11826
11826
|
subject: string;
|
|
@@ -11839,7 +11839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11839
11839
|
$put: {
|
|
11840
11840
|
input: {
|
|
11841
11841
|
param: {
|
|
11842
|
-
templateName: "
|
|
11842
|
+
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";
|
|
11843
11843
|
};
|
|
11844
11844
|
} & {
|
|
11845
11845
|
header: {
|
|
@@ -11847,7 +11847,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11847
11847
|
};
|
|
11848
11848
|
} & {
|
|
11849
11849
|
json: {
|
|
11850
|
-
template: "
|
|
11850
|
+
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";
|
|
11851
11851
|
body: string;
|
|
11852
11852
|
subject: string;
|
|
11853
11853
|
syntax?: "liquid" | undefined;
|
|
@@ -11859,7 +11859,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11859
11859
|
};
|
|
11860
11860
|
};
|
|
11861
11861
|
output: {
|
|
11862
|
-
template: "
|
|
11862
|
+
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";
|
|
11863
11863
|
body: string;
|
|
11864
11864
|
from: string;
|
|
11865
11865
|
subject: string;
|
|
@@ -11878,7 +11878,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11878
11878
|
$patch: {
|
|
11879
11879
|
input: {
|
|
11880
11880
|
param: {
|
|
11881
|
-
templateName: "
|
|
11881
|
+
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";
|
|
11882
11882
|
};
|
|
11883
11883
|
} & {
|
|
11884
11884
|
header: {
|
|
@@ -11886,7 +11886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11886
11886
|
};
|
|
11887
11887
|
} & {
|
|
11888
11888
|
json: {
|
|
11889
|
-
template?: "
|
|
11889
|
+
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;
|
|
11890
11890
|
body?: string | undefined;
|
|
11891
11891
|
from?: string | undefined;
|
|
11892
11892
|
subject?: string | undefined;
|
|
@@ -11903,7 +11903,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11903
11903
|
} | {
|
|
11904
11904
|
input: {
|
|
11905
11905
|
param: {
|
|
11906
|
-
templateName: "
|
|
11906
|
+
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";
|
|
11907
11907
|
};
|
|
11908
11908
|
} & {
|
|
11909
11909
|
header: {
|
|
@@ -11911,7 +11911,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11911
11911
|
};
|
|
11912
11912
|
} & {
|
|
11913
11913
|
json: {
|
|
11914
|
-
template?: "
|
|
11914
|
+
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;
|
|
11915
11915
|
body?: string | undefined;
|
|
11916
11916
|
from?: string | undefined;
|
|
11917
11917
|
subject?: string | undefined;
|
|
@@ -11923,7 +11923,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11923
11923
|
};
|
|
11924
11924
|
};
|
|
11925
11925
|
output: {
|
|
11926
|
-
template: "
|
|
11926
|
+
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";
|
|
11927
11927
|
body: string;
|
|
11928
11928
|
from: string;
|
|
11929
11929
|
subject: string;
|
|
@@ -11942,7 +11942,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11942
11942
|
$delete: {
|
|
11943
11943
|
input: {
|
|
11944
11944
|
param: {
|
|
11945
|
-
templateName: "
|
|
11945
|
+
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";
|
|
11946
11946
|
};
|
|
11947
11947
|
} & {
|
|
11948
11948
|
header: {
|
|
@@ -11955,7 +11955,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11955
11955
|
} | {
|
|
11956
11956
|
input: {
|
|
11957
11957
|
param: {
|
|
11958
|
-
templateName: "
|
|
11958
|
+
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";
|
|
11959
11959
|
};
|
|
11960
11960
|
} & {
|
|
11961
11961
|
header: {
|
|
@@ -11972,7 +11972,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11972
11972
|
$post: {
|
|
11973
11973
|
input: {
|
|
11974
11974
|
param: {
|
|
11975
|
-
templateName: "
|
|
11975
|
+
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";
|
|
11976
11976
|
};
|
|
11977
11977
|
} & {
|
|
11978
11978
|
header: {
|
|
@@ -12255,7 +12255,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12255
12255
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12256
12256
|
custom_domain_id: string;
|
|
12257
12257
|
primary: boolean;
|
|
12258
|
-
status: "
|
|
12258
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12259
12259
|
verification_method?: "txt" | undefined;
|
|
12260
12260
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12261
12261
|
domain_metadata?: {
|
|
@@ -12296,7 +12296,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12296
12296
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12297
12297
|
custom_domain_id: string;
|
|
12298
12298
|
primary: boolean;
|
|
12299
|
-
status: "
|
|
12299
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12300
12300
|
verification_method?: "txt" | undefined;
|
|
12301
12301
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12302
12302
|
domain_metadata?: {
|
|
@@ -12360,7 +12360,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12360
12360
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12361
12361
|
custom_domain_id: string;
|
|
12362
12362
|
primary: boolean;
|
|
12363
|
-
status: "
|
|
12363
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12364
12364
|
verification_method?: "txt" | undefined;
|
|
12365
12365
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12366
12366
|
domain_metadata?: {
|
|
@@ -12407,7 +12407,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12407
12407
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12408
12408
|
custom_domain_id: string;
|
|
12409
12409
|
primary: boolean;
|
|
12410
|
-
status: "
|
|
12410
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12411
12411
|
verification_method?: "txt" | undefined;
|
|
12412
12412
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12413
12413
|
domain_metadata?: {
|
|
@@ -12453,7 +12453,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12453
12453
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12454
12454
|
custom_domain_id: string;
|
|
12455
12455
|
primary: boolean;
|
|
12456
|
-
status: "
|
|
12456
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12457
12457
|
verification_method?: "txt" | undefined;
|
|
12458
12458
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12459
12459
|
domain_metadata?: {
|
|
@@ -12494,7 +12494,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12494
12494
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12495
12495
|
custom_domain_id: string;
|
|
12496
12496
|
primary: boolean;
|
|
12497
|
-
status: "
|
|
12497
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
12498
12498
|
verification_method?: "txt" | undefined;
|
|
12499
12499
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12500
12500
|
domain_metadata?: {
|
|
@@ -12924,7 +12924,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12924
12924
|
} & {
|
|
12925
12925
|
json: {
|
|
12926
12926
|
body?: string | undefined;
|
|
12927
|
-
screen?: "
|
|
12927
|
+
screen?: "identifier" | "signup" | "password" | "login" | undefined;
|
|
12928
12928
|
branding?: {
|
|
12929
12929
|
colors?: {
|
|
12930
12930
|
primary: string;
|
|
@@ -13215,7 +13215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13215
13215
|
logs: {
|
|
13216
13216
|
action_name: string;
|
|
13217
13217
|
lines: {
|
|
13218
|
-
level: "
|
|
13218
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13219
13219
|
message: string;
|
|
13220
13220
|
}[];
|
|
13221
13221
|
}[];
|
|
@@ -13882,7 +13882,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13882
13882
|
args: import("hono/utils/types").JSONValue[];
|
|
13883
13883
|
}[];
|
|
13884
13884
|
logs: {
|
|
13885
|
-
level: "
|
|
13885
|
+
level: "log" | "error" | "info" | "warn" | "debug";
|
|
13886
13886
|
message: string;
|
|
13887
13887
|
}[];
|
|
13888
13888
|
error?: string | undefined;
|