node-opcua 2.76.0 → 2.77.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 +47 -47
- package/dist/index.js +145 -145
- package/dist/server-stuff.d.ts +6 -6
- package/dist/server-stuff.js +22 -22
- package/package.json +50 -50
package/dist/index.d.ts
CHANGED
|
@@ -1,47 +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 { 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";
|
|
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,146 +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.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; } });
|
|
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; } });
|
|
146
146
|
//# sourceMappingURL=index.js.map
|
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,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.77.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": "npx rimraf dist *.tsbuildinfo",
|
|
8
|
+
"clean": "npx rimraf node_modules 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.
|
|
16
|
+
"node-opcua-address-space": "2.77.0",
|
|
17
|
+
"node-opcua-address-space-for-conformance-testing": "2.77.0",
|
|
18
|
+
"node-opcua-aggregates": "2.77.0",
|
|
19
|
+
"node-opcua-assert": "2.77.0",
|
|
20
|
+
"node-opcua-basic-types": "2.77.0",
|
|
21
|
+
"node-opcua-binary-stream": "2.77.0",
|
|
22
|
+
"node-opcua-certificate-manager": "2.77.0",
|
|
23
|
+
"node-opcua-client": "2.77.0",
|
|
24
|
+
"node-opcua-client-crawler": "2.77.0",
|
|
25
|
+
"node-opcua-client-proxy": "2.77.0",
|
|
26
|
+
"node-opcua-common": "2.77.0",
|
|
27
|
+
"node-opcua-constants": "2.77.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.77.0",
|
|
30
|
+
"node-opcua-data-model": "2.77.0",
|
|
31
|
+
"node-opcua-data-value": "2.77.0",
|
|
32
|
+
"node-opcua-debug": "2.77.0",
|
|
33
|
+
"node-opcua-enum": "2.77.0",
|
|
34
|
+
"node-opcua-factory": "2.77.0",
|
|
35
|
+
"node-opcua-hostname": "2.77.0",
|
|
36
|
+
"node-opcua-nodeid": "2.77.0",
|
|
37
|
+
"node-opcua-nodesets": "2.77.0",
|
|
38
|
+
"node-opcua-numeric-range": "2.77.0",
|
|
39
|
+
"node-opcua-packet-analyzer": "2.77.0",
|
|
40
|
+
"node-opcua-secure-channel": "2.77.0",
|
|
41
|
+
"node-opcua-server": "2.77.0",
|
|
42
|
+
"node-opcua-server-discovery": "2.77.0",
|
|
43
|
+
"node-opcua-service-browse": "2.77.0",
|
|
44
|
+
"node-opcua-service-call": "2.77.0",
|
|
45
|
+
"node-opcua-service-discovery": "2.77.0",
|
|
46
|
+
"node-opcua-service-endpoints": "2.77.0",
|
|
47
|
+
"node-opcua-service-filter": "2.77.0",
|
|
48
|
+
"node-opcua-service-history": "2.77.0",
|
|
49
|
+
"node-opcua-service-node-management": "2.77.0",
|
|
50
|
+
"node-opcua-service-query": "2.77.0",
|
|
51
|
+
"node-opcua-service-read": "2.77.0",
|
|
52
|
+
"node-opcua-service-register-node": "2.77.0",
|
|
53
|
+
"node-opcua-service-secure-channel": "2.77.0",
|
|
54
|
+
"node-opcua-service-session": "2.77.0",
|
|
55
|
+
"node-opcua-service-subscription": "2.77.0",
|
|
56
|
+
"node-opcua-service-translate-browse-path": "2.77.0",
|
|
57
|
+
"node-opcua-service-write": "2.77.0",
|
|
58
|
+
"node-opcua-status-code": "2.77.0",
|
|
59
|
+
"node-opcua-transport": "2.77.0",
|
|
60
|
+
"node-opcua-types": "2.77.0",
|
|
61
|
+
"node-opcua-utils": "2.77.0",
|
|
62
|
+
"node-opcua-variant": "2.77.0",
|
|
63
|
+
"node-opcua-vendor-diagnostic": "2.77.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": "5c8d45772d786fa4ba59369dd26679353ab5482b"
|
|
88
88
|
}
|