@juhuu/sdk-ts 1.3.12 → 1.3.14
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 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +4 -2
- package/dist/index.mjs +4 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4227,6 +4227,7 @@ declare namespace JUHUU {
|
|
|
4227
4227
|
iconLight?: string | null;
|
|
4228
4228
|
iconDark?: string | null;
|
|
4229
4229
|
visualPriority?: VisualPriority;
|
|
4230
|
+
pointClusterId?: string | null;
|
|
4230
4231
|
};
|
|
4231
4232
|
type Options = JUHUU.RequestOptions;
|
|
4232
4233
|
type Response = {
|
|
@@ -4245,7 +4246,8 @@ declare namespace JUHUU {
|
|
|
4245
4246
|
export namespace Update {
|
|
4246
4247
|
type Params = {
|
|
4247
4248
|
pointId: string;
|
|
4248
|
-
|
|
4249
|
+
latitude?: number;
|
|
4250
|
+
longitude?: number;
|
|
4249
4251
|
altitudeRange?: [number, number];
|
|
4250
4252
|
purposeArray?: Purpose[];
|
|
4251
4253
|
iconLight?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -4227,6 +4227,7 @@ declare namespace JUHUU {
|
|
|
4227
4227
|
iconLight?: string | null;
|
|
4228
4228
|
iconDark?: string | null;
|
|
4229
4229
|
visualPriority?: VisualPriority;
|
|
4230
|
+
pointClusterId?: string | null;
|
|
4230
4231
|
};
|
|
4231
4232
|
type Options = JUHUU.RequestOptions;
|
|
4232
4233
|
type Response = {
|
|
@@ -4245,7 +4246,8 @@ declare namespace JUHUU {
|
|
|
4245
4246
|
export namespace Update {
|
|
4246
4247
|
type Params = {
|
|
4247
4248
|
pointId: string;
|
|
4248
|
-
|
|
4249
|
+
latitude?: number;
|
|
4250
|
+
longitude?: number;
|
|
4249
4251
|
altitudeRange?: [number, number];
|
|
4250
4252
|
purposeArray?: Purpose[];
|
|
4251
4253
|
iconLight?: string | null;
|
package/dist/index.js
CHANGED
|
@@ -1602,7 +1602,8 @@ var PointsService = class extends Service {
|
|
|
1602
1602
|
purposeArray: PointCreateParams.purposeArray,
|
|
1603
1603
|
iconLight: PointCreateParams.iconLight,
|
|
1604
1604
|
iconDark: PointCreateParams.iconDark,
|
|
1605
|
-
visualPriority: PointCreateParams.visualPriority
|
|
1605
|
+
visualPriority: PointCreateParams.visualPriority,
|
|
1606
|
+
pointClusterId: PointCreateParams.pointClusterId
|
|
1606
1607
|
},
|
|
1607
1608
|
authenticationNotOptional: true
|
|
1608
1609
|
},
|
|
@@ -1626,7 +1627,8 @@ var PointsService = class extends Service {
|
|
|
1626
1627
|
method: "PATCH",
|
|
1627
1628
|
url: "points/" + PointUpdateParams.pointId,
|
|
1628
1629
|
body: {
|
|
1629
|
-
|
|
1630
|
+
latitude: PointUpdateParams.latitude,
|
|
1631
|
+
longitude: PointUpdateParams.longitude,
|
|
1630
1632
|
altitudeRange: PointUpdateParams.altitudeRange,
|
|
1631
1633
|
purposeArray: PointUpdateParams.purposeArray,
|
|
1632
1634
|
iconLight: PointUpdateParams.iconLight,
|
package/dist/index.mjs
CHANGED
|
@@ -1558,7 +1558,8 @@ var PointsService = class extends Service {
|
|
|
1558
1558
|
purposeArray: PointCreateParams.purposeArray,
|
|
1559
1559
|
iconLight: PointCreateParams.iconLight,
|
|
1560
1560
|
iconDark: PointCreateParams.iconDark,
|
|
1561
|
-
visualPriority: PointCreateParams.visualPriority
|
|
1561
|
+
visualPriority: PointCreateParams.visualPriority,
|
|
1562
|
+
pointClusterId: PointCreateParams.pointClusterId
|
|
1562
1563
|
},
|
|
1563
1564
|
authenticationNotOptional: true
|
|
1564
1565
|
},
|
|
@@ -1582,7 +1583,8 @@ var PointsService = class extends Service {
|
|
|
1582
1583
|
method: "PATCH",
|
|
1583
1584
|
url: "points/" + PointUpdateParams.pointId,
|
|
1584
1585
|
body: {
|
|
1585
|
-
|
|
1586
|
+
latitude: PointUpdateParams.latitude,
|
|
1587
|
+
longitude: PointUpdateParams.longitude,
|
|
1586
1588
|
altitudeRange: PointUpdateParams.altitudeRange,
|
|
1587
1589
|
purposeArray: PointUpdateParams.purposeArray,
|
|
1588
1590
|
iconLight: PointUpdateParams.iconLight,
|