@microsoft/teamsfx 1.2.0-rc.0 → 1.2.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": "1.2.0-rc.0",
3
+ "version": "1.2.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,9 +49,8 @@
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.1",
52
+ "@microsoft/adaptivecards-tools": "^1.0.3",
53
53
  "@microsoft/microsoft-graph-client": "^3.0.1",
54
- "adaptivecards": "^2.10.0",
55
54
  "axios": "^0.27.2",
56
55
  "botbuilder": ">=4.15.0 <5.0.0",
57
56
  "botbuilder-dialogs": ">=4.15.0 <5.0.0",
@@ -131,7 +130,7 @@
131
130
  "webpack": "^5.62.1",
132
131
  "yargs": "^17.2.1"
133
132
  },
134
- "gitHead": "c3a96756c03a050baaca66ac509263bf744cccd0",
133
+ "gitHead": "2c2c3c44ab8eb39c64c43bb13d7be432491c0cab",
135
134
  "publishConfig": {
136
135
  "access": "public"
137
136
  },
@@ -20,7 +20,6 @@ import { DialogContext } from 'botbuilder-dialogs';
20
20
  import { DialogTurnResult } from 'botbuilder-dialogs';
21
21
  import { GetTokenOptions } from '@azure/identity';
22
22
  import { HeroCard } from 'botbuilder';
23
- import { IAdaptiveCard } from 'adaptivecards';
24
23
  import { InvokeResponse } from 'botbuilder';
25
24
  import { MessagingExtensionResponse } from 'botbuilder';
26
25
  import { O365ConnectorCard } from 'botbuilder';
@@ -1069,7 +1068,7 @@ export declare enum InvokeResponseErrorCode {
1069
1068
  *
1070
1069
  * ```typescript
1071
1070
  *
1072
- * const myCard: IAdaptiveCard = {
1071
+ * const myCard = {
1073
1072
  * type: "AdaptiveCard",
1074
1073
  * body: [
1075
1074
  * {
@@ -1109,7 +1108,7 @@ export declare class InvokeResponseFactory {
1109
1108
  *
1110
1109
  * @returns {InvokeResponse} An InvokeResponse object.
1111
1110
  */
1112
- static adaptiveCard(card: IAdaptiveCard): InvokeResponse;
1111
+ static adaptiveCard(card: unknown): InvokeResponse;
1113
1112
  /**
1114
1113
  * Create an invoke response with error code and message.
1115
1114
  *