@juhuu/sdk-ts 1.3.13 → 1.3.15

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;
@@ -4562,6 +4563,8 @@ declare namespace JUHUU {
4562
4563
  readonly object: "location";
4563
4564
  logoLight: string | null;
4564
4565
  logoDark: string | null;
4566
+ iconLight: string | null;
4567
+ iconDark: string | null;
4565
4568
  location: GeoPoint | null;
4566
4569
  invalidAt: Date | null;
4567
4570
  purposeArray: Purpose[];
@@ -4676,6 +4679,16 @@ declare namespace JUHUU {
4676
4679
  * Set to null to remove the image
4677
4680
  */
4678
4681
  logoDark?: string | null;
4682
+ /**
4683
+ * Base64 encoded image
4684
+ * Set to null to remove the image
4685
+ */
4686
+ iconLight?: string | null;
4687
+ /**
4688
+ * Base64 encoded image
4689
+ * Set to null to remove the image
4690
+ */
4691
+ iconDark?: string | null;
4679
4692
  };
4680
4693
  type Options = JUHUU.RequestOptions;
4681
4694
  type Response = {
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;
@@ -4562,6 +4563,8 @@ declare namespace JUHUU {
4562
4563
  readonly object: "location";
4563
4564
  logoLight: string | null;
4564
4565
  logoDark: string | null;
4566
+ iconLight: string | null;
4567
+ iconDark: string | null;
4565
4568
  location: GeoPoint | null;
4566
4569
  invalidAt: Date | null;
4567
4570
  purposeArray: Purpose[];
@@ -4676,6 +4679,16 @@ declare namespace JUHUU {
4676
4679
  * Set to null to remove the image
4677
4680
  */
4678
4681
  logoDark?: string | null;
4682
+ /**
4683
+ * Base64 encoded image
4684
+ * Set to null to remove the image
4685
+ */
4686
+ iconLight?: string | null;
4687
+ /**
4688
+ * Base64 encoded image
4689
+ * Set to null to remove the image
4690
+ */
4691
+ iconDark?: string | null;
4679
4692
  };
4680
4693
  type Options = JUHUU.RequestOptions;
4681
4694
  type Response = {
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,
@@ -2041,7 +2042,9 @@ var LocationsService = class extends Service {
2041
2042
  visible: LocationUpdateParams.visible,
2042
2043
  termId: LocationUpdateParams.termId,
2043
2044
  logoLight: LocationUpdateParams.logoLight,
2044
- logoDark: LocationUpdateParams.logoDark
2045
+ logoDark: LocationUpdateParams.logoDark,
2046
+ iconLight: LocationUpdateParams.iconLight,
2047
+ iconDark: LocationUpdateParams.iconDark
2045
2048
  },
2046
2049
  authenticationNotOptional: true
2047
2050
  },
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,
@@ -1997,7 +1998,9 @@ var LocationsService = class extends Service {
1997
1998
  visible: LocationUpdateParams.visible,
1998
1999
  termId: LocationUpdateParams.termId,
1999
2000
  logoLight: LocationUpdateParams.logoLight,
2000
- logoDark: LocationUpdateParams.logoDark
2001
+ logoDark: LocationUpdateParams.logoDark,
2002
+ iconLight: LocationUpdateParams.iconLight,
2003
+ iconDark: LocationUpdateParams.iconDark
2001
2004
  },
2002
2005
  authenticationNotOptional: true
2003
2006
  },
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.15",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",