@juhuu/sdk-ts 1.3.41 → 1.3.42
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 +12 -3
- package/dist/index.d.ts +12 -3
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3695,7 +3695,10 @@ declare namespace JUHUU {
|
|
|
3695
3695
|
type Params = {
|
|
3696
3696
|
propertyId?: string;
|
|
3697
3697
|
};
|
|
3698
|
-
type Options =
|
|
3698
|
+
type Options = {
|
|
3699
|
+
limit?: number;
|
|
3700
|
+
cursor?: string;
|
|
3701
|
+
} & JUHUU.RequestOptions;
|
|
3699
3702
|
type Response = {
|
|
3700
3703
|
pointClusterArray: JUHUU.PointCluster.Object[];
|
|
3701
3704
|
count: number;
|
|
@@ -5424,7 +5427,10 @@ declare namespace JUHUU {
|
|
|
5424
5427
|
propertyId?: string;
|
|
5425
5428
|
paymentId?: string;
|
|
5426
5429
|
};
|
|
5427
|
-
type Options =
|
|
5430
|
+
type Options = {
|
|
5431
|
+
limit?: number;
|
|
5432
|
+
cursor?: string;
|
|
5433
|
+
} & JUHUU.RequestOptions;
|
|
5428
5434
|
type Response = {
|
|
5429
5435
|
eventArray: JUHUU.Event.Object[];
|
|
5430
5436
|
count: number;
|
|
@@ -6273,7 +6279,10 @@ declare namespace JUHUU {
|
|
|
6273
6279
|
type Params = {
|
|
6274
6280
|
propertyId?: string;
|
|
6275
6281
|
};
|
|
6276
|
-
type Options =
|
|
6282
|
+
type Options = {
|
|
6283
|
+
limit?: number;
|
|
6284
|
+
cursor?: string;
|
|
6285
|
+
} & JUHUU.RequestOptions;
|
|
6277
6286
|
type Response = {
|
|
6278
6287
|
simArray: JUHUU.Sim.Object[];
|
|
6279
6288
|
count: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -3695,7 +3695,10 @@ declare namespace JUHUU {
|
|
|
3695
3695
|
type Params = {
|
|
3696
3696
|
propertyId?: string;
|
|
3697
3697
|
};
|
|
3698
|
-
type Options =
|
|
3698
|
+
type Options = {
|
|
3699
|
+
limit?: number;
|
|
3700
|
+
cursor?: string;
|
|
3701
|
+
} & JUHUU.RequestOptions;
|
|
3699
3702
|
type Response = {
|
|
3700
3703
|
pointClusterArray: JUHUU.PointCluster.Object[];
|
|
3701
3704
|
count: number;
|
|
@@ -5424,7 +5427,10 @@ declare namespace JUHUU {
|
|
|
5424
5427
|
propertyId?: string;
|
|
5425
5428
|
paymentId?: string;
|
|
5426
5429
|
};
|
|
5427
|
-
type Options =
|
|
5430
|
+
type Options = {
|
|
5431
|
+
limit?: number;
|
|
5432
|
+
cursor?: string;
|
|
5433
|
+
} & JUHUU.RequestOptions;
|
|
5428
5434
|
type Response = {
|
|
5429
5435
|
eventArray: JUHUU.Event.Object[];
|
|
5430
5436
|
count: number;
|
|
@@ -6273,7 +6279,10 @@ declare namespace JUHUU {
|
|
|
6273
6279
|
type Params = {
|
|
6274
6280
|
propertyId?: string;
|
|
6275
6281
|
};
|
|
6276
|
-
type Options =
|
|
6282
|
+
type Options = {
|
|
6283
|
+
limit?: number;
|
|
6284
|
+
cursor?: string;
|
|
6285
|
+
} & JUHUU.RequestOptions;
|
|
6277
6286
|
type Response = {
|
|
6278
6287
|
simArray: JUHUU.Sim.Object[];
|
|
6279
6288
|
count: number;
|
package/dist/index.js
CHANGED
|
@@ -1804,6 +1804,12 @@ var PointClustersService = class extends Service {
|
|
|
1804
1804
|
if (PointClusterListParams?.propertyId !== void 0) {
|
|
1805
1805
|
queryArray.push("propertyId=" + PointClusterListParams.propertyId);
|
|
1806
1806
|
}
|
|
1807
|
+
if (PointClusterListOptions?.limit !== void 0) {
|
|
1808
|
+
queryArray.push("limit=" + PointClusterListOptions.limit);
|
|
1809
|
+
}
|
|
1810
|
+
if (PointClusterListOptions?.cursor !== void 0) {
|
|
1811
|
+
queryArray.push("cursor=" + PointClusterListOptions.cursor);
|
|
1812
|
+
}
|
|
1807
1813
|
return await super.sendRequest(
|
|
1808
1814
|
{
|
|
1809
1815
|
method: "GET",
|
|
@@ -2928,6 +2934,12 @@ var SimsService = class extends Service {
|
|
|
2928
2934
|
if (SimListParams?.propertyId !== void 0) {
|
|
2929
2935
|
queryArray.push("propertyId=" + SimListParams.propertyId);
|
|
2930
2936
|
}
|
|
2937
|
+
if (SimListOptions?.limit !== void 0) {
|
|
2938
|
+
queryArray.push("limit=" + SimListOptions.limit);
|
|
2939
|
+
}
|
|
2940
|
+
if (SimListOptions?.cursor !== void 0) {
|
|
2941
|
+
queryArray.push("cursor=" + SimListOptions.cursor);
|
|
2942
|
+
}
|
|
2931
2943
|
return await super.sendRequest(
|
|
2932
2944
|
{
|
|
2933
2945
|
method: "GET",
|
package/dist/index.mjs
CHANGED
|
@@ -1760,6 +1760,12 @@ var PointClustersService = class extends Service {
|
|
|
1760
1760
|
if (PointClusterListParams?.propertyId !== void 0) {
|
|
1761
1761
|
queryArray.push("propertyId=" + PointClusterListParams.propertyId);
|
|
1762
1762
|
}
|
|
1763
|
+
if (PointClusterListOptions?.limit !== void 0) {
|
|
1764
|
+
queryArray.push("limit=" + PointClusterListOptions.limit);
|
|
1765
|
+
}
|
|
1766
|
+
if (PointClusterListOptions?.cursor !== void 0) {
|
|
1767
|
+
queryArray.push("cursor=" + PointClusterListOptions.cursor);
|
|
1768
|
+
}
|
|
1763
1769
|
return await super.sendRequest(
|
|
1764
1770
|
{
|
|
1765
1771
|
method: "GET",
|
|
@@ -2884,6 +2890,12 @@ var SimsService = class extends Service {
|
|
|
2884
2890
|
if (SimListParams?.propertyId !== void 0) {
|
|
2885
2891
|
queryArray.push("propertyId=" + SimListParams.propertyId);
|
|
2886
2892
|
}
|
|
2893
|
+
if (SimListOptions?.limit !== void 0) {
|
|
2894
|
+
queryArray.push("limit=" + SimListOptions.limit);
|
|
2895
|
+
}
|
|
2896
|
+
if (SimListOptions?.cursor !== void 0) {
|
|
2897
|
+
queryArray.push("cursor=" + SimListOptions.cursor);
|
|
2898
|
+
}
|
|
2887
2899
|
return await super.sendRequest(
|
|
2888
2900
|
{
|
|
2889
2901
|
method: "GET",
|