@microsoft/teamsfx 1.2.1-rc.0 → 1.2.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 +3 -3
- package/types/teamsfx.d.ts +2 -0
package/dist/index.esm2017.js
CHANGED
|
@@ -1810,6 +1810,7 @@ class NotificationBot {
|
|
|
1810
1810
|
}
|
|
1811
1811
|
/**
|
|
1812
1812
|
* Returns the first {@link Channel} where predicate is true, and undefined otherwise.
|
|
1813
|
+
* (Ensure the bot app is installed into the `General` channel, otherwise undefined will be returned.)
|
|
1813
1814
|
*
|
|
1814
1815
|
* @remarks
|
|
1815
1816
|
* Only work on server side.
|
|
@@ -1838,6 +1839,7 @@ class NotificationBot {
|
|
|
1838
1839
|
}
|
|
1839
1840
|
/**
|
|
1840
1841
|
* Returns all {@link Channel} where predicate is true, and empty array otherwise.
|
|
1842
|
+
* (Ensure the bot app is installed into the `General` channel, otherwise empty array will be returned.)
|
|
1841
1843
|
*
|
|
1842
1844
|
* @remarks
|
|
1843
1845
|
* Only work on server side.
|