bfg-common 1.3.110 → 1.3.111

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.
@@ -104,7 +104,7 @@ export interface UI_I_SendDataNewCdDvdDrive {
104
104
  remove?: boolean
105
105
  }
106
106
  export interface UI_I_SendDataNewPciDevice {
107
- id: string
107
+ address: string
108
108
  vendor_name: string
109
109
  class_name: string
110
110
  device_name: string
@@ -115,21 +115,21 @@ const sendData = computed<UI_I_SendDataNewPciDevice>(() => {
115
115
  switch (selectedType.value.value) {
116
116
  case 'direct_path_io':
117
117
  return {
118
- id: directPathIo.value.id,
118
+ address: directPathIo.value.address,
119
119
  vendor_name: directPathIo.value.vendor_name,
120
120
  class_name: directPathIo.value.class_name,
121
121
  device_name: directPathIo.value.device_name,
122
122
  }
123
123
  case 'dynamic_direct_path_io':
124
124
  return {
125
- id: '',
125
+ address: '',
126
126
  vendor_name: '',
127
127
  class_name: '',
128
128
  device_name: '',
129
129
  }
130
130
  default:
131
131
  return {
132
- id: '',
132
+ address: '',
133
133
  vendor_name: '',
134
134
  class_name: '',
135
135
  device_name: '',
@@ -129,7 +129,7 @@ export interface UI_I_CreateVmData {
129
129
  | UI_I_CreateVmDataCdDvdDevice
130
130
  )[]
131
131
  network_devices: UI_I_SendDataNewNetwork[]
132
- pci_pt_devices: UI_I_SendDataNewPciDevice[]
132
+ passthrough_pci_devices: UI_I_SendDataNewPciDevice[]
133
133
  options: UI_I_SendDataVmoptions
134
134
  storage: UI_I_CreateVmDataStorage
135
135
  cpu: UI_I_CreateVmDataCpu
@@ -133,7 +133,7 @@ export const constructSendDataForm = (
133
133
  video_card: videoCard,
134
134
  disk_devices: diskDevices,
135
135
  network_devices: networks,
136
- pci_pt_devices: pciDevices,
136
+ passthrough_pci_devices: pciDevices,
137
137
  storage: {
138
138
  id: storageId,
139
139
  },
@@ -208,6 +208,6 @@ export interface API_UI_I_VmReadyToComplete {
208
208
  storage: API_UI_I_VmReadyToCompleteStorage
209
209
  usb_controllers: API_UI_I_VmReadyToCompleteUsbController[]
210
210
  video_card: API_UI_I_VmReadyToCompleteVideoCard
211
- pci_pt_devices: API_UI_I_VmReadyToCompletePciDevice[]
211
+ passthrough_pci_devices: API_UI_I_VmReadyToCompletePciDevice[]
212
212
  }
213
213
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.3.110",
4
+ "version": "1.3.111",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",