@authhero/cloudflare-adapter 2.18.11 → 2.18.12
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/cloudflare-adapter.d.ts +20 -20
- package/package.json +3 -3
|
@@ -107,11 +107,6 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
107
107
|
primary: boolean;
|
|
108
108
|
domain: string;
|
|
109
109
|
custom_domain_id: string;
|
|
110
|
-
verification_method?: "txt" | undefined;
|
|
111
|
-
tls_policy?: string | undefined;
|
|
112
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
113
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
114
|
-
origin_domain_name?: string | undefined;
|
|
115
110
|
verification?: {
|
|
116
111
|
methods: {
|
|
117
112
|
name: "txt";
|
|
@@ -119,17 +114,17 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
119
114
|
record: string;
|
|
120
115
|
}[];
|
|
121
116
|
} | undefined;
|
|
117
|
+
verification_method?: "txt" | undefined;
|
|
118
|
+
tls_policy?: string | undefined;
|
|
119
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
120
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
121
|
+
origin_domain_name?: string | undefined;
|
|
122
122
|
}, {
|
|
123
123
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
124
124
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
125
125
|
primary: boolean;
|
|
126
126
|
domain: string;
|
|
127
127
|
custom_domain_id: string;
|
|
128
|
-
verification_method?: "txt" | undefined;
|
|
129
|
-
tls_policy?: string | undefined;
|
|
130
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
131
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
132
|
-
origin_domain_name?: string | undefined;
|
|
133
128
|
verification?: {
|
|
134
129
|
methods: {
|
|
135
130
|
name: "txt";
|
|
@@ -137,6 +132,11 @@ declare const customDomainSchema: z.ZodObject<{
|
|
|
137
132
|
record: string;
|
|
138
133
|
}[];
|
|
139
134
|
} | undefined;
|
|
135
|
+
verification_method?: "txt" | undefined;
|
|
136
|
+
tls_policy?: string | undefined;
|
|
137
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
138
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
139
|
+
origin_domain_name?: string | undefined;
|
|
140
140
|
}>;
|
|
141
141
|
export type CustomDomain = z.infer<typeof customDomainSchema>;
|
|
142
142
|
declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
@@ -202,11 +202,6 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
202
202
|
domain: string;
|
|
203
203
|
custom_domain_id: string;
|
|
204
204
|
tenant_id: string;
|
|
205
|
-
verification_method?: "txt" | undefined;
|
|
206
|
-
tls_policy?: string | undefined;
|
|
207
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
208
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
209
|
-
origin_domain_name?: string | undefined;
|
|
210
205
|
verification?: {
|
|
211
206
|
methods: {
|
|
212
207
|
name: "txt";
|
|
@@ -214,6 +209,11 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
214
209
|
record: string;
|
|
215
210
|
}[];
|
|
216
211
|
} | undefined;
|
|
212
|
+
verification_method?: "txt" | undefined;
|
|
213
|
+
tls_policy?: string | undefined;
|
|
214
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
215
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
216
|
+
origin_domain_name?: string | undefined;
|
|
217
217
|
}, {
|
|
218
218
|
type: "auth0_managed_certs" | "self_managed_certs";
|
|
219
219
|
status: "disabled" | "pending" | "pending_verification" | "ready";
|
|
@@ -221,11 +221,6 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
221
221
|
domain: string;
|
|
222
222
|
custom_domain_id: string;
|
|
223
223
|
tenant_id: string;
|
|
224
|
-
verification_method?: "txt" | undefined;
|
|
225
|
-
tls_policy?: string | undefined;
|
|
226
|
-
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
227
|
-
domain_metadata?: Record<string, string> | undefined;
|
|
228
|
-
origin_domain_name?: string | undefined;
|
|
229
224
|
verification?: {
|
|
230
225
|
methods: {
|
|
231
226
|
name: "txt";
|
|
@@ -233,6 +228,11 @@ declare const customDomainWithTenantIdSchema: z.ZodObject<{
|
|
|
233
228
|
record: string;
|
|
234
229
|
}[];
|
|
235
230
|
} | undefined;
|
|
231
|
+
verification_method?: "txt" | undefined;
|
|
232
|
+
tls_policy?: string | undefined;
|
|
233
|
+
custom_client_ip_header?: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined;
|
|
234
|
+
domain_metadata?: Record<string, string> | undefined;
|
|
235
|
+
origin_domain_name?: string | undefined;
|
|
236
236
|
}>;
|
|
237
237
|
export type CustomDomainWithTenantId = z.infer<typeof customDomainWithTenantIdSchema>;
|
|
238
238
|
export interface ListParams {
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "2.18.
|
|
14
|
+
"version": "2.18.12",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist"
|
|
17
17
|
],
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"nanoid": "^5.1.6",
|
|
48
48
|
"wretch": "^3.0.2",
|
|
49
|
-
"@authhero/adapter-interfaces": "0.
|
|
50
|
-
"@authhero/kysely-adapter": "10.96.
|
|
49
|
+
"@authhero/adapter-interfaces": "0.135.0",
|
|
50
|
+
"@authhero/kysely-adapter": "10.96.1"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
|