@juhuu/sdk-ts 1.3.13 → 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 CHANGED
@@ -4246,7 +4246,8 @@ declare namespace JUHUU {
4246
4246
  export namespace Update {
4247
4247
  type Params = {
4248
4248
  pointId: string;
4249
- location?: GeoPoint;
4249
+ latitude?: number;
4250
+ longitude?: number;
4250
4251
  altitudeRange?: [number, number];
4251
4252
  purposeArray?: Purpose[];
4252
4253
  iconLight?: string | null;
package/dist/index.d.ts CHANGED
@@ -4246,7 +4246,8 @@ declare namespace JUHUU {
4246
4246
  export namespace Update {
4247
4247
  type Params = {
4248
4248
  pointId: string;
4249
- location?: GeoPoint;
4249
+ latitude?: number;
4250
+ longitude?: number;
4250
4251
  altitudeRange?: [number, number];
4251
4252
  purposeArray?: Purpose[];
4252
4253
  iconLight?: string | null;
package/dist/index.js CHANGED
@@ -1627,7 +1627,8 @@ var PointsService = class extends Service {
1627
1627
  method: "PATCH",
1628
1628
  url: "points/" + PointUpdateParams.pointId,
1629
1629
  body: {
1630
- location: PointUpdateParams.location,
1630
+ latitude: PointUpdateParams.latitude,
1631
+ longitude: PointUpdateParams.longitude,
1631
1632
  altitudeRange: PointUpdateParams.altitudeRange,
1632
1633
  purposeArray: PointUpdateParams.purposeArray,
1633
1634
  iconLight: PointUpdateParams.iconLight,
package/dist/index.mjs CHANGED
@@ -1583,7 +1583,8 @@ var PointsService = class extends Service {
1583
1583
  method: "PATCH",
1584
1584
  url: "points/" + PointUpdateParams.pointId,
1585
1585
  body: {
1586
- location: PointUpdateParams.location,
1586
+ latitude: PointUpdateParams.latitude,
1587
+ longitude: PointUpdateParams.longitude,
1587
1588
  altitudeRange: PointUpdateParams.altitudeRange,
1588
1589
  purposeArray: PointUpdateParams.purposeArray,
1589
1590
  iconLight: PointUpdateParams.iconLight,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.13",
6
+ "version": "1.3.14",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",