@nirvana-labs/nirvana 1.17.4 → 1.18.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/CHANGELOG.md +34 -0
- package/bin/cli +4 -10
- package/client.d.mts +1 -1
- package/client.d.ts +1 -1
- package/client.js +3 -3
- package/client.js.map +1 -1
- package/client.mjs +3 -3
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/api-keys.d.mts +25 -13
- package/resources/api-keys.d.mts.map +1 -1
- package/resources/api-keys.d.ts +25 -13
- package/resources/api-keys.d.ts.map +1 -1
- package/resources/compute/vms/availability.d.mts +3 -3
- package/resources/compute/vms/availability.d.ts +3 -3
- package/resources/compute/vms/vms.d.mts +3 -3
- package/resources/compute/vms/vms.d.ts +3 -3
- package/resources/compute/volumes/availability.d.mts +5 -5
- package/resources/compute/volumes/availability.d.ts +5 -5
- package/resources/compute/volumes/volumes.d.mts +14 -14
- package/resources/compute/volumes/volumes.d.ts +14 -14
- package/resources/connect/flux/flux.d.mts +2 -2
- package/resources/connect/flux/flux.d.mts.map +1 -1
- package/resources/connect/flux/flux.d.ts +2 -2
- package/resources/connect/flux/flux.d.ts.map +1 -1
- package/resources/networking/firewall-rules.d.mts +19 -19
- package/resources/networking/firewall-rules.d.ts +19 -19
- package/resources/networking/vpcs/vpcs.d.mts +5 -5
- package/resources/networking/vpcs/vpcs.d.ts +5 -5
- package/resources/operations.d.mts +10 -10
- package/resources/operations.d.ts +10 -10
- package/resources/rpc-nodes/dedicated/dedicated.d.mts +1 -1
- package/resources/rpc-nodes/dedicated/dedicated.d.ts +1 -1
- package/resources/rpc-nodes/flex/flex.d.mts +1 -1
- package/resources/rpc-nodes/flex/flex.d.ts +1 -1
- package/resources/user.d.mts +6 -3
- package/resources/user.d.mts.map +1 -1
- package/resources/user.d.ts +6 -3
- package/resources/user.d.ts.map +1 -1
- package/src/client.ts +3 -3
- package/src/resources/api-keys.ts +28 -13
- package/src/resources/compute/vms/availability.ts +3 -3
- package/src/resources/compute/vms/vms.ts +3 -3
- package/src/resources/compute/volumes/availability.ts +5 -5
- package/src/resources/compute/volumes/volumes.ts +14 -14
- package/src/resources/connect/flux/flux.ts +2 -2
- package/src/resources/networking/firewall-rules.ts +19 -19
- package/src/resources/networking/vpcs/vpcs.ts +5 -5
- package/src/resources/operations.ts +10 -10
- package/src/resources/rpc-nodes/dedicated/dedicated.ts +1 -1
- package/src/resources/rpc-nodes/flex/flex.ts +1 -1
- package/src/resources/user.ts +6 -3
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -26,43 +26,43 @@ export class Operations extends APIResource {
|
|
|
26
26
|
*/
|
|
27
27
|
export interface Operation {
|
|
28
28
|
/**
|
|
29
|
-
* Unique identifier for the
|
|
29
|
+
* Unique identifier for the Operation.
|
|
30
30
|
*/
|
|
31
31
|
id: string;
|
|
32
32
|
|
|
33
33
|
/**
|
|
34
|
-
* When the
|
|
34
|
+
* When the Operation was created.
|
|
35
35
|
*/
|
|
36
36
|
created_at: string;
|
|
37
37
|
|
|
38
38
|
/**
|
|
39
|
-
* Kind of
|
|
39
|
+
* Kind of Operation.
|
|
40
40
|
*/
|
|
41
41
|
kind: OperationKind;
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
|
-
* ID of the resource that the
|
|
44
|
+
* ID of the resource that the Operation is acting on.
|
|
45
45
|
*/
|
|
46
46
|
resource_id: string;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
* Status of the
|
|
49
|
+
* Status of the Operation.
|
|
50
50
|
*/
|
|
51
51
|
status: OperationStatus;
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
|
-
* Type of
|
|
54
|
+
* Type of Operation.
|
|
55
55
|
*/
|
|
56
56
|
type: OperationType;
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
|
-
* When the
|
|
59
|
+
* When the Operation was updated.
|
|
60
60
|
*/
|
|
61
61
|
updated_at: string;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
/**
|
|
65
|
-
* Kind of
|
|
65
|
+
* Kind of Operation.
|
|
66
66
|
*/
|
|
67
67
|
export type OperationKind = 'vm' | 'volume' | 'vpc' | 'firewall_rule';
|
|
68
68
|
|
|
@@ -71,12 +71,12 @@ export interface OperationList {
|
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
|
-
* Status of the
|
|
74
|
+
* Status of the Operation.
|
|
75
75
|
*/
|
|
76
76
|
export type OperationStatus = 'pending' | 'running' | 'done' | 'failed' | 'unknown';
|
|
77
77
|
|
|
78
78
|
/**
|
|
79
|
-
* Type of
|
|
79
|
+
* Type of Operation.
|
|
80
80
|
*/
|
|
81
81
|
export type OperationType = 'create' | 'update' | 'delete' | 'restart';
|
|
82
82
|
|
package/src/resources/user.ts
CHANGED
|
@@ -13,9 +13,12 @@ export class UserResource extends APIResource {
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
/**
|
|
17
|
+
* User details.
|
|
18
|
+
*/
|
|
16
19
|
export interface User {
|
|
17
20
|
/**
|
|
18
|
-
* Unique identifier for the
|
|
21
|
+
* Unique identifier for the User.
|
|
19
22
|
*/
|
|
20
23
|
id: string;
|
|
21
24
|
|
|
@@ -25,14 +28,14 @@ export interface User {
|
|
|
25
28
|
email: string;
|
|
26
29
|
|
|
27
30
|
/**
|
|
28
|
-
* Services that the
|
|
31
|
+
* Services that the User has access to.
|
|
29
32
|
*/
|
|
30
33
|
services: User.Services;
|
|
31
34
|
}
|
|
32
35
|
|
|
33
36
|
export namespace User {
|
|
34
37
|
/**
|
|
35
|
-
* Services that the
|
|
38
|
+
* Services that the User has access to.
|
|
36
39
|
*/
|
|
37
40
|
export interface Services {
|
|
38
41
|
cloud?: boolean;
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.18.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.18.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.18.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.18.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|