@checkstack/healthcheck-backend 1.0.1 → 1.0.2

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/CHANGELOG.md +23 -0
  2. package/package.json +17 -17
  3. package/tsconfig.json +60 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @checkstack/healthcheck-backend
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [302cd3f]
8
+ - @checkstack/backend-api@0.14.1
9
+ - @checkstack/cache-api@0.2.3
10
+ - @checkstack/catalog-backend@1.0.1
11
+ - @checkstack/command-backend@0.1.23
12
+ - @checkstack/gitops-backend@0.2.7
13
+ - @checkstack/integration-backend@0.1.23
14
+ - @checkstack/queue-api@0.2.17
15
+ - @checkstack/satellite-backend@0.2.20
16
+ - @checkstack/cache-utils@0.2.3
17
+ - @checkstack/catalog-common@2.0.0
18
+ - @checkstack/common@0.7.0
19
+ - @checkstack/gitops-common@0.2.1
20
+ - @checkstack/healthcheck-common@1.0.0
21
+ - @checkstack/incident-common@1.0.0
22
+ - @checkstack/maintenance-common@1.0.0
23
+ - @checkstack/notification-common@1.0.0
24
+ - @checkstack/signal-common@0.2.0
25
+
3
26
  ## 1.0.1
4
27
 
5
28
  ### Patch Changes
package/package.json CHANGED
@@ -1,34 +1,34 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-backend",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
7
7
  "type": "backend"
8
8
  },
9
9
  "scripts": {
10
- "typecheck": "tsc --noEmit",
10
+ "typecheck": "tsgo -b",
11
11
  "generate": "drizzle-kit generate",
12
12
  "lint": "bun run lint:code",
13
13
  "lint:code": "eslint . --max-warnings 0"
14
14
  },
15
15
  "dependencies": {
16
- "@checkstack/backend-api": "0.13.1",
17
- "@checkstack/cache-api": "0.2.1",
18
- "@checkstack/cache-utils": "0.2.1",
19
- "@checkstack/catalog-backend": "0.7.1",
20
- "@checkstack/catalog-common": "1.5.3",
21
- "@checkstack/command-backend": "0.1.21",
16
+ "@checkstack/backend-api": "0.14.0",
17
+ "@checkstack/cache-api": "0.2.2",
18
+ "@checkstack/cache-utils": "0.2.2",
19
+ "@checkstack/catalog-backend": "1.0.0",
20
+ "@checkstack/catalog-common": "2.0.0",
21
+ "@checkstack/command-backend": "0.1.22",
22
22
  "@checkstack/common": "0.7.0",
23
- "@checkstack/gitops-backend": "0.2.5",
23
+ "@checkstack/gitops-backend": "0.2.6",
24
24
  "@checkstack/gitops-common": "0.2.1",
25
- "@checkstack/healthcheck-common": "0.13.0",
26
- "@checkstack/incident-common": "0.5.0",
27
- "@checkstack/integration-backend": "0.1.21",
28
- "@checkstack/maintenance-common": "0.5.0",
29
- "@checkstack/notification-common": "0.3.0",
30
- "@checkstack/queue-api": "0.2.15",
31
- "@checkstack/satellite-backend": "0.2.17",
25
+ "@checkstack/healthcheck-common": "1.0.0",
26
+ "@checkstack/incident-common": "1.0.0",
27
+ "@checkstack/integration-backend": "0.1.22",
28
+ "@checkstack/maintenance-common": "1.0.0",
29
+ "@checkstack/notification-common": "1.0.0",
30
+ "@checkstack/queue-api": "0.2.16",
31
+ "@checkstack/satellite-backend": "0.2.19",
32
32
  "@checkstack/signal-common": "0.2.0",
33
33
  "@hono/zod-validator": "^0.7.6",
34
34
  "drizzle-orm": "^0.45.0",
@@ -40,7 +40,7 @@
40
40
  "devDependencies": {
41
41
  "@checkstack/drizzle-helper": "0.0.4",
42
42
  "@checkstack/scripts": "0.1.2",
43
- "@checkstack/test-utils-backend": "0.1.21",
43
+ "@checkstack/test-utils-backend": "0.1.22",
44
44
  "@checkstack/tsconfig": "0.0.5",
45
45
  "@types/bun": "^1.0.0",
46
46
  "@types/tdigest": "^0.1.5",
package/tsconfig.json CHANGED
@@ -2,5 +2,64 @@
2
2
  "extends": "@checkstack/tsconfig/backend.json",
3
3
  "include": [
4
4
  "src"
5
+ ],
6
+ "references": [
7
+ {
8
+ "path": "../backend-api"
9
+ },
10
+ {
11
+ "path": "../cache-api"
12
+ },
13
+ {
14
+ "path": "../cache-utils"
15
+ },
16
+ {
17
+ "path": "../catalog-backend"
18
+ },
19
+ {
20
+ "path": "../catalog-common"
21
+ },
22
+ {
23
+ "path": "../command-backend"
24
+ },
25
+ {
26
+ "path": "../common"
27
+ },
28
+ {
29
+ "path": "../drizzle-helper"
30
+ },
31
+ {
32
+ "path": "../gitops-backend"
33
+ },
34
+ {
35
+ "path": "../gitops-common"
36
+ },
37
+ {
38
+ "path": "../healthcheck-common"
39
+ },
40
+ {
41
+ "path": "../incident-common"
42
+ },
43
+ {
44
+ "path": "../integration-backend"
45
+ },
46
+ {
47
+ "path": "../maintenance-common"
48
+ },
49
+ {
50
+ "path": "../notification-common"
51
+ },
52
+ {
53
+ "path": "../queue-api"
54
+ },
55
+ {
56
+ "path": "../satellite-backend"
57
+ },
58
+ {
59
+ "path": "../signal-common"
60
+ },
61
+ {
62
+ "path": "../test-utils-backend"
63
+ }
5
64
  ]
6
- }
65
+ }