@vates/types 1.4.0 → 1.4.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/dist/xo.d.mts +7 -7
- package/package.json +1 -1
package/dist/xo.d.mts
CHANGED
|
@@ -81,13 +81,6 @@ type BaseXoVm = BaseXapiXo & {
|
|
|
81
81
|
videoram?: number;
|
|
82
82
|
viridian: boolean;
|
|
83
83
|
virtualizationMode: DOMAIN_TYPE;
|
|
84
|
-
vulnerabilities: {
|
|
85
|
-
xsa468: boolean | {
|
|
86
|
-
reason: string;
|
|
87
|
-
driver?: string;
|
|
88
|
-
version?: string;
|
|
89
|
-
};
|
|
90
|
-
};
|
|
91
84
|
xenStoreData: Record<string, string>;
|
|
92
85
|
/**
|
|
93
86
|
* @deprecated use pvDriversVersion instead
|
|
@@ -416,6 +409,13 @@ export type XoVif = BaseXapiXo & {
|
|
|
416
409
|
export type XoVm = BaseXoVm & {
|
|
417
410
|
id: Branded<'VM'>;
|
|
418
411
|
type: 'VM';
|
|
412
|
+
vulnerabilities: {
|
|
413
|
+
xsa468: boolean | {
|
|
414
|
+
reason: string;
|
|
415
|
+
driver?: string;
|
|
416
|
+
version?: string;
|
|
417
|
+
};
|
|
418
|
+
};
|
|
419
419
|
};
|
|
420
420
|
export type XoVmController = BaseXoVm & {
|
|
421
421
|
id: Branded<'VM-controller'>;
|