@microsoft/teamsfx 2.0.1-alpha.ba6cc7dba.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/teamsfx",
3
- "version": "2.0.1-alpha.ba6cc7dba.0",
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.0.4-alpha.ba6cc7dba.0",
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": "d48e0c46af8f796a5e1186abce63e95d24069106",
132
+ "gitHead": "d016b0ff29481e8a3376057fbbd005db060d3c9b",
133
133
  "publishConfig": {
134
134
  "access": "public"
135
135
  },
@@ -1003,6 +1003,8 @@ export declare interface GetTeamsUserTokenOptions extends GetTokenOptions {
1003
1003
  /**
1004
1004
  * Generate connection configuration consumed by tedious.
1005
1005
  *
1006
+ * @deprecated we recommend you compose your own Tedious configuration for better flexibility.
1007
+ *
1006
1008
  * @param {TeamsFx} teamsfx - Used to provide configuration and auth
1007
1009
  * @param { string? } databaseName - specify database name to override default one if there are multiple databases.
1008
1010
  *
@@ -1446,6 +1448,7 @@ export declare class NotificationBot {
1446
1448
  findMember(predicate: (member: Member) => Promise<boolean>, scope?: SearchScope): Promise<Member | undefined>;
1447
1449
  /**
1448
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.)
1449
1452
  *
1450
1453
  * @param predicate find calls predicate once for each channel of the installation,
1451
1454
  * until it finds one where predicate returns true. If such a channel is found, find
@@ -1464,6 +1467,7 @@ export declare class NotificationBot {
1464
1467
  findAllMembers(predicate: (member: Member) => Promise<boolean>, scope?: SearchScope): Promise<Member[]>;
1465
1468
  /**
1466
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.)
1467
1471
  *
1468
1472
  * @param predicate find calls predicate for each channel of the installation.
1469
1473
  * @returns an array of {@link Channel} where predicate is true, and empty array otherwise.