node-opcua-service-browse
Advanced tools
Comparing version 2.6.0-alpha.7 to 2.6.1
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
/** | ||
* @module node-opcua-service-browse | ||
*/ | ||
const node_opcua_types_1 = require("node-opcua-types"); | ||
@@ -22,9 +25,46 @@ var node_opcua_data_model_1 = require("node-opcua-data-model"); | ||
node_opcua_types_1.BrowseDescription.schema.fields[3].documentation = "Includes subtypes of the reference type."; | ||
// mask : | ||
// bit | ||
// 0 Object | ||
// 1 Variable | ||
// 2 Method | ||
// 3 ObjectType | ||
// 4 VariableType | ||
// 5 ReferenceType | ||
// 6 DataType | ||
// 7 View | ||
node_opcua_types_1.BrowseDescription.schema.fields[4].documentation = | ||
"A mask indicating which node classes to return. 0 means return all nodes."; | ||
// mask : (see ResultMask) | ||
// bit | ||
// 0 ReferenceType | ||
// 1 IsForward | ||
// 2 NodeClass | ||
// 3 BrowseName | ||
// 4 DisplayName | ||
// 5 TypeDefinition | ||
node_opcua_types_1.BrowseDescription.schema.fields[5].documentation = | ||
"A mask indicating which fields in the ReferenceDescription should be returned in the results."; | ||
node_opcua_types_1.BrowseNextRequest.schema.fields[0].documentation = "A standard header included in all requests sent to a server."; | ||
/* | ||
* | ||
* A Boolean parameter with the following values: | ||
* TRUE: passed continuationPoints shall be reset to free resources in the Server. The continuation points | ||
* are released and the results and diagnosticInfos arrays are empty. | ||
* FALSE: passed continuationPoints shall be used to get the next set of browse information. | ||
* | ||
* A Client shall always use the continuation point returned by a Browse or | ||
* BrowseNext response to free the resources for the continuation point in the | ||
* Server. If the Client does not want to get the next set of browse information, | ||
* BrowseNext shall be called with this parameter set to TRUE. | ||
*/ | ||
node_opcua_types_1.BrowseNextRequest.schema.fields[1].documentation = | ||
"If TRUE the continuation points are released and no results are returned."; | ||
/* | ||
* A list of Server-defined opaque values that represent continuation points. The value for a continuation point | ||
* was returned to the Client in a previous Browse or BrowseNext response. These values are used to identify the | ||
* previously processed Browse or BrowseNext request that is being continued and the point in the result set | ||
* from which the browse response is to continue | ||
* Clients may mix continuation points from different Browse or BrowseNext responses. | ||
*/ | ||
node_opcua_types_1.BrowseNextRequest.schema.fields[2].documentation = "The maximum number of references to return in the response."; | ||
@@ -37,3 +77,11 @@ node_opcua_types_1.BrowseNextResponse.schema.documentation = "Browse the references for one or more nodes from the server address space."; | ||
node_opcua_types_1.BrowseRequest.schema.fields[0].documentation = "A standard header included in all requests sent to a server."; | ||
/* | ||
* An empty ViewDescription value indicates the entire AddressSpace. | ||
* Use of the empty ViewDescription value causes all References of the nodesToBrowse to be returned. Use of any | ||
* other View causes only the References of the nodesToBrowse that are defined for that View to be returned. | ||
*/ | ||
node_opcua_types_1.BrowseRequest.schema.fields[1].documentation = "The view to browse."; | ||
// Indicates the maximum number of references to return for each starting Node | ||
// specified in the request. The value 0 indicates that the Client is imposing no | ||
// limitation (see 7.5 for Counter definition). | ||
node_opcua_types_1.BrowseRequest.schema.fields[2].documentation = "The maximum number of references to return in the response."; | ||
@@ -59,5 +107,15 @@ node_opcua_types_1.BrowseRequest.schema.fields[3].documentation = "The list of nodes to browse."; | ||
node_opcua_types_1.ViewDescription.schema.documentation = "the view to browse."; | ||
// ViewDescription : NodeId of the View to Query. A null value indicates the entire AddressSpace. | ||
node_opcua_types_1.ViewDescription.schema.fields[0].documentation = "The node id of the view."; | ||
// The time date desired. The corresponding version is the one with the closest | ||
// previous creation timestamp. Either the Timestamp or the viewVersion | ||
// parameter may be set by a Client, but not both. If ViewVersion is set this | ||
// parameter shall be null. | ||
node_opcua_types_1.ViewDescription.schema.fields[1].documentation = "Browses the view at or before this time."; | ||
// The version number for the View desired. When Nodes are added to or removed from a View, the value of a | ||
// View‟s ViewVersion Property is updated. Either the Timestamp or the viewVersion parameter may be set by | ||
// a Client, but not both. | ||
// The ViewVersion Property is defined in Part 3. If timestamp is set this parameter | ||
// shall be 0. The current view is used if timestamp is null and viewVersion is 0. | ||
node_opcua_types_1.ViewDescription.schema.fields[2].documentation = "Browses a specific version of the view ."; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "node-opcua-service-browse", | ||
"version": "2.6.0-alpha.7", | ||
"version": "2.6.1", | ||
"description": "pure nodejs OPCUA SDK - module -service-browse", | ||
@@ -13,19 +13,19 @@ "scripts": { | ||
"dependencies": { | ||
"node-opcua-assert": "^2.6.0-alpha.1", | ||
"node-opcua-basic-types": "^2.6.0-alpha.1", | ||
"node-opcua-binary-stream": "^2.6.0-alpha.1", | ||
"node-opcua-data-model": "^2.6.0-alpha.7", | ||
"node-opcua-factory": "^2.6.0-alpha.7", | ||
"node-opcua-nodeid": "^2.6.0-alpha.1", | ||
"node-opcua-service-secure-channel": "^2.6.0-alpha.7", | ||
"node-opcua-types": "^2.6.0-alpha.7", | ||
"node-opcua-assert": "^2.6.1", | ||
"node-opcua-basic-types": "^2.6.1", | ||
"node-opcua-binary-stream": "^2.6.1", | ||
"node-opcua-data-model": "^2.6.1", | ||
"node-opcua-factory": "^2.6.1", | ||
"node-opcua-nodeid": "^2.6.1", | ||
"node-opcua-service-secure-channel": "^2.6.1", | ||
"node-opcua-types": "^2.6.1", | ||
"underscore": "^1.10.2" | ||
}, | ||
"devDependencies": { | ||
"node-opcua-date-time": "^2.6.0-alpha.1", | ||
"node-opcua-debug": "^2.6.0-alpha.1", | ||
"node-opcua-generator": "^2.6.0-alpha.7", | ||
"node-opcua-packet-analyzer": "^2.6.0-alpha.7", | ||
"node-opcua-status-code": "^2.6.0-alpha.1", | ||
"node-opcua-variant": "^2.6.0-alpha.7", | ||
"node-opcua-date-time": "^2.6.1", | ||
"node-opcua-debug": "^2.6.1", | ||
"node-opcua-generator": "^2.6.1", | ||
"node-opcua-packet-analyzer": "^2.6.1", | ||
"node-opcua-status-code": "^2.6.1", | ||
"node-opcua-variant": "^2.6.1", | ||
"should": "^13.2.3" | ||
@@ -48,3 +48,3 @@ }, | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "6af0c6f183dcb96ddc5a2befc98851d0960c5fd0" | ||
"gitHead": "15f0c0f83232fc63310dc04fea187048c7a01e4b" | ||
} |
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
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
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
23355
239
0
Updatednode-opcua-assert@^2.6.1
Updatednode-opcua-data-model@^2.6.1
Updatednode-opcua-factory@^2.6.1
Updatednode-opcua-nodeid@^2.6.1
Updatednode-opcua-types@^2.6.1