@authhero/drizzle 0.52.1 → 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.
package/dist/drizzle-adapter.mjs
CHANGED
|
@@ -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(),
|
|
@@ -15432,7 +15435,8 @@ var Ey = J({
|
|
|
15432
15435
|
revoke_refresh_token_grant: G().optional(),
|
|
15433
15436
|
trust_azure_adfs_email_verified_connection_property: G().optional(),
|
|
15434
15437
|
use_scope_descriptions_for_consent: G().optional(),
|
|
15435
|
-
inherit_global_permissions_in_organizations: G().optional()
|
|
15438
|
+
inherit_global_permissions_in_organizations: G().optional(),
|
|
15439
|
+
restrict_undefined_scopes: G().optional()
|
|
15436
15440
|
}).optional(),
|
|
15437
15441
|
sandbox_version: H().optional(),
|
|
15438
15442
|
legacy_sandbox_version: H().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.
|
|
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.
|
|
38
|
-
"@authhero/proxy": "0.3.
|
|
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",
|