node-opcua-service-endpoints 2.64.1 → 2.65.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 +4 -4
- package/dist/index.js +83 -83
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @module node-opcua-service-endpoints
|
|
3
|
-
*/
|
|
4
|
-
export { ApplicationType, ApplicationDescription, ApplicationDescriptionOptions, UserTokenPolicy, EndpointDescription, UserIdentityToken, GetEndpointsRequest, GetEndpointsRequestOptions, GetEndpointsResponse, UserTokenType } from "node-opcua-types";
|
|
1
|
+
/**
|
|
2
|
+
* @module node-opcua-service-endpoints
|
|
3
|
+
*/
|
|
4
|
+
export { ApplicationType, ApplicationDescription, ApplicationDescriptionOptions, UserTokenPolicy, EndpointDescription, UserIdentityToken, GetEndpointsRequest, GetEndpointsRequestOptions, GetEndpointsResponse, UserTokenType } from "node-opcua-types";
|
package/dist/index.js
CHANGED
|
@@ -1,84 +1,84 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserTokenType = exports.GetEndpointsResponse = exports.GetEndpointsRequest = exports.UserIdentityToken = exports.EndpointDescription = exports.UserTokenPolicy = exports.ApplicationDescription = exports.ApplicationType = void 0;
|
|
4
|
-
/**
|
|
5
|
-
* @module node-opcua-service-endpoints
|
|
6
|
-
*/
|
|
7
|
-
// tslint:disable:max-line-length
|
|
8
|
-
var node_opcua_types_1 = require("node-opcua-types");
|
|
9
|
-
Object.defineProperty(exports, "ApplicationType", { enumerable: true, get: function () { return node_opcua_types_1.ApplicationType; } });
|
|
10
|
-
Object.defineProperty(exports, "ApplicationDescription", { enumerable: true, get: function () { return node_opcua_types_1.ApplicationDescription; } });
|
|
11
|
-
Object.defineProperty(exports, "UserTokenPolicy", { enumerable: true, get: function () { return node_opcua_types_1.UserTokenPolicy; } });
|
|
12
|
-
Object.defineProperty(exports, "EndpointDescription", { enumerable: true, get: function () { return node_opcua_types_1.EndpointDescription; } });
|
|
13
|
-
Object.defineProperty(exports, "UserIdentityToken", { enumerable: true, get: function () { return node_opcua_types_1.UserIdentityToken; } });
|
|
14
|
-
Object.defineProperty(exports, "GetEndpointsRequest", { enumerable: true, get: function () { return node_opcua_types_1.GetEndpointsRequest; } });
|
|
15
|
-
Object.defineProperty(exports, "GetEndpointsResponse", { enumerable: true, get: function () { return node_opcua_types_1.GetEndpointsResponse; } });
|
|
16
|
-
Object.defineProperty(exports, "UserTokenType", { enumerable: true, get: function () { return node_opcua_types_1.UserTokenType; } });
|
|
17
|
-
// OPC Unified Architecture, Part 4 $7.1 page 106
|
|
18
|
-
// ApplicationDescription",
|
|
19
|
-
// 0. applicationUri String The globally unique identifier for the application instance.
|
|
20
|
-
// 1. productUri String The globally unique identifier for the product.
|
|
21
|
-
// 2. applicationName LocalizedText A localized descriptive name for the application.
|
|
22
|
-
// 3. applicationType ApplicationType The type of application.
|
|
23
|
-
// 4. gatewayServerUri String A URI that identifies the Gateway Server associated with the discoveryUrls .
|
|
24
|
-
// this flag is not used if applicationType === CLIENT
|
|
25
|
-
// 5. discoveryProfileUri String A URI that identifies the discovery profile supported by the URLs provided
|
|
26
|
-
// 6. discoveryUrls String[] A list of URLs for the discovery Endpoints provided by the application
|
|
27
|
-
// OPC Unified Architecture, Part 4 page 121
|
|
28
|
-
// EndpointDescription",
|
|
29
|
-
// endpointUrl String The URL for the Endpoint described.
|
|
30
|
-
// server ApplicationDescription The description for the Server that the Endpoint belongs to. ( see part 4 - $7.1)
|
|
31
|
-
// serverCertificate ByteString The application instance Certificate issued to the Server .
|
|
32
|
-
// securityMode MessageSecurityMode The type of security to apply to the messages. ( see part 4 - $7.14.)
|
|
33
|
-
// securityPolicyUri String The URI for SecurityPolicy to use when securing messages.
|
|
34
|
-
// The set of known URIs and the SecurityPolicies associated with them are defined in Part 7.
|
|
35
|
-
// userIdentityTokens UserTokenPolicy[] The user identity tokens that the Server will accept. ( see part 4 - $7.36)
|
|
36
|
-
// The Client shall pass one of the UserIdentityTokens in the ActivateSession request.
|
|
37
|
-
// transportProfileUri String The URI of the Transport Profile supported by the Endpoint . ( see part 7)
|
|
38
|
-
// securityLevel Byte A numeric value that indicates how secure the EndpointDescription
|
|
39
|
-
// is compared to other EndpointDescriptions for the same Server.
|
|
40
|
-
// A value of 0 indicates that the EndpointDescription is not
|
|
41
|
-
// recommended and is only supported for backward compatibility.
|
|
42
|
-
// OPC Unified Architecture, Part 4 page 16
|
|
43
|
-
// GetEndpointsRequest
|
|
44
|
-
// requestHeader RequestHeader
|
|
45
|
-
// endpointUrl String The network address that the Client used to access the Discovery Endpoint .
|
|
46
|
-
// The Server uses this information for diagnostics and to determine what
|
|
47
|
-
// URLs to return in the response.
|
|
48
|
-
// The Server should return a suitable default URL if it does not recognize
|
|
49
|
-
// the HostName in the URL.
|
|
50
|
-
// localeIds LocaleId[] List of locales to use.
|
|
51
|
-
// Specifies the locale to use when returning human readable strings.
|
|
52
|
-
// profileUri String[] List of transport profiles that the returned Endpoints shall support.
|
|
53
|
-
/*
|
|
54
|
-
Release 1.02 38 OPC Unified Architecture, Part 7
|
|
55
|
-
//User Token profiles
|
|
56
|
-
http://opcfoundation.org/UA-Profile/ Security/UserToken-Server/UserNamePassword
|
|
57
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/X509Certificate
|
|
58
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/IssuedToken
|
|
59
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/IssuedTokenWindows
|
|
60
|
-
|
|
61
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/UserNamePassword
|
|
62
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/X509Certificate
|
|
63
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/IssuedToken
|
|
64
|
-
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/IssuedTokenWindows
|
|
65
|
-
*/
|
|
66
|
-
// OPC Unified Architecture, Part 4 $7.36 page 160
|
|
67
|
-
// UserTokenPolicy
|
|
68
|
-
// policyId String An identifier for the UserTokenPolicy assigned by the Server.
|
|
69
|
-
// The Client specifies this value when it constructs a UserIdentityToken that
|
|
70
|
-
// conforms to the policy.
|
|
71
|
-
// This value is only unique within the context of a single Server.
|
|
72
|
-
// tokenType UserTokenType
|
|
73
|
-
// issuedTokenType String This field may only be specified if TokenType is ISSUEDTOKEN.
|
|
74
|
-
// A URI for the type of token. Part 7 defines URIs for supported token types.
|
|
75
|
-
// issuerEndpointUrl String A optional URL for the token issuing service.
|
|
76
|
-
// ", defaultValue: null },
|
|
77
|
-
// securityPolicyUri String The security policy to use when encrypting or signing the UserToken when it is
|
|
78
|
-
// passed to the Server in the ActivateSession request. see $7.35
|
|
79
|
-
// Release 1.02 155 OPC Unified Architecture, Part 4
|
|
80
|
-
// (If this SecurityPolicy is omitted then the Client uses the SecurityPolicy in the
|
|
81
|
-
// EndpointDescription.)
|
|
82
|
-
// ", defaultValue: null }
|
|
83
|
-
//
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UserTokenType = exports.GetEndpointsResponse = exports.GetEndpointsRequest = exports.UserIdentityToken = exports.EndpointDescription = exports.UserTokenPolicy = exports.ApplicationDescription = exports.ApplicationType = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* @module node-opcua-service-endpoints
|
|
6
|
+
*/
|
|
7
|
+
// tslint:disable:max-line-length
|
|
8
|
+
var node_opcua_types_1 = require("node-opcua-types");
|
|
9
|
+
Object.defineProperty(exports, "ApplicationType", { enumerable: true, get: function () { return node_opcua_types_1.ApplicationType; } });
|
|
10
|
+
Object.defineProperty(exports, "ApplicationDescription", { enumerable: true, get: function () { return node_opcua_types_1.ApplicationDescription; } });
|
|
11
|
+
Object.defineProperty(exports, "UserTokenPolicy", { enumerable: true, get: function () { return node_opcua_types_1.UserTokenPolicy; } });
|
|
12
|
+
Object.defineProperty(exports, "EndpointDescription", { enumerable: true, get: function () { return node_opcua_types_1.EndpointDescription; } });
|
|
13
|
+
Object.defineProperty(exports, "UserIdentityToken", { enumerable: true, get: function () { return node_opcua_types_1.UserIdentityToken; } });
|
|
14
|
+
Object.defineProperty(exports, "GetEndpointsRequest", { enumerable: true, get: function () { return node_opcua_types_1.GetEndpointsRequest; } });
|
|
15
|
+
Object.defineProperty(exports, "GetEndpointsResponse", { enumerable: true, get: function () { return node_opcua_types_1.GetEndpointsResponse; } });
|
|
16
|
+
Object.defineProperty(exports, "UserTokenType", { enumerable: true, get: function () { return node_opcua_types_1.UserTokenType; } });
|
|
17
|
+
// OPC Unified Architecture, Part 4 $7.1 page 106
|
|
18
|
+
// ApplicationDescription",
|
|
19
|
+
// 0. applicationUri String The globally unique identifier for the application instance.
|
|
20
|
+
// 1. productUri String The globally unique identifier for the product.
|
|
21
|
+
// 2. applicationName LocalizedText A localized descriptive name for the application.
|
|
22
|
+
// 3. applicationType ApplicationType The type of application.
|
|
23
|
+
// 4. gatewayServerUri String A URI that identifies the Gateway Server associated with the discoveryUrls .
|
|
24
|
+
// this flag is not used if applicationType === CLIENT
|
|
25
|
+
// 5. discoveryProfileUri String A URI that identifies the discovery profile supported by the URLs provided
|
|
26
|
+
// 6. discoveryUrls String[] A list of URLs for the discovery Endpoints provided by the application
|
|
27
|
+
// OPC Unified Architecture, Part 4 page 121
|
|
28
|
+
// EndpointDescription",
|
|
29
|
+
// endpointUrl String The URL for the Endpoint described.
|
|
30
|
+
// server ApplicationDescription The description for the Server that the Endpoint belongs to. ( see part 4 - $7.1)
|
|
31
|
+
// serverCertificate ByteString The application instance Certificate issued to the Server .
|
|
32
|
+
// securityMode MessageSecurityMode The type of security to apply to the messages. ( see part 4 - $7.14.)
|
|
33
|
+
// securityPolicyUri String The URI for SecurityPolicy to use when securing messages.
|
|
34
|
+
// The set of known URIs and the SecurityPolicies associated with them are defined in Part 7.
|
|
35
|
+
// userIdentityTokens UserTokenPolicy[] The user identity tokens that the Server will accept. ( see part 4 - $7.36)
|
|
36
|
+
// The Client shall pass one of the UserIdentityTokens in the ActivateSession request.
|
|
37
|
+
// transportProfileUri String The URI of the Transport Profile supported by the Endpoint . ( see part 7)
|
|
38
|
+
// securityLevel Byte A numeric value that indicates how secure the EndpointDescription
|
|
39
|
+
// is compared to other EndpointDescriptions for the same Server.
|
|
40
|
+
// A value of 0 indicates that the EndpointDescription is not
|
|
41
|
+
// recommended and is only supported for backward compatibility.
|
|
42
|
+
// OPC Unified Architecture, Part 4 page 16
|
|
43
|
+
// GetEndpointsRequest
|
|
44
|
+
// requestHeader RequestHeader
|
|
45
|
+
// endpointUrl String The network address that the Client used to access the Discovery Endpoint .
|
|
46
|
+
// The Server uses this information for diagnostics and to determine what
|
|
47
|
+
// URLs to return in the response.
|
|
48
|
+
// The Server should return a suitable default URL if it does not recognize
|
|
49
|
+
// the HostName in the URL.
|
|
50
|
+
// localeIds LocaleId[] List of locales to use.
|
|
51
|
+
// Specifies the locale to use when returning human readable strings.
|
|
52
|
+
// profileUri String[] List of transport profiles that the returned Endpoints shall support.
|
|
53
|
+
/*
|
|
54
|
+
Release 1.02 38 OPC Unified Architecture, Part 7
|
|
55
|
+
//User Token profiles
|
|
56
|
+
http://opcfoundation.org/UA-Profile/ Security/UserToken-Server/UserNamePassword
|
|
57
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/X509Certificate
|
|
58
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/IssuedToken
|
|
59
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/IssuedTokenWindows
|
|
60
|
+
|
|
61
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/UserNamePassword
|
|
62
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/X509Certificate
|
|
63
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/IssuedToken
|
|
64
|
+
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/IssuedTokenWindows
|
|
65
|
+
*/
|
|
66
|
+
// OPC Unified Architecture, Part 4 $7.36 page 160
|
|
67
|
+
// UserTokenPolicy
|
|
68
|
+
// policyId String An identifier for the UserTokenPolicy assigned by the Server.
|
|
69
|
+
// The Client specifies this value when it constructs a UserIdentityToken that
|
|
70
|
+
// conforms to the policy.
|
|
71
|
+
// This value is only unique within the context of a single Server.
|
|
72
|
+
// tokenType UserTokenType
|
|
73
|
+
// issuedTokenType String This field may only be specified if TokenType is ISSUEDTOKEN.
|
|
74
|
+
// A URI for the type of token. Part 7 defines URIs for supported token types.
|
|
75
|
+
// issuerEndpointUrl String A optional URL for the token issuing service.
|
|
76
|
+
// ", defaultValue: null },
|
|
77
|
+
// securityPolicyUri String The security policy to use when encrypting or signing the UserToken when it is
|
|
78
|
+
// passed to the Server in the ActivateSession request. see $7.35
|
|
79
|
+
// Release 1.02 155 OPC Unified Architecture, Part 4
|
|
80
|
+
// (If this SecurityPolicy is omitted then the Client uses the SecurityPolicy in the
|
|
81
|
+
// EndpointDescription.)
|
|
82
|
+
// ", defaultValue: null }
|
|
83
|
+
//
|
|
84
84
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-opcua-service-endpoints",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.65.0",
|
|
4
4
|
"description": "pure nodejs OPCUA SDK - module -service-endpoints",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"node-opcua-data-model": "2.64.1",
|
|
17
17
|
"node-opcua-factory": "2.64.1",
|
|
18
18
|
"node-opcua-nodeid": "2.64.1",
|
|
19
|
-
"node-opcua-service-secure-channel": "2.
|
|
20
|
-
"node-opcua-types": "2.
|
|
19
|
+
"node-opcua-service-secure-channel": "2.65.0",
|
|
20
|
+
"node-opcua-types": "2.65.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"should": "^13.2.3"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"internet of things"
|
|
38
38
|
],
|
|
39
39
|
"homepage": "http://node-opcua.github.io/",
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "59b9cae30fb45633ad501f9cf3b74fb9d05e8960"
|
|
41
41
|
}
|