bfg-common 1.0.7 → 1.0.8

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.
@@ -9,7 +9,7 @@ import {
9
9
  } from '~/components/common/vm/actions/add/customizeHardware/virtualHardware/models/interfaces'
10
10
  import { UI_I_CreateVmData } from '~/components/common/vm/actions/add/models/interfaces'
11
11
 
12
- export interface API_UI_UI_I_VmEditCpu {
12
+ export interface API_UI_I_VmEditCpu {
13
13
  core_per_socket: number
14
14
  hotplug: boolean
15
15
  limit_mhz: number
@@ -19,13 +19,13 @@ export interface API_UI_UI_I_VmEditCpu {
19
19
  shares: number
20
20
  vcpus: number
21
21
  }
22
- export interface API_UI_UI_I_VmEditMemory {
22
+ export interface API_UI_I_VmEditMemory {
23
23
  hotplug: boolean
24
24
  limit_mb: number
25
25
  reservation_mb: number
26
26
  size_mb: number
27
27
  }
28
- export interface API_UI_UI_I_VmEditOptions {
28
+ export interface API_UI_I_VmEditOptions {
29
29
  boot_options: {
30
30
  boot_delay_ms: number
31
31
  boot_menu: boolean
@@ -71,9 +71,9 @@ export interface UI_I_VmSettings {
71
71
  maxMemory: number
72
72
  uuid: string
73
73
  compatibility: string
74
- options: API_UI_UI_I_VmEditOptions
75
- cpu: API_UI_UI_I_VmEditCpu
76
- memory: API_UI_UI_I_VmEditMemory
74
+ options: API_UI_I_VmEditOptions
75
+ cpu: API_UI_I_VmEditCpu
76
+ memory: API_UI_I_VmEditMemory
77
77
  }
78
78
 
79
79
  export interface UI_I_CreateVmPayload {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",