@juhuu/sdk-ts 1.3.12 → 1.3.13

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
@@ -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 = {
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 = {
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
  },
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
  },
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.12",
6
+ "version": "1.3.13",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",