node-opcua-service-filter
Advanced tools
Comparing version 2.126.0 to 2.128.0
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.checkSelectClauses = exports.checkSelectClause = void 0; | ||
exports.checkSelectClause = checkSelectClause; | ||
exports.checkSelectClauses = checkSelectClauses; | ||
/** | ||
@@ -41,3 +42,2 @@ * @module node-opcua-address-space | ||
} | ||
exports.checkSelectClause = checkSelectClause; | ||
/** | ||
@@ -52,3 +52,2 @@ * @method checkSelectClauses | ||
} | ||
exports.checkSelectClauses = checkSelectClauses; | ||
//# sourceMappingURL=check_event_clause.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.checkFilter = void 0; | ||
exports.checkFilter = checkFilter; | ||
const node_opcua_types_1 = require("node-opcua-types"); | ||
@@ -249,3 +249,2 @@ const node_opcua_variant_1 = require("node-opcua-variant"); | ||
} | ||
exports.checkFilter = checkFilter; | ||
//# sourceMappingURL=check_where_clause.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.extractEventFieldsBase = exports.extractEventField = void 0; | ||
exports.extractEventField = extractEventField; | ||
exports.extractEventFieldsBase = extractEventFieldsBase; | ||
const node_opcua_assert_1 = require("node-opcua-assert"); | ||
@@ -46,3 +47,2 @@ const node_opcua_data_model_1 = require("node-opcua-data-model"); | ||
} | ||
exports.extractEventField = extractEventField; | ||
function extractEventFieldsBase(context, selectClauses) { | ||
@@ -53,3 +53,2 @@ (0, node_opcua_assert_1.assert)(Array.isArray(selectClauses)); | ||
} | ||
exports.extractEventFieldsBase = extractEventFieldsBase; | ||
//# sourceMappingURL=extract_event_field.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.makeContentFilter = exports.makeContentFilterElements = exports.inList = exports.greaterThan = exports.greaterThanOrEqual = exports.LessThanOrEqual = exports.lessThan = exports.and = exports.or = exports.s = exports.n = exports.l = exports.ofType = void 0; | ||
exports.ofType = ofType; | ||
exports.l = l; | ||
exports.n = n; | ||
exports.s = s; | ||
exports.or = or; | ||
exports.and = and; | ||
exports.lessThan = lessThan; | ||
exports.LessThanOrEqual = LessThanOrEqual; | ||
exports.greaterThanOrEqual = greaterThanOrEqual; | ||
exports.greaterThan = greaterThan; | ||
exports.inList = inList; | ||
exports.makeContentFilterElements = makeContentFilterElements; | ||
exports.makeContentFilter = makeContentFilter; | ||
/** | ||
@@ -26,3 +38,2 @@ * @module node-opcua-service-filter | ||
} | ||
exports.ofType = ofType; | ||
function l(dataType, value) { | ||
@@ -35,7 +46,5 @@ switch (dataType) { | ||
} | ||
exports.l = l; | ||
function n(n) { | ||
return l(node_opcua_basic_types_1.DataType.NodeId, n); | ||
} | ||
exports.n = n; | ||
function s(attributeId, path) { | ||
@@ -47,3 +56,2 @@ return new imports_1.SimpleAttributeOperand({ | ||
} | ||
exports.s = s; | ||
function or(a, b) { | ||
@@ -55,3 +63,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.or = or; | ||
function and(a, b) { | ||
@@ -63,3 +70,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.and = and; | ||
function lessThan(a, b) { | ||
@@ -71,3 +77,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.lessThan = lessThan; | ||
function LessThanOrEqual(a, b) { | ||
@@ -79,3 +84,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.LessThanOrEqual = LessThanOrEqual; | ||
function greaterThanOrEqual(a, b) { | ||
@@ -87,3 +91,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.greaterThanOrEqual = greaterThanOrEqual; | ||
function greaterThan(a, b) { | ||
@@ -95,3 +98,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.greaterThan = greaterThan; | ||
function inList(a, l) { | ||
@@ -103,3 +105,2 @@ return new imports_1.ContentFilterElement({ | ||
} | ||
exports.inList = inList; | ||
function makeContentFilterElements(o) { | ||
@@ -124,3 +125,2 @@ const elements = []; | ||
} | ||
exports.makeContentFilterElements = makeContentFilterElements; | ||
function makeContentFilter(o) { | ||
@@ -131,3 +131,2 @@ return new imports_1.ContentFilter({ | ||
} | ||
exports.makeContentFilter = makeContentFilter; | ||
//# sourceMappingURL=make_content_filter.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.extractEventFields = void 0; | ||
exports.extractEventFields = extractEventFields; | ||
// | ||
@@ -17,3 +17,2 @@ const extract_event_field_1 = require("../extract_event_field"); | ||
} | ||
exports.extractEventFields = extractEventFields; | ||
//# sourceMappingURL=extract_event_fields.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.resolveOperand = void 0; | ||
exports.resolveOperand = resolveOperand; | ||
const node_opcua_data_model_1 = require("node-opcua-data-model"); | ||
@@ -46,3 +46,2 @@ const node_opcua_debug_1 = require("node-opcua-debug"); | ||
} | ||
exports.resolveOperand = resolveOperand; | ||
//# sourceMappingURL=resolve_operand.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.constructEventFilter = exports.constructSelectClause = exports.constructSimpleBrowsePath = void 0; | ||
exports.constructSimpleBrowsePath = constructSimpleBrowsePath; | ||
exports.constructSelectClause = constructSelectClause; | ||
exports.constructEventFilter = constructEventFilter; | ||
/** | ||
@@ -24,3 +26,2 @@ * @module node-opcua-service-filter | ||
} | ||
exports.constructSimpleBrowsePath = constructSimpleBrowsePath; | ||
function constructSelectClause(arrayOfNames) { | ||
@@ -71,3 +72,2 @@ if (!Array.isArray(arrayOfNames)) { | ||
} | ||
exports.constructSelectClause = constructSelectClause; | ||
/** | ||
@@ -99,3 +99,2 @@ * helper to construct event filters: | ||
} | ||
exports.constructEventFilter = constructEventFilter; | ||
//# sourceMappingURL=tools_event_filter.js.map |
{ | ||
"name": "node-opcua-service-filter", | ||
"version": "2.126.0", | ||
"version": "2.128.0", | ||
"description": "pure nodejs OPCUA SDK - module service-filter", | ||
@@ -13,20 +13,19 @@ "main": "./dist/index.js", | ||
"dependencies": { | ||
"node-opcua-address-space-base": "2.126.0", | ||
"node-opcua-address-space-base": "2.128.0", | ||
"node-opcua-assert": "2.120.0", | ||
"node-opcua-basic-types": "2.126.0", | ||
"node-opcua-basic-types": "2.128.0", | ||
"node-opcua-constants": "2.125.0", | ||
"node-opcua-data-model": "2.126.0", | ||
"node-opcua-data-value": "2.126.0", | ||
"node-opcua-debug": "2.125.0", | ||
"node-opcua-extension-object": "2.126.0", | ||
"node-opcua-nodeid": "2.125.0", | ||
"node-opcua-service-translate-browse-path": "2.126.0", | ||
"node-opcua-status-code": "2.125.0", | ||
"node-opcua-types": "2.126.0", | ||
"node-opcua-variant": "2.126.0" | ||
"node-opcua-data-model": "2.128.0", | ||
"node-opcua-data-value": "2.128.0", | ||
"node-opcua-debug": "2.128.0", | ||
"node-opcua-extension-object": "2.128.0", | ||
"node-opcua-nodeid": "2.128.0", | ||
"node-opcua-service-translate-browse-path": "2.128.0", | ||
"node-opcua-status-code": "2.128.0", | ||
"node-opcua-types": "2.128.0", | ||
"node-opcua-variant": "2.128.0" | ||
}, | ||
"devDependencies": { | ||
"node-opcua-numeric-range": "2.126.0", | ||
"node-opcua-packet-analyzer": "2.126.0", | ||
"should": "^13.2.3" | ||
"node-opcua-numeric-range": "2.128.0", | ||
"node-opcua-packet-analyzer": "2.128.0" | ||
}, | ||
@@ -48,3 +47,3 @@ "author": "Etienne Rossignon", | ||
"homepage": "http://node-opcua.github.io/", | ||
"gitHead": "81b467f284c41813ab8caf17f6d20322d4734fdc", | ||
"gitHead": "67a73af6b831d8651a0e66ceb295f159cab4386b", | ||
"files": [ | ||
@@ -51,0 +50,0 @@ "dist", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
2
116101
1869
+ Addednode-opcua-address-space-base@2.128.0(transitive)
+ Addednode-opcua-basic-types@2.128.0(transitive)
+ Addednode-opcua-binary-stream@2.128.0(transitive)
+ Addednode-opcua-buffer-utils@2.128.0(transitive)
+ Addednode-opcua-data-model@2.128.0(transitive)
+ Addednode-opcua-data-value@2.128.0(transitive)
+ Addednode-opcua-date-time@2.128.0(transitive)
+ Addednode-opcua-debug@2.128.0(transitive)
+ Addednode-opcua-enum@2.128.0(transitive)
+ Addednode-opcua-extension-object@2.128.0(transitive)
+ Addednode-opcua-factory@2.128.0(transitive)
+ Addednode-opcua-generator@2.128.0(transitive)
+ Addednode-opcua-guid@2.128.0(transitive)
+ Addednode-opcua-nodeid@2.128.0(transitive)
+ Addednode-opcua-numeric-range@2.128.0(transitive)
+ Addednode-opcua-schemas@2.128.0(transitive)
+ Addednode-opcua-service-translate-browse-path@2.128.0(transitive)
+ Addednode-opcua-status-code@2.128.0(transitive)
+ Addednode-opcua-types@2.128.0(transitive)
+ Addednode-opcua-utils@2.128.0(transitive)
+ Addednode-opcua-variant@2.128.0(transitive)
+ Addednode-opcua-xml2json@2.128.0(transitive)
- Removednode-opcua-address-space-base@2.126.0(transitive)
- Removednode-opcua-basic-types@2.126.0(transitive)
- Removednode-opcua-binary-stream@2.125.0(transitive)
- Removednode-opcua-buffer-utils@2.125.0(transitive)
- Removednode-opcua-data-model@2.126.0(transitive)
- Removednode-opcua-data-value@2.126.0(transitive)
- Removednode-opcua-date-time@2.125.0(transitive)
- Removednode-opcua-debug@2.125.0(transitive)
- Removednode-opcua-enum@2.125.0(transitive)
- Removednode-opcua-extension-object@2.126.0(transitive)
- Removednode-opcua-factory@2.126.0(transitive)
- Removednode-opcua-generator@2.126.0(transitive)
- Removednode-opcua-guid@2.120.0(transitive)
- Removednode-opcua-nodeid@2.125.0(transitive)
- Removednode-opcua-numeric-range@2.126.0(transitive)
- Removednode-opcua-schemas@2.126.0(transitive)
- Removednode-opcua-service-translate-browse-path@2.126.0(transitive)
- Removednode-opcua-status-code@2.125.0(transitive)
- Removednode-opcua-types@2.126.0(transitive)
- Removednode-opcua-utils@2.125.0(transitive)
- Removednode-opcua-variant@2.126.0(transitive)
- Removednode-opcua-xml2json@2.125.0(transitive)
Updatednode-opcua-debug@2.128.0
Updatednode-opcua-nodeid@2.128.0
Updatednode-opcua-types@2.128.0
Updatednode-opcua-variant@2.128.0