@leavepulse/control-sdk 0.3.34 → 0.3.36
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 +15 -0
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -1852,6 +1852,8 @@ export interface components {
|
|
|
1852
1852
|
kind?: string;
|
|
1853
1853
|
/** @default */
|
|
1854
1854
|
name?: string;
|
|
1855
|
+
/** @default */
|
|
1856
|
+
parent_id?: string;
|
|
1855
1857
|
};
|
|
1856
1858
|
/** CreateOutletRequest */
|
|
1857
1859
|
CreateOutletRequest: {
|
|
@@ -2245,12 +2247,16 @@ export interface components {
|
|
|
2245
2247
|
};
|
|
2246
2248
|
/** LocationDTO */
|
|
2247
2249
|
LocationDTO: {
|
|
2250
|
+
/** @default */
|
|
2251
|
+
address: string;
|
|
2248
2252
|
city: string;
|
|
2249
2253
|
code: string;
|
|
2250
2254
|
id: string;
|
|
2251
2255
|
jurisdiction: string;
|
|
2252
2256
|
kind: string;
|
|
2253
2257
|
name: string;
|
|
2258
|
+
/** @default */
|
|
2259
|
+
parent_id: string;
|
|
2254
2260
|
};
|
|
2255
2261
|
/** LocationListResponse */
|
|
2256
2262
|
LocationListResponse: {
|
|
@@ -2358,12 +2364,20 @@ export interface components {
|
|
|
2358
2364
|
/** PlacementDTO */
|
|
2359
2365
|
PlacementDTO: {
|
|
2360
2366
|
address: string;
|
|
2367
|
+
/** @default */
|
|
2368
|
+
bin: string;
|
|
2361
2369
|
id: string;
|
|
2362
2370
|
location_id: string;
|
|
2363
2371
|
rack_id: string;
|
|
2372
|
+
/** @default */
|
|
2373
|
+
shelf: string;
|
|
2374
|
+
/** @default */
|
|
2375
|
+
shelf_rack: string;
|
|
2364
2376
|
style: string;
|
|
2365
2377
|
u_position: number;
|
|
2366
2378
|
u_size: number;
|
|
2379
|
+
/** @default */
|
|
2380
|
+
zone: string;
|
|
2367
2381
|
};
|
|
2368
2382
|
/** PlacementInput */
|
|
2369
2383
|
PlacementInput: {
|
|
@@ -2742,6 +2756,7 @@ export interface components {
|
|
|
2742
2756
|
jurisdiction?: string | null;
|
|
2743
2757
|
kind?: string | null;
|
|
2744
2758
|
name?: string | null;
|
|
2759
|
+
parent_id?: string | null;
|
|
2745
2760
|
};
|
|
2746
2761
|
/** UpdateOutletRequest */
|
|
2747
2762
|
UpdateOutletRequest: {
|