@forklaunch/validator 0.10.23 → 0.10.25

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.
@@ -732,7 +732,7 @@ var ZodSchemaValidator = class {
732
732
  });
733
733
  symbol = import_v32.z.symbol().openapi({
734
734
  title: "Symbol",
735
- example: Symbol("symbol")
735
+ example: /* @__PURE__ */ Symbol("symbol")
736
736
  });
737
737
  nullish = import_v32.z.union([import_v32.z.void(), import_v32.z.null(), import_v32.z.undefined()]).openapi({
738
738
  title: "Nullish",
@@ -676,7 +676,7 @@ var ZodSchemaValidator = class {
676
676
  });
677
677
  symbol = z2.symbol().openapi({
678
678
  title: "Symbol",
679
- example: Symbol("symbol")
679
+ example: /* @__PURE__ */ Symbol("symbol")
680
680
  });
681
681
  nullish = z2.union([z2.void(), z2.null(), z2.undefined()]).openapi({
682
682
  title: "Nullish",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forklaunch/validator",
3
- "version": "0.10.23",
3
+ "version": "0.10.25",
4
4
  "description": "Schema validator for ForkLaunch components.",
5
5
  "homepage": "https://github.com/forklaunch/forklaunch-js#readme",
6
6
  "bugs": {
@@ -58,27 +58,27 @@
58
58
  "lib/**"
59
59
  ],
60
60
  "dependencies": {
61
- "@sinclair/typebox": "^0.34.41",
61
+ "@sinclair/typebox": "^0.34.47",
62
62
  "ts-deepmerge": "^7.0.3",
63
- "zod": "^4.1.12",
64
- "@forklaunch/common": "0.6.23"
63
+ "zod": "^4.3.5",
64
+ "@forklaunch/common": "0.6.25"
65
65
  },
66
66
  "devDependencies": {
67
- "@eslint/js": "^9.39.1",
67
+ "@eslint/js": "^9.39.2",
68
68
  "@types/jest": "^30.0.0",
69
- "@types/node": "^24.10.1",
70
- "@typescript/native-preview": "7.0.0-dev.20251117.1",
71
- "@vitest/coverage-v8": "^4.0.9",
69
+ "@types/node": "^25.0.9",
70
+ "@typescript/native-preview": "7.0.0-dev.20260118.1",
71
+ "@vitest/coverage-v8": "^4.0.17",
72
72
  "eslint-config-prettier": "^10.1.8",
73
- "eslint-plugin-prettier": "^5.5.4",
74
- "globals": "^16.5.0",
73
+ "eslint-plugin-prettier": "^5.5.5",
74
+ "globals": "^17.0.0",
75
75
  "jest": "^30.2.0",
76
76
  "openapi3-ts": "^4.5.0",
77
- "ts-jest": "^29.4.5",
77
+ "ts-jest": "^29.4.6",
78
78
  "ts-node": "^10.9.2",
79
79
  "tsup": "^8.5.1",
80
- "typedoc": "^0.28.14",
81
- "typescript-eslint": "^8.46.4"
80
+ "typedoc": "^0.28.16",
81
+ "typescript-eslint": "^8.53.0"
82
82
  },
83
83
  "scripts": {
84
84
  "build": "tsgo --noEmit && tsup index.ts src/typebox/index.ts src/zod/index.ts __test__/utils/mockSchemaValidator.ts shims/zod-v3-openapi/zod-extensions.ts --format cjs,esm --no-splitting --tsconfig tsconfig.json --outDir lib --dts --clean",