@microsoft/teamsfx 1.2.1-rc.0 → 1.2.1-rc.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/teamsfx",
3
- "version": "1.2.1-rc.0",
3
+ "version": "1.2.1-rc.1",
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",
@@ -129,7 +129,7 @@
129
129
  "webpack": "^5.62.1",
130
130
  "yargs": "^17.2.1"
131
131
  },
132
- "gitHead": "e74291d967f60910cb52278dfdd38d26d2414b57",
132
+ "gitHead": "4a129d1ba158b94149387811fe2d58e6a2ef1801",
133
133
  "publishConfig": {
134
134
  "access": "public"
135
135
  },
@@ -1446,6 +1446,7 @@ export declare class NotificationBot {
1446
1446
  findMember(predicate: (member: Member) => Promise<boolean>, scope?: SearchScope): Promise<Member | undefined>;
1447
1447
  /**
1448
1448
  * Returns the first {@link Channel} where predicate is true, and undefined otherwise.
1449
+ * (Ensure the bot app is installed into the `General` channel, otherwise undefined will be returned.)
1449
1450
  *
1450
1451
  * @param predicate find calls predicate once for each channel of the installation,
1451
1452
  * until it finds one where predicate returns true. If such a channel is found, find
@@ -1464,6 +1465,7 @@ export declare class NotificationBot {
1464
1465
  findAllMembers(predicate: (member: Member) => Promise<boolean>, scope?: SearchScope): Promise<Member[]>;
1465
1466
  /**
1466
1467
  * Returns all {@link Channel} where predicate is true, and empty array otherwise.
1468
+ * (Ensure the bot app is installed into the `General` channel, otherwise empty array will be returned.)
1467
1469
  *
1468
1470
  * @param predicate find calls predicate for each channel of the installation.
1469
1471
  * @returns an array of {@link Channel} where predicate is true, and empty array otherwise.