node-opcua-service-endpoints
Advanced tools
Comparing version 2.5.10 to 2.6.0-alpha.5
@@ -1,4 +0,1 @@ | ||
/** | ||
* @module node-opcua-service-endpoints | ||
*/ | ||
export { ApplicationType, ApplicationDescription, ApplicationDescriptionOptions, UserTokenPolicy, EndpointDescription, UserIdentityToken, GetEndpointsRequest, GetEndpointsRequestOptions, GetEndpointsResponse, UserTokenType } from "node-opcua-types"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
* @module node-opcua-service-endpoints | ||
*/ | ||
// tslint:disable:max-line-length | ||
var node_opcua_types_1 = require("node-opcua-types"); | ||
exports.ApplicationType = node_opcua_types_1.ApplicationType; | ||
exports.ApplicationDescription = node_opcua_types_1.ApplicationDescription; | ||
exports.UserTokenPolicy = node_opcua_types_1.UserTokenPolicy; | ||
exports.EndpointDescription = node_opcua_types_1.EndpointDescription; | ||
exports.UserIdentityToken = node_opcua_types_1.UserIdentityToken; | ||
exports.GetEndpointsRequest = node_opcua_types_1.GetEndpointsRequest; | ||
exports.GetEndpointsResponse = node_opcua_types_1.GetEndpointsResponse; | ||
exports.UserTokenType = node_opcua_types_1.UserTokenType; | ||
// OPC Unified Architecture, Part 4 $7.1 page 106 | ||
// ApplicationDescription", | ||
// 0. applicationUri String The globally unique identifier for the application instance. | ||
// 1. productUri String The globally unique identifier for the product. | ||
// 2. applicationName LocalizedText A localized descriptive name for the application. | ||
// 3. applicationType ApplicationType The type of application. | ||
// 4. gatewayServerUri String A URI that identifies the Gateway Server associated with the discoveryUrls . | ||
// this flag is not used if applicationType === CLIENT | ||
// 5. discoveryProfileUri String A URI that identifies the discovery profile supported by the URLs provided | ||
// 6. discoveryUrls String[] A list of URLs for the discovery Endpoints provided by the application | ||
// OPC Unified Architecture, Part 4 page 121 | ||
// EndpointDescription", | ||
// endpointUrl String The URL for the Endpoint described. | ||
// server ApplicationDescription The description for the Server that the Endpoint belongs to. ( see part 4 - $7.1) | ||
// serverCertificate ByteString The application instance Certificate issued to the Server . | ||
// securityMode MessageSecurityMode The type of security to apply to the messages. ( see part 4 - $7.14.) | ||
// securityPolicyUri String The URI for SecurityPolicy to use when securing messages. | ||
// The set of known URIs and the SecurityPolicies associated with them are defined in Part 7. | ||
// userIdentityTokens UserTokenPolicy[] The user identity tokens that the Server will accept. ( see part 4 - $7.36) | ||
// The Client shall pass one of the UserIdentityTokens in the ActivateSession request. | ||
// transportProfileUri String The URI of the Transport Profile supported by the Endpoint . ( see part 7) | ||
// securityLevel Byte A numeric value that indicates how secure the EndpointDescription | ||
// is compared to other EndpointDescriptions for the same Server. | ||
// A value of 0 indicates that the EndpointDescription is not | ||
// recommended and is only supported for backward compatibility. | ||
// OPC Unified Architecture, Part 4 page 16 | ||
// GetEndpointsRequest | ||
// requestHeader RequestHeader | ||
// endpointUrl String The network address that the Client used to access the Discovery Endpoint . | ||
// The Server uses this information for diagnostics and to determine what | ||
// URLs to return in the response. | ||
// The Server should return a suitable default URL if it does not recognize | ||
// the HostName in the URL. | ||
// localeIds LocaleId[] List of locales to use. | ||
// Specifies the locale to use when returning human readable strings. | ||
// profileUri String[] List of transport profiles that the returned Endpoints shall support. | ||
/* | ||
Release 1.02 38 OPC Unified Architecture, Part 7 | ||
//User Token profiles | ||
http://opcfoundation.org/UA-Profile/ Security/UserToken-Server/UserNamePassword | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/X509Certificate | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/IssuedToken | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Server/IssuedTokenWindows | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/UserNamePassword | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/X509Certificate | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/IssuedToken | ||
http://opcfoundation.org/UA-Profile/Security/UserToken-Client/IssuedTokenWindows | ||
*/ | ||
// OPC Unified Architecture, Part 4 $7.36 page 160 | ||
// UserTokenPolicy | ||
// policyId String An identifier for the UserTokenPolicy assigned by the Server. | ||
// The Client specifies this value when it constructs a UserIdentityToken that | ||
// conforms to the policy. | ||
// This value is only unique within the context of a single Server. | ||
// tokenType UserTokenType | ||
// issuedTokenType String This field may only be specified if TokenType is ISSUEDTOKEN. | ||
// A URI for the type of token. Part 7 defines URIs for supported token types. | ||
// issuerEndpointUrl String A optional URL for the token issuing service. | ||
// ", defaultValue: null }, | ||
// securityPolicyUri String The security policy to use when encrypting or signing the UserToken when it is | ||
// passed to the Server in the ActivateSession request. see $7.35 | ||
// Release 1.02 155 OPC Unified Architecture, Part 4 | ||
// (If this SecurityPolicy is omitted then the Client uses the SecurityPolicy in the | ||
// EndpointDescription.) | ||
// ", defaultValue: null } | ||
// | ||
Object.defineProperty(exports, "ApplicationType", { enumerable: true, get: function () { return node_opcua_types_1.ApplicationType; } }); | ||
Object.defineProperty(exports, "ApplicationDescription", { enumerable: true, get: function () { return node_opcua_types_1.ApplicationDescription; } }); | ||
Object.defineProperty(exports, "UserTokenPolicy", { enumerable: true, get: function () { return node_opcua_types_1.UserTokenPolicy; } }); | ||
Object.defineProperty(exports, "EndpointDescription", { enumerable: true, get: function () { return node_opcua_types_1.EndpointDescription; } }); | ||
Object.defineProperty(exports, "UserIdentityToken", { enumerable: true, get: function () { return node_opcua_types_1.UserIdentityToken; } }); | ||
Object.defineProperty(exports, "GetEndpointsRequest", { enumerable: true, get: function () { return node_opcua_types_1.GetEndpointsRequest; } }); | ||
Object.defineProperty(exports, "GetEndpointsResponse", { enumerable: true, get: function () { return node_opcua_types_1.GetEndpointsResponse; } }); | ||
Object.defineProperty(exports, "UserTokenType", { enumerable: true, get: function () { return node_opcua_types_1.UserTokenType; } }); | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "node-opcua-service-endpoints", | ||
"version": "2.5.10", | ||
"version": "2.6.0-alpha.5+2620e75a", | ||
"description": "pure nodejs OPCUA SDK - module -service-endpoints", | ||
@@ -13,3 +13,3 @@ "main": "./dist/index.js", | ||
"dependencies": { | ||
"node-opcua-assert": "2.5.8", | ||
"node-opcua-assert": "^2.5.8", | ||
"node-opcua-basic-types": "^2.5.9", | ||
@@ -20,8 +20,8 @@ "node-opcua-binary-stream": "^2.5.9", | ||
"node-opcua-nodeid": "^2.5.9", | ||
"node-opcua-service-secure-channel": "^2.5.10", | ||
"node-opcua-types": "^2.5.10", | ||
"node-opcua-service-secure-channel": "^2.6.0-alpha.5+2620e75a", | ||
"node-opcua-types": "^2.6.0-alpha.5+2620e75a", | ||
"underscore": "^1.10.2" | ||
}, | ||
"devDependencies": { | ||
"node-opcua-generator": "^2.5.10", | ||
"node-opcua-generator": "^2.6.0-alpha.5+2620e75a", | ||
"should": "^13.2.3" | ||
@@ -44,3 +44,3 @@ }, | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "f83ada4e88fdeedc0710c5a3b75bbd4b44d9ff76" | ||
"gitHead": "2620e75a3de3fd14b2c084d864e39c3ea7003d10" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10815
102
1
1
- Removedansi-regex@2.1.1(transitive)
- Removedbetter-assert@1.0.2(transitive)
- Removedboolbase@1.0.0(transitive)
- Removedcallsite@1.0.0(transitive)
- Removedcss-select@4.3.0(transitive)
- Removedcss-what@6.1.0(transitive)
- Removeddom-converter@0.2.0(transitive)
- Removeddom-serializer@1.4.1(transitive)
- Removeddomelementtype@2.3.0(transitive)
- Removeddomhandler@4.3.1(transitive)
- Removeddomutils@2.8.0(transitive)
- Removedentities@2.2.0(transitive)
- Removedhtmlparser2@6.1.0(transitive)
- Removedlodash@4.17.21(transitive)
- Removednode-opcua-assert@2.5.8(transitive)
- Removednth-check@2.1.1(transitive)
- Removedpretty-error@2.1.2(transitive)
- Removedrenderkid@2.0.7(transitive)
- Removedstrip-ansi@3.0.1(transitive)
- Removedutila@0.4.0(transitive)
Updatednode-opcua-assert@^2.5.8
Updatednode-opcua-service-secure-channel@^2.6.0-alpha.5+2620e75a