@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.
Files changed (57) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/bin/cli +4 -10
  3. package/client.d.mts +1 -1
  4. package/client.d.ts +1 -1
  5. package/client.js +3 -3
  6. package/client.js.map +1 -1
  7. package/client.mjs +3 -3
  8. package/client.mjs.map +1 -1
  9. package/package.json +1 -1
  10. package/resources/api-keys.d.mts +25 -13
  11. package/resources/api-keys.d.mts.map +1 -1
  12. package/resources/api-keys.d.ts +25 -13
  13. package/resources/api-keys.d.ts.map +1 -1
  14. package/resources/compute/vms/availability.d.mts +3 -3
  15. package/resources/compute/vms/availability.d.ts +3 -3
  16. package/resources/compute/vms/vms.d.mts +3 -3
  17. package/resources/compute/vms/vms.d.ts +3 -3
  18. package/resources/compute/volumes/availability.d.mts +5 -5
  19. package/resources/compute/volumes/availability.d.ts +5 -5
  20. package/resources/compute/volumes/volumes.d.mts +14 -14
  21. package/resources/compute/volumes/volumes.d.ts +14 -14
  22. package/resources/connect/flux/flux.d.mts +2 -2
  23. package/resources/connect/flux/flux.d.mts.map +1 -1
  24. package/resources/connect/flux/flux.d.ts +2 -2
  25. package/resources/connect/flux/flux.d.ts.map +1 -1
  26. package/resources/networking/firewall-rules.d.mts +19 -19
  27. package/resources/networking/firewall-rules.d.ts +19 -19
  28. package/resources/networking/vpcs/vpcs.d.mts +5 -5
  29. package/resources/networking/vpcs/vpcs.d.ts +5 -5
  30. package/resources/operations.d.mts +10 -10
  31. package/resources/operations.d.ts +10 -10
  32. package/resources/rpc-nodes/dedicated/dedicated.d.mts +1 -1
  33. package/resources/rpc-nodes/dedicated/dedicated.d.ts +1 -1
  34. package/resources/rpc-nodes/flex/flex.d.mts +1 -1
  35. package/resources/rpc-nodes/flex/flex.d.ts +1 -1
  36. package/resources/user.d.mts +6 -3
  37. package/resources/user.d.mts.map +1 -1
  38. package/resources/user.d.ts +6 -3
  39. package/resources/user.d.ts.map +1 -1
  40. package/src/client.ts +3 -3
  41. package/src/resources/api-keys.ts +28 -13
  42. package/src/resources/compute/vms/availability.ts +3 -3
  43. package/src/resources/compute/vms/vms.ts +3 -3
  44. package/src/resources/compute/volumes/availability.ts +5 -5
  45. package/src/resources/compute/volumes/volumes.ts +14 -14
  46. package/src/resources/connect/flux/flux.ts +2 -2
  47. package/src/resources/networking/firewall-rules.ts +19 -19
  48. package/src/resources/networking/vpcs/vpcs.ts +5 -5
  49. package/src/resources/operations.ts +10 -10
  50. package/src/resources/rpc-nodes/dedicated/dedicated.ts +1 -1
  51. package/src/resources/rpc-nodes/flex/flex.ts +1 -1
  52. package/src/resources/user.ts +6 -3
  53. package/src/version.ts +1 -1
  54. package/version.d.mts +1 -1
  55. package/version.d.ts +1 -1
  56. package/version.js +1 -1
  57. 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 operation.
29
+ * Unique identifier for the Operation.
30
30
  */
31
31
  id: string;
32
32
 
33
33
  /**
34
- * When the operation was created.
34
+ * When the Operation was created.
35
35
  */
36
36
  created_at: string;
37
37
 
38
38
  /**
39
- * Kind of operation.
39
+ * Kind of Operation.
40
40
  */
41
41
  kind: OperationKind;
42
42
 
43
43
  /**
44
- * ID of the resource that the operation is acting on.
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 operation.
49
+ * Status of the Operation.
50
50
  */
51
51
  status: OperationStatus;
52
52
 
53
53
  /**
54
- * Type of operation.
54
+ * Type of Operation.
55
55
  */
56
56
  type: OperationType;
57
57
 
58
58
  /**
59
- * When the operation was updated.
59
+ * When the Operation was updated.
60
60
  */
61
61
  updated_at: string;
62
62
  }
63
63
 
64
64
  /**
65
- * Kind of operation.
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 operation.
74
+ * Status of the Operation.
75
75
  */
76
76
  export type OperationStatus = 'pending' | 'running' | 'done' | 'failed' | 'unknown';
77
77
 
78
78
  /**
79
- * Type of operation.
79
+ * Type of Operation.
80
80
  */
81
81
  export type OperationType = 'create' | 'update' | 'delete' | 'restart';
82
82
 
@@ -66,7 +66,7 @@ export interface Dedicated {
66
66
  }
67
67
 
68
68
  /**
69
- * Blockchain supported by the Dedicated RPC Node.
69
+ * Blockchain supported by the RPC Node Dedicated.
70
70
  */
71
71
  export interface DedicatedBlockchain {
72
72
  /**
@@ -66,7 +66,7 @@ export interface Flex {
66
66
  }
67
67
 
68
68
  /**
69
- * Blockchain supported by the Flex RPC Node.
69
+ * Blockchain supported by the RPC Node Flex.
70
70
  */
71
71
  export interface FlexBlockchain {
72
72
  /**
@@ -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 user.
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 user has access to.
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 user has access to.
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.17.4'; // x-release-please-version
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.17.4";
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.17.4";
1
+ export declare const VERSION = "1.18.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '1.17.4'; // x-release-please-version
4
+ exports.VERSION = '1.18.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.17.4'; // x-release-please-version
1
+ export const VERSION = '1.18.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map