node-opcua-client 2.97.0 → 2.98.1
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/alarms_and_conditions/client_alarm.d.ts +49 -49
- package/dist/alarms_and_conditions/client_alarm.js +109 -109
- package/dist/alarms_and_conditions/client_alarm_list.d.ts +25 -25
- package/dist/alarms_and_conditions/client_alarm_list.js +97 -97
- package/dist/alarms_and_conditions/client_alarm_tools.d.ts +4 -4
- package/dist/alarms_and_conditions/client_alarm_tools.js +156 -156
- package/dist/alarms_and_conditions/client_alarm_tools_acknowledge_all_conditions.d.ts +18 -18
- package/dist/alarms_and_conditions/client_alarm_tools_acknowledge_all_conditions.js +192 -192
- package/dist/alarms_and_conditions/client_alarm_tools_dump_event.d.ts +9 -9
- package/dist/alarms_and_conditions/client_alarm_tools_dump_event.js +72 -72
- package/dist/alarms_and_conditions/client_alarm_tools_dump_event.js.map +1 -1
- package/dist/alarms_and_conditions/client_alarm_tools_extractConditionFields.d.ts +3 -3
- package/dist/alarms_and_conditions/client_alarm_tools_extractConditionFields.js +118 -118
- package/dist/alarms_and_conditions/client_tools.d.ts +7 -7
- package/dist/alarms_and_conditions/client_tools.js +179 -179
- package/dist/client_base.d.ts +277 -277
- package/dist/client_base.js +14 -14
- package/dist/client_base.js.map +1 -1
- package/dist/client_monitored_item.d.ts +21 -21
- package/dist/client_monitored_item.js +11 -11
- package/dist/client_monitored_item_base.d.ts +39 -39
- package/dist/client_monitored_item_base.js +2 -2
- package/dist/client_monitored_item_group.d.ts +21 -21
- package/dist/client_monitored_item_group.js +13 -13
- package/dist/client_monitored_item_toolbox.d.ts +15 -15
- package/dist/client_monitored_item_toolbox.js +116 -116
- package/dist/client_session.d.ts +529 -529
- package/dist/client_session.js +10 -10
- package/dist/client_session_keepalive_manager.d.ts +34 -34
- package/dist/client_session_keepalive_manager.js +149 -149
- package/dist/client_subscription.d.ts +241 -241
- package/dist/client_subscription.js +14 -14
- package/dist/client_subscription.js.map +1 -1
- package/dist/client_utils.d.ts +22 -22
- package/dist/client_utils.js +87 -87
- package/dist/common.d.ts +17 -17
- package/dist/common.js +5 -5
- package/dist/index.d.ts +56 -56
- package/dist/index.js +94 -94
- package/dist/opcua_client.d.ts +118 -118
- package/dist/opcua_client.js +33 -33
- package/dist/private/client_base_impl.d.ts +160 -160
- package/dist/private/client_base_impl.js +1348 -1348
- package/dist/private/client_monitored_item_base_impl.d.ts +3 -3
- package/dist/private/client_monitored_item_base_impl.js +4 -4
- package/dist/private/client_monitored_item_group_impl.d.ts +53 -53
- package/dist/private/client_monitored_item_group_impl.js +159 -159
- package/dist/private/client_monitored_item_impl.d.ts +93 -93
- package/dist/private/client_monitored_item_impl.js +304 -304
- package/dist/private/client_publish_engine.d.ts +62 -62
- package/dist/private/client_publish_engine.js +408 -408
- package/dist/private/client_publish_engine.js.map +1 -1
- package/dist/private/client_session_impl.d.ts +631 -631
- package/dist/private/client_session_impl.js +1348 -1348
- package/dist/private/client_subscription_impl.d.ts +93 -93
- package/dist/private/client_subscription_impl.js +763 -763
- package/dist/private/i_private_client.d.ts +21 -21
- package/dist/private/i_private_client.js +2 -2
- package/dist/private/opcua_client_impl.d.ts +166 -166
- package/dist/private/opcua_client_impl.js +1000 -1000
- package/dist/private/opcua_client_impl.js.map +1 -1
- package/dist/private/performance.d.ts +1 -1
- package/dist/private/performance.js +18 -18
- package/dist/reconnection.d.ts +9 -9
- package/dist/reconnection.js +381 -381
- package/dist/tools/findservers.d.ts +20 -20
- package/dist/tools/findservers.js +61 -61
- package/dist/tools/read_history_server_capabilities.d.ts +6 -6
- package/dist/tools/read_history_server_capabilities.js +98 -98
- package/dist/user_identity_info.d.ts +1 -1
- package/dist/user_identity_info.js +2 -2
- package/dist/verify.d.ts +5 -5
- package/dist/verify.js +134 -134
- package/package.json +49 -45
- package/source/alarms_and_conditions/client_alarm_tools_dump_event.ts +1 -1
- package/.nycrc.json +0 -14
- package/test_helpers/create_certificates.js +0 -1
- package/typedoc.js +0 -20
package/dist/client_utils.js
CHANGED
|
@@ -1,88 +1,88 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @module node-opcua-client
|
|
4
|
-
*/
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.readUAAnalogItem = void 0;
|
|
7
|
-
const node_opcua_assert_1 = require("node-opcua-assert");
|
|
8
|
-
const node_opcua_data_model_1 = require("node-opcua-data-model");
|
|
9
|
-
const node_opcua_nodeid_1 = require("node-opcua-nodeid");
|
|
10
|
-
const node_opcua_service_translate_browse_path_1 = require("node-opcua-service-translate-browse-path");
|
|
11
|
-
const hasPropertyRefId = (0, node_opcua_nodeid_1.resolveNodeId)("HasProperty");
|
|
12
|
-
/* NodeId ns=0;i=46*/
|
|
13
|
-
function browsePathPropertyRequest(nodeId, propertyName) {
|
|
14
|
-
return new node_opcua_service_translate_browse_path_1.BrowsePath({
|
|
15
|
-
relativePath: /* RelativePath */ {
|
|
16
|
-
elements: /* RelativePathElement */ [
|
|
17
|
-
{
|
|
18
|
-
includeSubtypes: false,
|
|
19
|
-
isInverse: false,
|
|
20
|
-
referenceTypeId: hasPropertyRefId,
|
|
21
|
-
targetName: { namespaceIndex: 0, name: propertyName }
|
|
22
|
-
}
|
|
23
|
-
]
|
|
24
|
-
},
|
|
25
|
-
startingNode: /* NodeId */ nodeId
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
function readUAAnalogItem(session, nodeId, ...args) {
|
|
29
|
-
const callback = args[0];
|
|
30
|
-
(0, node_opcua_assert_1.assert)(typeof callback === "function");
|
|
31
|
-
const browsePath = [
|
|
32
|
-
browsePathPropertyRequest(nodeId, "EngineeringUnits"),
|
|
33
|
-
browsePathPropertyRequest(nodeId, "EURange"),
|
|
34
|
-
browsePathPropertyRequest(nodeId, "InstrumentRange"),
|
|
35
|
-
browsePathPropertyRequest(nodeId, "ValuePrecision"),
|
|
36
|
-
browsePathPropertyRequest(nodeId, "Definition")
|
|
37
|
-
];
|
|
38
|
-
const analogItemData = {
|
|
39
|
-
definition: null,
|
|
40
|
-
engineeringUnits: null,
|
|
41
|
-
engineeringUnitsRange: null,
|
|
42
|
-
instrumentRange: null,
|
|
43
|
-
valuePrecision: null
|
|
44
|
-
};
|
|
45
|
-
session.translateBrowsePath(browsePath, (err, browsePathResults) => {
|
|
46
|
-
if (err) {
|
|
47
|
-
return callback(err);
|
|
48
|
-
}
|
|
49
|
-
browsePathResults = browsePathResults || [];
|
|
50
|
-
const actions = [];
|
|
51
|
-
const nodesToRead = [];
|
|
52
|
-
function processProperty(browsePathResult, propertyName) {
|
|
53
|
-
if (browsePathResult.statusCode.isGood()) {
|
|
54
|
-
browsePathResult.targets = browsePathResult.targets || [];
|
|
55
|
-
nodesToRead.push({
|
|
56
|
-
attributeId: node_opcua_data_model_1.AttributeIds.Value,
|
|
57
|
-
nodeId: browsePathResult.targets[0].targetId
|
|
58
|
-
});
|
|
59
|
-
actions.push((readResult) => (analogItemData[propertyName] = readResult.value.value));
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
processProperty(browsePathResults[0], "engineeringUnits");
|
|
63
|
-
processProperty(browsePathResults[1], "engineeringUnitsRange");
|
|
64
|
-
processProperty(browsePathResults[2], "instrumentRange");
|
|
65
|
-
processProperty(browsePathResults[3], "valuePrecision");
|
|
66
|
-
processProperty(browsePathResults[4], "definition");
|
|
67
|
-
session.read(nodesToRead, (err1, dataValues) => {
|
|
68
|
-
if (err1) {
|
|
69
|
-
return callback(err1);
|
|
70
|
-
}
|
|
71
|
-
/* istanbul ignore next */
|
|
72
|
-
if (!dataValues) {
|
|
73
|
-
return callback(new Error("Internal Error"));
|
|
74
|
-
}
|
|
75
|
-
dataValues.forEach((result, index) => {
|
|
76
|
-
actions[index].call(null, result);
|
|
77
|
-
});
|
|
78
|
-
callback(err1, analogItemData);
|
|
79
|
-
});
|
|
80
|
-
});
|
|
81
|
-
}
|
|
82
|
-
exports.readUAAnalogItem = readUAAnalogItem;
|
|
83
|
-
// tslint:disable:no-var-requires
|
|
84
|
-
// tslint:disable:max-line-length
|
|
85
|
-
const thenify = require("thenify");
|
|
86
|
-
const opts = { multiArgs: false };
|
|
87
|
-
module.exports.readUAAnalogItem = thenify.withCallback(module.exports.readUAAnalogItem, opts);
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module node-opcua-client
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.readUAAnalogItem = void 0;
|
|
7
|
+
const node_opcua_assert_1 = require("node-opcua-assert");
|
|
8
|
+
const node_opcua_data_model_1 = require("node-opcua-data-model");
|
|
9
|
+
const node_opcua_nodeid_1 = require("node-opcua-nodeid");
|
|
10
|
+
const node_opcua_service_translate_browse_path_1 = require("node-opcua-service-translate-browse-path");
|
|
11
|
+
const hasPropertyRefId = (0, node_opcua_nodeid_1.resolveNodeId)("HasProperty");
|
|
12
|
+
/* NodeId ns=0;i=46*/
|
|
13
|
+
function browsePathPropertyRequest(nodeId, propertyName) {
|
|
14
|
+
return new node_opcua_service_translate_browse_path_1.BrowsePath({
|
|
15
|
+
relativePath: /* RelativePath */ {
|
|
16
|
+
elements: /* RelativePathElement */ [
|
|
17
|
+
{
|
|
18
|
+
includeSubtypes: false,
|
|
19
|
+
isInverse: false,
|
|
20
|
+
referenceTypeId: hasPropertyRefId,
|
|
21
|
+
targetName: { namespaceIndex: 0, name: propertyName }
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
},
|
|
25
|
+
startingNode: /* NodeId */ nodeId
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
function readUAAnalogItem(session, nodeId, ...args) {
|
|
29
|
+
const callback = args[0];
|
|
30
|
+
(0, node_opcua_assert_1.assert)(typeof callback === "function");
|
|
31
|
+
const browsePath = [
|
|
32
|
+
browsePathPropertyRequest(nodeId, "EngineeringUnits"),
|
|
33
|
+
browsePathPropertyRequest(nodeId, "EURange"),
|
|
34
|
+
browsePathPropertyRequest(nodeId, "InstrumentRange"),
|
|
35
|
+
browsePathPropertyRequest(nodeId, "ValuePrecision"),
|
|
36
|
+
browsePathPropertyRequest(nodeId, "Definition")
|
|
37
|
+
];
|
|
38
|
+
const analogItemData = {
|
|
39
|
+
definition: null,
|
|
40
|
+
engineeringUnits: null,
|
|
41
|
+
engineeringUnitsRange: null,
|
|
42
|
+
instrumentRange: null,
|
|
43
|
+
valuePrecision: null
|
|
44
|
+
};
|
|
45
|
+
session.translateBrowsePath(browsePath, (err, browsePathResults) => {
|
|
46
|
+
if (err) {
|
|
47
|
+
return callback(err);
|
|
48
|
+
}
|
|
49
|
+
browsePathResults = browsePathResults || [];
|
|
50
|
+
const actions = [];
|
|
51
|
+
const nodesToRead = [];
|
|
52
|
+
function processProperty(browsePathResult, propertyName) {
|
|
53
|
+
if (browsePathResult.statusCode.isGood()) {
|
|
54
|
+
browsePathResult.targets = browsePathResult.targets || [];
|
|
55
|
+
nodesToRead.push({
|
|
56
|
+
attributeId: node_opcua_data_model_1.AttributeIds.Value,
|
|
57
|
+
nodeId: browsePathResult.targets[0].targetId
|
|
58
|
+
});
|
|
59
|
+
actions.push((readResult) => (analogItemData[propertyName] = readResult.value.value));
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
processProperty(browsePathResults[0], "engineeringUnits");
|
|
63
|
+
processProperty(browsePathResults[1], "engineeringUnitsRange");
|
|
64
|
+
processProperty(browsePathResults[2], "instrumentRange");
|
|
65
|
+
processProperty(browsePathResults[3], "valuePrecision");
|
|
66
|
+
processProperty(browsePathResults[4], "definition");
|
|
67
|
+
session.read(nodesToRead, (err1, dataValues) => {
|
|
68
|
+
if (err1) {
|
|
69
|
+
return callback(err1);
|
|
70
|
+
}
|
|
71
|
+
/* istanbul ignore next */
|
|
72
|
+
if (!dataValues) {
|
|
73
|
+
return callback(new Error("Internal Error"));
|
|
74
|
+
}
|
|
75
|
+
dataValues.forEach((result, index) => {
|
|
76
|
+
actions[index].call(null, result);
|
|
77
|
+
});
|
|
78
|
+
callback(err1, analogItemData);
|
|
79
|
+
});
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
exports.readUAAnalogItem = readUAAnalogItem;
|
|
83
|
+
// tslint:disable:no-var-requires
|
|
84
|
+
// tslint:disable:max-line-length
|
|
85
|
+
const thenify = require("thenify");
|
|
86
|
+
const opts = { multiArgs: false };
|
|
87
|
+
module.exports.readUAAnalogItem = thenify.withCallback(module.exports.readUAAnalogItem, opts);
|
|
88
88
|
//# sourceMappingURL=client_utils.js.map
|
package/dist/common.d.ts
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua-client
|
|
3
|
-
*/
|
|
4
|
-
import { BrowseNextRequest, BrowseNextResponse, BrowseRequest, BrowseResponse } from "node-opcua-service-browse";
|
|
5
|
-
import { CallRequest, CallResponse } from "node-opcua-service-call";
|
|
6
|
-
import { FindServersOnNetworkRequest, FindServersOnNetworkResponse, FindServersRequest, FindServersResponse } from "node-opcua-service-discovery";
|
|
7
|
-
import { GetEndpointsRequest, GetEndpointsResponse } from "node-opcua-service-endpoints";
|
|
8
|
-
import { HistoryReadRequest, HistoryReadResponse } from "node-opcua-service-history";
|
|
9
|
-
import { QueryFirstRequest, QueryFirstResponse, QueryNextRequest, QueryNextResponse } from "node-opcua-service-query";
|
|
10
|
-
import { ReadRequest, ReadResponse } from "node-opcua-service-read";
|
|
11
|
-
import { RegisterNodesRequest, RegisterNodesResponse, UnregisterNodesRequest, UnregisterNodesResponse } from "node-opcua-service-register-node";
|
|
12
|
-
import { ActivateSessionRequest, ActivateSessionResponse, CloseSessionRequest, CloseSessionResponse, CreateSessionRequest, CreateSessionResponse } from "node-opcua-service-session";
|
|
13
|
-
import { CreateMonitoredItemsRequest, CreateMonitoredItemsResponse, CreateSubscriptionRequest, CreateSubscriptionResponse, DeleteMonitoredItemsRequest, DeleteMonitoredItemsResponse, DeleteSubscriptionsRequest, DeleteSubscriptionsResponse, ModifyMonitoredItemsRequest, ModifyMonitoredItemsResponse, ModifySubscriptionRequest, ModifySubscriptionResponse, PublishRequest, PublishResponse, RepublishRequest, RepublishResponse, SetMonitoringModeRequest, SetMonitoringModeResponse, SetPublishingModeRequest, SetPublishingModeResponse, TransferSubscriptionsRequest, TransferSubscriptionsResponse } from "node-opcua-service-subscription";
|
|
14
|
-
import { TranslateBrowsePathsToNodeIdsRequest, TranslateBrowsePathsToNodeIdsResponse } from "node-opcua-service-translate-browse-path";
|
|
15
|
-
import { WriteRequest, WriteResponse } from "node-opcua-service-write";
|
|
16
|
-
export type Request = CreateSessionRequest | ActivateSessionRequest | CloseSessionRequest | GetEndpointsRequest | ReadRequest | BrowseRequest | BrowseNextRequest | WriteRequest | CallRequest | TranslateBrowsePathsToNodeIdsRequest | CreateSubscriptionRequest | DeleteSubscriptionsRequest | TransferSubscriptionsRequest | CreateMonitoredItemsRequest | ModifyMonitoredItemsRequest | ModifySubscriptionRequest | SetMonitoringModeRequest | PublishRequest | RepublishRequest | DeleteMonitoredItemsRequest | SetPublishingModeRequest | FindServersOnNetworkRequest | FindServersRequest | HistoryReadRequest | RegisterNodesRequest | UnregisterNodesRequest | QueryFirstRequest | QueryNextRequest;
|
|
17
|
-
export type Response = CreateSessionResponse | ActivateSessionResponse | CloseSessionResponse | GetEndpointsResponse | ReadResponse | BrowseResponse | BrowseNextResponse | WriteResponse | CallResponse | TranslateBrowsePathsToNodeIdsResponse | CreateSubscriptionResponse | DeleteSubscriptionsResponse | TransferSubscriptionsResponse | CreateMonitoredItemsResponse | ModifyMonitoredItemsResponse | ModifySubscriptionResponse | SetMonitoringModeResponse | PublishResponse | RepublishResponse | DeleteMonitoredItemsResponse | SetPublishingModeResponse | FindServersOnNetworkResponse | FindServersResponse | HistoryReadResponse | RegisterNodesResponse | UnregisterNodesResponse | QueryFirstResponse | QueryNextResponse;
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-client
|
|
3
|
+
*/
|
|
4
|
+
import { BrowseNextRequest, BrowseNextResponse, BrowseRequest, BrowseResponse } from "node-opcua-service-browse";
|
|
5
|
+
import { CallRequest, CallResponse } from "node-opcua-service-call";
|
|
6
|
+
import { FindServersOnNetworkRequest, FindServersOnNetworkResponse, FindServersRequest, FindServersResponse } from "node-opcua-service-discovery";
|
|
7
|
+
import { GetEndpointsRequest, GetEndpointsResponse } from "node-opcua-service-endpoints";
|
|
8
|
+
import { HistoryReadRequest, HistoryReadResponse } from "node-opcua-service-history";
|
|
9
|
+
import { QueryFirstRequest, QueryFirstResponse, QueryNextRequest, QueryNextResponse } from "node-opcua-service-query";
|
|
10
|
+
import { ReadRequest, ReadResponse } from "node-opcua-service-read";
|
|
11
|
+
import { RegisterNodesRequest, RegisterNodesResponse, UnregisterNodesRequest, UnregisterNodesResponse } from "node-opcua-service-register-node";
|
|
12
|
+
import { ActivateSessionRequest, ActivateSessionResponse, CloseSessionRequest, CloseSessionResponse, CreateSessionRequest, CreateSessionResponse } from "node-opcua-service-session";
|
|
13
|
+
import { CreateMonitoredItemsRequest, CreateMonitoredItemsResponse, CreateSubscriptionRequest, CreateSubscriptionResponse, DeleteMonitoredItemsRequest, DeleteMonitoredItemsResponse, DeleteSubscriptionsRequest, DeleteSubscriptionsResponse, ModifyMonitoredItemsRequest, ModifyMonitoredItemsResponse, ModifySubscriptionRequest, ModifySubscriptionResponse, PublishRequest, PublishResponse, RepublishRequest, RepublishResponse, SetMonitoringModeRequest, SetMonitoringModeResponse, SetPublishingModeRequest, SetPublishingModeResponse, TransferSubscriptionsRequest, TransferSubscriptionsResponse } from "node-opcua-service-subscription";
|
|
14
|
+
import { TranslateBrowsePathsToNodeIdsRequest, TranslateBrowsePathsToNodeIdsResponse } from "node-opcua-service-translate-browse-path";
|
|
15
|
+
import { WriteRequest, WriteResponse } from "node-opcua-service-write";
|
|
16
|
+
export type Request = CreateSessionRequest | ActivateSessionRequest | CloseSessionRequest | GetEndpointsRequest | ReadRequest | BrowseRequest | BrowseNextRequest | WriteRequest | CallRequest | TranslateBrowsePathsToNodeIdsRequest | CreateSubscriptionRequest | DeleteSubscriptionsRequest | TransferSubscriptionsRequest | CreateMonitoredItemsRequest | ModifyMonitoredItemsRequest | ModifySubscriptionRequest | SetMonitoringModeRequest | PublishRequest | RepublishRequest | DeleteMonitoredItemsRequest | SetPublishingModeRequest | FindServersOnNetworkRequest | FindServersRequest | HistoryReadRequest | RegisterNodesRequest | UnregisterNodesRequest | QueryFirstRequest | QueryNextRequest;
|
|
17
|
+
export type Response = CreateSessionResponse | ActivateSessionResponse | CloseSessionResponse | GetEndpointsResponse | ReadResponse | BrowseResponse | BrowseNextResponse | WriteResponse | CallResponse | TranslateBrowsePathsToNodeIdsResponse | CreateSubscriptionResponse | DeleteSubscriptionsResponse | TransferSubscriptionsResponse | CreateMonitoredItemsResponse | ModifyMonitoredItemsResponse | ModifySubscriptionResponse | SetMonitoringModeResponse | PublishResponse | RepublishResponse | DeleteMonitoredItemsResponse | SetPublishingModeResponse | FindServersOnNetworkResponse | FindServersResponse | HistoryReadResponse | RegisterNodesResponse | UnregisterNodesResponse | QueryFirstResponse | QueryNextResponse;
|
package/dist/common.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @module node-opcua-client
|
|
4
|
-
*/
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module node-opcua-client
|
|
4
|
+
*/
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
//# sourceMappingURL=common.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua-client
|
|
3
|
-
*/
|
|
4
|
-
export * from "./client_base";
|
|
5
|
-
export * from "./opcua_client";
|
|
6
|
-
export * from "./client_session";
|
|
7
|
-
export * from "./client_subscription";
|
|
8
|
-
export * from "./client_monitored_item_base";
|
|
9
|
-
export * from "./client_monitored_item";
|
|
10
|
-
export * from "./client_monitored_item_group";
|
|
11
|
-
export * from "./alarms_and_conditions/client_tools";
|
|
12
|
-
export * from "./alarms_and_conditions/client_alarm";
|
|
13
|
-
export * from "./alarms_and_conditions/client_alarm_list";
|
|
14
|
-
export * from "./alarms_and_conditions/client_alarm_tools";
|
|
15
|
-
export * from "./alarms_and_conditions/client_alarm_tools_extractConditionFields";
|
|
16
|
-
export * from "./alarms_and_conditions/client_alarm_tools_dump_event";
|
|
17
|
-
export * from "./alarms_and_conditions/client_alarm_tools_acknowledge_all_conditions";
|
|
18
|
-
export * from "./tools/findservers";
|
|
19
|
-
export * from "./tools/read_history_server_capabilities";
|
|
20
|
-
export * from "./client_utils";
|
|
21
|
-
export * from "./verify";
|
|
22
|
-
export * from "./user_identity_info";
|
|
23
|
-
export { assert } from "node-opcua-assert";
|
|
24
|
-
export * from "node-opcua-utils";
|
|
25
|
-
export { ClientSidePublishEngine } from "./private/client_publish_engine";
|
|
26
|
-
export { ServerState, ServiceCounterDataType } from "node-opcua-common";
|
|
27
|
-
export { SecurityPolicy, ClientSecureChannelLayer, ConnectionStrategyOptions } from "node-opcua-secure-channel";
|
|
28
|
-
import * as utils1 from "node-opcua-utils";
|
|
29
|
-
export declare const utils: typeof utils1;
|
|
30
|
-
import * as crypto_util1 from "node-opcua-crypto";
|
|
31
|
-
export declare const crypto_utils: typeof crypto_util1;
|
|
32
|
-
export { hexDump } from "node-opcua-debug";
|
|
33
|
-
export { NodeId, resolveNodeId, makeNodeId, coerceNodeId, sameNodeId, ExpandedNodeId, makeExpandedNodeId, coerceExpandedNodeId } from "node-opcua-nodeid";
|
|
34
|
-
export { StatusCode, StatusCodes } from "node-opcua-status-code";
|
|
35
|
-
export * from "node-opcua-variant";
|
|
36
|
-
export * from "node-opcua-data-value";
|
|
37
|
-
export * from "node-opcua-data-model";
|
|
38
|
-
export * from "node-opcua-constants";
|
|
39
|
-
export * from "node-opcua-secure-channel";
|
|
40
|
-
export { makeApplicationUrn } from "node-opcua-common";
|
|
41
|
-
export * from "node-opcua-service-endpoints";
|
|
42
|
-
export * from "node-opcua-service-browse";
|
|
43
|
-
export * from "node-opcua-service-call";
|
|
44
|
-
export * from "node-opcua-service-discovery";
|
|
45
|
-
export * from "node-opcua-service-endpoints";
|
|
46
|
-
export * from "node-opcua-service-history";
|
|
47
|
-
export * from "node-opcua-service-query";
|
|
48
|
-
export * from "node-opcua-service-read";
|
|
49
|
-
export * from "node-opcua-service-secure-channel";
|
|
50
|
-
export * from "node-opcua-service-session";
|
|
51
|
-
export * from "node-opcua-service-subscription";
|
|
52
|
-
export * from "node-opcua-service-translate-browse-path";
|
|
53
|
-
export * from "node-opcua-service-write";
|
|
54
|
-
export * from "node-opcua-service-filter";
|
|
55
|
-
export { IBasicSession, browseAll, readNamespaceArray } from "node-opcua-pseudo-session";
|
|
56
|
-
export * from "node-opcua-client-dynamic-extension-object";
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-client
|
|
3
|
+
*/
|
|
4
|
+
export * from "./client_base";
|
|
5
|
+
export * from "./opcua_client";
|
|
6
|
+
export * from "./client_session";
|
|
7
|
+
export * from "./client_subscription";
|
|
8
|
+
export * from "./client_monitored_item_base";
|
|
9
|
+
export * from "./client_monitored_item";
|
|
10
|
+
export * from "./client_monitored_item_group";
|
|
11
|
+
export * from "./alarms_and_conditions/client_tools";
|
|
12
|
+
export * from "./alarms_and_conditions/client_alarm";
|
|
13
|
+
export * from "./alarms_and_conditions/client_alarm_list";
|
|
14
|
+
export * from "./alarms_and_conditions/client_alarm_tools";
|
|
15
|
+
export * from "./alarms_and_conditions/client_alarm_tools_extractConditionFields";
|
|
16
|
+
export * from "./alarms_and_conditions/client_alarm_tools_dump_event";
|
|
17
|
+
export * from "./alarms_and_conditions/client_alarm_tools_acknowledge_all_conditions";
|
|
18
|
+
export * from "./tools/findservers";
|
|
19
|
+
export * from "./tools/read_history_server_capabilities";
|
|
20
|
+
export * from "./client_utils";
|
|
21
|
+
export * from "./verify";
|
|
22
|
+
export * from "./user_identity_info";
|
|
23
|
+
export { assert } from "node-opcua-assert";
|
|
24
|
+
export * from "node-opcua-utils";
|
|
25
|
+
export { ClientSidePublishEngine } from "./private/client_publish_engine";
|
|
26
|
+
export { ServerState, ServiceCounterDataType } from "node-opcua-common";
|
|
27
|
+
export { SecurityPolicy, ClientSecureChannelLayer, ConnectionStrategyOptions } from "node-opcua-secure-channel";
|
|
28
|
+
import * as utils1 from "node-opcua-utils";
|
|
29
|
+
export declare const utils: typeof utils1;
|
|
30
|
+
import * as crypto_util1 from "node-opcua-crypto";
|
|
31
|
+
export declare const crypto_utils: typeof crypto_util1;
|
|
32
|
+
export { hexDump } from "node-opcua-debug";
|
|
33
|
+
export { NodeId, resolveNodeId, makeNodeId, coerceNodeId, sameNodeId, ExpandedNodeId, makeExpandedNodeId, coerceExpandedNodeId } from "node-opcua-nodeid";
|
|
34
|
+
export { StatusCode, StatusCodes } from "node-opcua-status-code";
|
|
35
|
+
export * from "node-opcua-variant";
|
|
36
|
+
export * from "node-opcua-data-value";
|
|
37
|
+
export * from "node-opcua-data-model";
|
|
38
|
+
export * from "node-opcua-constants";
|
|
39
|
+
export * from "node-opcua-secure-channel";
|
|
40
|
+
export { makeApplicationUrn } from "node-opcua-common";
|
|
41
|
+
export * from "node-opcua-service-endpoints";
|
|
42
|
+
export * from "node-opcua-service-browse";
|
|
43
|
+
export * from "node-opcua-service-call";
|
|
44
|
+
export * from "node-opcua-service-discovery";
|
|
45
|
+
export * from "node-opcua-service-endpoints";
|
|
46
|
+
export * from "node-opcua-service-history";
|
|
47
|
+
export * from "node-opcua-service-query";
|
|
48
|
+
export * from "node-opcua-service-read";
|
|
49
|
+
export * from "node-opcua-service-secure-channel";
|
|
50
|
+
export * from "node-opcua-service-session";
|
|
51
|
+
export * from "node-opcua-service-subscription";
|
|
52
|
+
export * from "node-opcua-service-translate-browse-path";
|
|
53
|
+
export * from "node-opcua-service-write";
|
|
54
|
+
export * from "node-opcua-service-filter";
|
|
55
|
+
export { IBasicSession, browseAll, readNamespaceArray } from "node-opcua-pseudo-session";
|
|
56
|
+
export * from "node-opcua-client-dynamic-extension-object";
|
package/dist/index.js
CHANGED
|
@@ -1,95 +1,95 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* @module node-opcua-client
|
|
4
|
-
*/
|
|
5
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
-
if (k2 === undefined) k2 = k;
|
|
7
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
-
}
|
|
11
|
-
Object.defineProperty(o, k2, desc);
|
|
12
|
-
}) : (function(o, m, k, k2) {
|
|
13
|
-
if (k2 === undefined) k2 = k;
|
|
14
|
-
o[k2] = m[k];
|
|
15
|
-
}));
|
|
16
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
17
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
18
|
-
};
|
|
19
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.readNamespaceArray = exports.browseAll = exports.makeApplicationUrn = exports.StatusCodes = exports.StatusCode = exports.coerceExpandedNodeId = exports.makeExpandedNodeId = exports.ExpandedNodeId = exports.sameNodeId = exports.coerceNodeId = exports.makeNodeId = exports.resolveNodeId = exports.NodeId = exports.hexDump = exports.crypto_utils = exports.utils = exports.ClientSecureChannelLayer = exports.SecurityPolicy = exports.ServiceCounterDataType = exports.ServerState = exports.ClientSidePublishEngine = exports.assert = void 0;
|
|
21
|
-
__exportStar(require("./client_base"), exports);
|
|
22
|
-
__exportStar(require("./opcua_client"), exports);
|
|
23
|
-
__exportStar(require("./client_session"), exports);
|
|
24
|
-
__exportStar(require("./client_subscription"), exports);
|
|
25
|
-
__exportStar(require("./client_monitored_item_base"), exports);
|
|
26
|
-
__exportStar(require("./client_monitored_item"), exports);
|
|
27
|
-
__exportStar(require("./client_monitored_item_group"), exports);
|
|
28
|
-
__exportStar(require("./alarms_and_conditions/client_tools"), exports);
|
|
29
|
-
__exportStar(require("./alarms_and_conditions/client_alarm"), exports);
|
|
30
|
-
__exportStar(require("./alarms_and_conditions/client_alarm_list"), exports);
|
|
31
|
-
__exportStar(require("./alarms_and_conditions/client_alarm_tools"), exports);
|
|
32
|
-
__exportStar(require("./alarms_and_conditions/client_alarm_tools_extractConditionFields"), exports);
|
|
33
|
-
__exportStar(require("./alarms_and_conditions/client_alarm_tools_dump_event"), exports);
|
|
34
|
-
__exportStar(require("./alarms_and_conditions/client_alarm_tools_acknowledge_all_conditions"), exports);
|
|
35
|
-
__exportStar(require("./tools/findservers"), exports);
|
|
36
|
-
__exportStar(require("./tools/read_history_server_capabilities"), exports);
|
|
37
|
-
__exportStar(require("./client_utils"), exports);
|
|
38
|
-
__exportStar(require("./verify"), exports);
|
|
39
|
-
__exportStar(require("./user_identity_info"), exports);
|
|
40
|
-
var node_opcua_assert_1 = require("node-opcua-assert");
|
|
41
|
-
Object.defineProperty(exports, "assert", { enumerable: true, get: function () { return node_opcua_assert_1.assert; } });
|
|
42
|
-
__exportStar(require("node-opcua-utils"), exports);
|
|
43
|
-
var client_publish_engine_1 = require("./private/client_publish_engine");
|
|
44
|
-
Object.defineProperty(exports, "ClientSidePublishEngine", { enumerable: true, get: function () { return client_publish_engine_1.ClientSidePublishEngine; } });
|
|
45
|
-
var node_opcua_common_1 = require("node-opcua-common");
|
|
46
|
-
Object.defineProperty(exports, "ServerState", { enumerable: true, get: function () { return node_opcua_common_1.ServerState; } });
|
|
47
|
-
Object.defineProperty(exports, "ServiceCounterDataType", { enumerable: true, get: function () { return node_opcua_common_1.ServiceCounterDataType; } });
|
|
48
|
-
var node_opcua_secure_channel_1 = require("node-opcua-secure-channel");
|
|
49
|
-
Object.defineProperty(exports, "SecurityPolicy", { enumerable: true, get: function () { return node_opcua_secure_channel_1.SecurityPolicy; } });
|
|
50
|
-
Object.defineProperty(exports, "ClientSecureChannelLayer", { enumerable: true, get: function () { return node_opcua_secure_channel_1.ClientSecureChannelLayer; } });
|
|
51
|
-
const utils1 = require("node-opcua-utils");
|
|
52
|
-
exports.utils = utils1;
|
|
53
|
-
const crypto_util1 = require("node-opcua-crypto");
|
|
54
|
-
exports.crypto_utils = crypto_util1;
|
|
55
|
-
var node_opcua_debug_1 = require("node-opcua-debug");
|
|
56
|
-
Object.defineProperty(exports, "hexDump", { enumerable: true, get: function () { return node_opcua_debug_1.hexDump; } });
|
|
57
|
-
///
|
|
58
|
-
var node_opcua_nodeid_1 = require("node-opcua-nodeid");
|
|
59
|
-
Object.defineProperty(exports, "NodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.NodeId; } });
|
|
60
|
-
Object.defineProperty(exports, "resolveNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.resolveNodeId; } });
|
|
61
|
-
Object.defineProperty(exports, "makeNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeNodeId; } });
|
|
62
|
-
Object.defineProperty(exports, "coerceNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceNodeId; } });
|
|
63
|
-
Object.defineProperty(exports, "sameNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.sameNodeId; } });
|
|
64
|
-
Object.defineProperty(exports, "ExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.ExpandedNodeId; } });
|
|
65
|
-
Object.defineProperty(exports, "makeExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeExpandedNodeId; } });
|
|
66
|
-
Object.defineProperty(exports, "coerceExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceExpandedNodeId; } });
|
|
67
|
-
var node_opcua_status_code_1 = require("node-opcua-status-code");
|
|
68
|
-
Object.defineProperty(exports, "StatusCode", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCode; } });
|
|
69
|
-
Object.defineProperty(exports, "StatusCodes", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCodes; } });
|
|
70
|
-
__exportStar(require("node-opcua-variant"), exports);
|
|
71
|
-
__exportStar(require("node-opcua-data-value"), exports);
|
|
72
|
-
__exportStar(require("node-opcua-data-model"), exports);
|
|
73
|
-
__exportStar(require("node-opcua-constants"), exports);
|
|
74
|
-
__exportStar(require("node-opcua-secure-channel"), exports);
|
|
75
|
-
var node_opcua_common_2 = require("node-opcua-common");
|
|
76
|
-
Object.defineProperty(exports, "makeApplicationUrn", { enumerable: true, get: function () { return node_opcua_common_2.makeApplicationUrn; } });
|
|
77
|
-
__exportStar(require("node-opcua-service-endpoints"), exports);
|
|
78
|
-
__exportStar(require("node-opcua-service-browse"), exports);
|
|
79
|
-
__exportStar(require("node-opcua-service-call"), exports);
|
|
80
|
-
__exportStar(require("node-opcua-service-discovery"), exports);
|
|
81
|
-
__exportStar(require("node-opcua-service-endpoints"), exports);
|
|
82
|
-
__exportStar(require("node-opcua-service-history"), exports);
|
|
83
|
-
__exportStar(require("node-opcua-service-query"), exports);
|
|
84
|
-
__exportStar(require("node-opcua-service-read"), exports);
|
|
85
|
-
__exportStar(require("node-opcua-service-secure-channel"), exports);
|
|
86
|
-
__exportStar(require("node-opcua-service-session"), exports);
|
|
87
|
-
__exportStar(require("node-opcua-service-subscription"), exports);
|
|
88
|
-
__exportStar(require("node-opcua-service-translate-browse-path"), exports);
|
|
89
|
-
__exportStar(require("node-opcua-service-write"), exports);
|
|
90
|
-
__exportStar(require("node-opcua-service-filter"), exports);
|
|
91
|
-
var node_opcua_pseudo_session_1 = require("node-opcua-pseudo-session");
|
|
92
|
-
Object.defineProperty(exports, "browseAll", { enumerable: true, get: function () { return node_opcua_pseudo_session_1.browseAll; } });
|
|
93
|
-
Object.defineProperty(exports, "readNamespaceArray", { enumerable: true, get: function () { return node_opcua_pseudo_session_1.readNamespaceArray; } });
|
|
94
|
-
__exportStar(require("node-opcua-client-dynamic-extension-object"), exports);
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* @module node-opcua-client
|
|
4
|
+
*/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
17
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
18
|
+
};
|
|
19
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
+
exports.readNamespaceArray = exports.browseAll = exports.makeApplicationUrn = exports.StatusCodes = exports.StatusCode = exports.coerceExpandedNodeId = exports.makeExpandedNodeId = exports.ExpandedNodeId = exports.sameNodeId = exports.coerceNodeId = exports.makeNodeId = exports.resolveNodeId = exports.NodeId = exports.hexDump = exports.crypto_utils = exports.utils = exports.ClientSecureChannelLayer = exports.SecurityPolicy = exports.ServiceCounterDataType = exports.ServerState = exports.ClientSidePublishEngine = exports.assert = void 0;
|
|
21
|
+
__exportStar(require("./client_base"), exports);
|
|
22
|
+
__exportStar(require("./opcua_client"), exports);
|
|
23
|
+
__exportStar(require("./client_session"), exports);
|
|
24
|
+
__exportStar(require("./client_subscription"), exports);
|
|
25
|
+
__exportStar(require("./client_monitored_item_base"), exports);
|
|
26
|
+
__exportStar(require("./client_monitored_item"), exports);
|
|
27
|
+
__exportStar(require("./client_monitored_item_group"), exports);
|
|
28
|
+
__exportStar(require("./alarms_and_conditions/client_tools"), exports);
|
|
29
|
+
__exportStar(require("./alarms_and_conditions/client_alarm"), exports);
|
|
30
|
+
__exportStar(require("./alarms_and_conditions/client_alarm_list"), exports);
|
|
31
|
+
__exportStar(require("./alarms_and_conditions/client_alarm_tools"), exports);
|
|
32
|
+
__exportStar(require("./alarms_and_conditions/client_alarm_tools_extractConditionFields"), exports);
|
|
33
|
+
__exportStar(require("./alarms_and_conditions/client_alarm_tools_dump_event"), exports);
|
|
34
|
+
__exportStar(require("./alarms_and_conditions/client_alarm_tools_acknowledge_all_conditions"), exports);
|
|
35
|
+
__exportStar(require("./tools/findservers"), exports);
|
|
36
|
+
__exportStar(require("./tools/read_history_server_capabilities"), exports);
|
|
37
|
+
__exportStar(require("./client_utils"), exports);
|
|
38
|
+
__exportStar(require("./verify"), exports);
|
|
39
|
+
__exportStar(require("./user_identity_info"), exports);
|
|
40
|
+
var node_opcua_assert_1 = require("node-opcua-assert");
|
|
41
|
+
Object.defineProperty(exports, "assert", { enumerable: true, get: function () { return node_opcua_assert_1.assert; } });
|
|
42
|
+
__exportStar(require("node-opcua-utils"), exports);
|
|
43
|
+
var client_publish_engine_1 = require("./private/client_publish_engine");
|
|
44
|
+
Object.defineProperty(exports, "ClientSidePublishEngine", { enumerable: true, get: function () { return client_publish_engine_1.ClientSidePublishEngine; } });
|
|
45
|
+
var node_opcua_common_1 = require("node-opcua-common");
|
|
46
|
+
Object.defineProperty(exports, "ServerState", { enumerable: true, get: function () { return node_opcua_common_1.ServerState; } });
|
|
47
|
+
Object.defineProperty(exports, "ServiceCounterDataType", { enumerable: true, get: function () { return node_opcua_common_1.ServiceCounterDataType; } });
|
|
48
|
+
var node_opcua_secure_channel_1 = require("node-opcua-secure-channel");
|
|
49
|
+
Object.defineProperty(exports, "SecurityPolicy", { enumerable: true, get: function () { return node_opcua_secure_channel_1.SecurityPolicy; } });
|
|
50
|
+
Object.defineProperty(exports, "ClientSecureChannelLayer", { enumerable: true, get: function () { return node_opcua_secure_channel_1.ClientSecureChannelLayer; } });
|
|
51
|
+
const utils1 = require("node-opcua-utils");
|
|
52
|
+
exports.utils = utils1;
|
|
53
|
+
const crypto_util1 = require("node-opcua-crypto");
|
|
54
|
+
exports.crypto_utils = crypto_util1;
|
|
55
|
+
var node_opcua_debug_1 = require("node-opcua-debug");
|
|
56
|
+
Object.defineProperty(exports, "hexDump", { enumerable: true, get: function () { return node_opcua_debug_1.hexDump; } });
|
|
57
|
+
///
|
|
58
|
+
var node_opcua_nodeid_1 = require("node-opcua-nodeid");
|
|
59
|
+
Object.defineProperty(exports, "NodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.NodeId; } });
|
|
60
|
+
Object.defineProperty(exports, "resolveNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.resolveNodeId; } });
|
|
61
|
+
Object.defineProperty(exports, "makeNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeNodeId; } });
|
|
62
|
+
Object.defineProperty(exports, "coerceNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceNodeId; } });
|
|
63
|
+
Object.defineProperty(exports, "sameNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.sameNodeId; } });
|
|
64
|
+
Object.defineProperty(exports, "ExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.ExpandedNodeId; } });
|
|
65
|
+
Object.defineProperty(exports, "makeExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.makeExpandedNodeId; } });
|
|
66
|
+
Object.defineProperty(exports, "coerceExpandedNodeId", { enumerable: true, get: function () { return node_opcua_nodeid_1.coerceExpandedNodeId; } });
|
|
67
|
+
var node_opcua_status_code_1 = require("node-opcua-status-code");
|
|
68
|
+
Object.defineProperty(exports, "StatusCode", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCode; } });
|
|
69
|
+
Object.defineProperty(exports, "StatusCodes", { enumerable: true, get: function () { return node_opcua_status_code_1.StatusCodes; } });
|
|
70
|
+
__exportStar(require("node-opcua-variant"), exports);
|
|
71
|
+
__exportStar(require("node-opcua-data-value"), exports);
|
|
72
|
+
__exportStar(require("node-opcua-data-model"), exports);
|
|
73
|
+
__exportStar(require("node-opcua-constants"), exports);
|
|
74
|
+
__exportStar(require("node-opcua-secure-channel"), exports);
|
|
75
|
+
var node_opcua_common_2 = require("node-opcua-common");
|
|
76
|
+
Object.defineProperty(exports, "makeApplicationUrn", { enumerable: true, get: function () { return node_opcua_common_2.makeApplicationUrn; } });
|
|
77
|
+
__exportStar(require("node-opcua-service-endpoints"), exports);
|
|
78
|
+
__exportStar(require("node-opcua-service-browse"), exports);
|
|
79
|
+
__exportStar(require("node-opcua-service-call"), exports);
|
|
80
|
+
__exportStar(require("node-opcua-service-discovery"), exports);
|
|
81
|
+
__exportStar(require("node-opcua-service-endpoints"), exports);
|
|
82
|
+
__exportStar(require("node-opcua-service-history"), exports);
|
|
83
|
+
__exportStar(require("node-opcua-service-query"), exports);
|
|
84
|
+
__exportStar(require("node-opcua-service-read"), exports);
|
|
85
|
+
__exportStar(require("node-opcua-service-secure-channel"), exports);
|
|
86
|
+
__exportStar(require("node-opcua-service-session"), exports);
|
|
87
|
+
__exportStar(require("node-opcua-service-subscription"), exports);
|
|
88
|
+
__exportStar(require("node-opcua-service-translate-browse-path"), exports);
|
|
89
|
+
__exportStar(require("node-opcua-service-write"), exports);
|
|
90
|
+
__exportStar(require("node-opcua-service-filter"), exports);
|
|
91
|
+
var node_opcua_pseudo_session_1 = require("node-opcua-pseudo-session");
|
|
92
|
+
Object.defineProperty(exports, "browseAll", { enumerable: true, get: function () { return node_opcua_pseudo_session_1.browseAll; } });
|
|
93
|
+
Object.defineProperty(exports, "readNamespaceArray", { enumerable: true, get: function () { return node_opcua_pseudo_session_1.readNamespaceArray; } });
|
|
94
|
+
__exportStar(require("node-opcua-client-dynamic-extension-object"), exports);
|
|
95
95
|
//# sourceMappingURL=index.js.map
|