@checkstack/notification-teams-backend 0.0.19 → 0.0.20

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 +11 -0
  2. package/package.json +7 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @checkstack/notification-teams-backend
2
2
 
3
+ ## 0.0.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 67158e2: Standardize package metadata, unify AJV versions to 8.18.0, and enforce monorepo architecture rules via updated ESLint configuration. This ensures consistent package discovery and runtime dependency safety across the platform.
8
+ - Updated dependencies [67158e2]
9
+ - Updated dependencies [b839ccb]
10
+ - @checkstack/backend-api@0.8.2
11
+ - @checkstack/common@0.6.4
12
+ - @checkstack/notification-backend@0.1.15
13
+
3
14
  ## 0.0.19
4
15
 
5
16
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@checkstack/notification-teams-backend",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
+ "checkstack": {
7
+ "type": "backend"
8
+ },
6
9
  "exports": {
7
10
  ".": "./src/index.ts",
8
11
  "./plugin-metadata": "./src/plugin-metadata.ts"
@@ -12,9 +15,9 @@
12
15
  "lint": "eslint src --ext .ts"
13
16
  },
14
17
  "dependencies": {
15
- "@checkstack/backend-api": "0.8.0",
16
- "@checkstack/common": "0.6.2",
17
- "@checkstack/notification-backend": "0.1.12",
18
+ "@checkstack/backend-api": "0.8.1",
19
+ "@checkstack/common": "0.6.3",
20
+ "@checkstack/notification-backend": "0.1.14",
18
21
  "zod": "^4.2.1"
19
22
  },
20
23
  "devDependencies": {