@microsoft/teamsfx 1.2.0-rc.0 → 1.2.1-alpha.1d4ae023d.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.
|
|
3
|
+
"version": "1.2.1-alpha.1d4ae023d.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": "
|
|
52
|
+
"@microsoft/adaptivecards-tools": "1.0.4-alpha.1d4ae023d.0",
|
|
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",
|
|
@@ -65,8 +64,7 @@
|
|
|
65
64
|
"@microsoft/teams-js": "^1.9.0"
|
|
66
65
|
},
|
|
67
66
|
"devDependencies": {
|
|
68
|
-
"@azure/arm-sql": "^
|
|
69
|
-
"@azure/ms-rest-nodeauth": "^3.1.1",
|
|
67
|
+
"@azure/arm-sql": "^9.0.0",
|
|
70
68
|
"@commitlint/cli": "^14.1.0",
|
|
71
69
|
"@commitlint/config-conventional": "^12.0.1",
|
|
72
70
|
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
|
@@ -131,7 +129,7 @@
|
|
|
131
129
|
"webpack": "^5.62.1",
|
|
132
130
|
"yargs": "^17.2.1"
|
|
133
131
|
},
|
|
134
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "34de3835ac37595574d419fcd267b8913270e0cc",
|
|
135
133
|
"publishConfig": {
|
|
136
134
|
"access": "public"
|
|
137
135
|
},
|
package/types/teamsfx.d.ts
CHANGED
|
@@ -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
|
|
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:
|
|
1111
|
+
static adaptiveCard(card: unknown): InvokeResponse;
|
|
1113
1112
|
/**
|
|
1114
1113
|
* Create an invoke response with error code and message.
|
|
1115
1114
|
*
|