@juhuu/sdk-ts 1.3.42 → 1.3.43
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/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -7526,6 +7526,7 @@ declare namespace JUHUU {
|
|
|
7526
7526
|
permissionArray?: DevicePermission[];
|
|
7527
7527
|
proximityStrategyArray?: ProximityStrategy[];
|
|
7528
7528
|
mountFlowId?: string | null;
|
|
7529
|
+
starred: boolean;
|
|
7529
7530
|
};
|
|
7530
7531
|
type Options = JUHUU.RequestOptions;
|
|
7531
7532
|
type Response = {
|
|
@@ -7547,6 +7548,7 @@ declare namespace JUHUU {
|
|
|
7547
7548
|
namespace List {
|
|
7548
7549
|
type Params = {
|
|
7549
7550
|
propertyId?: string;
|
|
7551
|
+
starred?: boolean;
|
|
7550
7552
|
};
|
|
7551
7553
|
type Options = {
|
|
7552
7554
|
limit?: number;
|
|
@@ -7570,6 +7572,7 @@ declare namespace JUHUU {
|
|
|
7570
7572
|
permissionArray?: DevicePermission[];
|
|
7571
7573
|
proximityStrategyArray?: ProximityStrategy[];
|
|
7572
7574
|
mountFlowId?: string | null;
|
|
7575
|
+
starred?: boolean;
|
|
7573
7576
|
};
|
|
7574
7577
|
type Options = JUHUU.RequestOptions;
|
|
7575
7578
|
type Response = {
|
package/dist/index.d.ts
CHANGED
|
@@ -7526,6 +7526,7 @@ declare namespace JUHUU {
|
|
|
7526
7526
|
permissionArray?: DevicePermission[];
|
|
7527
7527
|
proximityStrategyArray?: ProximityStrategy[];
|
|
7528
7528
|
mountFlowId?: string | null;
|
|
7529
|
+
starred: boolean;
|
|
7529
7530
|
};
|
|
7530
7531
|
type Options = JUHUU.RequestOptions;
|
|
7531
7532
|
type Response = {
|
|
@@ -7547,6 +7548,7 @@ declare namespace JUHUU {
|
|
|
7547
7548
|
namespace List {
|
|
7548
7549
|
type Params = {
|
|
7549
7550
|
propertyId?: string;
|
|
7551
|
+
starred?: boolean;
|
|
7550
7552
|
};
|
|
7551
7553
|
type Options = {
|
|
7552
7554
|
limit?: number;
|
|
@@ -7570,6 +7572,7 @@ declare namespace JUHUU {
|
|
|
7570
7572
|
permissionArray?: DevicePermission[];
|
|
7571
7573
|
proximityStrategyArray?: ProximityStrategy[];
|
|
7572
7574
|
mountFlowId?: string | null;
|
|
7575
|
+
starred?: boolean;
|
|
7573
7576
|
};
|
|
7574
7577
|
type Options = JUHUU.RequestOptions;
|
|
7575
7578
|
type Response = {
|
package/dist/index.js
CHANGED
|
@@ -5900,6 +5900,9 @@ var PanelsService = class extends Service {
|
|
|
5900
5900
|
if (params?.propertyId !== void 0) {
|
|
5901
5901
|
queryArray.push("propertyId=" + params.propertyId);
|
|
5902
5902
|
}
|
|
5903
|
+
if (params?.starred !== void 0) {
|
|
5904
|
+
queryArray.push("starred=" + params.starred);
|
|
5905
|
+
}
|
|
5903
5906
|
if (options?.limit !== void 0) {
|
|
5904
5907
|
queryArray.push("limit=" + options.limit);
|
|
5905
5908
|
}
|
|
@@ -5943,7 +5946,8 @@ var PanelsService = class extends Service {
|
|
|
5943
5946
|
variables: params.variables,
|
|
5944
5947
|
display: params.display,
|
|
5945
5948
|
permissionArray: params.permissionArray,
|
|
5946
|
-
proximityStrategyArray: params.proximityStrategyArray
|
|
5949
|
+
proximityStrategyArray: params.proximityStrategyArray,
|
|
5950
|
+
starred: params.starred
|
|
5947
5951
|
},
|
|
5948
5952
|
authenticationNotOptional: true
|
|
5949
5953
|
},
|
package/dist/index.mjs
CHANGED
|
@@ -5856,6 +5856,9 @@ var PanelsService = class extends Service {
|
|
|
5856
5856
|
if (params?.propertyId !== void 0) {
|
|
5857
5857
|
queryArray.push("propertyId=" + params.propertyId);
|
|
5858
5858
|
}
|
|
5859
|
+
if (params?.starred !== void 0) {
|
|
5860
|
+
queryArray.push("starred=" + params.starred);
|
|
5861
|
+
}
|
|
5859
5862
|
if (options?.limit !== void 0) {
|
|
5860
5863
|
queryArray.push("limit=" + options.limit);
|
|
5861
5864
|
}
|
|
@@ -5899,7 +5902,8 @@ var PanelsService = class extends Service {
|
|
|
5899
5902
|
variables: params.variables,
|
|
5900
5903
|
display: params.display,
|
|
5901
5904
|
permissionArray: params.permissionArray,
|
|
5902
|
-
proximityStrategyArray: params.proximityStrategyArray
|
|
5905
|
+
proximityStrategyArray: params.proximityStrategyArray,
|
|
5906
|
+
starred: params.starred
|
|
5903
5907
|
},
|
|
5904
5908
|
authenticationNotOptional: true
|
|
5905
5909
|
},
|