@checkstack/integration-backend 0.1.20 → 0.1.22

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 (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +9 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @checkstack/integration-backend
2
2
 
3
+ ## 0.1.22
4
+
5
+ ### Patch Changes
6
+
7
+ - 32d52c6: chore: add `drizzle-kit` as a dev dependency
8
+
9
+ Lets each backend package run `drizzle-kit generate` locally without
10
+ relying on the workspace-level binary. No runtime impact — devDeps
11
+ only.
12
+
13
+ - Updated dependencies [32d52c6]
14
+ - Updated dependencies [32d52c6]
15
+ - Updated dependencies [32d52c6]
16
+ - @checkstack/backend-api@0.14.0
17
+ - @checkstack/command-backend@0.1.22
18
+ - @checkstack/queue-api@0.2.16
19
+
20
+ ## 0.1.21
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [208ad71]
25
+ - @checkstack/signal-common@0.2.0
26
+ - @checkstack/integration-common@0.3.0
27
+ - @checkstack/backend-api@0.13.1
28
+ - @checkstack/command-backend@0.1.21
29
+ - @checkstack/queue-api@0.2.15
30
+
3
31
  ## 0.1.20
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/integration-backend",
3
- "version": "0.1.20",
3
+ "version": "0.1.22",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
@@ -14,12 +14,12 @@
14
14
  "test": "bun test"
15
15
  },
16
16
  "dependencies": {
17
- "@checkstack/integration-common": "0.2.8",
18
- "@checkstack/backend-api": "0.12.0",
19
- "@checkstack/signal-common": "0.1.9",
20
- "@checkstack/queue-api": "0.2.13",
21
- "@checkstack/common": "0.6.5",
22
- "@checkstack/command-backend": "0.1.19",
17
+ "@checkstack/integration-common": "0.3.0",
18
+ "@checkstack/backend-api": "0.13.1",
19
+ "@checkstack/signal-common": "0.2.0",
20
+ "@checkstack/queue-api": "0.2.15",
21
+ "@checkstack/common": "0.7.0",
22
+ "@checkstack/command-backend": "0.1.21",
23
23
  "drizzle-orm": "^0.45.0",
24
24
  "zod": "^4.2.1",
25
25
  "@orpc/server": "^1.13.2"
@@ -28,8 +28,9 @@
28
28
  "@checkstack/drizzle-helper": "0.0.4",
29
29
  "@checkstack/scripts": "0.1.2",
30
30
  "@checkstack/tsconfig": "0.0.5",
31
- "@checkstack/test-utils-backend": "0.1.19",
31
+ "@checkstack/test-utils-backend": "0.1.21",
32
32
  "@types/node": "^20.0.0",
33
+ "drizzle-kit": "^0.31.10",
33
34
  "typescript": "^5.0.0"
34
35
  }
35
36
  }