@juhuu/sdk-ts 1.2.230 → 1.2.232
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 +16 -1
- package/dist/index.d.ts +16 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -600,20 +600,35 @@ 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: {
|
|
614
|
+
type: "boolean" | "number" | "text" | "enum";
|
|
608
615
|
parameterId: string | null;
|
|
609
616
|
deviceId: string | null;
|
|
610
617
|
currentValue: number | string | boolean | null;
|
|
618
|
+
enumArray: string[] | null;
|
|
619
|
+
description: string | null;
|
|
620
|
+
name: string | null;
|
|
621
|
+
reference: string | null;
|
|
611
622
|
};
|
|
612
623
|
}
|
|
613
624
|
interface ParameterUpdateBlockInputs {
|
|
614
625
|
parameterId: string;
|
|
615
626
|
deviceId: string | null;
|
|
616
627
|
currentValue: number | string | boolean;
|
|
628
|
+
enumArray: string[] | null;
|
|
629
|
+
description: string | null;
|
|
630
|
+
name: string | null;
|
|
631
|
+
reference: string | null;
|
|
617
632
|
}
|
|
618
633
|
interface ConstNumberBlock extends BaseBlock {
|
|
619
634
|
type: "const.number";
|
package/dist/index.d.ts
CHANGED
|
@@ -600,20 +600,35 @@ 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: {
|
|
614
|
+
type: "boolean" | "number" | "text" | "enum";
|
|
608
615
|
parameterId: string | null;
|
|
609
616
|
deviceId: string | null;
|
|
610
617
|
currentValue: number | string | boolean | null;
|
|
618
|
+
enumArray: string[] | null;
|
|
619
|
+
description: string | null;
|
|
620
|
+
name: string | null;
|
|
621
|
+
reference: string | null;
|
|
611
622
|
};
|
|
612
623
|
}
|
|
613
624
|
interface ParameterUpdateBlockInputs {
|
|
614
625
|
parameterId: string;
|
|
615
626
|
deviceId: string | null;
|
|
616
627
|
currentValue: number | string | boolean;
|
|
628
|
+
enumArray: string[] | null;
|
|
629
|
+
description: string | null;
|
|
630
|
+
name: string | null;
|
|
631
|
+
reference: string | null;
|
|
617
632
|
}
|
|
618
633
|
interface ConstNumberBlock extends BaseBlock {
|
|
619
634
|
type: "const.number";
|