authhero 7.0.0 → 7.2.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 +94 -94
- package/dist/authhero.d.ts +224 -244
- package/dist/authhero.mjs +7590 -7572
- package/dist/stats.html +1 -1
- package/dist/tsconfig.types.tsbuildinfo +1 -1
- package/dist/types/authentication-flows/passwordless.d.ts +3 -3
- package/dist/types/helpers/dcr/metadata-mapping.d.ts +1 -1
- package/dist/types/helpers/signing-keys.d.ts +1 -0
- package/dist/types/index.d.ts +203 -221
- package/dist/types/routes/auth-api/index.d.ts +32 -32
- 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/revoke.d.ts +6 -6
- package/dist/types/routes/auth-api/token.d.ts +10 -10
- package/dist/types/routes/management-api/authentication-methods.d.ts +1 -1
- package/dist/types/routes/management-api/client-grants.d.ts +8 -8
- package/dist/types/routes/management-api/clients.d.ts +7 -7
- package/dist/types/routes/management-api/connections.d.ts +1 -1
- package/dist/types/routes/management-api/custom-domains.d.ts +7 -25
- package/dist/types/routes/management-api/failed-events.d.ts +1 -1
- package/dist/types/routes/management-api/forms.d.ts +119 -119
- package/dist/types/routes/management-api/guardian.d.ts +5 -5
- package/dist/types/routes/management-api/index.d.ts +165 -183
- 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 +1 -1
- package/dist/types/routes/management-api/prompts.d.ts +4 -4
- package/dist/types/routes/management-api/users.d.ts +2 -2
- package/dist/types/routes/proxy-control-plane/index.d.ts +10 -15
- package/dist/types/routes/proxy-control-plane/verify.d.ts +10 -5
- package/dist/types/routes/universal-login/common.d.ts +2 -2
- package/dist/types/routes/universal-login/flow-api.d.ts +8 -8
- 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/types/AuthHeroConfig.d.ts +11 -13
- package/dist/types/types/Bindings.d.ts +0 -6
- package/dist/types/utils/jwks.d.ts +10 -11
- package/dist/types/utils/jwt.d.ts +21 -1
- package/package.json +5 -5
|
@@ -28,7 +28,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
28
28
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
29
29
|
custom_domain_id: string;
|
|
30
30
|
primary: boolean;
|
|
31
|
-
status: "
|
|
31
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
32
32
|
verification_method?: "txt" | undefined;
|
|
33
33
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
34
34
|
domain_metadata?: {
|
|
@@ -69,7 +69,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
69
69
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
70
70
|
custom_domain_id: string;
|
|
71
71
|
primary: boolean;
|
|
72
|
-
status: "
|
|
72
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
73
73
|
verification_method?: "txt" | undefined;
|
|
74
74
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
75
75
|
domain_metadata?: {
|
|
@@ -123,27 +123,9 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
123
123
|
};
|
|
124
124
|
} & {
|
|
125
125
|
json: {
|
|
126
|
-
|
|
127
|
-
type?: "auth0_managed_certs" | "self_managed_certs" | undefined;
|
|
128
|
-
verification_method?: "txt" | undefined;
|
|
126
|
+
tls_policy?: "recommended" | undefined;
|
|
129
127
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
130
128
|
domain_metadata?: Record<string, string> | undefined;
|
|
131
|
-
custom_domain_id?: string | undefined;
|
|
132
|
-
primary?: boolean | undefined;
|
|
133
|
-
status?: "disabled" | "pending" | "ready" | "pending_verification" | undefined;
|
|
134
|
-
origin_domain_name?: string | undefined;
|
|
135
|
-
verification?: {
|
|
136
|
-
methods: ({
|
|
137
|
-
name: "txt";
|
|
138
|
-
record: string;
|
|
139
|
-
domain: string;
|
|
140
|
-
} | {
|
|
141
|
-
name: "http";
|
|
142
|
-
http_body: string;
|
|
143
|
-
http_url: string;
|
|
144
|
-
})[];
|
|
145
|
-
} | undefined;
|
|
146
|
-
tls_policy?: string | undefined;
|
|
147
129
|
};
|
|
148
130
|
};
|
|
149
131
|
output: {
|
|
@@ -151,7 +133,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
151
133
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
152
134
|
custom_domain_id: string;
|
|
153
135
|
primary: boolean;
|
|
154
|
-
status: "
|
|
136
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
155
137
|
verification_method?: "txt" | undefined;
|
|
156
138
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
157
139
|
domain_metadata?: {
|
|
@@ -198,7 +180,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
198
180
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
199
181
|
custom_domain_id: string;
|
|
200
182
|
primary: boolean;
|
|
201
|
-
status: "
|
|
183
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
202
184
|
verification_method?: "txt" | undefined;
|
|
203
185
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
204
186
|
domain_metadata?: {
|
|
@@ -244,7 +226,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
244
226
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
245
227
|
custom_domain_id: string;
|
|
246
228
|
primary: boolean;
|
|
247
|
-
status: "
|
|
229
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
248
230
|
verification_method?: "txt" | undefined;
|
|
249
231
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
250
232
|
domain_metadata?: {
|
|
@@ -285,7 +267,7 @@ export declare const customDomainRoutes: OpenAPIHono<{
|
|
|
285
267
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
286
268
|
custom_domain_id: string;
|
|
287
269
|
primary: boolean;
|
|
288
|
-
status: "
|
|
270
|
+
status: "pending" | "ready" | "disabled" | "pending_verification";
|
|
289
271
|
verification_method?: "txt" | undefined;
|
|
290
272
|
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
291
273
|
domain_metadata?: {
|
|
@@ -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: "user" | "client_credentials" | "system" | "admin" | "api_key";
|
|
34
34
|
id?: string | undefined;
|
|
35
35
|
email?: string | undefined;
|
|
36
36
|
org_id?: string | undefined;
|