@juhuu/sdk-ts 1.2.254 → 1.2.255

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
@@ -728,19 +728,46 @@ interface DeviceUpdateBlock extends BaseBlock {
728
728
  type: "device.update";
729
729
  in: {
730
730
  deviceId: DataEdgeConnection;
731
- data: DataEdgeConnection;
731
+ name: DataEdgeConnection;
732
+ description: DataEdgeConnection;
733
+ latitude: DataEdgeConnection;
734
+ longitude: DataEdgeConnection;
735
+ disabled: DataEdgeConnection;
736
+ parameterIdArray: DataEdgeConnection;
737
+ simIdArray: DataEdgeConnection;
738
+ permissionArray: DataEdgeConnection;
739
+ proximityStrategyArray: DataEdgeConnection;
740
+ adminQuickViewArray: DataEdgeConnection;
732
741
  };
733
742
  out: {
734
743
  device: DataEdgeConnection;
735
744
  };
736
745
  data: {
737
746
  deviceId?: string;
738
- data?: Record<string, any>;
747
+ name?: string | null;
748
+ description?: string | null;
749
+ latitude?: number | null;
750
+ longitude?: number | null;
751
+ disabled?: boolean | null;
752
+ parameterIdArray?: string[] | null;
753
+ simIdArray?: string[] | null;
754
+ permissionArray?: DevicePermission[] | null;
755
+ proximityStrategyArray?: ProximityStrategy[] | null;
756
+ adminQuickViewArray?: QuickView[] | null;
739
757
  };
740
758
  }
741
759
  interface DeviceUpdateBlockInputs {
742
760
  deviceId: string;
743
- data: Record<string, any>;
761
+ name?: string;
762
+ description?: string | null;
763
+ latitude?: number | null;
764
+ longitude?: number | null;
765
+ disabled?: boolean;
766
+ parameterIdArray?: string[];
767
+ simIdArray?: string[];
768
+ permissionArray?: DevicePermission[];
769
+ proximityStrategyArray?: ProximityStrategy[];
770
+ adminQuickViewArray?: QuickView[];
744
771
  }
745
772
  interface LocationUpdateBlock extends BaseBlock {
746
773
  type: "location.update";
package/dist/index.d.ts CHANGED
@@ -728,19 +728,46 @@ interface DeviceUpdateBlock extends BaseBlock {
728
728
  type: "device.update";
729
729
  in: {
730
730
  deviceId: DataEdgeConnection;
731
- data: DataEdgeConnection;
731
+ name: DataEdgeConnection;
732
+ description: DataEdgeConnection;
733
+ latitude: DataEdgeConnection;
734
+ longitude: DataEdgeConnection;
735
+ disabled: DataEdgeConnection;
736
+ parameterIdArray: DataEdgeConnection;
737
+ simIdArray: DataEdgeConnection;
738
+ permissionArray: DataEdgeConnection;
739
+ proximityStrategyArray: DataEdgeConnection;
740
+ adminQuickViewArray: DataEdgeConnection;
732
741
  };
733
742
  out: {
734
743
  device: DataEdgeConnection;
735
744
  };
736
745
  data: {
737
746
  deviceId?: string;
738
- data?: Record<string, any>;
747
+ name?: string | null;
748
+ description?: string | null;
749
+ latitude?: number | null;
750
+ longitude?: number | null;
751
+ disabled?: boolean | null;
752
+ parameterIdArray?: string[] | null;
753
+ simIdArray?: string[] | null;
754
+ permissionArray?: DevicePermission[] | null;
755
+ proximityStrategyArray?: ProximityStrategy[] | null;
756
+ adminQuickViewArray?: QuickView[] | null;
739
757
  };
740
758
  }
741
759
  interface DeviceUpdateBlockInputs {
742
760
  deviceId: string;
743
- data: Record<string, any>;
761
+ name?: string;
762
+ description?: string | null;
763
+ latitude?: number | null;
764
+ longitude?: number | null;
765
+ disabled?: boolean;
766
+ parameterIdArray?: string[];
767
+ simIdArray?: string[];
768
+ permissionArray?: DevicePermission[];
769
+ proximityStrategyArray?: ProximityStrategy[];
770
+ adminQuickViewArray?: QuickView[];
744
771
  }
745
772
  interface LocationUpdateBlock extends BaseBlock {
746
773
  type: "location.update";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.254",
3
+ "version": "1.2.255",
4
4
  "description": "Typescript wrapper for JUHUU services",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",