authhero 8.17.1 → 8.17.3
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/authhero.cjs +23 -23
- package/dist/authhero.d.ts +272 -272
- package/dist/authhero.mjs +69 -62
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +5 -5
- package/dist/types/index.d.ts +272 -272
- package/dist/types/routes/auth-api/authorize.d.ts +14 -14
- package/dist/types/routes/auth-api/index.d.ts +50 -50
- package/dist/types/routes/auth-api/passwordless.d.ts +4 -4
- package/dist/types/routes/management-api/action-executions.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 +5 -5
- package/dist/types/routes/management-api/clients.d.ts +6 -6
- package/dist/types/routes/management-api/connections.d.ts +15 -15
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +91 -91
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +3 -3
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/tenants.d.ts +6 -6
- package/dist/types/routes/management-api/themes.d.ts +3 -3
- 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 +12 -12
- package/dist/types/routes/universal-login/identifier.d.ts +2 -2
- package/dist/types/routes/universal-login/index.d.ts +2 -2
- package/dist/types/routes/universal-login/u2-index.d.ts +5 -5
- package/dist/types/routes/universal-login/u2-routes.d.ts +5 -5
- package/package.json +3 -3
|
@@ -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?: "false" | "true" | undefined;
|
|
12
|
+
gzip?: "false" | "true" | 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?: "false" | "true" | undefined;
|
|
26
|
+
gzip?: "false" | "true" | 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?: "false" | "true" | undefined;
|
|
46
46
|
};
|
|
47
47
|
} & {
|
|
48
48
|
header: {
|
|
@@ -96,7 +96,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
96
|
};
|
|
97
97
|
} & {
|
|
98
98
|
json: {
|
|
99
|
-
type: "
|
|
99
|
+
type: "push" | "email" | "passkey" | "webauthn-roaming" | "webauthn-platform" | "phone" | "totp";
|
|
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: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "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: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -1170,10 +1170,10 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1170
1170
|
email?: string | undefined;
|
|
1171
1171
|
};
|
|
1172
1172
|
id?: string | undefined;
|
|
1173
|
-
roles?: string[] | undefined;
|
|
1174
|
-
connection_id?: string | undefined;
|
|
1175
1173
|
app_metadata?: Record<string, any> | undefined;
|
|
1176
1174
|
user_metadata?: Record<string, any> | undefined;
|
|
1175
|
+
connection_id?: string | undefined;
|
|
1176
|
+
roles?: string[] | undefined;
|
|
1177
1177
|
ttl_sec?: number | undefined;
|
|
1178
1178
|
send_invitation_email?: boolean | undefined;
|
|
1179
1179
|
};
|
|
@@ -6828,7 +6828,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6828
|
};
|
|
6829
6829
|
};
|
|
6830
6830
|
output: {
|
|
6831
|
-
prompt: "
|
|
6831
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "
|
|
6869
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "
|
|
6891
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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: "
|
|
6915
|
+
prompt: "status" | "organizations" | "signup" | "login" | "mfa" | "login-id" | "login-password" | "signup-id" | "signup-password" | "reset-password" | "consent" | "mfa-push" | "mfa-otp" | "mfa-voice" | "mfa-phone" | "mfa-webauthn" | "mfa-email" | "mfa-recovery-code" | "device-flow" | "email-verification" | "email-otp-challenge" | "invitation" | "common" | "passkeys" | "captcha" | "custom-form" | "login-passwordless" | "mfa-login-options";
|
|
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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "disabled" | undefined;
|
|
7662
7662
|
} | undefined;
|
|
7663
7663
|
} | undefined;
|
|
7664
7664
|
} | undefined;
|
|
@@ -7810,7 +7810,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7810
7810
|
tenant_id: string;
|
|
7811
7811
|
created_at: string;
|
|
7812
7812
|
updated_at: string;
|
|
7813
|
-
deploymentStatus: "
|
|
7813
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7814
7814
|
secrets?: {
|
|
7815
7815
|
[x: string]: string;
|
|
7816
7816
|
} | 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: "deployed" | "failed" | "not_required";
|
|
7904
7904
|
secrets?: {
|
|
7905
7905
|
[x: string]: string;
|
|
7906
7906
|
} | undefined;
|
|
@@ -8413,7 +8413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8413
8413
|
log_type: string;
|
|
8414
8414
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
8415
8415
|
actor: {
|
|
8416
|
-
type: "
|
|
8416
|
+
type: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
8417
8417
|
id?: string | undefined;
|
|
8418
8418
|
email?: string | undefined;
|
|
8419
8419
|
org_id?: string | undefined;
|
|
@@ -8893,7 +8893,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8893
8893
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8894
8894
|
};
|
|
8895
8895
|
id: string;
|
|
8896
|
-
status: "
|
|
8896
|
+
status: "active" | "suspended" | "paused";
|
|
8897
8897
|
filters?: {
|
|
8898
8898
|
type: string;
|
|
8899
8899
|
name: string;
|
|
@@ -8925,7 +8925,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8925
8925
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8926
8926
|
};
|
|
8927
8927
|
id: string;
|
|
8928
|
-
status: "
|
|
8928
|
+
status: "active" | "suspended" | "paused";
|
|
8929
8929
|
filters?: {
|
|
8930
8930
|
type: string;
|
|
8931
8931
|
name: string;
|
|
@@ -8950,7 +8950,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8950
8950
|
name: string;
|
|
8951
8951
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8952
8952
|
sink: Record<string, unknown>;
|
|
8953
|
-
status?: "
|
|
8953
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
8954
8954
|
filters?: {
|
|
8955
8955
|
type: string;
|
|
8956
8956
|
name: string;
|
|
@@ -8965,7 +8965,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8965
8965
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8966
8966
|
};
|
|
8967
8967
|
id: string;
|
|
8968
|
-
status: "
|
|
8968
|
+
status: "active" | "suspended" | "paused";
|
|
8969
8969
|
filters?: {
|
|
8970
8970
|
type: string;
|
|
8971
8971
|
name: string;
|
|
@@ -9000,7 +9000,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9000
9000
|
}[] | undefined;
|
|
9001
9001
|
isPriority?: boolean | undefined;
|
|
9002
9002
|
id?: string | undefined;
|
|
9003
|
-
status?: "
|
|
9003
|
+
status?: "active" | "suspended" | "paused" | undefined;
|
|
9004
9004
|
created_at?: string | undefined;
|
|
9005
9005
|
updated_at?: string | undefined;
|
|
9006
9006
|
};
|
|
@@ -9012,7 +9012,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9012
9012
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9013
9013
|
};
|
|
9014
9014
|
id: string;
|
|
9015
|
-
status: "
|
|
9015
|
+
status: "active" | "suspended" | "paused";
|
|
9016
9016
|
filters?: {
|
|
9017
9017
|
type: string;
|
|
9018
9018
|
name: string;
|
|
@@ -9063,7 +9063,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9063
|
};
|
|
9064
9064
|
};
|
|
9065
9065
|
output: {
|
|
9066
|
-
type: "fn" | "
|
|
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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
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" | "
|
|
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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
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" | "
|
|
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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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?: "required" | "optional" | "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" | "
|
|
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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
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" | "
|
|
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" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "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" | "i" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "fapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "sestft" | "simp" | "si" | "signup_pwd_leak" | "slo" | "sh" | "spm" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
11417
11417
|
date: string;
|
|
11418
11418
|
isMobile: boolean;
|
|
11419
11419
|
log_id: string;
|
|
@@ -11728,7 +11728,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11728
11728
|
};
|
|
11729
11729
|
} & {
|
|
11730
11730
|
json: {
|
|
11731
|
-
template: "
|
|
11731
|
+
template: "verify_email" | "change_password" | "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";
|
|
11732
11732
|
body: string;
|
|
11733
11733
|
from: string;
|
|
11734
11734
|
subject: string;
|
|
@@ -11749,7 +11749,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11749
11749
|
};
|
|
11750
11750
|
} & {
|
|
11751
11751
|
json: {
|
|
11752
|
-
template: "
|
|
11752
|
+
template: "verify_email" | "change_password" | "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";
|
|
11753
11753
|
body: string;
|
|
11754
11754
|
from: string;
|
|
11755
11755
|
subject: string;
|
|
@@ -11761,7 +11761,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11761
11761
|
};
|
|
11762
11762
|
};
|
|
11763
11763
|
output: {
|
|
11764
|
-
template: "
|
|
11764
|
+
template: "verify_email" | "change_password" | "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";
|
|
11765
11765
|
body: string;
|
|
11766
11766
|
from: string;
|
|
11767
11767
|
subject: string;
|
|
@@ -11784,7 +11784,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11784
11784
|
};
|
|
11785
11785
|
};
|
|
11786
11786
|
output: {
|
|
11787
|
-
name: "
|
|
11787
|
+
name: "verify_email" | "change_password" | "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";
|
|
11788
11788
|
body: string;
|
|
11789
11789
|
subject: string;
|
|
11790
11790
|
}[];
|
|
@@ -11797,7 +11797,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11797
11797
|
$get: {
|
|
11798
11798
|
input: {
|
|
11799
11799
|
param: {
|
|
11800
|
-
templateName: "
|
|
11800
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11801
11801
|
};
|
|
11802
11802
|
} & {
|
|
11803
11803
|
header: {
|
|
@@ -11810,7 +11810,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11810
11810
|
} | {
|
|
11811
11811
|
input: {
|
|
11812
11812
|
param: {
|
|
11813
|
-
templateName: "
|
|
11813
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11814
11814
|
};
|
|
11815
11815
|
} & {
|
|
11816
11816
|
header: {
|
|
@@ -11818,7 +11818,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11818
11818
|
};
|
|
11819
11819
|
};
|
|
11820
11820
|
output: {
|
|
11821
|
-
template: "
|
|
11821
|
+
template: "verify_email" | "change_password" | "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";
|
|
11822
11822
|
body: string;
|
|
11823
11823
|
from: string;
|
|
11824
11824
|
subject: string;
|
|
@@ -11837,7 +11837,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11837
11837
|
$put: {
|
|
11838
11838
|
input: {
|
|
11839
11839
|
param: {
|
|
11840
|
-
templateName: "
|
|
11840
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11841
11841
|
};
|
|
11842
11842
|
} & {
|
|
11843
11843
|
header: {
|
|
@@ -11845,7 +11845,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11845
11845
|
};
|
|
11846
11846
|
} & {
|
|
11847
11847
|
json: {
|
|
11848
|
-
template: "
|
|
11848
|
+
template: "verify_email" | "change_password" | "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";
|
|
11849
11849
|
body: string;
|
|
11850
11850
|
subject: string;
|
|
11851
11851
|
syntax?: "liquid" | undefined;
|
|
@@ -11857,7 +11857,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11857
11857
|
};
|
|
11858
11858
|
};
|
|
11859
11859
|
output: {
|
|
11860
|
-
template: "
|
|
11860
|
+
template: "verify_email" | "change_password" | "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";
|
|
11861
11861
|
body: string;
|
|
11862
11862
|
from: string;
|
|
11863
11863
|
subject: string;
|
|
@@ -11876,7 +11876,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11876
11876
|
$patch: {
|
|
11877
11877
|
input: {
|
|
11878
11878
|
param: {
|
|
11879
|
-
templateName: "
|
|
11879
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11880
11880
|
};
|
|
11881
11881
|
} & {
|
|
11882
11882
|
header: {
|
|
@@ -11884,7 +11884,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11884
11884
|
};
|
|
11885
11885
|
} & {
|
|
11886
11886
|
json: {
|
|
11887
|
-
template?: "
|
|
11887
|
+
template?: "verify_email" | "change_password" | "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;
|
|
11888
11888
|
body?: string | undefined;
|
|
11889
11889
|
from?: string | undefined;
|
|
11890
11890
|
subject?: string | undefined;
|
|
@@ -11901,7 +11901,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11901
11901
|
} | {
|
|
11902
11902
|
input: {
|
|
11903
11903
|
param: {
|
|
11904
|
-
templateName: "
|
|
11904
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11905
11905
|
};
|
|
11906
11906
|
} & {
|
|
11907
11907
|
header: {
|
|
@@ -11909,7 +11909,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11909
11909
|
};
|
|
11910
11910
|
} & {
|
|
11911
11911
|
json: {
|
|
11912
|
-
template?: "
|
|
11912
|
+
template?: "verify_email" | "change_password" | "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;
|
|
11913
11913
|
body?: string | undefined;
|
|
11914
11914
|
from?: string | undefined;
|
|
11915
11915
|
subject?: string | undefined;
|
|
@@ -11921,7 +11921,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11921
11921
|
};
|
|
11922
11922
|
};
|
|
11923
11923
|
output: {
|
|
11924
|
-
template: "
|
|
11924
|
+
template: "verify_email" | "change_password" | "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";
|
|
11925
11925
|
body: string;
|
|
11926
11926
|
from: string;
|
|
11927
11927
|
subject: string;
|
|
@@ -11940,7 +11940,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11940
11940
|
$delete: {
|
|
11941
11941
|
input: {
|
|
11942
11942
|
param: {
|
|
11943
|
-
templateName: "
|
|
11943
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11944
11944
|
};
|
|
11945
11945
|
} & {
|
|
11946
11946
|
header: {
|
|
@@ -11953,7 +11953,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11953
11953
|
} | {
|
|
11954
11954
|
input: {
|
|
11955
11955
|
param: {
|
|
11956
|
-
templateName: "
|
|
11956
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11957
11957
|
};
|
|
11958
11958
|
} & {
|
|
11959
11959
|
header: {
|
|
@@ -11970,7 +11970,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11970
11970
|
$post: {
|
|
11971
11971
|
input: {
|
|
11972
11972
|
param: {
|
|
11973
|
-
templateName: "
|
|
11973
|
+
templateName: "verify_email" | "change_password" | "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";
|
|
11974
11974
|
};
|
|
11975
11975
|
} & {
|
|
11976
11976
|
header: {
|
|
@@ -12253,7 +12253,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12253
12253
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12254
12254
|
custom_domain_id: string;
|
|
12255
12255
|
primary: boolean;
|
|
12256
|
-
status: "
|
|
12256
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12257
12257
|
verification_method?: "txt" | undefined;
|
|
12258
12258
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12259
12259
|
domain_metadata?: {
|
|
@@ -12294,7 +12294,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12294
12294
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12295
12295
|
custom_domain_id: string;
|
|
12296
12296
|
primary: boolean;
|
|
12297
|
-
status: "
|
|
12297
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12298
12298
|
verification_method?: "txt" | undefined;
|
|
12299
12299
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12300
12300
|
domain_metadata?: {
|
|
@@ -12358,7 +12358,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12358
12358
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12359
12359
|
custom_domain_id: string;
|
|
12360
12360
|
primary: boolean;
|
|
12361
|
-
status: "
|
|
12361
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12362
12362
|
verification_method?: "txt" | undefined;
|
|
12363
12363
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12364
12364
|
domain_metadata?: {
|
|
@@ -12405,7 +12405,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12405
12405
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12406
12406
|
custom_domain_id: string;
|
|
12407
12407
|
primary: boolean;
|
|
12408
|
-
status: "
|
|
12408
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12409
12409
|
verification_method?: "txt" | undefined;
|
|
12410
12410
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12411
12411
|
domain_metadata?: {
|
|
@@ -12451,7 +12451,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12451
12451
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12452
12452
|
custom_domain_id: string;
|
|
12453
12453
|
primary: boolean;
|
|
12454
|
-
status: "
|
|
12454
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12455
12455
|
verification_method?: "txt" | undefined;
|
|
12456
12456
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12457
12457
|
domain_metadata?: {
|
|
@@ -12492,7 +12492,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12492
12492
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
12493
12493
|
custom_domain_id: string;
|
|
12494
12494
|
primary: boolean;
|
|
12495
|
-
status: "
|
|
12495
|
+
status: "disabled" | "pending" | "ready" | "pending_verification";
|
|
12496
12496
|
verification_method?: "txt" | undefined;
|
|
12497
12497
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
12498
12498
|
domain_metadata?: {
|
|
@@ -12591,7 +12591,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12591
12591
|
background_color: string;
|
|
12592
12592
|
background_image_url: string;
|
|
12593
12593
|
page_layout: "center" | "left" | "right";
|
|
12594
|
-
logo_placement?: "
|
|
12594
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12595
12595
|
};
|
|
12596
12596
|
widget: {
|
|
12597
12597
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12681,7 +12681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12681
12681
|
background_color: string;
|
|
12682
12682
|
background_image_url: string;
|
|
12683
12683
|
page_layout: "center" | "left" | "right";
|
|
12684
|
-
logo_placement?: "
|
|
12684
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12685
12685
|
};
|
|
12686
12686
|
widget: {
|
|
12687
12687
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12760,7 +12760,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12760
12760
|
background_color: string;
|
|
12761
12761
|
background_image_url: string;
|
|
12762
12762
|
page_layout: "center" | "left" | "right";
|
|
12763
|
-
logo_placement?: "
|
|
12763
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
12764
12764
|
};
|
|
12765
12765
|
widget: {
|
|
12766
12766
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -12922,7 +12922,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12922
12922
|
} & {
|
|
12923
12923
|
json: {
|
|
12924
12924
|
body?: string | undefined;
|
|
12925
|
-
screen?: "password" | "
|
|
12925
|
+
screen?: "password" | "identifier" | "signup" | "login" | undefined;
|
|
12926
12926
|
branding?: {
|
|
12927
12927
|
colors?: {
|
|
12928
12928
|
primary: string;
|
|
@@ -13008,7 +13008,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13008
13008
|
background_color: string;
|
|
13009
13009
|
background_image_url: string;
|
|
13010
13010
|
page_layout: "center" | "left" | "right";
|
|
13011
|
-
logo_placement?: "
|
|
13011
|
+
logo_placement?: "none" | "widget" | "chip" | undefined;
|
|
13012
13012
|
} | undefined;
|
|
13013
13013
|
widget?: {
|
|
13014
13014
|
header_text_alignment: "center" | "left" | "right";
|
|
@@ -13166,7 +13166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13166
13166
|
output: {
|
|
13167
13167
|
id: string;
|
|
13168
13168
|
trigger_id: string;
|
|
13169
|
-
status: "
|
|
13169
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13170
13170
|
results: {
|
|
13171
13171
|
action_name: string;
|
|
13172
13172
|
error: {
|
|
@@ -13213,7 +13213,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13213
13213
|
logs: {
|
|
13214
13214
|
action_name: string;
|
|
13215
13215
|
lines: {
|
|
13216
|
-
level: "
|
|
13216
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13217
13217
|
message: string;
|
|
13218
13218
|
}[];
|
|
13219
13219
|
}[];
|
|
@@ -13880,7 +13880,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13880
13880
|
args: import("hono/utils/types").JSONValue[];
|
|
13881
13881
|
}[];
|
|
13882
13882
|
logs: {
|
|
13883
|
-
level: "
|
|
13883
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13884
13884
|
message: string;
|
|
13885
13885
|
}[];
|
|
13886
13886
|
error?: string | undefined;
|