@leavepulse/control-sdk 0.3.35 → 0.3.37
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 +10 -0
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -2004,6 +2004,8 @@ export interface components {
|
|
|
2004
2004
|
model: string;
|
|
2005
2005
|
notes: string;
|
|
2006
2006
|
part_number: string;
|
|
2007
|
+
/** @default 0 */
|
|
2008
|
+
port_count: number;
|
|
2007
2009
|
ports?: components["schemas"]["DeviceTypePortDTO"][];
|
|
2008
2010
|
power_input: string;
|
|
2009
2011
|
power_type: string;
|
|
@@ -2364,12 +2366,20 @@ export interface components {
|
|
|
2364
2366
|
/** PlacementDTO */
|
|
2365
2367
|
PlacementDTO: {
|
|
2366
2368
|
address: string;
|
|
2369
|
+
/** @default */
|
|
2370
|
+
bin: string;
|
|
2367
2371
|
id: string;
|
|
2368
2372
|
location_id: string;
|
|
2369
2373
|
rack_id: string;
|
|
2374
|
+
/** @default */
|
|
2375
|
+
shelf: string;
|
|
2376
|
+
/** @default */
|
|
2377
|
+
shelf_rack: string;
|
|
2370
2378
|
style: string;
|
|
2371
2379
|
u_position: number;
|
|
2372
2380
|
u_size: number;
|
|
2381
|
+
/** @default */
|
|
2382
|
+
zone: string;
|
|
2373
2383
|
};
|
|
2374
2384
|
/** PlacementInput */
|
|
2375
2385
|
PlacementInput: {
|