eservices-core 1.0.447 → 1.0.449
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/classes/List.d.ts +1 -0
- package/dist/index.js +8 -1
- package/dist/utils/Filter.d.ts +1 -1
- package/package.json +1 -1
package/dist/classes/List.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.449
|
|
3
3
|
* (c) 2022 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -2441,6 +2441,9 @@ class List$2 extends EventEmitter {
|
|
|
2441
2441
|
__classPrivateFieldSet(this, _wait$1, v);
|
|
2442
2442
|
this.emit(List$2.EVENT_CHANGE_WAIT, v);
|
|
2443
2443
|
}
|
|
2444
|
+
get wait() {
|
|
2445
|
+
return __classPrivateFieldGet(this, _wait$1);
|
|
2446
|
+
}
|
|
2444
2447
|
read(ReadParams) {
|
|
2445
2448
|
var _a, _b;
|
|
2446
2449
|
this.wait = true;
|
|
@@ -4918,6 +4921,10 @@ function Filter(filters) {
|
|
|
4918
4921
|
return arrayFilter;
|
|
4919
4922
|
}
|
|
4920
4923
|
// String
|
|
4924
|
+
if (typeof values === 'number') {
|
|
4925
|
+
arrayFilter.push(`@${name} eq ${values}`);
|
|
4926
|
+
return arrayFilter;
|
|
4927
|
+
}
|
|
4921
4928
|
if (typeof values === 'string') {
|
|
4922
4929
|
if (values.length !== 0)
|
|
4923
4930
|
arrayFilter.push(`@${name} eq ${values}`);
|
package/dist/utils/Filter.d.ts
CHANGED