eservices-core 1.0.552 → 1.0.553
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/frontend/core/index.d.ts +1 -1
- package/dist/index.js +3 -2
- package/package.json +1 -1
|
@@ -82,7 +82,7 @@ clickOutside,
|
|
|
82
82
|
* */
|
|
83
83
|
requestHandler, useSocket, setupSocket, useListRead, useListSearch, IListOrder, IListFilter, equipmentService, useListSelect };
|
|
84
84
|
export { ApplicationManager, Manager, NotificationSystem, Table, CoreError, List, ProcessWrap, Communication, ListConfig, IActionResponse, historyService };
|
|
85
|
-
export { fileService, processWizardService, viewService, authService, dataService, communicationService, metadataService, invitationService, ruleValidationService, openService, IParsedHistoryResponse, actionService };
|
|
85
|
+
export { fileService, processWizardService, viewService, authService, dataService, communicationService, metadataService, invitationService, ruleValidationService, openService, IParsedHistoryResponse, actionService, Filter };
|
|
86
86
|
/**
|
|
87
87
|
* HOOKS
|
|
88
88
|
* */
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* eservices-core v1.0.
|
|
2
|
+
* eservices-core v1.0.553
|
|
3
3
|
* (c) 2023 ESERVICES
|
|
4
4
|
*/
|
|
5
5
|
'use strict';
|
|
@@ -5172,7 +5172,7 @@ function Filter(filters) {
|
|
|
5172
5172
|
}, []).join(" and ");
|
|
5173
5173
|
}
|
|
5174
5174
|
function wrapString(str) {
|
|
5175
|
-
return typeof str === 'string' ?
|
|
5175
|
+
return typeof str === 'string' ? `'${str}'` : `${str}`;
|
|
5176
5176
|
}
|
|
5177
5177
|
Filter.notEq = function notEqual(name, values) {
|
|
5178
5178
|
return `@${name} nq ${wrapString(values)}`;
|
|
@@ -5842,6 +5842,7 @@ var index = {
|
|
|
5842
5842
|
exports.ApplicationManager = ApplicationManager;
|
|
5843
5843
|
exports.Communication = Communication;
|
|
5844
5844
|
exports.CoreError = CoreError;
|
|
5845
|
+
exports.Filter = Filter;
|
|
5845
5846
|
exports.List = List;
|
|
5846
5847
|
exports.ListConfig = ListConfig;
|
|
5847
5848
|
exports.Manager = Manager;
|