@vates/types 1.8.0 → 1.9.0
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { WrappedXenApiRecord, XenApiHost, XenApiNetworkWrapped, XenApiRecord, XenApiSr, XenApiTask, XenApiVdi, XenApiVm, XenApiVmWrapped } from '../xen-api.mjs';
|
|
2
2
|
import type { Readable } from 'node:stream';
|
|
3
3
|
import type { XoGpuGroup, XoVgpuType, XoHost, XoNetwork, XoPif, XoSr, XoUser, XoVdi, XoVm, XoVmTemplate } from '../xo.mjs';
|
|
4
|
-
type XcpPatches = {
|
|
4
|
+
export type XcpPatches = {
|
|
5
5
|
changelog?: {
|
|
6
6
|
author: string;
|
|
7
7
|
date: number;
|
|
@@ -15,7 +15,7 @@ type XcpPatches = {
|
|
|
15
15
|
url: string;
|
|
16
16
|
version: string;
|
|
17
17
|
};
|
|
18
|
-
type XsPatches = {
|
|
18
|
+
export type XsPatches = {
|
|
19
19
|
conflicts?: string[];
|
|
20
20
|
date: string;
|
|
21
21
|
description: string;
|
|
@@ -64,6 +64,9 @@ export interface Xapi {
|
|
|
64
64
|
VM_import(stream: Readable, srRef?: XenApiSr['$ref'], onVmCreation?: null | ((vm: XenApiVm) => unknown)): Promise<XenApiVm['$ref']>;
|
|
65
65
|
createVm(templateUuid: XoVmTemplate['uuid'], metadataVm: {
|
|
66
66
|
affinityHost?: XoHost['id'];
|
|
67
|
+
autoPoweron?: boolean;
|
|
68
|
+
memory?: number;
|
|
69
|
+
name_description?: string;
|
|
67
70
|
name_label: string;
|
|
68
71
|
nameLabel?: string;
|
|
69
72
|
clone?: boolean;
|
|
@@ -125,4 +128,3 @@ export interface Xapi {
|
|
|
125
128
|
body: Readable;
|
|
126
129
|
}>;
|
|
127
130
|
}
|
|
128
|
-
export {};
|
package/dist/xo.d.mts
CHANGED