@nirvana-labs/nirvana 1.40.1 → 1.42.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 (74) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/client.d.mts +1 -0
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +1 -0
  5. package/client.d.ts.map +1 -1
  6. package/client.js +8 -1
  7. package/client.js.map +1 -1
  8. package/client.mjs +8 -1
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/compute/vms/availability.d.mts +4 -0
  12. package/resources/compute/vms/availability.d.mts.map +1 -1
  13. package/resources/compute/vms/availability.d.ts +4 -0
  14. package/resources/compute/vms/availability.d.ts.map +1 -1
  15. package/resources/compute/vms/vms.d.mts +12 -0
  16. package/resources/compute/vms/vms.d.mts.map +1 -1
  17. package/resources/compute/vms/vms.d.ts +12 -0
  18. package/resources/compute/vms/vms.d.ts.map +1 -1
  19. package/resources/compute/vms/vms.js.map +1 -1
  20. package/resources/compute/vms/vms.mjs.map +1 -1
  21. package/resources/compute/volumes/availability.d.mts +4 -0
  22. package/resources/compute/volumes/availability.d.mts.map +1 -1
  23. package/resources/compute/volumes/availability.d.ts +4 -0
  24. package/resources/compute/volumes/availability.d.ts.map +1 -1
  25. package/resources/compute/volumes/volumes.d.mts +12 -0
  26. package/resources/compute/volumes/volumes.d.mts.map +1 -1
  27. package/resources/compute/volumes/volumes.d.ts +12 -0
  28. package/resources/compute/volumes/volumes.d.ts.map +1 -1
  29. package/resources/compute/volumes/volumes.js.map +1 -1
  30. package/resources/compute/volumes/volumes.mjs.map +1 -1
  31. package/resources/networking/connect/connect.d.mts +4 -0
  32. package/resources/networking/connect/connect.d.mts.map +1 -1
  33. package/resources/networking/connect/connect.d.ts +4 -0
  34. package/resources/networking/connect/connect.d.ts.map +1 -1
  35. package/resources/networking/connect/connect.js.map +1 -1
  36. package/resources/networking/connect/connect.mjs.map +1 -1
  37. package/resources/networking/connect/connections.d.mts +8 -0
  38. package/resources/networking/connect/connections.d.mts.map +1 -1
  39. package/resources/networking/connect/connections.d.ts +8 -0
  40. package/resources/networking/connect/connections.d.ts.map +1 -1
  41. package/resources/networking/vpcs/availability.d.mts +4 -0
  42. package/resources/networking/vpcs/availability.d.mts.map +1 -1
  43. package/resources/networking/vpcs/availability.d.ts +4 -0
  44. package/resources/networking/vpcs/availability.d.ts.map +1 -1
  45. package/resources/networking/vpcs/vpcs.d.mts +12 -0
  46. package/resources/networking/vpcs/vpcs.d.mts.map +1 -1
  47. package/resources/networking/vpcs/vpcs.d.ts +12 -0
  48. package/resources/networking/vpcs/vpcs.d.ts.map +1 -1
  49. package/resources/networking/vpcs/vpcs.js.map +1 -1
  50. package/resources/networking/vpcs/vpcs.mjs.map +1 -1
  51. package/resources/operations.d.mts +8 -0
  52. package/resources/operations.d.mts.map +1 -1
  53. package/resources/operations.d.ts +8 -0
  54. package/resources/operations.d.ts.map +1 -1
  55. package/resources/rpc-nodes/flex/flex.d.mts +1 -1
  56. package/resources/rpc-nodes/flex/flex.d.mts.map +1 -1
  57. package/resources/rpc-nodes/flex/flex.d.ts +1 -1
  58. package/resources/rpc-nodes/flex/flex.d.ts.map +1 -1
  59. package/src/client.ts +8 -1
  60. package/src/resources/compute/vms/availability.ts +5 -0
  61. package/src/resources/compute/vms/vms.ts +16 -1
  62. package/src/resources/compute/volumes/availability.ts +5 -0
  63. package/src/resources/compute/volumes/volumes.ts +16 -1
  64. package/src/resources/networking/connect/connect.ts +5 -0
  65. package/src/resources/networking/connect/connections.ts +11 -1
  66. package/src/resources/networking/vpcs/availability.ts +5 -0
  67. package/src/resources/networking/vpcs/vpcs.ts +16 -1
  68. package/src/resources/operations.ts +11 -1
  69. package/src/resources/rpc-nodes/flex/flex.ts +1 -1
  70. package/src/version.ts +1 -1
  71. package/version.d.mts +1 -1
  72. package/version.d.ts +1 -1
  73. package/version.js +1 -1
  74. package/version.mjs +1 -1
