@microsoft/teamsfx 2.2.3-alpha.9b38c38b5.0 → 2.2.3-alpha.dea6b9e8a.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.2.3-alpha.9b38c38b5.0",
3
+ "version": "2.2.3-alpha.dea6b9e8a.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.14.6",
52
- "@microsoft/adaptivecards-tools": "1.3.3-alpha.9b38c38b5.0",
52
+ "@microsoft/adaptivecards-tools": "1.3.3-alpha.dea6b9e8a.0",
53
53
  "@microsoft/microsoft-graph-client": "^3.0.5",
54
54
  "axios": "^0.27.2",
55
55
  "botbuilder": ">=4.18.0 <5.0.0",
@@ -67,7 +67,7 @@
67
67
  "@istanbuljs/nyc-config-typescript": "^1.0.1",
68
68
  "@microsoft/api-documenter": "^7.14.1",
69
69
  "@microsoft/api-extractor": "^7.19.4",
70
- "@microsoft/eslint-plugin-teamsfx": "0.0.5-alpha.9b38c38b5.0",
70
+ "@microsoft/eslint-plugin-teamsfx": "0.0.5-alpha.dea6b9e8a.0",
71
71
  "@microsoft/teams-js": "^2.13.0",
72
72
  "@rollup/plugin-json": "^4.1.0",
73
73
  "@types/chai": "^4.2.22",
@@ -125,7 +125,7 @@
125
125
  "webpack": "^5.62.1",
126
126
  "yargs": "^17.2.1"
127
127
  },
128
- "gitHead": "6716290ed4807698e9ee1cb76071bc77ed090b81",
128
+ "gitHead": "23c7c50bd034363066739b8d71f1db129096def4",
129
129
  "publishConfig": {
130
130
  "access": "public"
131
131
  },
@@ -2040,6 +2040,13 @@ export declare class BotSsoExecutionDialog extends ComponentDialog {
2040
2040
  * @returns - The {@link TeamsBotInstallation} instance or null.
2041
2041
  */
2042
2042
  buildTeamsBotInstallation(conversationReference: Partial<ConversationReference>): TeamsBotInstallation_2 | null;
2043
+ /**
2044
+ * Validate the installation by getting paged memebers.
2045
+ *
2046
+ * @param conversationReference The bound `ConversationReference`.
2047
+ * @returns Returns false if recieves `BotNotInConversationRoster` error, otherwise returns true.
2048
+ */
2049
+ validateInstallation(conversationReference: Partial<ConversationReference>): Promise<boolean>;
2043
2050
  /**
2044
2051
  * Gets a pagined list of targets where the bot is installed.
2045
2052
  *
@@ -2051,7 +2058,7 @@ export declare class BotSsoExecutionDialog extends ComponentDialog {
2051
2058
  *
2052
2059
  * @returns An array of {@link TeamsBotInstallation} with paged data and continuation token.
2053
2060
  */
2054
- getPagedInstallations(pageSize?: number, continuationToken?: string): Promise<PagedData<TeamsBotInstallation_2>>;
2061
+ getPagedInstallations(pageSize?: number, continuationToken?: string, validationEnabled?: boolean): Promise<PagedData<TeamsBotInstallation_2>>;
2055
2062
  /**
2056
2063
  * Get all targets where the bot is installed.
2057
2064
  *