node-opcua 2.73.1 → 2.76.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 +3 -1
- package/README.md +56 -1
- package/dist/index.d.ts +47 -46
- package/dist/index.js +145 -144
- package/dist/index.js.map +1 -1
- package/dist/server-stuff.d.ts +6 -6
- package/dist/server-stuff.js +22 -22
- package/package.json +49 -49
- package/source/index.ts +2 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2022 Sterfive SAS - 833264583 RCS ORLEANS - France (https://www.sterfive.com)
|
|
4
|
+
|
|
5
|
+
Copyright (c) 2014-2022 Etienne Rossignon
|
|
4
6
|
|
|
5
7
|
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
8
|
this software and associated documentation files (the "Software"), to deal in
|
package/README.md
CHANGED
|
@@ -3,6 +3,61 @@ node-opcua
|
|
|
3
3
|
|
|
4
4
|
an implementation of a OPC UA stack fully written in javascript and nodejs
|
|
5
5
|
|
|
6
|
-
|
|
7
6
|
see http://node-opcua.github.io/
|
|
8
7
|
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# Documentation
|
|
11
|
+
|
|
12
|
+
"NodeOPCUA by Example" (https://leanpub.com/node-opcuabyexample) provides a good starting point to understand and start using node-opcua.
|
|
13
|
+
|
|
14
|
+
More advanced interactive material & documentation is made available online for Registered members of the NodeOPCUA Subscription. Please visit https://support.sterfive.com to apply or contact Sterfive.
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## Sponsors & Backers
|
|
18
|
+
|
|
19
|
+
We appreciate that, once you have evaluated the software you consider supporting our effort by applying to our sponsor program:
|
|
20
|
+
|
|
21
|
+
- https://github.com/sponsors/node-opcua
|
|
22
|
+
- https://opencollective.com/node-opcua
|
|
23
|
+
|
|
24
|
+
Grants ensure the following:
|
|
25
|
+
|
|
26
|
+
- 🔨 Long term maintenance of the project
|
|
27
|
+
- ⚙️ maintain the website and continuous integration platform
|
|
28
|
+
- 🛣 Progress on the road-map
|
|
29
|
+
- 🐛 Quick responses to bug reports
|
|
30
|
+
- 🚀 New features & enhancements
|
|
31
|
+
- ⚖️ representing the node-opcua user community at the OPC Foundation
|
|
32
|
+
|
|
33
|
+
# Support
|
|
34
|
+
|
|
35
|
+
Technical Support is exclusively provided to registered members of the NodeOPCUA Subscription (https://support.sterfive.com) or through dedicated Professional Services.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
# License
|
|
39
|
+
|
|
40
|
+
Node-OPCUA is made available to you under the MIT open source license.
|
|
41
|
+
|
|
42
|
+
See [LICENSE](./LICENSE) for details.
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
# value-added extensions
|
|
46
|
+
|
|
47
|
+
Contact Sterfive SAS (mailto:contact@sterfive.com) for additional companion modules that are available to registered members:
|
|
48
|
+
|
|
49
|
+
- node-opcua-pub-sub : Part 14 implementation to develop OPC UA PubSub over MQTT applications
|
|
50
|
+
- node-opcua-webproxy: to operate node-opcua from within a web browser
|
|
51
|
+
- node-opcua-optimized-client: super-charge OPC UA Client
|
|
52
|
+
- react-components: a collection of React UI components
|
|
53
|
+
- aggregator: a powerful OPC UA aggregator that can combine and monitored hundred of servers and millions of variables.
|
|
54
|
+
- node-opcua-gds: a Global Discovery Server (Part 12)
|
|
55
|
+
- node-opcua-modeler-ex: a powerful NO-GUI OPC UA modeler
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
# Copyright
|
|
59
|
+
|
|
60
|
+
Copyright (c) 2022 Sterfive SAS
|
|
61
|
+
|
|
62
|
+
Copyright (c) 2014-2022 Etienne Rossignon
|
|
63
|
+
|
package/dist/index.d.ts
CHANGED
|
@@ -1,46 +1,47 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua
|
|
3
|
-
*/
|
|
4
|
-
export * from "node-opcua-common";
|
|
5
|
-
export { assert } from "node-opcua-assert";
|
|
6
|
-
export { BinaryStream } from "node-opcua-binary-stream";
|
|
7
|
-
export * from "node-opcua-utils";
|
|
8
|
-
export { NodeId, NodeIdLike, resolveNodeId, makeNodeId, coerceNodeId, sameNodeId, NodeIdType, ExpandedNodeId, makeExpandedNodeId, coerceExpandedNodeId } from "node-opcua-nodeid";
|
|
9
|
-
export { StatusCode, StatusCodes } from "node-opcua-status-code";
|
|
10
|
-
export { VariableTypeIds, VariableIds, MethodIds, ObjectIds, ObjectTypeIds, ReferenceTypeIds, DataTypeIds, AggregateFunction } from "node-opcua-constants";
|
|
11
|
-
export { DataType, Variant, VariantArrayType, buildVariantArray } from "node-opcua-variant";
|
|
12
|
-
export { DataValue, sameDataValue } from "node-opcua-data-value";
|
|
13
|
-
export { NumericRange } from "node-opcua-numeric-range";
|
|
14
|
-
export { AccessLevelFlag, makeAccessLevelFlag, LocalizedText, coerceLocalizedText, QualifiedName, coerceQualifiedName, NodeClass, NodeClassMask, AttributeIds, BrowseDirection } from "node-opcua-data-model";
|
|
15
|
-
export * from "node-opcua-basic-types";
|
|
16
|
-
export { standardUnits, makeEUInformation, Range } from "node-opcua-data-access";
|
|
17
|
-
export * from "node-opcua-hostname";
|
|
18
|
-
export * from "node-opcua-service-browse";
|
|
19
|
-
export * from "node-opcua-service-read";
|
|
20
|
-
export * from "node-opcua-service-write";
|
|
21
|
-
export * from "node-opcua-service-call";
|
|
22
|
-
export * from "node-opcua-service-session";
|
|
23
|
-
export * from "node-opcua-service-register-node";
|
|
24
|
-
export * from "node-opcua-service-endpoints";
|
|
25
|
-
export * from "node-opcua-service-subscription";
|
|
26
|
-
export * from "node-opcua-service-discovery";
|
|
27
|
-
export * from "node-opcua-service-secure-channel";
|
|
28
|
-
export * from "node-opcua-service-translate-browse-path";
|
|
29
|
-
export * from "node-opcua-service-query";
|
|
30
|
-
export * from "node-opcua-service-node-management";
|
|
31
|
-
export { DiagnosticInfo } from "node-opcua-data-model";
|
|
32
|
-
export { nodesets } from "node-opcua-nodesets";
|
|
33
|
-
export { get_empty_nodeset_filename, get_mini_nodeset_filename } from "node-opcua-address-space/testHelpers";
|
|
34
|
-
export * from "node-opcua-address-space/nodeJS";
|
|
35
|
-
export
|
|
36
|
-
export * from "node-opcua-client
|
|
37
|
-
export * from "node-opcua-client-
|
|
38
|
-
export
|
|
39
|
-
export
|
|
40
|
-
export * from "
|
|
41
|
-
export * from "node-opcua-
|
|
42
|
-
export
|
|
43
|
-
export {
|
|
44
|
-
export {
|
|
45
|
-
export
|
|
46
|
-
export
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua
|
|
3
|
+
*/
|
|
4
|
+
export * from "node-opcua-common";
|
|
5
|
+
export { assert } from "node-opcua-assert";
|
|
6
|
+
export { BinaryStream } from "node-opcua-binary-stream";
|
|
7
|
+
export * from "node-opcua-utils";
|
|
8
|
+
export { NodeId, NodeIdLike, resolveNodeId, makeNodeId, coerceNodeId, sameNodeId, NodeIdType, ExpandedNodeId, makeExpandedNodeId, coerceExpandedNodeId } from "node-opcua-nodeid";
|
|
9
|
+
export { StatusCode, StatusCodes } from "node-opcua-status-code";
|
|
10
|
+
export { VariableTypeIds, VariableIds, MethodIds, ObjectIds, ObjectTypeIds, ReferenceTypeIds, DataTypeIds, AggregateFunction } from "node-opcua-constants";
|
|
11
|
+
export { DataType, Variant, VariantArrayType, buildVariantArray } from "node-opcua-variant";
|
|
12
|
+
export { DataValue, sameDataValue } from "node-opcua-data-value";
|
|
13
|
+
export { NumericRange } from "node-opcua-numeric-range";
|
|
14
|
+
export { AccessLevelFlag, makeAccessLevelFlag, LocalizedText, coerceLocalizedText, QualifiedName, coerceQualifiedName, NodeClass, NodeClassMask, AttributeIds, BrowseDirection } from "node-opcua-data-model";
|
|
15
|
+
export * from "node-opcua-basic-types";
|
|
16
|
+
export { standardUnits, makeEUInformation, Range } from "node-opcua-data-access";
|
|
17
|
+
export * from "node-opcua-hostname";
|
|
18
|
+
export * from "node-opcua-service-browse";
|
|
19
|
+
export * from "node-opcua-service-read";
|
|
20
|
+
export * from "node-opcua-service-write";
|
|
21
|
+
export * from "node-opcua-service-call";
|
|
22
|
+
export * from "node-opcua-service-session";
|
|
23
|
+
export * from "node-opcua-service-register-node";
|
|
24
|
+
export * from "node-opcua-service-endpoints";
|
|
25
|
+
export * from "node-opcua-service-subscription";
|
|
26
|
+
export * from "node-opcua-service-discovery";
|
|
27
|
+
export * from "node-opcua-service-secure-channel";
|
|
28
|
+
export * from "node-opcua-service-translate-browse-path";
|
|
29
|
+
export * from "node-opcua-service-query";
|
|
30
|
+
export * from "node-opcua-service-node-management";
|
|
31
|
+
export { DiagnosticInfo } from "node-opcua-data-model";
|
|
32
|
+
export { nodesets } from "node-opcua-nodesets";
|
|
33
|
+
export { get_empty_nodeset_filename, get_mini_nodeset_filename } from "node-opcua-address-space/testHelpers";
|
|
34
|
+
export * from "node-opcua-address-space/nodeJS";
|
|
35
|
+
export { hexDump } from "node-opcua-debug";
|
|
36
|
+
export * from "node-opcua-client";
|
|
37
|
+
export * from "node-opcua-client-proxy";
|
|
38
|
+
export * from "node-opcua-client-crawler";
|
|
39
|
+
export { parseEndpointUrl, is_valid_endpointUrl } from "node-opcua-transport";
|
|
40
|
+
export * from "./server-stuff";
|
|
41
|
+
export * from "node-opcua-service-filter";
|
|
42
|
+
export * from "node-opcua-transport";
|
|
43
|
+
export { OPCUADiscoveryServer } from "node-opcua-server-discovery";
|
|
44
|
+
export { build_address_space_for_conformance_testing } from "node-opcua-address-space-for-conformance-testing";
|
|
45
|
+
export { install_optional_cpu_and_memory_usage_node } from "node-opcua-vendor-diagnostic";
|
|
46
|
+
export * from "node-opcua-aggregates";
|
|
47
|
+
export { makeBoiler } from "node-opcua-address-space/testHelpers";
|
package/dist/index.js
CHANGED
|
@@ -1,145 +1,146 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @module node-opcua
|
|
4
|
-
*/
|
|
5
|
-
// tslint:disable:max-line-length
|
|
6
|
-
// tslint:disable:no-var-requires
|
|
7
|
-
// tslint:disable:no-console
|
|
8
|
-
// tslint:disable:variable-name
|
|
9
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
12
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
13
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
14
|
-
}
|
|
15
|
-
Object.defineProperty(o, k2, desc);
|
|
16
|
-
}) : (function(o, m, k, k2) {
|
|
17
|
-
if (k2 === undefined) k2 = k;
|
|
18
|
-
o[k2] = m[k];
|
|
19
|
-
}));
|
|
20
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
21
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
22
|
-
};
|
|
23
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
-
exports.
|
|
25
|
-
exports.makeBoiler = void 0;
|
|
26
|
-
const chalk = require("chalk");
|
|
27
|
-
const semver = require("semver");
|
|
28
|
-
const minimumNodeVersionRequired = ">=8.0.0"; // minimum
|
|
29
|
-
// istanbul ignore next
|
|
30
|
-
if (typeof process === "object" && !semver.satisfies(process.version, minimumNodeVersionRequired)) {
|
|
31
|
-
console.log(chalk.cyan(`warning node-opcua: Required nodejs version ${minimumNodeVersionRequired} not satisfied with current nodejs version ${process.version}.`));
|
|
32
|
-
}
|
|
33
|
-
__exportStar(require("node-opcua-common"), exports);
|
|
34
|
-
var node_opcua_assert_1 = require("node-opcua-assert");
|
|
35
|
-
Object.defineProperty(exports, "assert", { enumerable: true, get: function () { return node_opcua_assert_1.assert; } });
|
|
36
|
-
var node_opcua_binary_stream_1 = require("node-opcua-binary-stream");
|
|
37
|
-
Object.defineProperty(exports, "BinaryStream", { enumerable: true, get: function () { return node_opcua_binary_stream_1.BinaryStream; } });
|
|
38
|
-
__exportStar(require("node-opcua-utils"), exports);
|
|
39
|
-
var node_opcua_nodeid_1 = require("node-opcua-nodeid");
|
|
40
|
-
Object.defineProperty(exports, "NodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.NodeId; } });
|
|
41
|
-
Object.defineProperty(exports, "resolveNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.resolveNodeId; } });
|
|
42
|
-
Object.defineProperty(exports, "makeNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeNodeId; } });
|
|
43
|
-
Object.defineProperty(exports, "coerceNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceNodeId; } });
|
|
44
|
-
Object.defineProperty(exports, "sameNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.sameNodeId; } });
|
|
45
|
-
Object.defineProperty(exports, "NodeIdType", { enumerable: true, get: function () { return node_opcua_nodeid_1.NodeIdType; } });
|
|
46
|
-
Object.defineProperty(exports, "ExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.ExpandedNodeId; } });
|
|
47
|
-
Object.defineProperty(exports, "makeExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeExpandedNodeId; } });
|
|
48
|
-
Object.defineProperty(exports, "coerceExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceExpandedNodeId; } });
|
|
49
|
-
var node_opcua_status_code_1 = require("node-opcua-status-code");
|
|
50
|
-
Object.defineProperty(exports, "StatusCode", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCode; } });
|
|
51
|
-
Object.defineProperty(exports, "StatusCodes", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCodes; } });
|
|
52
|
-
var node_opcua_constants_1 = require("node-opcua-constants");
|
|
53
|
-
Object.defineProperty(exports, "VariableTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.VariableTypeIds; } });
|
|
54
|
-
Object.defineProperty(exports, "VariableIds", { enumerable: true, get: function () { return node_opcua_constants_1.VariableIds; } });
|
|
55
|
-
Object.defineProperty(exports, "MethodIds", { enumerable: true, get: function () { return node_opcua_constants_1.MethodIds; } });
|
|
56
|
-
Object.defineProperty(exports, "ObjectIds", { enumerable: true, get: function () { return node_opcua_constants_1.ObjectIds; } });
|
|
57
|
-
Object.defineProperty(exports, "ObjectTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.ObjectTypeIds; } });
|
|
58
|
-
Object.defineProperty(exports, "ReferenceTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.ReferenceTypeIds; } });
|
|
59
|
-
Object.defineProperty(exports, "DataTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.DataTypeIds; } });
|
|
60
|
-
Object.defineProperty(exports, "AggregateFunction", { enumerable: true, get: function () { return node_opcua_constants_1.AggregateFunction; } });
|
|
61
|
-
var node_opcua_variant_1 = require("node-opcua-variant");
|
|
62
|
-
Object.defineProperty(exports, "DataType", { enumerable: true, get: function () { return node_opcua_variant_1.DataType; } });
|
|
63
|
-
Object.defineProperty(exports, "Variant", { enumerable: true, get: function () { return node_opcua_variant_1.Variant; } });
|
|
64
|
-
Object.defineProperty(exports, "VariantArrayType", { enumerable: true, get: function () { return node_opcua_variant_1.VariantArrayType; } });
|
|
65
|
-
Object.defineProperty(exports, "buildVariantArray", { enumerable: true, get: function () { return node_opcua_variant_1.buildVariantArray; } });
|
|
66
|
-
var node_opcua_data_value_1 = require("node-opcua-data-value");
|
|
67
|
-
Object.defineProperty(exports, "DataValue", { enumerable: true, get: function () { return node_opcua_data_value_1.DataValue; } });
|
|
68
|
-
Object.defineProperty(exports, "sameDataValue", { enumerable: true, get: function () { return node_opcua_data_value_1.sameDataValue; } });
|
|
69
|
-
var node_opcua_numeric_range_1 = require("node-opcua-numeric-range");
|
|
70
|
-
Object.defineProperty(exports, "NumericRange", { enumerable: true, get: function () { return node_opcua_numeric_range_1.NumericRange; } });
|
|
71
|
-
var node_opcua_data_model_1 = require("node-opcua-data-model");
|
|
72
|
-
Object.defineProperty(exports, "AccessLevelFlag", { enumerable: true, get: function () { return node_opcua_data_model_1.AccessLevelFlag; } });
|
|
73
|
-
Object.defineProperty(exports, "makeAccessLevelFlag", { enumerable: true, get: function () { return node_opcua_data_model_1.makeAccessLevelFlag; } });
|
|
74
|
-
Object.defineProperty(exports, "LocalizedText", { enumerable: true, get: function () { return node_opcua_data_model_1.LocalizedText; } });
|
|
75
|
-
Object.defineProperty(exports, "coerceLocalizedText", { enumerable: true, get: function () { return node_opcua_data_model_1.coerceLocalizedText; } });
|
|
76
|
-
Object.defineProperty(exports, "QualifiedName", { enumerable: true, get: function () { return node_opcua_data_model_1.QualifiedName; } });
|
|
77
|
-
Object.defineProperty(exports, "coerceQualifiedName", { enumerable: true, get: function () { return node_opcua_data_model_1.coerceQualifiedName; } });
|
|
78
|
-
Object.defineProperty(exports, "NodeClass", { enumerable: true, get: function () { return node_opcua_data_model_1.NodeClass; } });
|
|
79
|
-
Object.defineProperty(exports, "NodeClassMask", { enumerable: true, get: function () { return node_opcua_data_model_1.NodeClassMask; } });
|
|
80
|
-
Object.defineProperty(exports, "AttributeIds", { enumerable: true, get: function () { return node_opcua_data_model_1.AttributeIds; } });
|
|
81
|
-
Object.defineProperty(exports, "BrowseDirection", { enumerable: true, get: function () { return node_opcua_data_model_1.BrowseDirection; } });
|
|
82
|
-
// basic_types
|
|
83
|
-
__exportStar(require("node-opcua-basic-types"), exports);
|
|
84
|
-
// DA
|
|
85
|
-
var node_opcua_data_access_1 = require("node-opcua-data-access");
|
|
86
|
-
Object.defineProperty(exports, "standardUnits", { enumerable: true, get: function () { return node_opcua_data_access_1.standardUnits; } });
|
|
87
|
-
Object.defineProperty(exports, "makeEUInformation", { enumerable: true, get: function () { return node_opcua_data_access_1.makeEUInformation; } });
|
|
88
|
-
Object.defineProperty(exports, "Range", { enumerable: true, get: function () { return node_opcua_data_access_1.Range; } });
|
|
89
|
-
__exportStar(require("node-opcua-hostname"), exports);
|
|
90
|
-
// services
|
|
91
|
-
__exportStar(require("node-opcua-service-browse"), exports);
|
|
92
|
-
__exportStar(require("node-opcua-service-read"), exports);
|
|
93
|
-
__exportStar(require("node-opcua-service-write"), exports);
|
|
94
|
-
__exportStar(require("node-opcua-service-call"), exports);
|
|
95
|
-
__exportStar(require("node-opcua-service-session"), exports);
|
|
96
|
-
__exportStar(require("node-opcua-service-register-node"), exports);
|
|
97
|
-
__exportStar(require("node-opcua-service-endpoints"), exports);
|
|
98
|
-
__exportStar(require("node-opcua-service-subscription"), exports);
|
|
99
|
-
// export * from "node-opcua-service-history";
|
|
100
|
-
__exportStar(require("node-opcua-service-discovery"), exports);
|
|
101
|
-
__exportStar(require("node-opcua-service-secure-channel"), exports);
|
|
102
|
-
__exportStar(require("node-opcua-service-translate-browse-path"), exports);
|
|
103
|
-
__exportStar(require("node-opcua-service-query"), exports);
|
|
104
|
-
__exportStar(require("node-opcua-service-node-management"), exports);
|
|
105
|
-
var node_opcua_data_model_2 = require("node-opcua-data-model");
|
|
106
|
-
Object.defineProperty(exports, "DiagnosticInfo", { enumerable: true, get: function () { return node_opcua_data_model_2.DiagnosticInfo; } });
|
|
107
|
-
// -----------------------------------------------------------------------------
|
|
108
|
-
// Nodeset stuff
|
|
109
|
-
// -----------------------------------------------------------------------------
|
|
110
|
-
var node_opcua_nodesets_1 = require("node-opcua-nodesets");
|
|
111
|
-
Object.defineProperty(exports, "nodesets", { enumerable: true, get: function () { return node_opcua_nodesets_1.nodesets; } });
|
|
112
|
-
// an incomplete but sufficient nodeset file used during testing
|
|
113
|
-
var testHelpers_1 = require("node-opcua-address-space/testHelpers");
|
|
114
|
-
Object.defineProperty(exports, "get_empty_nodeset_filename", { enumerable: true, get: function () { return testHelpers_1.get_empty_nodeset_filename; } });
|
|
115
|
-
Object.defineProperty(exports, "get_mini_nodeset_filename", { enumerable: true, get: function () { return testHelpers_1.get_mini_nodeset_filename; } });
|
|
116
|
-
__exportStar(require("node-opcua-address-space/nodeJS"), exports);
|
|
117
|
-
module.exports.utils = require("node-opcua-utils");
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
//
|
|
121
|
-
//
|
|
122
|
-
|
|
123
|
-
__exportStar(require("node-opcua-client
|
|
124
|
-
__exportStar(require("node-opcua-client-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
Object.defineProperty(exports, "
|
|
128
|
-
|
|
129
|
-
//
|
|
130
|
-
//
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module node-opcua
|
|
4
|
+
*/
|
|
5
|
+
// tslint:disable:max-line-length
|
|
6
|
+
// tslint:disable:no-var-requires
|
|
7
|
+
// tslint:disable:no-console
|
|
8
|
+
// tslint:disable:variable-name
|
|
9
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
12
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
13
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
}) : (function(o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
}));
|
|
20
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
21
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
22
|
+
};
|
|
23
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
24
|
+
exports.build_address_space_for_conformance_testing = exports.OPCUADiscoveryServer = exports.is_valid_endpointUrl = exports.parseEndpointUrl = exports.hexDump = exports.get_mini_nodeset_filename = exports.get_empty_nodeset_filename = exports.nodesets = exports.DiagnosticInfo = exports.Range = exports.makeEUInformation = exports.standardUnits = exports.BrowseDirection = exports.AttributeIds = exports.NodeClassMask = exports.NodeClass = exports.coerceQualifiedName = exports.QualifiedName = exports.coerceLocalizedText = exports.LocalizedText = exports.makeAccessLevelFlag = exports.AccessLevelFlag = exports.NumericRange = exports.sameDataValue = exports.DataValue = exports.buildVariantArray = exports.VariantArrayType = exports.Variant = exports.DataType = exports.AggregateFunction = exports.DataTypeIds = exports.ReferenceTypeIds = exports.ObjectTypeIds = exports.ObjectIds = exports.MethodIds = exports.VariableIds = exports.VariableTypeIds = exports.StatusCodes = exports.StatusCode = exports.coerceExpandedNodeId = exports.makeExpandedNodeId = exports.ExpandedNodeId = exports.NodeIdType = exports.sameNodeId = exports.coerceNodeId = exports.makeNodeId = exports.resolveNodeId = exports.NodeId = exports.BinaryStream = exports.assert = void 0;
|
|
25
|
+
exports.makeBoiler = exports.install_optional_cpu_and_memory_usage_node = void 0;
|
|
26
|
+
const chalk = require("chalk");
|
|
27
|
+
const semver = require("semver");
|
|
28
|
+
const minimumNodeVersionRequired = ">=8.0.0"; // minimum
|
|
29
|
+
// istanbul ignore next
|
|
30
|
+
if (typeof process === "object" && !semver.satisfies(process.version, minimumNodeVersionRequired)) {
|
|
31
|
+
console.log(chalk.cyan(`warning node-opcua: Required nodejs version ${minimumNodeVersionRequired} not satisfied with current nodejs version ${process.version}.`));
|
|
32
|
+
}
|
|
33
|
+
__exportStar(require("node-opcua-common"), exports);
|
|
34
|
+
var node_opcua_assert_1 = require("node-opcua-assert");
|
|
35
|
+
Object.defineProperty(exports, "assert", { enumerable: true, get: function () { return node_opcua_assert_1.assert; } });
|
|
36
|
+
var node_opcua_binary_stream_1 = require("node-opcua-binary-stream");
|
|
37
|
+
Object.defineProperty(exports, "BinaryStream", { enumerable: true, get: function () { return node_opcua_binary_stream_1.BinaryStream; } });
|
|
38
|
+
__exportStar(require("node-opcua-utils"), exports);
|
|
39
|
+
var node_opcua_nodeid_1 = require("node-opcua-nodeid");
|
|
40
|
+
Object.defineProperty(exports, "NodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.NodeId; } });
|
|
41
|
+
Object.defineProperty(exports, "resolveNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.resolveNodeId; } });
|
|
42
|
+
Object.defineProperty(exports, "makeNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeNodeId; } });
|
|
43
|
+
Object.defineProperty(exports, "coerceNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceNodeId; } });
|
|
44
|
+
Object.defineProperty(exports, "sameNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.sameNodeId; } });
|
|
45
|
+
Object.defineProperty(exports, "NodeIdType", { enumerable: true, get: function () { return node_opcua_nodeid_1.NodeIdType; } });
|
|
46
|
+
Object.defineProperty(exports, "ExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.ExpandedNodeId; } });
|
|
47
|
+
Object.defineProperty(exports, "makeExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeExpandedNodeId; } });
|
|
48
|
+
Object.defineProperty(exports, "coerceExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceExpandedNodeId; } });
|
|
49
|
+
var node_opcua_status_code_1 = require("node-opcua-status-code");
|
|
50
|
+
Object.defineProperty(exports, "StatusCode", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCode; } });
|
|
51
|
+
Object.defineProperty(exports, "StatusCodes", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCodes; } });
|
|
52
|
+
var node_opcua_constants_1 = require("node-opcua-constants");
|
|
53
|
+
Object.defineProperty(exports, "VariableTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.VariableTypeIds; } });
|
|
54
|
+
Object.defineProperty(exports, "VariableIds", { enumerable: true, get: function () { return node_opcua_constants_1.VariableIds; } });
|
|
55
|
+
Object.defineProperty(exports, "MethodIds", { enumerable: true, get: function () { return node_opcua_constants_1.MethodIds; } });
|
|
56
|
+
Object.defineProperty(exports, "ObjectIds", { enumerable: true, get: function () { return node_opcua_constants_1.ObjectIds; } });
|
|
57
|
+
Object.defineProperty(exports, "ObjectTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.ObjectTypeIds; } });
|
|
58
|
+
Object.defineProperty(exports, "ReferenceTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.ReferenceTypeIds; } });
|
|
59
|
+
Object.defineProperty(exports, "DataTypeIds", { enumerable: true, get: function () { return node_opcua_constants_1.DataTypeIds; } });
|
|
60
|
+
Object.defineProperty(exports, "AggregateFunction", { enumerable: true, get: function () { return node_opcua_constants_1.AggregateFunction; } });
|
|
61
|
+
var node_opcua_variant_1 = require("node-opcua-variant");
|
|
62
|
+
Object.defineProperty(exports, "DataType", { enumerable: true, get: function () { return node_opcua_variant_1.DataType; } });
|
|
63
|
+
Object.defineProperty(exports, "Variant", { enumerable: true, get: function () { return node_opcua_variant_1.Variant; } });
|
|
64
|
+
Object.defineProperty(exports, "VariantArrayType", { enumerable: true, get: function () { return node_opcua_variant_1.VariantArrayType; } });
|
|
65
|
+
Object.defineProperty(exports, "buildVariantArray", { enumerable: true, get: function () { return node_opcua_variant_1.buildVariantArray; } });
|
|
66
|
+
var node_opcua_data_value_1 = require("node-opcua-data-value");
|
|
67
|
+
Object.defineProperty(exports, "DataValue", { enumerable: true, get: function () { return node_opcua_data_value_1.DataValue; } });
|
|
68
|
+
Object.defineProperty(exports, "sameDataValue", { enumerable: true, get: function () { return node_opcua_data_value_1.sameDataValue; } });
|
|
69
|
+
var node_opcua_numeric_range_1 = require("node-opcua-numeric-range");
|
|
70
|
+
Object.defineProperty(exports, "NumericRange", { enumerable: true, get: function () { return node_opcua_numeric_range_1.NumericRange; } });
|
|
71
|
+
var node_opcua_data_model_1 = require("node-opcua-data-model");
|
|
72
|
+
Object.defineProperty(exports, "AccessLevelFlag", { enumerable: true, get: function () { return node_opcua_data_model_1.AccessLevelFlag; } });
|
|
73
|
+
Object.defineProperty(exports, "makeAccessLevelFlag", { enumerable: true, get: function () { return node_opcua_data_model_1.makeAccessLevelFlag; } });
|
|
74
|
+
Object.defineProperty(exports, "LocalizedText", { enumerable: true, get: function () { return node_opcua_data_model_1.LocalizedText; } });
|
|
75
|
+
Object.defineProperty(exports, "coerceLocalizedText", { enumerable: true, get: function () { return node_opcua_data_model_1.coerceLocalizedText; } });
|
|
76
|
+
Object.defineProperty(exports, "QualifiedName", { enumerable: true, get: function () { return node_opcua_data_model_1.QualifiedName; } });
|
|
77
|
+
Object.defineProperty(exports, "coerceQualifiedName", { enumerable: true, get: function () { return node_opcua_data_model_1.coerceQualifiedName; } });
|
|
78
|
+
Object.defineProperty(exports, "NodeClass", { enumerable: true, get: function () { return node_opcua_data_model_1.NodeClass; } });
|
|
79
|
+
Object.defineProperty(exports, "NodeClassMask", { enumerable: true, get: function () { return node_opcua_data_model_1.NodeClassMask; } });
|
|
80
|
+
Object.defineProperty(exports, "AttributeIds", { enumerable: true, get: function () { return node_opcua_data_model_1.AttributeIds; } });
|
|
81
|
+
Object.defineProperty(exports, "BrowseDirection", { enumerable: true, get: function () { return node_opcua_data_model_1.BrowseDirection; } });
|
|
82
|
+
// basic_types
|
|
83
|
+
__exportStar(require("node-opcua-basic-types"), exports);
|
|
84
|
+
// DA
|
|
85
|
+
var node_opcua_data_access_1 = require("node-opcua-data-access");
|
|
86
|
+
Object.defineProperty(exports, "standardUnits", { enumerable: true, get: function () { return node_opcua_data_access_1.standardUnits; } });
|
|
87
|
+
Object.defineProperty(exports, "makeEUInformation", { enumerable: true, get: function () { return node_opcua_data_access_1.makeEUInformation; } });
|
|
88
|
+
Object.defineProperty(exports, "Range", { enumerable: true, get: function () { return node_opcua_data_access_1.Range; } });
|
|
89
|
+
__exportStar(require("node-opcua-hostname"), exports);
|
|
90
|
+
// services
|
|
91
|
+
__exportStar(require("node-opcua-service-browse"), exports);
|
|
92
|
+
__exportStar(require("node-opcua-service-read"), exports);
|
|
93
|
+
__exportStar(require("node-opcua-service-write"), exports);
|
|
94
|
+
__exportStar(require("node-opcua-service-call"), exports);
|
|
95
|
+
__exportStar(require("node-opcua-service-session"), exports);
|
|
96
|
+
__exportStar(require("node-opcua-service-register-node"), exports);
|
|
97
|
+
__exportStar(require("node-opcua-service-endpoints"), exports);
|
|
98
|
+
__exportStar(require("node-opcua-service-subscription"), exports);
|
|
99
|
+
// export * from "node-opcua-service-history";
|
|
100
|
+
__exportStar(require("node-opcua-service-discovery"), exports);
|
|
101
|
+
__exportStar(require("node-opcua-service-secure-channel"), exports);
|
|
102
|
+
__exportStar(require("node-opcua-service-translate-browse-path"), exports);
|
|
103
|
+
__exportStar(require("node-opcua-service-query"), exports);
|
|
104
|
+
__exportStar(require("node-opcua-service-node-management"), exports);
|
|
105
|
+
var node_opcua_data_model_2 = require("node-opcua-data-model");
|
|
106
|
+
Object.defineProperty(exports, "DiagnosticInfo", { enumerable: true, get: function () { return node_opcua_data_model_2.DiagnosticInfo; } });
|
|
107
|
+
// -----------------------------------------------------------------------------
|
|
108
|
+
// Nodeset stuff
|
|
109
|
+
// -----------------------------------------------------------------------------
|
|
110
|
+
var node_opcua_nodesets_1 = require("node-opcua-nodesets");
|
|
111
|
+
Object.defineProperty(exports, "nodesets", { enumerable: true, get: function () { return node_opcua_nodesets_1.nodesets; } });
|
|
112
|
+
// an incomplete but sufficient nodeset file used during testing
|
|
113
|
+
var testHelpers_1 = require("node-opcua-address-space/testHelpers");
|
|
114
|
+
Object.defineProperty(exports, "get_empty_nodeset_filename", { enumerable: true, get: function () { return testHelpers_1.get_empty_nodeset_filename; } });
|
|
115
|
+
Object.defineProperty(exports, "get_mini_nodeset_filename", { enumerable: true, get: function () { return testHelpers_1.get_mini_nodeset_filename; } });
|
|
116
|
+
__exportStar(require("node-opcua-address-space/nodeJS"), exports);
|
|
117
|
+
module.exports.utils = require("node-opcua-utils");
|
|
118
|
+
var node_opcua_debug_1 = require("node-opcua-debug");
|
|
119
|
+
Object.defineProperty(exports, "hexDump", { enumerable: true, get: function () { return node_opcua_debug_1.hexDump; } });
|
|
120
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
121
|
+
// client services
|
|
122
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
123
|
+
__exportStar(require("node-opcua-client"), exports);
|
|
124
|
+
__exportStar(require("node-opcua-client-proxy"), exports);
|
|
125
|
+
__exportStar(require("node-opcua-client-crawler"), exports);
|
|
126
|
+
var node_opcua_transport_1 = require("node-opcua-transport");
|
|
127
|
+
Object.defineProperty(exports, "parseEndpointUrl", { enumerable: true, get: function () { return node_opcua_transport_1.parseEndpointUrl; } });
|
|
128
|
+
Object.defineProperty(exports, "is_valid_endpointUrl", { enumerable: true, get: function () { return node_opcua_transport_1.is_valid_endpointUrl; } });
|
|
129
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
130
|
+
// server management
|
|
131
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
132
|
+
__exportStar(require("./server-stuff"), exports);
|
|
133
|
+
// filtering tools
|
|
134
|
+
__exportStar(require("node-opcua-service-filter"), exports);
|
|
135
|
+
// filtering tools
|
|
136
|
+
__exportStar(require("node-opcua-transport"), exports);
|
|
137
|
+
var node_opcua_server_discovery_1 = require("node-opcua-server-discovery");
|
|
138
|
+
Object.defineProperty(exports, "OPCUADiscoveryServer", { enumerable: true, get: function () { return node_opcua_server_discovery_1.OPCUADiscoveryServer; } });
|
|
139
|
+
var node_opcua_address_space_for_conformance_testing_1 = require("node-opcua-address-space-for-conformance-testing");
|
|
140
|
+
Object.defineProperty(exports, "build_address_space_for_conformance_testing", { enumerable: true, get: function () { return node_opcua_address_space_for_conformance_testing_1.build_address_space_for_conformance_testing; } });
|
|
141
|
+
var node_opcua_vendor_diagnostic_1 = require("node-opcua-vendor-diagnostic");
|
|
142
|
+
Object.defineProperty(exports, "install_optional_cpu_and_memory_usage_node", { enumerable: true, get: function () { return node_opcua_vendor_diagnostic_1.install_optional_cpu_and_memory_usage_node; } });
|
|
143
|
+
__exportStar(require("node-opcua-aggregates"), exports);
|
|
144
|
+
var testHelpers_2 = require("node-opcua-address-space/testHelpers");
|
|
145
|
+
Object.defineProperty(exports, "makeBoiler", { enumerable: true, get: function () { return testHelpers_2.makeBoiler; } });
|
|
145
146
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";AAAA;;GAEG;AACH,iCAAiC;AACjC,iCAAiC;AACjC,4BAA4B;AAC5B,+BAA+B;;;;;;;;;;;;;;;;;;AAE/B,+BAA+B;AAE/B,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;AACjC,MAAM,0BAA0B,GAAG,SAAS,CAAC,CAAC,UAAU;AAExD,uBAAuB;AACvB,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,0BAA0B,CAAC,EAAE;IAC/F,OAAO,CAAC,GAAG,CACP,KAAK,CAAC,IAAI,CACN,+CAA+C,0BAA0B,8CAA8C,OAAO,CAAC,OAAO,GAAG,CAC5I,CACJ,CAAC;CACL;AAED,oDAAkC;AAElC,uDAA2C;AAAlC,2GAAA,MAAM,OAAA;AACf,qEAAwD;AAA/C,wHAAA,YAAY,OAAA;AAErB,mDAAiC;AAEjC,uDAW2B;AAVvB,2GAAA,MAAM,OAAA;AAEN,kHAAA,aAAa,OAAA;AACb,+GAAA,UAAU,OAAA;AACV,iHAAA,YAAY,OAAA;AACZ,+GAAA,UAAU,OAAA;AACV,+GAAA,UAAU,OAAA;AACV,mHAAA,cAAc,OAAA;AACd,uHAAA,kBAAkB,OAAA;AAClB,yHAAA,oBAAoB,OAAA;AAGxB,iEAAiE;AAAxD,oHAAA,UAAU,OAAA;AAAE,qHAAA,WAAW,OAAA;AAChC,6DAS8B;AAR1B,uHAAA,eAAe,OAAA;AACf,mHAAA,WAAW,OAAA;AACX,iHAAA,SAAS,OAAA;AACT,iHAAA,SAAS,OAAA;AACT,qHAAA,aAAa,OAAA;AACb,wHAAA,gBAAgB,OAAA;AAChB,mHAAA,WAAW,OAAA;AACX,yHAAA,iBAAiB,OAAA;AAGrB,yDAA4F;AAAnF,8GAAA,QAAQ,OAAA;AAAE,6GAAA,OAAO,OAAA;AAAE,sHAAA,gBAAgB,OAAA;AAAE,uHAAA,iBAAiB,OAAA;AAC/D,+DAAiE;AAAxD,kHAAA,SAAS,OAAA;AAAE,sHAAA,aAAa,OAAA;AACjC,qEAAwD;AAA/C,wHAAA,YAAY,OAAA;AAErB,+DAW+B;AAV3B,wHAAA,eAAe,OAAA;AACf,4HAAA,mBAAmB,OAAA;AACnB,sHAAA,aAAa,OAAA;AACb,4HAAA,mBAAmB,OAAA;AACnB,sHAAA,aAAa,OAAA;AACb,4HAAA,mBAAmB,OAAA;AACnB,kHAAA,SAAS,OAAA;AACT,sHAAA,aAAa,OAAA;AACb,qHAAA,YAAY,OAAA;AACZ,wHAAA,eAAe,OAAA;AAGnB,cAAc;AACd,yDAAuC;AAEvC,KAAK;AACL,iEAAiF;AAAxE,uHAAA,aAAa,OAAA;AAAE,2HAAA,iBAAiB,OAAA;AAAE,+GAAA,KAAK,OAAA;AAChD,sDAAoC;AAEpC,WAAW;AACX,4DAA0C;AAC1C,0DAAwC;AACxC,2DAAyC;AACzC,0DAAwC;AACxC,6DAA2C;AAC3C,mEAAiD;AACjD,+DAA6C;AAC7C,kEAAgD;AAChD,8CAA8C;AAC9C,+DAA6C;AAC7C,oEAAkD;AAClD,2EAAyD;AACzD,2DAAyC;AACzC,qEAAmD;AACnD,+DAAuD;AAA9C,uHAAA,cAAc,OAAA;AAEvB,gFAAgF;AAChF,gBAAgB;AAChB,gFAAgF;AAChF,2DAA+C;AAAtC,+GAAA,QAAQ,OAAA;AACjB,gEAAgE;AAChE,oEAA6G;AAApG,yHAAA,0BAA0B,OAAA;AAAE,wHAAA,yBAAyB,OAAA;AAC9D,kEAAgD;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":";AAAA;;GAEG;AACH,iCAAiC;AACjC,iCAAiC;AACjC,4BAA4B;AAC5B,+BAA+B;;;;;;;;;;;;;;;;;;AAE/B,+BAA+B;AAE/B,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC,CAAC;AACjC,MAAM,0BAA0B,GAAG,SAAS,CAAC,CAAC,UAAU;AAExD,uBAAuB;AACvB,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,OAAO,EAAE,0BAA0B,CAAC,EAAE;IAC/F,OAAO,CAAC,GAAG,CACP,KAAK,CAAC,IAAI,CACN,+CAA+C,0BAA0B,8CAA8C,OAAO,CAAC,OAAO,GAAG,CAC5I,CACJ,CAAC;CACL;AAED,oDAAkC;AAElC,uDAA2C;AAAlC,2GAAA,MAAM,OAAA;AACf,qEAAwD;AAA/C,wHAAA,YAAY,OAAA;AAErB,mDAAiC;AAEjC,uDAW2B;AAVvB,2GAAA,MAAM,OAAA;AAEN,kHAAA,aAAa,OAAA;AACb,+GAAA,UAAU,OAAA;AACV,iHAAA,YAAY,OAAA;AACZ,+GAAA,UAAU,OAAA;AACV,+GAAA,UAAU,OAAA;AACV,mHAAA,cAAc,OAAA;AACd,uHAAA,kBAAkB,OAAA;AAClB,yHAAA,oBAAoB,OAAA;AAGxB,iEAAiE;AAAxD,oHAAA,UAAU,OAAA;AAAE,qHAAA,WAAW,OAAA;AAChC,6DAS8B;AAR1B,uHAAA,eAAe,OAAA;AACf,mHAAA,WAAW,OAAA;AACX,iHAAA,SAAS,OAAA;AACT,iHAAA,SAAS,OAAA;AACT,qHAAA,aAAa,OAAA;AACb,wHAAA,gBAAgB,OAAA;AAChB,mHAAA,WAAW,OAAA;AACX,yHAAA,iBAAiB,OAAA;AAGrB,yDAA4F;AAAnF,8GAAA,QAAQ,OAAA;AAAE,6GAAA,OAAO,OAAA;AAAE,sHAAA,gBAAgB,OAAA;AAAE,uHAAA,iBAAiB,OAAA;AAC/D,+DAAiE;AAAxD,kHAAA,SAAS,OAAA;AAAE,sHAAA,aAAa,OAAA;AACjC,qEAAwD;AAA/C,wHAAA,YAAY,OAAA;AAErB,+DAW+B;AAV3B,wHAAA,eAAe,OAAA;AACf,4HAAA,mBAAmB,OAAA;AACnB,sHAAA,aAAa,OAAA;AACb,4HAAA,mBAAmB,OAAA;AACnB,sHAAA,aAAa,OAAA;AACb,4HAAA,mBAAmB,OAAA;AACnB,kHAAA,SAAS,OAAA;AACT,sHAAA,aAAa,OAAA;AACb,qHAAA,YAAY,OAAA;AACZ,wHAAA,eAAe,OAAA;AAGnB,cAAc;AACd,yDAAuC;AAEvC,KAAK;AACL,iEAAiF;AAAxE,uHAAA,aAAa,OAAA;AAAE,2HAAA,iBAAiB,OAAA;AAAE,+GAAA,KAAK,OAAA;AAChD,sDAAoC;AAEpC,WAAW;AACX,4DAA0C;AAC1C,0DAAwC;AACxC,2DAAyC;AACzC,0DAAwC;AACxC,6DAA2C;AAC3C,mEAAiD;AACjD,+DAA6C;AAC7C,kEAAgD;AAChD,8CAA8C;AAC9C,+DAA6C;AAC7C,oEAAkD;AAClD,2EAAyD;AACzD,2DAAyC;AACzC,qEAAmD;AACnD,+DAAuD;AAA9C,uHAAA,cAAc,OAAA;AAEvB,gFAAgF;AAChF,gBAAgB;AAChB,gFAAgF;AAChF,2DAA+C;AAAtC,+GAAA,QAAQ,OAAA;AACjB,gEAAgE;AAChE,oEAA6G;AAApG,yHAAA,0BAA0B,OAAA;AAAE,wHAAA,yBAAyB,OAAA;AAC9D,kEAAgD;AAEhD,MAAM,CAAC,OAAO,CAAC,KAAK,GAAG,OAAO,CAAC,kBAAkB,CAAC,CAAC;AACnD,qDAA2C;AAAlC,2GAAA,OAAO,OAAA;AAEhB,6GAA6G;AAC7G,kBAAkB;AAClB,6GAA6G;AAC7G,oDAAkC;AAClC,0DAAwC;AACxC,4DAA0C;AAC1C,6DAA8E;AAArE,wHAAA,gBAAgB,OAAA;AAAE,4HAAA,oBAAoB,OAAA;AAE/C,6GAA6G;AAC7G,oBAAoB;AACpB,6GAA6G;AAC7G,iDAA+B;AAC/B,kBAAkB;AAClB,4DAA0C;AAE1C,kBAAkB;AAClB,uDAAqC;AAErC,2EAAmE;AAA1D,mIAAA,oBAAoB,OAAA;AAE7B,qHAA+G;AAAtG,+KAAA,2CAA2C,OAAA;AACpD,6EAA0F;AAAjF,0JAAA,0CAA0C,OAAA;AAEnD,wDAAsC;AACtC,oEAAkE;AAAzD,yGAAA,UAAU,OAAA"}
|
package/dist/server-stuff.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua
|
|
3
|
-
*/
|
|
4
|
-
export * from "node-opcua-certificate-manager";
|
|
5
|
-
export * from "node-opcua-address-space";
|
|
6
|
-
export * from "node-opcua-server";
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua
|
|
3
|
+
*/
|
|
4
|
+
export * from "node-opcua-certificate-manager";
|
|
5
|
+
export * from "node-opcua-address-space";
|
|
6
|
+
export * from "node-opcua-server";
|
package/dist/server-stuff.js
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
/**
|
|
18
|
-
* @module node-opcua
|
|
19
|
-
*/
|
|
20
|
-
__exportStar(require("node-opcua-certificate-manager"), exports);
|
|
21
|
-
__exportStar(require("node-opcua-address-space"), exports);
|
|
22
|
-
__exportStar(require("node-opcua-server"), exports);
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
/**
|
|
18
|
+
* @module node-opcua
|
|
19
|
+
*/
|
|
20
|
+
__exportStar(require("node-opcua-certificate-manager"), exports);
|
|
21
|
+
__exportStar(require("node-opcua-address-space"), exports);
|
|
22
|
+
__exportStar(require("node-opcua-server"), exports);
|
|
23
23
|
//# sourceMappingURL=server-stuff.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.76.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module ",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -13,54 +13,54 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"chalk": "4.1.2",
|
|
16
|
-
"node-opcua-address-space": "2.
|
|
17
|
-
"node-opcua-address-space-for-conformance-testing": "2.
|
|
18
|
-
"node-opcua-aggregates": "2.
|
|
19
|
-
"node-opcua-assert": "2.
|
|
20
|
-
"node-opcua-basic-types": "2.
|
|
21
|
-
"node-opcua-binary-stream": "2.
|
|
22
|
-
"node-opcua-certificate-manager": "2.
|
|
23
|
-
"node-opcua-client": "2.
|
|
24
|
-
"node-opcua-client-crawler": "2.
|
|
25
|
-
"node-opcua-client-proxy": "2.
|
|
26
|
-
"node-opcua-common": "2.
|
|
27
|
-
"node-opcua-constants": "2.
|
|
16
|
+
"node-opcua-address-space": "2.76.0",
|
|
17
|
+
"node-opcua-address-space-for-conformance-testing": "2.76.0",
|
|
18
|
+
"node-opcua-aggregates": "2.76.0",
|
|
19
|
+
"node-opcua-assert": "2.76.0",
|
|
20
|
+
"node-opcua-basic-types": "2.76.0",
|
|
21
|
+
"node-opcua-binary-stream": "2.76.0",
|
|
22
|
+
"node-opcua-certificate-manager": "2.76.0",
|
|
23
|
+
"node-opcua-client": "2.76.0",
|
|
24
|
+
"node-opcua-client-crawler": "2.76.0",
|
|
25
|
+
"node-opcua-client-proxy": "2.76.0",
|
|
26
|
+
"node-opcua-common": "2.76.0",
|
|
27
|
+
"node-opcua-constants": "2.74.0",
|
|
28
28
|
"node-opcua-crypto": "^1.11.0",
|
|
29
|
-
"node-opcua-data-access": "2.
|
|
30
|
-
"node-opcua-data-model": "2.
|
|
31
|
-
"node-opcua-data-value": "2.
|
|
32
|
-
"node-opcua-debug": "2.
|
|
33
|
-
"node-opcua-enum": "2.
|
|
34
|
-
"node-opcua-factory": "2.
|
|
35
|
-
"node-opcua-hostname": "2.
|
|
36
|
-
"node-opcua-nodeid": "2.
|
|
37
|
-
"node-opcua-nodesets": "2.
|
|
38
|
-
"node-opcua-numeric-range": "2.
|
|
39
|
-
"node-opcua-packet-analyzer": "2.
|
|
40
|
-
"node-opcua-secure-channel": "2.
|
|
41
|
-
"node-opcua-server": "2.
|
|
42
|
-
"node-opcua-server-discovery": "2.
|
|
43
|
-
"node-opcua-service-browse": "2.
|
|
44
|
-
"node-opcua-service-call": "2.
|
|
45
|
-
"node-opcua-service-discovery": "2.
|
|
46
|
-
"node-opcua-service-endpoints": "2.
|
|
47
|
-
"node-opcua-service-filter": "2.
|
|
48
|
-
"node-opcua-service-history": "2.
|
|
49
|
-
"node-opcua-service-node-management": "2.
|
|
50
|
-
"node-opcua-service-query": "2.
|
|
51
|
-
"node-opcua-service-read": "2.
|
|
52
|
-
"node-opcua-service-register-node": "2.
|
|
53
|
-
"node-opcua-service-secure-channel": "2.
|
|
54
|
-
"node-opcua-service-session": "2.
|
|
55
|
-
"node-opcua-service-subscription": "2.
|
|
56
|
-
"node-opcua-service-translate-browse-path": "2.
|
|
57
|
-
"node-opcua-service-write": "2.
|
|
58
|
-
"node-opcua-status-code": "2.
|
|
59
|
-
"node-opcua-transport": "2.
|
|
60
|
-
"node-opcua-types": "2.
|
|
61
|
-
"node-opcua-utils": "2.
|
|
62
|
-
"node-opcua-variant": "2.
|
|
63
|
-
"node-opcua-vendor-diagnostic": "2.
|
|
29
|
+
"node-opcua-data-access": "2.76.0",
|
|
30
|
+
"node-opcua-data-model": "2.76.0",
|
|
31
|
+
"node-opcua-data-value": "2.76.0",
|
|
32
|
+
"node-opcua-debug": "2.76.0",
|
|
33
|
+
"node-opcua-enum": "2.76.0",
|
|
34
|
+
"node-opcua-factory": "2.76.0",
|
|
35
|
+
"node-opcua-hostname": "2.76.0",
|
|
36
|
+
"node-opcua-nodeid": "2.76.0",
|
|
37
|
+
"node-opcua-nodesets": "2.74.0",
|
|
38
|
+
"node-opcua-numeric-range": "2.76.0",
|
|
39
|
+
"node-opcua-packet-analyzer": "2.76.0",
|
|
40
|
+
"node-opcua-secure-channel": "2.76.0",
|
|
41
|
+
"node-opcua-server": "2.76.0",
|
|
42
|
+
"node-opcua-server-discovery": "2.76.0",
|
|
43
|
+
"node-opcua-service-browse": "2.76.0",
|
|
44
|
+
"node-opcua-service-call": "2.76.0",
|
|
45
|
+
"node-opcua-service-discovery": "2.76.0",
|
|
46
|
+
"node-opcua-service-endpoints": "2.76.0",
|
|
47
|
+
"node-opcua-service-filter": "2.76.0",
|
|
48
|
+
"node-opcua-service-history": "2.76.0",
|
|
49
|
+
"node-opcua-service-node-management": "2.76.0",
|
|
50
|
+
"node-opcua-service-query": "2.76.0",
|
|
51
|
+
"node-opcua-service-read": "2.76.0",
|
|
52
|
+
"node-opcua-service-register-node": "2.76.0",
|
|
53
|
+
"node-opcua-service-secure-channel": "2.76.0",
|
|
54
|
+
"node-opcua-service-session": "2.76.0",
|
|
55
|
+
"node-opcua-service-subscription": "2.76.0",
|
|
56
|
+
"node-opcua-service-translate-browse-path": "2.76.0",
|
|
57
|
+
"node-opcua-service-write": "2.76.0",
|
|
58
|
+
"node-opcua-status-code": "2.76.0",
|
|
59
|
+
"node-opcua-transport": "2.76.0",
|
|
60
|
+
"node-opcua-types": "2.76.0",
|
|
61
|
+
"node-opcua-utils": "2.76.0",
|
|
62
|
+
"node-opcua-variant": "2.76.0",
|
|
63
|
+
"node-opcua-vendor-diagnostic": "2.76.0",
|
|
64
64
|
"semver": "^7.3.7"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
@@ -84,5 +84,5 @@
|
|
|
84
84
|
"url": "https://github.com/sponsors/erossignon"
|
|
85
85
|
},
|
|
86
86
|
"homepage": "http://node-opcua.github.io/",
|
|
87
|
-
"gitHead": "
|
|
87
|
+
"gitHead": "75d9b8cf894c8fbadf77d2c4a48a730d055465e7"
|
|
88
88
|
}
|
package/source/index.ts
CHANGED
|
@@ -100,8 +100,9 @@ export { nodesets } from "node-opcua-nodesets";
|
|
|
100
100
|
// an incomplete but sufficient nodeset file used during testing
|
|
101
101
|
export { get_empty_nodeset_filename, get_mini_nodeset_filename } from "node-opcua-address-space/testHelpers";
|
|
102
102
|
export * from "node-opcua-address-space/nodeJS";
|
|
103
|
+
|
|
103
104
|
module.exports.utils = require("node-opcua-utils");
|
|
104
|
-
|
|
105
|
+
export { hexDump } from "node-opcua-debug";
|
|
105
106
|
|
|
106
107
|
// ----------------------------------------------------------------------------------------------------------
|
|
107
108
|
// client services
|