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.
- package/commands/branches.js +2 -5
- package/package.json +1 -1
package/commands/branches.js
CHANGED
|
@@ -87,7 +87,7 @@ export const builder = (argv) => argv
|
|
|
87
87
|
default: false,
|
|
88
88
|
},
|
|
89
89
|
'expires-at': {
|
|
90
|
-
describe: '
|
|
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',
|