neonctl 1.25.2 → 1.25.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.
@@ -1,6 +1,6 @@
1
1
  import { EndpointType } from '@neondatabase/api-client';
2
2
  import { writer } from '../writer.js';
3
- import { branchCreateRequest, branchCreateRequestEndpointOptions, } from '../parameters.gen.js';
3
+ import { branchCreateRequest } from '../parameters.gen.js';
4
4
  import { retryOnLock } from '../api.js';
5
5
  import { branchIdFromProps, fillSingleProject } from '../utils/enrichers.js';
6
6
  import { looksLikeBranchId, looksLikeLSN, looksLikeTimestamp, } from '../utils/formats.js';
@@ -51,8 +51,7 @@ export const builder = (argv) => argv
51
51
  choices: Object.values(EndpointType),
52
52
  },
53
53
  'suspend-timeout': {
54
- describe: branchCreateRequestEndpointOptions.suspend_timeout_seconds
55
- .description,
54
+ describe: 'Duration of inactivity in seconds after which the compute endpoint is\nautomatically suspended. The value `0` means use the global default.\nThe value `-1` means never suspend. The default value is `300` seconds (5 minutes).\nThe maximum value is `604800` seconds (1 week).',
56
55
  type: 'number',
57
56
  implies: 'compute',
58
57
  default: 0,
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.25.2",
8
+ "version": "1.25.3",
9
9
  "description": "CLI tool for NeonDB Cloud management",
10
10
  "main": "index.js",
11
11
  "author": "NeonDB",