@heroku/skynet 1.6.18 → 1.6.20

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/README.md CHANGED
@@ -3,6 +3,13 @@
3
3
 
4
4
  Use Skynet from Heroku CLI
5
5
 
6
+ Most Skynet CLI commands require sudo and only the folowing teams are authrozied to use Skynet CLI:
7
+ * heroku-secops
8
+ * heroku-security
9
+ * heroku-support-staff
10
+ * heroku-cedar
11
+ * heroku-dogwood
12
+
6
13
  ### Installation
7
14
  ```
8
15
  heroku plugins:install heroku-skynet-cli
@@ -31,7 +31,7 @@ module.exports = {
31
31
  help: `Examples:
32
32
  $ heroku skynet:deprovision -u foo@bar.com -n "helpful suspend message" -c "spam"`,
33
33
  flags: [
34
- { name: 'user', char: 'u', description: 'user to deprovision', hasValue: true },
34
+ { name: 'user', char: 'u', description: 'user to deprovision', hasValue: true, required: true },
35
35
  { name: 'category', char: 'c', description: 'suspension category', hasValue: true, required: true },
36
36
  { name: 'notes', char: 'n', description: 'suspend notes', hasValue: true, required: true },
37
37
  { name: 'bypass', description: 'bypass the whitelist', hasValue: false, required: false },
@@ -23,7 +23,7 @@ module.exports = {
23
23
  command: 'unsuspend:app',
24
24
  description: '(requires sudo) unsuspends an app',
25
25
  help: `Examples:
26
- $ heroku skynet:unsuspend:app -a test-app -n "helpful unsuspend message" -c "ddos"`,
26
+ $ heroku skynet:unsuspend:app -a test-app -n "helpful unsuspend message" -c "unsuspend-apology"`,
27
27
  flags: [
28
28
  { name: 'app', char: 'a', description: 'app to unsuspend', hasValue: true, required: true },
29
29
  { name: 'category', char: 'c', description: 'unsuspension category', hasValue: true, required: true },
@@ -23,7 +23,7 @@ module.exports = {
23
23
  command: 'unsuspend:user',
24
24
  description: '(requires sudo) unsuspends a user',
25
25
  help: `Examples:
26
- $ heroku skynet:unsuspend:user -u foo@bar.com -n "helpful unsuspend message" -c "ddos"`,
26
+ $ heroku skynet:unsuspend:user -u foo@bar.com -n "helpful unsuspend message" -c "unsuspend-account-recovery""`,
27
27
  flags: [
28
28
  { name: 'user', char: 'u', description: 'user to unsuspend', hasValue: true },
29
29
  { name: 'category', char: 'c', description: 'unsuspension category', hasValue: true, required: true },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@heroku/skynet",
3
- "version": "1.6.18",
3
+ "version": "1.6.20",
4
4
  "description": "use Skynet from Heroku CLI",
5
5
  "main": "index.js",
6
6
  "author": "Bob Argenbright @byt3smith",
@@ -27,7 +27,7 @@
27
27
  "mocha": "^5.2.0",
28
28
  "mockdate": "^2.0.1",
29
29
  "nock": "^12.0.3",
30
- "np": "^3.1.0",
30
+ "np": "^6.3.1",
31
31
  "standard": "^14.3.3",
32
32
  "unexpected": "^10.29.0"
33
33
  },