@microsoft/teamsfx 0.4.1 → 0.4.2-alpha.096c8289.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/README.md +3 -4
- package/dist/index.esm2017.js +163 -378
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +32 -11
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +365 -722
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +448 -544
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +12 -10
- package/types/teamsfx.d.ts +8 -2
package/README.md
CHANGED
|
@@ -45,7 +45,6 @@ Please note that you need to load configuration before using any credentials.
|
|
|
45
45
|
loadConfiguration({
|
|
46
46
|
authentication: {
|
|
47
47
|
initiateLoginEndpoint: process.env.REACT_APP_START_LOGIN_PAGE_URL,
|
|
48
|
-
simpleAuthEndpoint: process.env.REACT_APP_TEAMSFX_ENDPOINT,
|
|
49
48
|
clientId: process.env.REACT_APP_CLIENT_ID,
|
|
50
49
|
},
|
|
51
50
|
});
|
|
@@ -67,7 +66,6 @@ Use the snippet below:
|
|
|
67
66
|
loadConfiguration({
|
|
68
67
|
authentication: {
|
|
69
68
|
initiateLoginEndpoint: process.env.REACT_APP_START_LOGIN_PAGE_URL,
|
|
70
|
-
simpleAuthEndpoint: process.env.REACT_APP_TEAMSFX_ENDPOINT,
|
|
71
69
|
clientId: process.env.REACT_APP_CLIENT_ID,
|
|
72
70
|
},
|
|
73
71
|
});
|
|
@@ -165,7 +163,6 @@ Use `TeamsUserCredential` and `createMicrosoftGraphClient`.
|
|
|
165
163
|
loadConfiguration({
|
|
166
164
|
authentication: {
|
|
167
165
|
initiateLoginEndpoint: process.env.REACT_APP_START_LOGIN_PAGE_URL,
|
|
168
|
-
simpleAuthEndpoint: process.env.REACT_APP_TEAMSFX_ENDPOINT,
|
|
169
166
|
clientId: process.env.REACT_APP_CLIENT_ID,
|
|
170
167
|
},
|
|
171
168
|
});
|
|
@@ -182,7 +179,6 @@ Use `axios` library to make HTTP request to Azure Function.
|
|
|
182
179
|
loadConfiguration({
|
|
183
180
|
authentication: {
|
|
184
181
|
initiateLoginEndpoint: process.env.REACT_APP_START_LOGIN_PAGE_URL,
|
|
185
|
-
simpleAuthEndpoint: process.env.REACT_APP_TEAMSFX_ENDPOINT,
|
|
186
182
|
clientId: process.env.REACT_APP_CLIENT_ID,
|
|
187
183
|
},
|
|
188
184
|
});
|
|
@@ -205,7 +201,10 @@ Apart from `tedious`, you can also compose connection config of other SQL librar
|
|
|
205
201
|
```ts
|
|
206
202
|
loadConfiguration();
|
|
207
203
|
const sqlConnectConfig = new DefaultTediousConnectionConfiguration();
|
|
204
|
+
// if there's only one SQL database
|
|
208
205
|
const config = await sqlConnectConfig.getConfig();
|
|
206
|
+
// if there are multiple SQL databases
|
|
207
|
+
const config2 = await sqlConnectionConfig.getConfig("your database name");
|
|
209
208
|
const connection = new Connection(config);
|
|
210
209
|
connection.on("connect", (error) => {
|
|
211
210
|
if (error) {
|