authhero 8.20.0 → 8.22.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 +142 -142
- package/dist/authhero.d.ts +402 -82
- package/dist/authhero.mjs +15092 -17184
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +4 -4
- package/dist/types/errors/is-http-exception-like.d.ts +11 -0
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/index.d.ts +280 -79
- package/dist/types/routes/auth-api/index.d.ts +18 -18
- package/dist/types/routes/auth-api/passwordless.d.ts +10 -10
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/revoke.d.ts +6 -6
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +3 -1
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +9 -9
- package/dist/types/routes/management-api/client-grants.d.ts +16 -0
- package/dist/types/routes/management-api/clients.d.ts +109 -13
- package/dist/types/routes/management-api/connections.d.ts +16 -15
- package/dist/types/routes/management-api/flows.d.ts +1 -0
- package/dist/types/routes/management-api/forms.d.ts +1 -0
- package/dist/types/routes/management-api/grants.d.ts +1 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/hook-code.d.ts +2 -2
- package/dist/types/routes/management-api/hooks.d.ts +1 -0
- package/dist/types/routes/management-api/index.d.ts +276 -76
- package/dist/types/routes/management-api/log-streams.d.ts +6 -6
- package/dist/types/routes/management-api/logs.d.ts +42 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +36 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/resource-servers.d.ts +1 -0
- package/dist/types/routes/management-api/roles.d.ts +2 -0
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenants.d.ts +5 -5
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +7 -2
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.d.ts +122 -0
- package/dist/types/routes/proxy-control-plane/wfp-tenant-hosts.test.d.ts +1 -0
- package/dist/types/routes/universal-login/common.d.ts +12 -12
- package/dist/types/routes/universal-login/flow-api.d.ts +4 -4
- 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 +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?: "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: "push" | "email" | "passkey" | "
|
|
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: "sms" | "otp" | "email" | "duo" | "
|
|
239
|
+
name: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
394
|
+
factor_name: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
402
|
+
name: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
415
|
+
factor_name: "sms" | "otp" | "email" | "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: "sms" | "otp" | "email" | "duo" | "
|
|
427
|
+
name: "sms" | "otp" | "email" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
428
|
enabled: boolean;
|
|
429
429
|
trial_expired?: boolean | undefined;
|
|
430
430
|
};
|
|
@@ -554,6 +554,39 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
554
554
|
} | undefined;
|
|
555
555
|
}[];
|
|
556
556
|
total?: number | undefined;
|
|
557
|
+
next?: string | undefined;
|
|
558
|
+
} | {
|
|
559
|
+
organizations: {
|
|
560
|
+
created_at: string;
|
|
561
|
+
updated_at: string;
|
|
562
|
+
id: string;
|
|
563
|
+
name: string;
|
|
564
|
+
display_name?: string | undefined;
|
|
565
|
+
branding?: {
|
|
566
|
+
logo_url?: string | undefined;
|
|
567
|
+
colors?: {
|
|
568
|
+
primary?: string | undefined;
|
|
569
|
+
page_background?: string | undefined;
|
|
570
|
+
} | undefined;
|
|
571
|
+
} | undefined;
|
|
572
|
+
metadata?: {
|
|
573
|
+
[x: string]: any;
|
|
574
|
+
} | undefined;
|
|
575
|
+
enabled_connections?: {
|
|
576
|
+
connection_id: string;
|
|
577
|
+
assign_membership_on_login: boolean;
|
|
578
|
+
show_as_button: boolean;
|
|
579
|
+
is_signup_enabled: boolean;
|
|
580
|
+
}[] | undefined;
|
|
581
|
+
token_quota?: {
|
|
582
|
+
client_credentials?: {
|
|
583
|
+
enforce: boolean;
|
|
584
|
+
per_day: number;
|
|
585
|
+
per_hour: number;
|
|
586
|
+
} | undefined;
|
|
587
|
+
} | undefined;
|
|
588
|
+
}[];
|
|
589
|
+
next?: string | undefined;
|
|
557
590
|
};
|
|
558
591
|
outputFormat: "json";
|
|
559
592
|
status: 200;
|
|
@@ -1170,9 +1203,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1170
1203
|
email?: string | undefined;
|
|
1171
1204
|
};
|
|
1172
1205
|
id?: string | undefined;
|
|
1206
|
+
connection_id?: string | undefined;
|
|
1173
1207
|
app_metadata?: Record<string, any> | undefined;
|
|
1174
1208
|
user_metadata?: Record<string, any> | undefined;
|
|
1175
|
-
connection_id?: string | undefined;
|
|
1176
1209
|
roles?: string[] | undefined;
|
|
1177
1210
|
ttl_sec?: number | undefined;
|
|
1178
1211
|
send_invitation_email?: boolean | undefined;
|
|
@@ -1274,6 +1307,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1274
1307
|
updated_at?: string | undefined;
|
|
1275
1308
|
}[];
|
|
1276
1309
|
total?: number | undefined;
|
|
1310
|
+
next?: string | undefined;
|
|
1277
1311
|
};
|
|
1278
1312
|
outputFormat: "json";
|
|
1279
1313
|
status: 200;
|
|
@@ -1357,8 +1391,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1357
1391
|
};
|
|
1358
1392
|
} & {
|
|
1359
1393
|
json: {
|
|
1360
|
-
show_as_button?: boolean | undefined;
|
|
1361
1394
|
assign_membership_on_login?: boolean | undefined;
|
|
1395
|
+
show_as_button?: boolean | undefined;
|
|
1362
1396
|
is_signup_enabled?: boolean | undefined;
|
|
1363
1397
|
};
|
|
1364
1398
|
};
|
|
@@ -1486,6 +1520,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1486
1520
|
updated_at?: string | undefined;
|
|
1487
1521
|
}[];
|
|
1488
1522
|
total?: number | undefined;
|
|
1523
|
+
next?: string | undefined;
|
|
1489
1524
|
};
|
|
1490
1525
|
outputFormat: "json";
|
|
1491
1526
|
status: 200;
|
|
@@ -1757,6 +1792,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1757
1792
|
updated_at?: string | undefined;
|
|
1758
1793
|
}[];
|
|
1759
1794
|
total?: number | undefined;
|
|
1795
|
+
next?: string | undefined;
|
|
1760
1796
|
};
|
|
1761
1797
|
outputFormat: "json";
|
|
1762
1798
|
status: 200;
|
|
@@ -1912,6 +1948,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1912
1948
|
created_at: string;
|
|
1913
1949
|
}[];
|
|
1914
1950
|
total?: number | undefined;
|
|
1951
|
+
next?: string | undefined;
|
|
1915
1952
|
};
|
|
1916
1953
|
outputFormat: "json";
|
|
1917
1954
|
status: 200;
|
|
@@ -2089,6 +2126,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
2089
2126
|
id: string;
|
|
2090
2127
|
}[];
|
|
2091
2128
|
total?: number | undefined;
|
|
2129
|
+
next?: string | undefined;
|
|
2092
2130
|
};
|
|
2093
2131
|
outputFormat: "json";
|
|
2094
2132
|
status: 200;
|
|
@@ -3617,6 +3655,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
3617
3655
|
} | undefined;
|
|
3618
3656
|
}[];
|
|
3619
3657
|
total?: number | undefined;
|
|
3658
|
+
next?: string | undefined;
|
|
3620
3659
|
};
|
|
3621
3660
|
outputFormat: "json";
|
|
3622
3661
|
status: 200;
|
|
@@ -6828,7 +6867,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6828
6867
|
};
|
|
6829
6868
|
};
|
|
6830
6869
|
output: {
|
|
6831
|
-
prompt: "status" | "
|
|
6870
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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
6871
|
language: string;
|
|
6833
6872
|
}[];
|
|
6834
6873
|
outputFormat: "json";
|
|
@@ -6866,7 +6905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6866
6905
|
$get: {
|
|
6867
6906
|
input: {
|
|
6868
6907
|
param: {
|
|
6869
|
-
prompt: "status" | "
|
|
6908
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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
6909
|
language: string;
|
|
6871
6910
|
};
|
|
6872
6911
|
} & {
|
|
@@ -6888,7 +6927,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6888
6927
|
$put: {
|
|
6889
6928
|
input: {
|
|
6890
6929
|
param: {
|
|
6891
|
-
prompt: "status" | "
|
|
6930
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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
6931
|
language: string;
|
|
6893
6932
|
};
|
|
6894
6933
|
} & {
|
|
@@ -6912,7 +6951,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
6912
6951
|
$delete: {
|
|
6913
6952
|
input: {
|
|
6914
6953
|
param: {
|
|
6915
|
-
prompt: "status" | "
|
|
6954
|
+
prompt: "status" | "login" | "signup" | "mfa" | "organizations" | "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
6955
|
language: string;
|
|
6917
6956
|
};
|
|
6918
6957
|
} & {
|
|
@@ -7004,7 +7043,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7004
7043
|
active?: boolean | undefined;
|
|
7005
7044
|
} | undefined;
|
|
7006
7045
|
signup?: {
|
|
7007
|
-
status?: "
|
|
7046
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7008
7047
|
verification?: {
|
|
7009
7048
|
active?: boolean | undefined;
|
|
7010
7049
|
} | undefined;
|
|
@@ -7021,7 +7060,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7021
7060
|
active?: boolean | undefined;
|
|
7022
7061
|
} | undefined;
|
|
7023
7062
|
signup?: {
|
|
7024
|
-
status?: "
|
|
7063
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7025
7064
|
} | undefined;
|
|
7026
7065
|
validation?: {
|
|
7027
7066
|
max_length?: number | undefined;
|
|
@@ -7038,7 +7077,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7038
7077
|
active?: boolean | undefined;
|
|
7039
7078
|
} | undefined;
|
|
7040
7079
|
signup?: {
|
|
7041
|
-
status?: "
|
|
7080
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7042
7081
|
} | undefined;
|
|
7043
7082
|
} | undefined;
|
|
7044
7083
|
} | undefined;
|
|
@@ -7138,7 +7177,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7138
7177
|
active?: boolean | undefined;
|
|
7139
7178
|
} | undefined;
|
|
7140
7179
|
signup?: {
|
|
7141
|
-
status?: "
|
|
7180
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7142
7181
|
verification?: {
|
|
7143
7182
|
active?: boolean | undefined;
|
|
7144
7183
|
} | undefined;
|
|
@@ -7155,7 +7194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7155
7194
|
active?: boolean | undefined;
|
|
7156
7195
|
} | undefined;
|
|
7157
7196
|
signup?: {
|
|
7158
|
-
status?: "
|
|
7197
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7159
7198
|
} | undefined;
|
|
7160
7199
|
validation?: {
|
|
7161
7200
|
max_length?: number | undefined;
|
|
@@ -7172,7 +7211,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7172
7211
|
active?: boolean | undefined;
|
|
7173
7212
|
} | undefined;
|
|
7174
7213
|
signup?: {
|
|
7175
|
-
status?: "
|
|
7214
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7176
7215
|
} | undefined;
|
|
7177
7216
|
} | undefined;
|
|
7178
7217
|
} | undefined;
|
|
@@ -7211,6 +7250,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7211
7250
|
is_system?: boolean | undefined;
|
|
7212
7251
|
}[];
|
|
7213
7252
|
total?: number | undefined;
|
|
7253
|
+
next?: string | undefined;
|
|
7214
7254
|
};
|
|
7215
7255
|
outputFormat: "json";
|
|
7216
7256
|
status: 200;
|
|
@@ -7287,7 +7327,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7287
7327
|
active?: boolean | undefined;
|
|
7288
7328
|
} | undefined;
|
|
7289
7329
|
signup?: {
|
|
7290
|
-
status?: "
|
|
7330
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7291
7331
|
verification?: {
|
|
7292
7332
|
active?: boolean | undefined;
|
|
7293
7333
|
} | undefined;
|
|
@@ -7304,7 +7344,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7304
7344
|
active?: boolean | undefined;
|
|
7305
7345
|
} | undefined;
|
|
7306
7346
|
signup?: {
|
|
7307
|
-
status?: "
|
|
7347
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7308
7348
|
} | undefined;
|
|
7309
7349
|
validation?: {
|
|
7310
7350
|
max_length?: number | undefined;
|
|
@@ -7321,7 +7361,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7321
7361
|
active?: boolean | undefined;
|
|
7322
7362
|
} | undefined;
|
|
7323
7363
|
signup?: {
|
|
7324
|
-
status?: "
|
|
7364
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7325
7365
|
} | undefined;
|
|
7326
7366
|
} | undefined;
|
|
7327
7367
|
} | undefined;
|
|
@@ -7466,7 +7506,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7466
7506
|
active?: boolean | undefined;
|
|
7467
7507
|
} | undefined;
|
|
7468
7508
|
signup?: {
|
|
7469
|
-
status?: "
|
|
7509
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7470
7510
|
verification?: {
|
|
7471
7511
|
active?: boolean | undefined;
|
|
7472
7512
|
} | undefined;
|
|
@@ -7483,7 +7523,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7483
7523
|
active?: boolean | undefined;
|
|
7484
7524
|
} | undefined;
|
|
7485
7525
|
signup?: {
|
|
7486
|
-
status?: "
|
|
7526
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7487
7527
|
} | undefined;
|
|
7488
7528
|
validation?: {
|
|
7489
7529
|
max_length?: number | undefined;
|
|
@@ -7500,7 +7540,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7500
7540
|
active?: boolean | undefined;
|
|
7501
7541
|
} | undefined;
|
|
7502
7542
|
signup?: {
|
|
7503
|
-
status?: "
|
|
7543
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7504
7544
|
} | undefined;
|
|
7505
7545
|
} | undefined;
|
|
7506
7546
|
} | undefined;
|
|
@@ -7624,7 +7664,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7624
7664
|
active?: boolean | undefined;
|
|
7625
7665
|
} | undefined;
|
|
7626
7666
|
signup?: {
|
|
7627
|
-
status?: "
|
|
7667
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7628
7668
|
verification?: {
|
|
7629
7669
|
active?: boolean | undefined;
|
|
7630
7670
|
} | undefined;
|
|
@@ -7641,7 +7681,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7641
7681
|
active?: boolean | undefined;
|
|
7642
7682
|
} | undefined;
|
|
7643
7683
|
signup?: {
|
|
7644
|
-
status?: "
|
|
7684
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7645
7685
|
} | undefined;
|
|
7646
7686
|
validation?: {
|
|
7647
7687
|
max_length?: number | undefined;
|
|
@@ -7658,7 +7698,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7658
7698
|
active?: boolean | undefined;
|
|
7659
7699
|
} | undefined;
|
|
7660
7700
|
signup?: {
|
|
7661
|
-
status?: "
|
|
7701
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
7662
7702
|
} | undefined;
|
|
7663
7703
|
} | undefined;
|
|
7664
7704
|
} | undefined;
|
|
@@ -7810,7 +7850,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7810
7850
|
tenant_id: string;
|
|
7811
7851
|
created_at: string;
|
|
7812
7852
|
updated_at: string;
|
|
7813
|
-
deploymentStatus: "
|
|
7853
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7814
7854
|
secrets?: {
|
|
7815
7855
|
[x: string]: string;
|
|
7816
7856
|
} | undefined;
|
|
@@ -7900,7 +7940,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7900
7940
|
tenant_id: string;
|
|
7901
7941
|
created_at: string;
|
|
7902
7942
|
updated_at: string;
|
|
7903
|
-
deploymentStatus: "
|
|
7943
|
+
deploymentStatus: "deployed" | "failed" | "not_required";
|
|
7904
7944
|
secrets?: {
|
|
7905
7945
|
[x: string]: string;
|
|
7906
7946
|
} | undefined;
|
|
@@ -8049,6 +8089,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8049
8089
|
} | undefined;
|
|
8050
8090
|
})[];
|
|
8051
8091
|
total?: number | undefined;
|
|
8092
|
+
next?: string | undefined;
|
|
8052
8093
|
};
|
|
8053
8094
|
outputFormat: "json";
|
|
8054
8095
|
status: 200;
|
|
@@ -8723,7 +8764,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8723
8764
|
created_at: string;
|
|
8724
8765
|
updated_at: string;
|
|
8725
8766
|
name: string;
|
|
8726
|
-
provider: "auth0" | "
|
|
8767
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8727
8768
|
connection: string;
|
|
8728
8769
|
enabled: boolean;
|
|
8729
8770
|
credentials: {
|
|
@@ -8755,7 +8796,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8755
8796
|
created_at: string;
|
|
8756
8797
|
updated_at: string;
|
|
8757
8798
|
name: string;
|
|
8758
|
-
provider: "auth0" | "
|
|
8799
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8759
8800
|
connection: string;
|
|
8760
8801
|
enabled: boolean;
|
|
8761
8802
|
credentials: {
|
|
@@ -8781,7 +8822,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8781
8822
|
} & {
|
|
8782
8823
|
json: {
|
|
8783
8824
|
name: string;
|
|
8784
|
-
provider: "auth0" | "
|
|
8825
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8785
8826
|
connection: string;
|
|
8786
8827
|
credentials: {
|
|
8787
8828
|
domain: string;
|
|
@@ -8798,7 +8839,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8798
8839
|
created_at: string;
|
|
8799
8840
|
updated_at: string;
|
|
8800
8841
|
name: string;
|
|
8801
|
-
provider: "auth0" | "
|
|
8842
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8802
8843
|
connection: string;
|
|
8803
8844
|
enabled: boolean;
|
|
8804
8845
|
credentials: {
|
|
@@ -8829,7 +8870,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8829
8870
|
json: {
|
|
8830
8871
|
id?: string | undefined;
|
|
8831
8872
|
name?: string | undefined;
|
|
8832
|
-
provider?: "auth0" | "
|
|
8873
|
+
provider?: "auth0" | "cognito" | "okta" | "oidc" | undefined;
|
|
8833
8874
|
connection?: string | undefined;
|
|
8834
8875
|
enabled?: boolean | undefined;
|
|
8835
8876
|
credentials?: {
|
|
@@ -8845,7 +8886,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8845
8886
|
created_at: string;
|
|
8846
8887
|
updated_at: string;
|
|
8847
8888
|
name: string;
|
|
8848
|
-
provider: "auth0" | "
|
|
8889
|
+
provider: "auth0" | "cognito" | "okta" | "oidc";
|
|
8849
8890
|
connection: string;
|
|
8850
8891
|
enabled: boolean;
|
|
8851
8892
|
credentials: {
|
|
@@ -8893,7 +8934,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8893
8934
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8894
8935
|
};
|
|
8895
8936
|
id: string;
|
|
8896
|
-
status: "
|
|
8937
|
+
status: "suspended" | "active" | "paused";
|
|
8897
8938
|
filters?: {
|
|
8898
8939
|
type: string;
|
|
8899
8940
|
name: string;
|
|
@@ -8925,7 +8966,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8925
8966
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8926
8967
|
};
|
|
8927
8968
|
id: string;
|
|
8928
|
-
status: "
|
|
8969
|
+
status: "suspended" | "active" | "paused";
|
|
8929
8970
|
filters?: {
|
|
8930
8971
|
type: string;
|
|
8931
8972
|
name: string;
|
|
@@ -8950,7 +8991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8950
8991
|
name: string;
|
|
8951
8992
|
type: "http" | "eventbridge" | "eventgrid" | "splunk" | "datadog" | "sumo";
|
|
8952
8993
|
sink: Record<string, unknown>;
|
|
8953
|
-
status?: "
|
|
8994
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
8954
8995
|
filters?: {
|
|
8955
8996
|
type: string;
|
|
8956
8997
|
name: string;
|
|
@@ -8965,7 +9006,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8965
9006
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
8966
9007
|
};
|
|
8967
9008
|
id: string;
|
|
8968
|
-
status: "
|
|
9009
|
+
status: "suspended" | "active" | "paused";
|
|
8969
9010
|
filters?: {
|
|
8970
9011
|
type: string;
|
|
8971
9012
|
name: string;
|
|
@@ -9000,7 +9041,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9000
9041
|
}[] | undefined;
|
|
9001
9042
|
isPriority?: boolean | undefined;
|
|
9002
9043
|
id?: string | undefined;
|
|
9003
|
-
status?: "
|
|
9044
|
+
status?: "suspended" | "active" | "paused" | undefined;
|
|
9004
9045
|
created_at?: string | undefined;
|
|
9005
9046
|
updated_at?: string | undefined;
|
|
9006
9047
|
};
|
|
@@ -9012,7 +9053,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9012
9053
|
[x: string]: import("hono/utils/types").JSONValue;
|
|
9013
9054
|
};
|
|
9014
9055
|
id: string;
|
|
9015
|
-
status: "
|
|
9056
|
+
status: "suspended" | "active" | "paused";
|
|
9016
9057
|
filters?: {
|
|
9017
9058
|
type: string;
|
|
9018
9059
|
name: string;
|
|
@@ -9063,7 +9104,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9063
9104
|
};
|
|
9064
9105
|
};
|
|
9065
9106
|
output: {
|
|
9066
|
-
type: "
|
|
9107
|
+
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
9108
|
date: string;
|
|
9068
9109
|
isMobile: boolean;
|
|
9069
9110
|
log_id: string;
|
|
@@ -9102,7 +9143,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9102
9143
|
limit: number;
|
|
9103
9144
|
length: number;
|
|
9104
9145
|
logs: {
|
|
9105
|
-
type: "
|
|
9146
|
+
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
9147
|
date: string;
|
|
9107
9148
|
isMobile: boolean;
|
|
9108
9149
|
log_id: string;
|
|
@@ -9138,6 +9179,45 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9138
9179
|
} | undefined;
|
|
9139
9180
|
}[];
|
|
9140
9181
|
total?: number | undefined;
|
|
9182
|
+
next?: string | undefined;
|
|
9183
|
+
} | {
|
|
9184
|
+
logs: {
|
|
9185
|
+
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";
|
|
9186
|
+
date: string;
|
|
9187
|
+
isMobile: boolean;
|
|
9188
|
+
log_id: string;
|
|
9189
|
+
description?: string | undefined;
|
|
9190
|
+
ip?: string | undefined;
|
|
9191
|
+
user_agent?: string | undefined;
|
|
9192
|
+
details?: any;
|
|
9193
|
+
user_id?: string | undefined;
|
|
9194
|
+
user_name?: string | undefined;
|
|
9195
|
+
connection?: string | undefined;
|
|
9196
|
+
connection_id?: string | undefined;
|
|
9197
|
+
client_id?: string | undefined;
|
|
9198
|
+
client_name?: string | undefined;
|
|
9199
|
+
audience?: string | undefined;
|
|
9200
|
+
scope?: string | undefined;
|
|
9201
|
+
strategy?: string | undefined;
|
|
9202
|
+
strategy_type?: string | undefined;
|
|
9203
|
+
hostname?: string | undefined;
|
|
9204
|
+
auth0_client?: {
|
|
9205
|
+
name: string;
|
|
9206
|
+
version: string;
|
|
9207
|
+
env?: {
|
|
9208
|
+
node?: string | undefined;
|
|
9209
|
+
} | undefined;
|
|
9210
|
+
} | undefined;
|
|
9211
|
+
location_info?: {
|
|
9212
|
+
country_code: string;
|
|
9213
|
+
city_name: string;
|
|
9214
|
+
latitude: string;
|
|
9215
|
+
longitude: string;
|
|
9216
|
+
time_zone: string;
|
|
9217
|
+
continent_code: string;
|
|
9218
|
+
} | undefined;
|
|
9219
|
+
}[];
|
|
9220
|
+
next?: string | undefined;
|
|
9141
9221
|
};
|
|
9142
9222
|
outputFormat: "json";
|
|
9143
9223
|
status: 200;
|
|
@@ -9156,7 +9236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9156
9236
|
};
|
|
9157
9237
|
};
|
|
9158
9238
|
output: {
|
|
9159
|
-
type: "
|
|
9239
|
+
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
9240
|
date: string;
|
|
9161
9241
|
isMobile: boolean;
|
|
9162
9242
|
log_id: string;
|
|
@@ -9259,6 +9339,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9259
9339
|
audience?: string | undefined;
|
|
9260
9340
|
}[];
|
|
9261
9341
|
total?: number | undefined;
|
|
9342
|
+
next?: string | undefined;
|
|
9262
9343
|
};
|
|
9263
9344
|
outputFormat: "json";
|
|
9264
9345
|
status: 200;
|
|
@@ -9348,6 +9429,22 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9348
9429
|
updated_at?: string | undefined;
|
|
9349
9430
|
}[];
|
|
9350
9431
|
total?: number | undefined;
|
|
9432
|
+
next?: string | undefined;
|
|
9433
|
+
} | {
|
|
9434
|
+
client_grants: {
|
|
9435
|
+
id: string;
|
|
9436
|
+
client_id: string;
|
|
9437
|
+
audience: string;
|
|
9438
|
+
scope?: string[] | undefined;
|
|
9439
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9440
|
+
allow_any_organization?: boolean | undefined;
|
|
9441
|
+
is_system?: boolean | undefined;
|
|
9442
|
+
subject_type?: "user" | "client" | undefined;
|
|
9443
|
+
authorization_details_types?: string[] | undefined;
|
|
9444
|
+
created_at?: string | undefined;
|
|
9445
|
+
updated_at?: string | undefined;
|
|
9446
|
+
}[];
|
|
9447
|
+
next?: string | undefined;
|
|
9351
9448
|
};
|
|
9352
9449
|
outputFormat: "json";
|
|
9353
9450
|
status: 200;
|
|
@@ -9544,7 +9641,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9544
9641
|
addons?: {
|
|
9545
9642
|
[x: string]: any;
|
|
9546
9643
|
} | undefined;
|
|
9547
|
-
token_endpoint_auth_method?: "none" | "
|
|
9644
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9548
9645
|
client_metadata?: {
|
|
9549
9646
|
[x: string]: string;
|
|
9550
9647
|
} | undefined;
|
|
@@ -9640,7 +9737,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9640
9737
|
addons?: {
|
|
9641
9738
|
[x: string]: any;
|
|
9642
9739
|
} | undefined;
|
|
9643
|
-
token_endpoint_auth_method?: "none" | "
|
|
9740
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9644
9741
|
client_metadata?: {
|
|
9645
9742
|
[x: string]: string;
|
|
9646
9743
|
} | undefined;
|
|
@@ -9685,6 +9782,102 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9685
9782
|
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9686
9783
|
}[];
|
|
9687
9784
|
total?: number | undefined;
|
|
9785
|
+
next?: string | undefined;
|
|
9786
|
+
} | {
|
|
9787
|
+
clients: {
|
|
9788
|
+
created_at: string;
|
|
9789
|
+
updated_at: string;
|
|
9790
|
+
name: string;
|
|
9791
|
+
global: boolean;
|
|
9792
|
+
is_first_party: boolean;
|
|
9793
|
+
oidc_conformant: boolean;
|
|
9794
|
+
auth0_conformant: boolean;
|
|
9795
|
+
sso: boolean;
|
|
9796
|
+
sso_disabled: boolean;
|
|
9797
|
+
cross_origin_authentication: boolean;
|
|
9798
|
+
custom_login_page_on: boolean;
|
|
9799
|
+
require_pushed_authorization_requests: boolean;
|
|
9800
|
+
require_proof_of_possession: boolean;
|
|
9801
|
+
client_id: string;
|
|
9802
|
+
description?: string | undefined;
|
|
9803
|
+
client_secret?: string | undefined;
|
|
9804
|
+
app_type?: "native" | "spa" | "regular_web" | "non_interactive" | "resource_server" | "express_configuration" | "rms" | "box" | "cloudbees" | "concur" | "dropbox" | "mscrm" | "echosign" | "egnyte" | "newrelic" | "office365" | "salesforce" | "sentry" | "sharepoint" | "slack" | "springcm" | "zendesk" | "zoom" | "sso_integration" | "oag" | undefined;
|
|
9805
|
+
logo_uri?: string | undefined;
|
|
9806
|
+
callbacks?: string[] | undefined;
|
|
9807
|
+
allowed_origins?: string[] | undefined;
|
|
9808
|
+
web_origins?: string[] | undefined;
|
|
9809
|
+
client_aliases?: string[] | undefined;
|
|
9810
|
+
allowed_clients?: string[] | undefined;
|
|
9811
|
+
connections?: string[] | undefined;
|
|
9812
|
+
allowed_logout_urls?: string[] | undefined;
|
|
9813
|
+
session_transfer?: {
|
|
9814
|
+
[x: string]: any;
|
|
9815
|
+
} | undefined;
|
|
9816
|
+
oidc_logout?: {
|
|
9817
|
+
[x: string]: any;
|
|
9818
|
+
} | undefined;
|
|
9819
|
+
grant_types?: string[] | undefined;
|
|
9820
|
+
jwt_configuration?: {
|
|
9821
|
+
[x: string]: any;
|
|
9822
|
+
} | undefined;
|
|
9823
|
+
signing_keys?: {
|
|
9824
|
+
[x: string]: any;
|
|
9825
|
+
}[] | undefined;
|
|
9826
|
+
encryption_key?: {
|
|
9827
|
+
[x: string]: any;
|
|
9828
|
+
} | undefined;
|
|
9829
|
+
cross_origin_loc?: string | undefined;
|
|
9830
|
+
custom_login_page?: string | undefined;
|
|
9831
|
+
custom_login_page_preview?: string | undefined;
|
|
9832
|
+
form_template?: string | undefined;
|
|
9833
|
+
addons?: {
|
|
9834
|
+
[x: string]: any;
|
|
9835
|
+
} | undefined;
|
|
9836
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9837
|
+
client_metadata?: {
|
|
9838
|
+
[x: string]: string;
|
|
9839
|
+
} | undefined;
|
|
9840
|
+
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9841
|
+
mobile?: {
|
|
9842
|
+
[x: string]: any;
|
|
9843
|
+
} | undefined;
|
|
9844
|
+
initiate_login_uri?: string | undefined;
|
|
9845
|
+
native_social_login?: {
|
|
9846
|
+
[x: string]: any;
|
|
9847
|
+
} | undefined;
|
|
9848
|
+
refresh_token?: {
|
|
9849
|
+
rotation_type?: "rotating" | "non-rotating" | undefined;
|
|
9850
|
+
leeway?: number | undefined;
|
|
9851
|
+
expiration_type?: "expiring" | "non-expiring" | undefined;
|
|
9852
|
+
token_lifetime?: number | undefined;
|
|
9853
|
+
infinite_token_lifetime?: boolean | undefined;
|
|
9854
|
+
idle_token_lifetime?: number | undefined;
|
|
9855
|
+
infinite_idle_token_lifetime?: boolean | undefined;
|
|
9856
|
+
} | undefined;
|
|
9857
|
+
default_organization?: {
|
|
9858
|
+
[x: string]: any;
|
|
9859
|
+
} | undefined;
|
|
9860
|
+
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9861
|
+
organization_require_behavior?: "no_prompt" | "pre_login_prompt" | "post_login_prompt" | undefined;
|
|
9862
|
+
client_authentication_methods?: {
|
|
9863
|
+
[x: string]: any;
|
|
9864
|
+
} | undefined;
|
|
9865
|
+
signed_request_object?: {
|
|
9866
|
+
[x: string]: any;
|
|
9867
|
+
} | undefined;
|
|
9868
|
+
compliance_level?: "none" | "fapi1_adv_pkj_par" | "fapi1_adv_mtls_par" | "fapi2_sp_pkj_mtls" | "fapi2_sp_mtls_mtls" | undefined;
|
|
9869
|
+
par_request_expiry?: number | undefined;
|
|
9870
|
+
token_quota?: {
|
|
9871
|
+
[x: string]: any;
|
|
9872
|
+
} | undefined;
|
|
9873
|
+
owner_user_id?: string | undefined;
|
|
9874
|
+
registration_type?: "manual" | "open_dcr" | "iat_dcr" | undefined;
|
|
9875
|
+
registration_metadata?: {
|
|
9876
|
+
[x: string]: any;
|
|
9877
|
+
} | undefined;
|
|
9878
|
+
user_linking_mode?: "builtin" | "off" | undefined;
|
|
9879
|
+
}[];
|
|
9880
|
+
next?: string | undefined;
|
|
9688
9881
|
};
|
|
9689
9882
|
outputFormat: "json";
|
|
9690
9883
|
status: 200;
|
|
@@ -9751,7 +9944,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9751
9944
|
addons?: {
|
|
9752
9945
|
[x: string]: any;
|
|
9753
9946
|
} | undefined;
|
|
9754
|
-
token_endpoint_auth_method?: "none" | "
|
|
9947
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9755
9948
|
client_metadata?: {
|
|
9756
9949
|
[x: string]: string;
|
|
9757
9950
|
} | undefined;
|
|
@@ -9861,7 +10054,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9861
10054
|
custom_login_page_preview?: string | undefined;
|
|
9862
10055
|
form_template?: string | undefined;
|
|
9863
10056
|
addons?: Record<string, any> | undefined;
|
|
9864
|
-
token_endpoint_auth_method?: "none" | "
|
|
10057
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9865
10058
|
client_metadata?: Record<string, string> | undefined;
|
|
9866
10059
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
9867
10060
|
mobile?: Record<string, any> | undefined;
|
|
@@ -9941,7 +10134,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9941
10134
|
addons?: {
|
|
9942
10135
|
[x: string]: any;
|
|
9943
10136
|
} | undefined;
|
|
9944
|
-
token_endpoint_auth_method?: "none" | "
|
|
10137
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9945
10138
|
client_metadata?: {
|
|
9946
10139
|
[x: string]: string;
|
|
9947
10140
|
} | undefined;
|
|
@@ -10030,7 +10223,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10030
10223
|
custom_login_page_preview?: string | undefined;
|
|
10031
10224
|
form_template?: string | undefined;
|
|
10032
10225
|
addons?: Record<string, any> | undefined;
|
|
10033
|
-
token_endpoint_auth_method?: "none" | "
|
|
10226
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10034
10227
|
client_metadata?: Record<string, string> | undefined;
|
|
10035
10228
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10036
10229
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10110,7 +10303,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10110
10303
|
addons?: {
|
|
10111
10304
|
[x: string]: any;
|
|
10112
10305
|
} | undefined;
|
|
10113
|
-
token_endpoint_auth_method?: "none" | "
|
|
10306
|
+
token_endpoint_auth_method?: "none" | "client_secret_post" | "client_secret_basic" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10114
10307
|
client_metadata?: {
|
|
10115
10308
|
[x: string]: string;
|
|
10116
10309
|
} | undefined;
|
|
@@ -10232,7 +10425,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10232
10425
|
active?: boolean | undefined;
|
|
10233
10426
|
} | undefined;
|
|
10234
10427
|
signup?: {
|
|
10235
|
-
status?: "
|
|
10428
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10236
10429
|
verification?: {
|
|
10237
10430
|
active?: boolean | undefined;
|
|
10238
10431
|
} | undefined;
|
|
@@ -10249,7 +10442,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10249
10442
|
active?: boolean | undefined;
|
|
10250
10443
|
} | undefined;
|
|
10251
10444
|
signup?: {
|
|
10252
|
-
status?: "
|
|
10445
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10253
10446
|
} | undefined;
|
|
10254
10447
|
validation?: {
|
|
10255
10448
|
max_length?: number | undefined;
|
|
@@ -10266,7 +10459,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10266
10459
|
active?: boolean | undefined;
|
|
10267
10460
|
} | undefined;
|
|
10268
10461
|
signup?: {
|
|
10269
|
-
status?: "
|
|
10462
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10270
10463
|
} | undefined;
|
|
10271
10464
|
} | undefined;
|
|
10272
10465
|
} | undefined;
|
|
@@ -10386,7 +10579,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10386
10579
|
active?: boolean | undefined;
|
|
10387
10580
|
} | undefined;
|
|
10388
10581
|
signup?: {
|
|
10389
|
-
status?: "
|
|
10582
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10390
10583
|
verification?: {
|
|
10391
10584
|
active?: boolean | undefined;
|
|
10392
10585
|
} | undefined;
|
|
@@ -10403,7 +10596,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10403
10596
|
active?: boolean | undefined;
|
|
10404
10597
|
} | undefined;
|
|
10405
10598
|
signup?: {
|
|
10406
|
-
status?: "
|
|
10599
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10407
10600
|
} | undefined;
|
|
10408
10601
|
validation?: {
|
|
10409
10602
|
max_length?: number | undefined;
|
|
@@ -10420,7 +10613,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10420
10613
|
active?: boolean | undefined;
|
|
10421
10614
|
} | undefined;
|
|
10422
10615
|
signup?: {
|
|
10423
|
-
status?: "
|
|
10616
|
+
status?: "required" | "optional" | "disabled" | undefined;
|
|
10424
10617
|
} | undefined;
|
|
10425
10618
|
} | undefined;
|
|
10426
10619
|
} | undefined;
|
|
@@ -10798,6 +10991,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10798
10991
|
}[] | undefined;
|
|
10799
10992
|
}[];
|
|
10800
10993
|
total?: number | undefined;
|
|
10994
|
+
next?: string | undefined;
|
|
10801
10995
|
};
|
|
10802
10996
|
outputFormat: "json";
|
|
10803
10997
|
status: 200;
|
|
@@ -11267,6 +11461,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11267
11461
|
updated_at?: string | undefined;
|
|
11268
11462
|
}[];
|
|
11269
11463
|
total?: number | undefined;
|
|
11464
|
+
next?: string | undefined;
|
|
11270
11465
|
};
|
|
11271
11466
|
outputFormat: "json";
|
|
11272
11467
|
status: 200;
|
|
@@ -11344,6 +11539,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11344
11539
|
idle_expires_at?: string | undefined;
|
|
11345
11540
|
}[];
|
|
11346
11541
|
total?: number | undefined;
|
|
11542
|
+
next?: string | undefined;
|
|
11347
11543
|
};
|
|
11348
11544
|
outputFormat: "json";
|
|
11349
11545
|
status: 200;
|
|
@@ -11374,7 +11570,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11374
11570
|
};
|
|
11375
11571
|
};
|
|
11376
11572
|
output: {
|
|
11377
|
-
type: "
|
|
11573
|
+
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
11574
|
date: string;
|
|
11379
11575
|
isMobile: boolean;
|
|
11380
11576
|
log_id: string;
|
|
@@ -11413,7 +11609,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11413
11609
|
limit: number;
|
|
11414
11610
|
length: number;
|
|
11415
11611
|
logs: {
|
|
11416
|
-
type: "
|
|
11612
|
+
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
11613
|
date: string;
|
|
11418
11614
|
isMobile: boolean;
|
|
11419
11615
|
log_id: string;
|
|
@@ -11449,6 +11645,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11449
11645
|
} | undefined;
|
|
11450
11646
|
}[];
|
|
11451
11647
|
total?: number | undefined;
|
|
11648
|
+
next?: string | undefined;
|
|
11452
11649
|
};
|
|
11453
11650
|
outputFormat: "json";
|
|
11454
11651
|
status: 200;
|
|
@@ -11698,6 +11895,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11698
11895
|
} | undefined;
|
|
11699
11896
|
}[];
|
|
11700
11897
|
total?: number | undefined;
|
|
11898
|
+
next?: string | undefined;
|
|
11701
11899
|
};
|
|
11702
11900
|
outputFormat: "json";
|
|
11703
11901
|
status: 200;
|
|
@@ -12593,12 +12791,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12593
12791
|
background_color: string;
|
|
12594
12792
|
background_image_url: string;
|
|
12595
12793
|
page_layout: "center" | "left" | "right";
|
|
12596
|
-
logo_placement?: "
|
|
12794
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12597
12795
|
};
|
|
12598
12796
|
widget: {
|
|
12599
12797
|
header_text_alignment: "center" | "left" | "right";
|
|
12600
12798
|
logo_height: number;
|
|
12601
|
-
logo_position: "
|
|
12799
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12602
12800
|
logo_url: string;
|
|
12603
12801
|
social_buttons_layout: "bottom" | "top";
|
|
12604
12802
|
};
|
|
@@ -12683,12 +12881,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12683
12881
|
background_color: string;
|
|
12684
12882
|
background_image_url: string;
|
|
12685
12883
|
page_layout: "center" | "left" | "right";
|
|
12686
|
-
logo_placement?: "
|
|
12884
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12687
12885
|
};
|
|
12688
12886
|
widget: {
|
|
12689
12887
|
header_text_alignment: "center" | "left" | "right";
|
|
12690
12888
|
logo_height: number;
|
|
12691
|
-
logo_position: "
|
|
12889
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12692
12890
|
logo_url: string;
|
|
12693
12891
|
social_buttons_layout: "bottom" | "top";
|
|
12694
12892
|
};
|
|
@@ -12762,12 +12960,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12762
12960
|
background_color: string;
|
|
12763
12961
|
background_image_url: string;
|
|
12764
12962
|
page_layout: "center" | "left" | "right";
|
|
12765
|
-
logo_placement?: "
|
|
12963
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
12766
12964
|
};
|
|
12767
12965
|
widget: {
|
|
12768
12966
|
header_text_alignment: "center" | "left" | "right";
|
|
12769
12967
|
logo_height: number;
|
|
12770
|
-
logo_position: "
|
|
12968
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
12771
12969
|
logo_url: string;
|
|
12772
12970
|
social_buttons_layout: "bottom" | "top";
|
|
12773
12971
|
};
|
|
@@ -12924,7 +13122,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12924
13122
|
} & {
|
|
12925
13123
|
json: {
|
|
12926
13124
|
body?: string | undefined;
|
|
12927
|
-
screen?: "
|
|
13125
|
+
screen?: "password" | "login" | "identifier" | "signup" | undefined;
|
|
12928
13126
|
branding?: {
|
|
12929
13127
|
colors?: {
|
|
12930
13128
|
primary: string;
|
|
@@ -13010,12 +13208,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13010
13208
|
background_color: string;
|
|
13011
13209
|
background_image_url: string;
|
|
13012
13210
|
page_layout: "center" | "left" | "right";
|
|
13013
|
-
logo_placement?: "
|
|
13211
|
+
logo_placement?: "widget" | "none" | "chip" | undefined;
|
|
13014
13212
|
} | undefined;
|
|
13015
13213
|
widget?: {
|
|
13016
13214
|
header_text_alignment: "center" | "left" | "right";
|
|
13017
13215
|
logo_height: number;
|
|
13018
|
-
logo_position: "
|
|
13216
|
+
logo_position: "center" | "left" | "right" | "none";
|
|
13019
13217
|
logo_url: string;
|
|
13020
13218
|
social_buttons_layout: "bottom" | "top";
|
|
13021
13219
|
} | undefined;
|
|
@@ -13168,7 +13366,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13168
13366
|
output: {
|
|
13169
13367
|
id: string;
|
|
13170
13368
|
trigger_id: string;
|
|
13171
|
-
status: "
|
|
13369
|
+
status: "unspecified" | "pending" | "final" | "partial" | "canceled" | "suspended";
|
|
13172
13370
|
results: {
|
|
13173
13371
|
action_name: string;
|
|
13174
13372
|
error: {
|
|
@@ -13215,7 +13413,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13215
13413
|
logs: {
|
|
13216
13414
|
action_name: string;
|
|
13217
13415
|
lines: {
|
|
13218
|
-
level: "
|
|
13416
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13219
13417
|
message: string;
|
|
13220
13418
|
}[];
|
|
13221
13419
|
}[];
|
|
@@ -13298,6 +13496,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13298
13496
|
}[] | undefined;
|
|
13299
13497
|
}[];
|
|
13300
13498
|
total?: number | undefined;
|
|
13499
|
+
next?: string | undefined;
|
|
13301
13500
|
};
|
|
13302
13501
|
outputFormat: "json";
|
|
13303
13502
|
status: 200;
|
|
@@ -13706,6 +13905,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13706
13905
|
}[] | undefined;
|
|
13707
13906
|
}[];
|
|
13708
13907
|
total?: number | undefined;
|
|
13908
|
+
next?: string | undefined;
|
|
13709
13909
|
};
|
|
13710
13910
|
outputFormat: "json";
|
|
13711
13911
|
status: 200;
|
|
@@ -13882,7 +14082,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13882
14082
|
args: import("hono/utils/types").JSONValue[];
|
|
13883
14083
|
}[];
|
|
13884
14084
|
logs: {
|
|
13885
|
-
level: "
|
|
14085
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
13886
14086
|
message: string;
|
|
13887
14087
|
}[];
|
|
13888
14088
|
error?: string | undefined;
|