@juhuu/sdk-ts 1.2.245 → 1.2.247

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
@@ -3070,6 +3070,8 @@ declare namespace JUHUU {
3070
3070
  iconDark: string | null;
3071
3071
  utilization: Utilization | null;
3072
3072
  visualPriority: VisualPriority;
3073
+ iconLight32: string | null;
3074
+ iconDark32: string | null;
3073
3075
  }
3074
3076
  export interface Aggregation extends Base {
3075
3077
  type: "aggregation";
@@ -3481,6 +3483,26 @@ declare namespace JUHUU {
3481
3483
  rentableDeviceGroupLocationId?: string | null;
3482
3484
  termId?: string | null;
3483
3485
  visible?: boolean;
3486
+ /**
3487
+ * Base64 encoded image
3488
+ * Set to null to remove the image
3489
+ */
3490
+ logoLight?: string | null;
3491
+ /**
3492
+ * Base64 encoded image
3493
+ * Set to null to remove the image
3494
+ */
3495
+ logoDark?: string | null;
3496
+ /**
3497
+ * Base64 encoded image
3498
+ * Set to null to remove the image
3499
+ */
3500
+ iconLight?: string | null;
3501
+ /**
3502
+ * Base64 encoded image
3503
+ * Set to null to remove the image
3504
+ */
3505
+ iconDark?: string | null;
3484
3506
  };
3485
3507
  type Options = JUHUU.RequestOptions;
3486
3508
  type Response = {
@@ -3633,6 +3655,7 @@ declare namespace JUHUU {
3633
3655
  type Params = {
3634
3656
  fiveLetterQr?: string;
3635
3657
  propertyId?: string;
3658
+ referenceObjectId?: string;
3636
3659
  };
3637
3660
  type Options = {};
3638
3661
  type Response = JUHUU.Link.Object[];
package/dist/index.d.ts CHANGED
@@ -3070,6 +3070,8 @@ declare namespace JUHUU {
3070
3070
  iconDark: string | null;
3071
3071
  utilization: Utilization | null;
3072
3072
  visualPriority: VisualPriority;
3073
+ iconLight32: string | null;
3074
+ iconDark32: string | null;
3073
3075
  }
3074
3076
  export interface Aggregation extends Base {
3075
3077
  type: "aggregation";
@@ -3481,6 +3483,26 @@ declare namespace JUHUU {
3481
3483
  rentableDeviceGroupLocationId?: string | null;
3482
3484
  termId?: string | null;
3483
3485
  visible?: boolean;
3486
+ /**
3487
+ * Base64 encoded image
3488
+ * Set to null to remove the image
3489
+ */
3490
+ logoLight?: string | null;
3491
+ /**
3492
+ * Base64 encoded image
3493
+ * Set to null to remove the image
3494
+ */
3495
+ logoDark?: string | null;
3496
+ /**
3497
+ * Base64 encoded image
3498
+ * Set to null to remove the image
3499
+ */
3500
+ iconLight?: string | null;
3501
+ /**
3502
+ * Base64 encoded image
3503
+ * Set to null to remove the image
3504
+ */
3505
+ iconDark?: string | null;
3484
3506
  };
3485
3507
  type Options = JUHUU.RequestOptions;
3486
3508
  type Response = {
@@ -3633,6 +3655,7 @@ declare namespace JUHUU {
3633
3655
  type Params = {
3634
3656
  fiveLetterQr?: string;
3635
3657
  propertyId?: string;
3658
+ referenceObjectId?: string;
3636
3659
  };
3637
3660
  type Options = {};
3638
3661
  type Response = JUHUU.Link.Object[];
package/dist/index.js CHANGED
@@ -638,6 +638,9 @@ var LinkService = class extends Service {
638
638
  if (LinkListParams.fiveLetterQr !== void 0) {
639
639
  queryArray.push("fiveLetterQr=" + LinkListParams.fiveLetterQr);
640
640
  }
641
+ if (LinkListParams.referenceObjectId !== void 0) {
642
+ queryArray.push("referenceObjectId=" + LinkListParams.referenceObjectId);
643
+ }
641
644
  return await super.sendRequest(
642
645
  {
643
646
  method: "GET",
@@ -1472,7 +1475,12 @@ var LocationsService = class extends Service {
1472
1475
  latitude: LocationUpdateParams.latitude,
1473
1476
  longitude: LocationUpdateParams.longitude,
1474
1477
  disabled: LocationUpdateParams.disabled,
1475
- visible: LocationUpdateParams.visible
1478
+ visible: LocationUpdateParams.visible,
1479
+ termId: LocationUpdateParams.termId,
1480
+ logoLight: LocationUpdateParams.logoLight,
1481
+ logoDark: LocationUpdateParams.logoDark,
1482
+ iconLight: LocationUpdateParams.iconLight,
1483
+ iconDark: LocationUpdateParams.iconDark
1476
1484
  },
1477
1485
  authenticationNotOptional: true
1478
1486
  },
package/dist/index.mjs CHANGED
@@ -594,6 +594,9 @@ var LinkService = class extends Service {
594
594
  if (LinkListParams.fiveLetterQr !== void 0) {
595
595
  queryArray.push("fiveLetterQr=" + LinkListParams.fiveLetterQr);
596
596
  }
597
+ if (LinkListParams.referenceObjectId !== void 0) {
598
+ queryArray.push("referenceObjectId=" + LinkListParams.referenceObjectId);
599
+ }
597
600
  return await super.sendRequest(
598
601
  {
599
602
  method: "GET",
@@ -1428,7 +1431,12 @@ var LocationsService = class extends Service {
1428
1431
  latitude: LocationUpdateParams.latitude,
1429
1432
  longitude: LocationUpdateParams.longitude,
1430
1433
  disabled: LocationUpdateParams.disabled,
1431
- visible: LocationUpdateParams.visible
1434
+ visible: LocationUpdateParams.visible,
1435
+ termId: LocationUpdateParams.termId,
1436
+ logoLight: LocationUpdateParams.logoLight,
1437
+ logoDark: LocationUpdateParams.logoDark,
1438
+ iconLight: LocationUpdateParams.iconLight,
1439
+ iconDark: LocationUpdateParams.iconDark
1432
1440
  },
1433
1441
  authenticationNotOptional: true
1434
1442
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.245",
3
+ "version": "1.2.247",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",