@checkstack/incident-backend 1.0.0 → 1.0.1
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/CHANGELOG.md +19 -0
- package/package.json +13 -13
- package/tsconfig.json +48 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @checkstack/incident-backend
|
|
2
2
|
|
|
3
|
+
## 1.0.1
|
|
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/integration-backend@0.1.23
|
|
13
|
+
- @checkstack/auth-common@0.6.4
|
|
14
|
+
- @checkstack/cache-utils@0.2.3
|
|
15
|
+
- @checkstack/catalog-common@2.0.0
|
|
16
|
+
- @checkstack/common@0.7.0
|
|
17
|
+
- @checkstack/incident-common@1.0.0
|
|
18
|
+
- @checkstack/integration-common@0.3.0
|
|
19
|
+
- @checkstack/notification-common@1.0.0
|
|
20
|
+
- @checkstack/signal-common@0.2.0
|
|
21
|
+
|
|
3
22
|
## 1.0.0
|
|
4
23
|
|
|
5
24
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@checkstack/incident-backend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"checkstack": {
|
|
7
7
|
"type": "backend"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"typecheck": "
|
|
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.
|
|
17
|
-
"@checkstack/cache-api": "0.2.
|
|
18
|
-
"@checkstack/cache-utils": "0.2.
|
|
19
|
-
"@checkstack/incident-common": "0.
|
|
20
|
-
"@checkstack/catalog-common": "
|
|
21
|
-
"@checkstack/catalog-backend": "0.
|
|
22
|
-
"@checkstack/notification-common": "0.
|
|
23
|
-
"@checkstack/auth-common": "0.6.
|
|
24
|
-
"@checkstack/command-backend": "0.1.
|
|
16
|
+
"@checkstack/backend-api": "0.14.0",
|
|
17
|
+
"@checkstack/cache-api": "0.2.2",
|
|
18
|
+
"@checkstack/cache-utils": "0.2.2",
|
|
19
|
+
"@checkstack/incident-common": "1.0.0",
|
|
20
|
+
"@checkstack/catalog-common": "2.0.0",
|
|
21
|
+
"@checkstack/catalog-backend": "1.0.0",
|
|
22
|
+
"@checkstack/notification-common": "1.0.0",
|
|
23
|
+
"@checkstack/auth-common": "0.6.4",
|
|
24
|
+
"@checkstack/command-backend": "0.1.22",
|
|
25
25
|
"@checkstack/signal-common": "0.2.0",
|
|
26
|
-
"@checkstack/integration-backend": "0.1.
|
|
26
|
+
"@checkstack/integration-backend": "0.1.22",
|
|
27
27
|
"@checkstack/integration-common": "0.3.0",
|
|
28
28
|
"@checkstack/common": "0.7.0",
|
|
29
29
|
"drizzle-orm": "^0.45.0",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@checkstack/drizzle-helper": "0.0.4",
|
|
35
35
|
"@checkstack/scripts": "0.1.2",
|
|
36
|
-
"@checkstack/test-utils-backend": "0.1.
|
|
36
|
+
"@checkstack/test-utils-backend": "0.1.22",
|
|
37
37
|
"@checkstack/tsconfig": "0.0.5",
|
|
38
38
|
"@types/bun": "^1.0.0",
|
|
39
39
|
"drizzle-kit": "^0.31.10",
|
package/tsconfig.json
CHANGED
|
@@ -2,5 +2,52 @@
|
|
|
2
2
|
"extends": "@checkstack/tsconfig/backend.json",
|
|
3
3
|
"include": [
|
|
4
4
|
"src"
|
|
5
|
+
],
|
|
6
|
+
"references": [
|
|
7
|
+
{
|
|
8
|
+
"path": "../auth-common"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"path": "../backend-api"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"path": "../cache-api"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"path": "../cache-utils"
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"path": "../catalog-backend"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"path": "../catalog-common"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"path": "../command-backend"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"path": "../common"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"path": "../drizzle-helper"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"path": "../incident-common"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"path": "../integration-backend"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"path": "../integration-common"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"path": "../notification-common"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"path": "../signal-common"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"path": "../test-utils-backend"
|
|
51
|
+
}
|
|
5
52
|
]
|
|
6
|
-
}
|
|
53
|
+
}
|