@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
|
});
|
package/oclif.manifest.json
CHANGED