@microsoft/teamsfx 2.0.1-alpha.e8170e1dc.0 → 2.0.1-alpha.f43656338.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 +2 -0
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +13 -2
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +2 -0
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +13 -2
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +3 -3
- package/types/teamsfx.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/teamsfx",
|
|
3
|
-
"version": "2.0.1-alpha.
|
|
3
|
+
"version": "2.0.1-alpha.f43656338.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.
|
|
52
|
+
"@microsoft/adaptivecards-tools": "1.1.1-alpha.f43656338.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",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"webpack": "^5.62.1",
|
|
130
130
|
"yargs": "^17.2.1"
|
|
131
131
|
},
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "d016b0ff29481e8a3376057fbbd005db060d3c9b",
|
|
133
133
|
"publishConfig": {
|
|
134
134
|
"access": "public"
|
|
135
135
|
},
|
package/types/teamsfx.d.ts
CHANGED
|
@@ -1448,6 +1448,7 @@ export declare class NotificationBot {
|
|
|
1448
1448
|
findMember(predicate: (member: Member) => Promise<boolean>, scope?: SearchScope): Promise<Member | undefined>;
|
|
1449
1449
|
/**
|
|
1450
1450
|
* Returns the first {@link Channel} where predicate is true, and undefined otherwise.
|
|
1451
|
+
* (Ensure the bot app is installed into the `General` channel, otherwise undefined will be returned.)
|
|
1451
1452
|
*
|
|
1452
1453
|
* @param predicate find calls predicate once for each channel of the installation,
|
|
1453
1454
|
* until it finds one where predicate returns true. If such a channel is found, find
|
|
@@ -1466,6 +1467,7 @@ export declare class NotificationBot {
|
|
|
1466
1467
|
findAllMembers(predicate: (member: Member) => Promise<boolean>, scope?: SearchScope): Promise<Member[]>;
|
|
1467
1468
|
/**
|
|
1468
1469
|
* Returns all {@link Channel} where predicate is true, and empty array otherwise.
|
|
1470
|
+
* (Ensure the bot app is installed into the `General` channel, otherwise empty array will be returned.)
|
|
1469
1471
|
*
|
|
1470
1472
|
* @param predicate find calls predicate for each channel of the installation.
|
|
1471
1473
|
* @returns an array of {@link Channel} where predicate is true, and empty array otherwise.
|