@punks/backend-entity-manager 0.0.307 → 0.0.309

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
@@ -3034,7 +3034,7 @@ class QueryClauseBuilder {
3034
3034
  clauses.push(typeorm.ILike(filter.eq));
3035
3035
  }
3036
3036
  if (!backendCore.isNullOrUndefined(filter?.like)) {
3037
- clauses.push(typeorm.ILike(filter.like.replaceAll("*", "%")));
3037
+ clauses.push(typeorm.ILike(`%${filter.like.replaceAll("*", "%")}%`));
3038
3038
  }
3039
3039
  if (!backendCore.isNullOrUndefined(filter?.ne)) {
3040
3040
  clauses.push(typeorm.Not(typeorm.Equal(filter.ne)));
@@ -40012,8 +40012,8 @@ const ensureJobLogGroup = async (logGroupName, awsSettings) => {
40012
40012
  };
40013
40013
 
40014
40014
  var AwsBatchService_1;
40015
- const jobDefinitionName = (jobUid) => `job-${jobUid}`;
40016
- const jobInstanceName = (jobUid, instanceId) => `job-${jobUid}-${instanceId}`;
40015
+ const jobDefinitionName = (jobUid) => `${awsBatchSettings.value.batchResourcesPrefix}-job-${jobUid}`;
40016
+ const jobInstanceName = (jobUid, instanceId) => `${awsBatchSettings.value.batchResourcesPrefix}-job-${jobUid}-${instanceId}`;
40017
40017
  let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
40018
40018
  constructor() {
40019
40019
  this.logger = backendCore.Log.getLogger(AwsBatchService_1.name);