@punks/backend-entity-manager 0.0.218 → 0.0.219

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/cjs/index.js CHANGED
@@ -2828,12 +2828,18 @@ class QueryClauseBuilder {
2828
2828
  if (!!filter?.eq) {
2829
2829
  clauses.push(typeorm.Equal(filter.eq));
2830
2830
  }
2831
+ if (!!filter?.ieq) {
2832
+ clauses.push(typeorm.ILike(filter.eq));
2833
+ }
2831
2834
  if (!!filter?.like) {
2832
2835
  clauses.push(typeorm.Like(filter.like.replaceAll("*", "%")));
2833
2836
  }
2834
2837
  if (!!filter?.ne) {
2835
2838
  clauses.push(typeorm.Not(typeorm.Equal(filter.ne)));
2836
2839
  }
2840
+ if (!!filter?.ine) {
2841
+ clauses.push(typeorm.Not(typeorm.ILike(filter.ine)));
2842
+ }
2837
2843
  if (!!filter?.notIn) {
2838
2844
  clauses.push(typeorm.Not(typeorm.In(filter.notIn)));
2839
2845
  }