node-opcua-client-proxy 2.131.0 → 2.133.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/object_explorer.js +2 -2
- package/package.json +15 -15
- package/source/object_explorer.ts +2 -2
package/dist/object_explorer.js
CHANGED
|
@@ -23,7 +23,7 @@ const errorLog = (0, node_opcua_debug_1.make_errorLog)("Proxy");
|
|
|
23
23
|
const debugLog = (0, node_opcua_debug_1.make_debugLog)("Proxy");
|
|
24
24
|
const resultMask = (0, node_opcua_data_model_1.makeResultMask)("ReferenceType | IsForward | BrowseName | NodeClass | TypeDefinition");
|
|
25
25
|
/**
|
|
26
|
-
|
|
26
|
+
|
|
27
27
|
*
|
|
28
28
|
* @param session
|
|
29
29
|
* @param dataTypeId
|
|
@@ -185,7 +185,7 @@ function extractDataType(session, arg, callback) {
|
|
|
185
185
|
});
|
|
186
186
|
}
|
|
187
187
|
/**
|
|
188
|
-
|
|
188
|
+
|
|
189
189
|
* @private
|
|
190
190
|
*/
|
|
191
191
|
function add_method(proxyManager, obj, reference, outerCallback) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-client-proxy",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.133.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module client-proxy",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "npx rimraf node_modules dist *.tsbuildinfo",
|
|
@@ -15,19 +15,19 @@
|
|
|
15
15
|
"async": "^3.2.6",
|
|
16
16
|
"node-opcua-assert": "2.120.0",
|
|
17
17
|
"node-opcua-constants": "2.125.0",
|
|
18
|
-
"node-opcua-data-model": "2.
|
|
19
|
-
"node-opcua-data-value": "2.
|
|
20
|
-
"node-opcua-debug": "2.
|
|
21
|
-
"node-opcua-nodeid": "2.
|
|
22
|
-
"node-opcua-pseudo-session": "2.
|
|
23
|
-
"node-opcua-service-browse": "2.
|
|
24
|
-
"node-opcua-service-call": "2.
|
|
25
|
-
"node-opcua-service-read": "2.
|
|
26
|
-
"node-opcua-service-subscription": "2.
|
|
27
|
-
"node-opcua-service-write": "2.
|
|
28
|
-
"node-opcua-status-code": "2.
|
|
29
|
-
"node-opcua-utils": "2.
|
|
30
|
-
"node-opcua-variant": "2.
|
|
18
|
+
"node-opcua-data-model": "2.133.0",
|
|
19
|
+
"node-opcua-data-value": "2.133.0",
|
|
20
|
+
"node-opcua-debug": "2.133.0",
|
|
21
|
+
"node-opcua-nodeid": "2.133.0",
|
|
22
|
+
"node-opcua-pseudo-session": "2.133.0",
|
|
23
|
+
"node-opcua-service-browse": "2.133.0",
|
|
24
|
+
"node-opcua-service-call": "2.133.0",
|
|
25
|
+
"node-opcua-service-read": "2.133.0",
|
|
26
|
+
"node-opcua-service-subscription": "2.133.0",
|
|
27
|
+
"node-opcua-service-write": "2.133.0",
|
|
28
|
+
"node-opcua-status-code": "2.133.0",
|
|
29
|
+
"node-opcua-utils": "2.133.0",
|
|
30
|
+
"node-opcua-variant": "2.133.0",
|
|
31
31
|
"thenify": "^3.3.1"
|
|
32
32
|
},
|
|
33
33
|
"author": "Etienne Rossignon",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"internet of things"
|
|
46
46
|
],
|
|
47
47
|
"homepage": "http://node-opcua.github.io/",
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "921bb04f2e7ce3109dd051ff27a2210edf700344",
|
|
49
49
|
"files": [
|
|
50
50
|
"dist",
|
|
51
51
|
"source"
|
|
@@ -37,7 +37,7 @@ export interface ObjectExplorerOptions {
|
|
|
37
37
|
const resultMask = makeResultMask("ReferenceType | IsForward | BrowseName | NodeClass | TypeDefinition");
|
|
38
38
|
|
|
39
39
|
/**
|
|
40
|
-
|
|
40
|
+
|
|
41
41
|
*
|
|
42
42
|
* @param session
|
|
43
43
|
* @param dataTypeId
|
|
@@ -237,7 +237,7 @@ function extractDataType(session: IBasicSessionReadCallback & IBasicSessionBrow
|
|
|
237
237
|
});
|
|
238
238
|
}
|
|
239
239
|
/**
|
|
240
|
-
|
|
240
|
+
|
|
241
241
|
* @private
|
|
242
242
|
*/
|
|
243
243
|
function add_method(proxyManager: UAProxyManager, obj: any, reference: ReferenceDescription, outerCallback: (err?: Error) => void) {
|