@apostlejs/flows 0.0.7 → 0.0.8

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/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "0.0.7",
7
+ "version": "0.0.8",
8
8
  "type": "module",
9
9
  "files": [
10
10
  "dist"
@@ -33,18 +33,16 @@
33
33
  "dependencies": {
34
34
  "ajv": "8.17.1",
35
35
  "ajv-formats": "3.0.1",
36
- "zod": "^3.24.3",
37
- "zod-to-json-schema": "3.24.3",
38
- "@apostlejs/whatsapp": "0.0.7"
36
+ "@apostlejs/whatsapp": "0.0.9"
39
37
  },
40
38
  "peerDependencies": {
41
- "zod": "^3.24.3"
39
+ "zod": "4.0.14"
42
40
  },
43
41
  "scripts": {
44
42
  "------------- toolchain -------------": "-------------",
45
43
  "format": "biome format --write",
46
44
  "lint": "biome lint --error-on-warnings",
47
- "typecheck": "tsc --noEmit",
45
+ "checktypes": "tsc --noEmit",
48
46
  "------------- dev -------------": "-------------",
49
47
  "dev": "pnpm tsup --env.mode dev",
50
48
  "------------- build -------------": "-------------",
@@ -54,7 +52,7 @@
54
52
  "------------- publishing -------------": "-------------",
55
53
  "change": "changeset",
56
54
  "bump": "pnpm changeset version",
57
- "release": "pnpm typecheck && pnpm build && pnpm publish --no-git-checks",
58
- "release:rc": "pnpm typecheck && pnpm build && pnpm version prerelease --preid=rc"
55
+ "release": "pnpm checktypes && pnpm build && pnpm publish --no-git-checks",
56
+ "release:rc": "pnpm checktypes && pnpm build && pnpm version prerelease --preid=rc"
59
57
  }
60
58
  }