node-opcua-transport 2.66.2 → 2.67.0
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/package.json +13 -13
- package/source/message_builder_base.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-transport",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.67.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -transport",
|
|
5
5
|
"main": "./dist/source/index.js",
|
|
6
6
|
"types": "./dist/source/index.d.ts",
|
|
@@ -14,18 +14,18 @@
|
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"chalk": "4.1.2",
|
|
16
16
|
"node-opcua-assert": "2.66.0",
|
|
17
|
-
"node-opcua-basic-types": "2.
|
|
18
|
-
"node-opcua-binary-stream": "2.
|
|
19
|
-
"node-opcua-buffer-utils": "2.
|
|
20
|
-
"node-opcua-chunkmanager": "2.
|
|
21
|
-
"node-opcua-debug": "2.
|
|
22
|
-
"node-opcua-factory": "2.
|
|
23
|
-
"node-opcua-nodeid": "2.
|
|
24
|
-
"node-opcua-object-registry": "2.
|
|
17
|
+
"node-opcua-basic-types": "2.67.0",
|
|
18
|
+
"node-opcua-binary-stream": "2.67.0",
|
|
19
|
+
"node-opcua-buffer-utils": "2.67.0",
|
|
20
|
+
"node-opcua-chunkmanager": "2.67.0",
|
|
21
|
+
"node-opcua-debug": "2.67.0",
|
|
22
|
+
"node-opcua-factory": "2.67.0",
|
|
23
|
+
"node-opcua-nodeid": "2.67.0",
|
|
24
|
+
"node-opcua-object-registry": "2.67.0",
|
|
25
25
|
"node-opcua-packet-assembler": "2.66.0",
|
|
26
|
-
"node-opcua-status-code": "2.
|
|
27
|
-
"node-opcua-types": "2.
|
|
28
|
-
"node-opcua-utils": "2.
|
|
26
|
+
"node-opcua-status-code": "2.67.0",
|
|
27
|
+
"node-opcua-types": "2.67.0",
|
|
28
|
+
"node-opcua-utils": "2.67.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "17.0.23",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"internet of things"
|
|
49
49
|
],
|
|
50
50
|
"homepage": "http://node-opcua.github.io/",
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "74c2fd7d4ce3eb48d25a911258bf90a64218ea0e"
|
|
52
52
|
}
|
|
@@ -35,7 +35,7 @@ export function readRawMessageHeader(data: Buffer): PacketInfo {
|
|
|
35
35
|
*
|
|
36
36
|
*/
|
|
37
37
|
export class MessageBuilderBase extends EventEmitter {
|
|
38
|
-
public readonly signatureLength: number;
|
|
38
|
+
public readonly signatureLength: number;
|
|
39
39
|
public readonly options: { signatureLength?: number };
|
|
40
40
|
public readonly _packetAssembler: PacketAssembler;
|
|
41
41
|
public channelId: number;
|