@microsoft/teamsfx 0.7.1-beta.15e156d38.0 → 0.7.1-beta.c23501411.0
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/index.esm2017.js +1 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +21 -23
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +1 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +21 -23
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +4 -4
- package/types/teamsfx.d.ts +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx",
|
|
3
|
-
"version": "0.7.1-beta.
|
|
3
|
+
"version": "0.7.1-beta.c23501411.0",
|
|
4
4
|
"description": "Microsoft Teams Framework for Node.js and browser.",
|
|
5
5
|
"main": "dist/index.node.cjs.js",
|
|
6
6
|
"browser": "dist/index.esm2017.js",
|
|
@@ -49,9 +49,9 @@
|
|
|
49
49
|
"@azure/identity": "^2.0.1",
|
|
50
50
|
"@azure/msal-browser": "^2.21.0",
|
|
51
51
|
"@azure/msal-node": "~1.1.0",
|
|
52
|
-
"@microsoft/adaptivecards-tools": "0.1.7-beta.
|
|
52
|
+
"@microsoft/adaptivecards-tools": "0.1.7-beta.c23501411.0",
|
|
53
53
|
"@microsoft/microsoft-graph-client": "^3.0.1",
|
|
54
|
-
"axios": "^0.
|
|
54
|
+
"axios": "^0.27.2",
|
|
55
55
|
"botbuilder": ">=4.15.0 <5.0.0",
|
|
56
56
|
"botbuilder-dialogs": ">=4.15.0 <5.0.0",
|
|
57
57
|
"botframework-schema": ">=4.15.0 <5.0.0",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"webpack": "^5.62.1",
|
|
129
129
|
"yargs": "^17.2.1"
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "f81aca6d5cc7c672e9508f5093bea2b60cfd5f74",
|
|
132
132
|
"publishConfig": {
|
|
133
133
|
"access": "public"
|
|
134
134
|
},
|
package/types/teamsfx.d.ts
CHANGED
|
@@ -1804,8 +1804,9 @@ export declare interface TeamsFxBotCommandHandler {
|
|
|
1804
1804
|
* @param context The bot context.
|
|
1805
1805
|
* @param message The command message the user types from Teams.
|
|
1806
1806
|
* @returns A `Promise` representing an activity or text to send as the command response.
|
|
1807
|
+
* Or no return value if developers want to send the response activity by themself in this method.
|
|
1807
1808
|
*/
|
|
1808
|
-
handleCommandReceived(context: TurnContext, message: CommandMessage): Promise<string | Partial<Activity
|
|
1809
|
+
handleCommandReceived(context: TurnContext, message: CommandMessage): Promise<string | Partial<Activity> | void>;
|
|
1809
1810
|
}
|
|
1810
1811
|
|
|
1811
1812
|
/**
|