@microsoft/teamsfx 1.0.3-alpha.f4587c1d0.0 → 1.1.1-alpha.c34648668.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 +30 -3
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +32 -6
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +30 -3
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +31 -5
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +3 -3
- package/types/teamsfx.d.ts +15 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.1-alpha.c34648668.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,7 +49,7 @@
|
|
|
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": "1.0.2-alpha.
|
|
52
|
+
"@microsoft/adaptivecards-tools": "1.0.2-alpha.c34648668.0",
|
|
53
53
|
"@microsoft/microsoft-graph-client": "^3.0.1",
|
|
54
54
|
"axios": "^0.27.2",
|
|
55
55
|
"botbuilder": ">=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": "a95200c1e30034d59891c2f4c428650eccd7143e",
|
|
132
132
|
"publishConfig": {
|
|
133
133
|
"access": "public"
|
|
134
134
|
},
|
package/types/teamsfx.d.ts
CHANGED
|
@@ -1102,7 +1102,21 @@ export declare interface NotificationTargetStorage {
|
|
|
1102
1102
|
* - "Group" means to a group chat.
|
|
1103
1103
|
* - "Person" means to a personal chat.
|
|
1104
1104
|
*/
|
|
1105
|
-
export declare
|
|
1105
|
+
export declare enum NotificationTargetType {
|
|
1106
|
+
/**
|
|
1107
|
+
* The notification will be sent to a team channel.
|
|
1108
|
+
* (By default, notification to a team will be sent to its "General" channel.)
|
|
1109
|
+
*/
|
|
1110
|
+
Channel = "Channel",
|
|
1111
|
+
/**
|
|
1112
|
+
* The notification will be sent to a group chat.
|
|
1113
|
+
*/
|
|
1114
|
+
Group = "Group",
|
|
1115
|
+
/**
|
|
1116
|
+
* The notification will be sent to a personal chat.
|
|
1117
|
+
*/
|
|
1118
|
+
Person = "Person"
|
|
1119
|
+
}
|
|
1106
1120
|
|
|
1107
1121
|
/**
|
|
1108
1122
|
* Represent on-behalf-of flow to get user identity, and it is designed to be used in server side.
|