bfg-common 1.3.124 → 1.3.125

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.
@@ -183,11 +183,32 @@ export interface API_UI_I_VmReadyToCompleteVideoCard {
183
183
  memory_mb: number
184
184
  }
185
185
  export interface API_UI_I_VmReadyToCompletePciDevice {
186
- id: string
186
+ address: string
187
+ class_name: string
188
+ device_name: string
189
+ vendor_name: string
190
+ }
191
+ export interface API_UI_I_PciDevice {
192
+ address: string
193
+ bus: string
194
+ class: string
187
195
  class_name: string
196
+ device: string
188
197
  device_name: string
198
+ domain: string
199
+ driver: string
200
+ function: string
201
+ label: string
202
+ passthrough: string
203
+ short_address: string
204
+ slot: string
205
+ sr_iov: string
206
+ type: string
207
+ vendor: string
189
208
  vendor_name: string
190
209
  }
210
+ export interface UI_I_PciDevice extends API_UI_I_PciDevice {}
211
+
191
212
  export interface API_UI_I_VmReadyToComplete {
192
213
  message: string
193
214
  vm_desc: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.124",
4
+ "version": "1.3.125",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",