neonctl 1.11.1 → 1.11.2

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.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -36,6 +36,7 @@ builder = builder
36
36
  })
37
37
  .option('api-host', {
38
38
  describe: 'The API host',
39
+ hidden: true,
39
40
  default: 'https://console.neon.tech/api/v2',
40
41
  })
41
42
  // Setup config directory
@@ -48,10 +49,12 @@ builder = builder
48
49
  // Auth flow
49
50
  .option('oauth-host', {
50
51
  description: 'URL to Neon OAuth host',
52
+ hidden: true,
51
53
  default: 'https://oauth2.neon.tech',
52
54
  })
53
55
  .option('client-id', {
54
56
  description: 'OAuth client id',
57
+ hidden: true,
55
58
  type: 'string',
56
59
  default: defaultClientID,
57
60
  })
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git@github.com:neondatabase/neonctl.git"
6
6
  },
7
7
  "type": "module",
8
- "version": "1.11.1",
8
+ "version": "1.11.2",
9
9
  "description": "CLI tool for NeonDB Cloud management",
10
10
  "main": "index.js",
11
11
  "author": "NeonDB",