@vates/types 1.15.0 → 1.16.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.
- package/dist/xo.d.mts +2 -1
- package/package.json +1 -1
package/dist/xo.d.mts
CHANGED
|
@@ -406,7 +406,6 @@ export type XoPool = BaseXapiXo & {
|
|
|
406
406
|
tags: string[];
|
|
407
407
|
type: 'pool';
|
|
408
408
|
vtpmSupported: boolean;
|
|
409
|
-
xosanPackInstallationTime: number | null;
|
|
410
409
|
zstdSupported: boolean;
|
|
411
410
|
};
|
|
412
411
|
export type XoProxy = {
|
|
@@ -604,11 +603,13 @@ export type XoTask = {
|
|
|
604
603
|
data: unknown;
|
|
605
604
|
message: string;
|
|
606
605
|
}[];
|
|
606
|
+
progress?: number;
|
|
607
607
|
properties: {
|
|
608
608
|
method?: string;
|
|
609
609
|
name?: string;
|
|
610
610
|
objectId?: string;
|
|
611
611
|
params?: Record<string, unknown>;
|
|
612
|
+
progress?: number;
|
|
612
613
|
type?: string;
|
|
613
614
|
userId?: string;
|
|
614
615
|
[key: string]: unknown | undefined;
|