@microsoft/agents-copilotstudio-client 1.0.3-g444d99f704 → 1.0.13-gef996e80de
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 +4 -4
- package/dist/package.json +2 -2
- package/dist/src/browser.mjs +8 -8
- package/dist/src/browser.mjs.map +3 -3
- package/dist/src/copilotStudioClient.d.ts +7 -0
- package/dist/src/copilotStudioClient.js +11 -2
- package/dist/src/copilotStudioClient.js.map +1 -1
- package/dist/src/copilotStudioWebChat.d.ts +1 -1
- package/dist/src/copilotStudioWebChat.js +3 -4
- package/dist/src/copilotStudioWebChat.js.map +1 -1
- package/package.json +2 -2
- package/src/copilotStudioClient.ts +11 -1
- package/src/copilotStudioWebChat.ts +5 -4
package/README.md
CHANGED
|
@@ -101,14 +101,14 @@ The following are the most _common_ options:
|
|
|
101
101
|
|
|
102
102
|
Using Environment ID and Copilot Studio Agent Schema Name:
|
|
103
103
|
|
|
104
|
-
```
|
|
105
|
-
environmentId=
|
|
104
|
+
```
|
|
105
|
+
environmentId=your-environment-id
|
|
106
106
|
agentIdentifier=your-agent-schema-name
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
Using the DirectConnectUrl:
|
|
110
110
|
|
|
111
|
-
```
|
|
111
|
+
```
|
|
112
112
|
directConnectUrl=https://direct.connect.url
|
|
113
113
|
```
|
|
114
114
|
|
|
@@ -124,4 +124,4 @@ const createClient = async (): Promise<CopilotStudioClient> => {
|
|
|
124
124
|
const copilotClient = await createClient()
|
|
125
125
|
const replies = await copilotClient.startConversationAsync(true)
|
|
126
126
|
replies.forEach(r => console.log(r.text))
|
|
127
|
-
```
|
|
127
|
+
```
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/agents-copilotstudio-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13-gef996e80de",
|
|
4
4
|
"homepage": "https://github.com/microsoft/Agents-for-js",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"build:browser": "esbuild --platform=browser --target=es2019 --format=esm --bundle --sourcemap --minify --outfile=dist/src/browser.mjs src/index.ts"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@microsoft/agents-activity": "1.0.
|
|
30
|
+
"@microsoft/agents-activity": "1.0.13-gef996e80de",
|
|
31
31
|
"axios": "^1.9.0",
|
|
32
32
|
"rxjs": "7.8.2",
|
|
33
33
|
"uuid": "^11.1.0"
|