@twintag/twintag-core 0.2.288 → 0.2.289

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.
@@ -204,7 +204,7 @@ class IndexedDbService {
204
204
  /**
205
205
  * The SDK version.
206
206
  */
207
- const VERSION = '0.0.0-VERSION';
207
+ const VERSION = '0.2.289';
208
208
 
209
209
  class TwintagErrorValue {
210
210
  }
@@ -829,6 +829,9 @@ class ListObject {
829
829
  filterPredicate += fe.lte
830
830
  ? this.getFilterValue(objName, fe.lte, '<=')
831
831
  : '';
832
+ filterPredicate += fe.like
833
+ ? this.getFilterValue(objName, fe.like, 'like:')
834
+ : '';
832
835
  }
833
836
  else {
834
837
  filterPredicate += `&filter=${encodeURIComponent(`${objName}=${this.handleTypes(objectsData)}`)}`;
@@ -2,4 +2,4 @@
2
2
  /**
3
3
  * The library version.
4
4
  */
5
- export const VERSION = '0.2.288';
5
+ export const VERSION = '0.2.289';
@@ -200,7 +200,7 @@ class IndexedDbService {
200
200
  /**
201
201
  * The SDK version.
202
202
  */
203
- const VERSION = '0.0.0-VERSION';
203
+ const VERSION = '0.2.289';
204
204
 
205
205
  class TwintagErrorValue {
206
206
  }
@@ -825,6 +825,9 @@ class ListObject {
825
825
  filterPredicate += fe.lte
826
826
  ? this.getFilterValue(objName, fe.lte, '<=')
827
827
  : '';
828
+ filterPredicate += fe.like
829
+ ? this.getFilterValue(objName, fe.like, 'like:')
830
+ : '';
828
831
  }
829
832
  else {
830
833
  filterPredicate += `&filter=${encodeURIComponent(`${objName}=${this.handleTypes(objectsData)}`)}`;
@@ -200,7 +200,7 @@ class IndexedDbService {
200
200
  /**
201
201
  * The SDK version.
202
202
  */
203
- const VERSION = '0.0.0-VERSION';
203
+ const VERSION = '0.2.289';
204
204
 
205
205
  class TwintagErrorValue {
206
206
  }
@@ -825,6 +825,9 @@ class ListObject {
825
825
  filterPredicate += fe.lte
826
826
  ? this.getFilterValue(objName, fe.lte, '<=')
827
827
  : '';
828
+ filterPredicate += fe.like
829
+ ? this.getFilterValue(objName, fe.like, 'like:')
830
+ : '';
828
831
  }
829
832
  else {
830
833
  filterPredicate += `&filter=${encodeURIComponent(`${objName}=${this.handleTypes(objectsData)}`)}`;