@juhuu/sdk-ts 1.2.253 → 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";
@@ -962,6 +989,7 @@ interface SwitchBlock extends BaseBlock {
962
989
  out: Record<string, ControlEdgeConnection>;
963
990
  data: {
964
991
  expression: JsonLogic;
992
+ cases: string[];
965
993
  };
966
994
  }
967
995
  interface HttpPatchBlock extends BaseBlock {
@@ -3865,10 +3893,11 @@ declare namespace JUHUU {
3865
3893
  type Base = {
3866
3894
  id: string;
3867
3895
  readonly object: "link";
3868
- propertyId: string;
3896
+ propertyId: string | null;
3869
3897
  referenceObject: "location";
3870
3898
  referenceObjectId: string;
3871
3899
  name: string;
3900
+ image: string | null;
3872
3901
  };
3873
3902
  export interface FiveLetterQr extends Base {
3874
3903
  type: "fiveLetterQr";
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";
@@ -962,6 +989,7 @@ interface SwitchBlock extends BaseBlock {
962
989
  out: Record<string, ControlEdgeConnection>;
963
990
  data: {
964
991
  expression: JsonLogic;
992
+ cases: string[];
965
993
  };
966
994
  }
967
995
  interface HttpPatchBlock extends BaseBlock {
@@ -3865,10 +3893,11 @@ declare namespace JUHUU {
3865
3893
  type Base = {
3866
3894
  id: string;
3867
3895
  readonly object: "link";
3868
- propertyId: string;
3896
+ propertyId: string | null;
3869
3897
  referenceObject: "location";
3870
3898
  referenceObjectId: string;
3871
3899
  name: string;
3900
+ image: string | null;
3872
3901
  };
3873
3902
  export interface FiveLetterQr extends Base {
3874
3903
  type: "fiveLetterQr";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juhuu/sdk-ts",
3
- "version": "1.2.253",
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",