@@ -76,6 +76,11 @@ export interface AvailabilityCreateParams {
76
76
  */
77
77
  type: VolumesAPI.VolumeType;
78
78
 
79
+ /**
80
+ * Project ID the Volume belongs to.
81
+ */
82
+ project_id?: string;
83
+
79
84
  /**
80
85
  * Tags to attach to the Volume.
81
86
  */
@@ -160,6 +160,11 @@ export interface Volume {
160
160
  */
161
161
  name: string;
162
162
 
163
+ /**
164
+ * Project ID the Volume belongs to.
165
+ */
166
+ project_id: string;
167
+
163
168
  /**
164
169
  * Region the resource is in.
165
170
  */
@@ -241,6 +246,11 @@ export interface VolumeCreateParams {
241
246
  */
242
247
  type: VolumeType;
243
248
 
249
+ /**
250
+ * Project ID the Volume belongs to.
251
+ */
252
+ project_id?: string;
253
+
244
254
  /**
245
255
  * Tags to attach to the Volume.
246
256
  */
@@ -269,7 +279,12 @@ export interface VolumeUpdateParams {
269
279
  tags?: Array<string>;
270
280
  }
271
281
 
272
- export interface VolumeListParams extends CursorParams {}
282
+ export interface VolumeListParams extends CursorParams {
283
+ /**
284
+ * Project ID of resources to request
285
+ */
286
+ project_id?: string;
287
+ }
273
288
 
274
289
  export interface VolumeAttachParams {
275
290
  /**
@@ -66,6 +66,11 @@ export interface ConnectConnection {
66
66
  */
67
67
  name: string;
68
68
 
69
+ /**
70
+ * Project ID the Connect Connection belongs to
71
+ */
72
+ project_id: string;
73
+
69
74
  /**
70
75
  * Provider ASN
71
76
  */
@@ -133,6 +133,11 @@ export interface ConnectionCreateParams {
133
133
  */
134
134
  aws?: ConnectAPI.ConnectConnectionAWSConfigRequest;
135
135
 
136
+ /**
137
+ * Project ID the Connect Connection belongs to
138
+ */
139
+ project_id?: string;
140
+
136
141
  /**
137
142
  * Tags to attach to the Connect Connection
138
143
  */
@@ -151,7 +156,12 @@ export interface ConnectionUpdateParams {
151
156
  tags?: Array<string>;
152
157
  }
153
158
 
154
- export interface ConnectionListParams extends CursorParams {}
159
+ export interface ConnectionListParams extends CursorParams {
160
+ /**
161
+ * Project ID of resources to request
162
+ */
163
+ project_id?: string;
164
+ }
155
165
 
156
166
  export declare namespace Connections {
157
167
  export {
@@ -69,6 +69,11 @@ export interface AvailabilityCreateParams {
69
69
  */
70
70
  subnet_name: string;
71
71
 
72
+ /**
73
+ * Project ID the VPC belongs to.
74
+ */
75
+ project_id?: string;
76
+
72
77
  /**
73
78
  * Tags to attach to the VPC.
74
79
  */
@@ -151,6 +151,11 @@ export interface VPC {
151
151
  */
152
152
  name: string;
153
153
 
154
+ /**
155
+ * Project ID the VPC belongs to.
156
+ */
157
+ project_id: string;
158
+
154
159
  /**
155
160
  * Region the resource is in.
156
161
  */
@@ -202,6 +207,11 @@ export interface VPCCreateParams {
202
207
  */
203
208
  subnet_name: string;
204
209
 
210
+ /**
211
+ * Project ID the VPC belongs to.
212
+ */
213
+ project_id?: string;
214
+
205
215
  /**
206
216
  * Tags to attach to the VPC.
207
217
  */
@@ -225,7 +235,12 @@ export interface VPCUpdateParams {
225
235
  tags?: Array<string>;
226
236
  }
227
237
 
228
- export interface VPCListParams extends CursorParams {}
238
+ export interface VPCListParams extends CursorParams {
239
+ /**
240
+ * Project ID of resources to request
241
+ */
242
+ project_id?: string;
243
+ }
229
244
 
230
245
  VPCs.Availability = Availability;
231
246
 
@@ -66,6 +66,11 @@ export interface Operation {
66
66
  * When the Operation was updated.
67
67
  */
68
68
  updated_at: string;
69
+
70
+ /**
71
+ * Project ID the Operation belongs to.
72
+ */
73
+ project_id?: string;
69
74
  }
70
75
 
71
76
  /**
@@ -92,7 +97,12 @@ export type OperationStatus = 'pending' | 'running' | 'done' | 'failed' | 'unkno
92
97
  */
93
98
  export type OperationType = 'create' | 'update' | 'delete' | 'restart';
94
99
 
95
- export interface OperationListParams extends CursorParams {}
100
+ export interface OperationListParams extends CursorParams {
101
+ /**
102
+ * Project ID of resources to request
103
+ */
104
+ project_id?: string;
105
+ }
96
106
 
97
107
  export declare namespace Operations {
98
108
  export {
@@ -129,7 +129,7 @@ export interface Flex {
129
129
  /**
130
130
  * Project identifier associated with the RPC Node Flex.
131
131
  */
132
- project_id: string | null;
132
+ project_id: string;
133
133
 
134
134
  /**
135
135
  * Tags to attach to the RPC Node Flex.
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '1.40.1'; // x-release-please-version
1
+ export const VERSION = '1.42.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.40.1";
1
+ export declare const VERSION = "1.42.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.40.1";
1
+ export declare const VERSION = "1.42.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.40.1'; // x-release-please-version
4
+ exports.VERSION = '1.42.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.40.1'; // x-release-please-version
1
+ export const VERSION = '1.42.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map