@punks/backend-entity-manager 0.0.306 → 0.0.308
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 +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/platforms/nest/session/index.d.ts +2 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/platforms/nest/session/index.d.ts +2 -0
- package/dist/index.d.ts +17 -1
- package/package.json +1 -1
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)));
|
|
@@ -43637,6 +43637,7 @@ exports.AUTHENTICATION_EVENTS_NAMESPACE = AUTHENTICATION_EVENTS_NAMESPACE;
|
|
|
43637
43637
|
exports.ApiKeyAccess = ApiKeyAccess;
|
|
43638
43638
|
exports.AppExceptionsFilterBase = AppExceptionsFilterBase;
|
|
43639
43639
|
exports.AppInMemorySettings = AppInMemorySettings;
|
|
43640
|
+
exports.AppSession = AppSession;
|
|
43640
43641
|
exports.Authenticated = Authenticated;
|
|
43641
43642
|
exports.AuthenticationEmailTemplates = AuthenticationEmailTemplates;
|
|
43642
43643
|
exports.AuthenticationError = AuthenticationError;
|
|
@@ -43731,5 +43732,6 @@ exports.getEntityManagerProviderToken = getEntityManagerProviderToken;
|
|
|
43731
43732
|
exports.getLocalizedText = getLocalizedText;
|
|
43732
43733
|
exports.newUuid = newUuid;
|
|
43733
43734
|
exports.renderHandlebarsTemplate = renderHandlebarsTemplate;
|
|
43735
|
+
exports.sessionStorage = sessionStorage;
|
|
43734
43736
|
exports.toEntitiesImportInput = toEntitiesImportInput;
|
|
43735
43737
|
//# sourceMappingURL=index.js.map
|