@leavepulse/control-sdk 0.3.51 → 0.3.53
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/package.json +1 -1
- package/types.ts +9 -8
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1552,7 +1552,7 @@ export interface paths {
|
|
|
1552
1552
|
};
|
|
1553
1553
|
get?: never;
|
|
1554
1554
|
put?: never;
|
|
1555
|
-
/**
|
|
1555
|
+
/** Register a metrics collector already running on a host */
|
|
1556
1556
|
post: operations["control.hosts.install_exporter"];
|
|
1557
1557
|
delete?: never;
|
|
1558
1558
|
options?: never;
|
|
@@ -1969,11 +1969,14 @@ export interface components {
|
|
|
1969
1969
|
/** ComponentDTO */
|
|
1970
1970
|
ComponentDTO: {
|
|
1971
1971
|
asset_tag: string;
|
|
1972
|
+
/** @default */
|
|
1973
|
+
component_type_id: string;
|
|
1972
1974
|
confidence: string;
|
|
1973
1975
|
device_id: string;
|
|
1974
1976
|
id: string;
|
|
1975
1977
|
kind: string;
|
|
1976
1978
|
owner?: components["schemas"]["OwnerDTO"] | null;
|
|
1979
|
+
placement?: components["schemas"]["PlacementDTO"] | null;
|
|
1977
1980
|
serial: string;
|
|
1978
1981
|
spec: string;
|
|
1979
1982
|
state: string;
|
|
@@ -2825,23 +2828,17 @@ export interface components {
|
|
|
2825
2828
|
};
|
|
2826
2829
|
/** PlacementInput */
|
|
2827
2830
|
PlacementInput: {
|
|
2828
|
-
/** @default */
|
|
2829
|
-
bin: string;
|
|
2830
2831
|
location_id: string;
|
|
2831
2832
|
/** @default */
|
|
2832
2833
|
rack_id: string;
|
|
2833
2834
|
/** @default */
|
|
2834
|
-
|
|
2835
|
-
/** @default */
|
|
2836
|
-
shelf_rack: string;
|
|
2835
|
+
storage_node_id: string;
|
|
2837
2836
|
/** @default */
|
|
2838
2837
|
style: string;
|
|
2839
2838
|
/** @default 0 */
|
|
2840
2839
|
u_position: number;
|
|
2841
2840
|
/** @default 0 */
|
|
2842
2841
|
u_size: number;
|
|
2843
|
-
/** @default */
|
|
2844
|
-
zone: string;
|
|
2845
2842
|
};
|
|
2846
2843
|
/** PortCheckRequest */
|
|
2847
2844
|
PortCheckRequest: {
|
|
@@ -3320,6 +3317,8 @@ export interface components {
|
|
|
3320
3317
|
UpsertDeviceTypeRequest: {
|
|
3321
3318
|
/** @default 0 */
|
|
3322
3319
|
depth_mm?: number;
|
|
3320
|
+
/** @default */
|
|
3321
|
+
front_image?: string;
|
|
3323
3322
|
/** @default 0 */
|
|
3324
3323
|
height_mm?: number;
|
|
3325
3324
|
/** @default */
|
|
@@ -3342,6 +3341,8 @@ export interface components {
|
|
|
3342
3341
|
power_input?: string;
|
|
3343
3342
|
/** @default */
|
|
3344
3343
|
power_type?: string;
|
|
3344
|
+
/** @default */
|
|
3345
|
+
rear_image?: string;
|
|
3345
3346
|
/** @default 0 */
|
|
3346
3347
|
u_height?: number;
|
|
3347
3348
|
/** @default 0 */
|