@certik/skynet 0.8.8 → 0.8.9

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/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Changelog
2
2
 
3
- ## 0.8.8
3
+ ## 0.8.9
4
4
 
5
5
  - Improved `postMessage` in `slack` library to support private channels
6
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.8.8",
3
+ "version": "0.8.9",
4
4
  "description": "Skynet Shared JS library",
5
5
  "main": "index.js",
6
6
  "author": "CertiK Engineering",
package/slack.js CHANGED
@@ -21,7 +21,7 @@ async function findConversation(client, name) {
21
21
 
22
22
  // Call the conversations.list method using the built-in WebClient
23
23
  let result = await conversations.list({
24
- types: "public_channel,private_channel,mpim,im"
24
+ types: "public_channel,private_channel,mpim,im",
25
25
  limit: 1000,
26
26
  });
27
27