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 +1 -1
- package/index.js +1 -1
- package/package.json +3 -3
package/analytics.js
CHANGED
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
|
|
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.
|
|
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": "
|
|
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
|
|
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",
|