@checkstack/integration-webhook-backend 0.1.2 → 0.1.3

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 CHANGED
@@ -1,5 +1,25 @@
1
1
  # @checkstack/integration-webhook-backend
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [9dcc848]
8
+ - Updated dependencies [9dcc848]
9
+ - Updated dependencies [9dcc848]
10
+ - Updated dependencies [9dcc848]
11
+ - Updated dependencies [9dcc848]
12
+ - Updated dependencies [9dcc848]
13
+ - Updated dependencies [9dcc848]
14
+ - Updated dependencies [9dcc848]
15
+ - Updated dependencies [9dcc848]
16
+ - Updated dependencies [9dcc848]
17
+ - Updated dependencies [9dcc848]
18
+ - Updated dependencies [9dcc848]
19
+ - @checkstack/backend-api@0.21.0
20
+ - @checkstack/automation-backend@0.5.0
21
+ - @checkstack/common@0.13.0
22
+
3
23
  ## 0.1.2
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/integration-webhook-backend",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
@@ -15,8 +15,8 @@
15
15
  "pack": "bunx @checkstack/scripts plugin-pack"
16
16
  },
17
17
  "dependencies": {
18
- "@checkstack/backend-api": "0.18.0",
19
- "@checkstack/automation-backend": "0.2.0",
18
+ "@checkstack/backend-api": "0.20.0",
19
+ "@checkstack/automation-backend": "0.4.0",
20
20
  "@checkstack/common": "0.12.0",
21
21
  "zod": "^4.2.1"
22
22
  },
@@ -25,7 +25,7 @@
25
25
  "typescript": "^5.0.0",
26
26
  "@checkstack/tsconfig": "0.0.7",
27
27
  "@checkstack/scripts": "0.3.4",
28
- "@checkstack/test-utils-backend": "0.1.31"
28
+ "@checkstack/test-utils-backend": "0.1.33"
29
29
  },
30
30
  "description": "Checkstack integration-webhook-backend plugin",
31
31
  "author": {
@@ -8,7 +8,7 @@
8
8
  * so we don't need to set up a template runtime here.
9
9
  */
10
10
  import { describe, it, expect, beforeEach } from "bun:test";
11
- import type { Logger } from "@checkstack/backend-api";
11
+ import type { Logger, RpcClient } from "@checkstack/backend-api";
12
12
  import { createMockLogger } from "@checkstack/test-utils-backend";
13
13
 
14
14
  import { webhookSendAction, webhookDeliveryArtifactType } from "./automations";
@@ -71,6 +71,7 @@ const ctxBase = {
71
71
  getService: async <T,>(): Promise<T> => {
72
72
  throw new Error("not used");
73
73
  },
74
+ rpcClient: { forPlugin: () => ({}) } as unknown as RpcClient,
74
75
  };
75
76
 
76
77
  const baseConfig = {