@juhuu/sdk-ts 1.3.63 → 1.3.64

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
@@ -769,6 +769,7 @@ interface LocationListBlock extends BaseBlock {
769
769
  in: {
770
770
  rentableDeviceGroupLocationId: DataEdgeConnection;
771
771
  visible: DataEdgeConnection;
772
+ disabled: DataEdgeConnection;
772
773
  deviceIdArray: DataEdgeConnection;
773
774
  limit: DataEdgeConnection;
774
775
  skip: DataEdgeConnection;
@@ -781,7 +782,8 @@ interface LocationListBlock extends BaseBlock {
781
782
  data: {
782
783
  rentableDeviceGroupLocationId?: string | null;
783
784
  visible?: boolean;
784
- deviceIdArray?: string;
785
+ disabled?: boolean;
786
+ deviceIdArray?: string[];
785
787
  limit?: number;
786
788
  skip?: number;
787
789
  };
@@ -789,7 +791,8 @@ interface LocationListBlock extends BaseBlock {
789
791
  interface LocationListBlockInputs {
790
792
  rentableDeviceGroupLocationId?: string | null;
791
793
  visible?: boolean;
792
- deviceIdArray?: string;
794
+ disabled?: boolean;
795
+ deviceIdArray?: string[];
793
796
  limit?: number;
794
797
  skip?: number;
795
798
  }
package/dist/index.d.ts CHANGED
@@ -769,6 +769,7 @@ interface LocationListBlock extends BaseBlock {
769
769
  in: {
770
770
  rentableDeviceGroupLocationId: DataEdgeConnection;
771
771
  visible: DataEdgeConnection;
772
+ disabled: DataEdgeConnection;
772
773
  deviceIdArray: DataEdgeConnection;
773
774
  limit: DataEdgeConnection;
774
775
  skip: DataEdgeConnection;
@@ -781,7 +782,8 @@ interface LocationListBlock extends BaseBlock {
781
782
  data: {
782
783
  rentableDeviceGroupLocationId?: string | null;
783
784
  visible?: boolean;
784
- deviceIdArray?: string;
785
+ disabled?: boolean;
786
+ deviceIdArray?: string[];
785
787
  limit?: number;
786
788
  skip?: number;
787
789
  };
@@ -789,7 +791,8 @@ interface LocationListBlock extends BaseBlock {
789
791
  interface LocationListBlockInputs {
790
792
  rentableDeviceGroupLocationId?: string | null;
791
793
  visible?: boolean;
792
- deviceIdArray?: string;
794
+ disabled?: boolean;
795
+ deviceIdArray?: string[];
793
796
  limit?: number;
794
797
  skip?: number;
795
798
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "provenance": true
4
4
  },
5
5
  "name": "@juhuu/sdk-ts",
6
- "version": "1.3.63",
6
+ "version": "1.3.64",
7
7
  "description": "Typescript wrapper for JUHUU services",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",