@microsoft/teams.a2a 2.0.2 → 2.0.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/README.md +3 -3
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -23,11 +23,11 @@ This is a plugin that enables your Teams agent to be used as an A2A agent.
|
|
|
23
23
|
> [!NOTE]
|
|
24
24
|
> The A2A protocol is still early in development and hence this package is fairly experimental.
|
|
25
25
|
|
|
26
|
-
-
|
|
26
|
+
- [What is A2A?](https://google.github.io/A2A)
|
|
27
27
|
|
|
28
28
|
## Server
|
|
29
29
|
|
|
30
|
-
Teams
|
|
30
|
+
Teams SDK allows your applications to easily be accessible via Teams. However, using this plugin, you can also enable your agent to be used as an A2A agent so that it can be used by other A2A clients.
|
|
31
31
|
|
|
32
32
|
### Configuration
|
|
33
33
|
|
|
@@ -91,7 +91,7 @@ app.event(
|
|
|
91
91
|
// The taskContext contains details about the task request
|
|
92
92
|
const result = await myEventHandler(taskContext, accumulateArtifacts);
|
|
93
93
|
await respond(result);
|
|
94
|
-
}
|
|
94
|
+
},
|
|
95
95
|
);
|
|
96
96
|
```
|
|
97
97
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teams.a2a",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@a2a-js/sdk": "^0.3.4",
|
|
33
|
-
"@microsoft/teams.ai": "2.0.
|
|
34
|
-
"@microsoft/teams.apps": "2.0.
|
|
35
|
-
"@microsoft/teams.common": "2.0.
|
|
33
|
+
"@microsoft/teams.ai": "2.0.3",
|
|
34
|
+
"@microsoft/teams.apps": "2.0.3",
|
|
35
|
+
"@microsoft/teams.common": "2.0.3"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@microsoft/teams.config": "2.0.
|
|
38
|
+
"@microsoft/teams.config": "2.0.3",
|
|
39
39
|
"@types/jest": "^29.5.12",
|
|
40
40
|
"@types/lodash.camelcase": "^4.3.9",
|
|
41
41
|
"@types/node": "^22.0.2",
|