neonctl 2.14.0 → 2.15.0

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.
@@ -87,7 +87,7 @@ export const builder = (argv) => argv
87
87
  default: false,
88
88
  },
89
89
  'expires-at': {
90
- describe: '[PRIVATE-PREVIEW] Set an expiration date for the branch. Accepts a date string (e.g., 2024-12-31T23:59:59Z).',
90
+ describe: 'Set an expiration date for the branch. Accepts a date string (e.g., 2024-12-31T23:59:59Z).',
91
91
  type: 'string',
92
92
  requiresArg: true,
93
93
  },
@@ -139,10 +139,7 @@ export const builder = (argv) => argv
139
139
  .command('set-default <id|name>', 'Set a branch as default', (yargs) => yargs, (args) => setDefault(args))
140
140
  .command({
141
141
  command: 'set-expiration <id|name>',
142
- /**
143
- * @info setting `describe` to `false` hides from the `help` command
144
- */
145
- describe: false,
142
+ describe: 'Set an expiration date for the branch',
146
143
  builder: (yargs) => yargs.options({
147
144
  'expires-at': {
148
145
  describe: 'Set a expiration date for the branch. If omitted, expiration will be removed. Format [RFC3339]: 2024-12-31T23:59:59Z',
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "url": "git+ssh://git@github.com/neondatabase/neonctl.git"
6
6
  },
7
7
  "type": "module",
8
- "version": "2.14.0",
8
+ "version": "2.15.0",
9
9
  "description": "CLI tool for NeonDB Cloud management",
10
10
  "main": "index.js",
11
11
  "author": "NeonDB",