node-opcua-service-subscription 2.132.0 → 2.134.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.
@@ -11,17 +11,17 @@ export interface PseudoRange {
11
11
  high: number;
12
12
  }
13
13
  /**
14
- * @method isOutsideDeadbandNone
14
+
15
15
  * @return true if the element is in deadBand
16
16
  */
17
17
  export declare function isOutsideDeadbandNone(variant1: Variant, variant2: Variant): boolean;
18
18
  /**
19
- * @method isOutsideDeadbandAbsolute
19
+
20
20
  * @return true if the element is in deadBand
21
21
  */
22
22
  export declare function isOutsideDeadbandAbsolute(variant1: Variant, variant2: Variant, deadbandValue: number): boolean;
23
23
  /**
24
- * @method isOutsideDeadband
24
+
25
25
  * @return true if the element is outside deadBand
26
26
  */
27
27
  export declare function isOutsideDeadbandPercent(variant1: Variant, variant2: Variant, deadbandValuePercent: number, range: PseudoRange): boolean;
@@ -116,7 +116,7 @@ function isOutsideDeadbandVariant(v1, v2, absoluteDeadBand) {
116
116
  // }
117
117
  // }
118
118
  /**
119
- * @method isOutsideDeadbandNone
119
+
120
120
  * @return true if the element is in deadBand
121
121
  */
122
122
  function isOutsideDeadbandNone(variant1, variant2) {
@@ -124,7 +124,7 @@ function isOutsideDeadbandNone(variant1, variant2) {
124
124
  return variant1.value !== variant2.value;
125
125
  }
126
126
  /**
127
- * @method isOutsideDeadbandAbsolute
127
+
128
128
  * @return true if the element is in deadBand
129
129
  */
130
130
  function isOutsideDeadbandAbsolute(variant1, variant2, deadbandValue) {
@@ -132,7 +132,7 @@ function isOutsideDeadbandAbsolute(variant1, variant2, deadbandValue) {
132
132
  return isOutsideDeadbandVariant(variant1, variant2, deadbandValue);
133
133
  }
134
134
  /**
135
- * @method isOutsideDeadband
135
+
136
136
  * @return true if the element is outside deadBand
137
137
  */
138
138
  function isOutsideDeadbandPercent(variant1, variant2, deadbandValuePercent, range) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-opcua-service-subscription",
3
- "version": "2.132.0",
3
+ "version": "2.134.0",
4
4
  "description": "pure nodejs OPCUA SDK - module service-subscription",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,17 +12,17 @@
12
12
  },
13
13
  "dependencies": {
14
14
  "node-opcua-assert": "2.120.0",
15
- "node-opcua-types": "2.132.0",
16
- "node-opcua-variant": "2.132.0"
15
+ "node-opcua-types": "2.134.0",
16
+ "node-opcua-variant": "2.134.0"
17
17
  },
18
18
  "devDependencies": {
19
- "node-opcua-buffer-utils": "2.128.0",
20
- "node-opcua-debug": "2.128.0",
21
- "node-opcua-nodeid": "2.128.0",
22
- "node-opcua-packet-analyzer": "2.132.0",
23
- "node-opcua-secure-channel": "2.132.0",
24
- "node-opcua-service-read": "2.132.0",
25
- "node-opcua-status-code": "2.128.0"
19
+ "node-opcua-buffer-utils": "2.133.0",
20
+ "node-opcua-debug": "2.133.0",
21
+ "node-opcua-nodeid": "2.133.0",
22
+ "node-opcua-packet-analyzer": "2.134.0",
23
+ "node-opcua-secure-channel": "2.134.0",
24
+ "node-opcua-service-read": "2.134.0",
25
+ "node-opcua-status-code": "2.133.0"
26
26
  },
27
27
  "author": "Etienne Rossignon",
28
28
  "license": "MIT",
@@ -39,7 +39,7 @@
39
39
  "internet of things"
40
40
  ],
41
41
  "homepage": "http://node-opcua.github.io/",
42
- "gitHead": "5fab0f1eac0e59abf94bab9034035aec44890456",
42
+ "gitHead": "ccb34926a3c195f6a7e66fca58a2f101858e78be",
43
43
  "files": [
44
44
  "dist",
45
45
  "source"
@@ -124,7 +124,7 @@ function isOutsideDeadbandVariant(v1: Variant, v2: Variant, absoluteDeadBand: nu
124
124
  // }
125
125
 
126
126
  /**
127
- * @method isOutsideDeadbandNone
127
+
128
128
  * @return true if the element is in deadBand
129
129
  */
130
130
  export function isOutsideDeadbandNone(variant1: Variant, variant2: Variant): boolean {
@@ -132,7 +132,7 @@ export function isOutsideDeadbandNone(variant1: Variant, variant2: Variant): boo
132
132
  return variant1.value !== variant2.value;
133
133
  }
134
134
  /**
135
- * @method isOutsideDeadbandAbsolute
135
+
136
136
  * @return true if the element is in deadBand
137
137
  */
138
138
  export function isOutsideDeadbandAbsolute(variant1: Variant, variant2: Variant, deadbandValue: number): boolean {
@@ -141,7 +141,7 @@ export function isOutsideDeadbandAbsolute(variant1: Variant, variant2: Variant,
141
141
  }
142
142
 
143
143
  /**
144
- * @method isOutsideDeadband
144
+
145
145
  * @return true if the element is outside deadBand
146
146
  */
147
147
  export function isOutsideDeadbandPercent(variant1: Variant, variant2: Variant, deadbandValuePercent: number, range: PseudoRange): boolean {