@juhuu/sdk-ts 1.2.246 → 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 = {
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 = {
package/dist/index.js CHANGED
@@ -1475,7 +1475,12 @@ var LocationsService = class extends Service {
1475
1475
  latitude: LocationUpdateParams.latitude,
1476
1476
  longitude: LocationUpdateParams.longitude,
1477
1477
  disabled: LocationUpdateParams.disabled,
1478
- 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
1479
1484
  },
1480
1485
  authenticationNotOptional: true
1481
1486
  },
package/dist/index.mjs CHANGED
@@ -1431,7 +1431,12 @@ var LocationsService = class extends Service {
1431
1431
  latitude: LocationUpdateParams.latitude,
1432
1432
  longitude: LocationUpdateParams.longitude,
1433
1433
  disabled: LocationUpdateParams.disabled,
1434
- 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
1435
1440
  },
1436
1441
  authenticationNotOptional: true
1437
1442
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.246",
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",