node-opcua-packet-assembler 2.86.0 → 2.90.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/LICENSE +1 -1
- package/dist/packet_assembler.d.ts +1 -1
- package/package.json +5 -5
package/LICENSE
CHANGED
|
@@ -15,7 +15,7 @@ export interface PacketInfo {
|
|
|
15
15
|
messageHeader: MessageHeader;
|
|
16
16
|
extra: string;
|
|
17
17
|
}
|
|
18
|
-
export type ReadChunkFuncType = (data: Buffer) => PacketInfo;
|
|
18
|
+
export declare type ReadChunkFuncType = (data: Buffer) => PacketInfo;
|
|
19
19
|
export interface PacketAssemblerOptions {
|
|
20
20
|
readChunkFunc: ReadChunkFuncType;
|
|
21
21
|
minimumSizeInBytes: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-packet-assembler",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.90.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -packet-assembler",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"author": "Etienne Rossignon",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"node-opcua-assert": "2.
|
|
16
|
-
"node-opcua-debug": "2.
|
|
15
|
+
"node-opcua-assert": "2.88.0",
|
|
16
|
+
"node-opcua-debug": "2.90.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"should": "^13.2.3",
|
|
20
|
-
"sinon": "^
|
|
20
|
+
"sinon": "^15.0.1"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
|
23
23
|
"type": "git",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"internet of things"
|
|
33
33
|
],
|
|
34
34
|
"homepage": "http://node-opcua.github.io/",
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "d55f9150c3ffa5b86fbe1a0baba69a2543c3090a"
|
|
36
36
|
}
|