@checkstack/integration-webex-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,27 @@
1
1
  # @checkstack/integration-webex-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
+ - Updated dependencies [9dcc848]
20
+ - @checkstack/backend-api@0.21.0
21
+ - @checkstack/automation-backend@0.5.0
22
+ - @checkstack/integration-backend@0.4.0
23
+ - @checkstack/common@0.13.0
24
+
3
25
  ## 0.1.2
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/integration-webex-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,9 +15,9 @@
15
15
  "pack": "bunx @checkstack/scripts plugin-pack"
16
16
  },
17
17
  "dependencies": {
18
- "@checkstack/backend-api": "0.18.0",
19
- "@checkstack/integration-backend": "0.2.0",
20
- "@checkstack/automation-backend": "0.2.0",
18
+ "@checkstack/backend-api": "0.20.0",
19
+ "@checkstack/integration-backend": "0.3.1",
20
+ "@checkstack/automation-backend": "0.4.0",
21
21
  "@checkstack/common": "0.12.0",
22
22
  "zod": "^4.2.1"
23
23
  },
@@ -25,7 +25,7 @@
25
25
  "@types/bun": "^1.0.0",
26
26
  "typescript": "^5.0.0",
27
27
  "@checkstack/tsconfig": "0.0.7",
28
- "@checkstack/test-utils-backend": "0.1.31"
28
+ "@checkstack/test-utils-backend": "0.1.33"
29
29
  },
30
30
  "description": "Checkstack integration-webex-backend plugin",
31
31
  "author": {
@@ -12,7 +12,7 @@ import {
12
12
  connectionStoreRef,
13
13
  type ConnectionStore,
14
14
  } from "@checkstack/integration-backend";
15
- import type { ServiceRef } from "@checkstack/backend-api";
15
+ import type { RpcClient, ServiceRef } from "@checkstack/backend-api";
16
16
 
17
17
  import {
18
18
  createWebexActions,
@@ -104,6 +104,7 @@ function makeCtx(store: ConnectionStore) {
104
104
  }
105
105
  throw new Error(`Unstubbed service requested: ${ref.id}`);
106
106
  },
107
+ rpcClient: { forPlugin: () => ({}) } as unknown as RpcClient,
107
108
  };
108
109
  }
109
110