@heroku/skynet 2.0.2 → 2.0.3

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.
@@ -14,7 +14,7 @@ export default class Allowlists extends Command {
14
14
  let response = await skynet.allowlists();
15
15
  response = JSON.parse(response);
16
16
  if (Object.keys(response).length > 0) {
17
- ux.table(response, {
17
+ ux.ux.table(response, {
18
18
  Value: {},
19
19
  Notes: {},
20
20
  CreatedAt: {},
@@ -13,7 +13,7 @@ export default class GetCategories extends Command {
13
13
  const skynet = new SkynetAPI(this.heroku.auth);
14
14
  let response = await skynet.categories();
15
15
  response = JSON.parse(response);
16
- ux.table(response, {
16
+ ux.ux.table(response, {
17
17
  Category: {},
18
18
  Description: {}
19
19
  });
@@ -756,5 +756,5 @@
756
756
  ]
757
757
  }
758
758
  },
759
- "version": "2.0.2"
759
+ "version": "2.0.3"
760
760
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heroku/skynet",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "use Skynet from Heroku CLI",
5
5
  "type": "module",
6
6
  "repository": "heroku/heroku-skynet-cli",