@authhero/drizzle 0.52.2 → 0.52.3

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.
@@ -14453,7 +14453,10 @@ mv.extend({
14453
14453
  origin_domain_name: H().optional(),
14454
14454
  verification: J({ methods: q(hv) }).optional(),
14455
14455
  tls_policy: H().optional()
14456
- }).extend({ tenant_id: H() });
14456
+ }).extend({ tenant_id: H() }), J({
14457
+ certificate: H().regex(/^-----BEGIN CERTIFICATE-----[\s\S]+-----END CERTIFICATE-----\s*$/, "must be PEM-encoded; include the full certificate chain in leaf-first order"),
14458
+ private_key: H().regex(/-----BEGIN (RSA |EC |ENCRYPTED )?PRIVATE KEY-----[\s\S]+-----END \1PRIVATE KEY-----\s*$/, "must be a PEM-encoded private key")
14459
+ });
14457
14460
  var gv = J({
14458
14461
  id: H(),
14459
14462
  order: W().optional(),
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "0.52.2",
14
+ "version": "0.52.3",
15
15
  "files": [
16
16
  "dist",
17
17
  "src/schema",
@@ -34,8 +34,8 @@
34
34
  "dependencies": {
35
35
  "drizzle-orm": "^0.44.2",
36
36
  "nanoid": "^5.1.11",
37
- "@authhero/adapter-interfaces": "2.9.1",
38
- "@authhero/proxy": "0.3.2"
37
+ "@authhero/adapter-interfaces": "2.10.0",
38
+ "@authhero/proxy": "0.3.3"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@hono/zod-openapi": "^1.4.0",