@microsoft/teamsfx 1.2.1-rc.0 → 1.2.1-rc.1
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/dist/index.esm2017.js +2 -0
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm2017.mjs +13 -2
- package/dist/index.esm2017.mjs.map +1 -1
- package/dist/index.esm5.js +2 -0
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +13 -2
- package/dist/index.node.cjs.js.map +1 -1
- package/package.json +2 -2
- package/types/teamsfx.d.ts +2 -0
package/dist/index.esm5.js
CHANGED
|
@@ -1865,6 +1865,7 @@ class NotificationBot {
|
|
|
1865
1865
|
}
|
|
1866
1866
|
/**
|
|
1867
1867
|
* Returns the first {@link Channel} where predicate is true, and undefined otherwise.
|
|
1868
|
+
* (Ensure the bot app is installed into the `General` channel, otherwise undefined will be returned.)
|
|
1868
1869
|
*
|
|
1869
1870
|
* @remarks
|
|
1870
1871
|
* Only work on server side.
|
|
@@ -1897,6 +1898,7 @@ class NotificationBot {
|
|
|
1897
1898
|
}
|
|
1898
1899
|
/**
|
|
1899
1900
|
* Returns all {@link Channel} where predicate is true, and empty array otherwise.
|
|
1901
|
+
* (Ensure the bot app is installed into the `General` channel, otherwise empty array will be returned.)
|
|
1900
1902
|
*
|
|
1901
1903
|
* @remarks
|
|
1902
1904
|
* Only work on server side.
|