neonctl 1.9.1 → 1.9.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.
package/analytics.js CHANGED
@@ -19,7 +19,7 @@ export const analyticsMiddleware = (args) => {
19
19
  event: 'CLI Started',
20
20
  properties: {
21
21
  version: pkg.version,
22
- command: args._,
22
+ command: args._.join(' '),
23
23
  flags: {
24
24
  output: args.output,
25
25
  },
package/index.js CHANGED
@@ -45,7 +45,7 @@ const builder = yargs(hideBin(process.argv))
45
45
  .middleware(ensureConfigDir)
46
46
  // Auth flow
47
47
  .option('oauth-host', {
48
- description: 'URL to Neon OAUTH host',
48
+ description: 'URL to Neon OAuth host',
49
49
  default: 'https://oauth2.neon.tech',
50
50
  })
51
51
  .option('client-id', {
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.9.1",
8
+ "version": "1.9.3",
9
9
  "description": "CLI tool for NeonDB Cloud management",
10
10
  "main": "index.js",
11
11
  "author": "NeonDB",
@@ -44,7 +44,7 @@
44
44
  "typescript": "^4.7.4"
45
45
  },
46
46
  "dependencies": {
47
- "@neondatabase/api-client": "^1.1.0",
47
+ "@neondatabase/api-client": "1.1.0",
48
48
  "@segment/analytics-node": "^1.0.0-beta.26",
49
49
  "axios": "^1.4.0",
50
50
  "axios-debug-log": "^1.0.0",
@@ -63,7 +63,7 @@
63
63
  "scripts": {
64
64
  "watch": "tsc --watch",
65
65
  "lint": "tsc --noEmit && eslint src --ext .ts",
66
- "build": "npm run generateParams && npm run clean && tsc && cp src/*.html package.json README.md ./dist",
66
+ "build": "npm run generateParams && npm run clean && tsc && cp src/*.html package*.json README.md ./dist",
67
67
  "clean": "rm -rf dist",
68
68
  "generateParams": "ts-node --esm generateOptionsFromSpec.ts",
69
69
  "start": "node src/index.js",