@checkstack/integration-teams-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 +22 -0
- package/package.json +5 -5
- package/src/automations.test.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @checkstack/integration-teams-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-teams-backend",
|
|
3
|
-
"version": "0.1.
|
|
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.
|
|
19
|
-
"@checkstack/integration-backend": "0.
|
|
20
|
-
"@checkstack/automation-backend": "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.
|
|
28
|
+
"@checkstack/test-utils-backend": "0.1.33"
|
|
29
29
|
},
|
|
30
30
|
"description": "Checkstack integration-teams-backend plugin",
|
|
31
31
|
"author": {
|
package/src/automations.test.ts
CHANGED
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
connectionStoreRef,
|
|
17
17
|
type ConnectionStore,
|
|
18
18
|
} from "@checkstack/integration-backend";
|
|
19
|
-
import type { ServiceRef } from "@checkstack/backend-api";
|
|
19
|
+
import type { RpcClient, ServiceRef } from "@checkstack/backend-api";
|
|
20
20
|
|
|
21
21
|
import {
|
|
22
22
|
createTeamsActions,
|
|
@@ -112,6 +112,7 @@ function makeCtx(store: ConnectionStore) {
|
|
|
112
112
|
}
|
|
113
113
|
throw new Error(`Unstubbed service requested: ${ref.id}`);
|
|
114
114
|
},
|
|
115
|
+
rpcClient: { forPlugin: () => ({}) } as unknown as RpcClient,
|
|
115
116
|
};
|
|
116
117
|
}
|
|
117
118
|
|