bfg-common 1.2.141 → 1.2.142

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.
@@ -19,11 +19,10 @@ const getItems = (
19
19
  [localization.file, true, '180px', vmMigrateDiskTableItemKeys[2]],
20
20
  [localization.storage, true, '120px', vmMigrateDiskTableItemKeys[3]],
21
21
  [localization.diskFormat, true, '180px', vmMigrateDiskTableItemKeys[4]],
22
- [localization.provisionType, true, '180px', vmMigrateDiskTableItemKeys[5]],
23
- [localization.sharing, true, '120px', vmMigrateDiskTableItemKeys[6]],
24
- [localization.target, true, '120px', vmMigrateDiskTableItemKeys[7]],
25
- [localization.cache, true, '120px', vmMigrateDiskTableItemKeys[8]],
26
- [localization.diskMode, true, '180px', vmMigrateDiskTableItemKeys[9]],
22
+ [localization.sharing, true, '120px', vmMigrateDiskTableItemKeys[5]],
23
+ [localization.target, true, '120px', vmMigrateDiskTableItemKeys[6]],
24
+ [localization.cache, true, '120px', vmMigrateDiskTableItemKeys[7]],
25
+ [localization.diskMode, true, '180px', vmMigrateDiskTableItemKeys[8]],
27
26
  ]
28
27
  }
29
28
 
@@ -100,11 +99,6 @@ export const bodyItems = (
100
99
  text: storage[vmMigrateDiskTableItemKeys[8]],
101
100
  id: key,
102
101
  },
103
- {
104
- key: 'col9',
105
- text: storage[vmMigrateDiskTableItemKeys[9]],
106
- id: key,
107
- },
108
102
  ])
109
103
  })
110
104
  return bodyItems
@@ -5,7 +5,6 @@ export const vmMigrateDiskTableItemKeys: UI_T_VmMigrateDiskTableTuple = [
5
5
  'disk_group',
6
6
  'file',
7
7
  'datastore',
8
- 'disk_format',
9
8
  'provision_type',
10
9
  'sharing',
11
10
  'target',
@@ -1,20 +1,23 @@
1
- export interface API_UI_I_StorageConfigurePerDiskItem {
2
- virtual_machine: string
3
- target: string
4
- disk_group: string
5
- disk_source: string
6
- disk_size: string
7
- file: string
8
- datastore: string
1
+ interface API_UI_I_ExtraValuePerDiskItem {
2
+ cache: string
9
3
  datastore_id: string
10
- sharing: string
11
- read_only: string
4
+ discard: string
12
5
  disk_mode: string
13
- disk_format: string
14
- provision_type: string
15
- cache: string
6
+ disk_size: number
7
+ disk_source: string
16
8
  io_control: string
17
- discard: string
9
+ read_only: string
10
+ sharing: string
11
+ target: string
12
+ }
13
+
14
+ export interface API_UI_I_StorageConfigurePerDiskItem {
15
+ disk_format: 0 | 1 | 2 | 3
16
+ disk_group: string
17
+ file: string
18
+ storage: string
19
+ virtual_machine: string
20
+ extra: API_UI_I_ExtraValuePerDiskItem
18
21
  }
19
22
 
20
23
  export interface UI_I_StorageConfigurePerDiskItem
@@ -3,7 +3,6 @@ export type UI_T_VmMigrateDiskTableTuple = [
3
3
  'disk_group',
4
4
  'file',
5
5
  'datastore',
6
- 'disk_format',
7
6
  'provision_type',
8
7
  'sharing',
9
8
  'target',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.2.141",
4
+ "version": "1.2.142",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",