@nirvana-labs/nirvana 1.0.0 → 1.0.1
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 +8 -0
- package/package.json +1 -1
- package/resources/compute/vms/vms.d.mts +5 -5
- package/resources/compute/vms/vms.d.ts +5 -5
- package/src/resources/compute/vms/vms.ts +5 -5
- 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
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.1 (2025-04-13)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.0.0...v1.0.1](https://github.com/nirvana-labs/nirvana-typescript/compare/v1.0.0...v1.0.1)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([588029b](https://github.com/nirvana-labs/nirvana-typescript/commit/588029bfb857f65293c0044936d90c96885269bf))
|
|
10
|
+
|
|
3
11
|
## 1.0.0 (2025-04-12)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.10.1...v1.0.0](https://github.com/nirvana-labs/nirvana-typescript/compare/v0.10.1...v1.0.0)
|
package/package.json
CHANGED
|
@@ -84,7 +84,7 @@ export interface VM {
|
|
|
84
84
|
*/
|
|
85
85
|
id: string;
|
|
86
86
|
/**
|
|
87
|
-
* ID of the boot volume
|
|
87
|
+
* ID of the boot volume attached to the VM.
|
|
88
88
|
*/
|
|
89
89
|
boot_volume_id: string;
|
|
90
90
|
/**
|
|
@@ -96,7 +96,7 @@ export interface VM {
|
|
|
96
96
|
*/
|
|
97
97
|
created_at: string;
|
|
98
98
|
/**
|
|
99
|
-
* IDs of the data volumes
|
|
99
|
+
* IDs of the data volumes attached to the VM.
|
|
100
100
|
*/
|
|
101
101
|
data_volume_ids: Array<string>;
|
|
102
102
|
/**
|
|
@@ -124,7 +124,7 @@ export interface VM {
|
|
|
124
124
|
*/
|
|
125
125
|
status: Shared.ResourceStatus;
|
|
126
126
|
/**
|
|
127
|
-
* ID of the subnet
|
|
127
|
+
* ID of the subnet the VM is in.
|
|
128
128
|
*/
|
|
129
129
|
subnet_id: string;
|
|
130
130
|
/**
|
|
@@ -132,11 +132,11 @@ export interface VM {
|
|
|
132
132
|
*/
|
|
133
133
|
updated_at: string;
|
|
134
134
|
/**
|
|
135
|
-
* ID of the VPC
|
|
135
|
+
* ID of the VPC the VM is in.
|
|
136
136
|
*/
|
|
137
137
|
vpc_id: string;
|
|
138
138
|
/**
|
|
139
|
-
* Name of the VPC
|
|
139
|
+
* Name of the VPC the VM is in.
|
|
140
140
|
*/
|
|
141
141
|
vpc_name: string;
|
|
142
142
|
}
|
|
@@ -84,7 +84,7 @@ export interface VM {
|
|
|
84
84
|
*/
|
|
85
85
|
id: string;
|
|
86
86
|
/**
|
|
87
|
-
* ID of the boot volume
|
|
87
|
+
* ID of the boot volume attached to the VM.
|
|
88
88
|
*/
|
|
89
89
|
boot_volume_id: string;
|
|
90
90
|
/**
|
|
@@ -96,7 +96,7 @@ export interface VM {
|
|
|
96
96
|
*/
|
|
97
97
|
created_at: string;
|
|
98
98
|
/**
|
|
99
|
-
* IDs of the data volumes
|
|
99
|
+
* IDs of the data volumes attached to the VM.
|
|
100
100
|
*/
|
|
101
101
|
data_volume_ids: Array<string>;
|
|
102
102
|
/**
|
|
@@ -124,7 +124,7 @@ export interface VM {
|
|
|
124
124
|
*/
|
|
125
125
|
status: Shared.ResourceStatus;
|
|
126
126
|
/**
|
|
127
|
-
* ID of the subnet
|
|
127
|
+
* ID of the subnet the VM is in.
|
|
128
128
|
*/
|
|
129
129
|
subnet_id: string;
|
|
130
130
|
/**
|
|
@@ -132,11 +132,11 @@ export interface VM {
|
|
|
132
132
|
*/
|
|
133
133
|
updated_at: string;
|
|
134
134
|
/**
|
|
135
|
-
* ID of the VPC
|
|
135
|
+
* ID of the VPC the VM is in.
|
|
136
136
|
*/
|
|
137
137
|
vpc_id: string;
|
|
138
138
|
/**
|
|
139
|
-
* Name of the VPC
|
|
139
|
+
* Name of the VPC the VM is in.
|
|
140
140
|
*/
|
|
141
141
|
vpc_name: string;
|
|
142
142
|
}
|
|
@@ -111,7 +111,7 @@ export interface VM {
|
|
|
111
111
|
id: string;
|
|
112
112
|
|
|
113
113
|
/**
|
|
114
|
-
* ID of the boot volume
|
|
114
|
+
* ID of the boot volume attached to the VM.
|
|
115
115
|
*/
|
|
116
116
|
boot_volume_id: string;
|
|
117
117
|
|
|
@@ -126,7 +126,7 @@ export interface VM {
|
|
|
126
126
|
created_at: string;
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
|
-
* IDs of the data volumes
|
|
129
|
+
* IDs of the data volumes attached to the VM.
|
|
130
130
|
*/
|
|
131
131
|
data_volume_ids: Array<string>;
|
|
132
132
|
|
|
@@ -161,7 +161,7 @@ export interface VM {
|
|
|
161
161
|
status: Shared.ResourceStatus;
|
|
162
162
|
|
|
163
163
|
/**
|
|
164
|
-
* ID of the subnet
|
|
164
|
+
* ID of the subnet the VM is in.
|
|
165
165
|
*/
|
|
166
166
|
subnet_id: string;
|
|
167
167
|
|
|
@@ -171,12 +171,12 @@ export interface VM {
|
|
|
171
171
|
updated_at: string;
|
|
172
172
|
|
|
173
173
|
/**
|
|
174
|
-
* ID of the VPC
|
|
174
|
+
* ID of the VPC the VM is in.
|
|
175
175
|
*/
|
|
176
176
|
vpc_id: string;
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
|
-
* Name of the VPC
|
|
179
|
+
* Name of the VPC the VM is in.
|
|
180
180
|
*/
|
|
181
181
|
vpc_name: string;
|
|
182
182
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.0.
|
|
1
|
+
export const VERSION = '1.0.1'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.0.
|
|
1
|
+
export declare const VERSION = "1.0.1";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.0.
|
|
1
|
+
export declare const VERSION = "1.0.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.0.
|
|
1
|
+
export const VERSION = '1.0.1'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|