@akanjs/cli 2.4.1-rc.6 → 2.4.1-rc.7

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/.build-stamp CHANGED
@@ -1 +1 @@
1
- 6e8b5d3ea2473ea4c076e4a9ab1ae330a03988d95df38e556b062563723fd0fe
1
+ fe5aabbf16f2ea5ada84a8b559093007200be13ac1cae02c0cf70f80a1736b22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/cli",
3
- "version": "2.4.1-rc.6",
3
+ "version": "2.4.1-rc.7",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -34,7 +34,7 @@
34
34
  "@langchain/openai": "^1.4.6",
35
35
  "@tailwindcss/node": "^4.3.0",
36
36
  "@trapezedev/project": "^7.1.4",
37
- "akanjs": "2.4.1-rc.6",
37
+ "akanjs": "2.4.1-rc.7",
38
38
  "chalk": "^5.6.2",
39
39
  "commander": "^14.0.3",
40
40
  "daisyui": "5.5.23",
@@ -31,6 +31,8 @@
31
31
  "dependencies": {},
32
32
  "devDependencies": {},
33
33
  "patchedDependencies": {
34
- "react-dom@19.2.7": "patches/react-dom@19.2.7.patch"
34
+ "react-dom@19.2.7": "patches/react-dom@19.2.7.patch",
35
+ "zod@3.25.76": "patches/zod@3.25.76.patch",
36
+ "zod@4.4.3": "patches/zod@4.4.3.patch"
35
37
  }
36
38
  }
@@ -0,0 +1,22 @@
1
+ diff --git a/v4/classic/schemas.js b/v4/classic/schemas.js
2
+ index 2decc914b2e35eb540fcc3625095c1413bda7c8c..9dd258ad2b6f5144337f814e4adf30e1025ed0a7 100644
3
+ --- a/v4/classic/schemas.js
4
+ +++ b/v4/classic/schemas.js
5
+ @@ -1,5 +1,5 @@
6
+ import * as core from "../core/index.js";
7
+ -import { util } from "../core/index.js";
8
+ +import * as util from "../core/util.js";
9
+ import * as checks from "./checks.js";
10
+ import * as iso from "./iso.js";
11
+ import * as parse from "./parse.js";
12
+ diff --git a/v4/mini/schemas.js b/v4/mini/schemas.js
13
+ index 3a142d1924630f6d7004da255e3f5cb9a8eefa5c..1c6c7afaf49dfc48c18c56a63743fcd48145d30a 100644
14
+ --- a/v4/mini/schemas.js
15
+ +++ b/v4/mini/schemas.js
16
+ @@ -1,5 +1,5 @@
17
+ import * as core from "../core/index.js";
18
+ -import { util } from "../core/index.js";
19
+ +import * as util from "../core/util.js";
20
+ import * as parse from "./parse.js";
21
+ export const ZodMiniType = /*@__PURE__*/ core.$constructor("ZodMiniType", (inst, def) => {
22
+ if (!inst._zod)
@@ -0,0 +1,11 @@
1
+ diff --git a/v4/classic/schemas.js b/v4/classic/schemas.js
2
+ index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
3
+ --- a/v4/classic/schemas.js
4
+ +++ b/v4/classic/schemas.js
5
+ @@ -1,5 +1,5 @@
6
+ import * as core from "../core/index.js";
7
+ -import { util } from "../core/index.js";
8
+ +import * as util from "../core/util.js";
9
+ import * as processors from "../core/json-schema-processors.js";
10
+ import { createStandardJSONSchemaMethod, createToJSONSchemaMethod } from "../core/to-json-schema.js";
11
+ import * as checks from "./checks.js";