@leavepulse/control-sdk 0.3.33 → 0.3.35
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 -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: {
|
|
@@ -2742,6 +2748,7 @@ export interface components {
|
|
|
2742
2748
|
jurisdiction?: string | null;
|
|
2743
2749
|
kind?: string | null;
|
|
2744
2750
|
name?: string | null;
|
|
2751
|
+
parent_id?: string | null;
|
|
2745
2752
|
};
|
|
2746
2753
|
/** UpdateOutletRequest */
|
|
2747
2754
|
UpdateOutletRequest: {
|