@juhuu/sdk-ts 1.2.230 → 1.2.231
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 +15 -1
- package/dist/index.d.ts +15 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -600,20 +600,34 @@ interface ParameterUpdateBlock extends BaseBlock {
|
|
|
600
600
|
parameterId: DataEdgeConnection;
|
|
601
601
|
deviceId: DataEdgeConnection;
|
|
602
602
|
currentValue: DataEdgeConnection;
|
|
603
|
+
enumArray: DataEdgeConnection;
|
|
604
|
+
description: DataEdgeConnection;
|
|
605
|
+
name: DataEdgeConnection;
|
|
606
|
+
reference: DataEdgeConnection;
|
|
603
607
|
};
|
|
604
608
|
out: {
|
|
605
|
-
|
|
609
|
+
beforeParameter: DataEdgeConnection;
|
|
610
|
+
afterParameter: DataEdgeConnection;
|
|
611
|
+
changedFields: DataEdgeConnection;
|
|
606
612
|
};
|
|
607
613
|
data: {
|
|
608
614
|
parameterId: string | null;
|
|
609
615
|
deviceId: string | null;
|
|
610
616
|
currentValue: number | string | boolean | null;
|
|
617
|
+
enumArray: string[] | null;
|
|
618
|
+
description: string | null;
|
|
619
|
+
name: string | null;
|
|
620
|
+
reference: string | null;
|
|
611
621
|
};
|
|
612
622
|
}
|
|
613
623
|
interface ParameterUpdateBlockInputs {
|
|
614
624
|
parameterId: string;
|
|
615
625
|
deviceId: string | null;
|
|
616
626
|
currentValue: number | string | boolean;
|
|
627
|
+
enumArray: string[] | null;
|
|
628
|
+
description: string | null;
|
|
629
|
+
name: string | null;
|
|
630
|
+
reference: string | null;
|
|
617
631
|
}
|
|
618
632
|
interface ConstNumberBlock extends BaseBlock {
|
|
619
633
|
type: "const.number";
|
package/dist/index.d.ts
CHANGED
|
@@ -600,20 +600,34 @@ interface ParameterUpdateBlock extends BaseBlock {
|
|
|
600
600
|
parameterId: DataEdgeConnection;
|
|
601
601
|
deviceId: DataEdgeConnection;
|
|
602
602
|
currentValue: DataEdgeConnection;
|
|
603
|
+
enumArray: DataEdgeConnection;
|
|
604
|
+
description: DataEdgeConnection;
|
|
605
|
+
name: DataEdgeConnection;
|
|
606
|
+
reference: DataEdgeConnection;
|
|
603
607
|
};
|
|
604
608
|
out: {
|
|
605
|
-
|
|
609
|
+
beforeParameter: DataEdgeConnection;
|
|
610
|
+
afterParameter: DataEdgeConnection;
|
|
611
|
+
changedFields: DataEdgeConnection;
|
|
606
612
|
};
|
|
607
613
|
data: {
|
|
608
614
|
parameterId: string | null;
|
|
609
615
|
deviceId: string | null;
|
|
610
616
|
currentValue: number | string | boolean | null;
|
|
617
|
+
enumArray: string[] | null;
|
|
618
|
+
description: string | null;
|
|
619
|
+
name: string | null;
|
|
620
|
+
reference: string | null;
|
|
611
621
|
};
|
|
612
622
|
}
|
|
613
623
|
interface ParameterUpdateBlockInputs {
|
|
614
624
|
parameterId: string;
|
|
615
625
|
deviceId: string | null;
|
|
616
626
|
currentValue: number | string | boolean;
|
|
627
|
+
enumArray: string[] | null;
|
|
628
|
+
description: string | null;
|
|
629
|
+
name: string | null;
|
|
630
|
+
reference: string | null;
|
|
617
631
|
}
|
|
618
632
|
interface ConstNumberBlock extends BaseBlock {
|
|
619
633
|
type: "const.number";
|