node-opcua-chunkmanager 2.88.0 → 2.89.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/chunk_manager.d.ts +4 -4
- package/package.json +5 -5
package/dist/chunk_manager.d.ts
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { EventEmitter } from "events";
|
|
7
7
|
export declare function verify_message_chunk(messageChunk: Buffer): void;
|
|
8
|
-
export
|
|
9
|
-
export
|
|
10
|
-
export
|
|
11
|
-
export
|
|
8
|
+
export type WriteHeaderFunc = (chunk: Buffer, isLast: boolean, expectedLength: number) => void;
|
|
9
|
+
export type WriteSequenceHeaderFunc = (chunk: Buffer) => void;
|
|
10
|
+
export type SignBufferFunc = (buffer: Buffer) => Buffer;
|
|
11
|
+
export type EncryptBufferFunc = (buffer: Buffer) => Buffer;
|
|
12
12
|
export interface IChunkManagerOptions {
|
|
13
13
|
chunkSize: number;
|
|
14
14
|
signatureLength: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-chunkmanager",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.89.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -chunkmanager",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"node-opcua-assert": "2.88.0",
|
|
15
|
-
"node-opcua-basic-types": "2.
|
|
16
|
-
"node-opcua-binary-stream": "2.
|
|
15
|
+
"node-opcua-basic-types": "2.89.0",
|
|
16
|
+
"node-opcua-binary-stream": "2.89.0",
|
|
17
17
|
"node-opcua-buffer-utils": "2.88.0",
|
|
18
|
-
"node-opcua-factory": "2.
|
|
18
|
+
"node-opcua-factory": "2.89.0",
|
|
19
19
|
"node-opcua-packet-assembler": "2.88.0"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"internet of things"
|
|
40
40
|
],
|
|
41
41
|
"homepage": "http://node-opcua.github.io/",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "93d5502a1b71afbb5e5fa56846615c412b63cc1b"
|
|
43
43
|
}
|