drizzle-valibot 0.4.2-e6bdce6 → 0.4.2-ec2e97b

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.
Files changed (3) hide show
  1. package/index.cjs +1 -1
  2. package/index.mjs +1 -1
  3. package/package.json +1 -1
package/index.cjs CHANGED
@@ -49,7 +49,7 @@ const jsonSchema = v__namespace.union([
49
49
  v__namespace.array(v__namespace.any()),
50
50
  v__namespace.record(v__namespace.string(), v__namespace.any()),
51
51
  ]);
52
- const bufferSchema = v__namespace.custom((v) => v instanceof Buffer); // oxlint-disable-line drizzle-internal/no-instanceof
52
+ const bufferSchema = v__namespace.custom((v) => v instanceof Buffer);
53
53
  function mapEnumValues(values) {
54
54
  return Object.fromEntries(values.map((value) => [value, value]));
55
55
  }
package/index.mjs CHANGED
@@ -28,7 +28,7 @@ const jsonSchema = v.union([
28
28
  v.array(v.any()),
29
29
  v.record(v.string(), v.any()),
30
30
  ]);
31
- const bufferSchema = v.custom((v) => v instanceof Buffer); // oxlint-disable-line drizzle-internal/no-instanceof
31
+ const bufferSchema = v.custom((v) => v instanceof Buffer);
32
32
  function mapEnumValues(values) {
33
33
  return Object.fromEntries(values.map((value) => [value, value]));
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-valibot",
3
- "version": "0.4.2-e6bdce6",
3
+ "version": "0.4.2-ec2e97b",
4
4
  "description": "Generate valibot schemas from Drizzle ORM schemas",
5
5
  "type": "module",
6
6
  "scripts": {