@openshift-assisted/types 2.54.0 → 2.54.2

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.
@@ -1715,6 +1715,8 @@ export type HostValidationId =
1715
1715
  | 'connected'
1716
1716
  | 'media-connected'
1717
1717
  | 'has-inventory'
1718
+ | 'inventory-not-partially-truncated'
1719
+ | 'inventory-not-fully-truncated'
1718
1720
  | 'has-min-cpu-cores'
1719
1721
  | 'has-min-valid-disks'
1720
1722
  | 'has-min-memory'
@@ -2177,6 +2179,13 @@ export interface Inventory {
2177
2179
  gpus?: Gpu[];
2178
2180
  routes?: Route[];
2179
2181
  tpmVersion?: 'none' | '1.2' | '2.0';
2182
+ truncation?: {
2183
+ type: 'partial' | 'full';
2184
+ /**
2185
+ * Reasons for the truncation
2186
+ */
2187
+ reasons?: string[];
2188
+ };
2180
2189
  }
2181
2190
  export interface IoPerf {
2182
2191
  /**
package/package.json CHANGED
@@ -47,5 +47,5 @@
47
47
  "js-yaml": "^4.2.0",
48
48
  "sw2dts": "^2.6.3"
49
49
  },
50
- "version": "2.54.0"
50
+ "version": "2.54.2"
51
51
  }