authhero 9.9.1 → 9.11.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 +145 -145
- package/dist/authhero.d.ts +585 -190
- package/dist/authhero.mjs +15529 -14313
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/authorization-code.d.ts +2 -1
- package/dist/types/authentication-flows/client-credentials.d.ts +2 -1
- package/dist/types/authentication-flows/passwordless.d.ts +6 -5
- package/dist/types/authentication-flows/refresh-token.d.ts +2 -1
- package/dist/types/authentication-flows/token-exchange.d.ts +2 -1
- package/dist/types/helpers/client-assertion-replay.d.ts +21 -0
- package/dist/types/helpers/client-assertion.d.ts +24 -2
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/default-destinations.d.ts +7 -1
- package/dist/types/helpers/outbox-destinations/index.d.ts +1 -0
- package/dist/types/helpers/outbox-destinations/pipeline.d.ts +63 -0
- package/dist/types/helpers/outbox-relay.d.ts +3 -0
- package/dist/types/helpers/reserved-claims.d.ts +64 -0
- package/dist/types/helpers/run-outbox-relay.d.ts +8 -0
- package/dist/types/helpers/run-retention.d.ts +5 -0
- package/dist/types/helpers/users-import/map.d.ts +128 -0
- package/dist/types/helpers/users-import/process.d.ts +95 -0
- package/dist/types/helpers/users-import-cleanup.d.ts +26 -0
- package/dist/types/index.d.ts +321 -185
- package/dist/types/routes/auth-api/index.d.ts +44 -44
- package/dist/types/routes/auth-api/passwordless.d.ts +14 -14
- package/dist/types/routes/auth-api/register/index.d.ts +2 -2
- package/dist/types/routes/auth-api/token.d.ts +24 -24
- package/dist/types/routes/management-api/action-triggers.d.ts +0 -2
- package/dist/types/routes/management-api/actions.d.ts +0 -7
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/branding.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +9 -9
- package/dist/types/routes/management-api/clients.d.ts +8 -8
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/email-templates.d.ts +18 -18
- package/dist/types/routes/management-api/failed-events.d.ts +22 -2
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/helpers.d.ts +1 -1
- package/dist/types/routes/management-api/index.d.ts +216 -86
- package/dist/types/routes/management-api/jobs.d.ts +133 -0
- package/dist/types/routes/management-api/keys.d.ts +16 -16
- package/dist/types/routes/management-api/logs.d.ts +4 -4
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/roles.d.ts +1 -1
- package/dist/types/routes/management-api/tenant-export-import.d.ts +5 -5
- package/dist/types/routes/management-api/tenant-operations.d.ts +33 -9
- package/dist/types/routes/management-api/tenants.d.ts +11 -11
- package/dist/types/routes/management-api/users.d.ts +24 -24
- 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/dist/types/state-machines/login-session.d.ts +1 -1
- package/dist/types/types/AuthHeroConfig.d.ts +40 -0
- package/dist/types/types/Bindings.d.ts +14 -0
- package/dist/types/types/OutboxMetrics.d.ts +47 -0
- package/dist/types/types/auth0/UserImport.d.ts +317 -0
- package/dist/types/types/index.d.ts +1 -0
- package/package.json +6 -6
|
@@ -4,12 +4,131 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
4
4
|
Bindings: Bindings;
|
|
5
5
|
Variables: Variables;
|
|
6
6
|
}, import("hono/types").MergeSchemaPath<{
|
|
7
|
+
"/users-imports": {
|
|
8
|
+
$post: {
|
|
9
|
+
input: {
|
|
10
|
+
header: {
|
|
11
|
+
"tenant-id"?: string | undefined;
|
|
12
|
+
};
|
|
13
|
+
} & {
|
|
14
|
+
form: {
|
|
15
|
+
users: any;
|
|
16
|
+
connection_id: string;
|
|
17
|
+
upsert?: string | boolean | undefined;
|
|
18
|
+
external_id?: string | undefined;
|
|
19
|
+
send_completion_email?: string | boolean | undefined;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
output: {
|
|
23
|
+
id: string;
|
|
24
|
+
type: string;
|
|
25
|
+
status: "pending" | "failed" | "completed";
|
|
26
|
+
created_at?: string | undefined;
|
|
27
|
+
connection_id?: string | undefined;
|
|
28
|
+
external_id?: string | undefined;
|
|
29
|
+
percentage_done?: number | undefined;
|
|
30
|
+
time_left_seconds?: number | undefined;
|
|
31
|
+
status_details?: string | undefined;
|
|
32
|
+
summary?: {
|
|
33
|
+
failed: number;
|
|
34
|
+
updated: number;
|
|
35
|
+
inserted: number;
|
|
36
|
+
total: number;
|
|
37
|
+
} | undefined;
|
|
38
|
+
};
|
|
39
|
+
outputFormat: "json";
|
|
40
|
+
status: 202;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
} & {
|
|
44
|
+
"/:id": {
|
|
45
|
+
$get: {
|
|
46
|
+
input: {
|
|
47
|
+
param: {
|
|
48
|
+
id: string;
|
|
49
|
+
};
|
|
50
|
+
} & {
|
|
51
|
+
header: {
|
|
52
|
+
"tenant-id"?: string | undefined;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
output: {
|
|
56
|
+
id: string;
|
|
57
|
+
type: string;
|
|
58
|
+
status: "pending" | "failed" | "completed";
|
|
59
|
+
created_at?: string | undefined;
|
|
60
|
+
connection_id?: string | undefined;
|
|
61
|
+
external_id?: string | undefined;
|
|
62
|
+
percentage_done?: number | undefined;
|
|
63
|
+
time_left_seconds?: number | undefined;
|
|
64
|
+
status_details?: string | undefined;
|
|
65
|
+
summary?: {
|
|
66
|
+
failed: number;
|
|
67
|
+
updated: number;
|
|
68
|
+
inserted: number;
|
|
69
|
+
total: number;
|
|
70
|
+
} | undefined;
|
|
71
|
+
};
|
|
72
|
+
outputFormat: "json";
|
|
73
|
+
status: 200;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
} & {
|
|
77
|
+
"/:id/errors": {
|
|
78
|
+
$get: {
|
|
79
|
+
input: {
|
|
80
|
+
param: {
|
|
81
|
+
id: string;
|
|
82
|
+
};
|
|
83
|
+
} & {
|
|
84
|
+
query: {
|
|
85
|
+
page?: unknown;
|
|
86
|
+
per_page?: unknown;
|
|
87
|
+
};
|
|
88
|
+
} & {
|
|
89
|
+
header: {
|
|
90
|
+
"tenant-id"?: string | undefined;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
output: {};
|
|
94
|
+
outputFormat: string;
|
|
95
|
+
status: 204;
|
|
96
|
+
} | {
|
|
97
|
+
input: {
|
|
98
|
+
param: {
|
|
99
|
+
id: string;
|
|
100
|
+
};
|
|
101
|
+
} & {
|
|
102
|
+
query: {
|
|
103
|
+
page?: unknown;
|
|
104
|
+
per_page?: unknown;
|
|
105
|
+
};
|
|
106
|
+
} & {
|
|
107
|
+
header: {
|
|
108
|
+
"tenant-id"?: string | undefined;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
output: {
|
|
112
|
+
user: {
|
|
113
|
+
[x: string]: import("hono/utils/types").JSONValue;
|
|
114
|
+
};
|
|
115
|
+
errors: {
|
|
116
|
+
code: string;
|
|
117
|
+
message: string;
|
|
118
|
+
path?: string | undefined;
|
|
119
|
+
}[];
|
|
120
|
+
}[];
|
|
121
|
+
outputFormat: "json";
|
|
122
|
+
status: 200;
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
}, "/jobs"> & import("hono/types").MergeSchemaPath<{
|
|
7
126
|
"/export": {
|
|
8
127
|
$get: {
|
|
9
128
|
input: {
|
|
10
129
|
query: {
|
|
11
|
-
include_password_hashes?: "
|
|
12
|
-
gzip?: "
|
|
130
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
131
|
+
gzip?: "true" | "false" | undefined;
|
|
13
132
|
};
|
|
14
133
|
} & {
|
|
15
134
|
header: {
|
|
@@ -22,8 +141,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
22
141
|
} | {
|
|
23
142
|
input: {
|
|
24
143
|
query: {
|
|
25
|
-
include_password_hashes?: "
|
|
26
|
-
gzip?: "
|
|
144
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
145
|
+
gzip?: "true" | "false" | undefined;
|
|
27
146
|
};
|
|
28
147
|
} & {
|
|
29
148
|
header: {
|
|
@@ -42,7 +161,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
42
161
|
$post: {
|
|
43
162
|
input: {
|
|
44
163
|
query: {
|
|
45
|
-
include_password_hashes?: "
|
|
164
|
+
include_password_hashes?: "true" | "false" | undefined;
|
|
46
165
|
};
|
|
47
166
|
} & {
|
|
48
167
|
header: {
|
|
@@ -96,7 +215,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
96
215
|
};
|
|
97
216
|
} & {
|
|
98
217
|
json: {
|
|
99
|
-
type: "email" | "
|
|
218
|
+
type: "email" | "totp" | "phone" | "push" | "passkey" | "webauthn-roaming" | "webauthn-platform";
|
|
100
219
|
phone_number?: string | undefined;
|
|
101
220
|
totp_secret?: string | undefined;
|
|
102
221
|
credential_id?: string | undefined;
|
|
@@ -236,7 +355,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
236
355
|
};
|
|
237
356
|
};
|
|
238
357
|
output: {
|
|
239
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
358
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
240
359
|
enabled: boolean;
|
|
241
360
|
trial_expired?: boolean | undefined;
|
|
242
361
|
}[];
|
|
@@ -391,7 +510,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
391
510
|
$get: {
|
|
392
511
|
input: {
|
|
393
512
|
param: {
|
|
394
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
513
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
395
514
|
};
|
|
396
515
|
} & {
|
|
397
516
|
header: {
|
|
@@ -399,7 +518,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
399
518
|
};
|
|
400
519
|
};
|
|
401
520
|
output: {
|
|
402
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
521
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
403
522
|
enabled: boolean;
|
|
404
523
|
trial_expired?: boolean | undefined;
|
|
405
524
|
};
|
|
@@ -412,7 +531,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
412
531
|
$put: {
|
|
413
532
|
input: {
|
|
414
533
|
param: {
|
|
415
|
-
factor_name: "email" | "sms" | "otp" | "duo" | "
|
|
534
|
+
factor_name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
416
535
|
};
|
|
417
536
|
} & {
|
|
418
537
|
header: {
|
|
@@ -424,7 +543,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
424
543
|
};
|
|
425
544
|
};
|
|
426
545
|
output: {
|
|
427
|
-
name: "email" | "sms" | "otp" | "duo" | "
|
|
546
|
+
name: "email" | "sms" | "otp" | "duo" | "push-notification" | "webauthn-roaming" | "webauthn-platform" | "recovery-code";
|
|
428
547
|
enabled: boolean;
|
|
429
548
|
trial_expired?: boolean | undefined;
|
|
430
549
|
};
|
|
@@ -1202,12 +1321,12 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
1202
1321
|
invitee: {
|
|
1203
1322
|
email?: string | undefined;
|
|
1204
1323
|
};
|
|
1324
|
+
id?: string | undefined;
|
|
1205
1325
|
app_metadata?: Record<string, any> | undefined;
|
|
1206
1326
|
user_metadata?: Record<string, any> | undefined;
|
|
1207
|
-
id?: string | undefined;
|
|
1208
1327
|
connection_id?: string | undefined;
|
|
1209
|
-
ttl_sec?: number | undefined;
|
|
1210
1328
|
roles?: string[] | undefined;
|
|
1329
|
+
ttl_sec?: number | undefined;
|
|
1211
1330
|
send_invitation_email?: boolean | undefined;
|
|
1212
1331
|
};
|
|
1213
1332
|
};
|
|
@@ -7035,7 +7154,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7035
7154
|
};
|
|
7036
7155
|
};
|
|
7037
7156
|
output: {
|
|
7038
|
-
prompt: "
|
|
7157
|
+
prompt: "status" | "signup" | "login" | "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";
|
|
7039
7158
|
language: string;
|
|
7040
7159
|
}[];
|
|
7041
7160
|
outputFormat: "json";
|
|
@@ -7073,7 +7192,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7073
7192
|
$get: {
|
|
7074
7193
|
input: {
|
|
7075
7194
|
param: {
|
|
7076
|
-
prompt: "
|
|
7195
|
+
prompt: "status" | "signup" | "login" | "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";
|
|
7077
7196
|
language: string;
|
|
7078
7197
|
};
|
|
7079
7198
|
} & {
|
|
@@ -7095,7 +7214,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7095
7214
|
$put: {
|
|
7096
7215
|
input: {
|
|
7097
7216
|
param: {
|
|
7098
|
-
prompt: "
|
|
7217
|
+
prompt: "status" | "signup" | "login" | "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";
|
|
7099
7218
|
language: string;
|
|
7100
7219
|
};
|
|
7101
7220
|
} & {
|
|
@@ -7119,7 +7238,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
7119
7238
|
$delete: {
|
|
7120
7239
|
input: {
|
|
7121
7240
|
param: {
|
|
7122
|
-
prompt: "
|
|
7241
|
+
prompt: "status" | "signup" | "login" | "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";
|
|
7123
7242
|
language: string;
|
|
7124
7243
|
};
|
|
7125
7244
|
} & {
|
|
@@ -8729,9 +8848,9 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8729
8848
|
tenant_id: string;
|
|
8730
8849
|
event_type: string;
|
|
8731
8850
|
log_type: string;
|
|
8732
|
-
category: "
|
|
8851
|
+
category: "system" | "user_action" | "admin_action" | "api";
|
|
8733
8852
|
actor: {
|
|
8734
|
-
type: "
|
|
8853
|
+
type: "user" | "system" | "client_credentials" | "admin" | "api_key";
|
|
8735
8854
|
id?: string | undefined;
|
|
8736
8855
|
email?: string | undefined;
|
|
8737
8856
|
org_id?: string | undefined;
|
|
@@ -8814,6 +8933,26 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
8814
8933
|
status: 200;
|
|
8815
8934
|
};
|
|
8816
8935
|
};
|
|
8936
|
+
} & {
|
|
8937
|
+
"/bulk-retry": {
|
|
8938
|
+
$post: {
|
|
8939
|
+
input: {
|
|
8940
|
+
header: {
|
|
8941
|
+
"tenant-id"?: string | undefined;
|
|
8942
|
+
};
|
|
8943
|
+
} & {
|
|
8944
|
+
json: {
|
|
8945
|
+
ids: string[];
|
|
8946
|
+
};
|
|
8947
|
+
};
|
|
8948
|
+
output: {
|
|
8949
|
+
replayed: string[];
|
|
8950
|
+
not_found: string[];
|
|
8951
|
+
};
|
|
8952
|
+
outputFormat: "json";
|
|
8953
|
+
status: 200;
|
|
8954
|
+
};
|
|
8955
|
+
};
|
|
8817
8956
|
} & {
|
|
8818
8957
|
"/:id/retry": {
|
|
8819
8958
|
$post: {
|
|
@@ -9382,7 +9521,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9382
9521
|
};
|
|
9383
9522
|
};
|
|
9384
9523
|
output: {
|
|
9385
|
-
type: "
|
|
9524
|
+
type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9386
9525
|
date: string;
|
|
9387
9526
|
isMobile: boolean;
|
|
9388
9527
|
log_id: string;
|
|
@@ -9421,7 +9560,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9421
9560
|
limit: number;
|
|
9422
9561
|
length: number;
|
|
9423
9562
|
logs: {
|
|
9424
|
-
type: "
|
|
9563
|
+
type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9425
9564
|
date: string;
|
|
9426
9565
|
isMobile: boolean;
|
|
9427
9566
|
log_id: string;
|
|
@@ -9460,7 +9599,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9460
9599
|
next?: string | undefined;
|
|
9461
9600
|
} | {
|
|
9462
9601
|
logs: {
|
|
9463
|
-
type: "
|
|
9602
|
+
type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9464
9603
|
date: string;
|
|
9465
9604
|
isMobile: boolean;
|
|
9466
9605
|
log_id: string;
|
|
@@ -9514,7 +9653,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9514
9653
|
};
|
|
9515
9654
|
};
|
|
9516
9655
|
output: {
|
|
9517
|
-
type: "
|
|
9656
|
+
type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
9518
9657
|
date: string;
|
|
9519
9658
|
isMobile: boolean;
|
|
9520
9659
|
log_id: string;
|
|
@@ -9670,7 +9809,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9670
9809
|
audience?: string | undefined;
|
|
9671
9810
|
client_id?: string | undefined;
|
|
9672
9811
|
allow_any_organization?: string | undefined;
|
|
9673
|
-
subject_type?: "
|
|
9812
|
+
subject_type?: "user" | "client" | undefined;
|
|
9674
9813
|
};
|
|
9675
9814
|
} & {
|
|
9676
9815
|
header: {
|
|
@@ -9685,7 +9824,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9685
9824
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9686
9825
|
allow_any_organization?: boolean | undefined;
|
|
9687
9826
|
is_system?: boolean | undefined;
|
|
9688
|
-
subject_type?: "
|
|
9827
|
+
subject_type?: "user" | "client" | undefined;
|
|
9689
9828
|
authorization_details_types?: string[] | undefined;
|
|
9690
9829
|
created_at?: string | undefined;
|
|
9691
9830
|
updated_at?: string | undefined;
|
|
@@ -9701,7 +9840,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9701
9840
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9702
9841
|
allow_any_organization?: boolean | undefined;
|
|
9703
9842
|
is_system?: boolean | undefined;
|
|
9704
|
-
subject_type?: "
|
|
9843
|
+
subject_type?: "user" | "client" | undefined;
|
|
9705
9844
|
authorization_details_types?: string[] | undefined;
|
|
9706
9845
|
created_at?: string | undefined;
|
|
9707
9846
|
updated_at?: string | undefined;
|
|
@@ -9717,7 +9856,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9717
9856
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9718
9857
|
allow_any_organization?: boolean | undefined;
|
|
9719
9858
|
is_system?: boolean | undefined;
|
|
9720
|
-
subject_type?: "
|
|
9859
|
+
subject_type?: "user" | "client" | undefined;
|
|
9721
9860
|
authorization_details_types?: string[] | undefined;
|
|
9722
9861
|
created_at?: string | undefined;
|
|
9723
9862
|
updated_at?: string | undefined;
|
|
@@ -9748,7 +9887,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9748
9887
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9749
9888
|
allow_any_organization?: boolean | undefined;
|
|
9750
9889
|
is_system?: boolean | undefined;
|
|
9751
|
-
subject_type?: "
|
|
9890
|
+
subject_type?: "user" | "client" | undefined;
|
|
9752
9891
|
authorization_details_types?: string[] | undefined;
|
|
9753
9892
|
created_at?: string | undefined;
|
|
9754
9893
|
updated_at?: string | undefined;
|
|
@@ -9793,7 +9932,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9793
9932
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9794
9933
|
allow_any_organization?: boolean | undefined;
|
|
9795
9934
|
is_system?: boolean | undefined;
|
|
9796
|
-
subject_type?: "
|
|
9935
|
+
subject_type?: "user" | "client" | undefined;
|
|
9797
9936
|
authorization_details_types?: string[] | undefined;
|
|
9798
9937
|
};
|
|
9799
9938
|
};
|
|
@@ -9805,7 +9944,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9805
9944
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9806
9945
|
allow_any_organization?: boolean | undefined;
|
|
9807
9946
|
is_system?: boolean | undefined;
|
|
9808
|
-
subject_type?: "
|
|
9947
|
+
subject_type?: "user" | "client" | undefined;
|
|
9809
9948
|
authorization_details_types?: string[] | undefined;
|
|
9810
9949
|
created_at?: string | undefined;
|
|
9811
9950
|
updated_at?: string | undefined;
|
|
@@ -9829,7 +9968,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9829
9968
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9830
9969
|
allow_any_organization?: boolean | undefined;
|
|
9831
9970
|
is_system?: boolean | undefined;
|
|
9832
|
-
subject_type?: "
|
|
9971
|
+
subject_type?: "user" | "client" | undefined;
|
|
9833
9972
|
authorization_details_types?: string[] | undefined;
|
|
9834
9973
|
};
|
|
9835
9974
|
};
|
|
@@ -9841,7 +9980,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9841
9980
|
organization_usage?: "deny" | "allow" | "require" | undefined;
|
|
9842
9981
|
allow_any_organization?: boolean | undefined;
|
|
9843
9982
|
is_system?: boolean | undefined;
|
|
9844
|
-
subject_type?: "
|
|
9983
|
+
subject_type?: "user" | "client" | undefined;
|
|
9845
9984
|
authorization_details_types?: string[] | undefined;
|
|
9846
9985
|
created_at?: string | undefined;
|
|
9847
9986
|
updated_at?: string | undefined;
|
|
@@ -9925,7 +10064,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
9925
10064
|
addons?: {
|
|
9926
10065
|
[x: string]: any;
|
|
9927
10066
|
} | undefined;
|
|
9928
|
-
token_endpoint_auth_method?: "
|
|
10067
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
9929
10068
|
client_metadata?: {
|
|
9930
10069
|
[x: string]: string;
|
|
9931
10070
|
} | undefined;
|
|
@@ -10027,7 +10166,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10027
10166
|
addons?: {
|
|
10028
10167
|
[x: string]: any;
|
|
10029
10168
|
} | undefined;
|
|
10030
|
-
token_endpoint_auth_method?: "
|
|
10169
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10031
10170
|
client_metadata?: {
|
|
10032
10171
|
[x: string]: string;
|
|
10033
10172
|
} | undefined;
|
|
@@ -10129,7 +10268,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10129
10268
|
addons?: {
|
|
10130
10269
|
[x: string]: any;
|
|
10131
10270
|
} | undefined;
|
|
10132
|
-
token_endpoint_auth_method?: "
|
|
10271
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10133
10272
|
client_metadata?: {
|
|
10134
10273
|
[x: string]: string;
|
|
10135
10274
|
} | undefined;
|
|
@@ -10246,7 +10385,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10246
10385
|
addons?: {
|
|
10247
10386
|
[x: string]: any;
|
|
10248
10387
|
} | undefined;
|
|
10249
|
-
token_endpoint_auth_method?: "
|
|
10388
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10250
10389
|
client_metadata?: {
|
|
10251
10390
|
[x: string]: string;
|
|
10252
10391
|
} | undefined;
|
|
@@ -10364,7 +10503,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10364
10503
|
custom_login_page_preview?: string | undefined;
|
|
10365
10504
|
form_template?: string | undefined;
|
|
10366
10505
|
addons?: Record<string, any> | undefined;
|
|
10367
|
-
token_endpoint_auth_method?: "
|
|
10506
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10368
10507
|
client_metadata?: Record<string, string> | undefined;
|
|
10369
10508
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10370
10509
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10450,7 +10589,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10450
10589
|
addons?: {
|
|
10451
10590
|
[x: string]: any;
|
|
10452
10591
|
} | undefined;
|
|
10453
|
-
token_endpoint_auth_method?: "
|
|
10592
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10454
10593
|
client_metadata?: {
|
|
10455
10594
|
[x: string]: string;
|
|
10456
10595
|
} | undefined;
|
|
@@ -10547,7 +10686,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10547
10686
|
custom_login_page_preview?: string | undefined;
|
|
10548
10687
|
form_template?: string | undefined;
|
|
10549
10688
|
addons?: Record<string, any> | undefined;
|
|
10550
|
-
token_endpoint_auth_method?: "
|
|
10689
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10551
10690
|
client_metadata?: Record<string, string> | undefined;
|
|
10552
10691
|
hide_sign_up_disabled_error?: boolean | undefined;
|
|
10553
10692
|
mobile?: Record<string, any> | undefined;
|
|
@@ -10633,7 +10772,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
10633
10772
|
addons?: {
|
|
10634
10773
|
[x: string]: any;
|
|
10635
10774
|
} | undefined;
|
|
10636
|
-
token_endpoint_auth_method?: "
|
|
10775
|
+
token_endpoint_auth_method?: "client_secret_post" | "client_secret_basic" | "none" | "client_secret_jwt" | "private_key_jwt" | undefined;
|
|
10637
10776
|
client_metadata?: {
|
|
10638
10777
|
[x: string]: string;
|
|
10639
10778
|
} | undefined;
|
|
@@ -11093,8 +11232,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11093
11232
|
};
|
|
11094
11233
|
};
|
|
11095
11234
|
output: {
|
|
11096
|
-
kid: string;
|
|
11097
11235
|
type: "jwt_signing" | "saml_encryption";
|
|
11236
|
+
kid: string;
|
|
11098
11237
|
cert: string;
|
|
11099
11238
|
fingerprint: string;
|
|
11100
11239
|
thumbprint: string;
|
|
@@ -11132,8 +11271,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11132
11271
|
};
|
|
11133
11272
|
};
|
|
11134
11273
|
output: {
|
|
11135
|
-
kid: string;
|
|
11136
11274
|
type: "jwt_signing" | "saml_encryption";
|
|
11275
|
+
kid: string;
|
|
11137
11276
|
cert: string;
|
|
11138
11277
|
fingerprint: string;
|
|
11139
11278
|
thumbprint: string;
|
|
@@ -11170,8 +11309,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11170
11309
|
};
|
|
11171
11310
|
};
|
|
11172
11311
|
output: {
|
|
11173
|
-
kid: string;
|
|
11174
11312
|
type: "jwt_signing" | "saml_encryption";
|
|
11313
|
+
kid: string;
|
|
11175
11314
|
cert: string;
|
|
11176
11315
|
fingerprint: string;
|
|
11177
11316
|
thumbprint: string;
|
|
@@ -11210,8 +11349,8 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
11210
11349
|
};
|
|
11211
11350
|
};
|
|
11212
11351
|
output: {
|
|
11213
|
-
kid: string;
|
|
11214
11352
|
type: "jwt_signing" | "saml_encryption";
|
|
11353
|
+
kid: string;
|
|
11215
11354
|
cert: string;
|
|
11216
11355
|
fingerprint: string;
|
|
11217
11356
|
thumbprint: string;
|
|
@@ -12068,12 +12207,11 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12068
12207
|
};
|
|
12069
12208
|
};
|
|
12070
12209
|
output: {
|
|
12071
|
-
|
|
12210
|
+
id: string;
|
|
12072
12211
|
user_id: string;
|
|
12212
|
+
created_at: string;
|
|
12073
12213
|
client_id: string;
|
|
12074
12214
|
rotating: boolean;
|
|
12075
|
-
id: string;
|
|
12076
|
-
login_id: string;
|
|
12077
12215
|
device: {
|
|
12078
12216
|
initial_user_agent: string;
|
|
12079
12217
|
initial_ip: string;
|
|
@@ -12082,32 +12220,29 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12082
12220
|
last_ip: string;
|
|
12083
12221
|
last_asn: string;
|
|
12084
12222
|
};
|
|
12223
|
+
login_id: string;
|
|
12085
12224
|
resource_servers: {
|
|
12086
12225
|
audience: string;
|
|
12087
12226
|
scopes: string;
|
|
12088
12227
|
}[];
|
|
12228
|
+
revoked_at?: string | undefined;
|
|
12089
12229
|
expires_at?: string | undefined;
|
|
12230
|
+
idle_expires_at?: string | undefined;
|
|
12090
12231
|
session_id?: string | undefined;
|
|
12232
|
+
organization?: string | undefined;
|
|
12091
12233
|
auth_connection?: string | undefined;
|
|
12092
12234
|
auth_strategy?: {
|
|
12093
12235
|
strategy: string;
|
|
12094
12236
|
strategy_type: string;
|
|
12095
12237
|
} | undefined;
|
|
12096
|
-
organization?: string | undefined;
|
|
12097
|
-
revoked_at?: string | undefined;
|
|
12098
|
-
idle_expires_at?: string | undefined;
|
|
12099
12238
|
last_exchanged_at?: string | undefined;
|
|
12100
12239
|
}[] | {
|
|
12101
|
-
start: number;
|
|
12102
|
-
limit: number;
|
|
12103
|
-
length: number;
|
|
12104
12240
|
tokens: {
|
|
12105
|
-
|
|
12241
|
+
id: string;
|
|
12106
12242
|
user_id: string;
|
|
12243
|
+
created_at: string;
|
|
12107
12244
|
client_id: string;
|
|
12108
12245
|
rotating: boolean;
|
|
12109
|
-
id: string;
|
|
12110
|
-
login_id: string;
|
|
12111
12246
|
device: {
|
|
12112
12247
|
initial_user_agent: string;
|
|
12113
12248
|
initial_ip: string;
|
|
@@ -12116,32 +12251,34 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12116
12251
|
last_ip: string;
|
|
12117
12252
|
last_asn: string;
|
|
12118
12253
|
};
|
|
12254
|
+
login_id: string;
|
|
12119
12255
|
resource_servers: {
|
|
12120
12256
|
audience: string;
|
|
12121
12257
|
scopes: string;
|
|
12122
12258
|
}[];
|
|
12259
|
+
revoked_at?: string | undefined;
|
|
12123
12260
|
expires_at?: string | undefined;
|
|
12261
|
+
idle_expires_at?: string | undefined;
|
|
12124
12262
|
session_id?: string | undefined;
|
|
12263
|
+
organization?: string | undefined;
|
|
12125
12264
|
auth_connection?: string | undefined;
|
|
12126
12265
|
auth_strategy?: {
|
|
12127
12266
|
strategy: string;
|
|
12128
12267
|
strategy_type: string;
|
|
12129
12268
|
} | undefined;
|
|
12130
|
-
organization?: string | undefined;
|
|
12131
|
-
revoked_at?: string | undefined;
|
|
12132
|
-
idle_expires_at?: string | undefined;
|
|
12133
12269
|
last_exchanged_at?: string | undefined;
|
|
12134
12270
|
}[];
|
|
12135
|
-
total?: number | undefined;
|
|
12136
12271
|
next?: string | undefined;
|
|
12137
12272
|
} | {
|
|
12273
|
+
start: number;
|
|
12274
|
+
limit: number;
|
|
12275
|
+
length: number;
|
|
12138
12276
|
tokens: {
|
|
12139
|
-
|
|
12277
|
+
id: string;
|
|
12140
12278
|
user_id: string;
|
|
12279
|
+
created_at: string;
|
|
12141
12280
|
client_id: string;
|
|
12142
12281
|
rotating: boolean;
|
|
12143
|
-
id: string;
|
|
12144
|
-
login_id: string;
|
|
12145
12282
|
device: {
|
|
12146
12283
|
initial_user_agent: string;
|
|
12147
12284
|
initial_ip: string;
|
|
@@ -12150,22 +12287,24 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12150
12287
|
last_ip: string;
|
|
12151
12288
|
last_asn: string;
|
|
12152
12289
|
};
|
|
12290
|
+
login_id: string;
|
|
12153
12291
|
resource_servers: {
|
|
12154
12292
|
audience: string;
|
|
12155
12293
|
scopes: string;
|
|
12156
12294
|
}[];
|
|
12295
|
+
revoked_at?: string | undefined;
|
|
12157
12296
|
expires_at?: string | undefined;
|
|
12297
|
+
idle_expires_at?: string | undefined;
|
|
12158
12298
|
session_id?: string | undefined;
|
|
12299
|
+
organization?: string | undefined;
|
|
12159
12300
|
auth_connection?: string | undefined;
|
|
12160
12301
|
auth_strategy?: {
|
|
12161
12302
|
strategy: string;
|
|
12162
12303
|
strategy_type: string;
|
|
12163
12304
|
} | undefined;
|
|
12164
|
-
organization?: string | undefined;
|
|
12165
|
-
revoked_at?: string | undefined;
|
|
12166
|
-
idle_expires_at?: string | undefined;
|
|
12167
12305
|
last_exchanged_at?: string | undefined;
|
|
12168
12306
|
}[];
|
|
12307
|
+
total?: number | undefined;
|
|
12169
12308
|
next?: string | undefined;
|
|
12170
12309
|
};
|
|
12171
12310
|
outputFormat: "json";
|
|
@@ -12214,7 +12353,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12214
12353
|
};
|
|
12215
12354
|
};
|
|
12216
12355
|
output: {
|
|
12217
|
-
type: "
|
|
12356
|
+
type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12218
12357
|
date: string;
|
|
12219
12358
|
isMobile: boolean;
|
|
12220
12359
|
log_id: string;
|
|
@@ -12253,7 +12392,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
12253
12392
|
limit: number;
|
|
12254
12393
|
length: number;
|
|
12255
12394
|
logs: {
|
|
12256
|
-
type: "
|
|
12395
|
+
type: "fn" | "i" | "sui" | "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" | "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" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12257
12396
|
date: string;
|
|
12258
12397
|
isMobile: boolean;
|
|
12259
12398
|
log_id: string;
|
|
@@ -13097,7 +13236,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13097
13236
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13098
13237
|
custom_domain_id: string;
|
|
13099
13238
|
primary: boolean;
|
|
13100
|
-
status: "pending" | "
|
|
13239
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13101
13240
|
verification_method?: "txt" | undefined;
|
|
13102
13241
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13103
13242
|
domain_metadata?: {
|
|
@@ -13138,7 +13277,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13138
13277
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13139
13278
|
custom_domain_id: string;
|
|
13140
13279
|
primary: boolean;
|
|
13141
|
-
status: "pending" | "
|
|
13280
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13142
13281
|
verification_method?: "txt" | undefined;
|
|
13143
13282
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13144
13283
|
domain_metadata?: {
|
|
@@ -13202,7 +13341,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13202
13341
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13203
13342
|
custom_domain_id: string;
|
|
13204
13343
|
primary: boolean;
|
|
13205
|
-
status: "pending" | "
|
|
13344
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13206
13345
|
verification_method?: "txt" | undefined;
|
|
13207
13346
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13208
13347
|
domain_metadata?: {
|
|
@@ -13249,7 +13388,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13249
13388
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13250
13389
|
custom_domain_id: string;
|
|
13251
13390
|
primary: boolean;
|
|
13252
|
-
status: "pending" | "
|
|
13391
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13253
13392
|
verification_method?: "txt" | undefined;
|
|
13254
13393
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13255
13394
|
domain_metadata?: {
|
|
@@ -13295,7 +13434,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13295
13434
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13296
13435
|
custom_domain_id: string;
|
|
13297
13436
|
primary: boolean;
|
|
13298
|
-
status: "pending" | "
|
|
13437
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13299
13438
|
verification_method?: "txt" | undefined;
|
|
13300
13439
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13301
13440
|
domain_metadata?: {
|
|
@@ -13336,7 +13475,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13336
13475
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
13337
13476
|
custom_domain_id: string;
|
|
13338
13477
|
primary: boolean;
|
|
13339
|
-
status: "pending" | "
|
|
13478
|
+
status: "pending" | "disabled" | "ready" | "pending_verification";
|
|
13340
13479
|
verification_method?: "txt" | undefined;
|
|
13341
13480
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
13342
13481
|
domain_metadata?: {
|
|
@@ -13909,7 +14048,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13909
14048
|
deployed_at?: string | undefined;
|
|
13910
14049
|
secrets?: {
|
|
13911
14050
|
name: string;
|
|
13912
|
-
value?: string | undefined;
|
|
13913
14051
|
}[] | undefined;
|
|
13914
14052
|
};
|
|
13915
14053
|
created_at: string;
|
|
@@ -13935,7 +14073,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13935
14073
|
json: {
|
|
13936
14074
|
bindings: {
|
|
13937
14075
|
ref: {
|
|
13938
|
-
type?: "
|
|
14076
|
+
type?: "action_id" | "action_name" | undefined;
|
|
13939
14077
|
value?: string | undefined;
|
|
13940
14078
|
id?: string | undefined;
|
|
13941
14079
|
name?: string | undefined;
|
|
@@ -13971,7 +14109,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
13971
14109
|
deployed_at?: string | undefined;
|
|
13972
14110
|
secrets?: {
|
|
13973
14111
|
name: string;
|
|
13974
|
-
value?: string | undefined;
|
|
13975
14112
|
}[] | undefined;
|
|
13976
14113
|
};
|
|
13977
14114
|
created_at: string;
|
|
@@ -14057,7 +14194,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14057
14194
|
logs: {
|
|
14058
14195
|
action_name: string;
|
|
14059
14196
|
lines: {
|
|
14060
|
-
level: "
|
|
14197
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14061
14198
|
message: string;
|
|
14062
14199
|
}[];
|
|
14063
14200
|
}[];
|
|
@@ -14108,7 +14245,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14108
14245
|
deployed_at?: string | undefined;
|
|
14109
14246
|
secrets?: {
|
|
14110
14247
|
name: string;
|
|
14111
|
-
value?: string | undefined;
|
|
14112
14248
|
}[] | undefined;
|
|
14113
14249
|
}[] | {
|
|
14114
14250
|
start: number;
|
|
@@ -14136,7 +14272,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14136
14272
|
deployed_at?: string | undefined;
|
|
14137
14273
|
secrets?: {
|
|
14138
14274
|
name: string;
|
|
14139
|
-
value?: string | undefined;
|
|
14140
14275
|
}[] | undefined;
|
|
14141
14276
|
}[];
|
|
14142
14277
|
total?: number | undefined;
|
|
@@ -14196,7 +14331,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14196
14331
|
deployed_at?: string | undefined;
|
|
14197
14332
|
secrets?: {
|
|
14198
14333
|
name: string;
|
|
14199
|
-
value?: string | undefined;
|
|
14200
14334
|
}[] | undefined;
|
|
14201
14335
|
};
|
|
14202
14336
|
outputFormat: "json";
|
|
@@ -14250,7 +14384,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14250
14384
|
deployed_at?: string | undefined;
|
|
14251
14385
|
secrets?: {
|
|
14252
14386
|
name: string;
|
|
14253
|
-
value?: string | undefined;
|
|
14254
14387
|
}[] | undefined;
|
|
14255
14388
|
};
|
|
14256
14389
|
outputFormat: "json";
|
|
@@ -14344,7 +14477,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14344
14477
|
deployed_at?: string | undefined;
|
|
14345
14478
|
secrets?: {
|
|
14346
14479
|
name: string;
|
|
14347
|
-
value?: string | undefined;
|
|
14348
14480
|
}[] | undefined;
|
|
14349
14481
|
};
|
|
14350
14482
|
outputFormat: "json";
|
|
@@ -14441,7 +14573,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14441
14573
|
deployed_at?: string | undefined;
|
|
14442
14574
|
secrets?: {
|
|
14443
14575
|
name: string;
|
|
14444
|
-
value?: string | undefined;
|
|
14445
14576
|
}[] | undefined;
|
|
14446
14577
|
};
|
|
14447
14578
|
outputFormat: "json";
|
|
@@ -14658,7 +14789,6 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14658
14789
|
deployed_at?: string | undefined;
|
|
14659
14790
|
secrets?: {
|
|
14660
14791
|
name: string;
|
|
14661
|
-
value?: string | undefined;
|
|
14662
14792
|
}[] | undefined;
|
|
14663
14793
|
};
|
|
14664
14794
|
outputFormat: "json";
|
|
@@ -14726,7 +14856,7 @@ export default function create(config: AuthHeroConfig): OpenAPIHono<{
|
|
|
14726
14856
|
args: import("hono/utils/types").JSONValue[];
|
|
14727
14857
|
}[];
|
|
14728
14858
|
logs: {
|
|
14729
|
-
level: "
|
|
14859
|
+
level: "error" | "log" | "info" | "warn" | "debug";
|
|
14730
14860
|
message: string;
|
|
14731
14861
|
}[];
|
|
14732
14862
|
error?: string | undefined;
|