node-opcua 2.64.1 → 2.66.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/index.d.ts +46 -46
- package/dist/index.js +144 -140
- package/dist/index.js.map +1 -1
- package/dist/server-stuff.d.ts +6 -6
- package/dist/server-stuff.js +22 -18
- package/dist/server-stuff.js.map +1 -1
- package/package.json +51 -51
package/dist/index.d.ts
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
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 * from "node-opcua-client";
|
|
36
|
-
export * from "node-opcua-client-proxy";
|
|
37
|
-
export * from "node-opcua-client-crawler";
|
|
38
|
-
export { parseEndpointUrl, is_valid_endpointUrl } from "node-opcua-transport";
|
|
39
|
-
export * from "./server-stuff";
|
|
40
|
-
export * from "node-opcua-service-filter";
|
|
41
|
-
export * from "node-opcua-transport";
|
|
42
|
-
export { OPCUADiscoveryServer } from "node-opcua-server-discovery";
|
|
43
|
-
export { build_address_space_for_conformance_testing } from "node-opcua-address-space-for-conformance-testing";
|
|
44
|
-
export { install_optional_cpu_and_memory_usage_node } from "node-opcua-vendor-diagnostic";
|
|
45
|
-
export * from "node-opcua-aggregates";
|
|
46
|
-
export { makeBoiler } from "node-opcua-address-space/testHelpers";
|
|
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 * from "node-opcua-client";
|
|
36
|
+
export * from "node-opcua-client-proxy";
|
|
37
|
+
export * from "node-opcua-client-crawler";
|
|
38
|
+
export { parseEndpointUrl, is_valid_endpointUrl } from "node-opcua-transport";
|
|
39
|
+
export * from "./server-stuff";
|
|
40
|
+
export * from "node-opcua-service-filter";
|
|
41
|
+
export * from "node-opcua-transport";
|
|
42
|
+
export { OPCUADiscoveryServer } from "node-opcua-server-discovery";
|
|
43
|
+
export { build_address_space_for_conformance_testing } from "node-opcua-address-space-for-conformance-testing";
|
|
44
|
+
export { install_optional_cpu_and_memory_usage_node } from "node-opcua-vendor-diagnostic";
|
|
45
|
+
export * from "node-opcua-aggregates";
|
|
46
|
+
export { makeBoiler } from "node-opcua-address-space/testHelpers";
|
package/dist/index.js
CHANGED
|
@@ -1,141 +1,145 @@
|
|
|
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
|
-
Object.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
exports
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
Object.defineProperty(exports, "
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
Object.defineProperty(exports, "
|
|
41
|
-
Object.defineProperty(exports, "
|
|
42
|
-
Object.defineProperty(exports, "
|
|
43
|
-
Object.defineProperty(exports, "
|
|
44
|
-
Object.defineProperty(exports, "
|
|
45
|
-
|
|
46
|
-
Object.defineProperty(exports, "
|
|
47
|
-
Object.defineProperty(exports, "
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
Object.defineProperty(exports, "
|
|
51
|
-
Object.defineProperty(exports, "
|
|
52
|
-
|
|
53
|
-
Object.defineProperty(exports, "
|
|
54
|
-
Object.defineProperty(exports, "
|
|
55
|
-
Object.defineProperty(exports, "
|
|
56
|
-
Object.defineProperty(exports, "
|
|
57
|
-
|
|
58
|
-
Object.defineProperty(exports, "
|
|
59
|
-
Object.defineProperty(exports, "
|
|
60
|
-
Object.defineProperty(exports, "
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
Object.defineProperty(exports, "
|
|
64
|
-
Object.defineProperty(exports, "
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
Object.defineProperty(exports, "
|
|
69
|
-
|
|
70
|
-
Object.defineProperty(exports, "
|
|
71
|
-
|
|
72
|
-
Object.defineProperty(exports, "
|
|
73
|
-
Object.defineProperty(exports, "
|
|
74
|
-
Object.defineProperty(exports, "
|
|
75
|
-
Object.defineProperty(exports, "
|
|
76
|
-
Object.defineProperty(exports, "
|
|
77
|
-
Object.defineProperty(exports, "
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
__exportStar(require("node-opcua-
|
|
90
|
-
|
|
91
|
-
__exportStar(require("node-opcua-service-
|
|
92
|
-
__exportStar(require("node-opcua-service-
|
|
93
|
-
__exportStar(require("node-opcua-service-
|
|
94
|
-
__exportStar(require("node-opcua-service-
|
|
95
|
-
|
|
96
|
-
__exportStar(require("node-opcua-service-
|
|
97
|
-
__exportStar(require("node-opcua-service-
|
|
98
|
-
__exportStar(require("node-opcua-service-
|
|
99
|
-
|
|
100
|
-
__exportStar(require("node-opcua-service-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
//
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
Object.defineProperty(exports, "
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
//
|
|
129
|
-
|
|
130
|
-
//
|
|
131
|
-
__exportStar(require("
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
var
|
|
137
|
-
Object.defineProperty(exports, "
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
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.install_optional_cpu_and_memory_usage_node = exports.build_address_space_for_conformance_testing = exports.OPCUADiscoveryServer = exports.is_valid_endpointUrl = exports.parseEndpointUrl = 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 = 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
|
+
module.exports.hexDump = require("node-opcua-debug").hexDump;
|
|
119
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
120
|
+
// client services
|
|
121
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
122
|
+
__exportStar(require("node-opcua-client"), exports);
|
|
123
|
+
__exportStar(require("node-opcua-client-proxy"), exports);
|
|
124
|
+
__exportStar(require("node-opcua-client-crawler"), exports);
|
|
125
|
+
var node_opcua_transport_1 = require("node-opcua-transport");
|
|
126
|
+
Object.defineProperty(exports, "parseEndpointUrl", { enumerable: true, get: function () { return node_opcua_transport_1.parseEndpointUrl; } });
|
|
127
|
+
Object.defineProperty(exports, "is_valid_endpointUrl", { enumerable: true, get: function () { return node_opcua_transport_1.is_valid_endpointUrl; } });
|
|
128
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
129
|
+
// server management
|
|
130
|
+
// ----------------------------------------------------------------------------------------------------------
|
|
131
|
+
__exportStar(require("./server-stuff"), exports);
|
|
132
|
+
// filtering tools
|
|
133
|
+
__exportStar(require("node-opcua-service-filter"), exports);
|
|
134
|
+
// filtering tools
|
|
135
|
+
__exportStar(require("node-opcua-transport"), exports);
|
|
136
|
+
var node_opcua_server_discovery_1 = require("node-opcua-server-discovery");
|
|
137
|
+
Object.defineProperty(exports, "OPCUADiscoveryServer", { enumerable: true, get: function () { return node_opcua_server_discovery_1.OPCUADiscoveryServer; } });
|
|
138
|
+
var node_opcua_address_space_for_conformance_testing_1 = require("node-opcua-address-space-for-conformance-testing");
|
|
139
|
+
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; } });
|
|
140
|
+
var node_opcua_vendor_diagnostic_1 = require("node-opcua-vendor-diagnostic");
|
|
141
|
+
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; } });
|
|
142
|
+
__exportStar(require("node-opcua-aggregates"), exports);
|
|
143
|
+
var testHelpers_2 = require("node-opcua-address-space/testHelpers");
|
|
144
|
+
Object.defineProperty(exports, "makeBoiler", { enumerable: true, get: function () { return testHelpers_2.makeBoiler; } });
|
|
141
145
|
//# 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
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../source/index.ts"],"names":[],"mappings":"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"}
|
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,19 +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
|
-
Object.
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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);
|
|
19
23
|
//# sourceMappingURL=server-stuff.js.map
|
package/dist/server-stuff.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"server-stuff.js","sourceRoot":"","sources":["../source/server-stuff.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"server-stuff.js","sourceRoot":"","sources":["../source/server-stuff.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,iEAA+C;AAC/C,2DAAyC;AACzC,oDAAkC"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.66.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module ",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"clean": "
|
|
8
|
+
"clean": "npx rimraf dist *.tsbuildinfo",
|
|
9
9
|
"build": "tsc -b"
|
|
10
10
|
},
|
|
11
11
|
"engines": {
|
|
@@ -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.
|
|
28
|
-
"node-opcua-crypto": "^1.
|
|
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.
|
|
16
|
+
"node-opcua-address-space": "2.66.0",
|
|
17
|
+
"node-opcua-address-space-for-conformance-testing": "2.66.0",
|
|
18
|
+
"node-opcua-aggregates": "2.66.0",
|
|
19
|
+
"node-opcua-assert": "2.66.0",
|
|
20
|
+
"node-opcua-basic-types": "2.66.0",
|
|
21
|
+
"node-opcua-binary-stream": "2.66.0",
|
|
22
|
+
"node-opcua-certificate-manager": "2.66.0",
|
|
23
|
+
"node-opcua-client": "2.66.0",
|
|
24
|
+
"node-opcua-client-crawler": "2.66.0",
|
|
25
|
+
"node-opcua-client-proxy": "2.66.0",
|
|
26
|
+
"node-opcua-common": "2.66.0",
|
|
27
|
+
"node-opcua-constants": "2.66.0",
|
|
28
|
+
"node-opcua-crypto": "^1.10.0",
|
|
29
|
+
"node-opcua-data-access": "2.66.0",
|
|
30
|
+
"node-opcua-data-model": "2.66.0",
|
|
31
|
+
"node-opcua-data-value": "2.66.0",
|
|
32
|
+
"node-opcua-debug": "2.66.0",
|
|
33
|
+
"node-opcua-enum": "2.66.0",
|
|
34
|
+
"node-opcua-factory": "2.66.0",
|
|
35
|
+
"node-opcua-hostname": "2.66.0",
|
|
36
|
+
"node-opcua-nodeid": "2.66.0",
|
|
37
|
+
"node-opcua-nodesets": "2.66.0",
|
|
38
|
+
"node-opcua-numeric-range": "2.66.0",
|
|
39
|
+
"node-opcua-packet-analyzer": "2.66.0",
|
|
40
|
+
"node-opcua-secure-channel": "2.66.0",
|
|
41
|
+
"node-opcua-server": "2.66.0",
|
|
42
|
+
"node-opcua-server-discovery": "2.66.0",
|
|
43
|
+
"node-opcua-service-browse": "2.66.0",
|
|
44
|
+
"node-opcua-service-call": "2.66.0",
|
|
45
|
+
"node-opcua-service-discovery": "2.66.0",
|
|
46
|
+
"node-opcua-service-endpoints": "2.66.0",
|
|
47
|
+
"node-opcua-service-filter": "2.66.0",
|
|
48
|
+
"node-opcua-service-history": "2.66.0",
|
|
49
|
+
"node-opcua-service-node-management": "2.66.0",
|
|
50
|
+
"node-opcua-service-query": "2.66.0",
|
|
51
|
+
"node-opcua-service-read": "2.66.0",
|
|
52
|
+
"node-opcua-service-register-node": "2.66.0",
|
|
53
|
+
"node-opcua-service-secure-channel": "2.66.0",
|
|
54
|
+
"node-opcua-service-session": "2.66.0",
|
|
55
|
+
"node-opcua-service-subscription": "2.66.0",
|
|
56
|
+
"node-opcua-service-translate-browse-path": "2.66.0",
|
|
57
|
+
"node-opcua-service-write": "2.66.0",
|
|
58
|
+
"node-opcua-status-code": "2.66.0",
|
|
59
|
+
"node-opcua-transport": "2.66.0",
|
|
60
|
+
"node-opcua-types": "2.66.0",
|
|
61
|
+
"node-opcua-utils": "2.66.0",
|
|
62
|
+
"node-opcua-variant": "2.66.0",
|
|
63
|
+
"node-opcua-vendor-diagnostic": "2.66.0",
|
|
64
64
|
"semver": "^7.3.5"
|
|
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": "97f47e2e242a1fd737495fd64cb65e8fb7a9964b"
|
|
88
88
|
}
|