node-opcua-chunkmanager 2.110.0 → 2.112.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/dist/SequenceHeader.js
CHANGED
|
@@ -11,10 +11,10 @@ const schemaSequenceHeader = (0, node_opcua_factory_1.buildStructuredType)({
|
|
|
11
11
|
fields: [
|
|
12
12
|
// A monotonically increasing sequence number assigned by the sender to each
|
|
13
13
|
// MessageChunk sent over the ClientSecureChannelLayer.
|
|
14
|
-
{ name: "
|
|
14
|
+
{ name: "SequenceNumber", fieldType: "UInt32" },
|
|
15
15
|
// An identifier assigned by the client to OPC UA request Message. All MessageChunks for
|
|
16
16
|
// the request and the associated response use the same identifier.
|
|
17
|
-
{ name: "
|
|
17
|
+
{ name: "RequestId", fieldType: "UInt32" }
|
|
18
18
|
],
|
|
19
19
|
name: "SequenceHeader"
|
|
20
20
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-chunkmanager",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.112.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module chunkmanager",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -12,14 +12,14 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"node-opcua-assert": "2.105.0",
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
15
|
+
"node-opcua-basic-types": "2.111.0",
|
|
16
16
|
"node-opcua-binary-stream": "2.110.0",
|
|
17
17
|
"node-opcua-buffer-utils": "2.110.0",
|
|
18
|
-
"node-opcua-factory": "2.
|
|
18
|
+
"node-opcua-factory": "2.112.0",
|
|
19
19
|
"node-opcua-packet-assembler": "2.110.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@types/node": "20.5.
|
|
22
|
+
"@types/node": "20.5.9",
|
|
23
23
|
"node-opcua-debug": "2.110.0",
|
|
24
24
|
"should": "^13.2.3",
|
|
25
25
|
"source-map-support": "^0.5.21"
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"internet of things"
|
|
40
40
|
],
|
|
41
41
|
"homepage": "http://node-opcua.github.io/",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "af1c21306612b11aa4265e9e6c094c91fe9beebb",
|
|
43
43
|
"files": [
|
|
44
44
|
"dist",
|
|
45
45
|
"source"
|
package/source/SequenceHeader.ts
CHANGED
|
@@ -17,10 +17,10 @@ const schemaSequenceHeader: IStructuredTypeSchema = buildStructuredType({
|
|
|
17
17
|
fields: [
|
|
18
18
|
// A monotonically increasing sequence number assigned by the sender to each
|
|
19
19
|
// MessageChunk sent over the ClientSecureChannelLayer.
|
|
20
|
-
{ name: "
|
|
20
|
+
{ name: "SequenceNumber", fieldType: "UInt32" },
|
|
21
21
|
// An identifier assigned by the client to OPC UA request Message. All MessageChunks for
|
|
22
22
|
// the request and the associated response use the same identifier.
|
|
23
|
-
{ name: "
|
|
23
|
+
{ name: "RequestId", fieldType: "UInt32" }
|
|
24
24
|
],
|
|
25
25
|
name: "SequenceHeader"
|
|
26
26
|
});
|