@microsoft/agents-copilotstudio-client 1.4.0-beta.6.g725ba9fc33 → 1.4.1
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/dist/package.json +2 -2
- package/dist/src/browser.mjs +5 -5
- package/dist/src/browser.mjs.map +4 -4
- package/dist/src/connectionSettings.d.ts +2 -0
- package/dist/src/connectionSettings.js +5 -2
- package/dist/src/connectionSettings.js.map +1 -1
- package/dist/src/copilotStudioClient.d.ts +61 -6
- package/dist/src/copilotStudioClient.js +176 -38
- package/dist/src/copilotStudioClient.js.map +1 -1
- package/dist/src/copilotStudioConnectionSettings.d.ts +6 -0
- package/dist/src/copilotStudioWebChat.d.ts +30 -0
- package/dist/src/copilotStudioWebChat.js +38 -11
- package/dist/src/copilotStudioWebChat.js.map +1 -1
- package/dist/src/executeTurnRequest.d.ts +5 -2
- package/dist/src/executeTurnRequest.js +4 -2
- package/dist/src/executeTurnRequest.js.map +1 -1
- package/dist/src/index.d.ts +5 -0
- package/dist/src/index.js +5 -0
- package/dist/src/index.js.map +1 -1
- package/dist/src/powerPlatformEnvironment.d.ts +8 -0
- package/dist/src/powerPlatformEnvironment.js +21 -6
- package/dist/src/powerPlatformEnvironment.js.map +1 -1
- package/dist/src/responses.d.ts +50 -0
- package/dist/src/responses.js +35 -0
- package/dist/src/responses.js.map +1 -0
- package/dist/src/scopeHelper.d.ts +17 -0
- package/dist/src/scopeHelper.js +24 -0
- package/dist/src/scopeHelper.js.map +1 -0
- package/dist/src/startRequest.d.ts +34 -0
- package/dist/src/startRequest.js +22 -0
- package/dist/src/startRequest.js.map +1 -0
- package/dist/src/strategies/prebuiltBotStrategy.d.ts +2 -1
- package/dist/src/strategies/publishedBotStrategy.d.ts +2 -1
- package/dist/src/subscribeEvent.d.ts +33 -0
- package/dist/src/subscribeEvent.js +7 -0
- package/dist/src/subscribeEvent.js.map +1 -0
- package/dist/src/userAgentHelper.d.ts +26 -0
- package/dist/src/userAgentHelper.js +52 -0
- package/dist/src/userAgentHelper.js.map +1 -0
- package/package.json +2 -2
- package/src/connectionSettings.ts +4 -1
- package/src/copilotStudioClient.ts +238 -32
- package/src/copilotStudioConnectionSettings.ts +7 -0
- package/src/copilotStudioWebChat.ts +75 -12
- package/src/executeTurnRequest.ts +7 -2
- package/src/index.ts +5 -0
- package/src/powerPlatformEnvironment.ts +26 -7
- package/src/responses.ts +75 -0
- package/src/scopeHelper.ts +22 -0
- package/src/startRequest.ts +48 -0
- package/src/strategies/prebuiltBotStrategy.ts +1 -1
- package/src/strategies/publishedBotStrategy.ts +1 -1
- package/src/subscribeEvent.ts +38 -0
- package/src/userAgentHelper.ts +49 -0
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/agents-copilotstudio-client",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
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.4.
|
|
30
|
+
"@microsoft/agents-activity": "1.4.1",
|
|
31
31
|
"eventsource-client": "^1.2.0",
|
|
32
32
|
"rxjs": "7.8.2",
|
|
33
33
|
"uuid": "^11.1.0"
|