@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 +5 -2
- package/dist/index.d.ts +5 -2
- package/package.json +1 -1
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
794
|
+
disabled?: boolean;
|
|
795
|
+
deviceIdArray?: string[];
|
|
793
796
|
limit?: number;
|
|
794
797
|
skip?: number;
|
|
795
798
|
}
|