authhero 5.18.0 → 5.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/u/widget/index.esm.js +1 -1
- package/dist/authhero.cjs +2729 -128
- package/dist/authhero.d.ts +602 -230
- package/dist/authhero.mjs +10757 -9901
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/common.d.ts +8 -0
- package/dist/types/authentication-flows/passwordless.d.ts +1 -1
- package/dist/types/authentication-flows/token-exchange.d.ts +19 -0
- package/dist/types/emails/defaults/BlockedAccount.d.ts +1 -0
- package/dist/types/emails/defaults/ChangePassword.d.ts +6 -0
- package/dist/types/emails/defaults/EnrollmentEmail.d.ts +1 -0
- package/dist/types/emails/defaults/MfaOobCode.d.ts +1 -0
- package/dist/types/emails/defaults/PasswordReset.d.ts +5 -0
- package/dist/types/emails/defaults/StolenCredentials.d.ts +1 -0
- package/dist/types/emails/index.d.ts +21 -1
- package/dist/types/helpers/consent.d.ts +31 -0
- package/dist/types/helpers/control-plane-sync-events.d.ts +67 -0
- package/dist/types/helpers/default-destinations.d.ts +11 -0
- package/dist/types/helpers/outbox-destinations/control-plane-sync.d.ts +35 -0
- package/dist/types/helpers/outbox-destinations/logs.d.ts +2 -0
- package/dist/types/helpers/scopes-permissions.d.ts +1 -1
- package/dist/types/index.d.ts +471 -227
- package/dist/types/routes/auth-api/index.d.ts +117 -7
- package/dist/types/routes/auth-api/passwordless.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +110 -0
- package/dist/types/routes/auth-api/well-known.d.ts +1 -1
- package/dist/types/routes/management-api/action-executions.d.ts +2 -2
- package/dist/types/routes/management-api/actions.d.ts +4 -4
- 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/clients.d.ts +2 -2
- package/dist/types/routes/management-api/connections.d.ts +6 -6
- package/dist/types/routes/management-api/custom-domains.d.ts +8 -8
- package/dist/types/routes/management-api/email-templates.d.ts +88 -31
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +126 -126
- package/dist/types/routes/management-api/grants.d.ts +80 -0
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +343 -212
- package/dist/types/routes/management-api/logs.d.ts +3 -3
- package/dist/types/routes/management-api/migration-sources.d.ts +6 -6
- package/dist/types/routes/management-api/organizations.d.ts +2 -2
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/proxy-routes.d.ts +1 -0
- package/dist/types/routes/management-api/themes.d.ts +6 -6
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +34 -1
- package/dist/types/routes/universal-login/common.d.ts +8 -8
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- 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/screens/consent.d.ts +9 -0
- package/dist/types/routes/universal-login/u2-index.d.ts +6 -6
- package/dist/types/routes/universal-login/u2-routes.d.ts +6 -6
- package/dist/types/state-machines/login-session.d.ts +12 -1
- package/dist/types/types/AuthHeroConfig.d.ts +26 -0
- package/dist/types/types/GrantFlowResult.d.ts +8 -0
- package/dist/types/types/IdToken.d.ts +1 -1
- package/dist/types/utils/jwks.d.ts +2 -2
- package/dist/types/utils/jwt.d.ts +4 -0
- package/package.json +5 -5
|
@@ -30,7 +30,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
30
30
|
primary: boolean;
|
|
31
31
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
32
32
|
verification_method?: "txt" | undefined;
|
|
33
|
-
custom_client_ip_header?: "null" | "
|
|
33
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
34
34
|
domain_metadata?: {
|
|
35
35
|
[x: string]: string;
|
|
36
36
|
} | undefined;
|
|
@@ -71,7 +71,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
71
71
|
primary: boolean;
|
|
72
72
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
73
73
|
verification_method?: "txt" | undefined;
|
|
74
|
-
custom_client_ip_header?: "null" | "
|
|
74
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
75
75
|
domain_metadata?: {
|
|
76
76
|
[x: string]: string;
|
|
77
77
|
} | undefined;
|
|
@@ -126,7 +126,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
126
126
|
domain?: string | undefined;
|
|
127
127
|
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
128
128
|
verification_method?: "txt" | undefined;
|
|
129
|
-
custom_client_ip_header?: "null" | "
|
|
129
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
130
130
|
domain_metadata?: Record<string, string> | undefined;
|
|
131
131
|
custom_domain_id?: string | undefined;
|
|
132
132
|
primary?: boolean | undefined;
|
|
@@ -153,7 +153,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
153
153
|
primary: boolean;
|
|
154
154
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
155
155
|
verification_method?: "txt" | undefined;
|
|
156
|
-
custom_client_ip_header?: "null" | "
|
|
156
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
157
157
|
domain_metadata?: {
|
|
158
158
|
[x: string]: string;
|
|
159
159
|
} | undefined;
|
|
@@ -189,7 +189,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
189
189
|
custom_domain_id?: string | undefined;
|
|
190
190
|
verification_method?: "txt" | undefined;
|
|
191
191
|
tls_policy?: "recommended" | undefined;
|
|
192
|
-
custom_client_ip_header?: "null" | "
|
|
192
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
193
193
|
domain_metadata?: Record<string, string> | undefined;
|
|
194
194
|
};
|
|
195
195
|
};
|
|
@@ -200,7 +200,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
200
200
|
primary: boolean;
|
|
201
201
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
202
202
|
verification_method?: "txt" | undefined;
|
|
203
|
-
custom_client_ip_header?: "null" | "
|
|
203
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
204
204
|
domain_metadata?: {
|
|
205
205
|
[x: string]: string;
|
|
206
206
|
} | undefined;
|
|
@@ -246,7 +246,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
246
246
|
primary: boolean;
|
|
247
247
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
248
248
|
verification_method?: "txt" | undefined;
|
|
249
|
-
custom_client_ip_header?: "null" | "
|
|
249
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
250
250
|
domain_metadata?: {
|
|
251
251
|
[x: string]: string;
|
|
252
252
|
} | undefined;
|
|
@@ -287,7 +287,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
287
287
|
primary: boolean;
|
|
288
288
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
289
289
|
verification_method?: "txt" | undefined;
|
|
290
|
-
custom_client_ip_header?: "null" | "
|
|
290
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
291
291
|
domain_metadata?: {
|
|
292
292
|
[x: string]: string;
|
|
293
293
|
} | undefined;
|
|
@@ -12,7 +12,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
12
12
|
};
|
|
13
13
|
} & {
|
|
14
14
|
json: {
|
|
15
|
-
template: "verify_email" | "
|
|
15
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
16
16
|
body: string;
|
|
17
17
|
from: string;
|
|
18
18
|
subject: string;
|
|
@@ -23,9 +23,19 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
23
23
|
enabled?: boolean | undefined;
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
|
-
output: {
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
output: {
|
|
27
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
28
|
+
body: string;
|
|
29
|
+
from: string;
|
|
30
|
+
subject: string;
|
|
31
|
+
syntax: "liquid";
|
|
32
|
+
includeEmailInRedirect: boolean;
|
|
33
|
+
enabled: boolean;
|
|
34
|
+
resultUrl?: string | undefined;
|
|
35
|
+
urlLifetimeInSeconds?: number | undefined;
|
|
36
|
+
};
|
|
37
|
+
outputFormat: "json";
|
|
38
|
+
status: 201;
|
|
29
39
|
} | {
|
|
30
40
|
input: {
|
|
31
41
|
header: {
|
|
@@ -33,7 +43,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
33
43
|
};
|
|
34
44
|
} & {
|
|
35
45
|
json: {
|
|
36
|
-
template: "verify_email" | "
|
|
46
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
37
47
|
body: string;
|
|
38
48
|
from: string;
|
|
39
49
|
subject: string;
|
|
@@ -44,19 +54,9 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
44
54
|
enabled?: boolean | undefined;
|
|
45
55
|
};
|
|
46
56
|
};
|
|
47
|
-
output: {
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
from: string;
|
|
51
|
-
subject: string;
|
|
52
|
-
syntax: "liquid";
|
|
53
|
-
includeEmailInRedirect: boolean;
|
|
54
|
-
enabled: boolean;
|
|
55
|
-
resultUrl?: string | undefined;
|
|
56
|
-
urlLifetimeInSeconds?: number | undefined;
|
|
57
|
-
};
|
|
58
|
-
outputFormat: "json";
|
|
59
|
-
status: 201;
|
|
57
|
+
output: {};
|
|
58
|
+
outputFormat: string;
|
|
59
|
+
status: 409;
|
|
60
60
|
};
|
|
61
61
|
};
|
|
62
62
|
} & {
|
|
@@ -68,7 +68,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
70
|
output: {
|
|
71
|
-
name: "verify_email" | "
|
|
71
|
+
name: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
72
72
|
body: string;
|
|
73
73
|
subject: string;
|
|
74
74
|
}[];
|
|
@@ -81,7 +81,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
81
81
|
$get: {
|
|
82
82
|
input: {
|
|
83
83
|
param: {
|
|
84
|
-
templateName: "verify_email" | "
|
|
84
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
85
85
|
};
|
|
86
86
|
} & {
|
|
87
87
|
header: {
|
|
@@ -94,7 +94,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
94
94
|
} | {
|
|
95
95
|
input: {
|
|
96
96
|
param: {
|
|
97
|
-
templateName: "verify_email" | "
|
|
97
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
98
98
|
};
|
|
99
99
|
} & {
|
|
100
100
|
header: {
|
|
@@ -102,7 +102,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
102
102
|
};
|
|
103
103
|
};
|
|
104
104
|
output: {
|
|
105
|
-
template: "verify_email" | "
|
|
105
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
106
106
|
body: string;
|
|
107
107
|
from: string;
|
|
108
108
|
subject: string;
|
|
@@ -121,7 +121,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
121
121
|
$put: {
|
|
122
122
|
input: {
|
|
123
123
|
param: {
|
|
124
|
-
templateName: "verify_email" | "
|
|
124
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
125
125
|
};
|
|
126
126
|
} & {
|
|
127
127
|
header: {
|
|
@@ -129,19 +129,19 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
129
129
|
};
|
|
130
130
|
} & {
|
|
131
131
|
json: {
|
|
132
|
-
template: "verify_email" | "
|
|
132
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
133
133
|
body: string;
|
|
134
|
-
from: string;
|
|
135
134
|
subject: string;
|
|
136
135
|
syntax?: "liquid" | undefined;
|
|
137
136
|
resultUrl?: string | undefined;
|
|
138
137
|
urlLifetimeInSeconds?: number | undefined;
|
|
139
138
|
includeEmailInRedirect?: boolean | undefined;
|
|
140
139
|
enabled?: boolean | undefined;
|
|
140
|
+
from?: string | undefined;
|
|
141
141
|
};
|
|
142
142
|
};
|
|
143
143
|
output: {
|
|
144
|
-
template: "verify_email" | "
|
|
144
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
145
145
|
body: string;
|
|
146
146
|
from: string;
|
|
147
147
|
subject: string;
|
|
@@ -160,7 +160,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
160
160
|
$patch: {
|
|
161
161
|
input: {
|
|
162
162
|
param: {
|
|
163
|
-
templateName: "verify_email" | "
|
|
163
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
164
164
|
};
|
|
165
165
|
} & {
|
|
166
166
|
header: {
|
|
@@ -168,7 +168,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
168
168
|
};
|
|
169
169
|
} & {
|
|
170
170
|
json: {
|
|
171
|
-
template?: "verify_email" | "
|
|
171
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
172
172
|
body?: string | undefined;
|
|
173
173
|
from?: string | undefined;
|
|
174
174
|
subject?: string | undefined;
|
|
@@ -185,7 +185,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
185
185
|
} | {
|
|
186
186
|
input: {
|
|
187
187
|
param: {
|
|
188
|
-
templateName: "verify_email" | "
|
|
188
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
189
189
|
};
|
|
190
190
|
} & {
|
|
191
191
|
header: {
|
|
@@ -193,7 +193,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
193
193
|
};
|
|
194
194
|
} & {
|
|
195
195
|
json: {
|
|
196
|
-
template?: "verify_email" | "
|
|
196
|
+
template?: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation" | undefined;
|
|
197
197
|
body?: string | undefined;
|
|
198
198
|
from?: string | undefined;
|
|
199
199
|
subject?: string | undefined;
|
|
@@ -205,7 +205,7 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
205
205
|
};
|
|
206
206
|
};
|
|
207
207
|
output: {
|
|
208
|
-
template: "verify_email" | "
|
|
208
|
+
template: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
209
209
|
body: string;
|
|
210
210
|
from: string;
|
|
211
211
|
subject: string;
|
|
@@ -219,4 +219,61 @@ export declare const emailTemplatesRoutes: OpenAPIHono<{
|
|
|
219
219
|
status: 200;
|
|
220
220
|
};
|
|
221
221
|
};
|
|
222
|
+
} & {
|
|
223
|
+
"/:templateName": {
|
|
224
|
+
$delete: {
|
|
225
|
+
input: {
|
|
226
|
+
param: {
|
|
227
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
228
|
+
};
|
|
229
|
+
} & {
|
|
230
|
+
header: {
|
|
231
|
+
"tenant-id"?: string | undefined;
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
output: {};
|
|
235
|
+
outputFormat: string;
|
|
236
|
+
status: 204;
|
|
237
|
+
} | {
|
|
238
|
+
input: {
|
|
239
|
+
param: {
|
|
240
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
241
|
+
};
|
|
242
|
+
} & {
|
|
243
|
+
header: {
|
|
244
|
+
"tenant-id"?: string | undefined;
|
|
245
|
+
};
|
|
246
|
+
};
|
|
247
|
+
output: {};
|
|
248
|
+
outputFormat: string;
|
|
249
|
+
status: 404;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
} & {
|
|
253
|
+
"/:templateName/try": {
|
|
254
|
+
$post: {
|
|
255
|
+
input: {
|
|
256
|
+
param: {
|
|
257
|
+
templateName: "verify_email" | "change_password" | "password_reset" | "verify_email_by_code" | "reset_email" | "reset_email_by_code" | "welcome_email" | "blocked_account" | "stolen_credentials" | "enrollment_email" | "mfa_oob_code" | "user_invitation";
|
|
258
|
+
};
|
|
259
|
+
} & {
|
|
260
|
+
header: {
|
|
261
|
+
"tenant-id"?: string | undefined;
|
|
262
|
+
};
|
|
263
|
+
} & {
|
|
264
|
+
json: {
|
|
265
|
+
to: string;
|
|
266
|
+
body?: string | undefined;
|
|
267
|
+
subject?: string | undefined;
|
|
268
|
+
from?: string | undefined;
|
|
269
|
+
language?: string | undefined;
|
|
270
|
+
};
|
|
271
|
+
};
|
|
272
|
+
output: {
|
|
273
|
+
sent: boolean;
|
|
274
|
+
};
|
|
275
|
+
outputFormat: "json";
|
|
276
|
+
status: 200;
|
|
277
|
+
};
|
|
278
|
+
};
|
|
222
279
|
}, "/">;
|
|
@@ -30,7 +30,7 @@ export declare const failedEventsRoutes: OpenAPIHono<{
|
|
|
30
30
|
log_type: string;
|
|
31
31
|
category: "user_action" | "admin_action" | "system" | "api";
|
|
32
32
|
actor: {
|
|
33
|
-
type: "
|
|
33
|
+
type: "client_credentials" | "user" | "system" | "admin" | "api_key";
|
|
34
34
|
id?: string | undefined;
|
|
35
35
|
email?: string | undefined;
|
|
36
36
|
org_id?: string | undefined;
|