@juhuu/sdk-ts 1.3.21 → 1.3.22
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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4085,6 +4085,7 @@ declare namespace JUHUU {
|
|
|
4085
4085
|
latitudeTopLeft: number;
|
|
4086
4086
|
longitudeBottomRight: number;
|
|
4087
4087
|
latitudeBottomRight: number;
|
|
4088
|
+
pointClusterId?: string | null;
|
|
4088
4089
|
};
|
|
4089
4090
|
type Options = JUHUU.RequestOptions;
|
|
4090
4091
|
type Response = JUHUU.Point.Object[];
|
package/dist/index.d.ts
CHANGED
|
@@ -4085,6 +4085,7 @@ declare namespace JUHUU {
|
|
|
4085
4085
|
latitudeTopLeft: number;
|
|
4086
4086
|
longitudeBottomRight: number;
|
|
4087
4087
|
latitudeBottomRight: number;
|
|
4088
|
+
pointClusterId?: string | null;
|
|
4088
4089
|
};
|
|
4089
4090
|
type Options = JUHUU.RequestOptions;
|
|
4090
4091
|
type Response = JUHUU.Point.Object[];
|
package/dist/index.js
CHANGED
|
@@ -1571,7 +1571,8 @@ var PointsService = class extends Service {
|
|
|
1571
1571
|
"longitudeTopLeft=" + PointListParams.longitudeTopLeft,
|
|
1572
1572
|
"latitudeTopLeft=" + PointListParams.latitudeTopLeft,
|
|
1573
1573
|
"longitudeBottomRight=" + PointListParams.longitudeBottomRight,
|
|
1574
|
-
"latitudeBottomRight=" + PointListParams.latitudeBottomRight
|
|
1574
|
+
"latitudeBottomRight=" + PointListParams.latitudeBottomRight,
|
|
1575
|
+
"pointClusterId=" + (PointListParams.pointClusterId ?? void 0)
|
|
1575
1576
|
];
|
|
1576
1577
|
return await super.sendRequest(
|
|
1577
1578
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -1527,7 +1527,8 @@ var PointsService = class extends Service {
|
|
|
1527
1527
|
"longitudeTopLeft=" + PointListParams.longitudeTopLeft,
|
|
1528
1528
|
"latitudeTopLeft=" + PointListParams.latitudeTopLeft,
|
|
1529
1529
|
"longitudeBottomRight=" + PointListParams.longitudeBottomRight,
|
|
1530
|
-
"latitudeBottomRight=" + PointListParams.latitudeBottomRight
|
|
1530
|
+
"latitudeBottomRight=" + PointListParams.latitudeBottomRight,
|
|
1531
|
+
"pointClusterId=" + (PointListParams.pointClusterId ?? void 0)
|
|
1531
1532
|
];
|
|
1532
1533
|
return await super.sendRequest(
|
|
1533
1534
|
{
|