@leavepulse/control-sdk 0.3.46 → 0.3.48
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 +7 -3
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1847,6 +1847,8 @@ export interface components {
|
|
|
1847
1847
|
role?: string;
|
|
1848
1848
|
subject_id: string;
|
|
1849
1849
|
subject_kind: string;
|
|
1850
|
+
/** @default */
|
|
1851
|
+
thumb_key?: string;
|
|
1850
1852
|
};
|
|
1851
1853
|
/** AffectedDeviceDTO */
|
|
1852
1854
|
AffectedDeviceDTO: {
|
|
@@ -1900,7 +1902,7 @@ export interface components {
|
|
|
1900
1902
|
asset_tag: string;
|
|
1901
1903
|
color: string;
|
|
1902
1904
|
id: string;
|
|
1903
|
-
|
|
1905
|
+
length_cm: number;
|
|
1904
1906
|
owner?: components["schemas"]["OwnerDTO"] | null;
|
|
1905
1907
|
photos?: components["schemas"]["PhotoDTO"][];
|
|
1906
1908
|
spec_json: string;
|
|
@@ -2067,7 +2069,7 @@ export interface components {
|
|
|
2067
2069
|
/** @default */
|
|
2068
2070
|
confidence?: string;
|
|
2069
2071
|
/** @default 0 */
|
|
2070
|
-
|
|
2072
|
+
length_cm?: number;
|
|
2071
2073
|
ownership?: components["schemas"]["OwnershipInput"] | null;
|
|
2072
2074
|
/** @default */
|
|
2073
2075
|
spec_json?: string;
|
|
@@ -2790,6 +2792,8 @@ export interface components {
|
|
|
2790
2792
|
id: string;
|
|
2791
2793
|
position: number;
|
|
2792
2794
|
role: string;
|
|
2795
|
+
/** @default */
|
|
2796
|
+
thumb_url: string;
|
|
2793
2797
|
url: string;
|
|
2794
2798
|
};
|
|
2795
2799
|
/** PlacementDTO */
|
|
@@ -3178,7 +3182,7 @@ export interface components {
|
|
|
3178
3182
|
asset_tag?: string | null;
|
|
3179
3183
|
color?: string | null;
|
|
3180
3184
|
confidence?: string | null;
|
|
3181
|
-
|
|
3185
|
+
length_cm?: number | null;
|
|
3182
3186
|
ownership?: components["schemas"]["OwnershipInput"] | null;
|
|
3183
3187
|
spec_json?: string | null;
|
|
3184
3188
|
terminals?: components["schemas"]["CableTerminalInput"][] | null;
|