@autofleet/sheilta 1.3.4 → 1.3.5-beta.2

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.
@@ -5,6 +5,7 @@ export declare type FormatPayloadOptions = {
5
5
  includeRawPayload?: boolean;
6
6
  literalAttributes?: LiteralAttribute[];
7
7
  DBFormatter?: any;
8
+ skipSearchTermFormat?: boolean;
8
9
  };
9
10
  declare const formatPayload: ({ order, page, perPage, include, query, attributes, searchTerm, }: {
10
11
  order?: any[];
@@ -65,9 +65,9 @@ const formatQuery = (query, associationModels) => {
65
65
  formattedScopeMap.get(CUSTOM_FIELDS_FILTER_SCOPE)[scopeKey] = queryItemValue;
66
66
  return;
67
67
  }
68
- const key = utils_1.isAttributeByAssociation(queryItemKey, associationModels) ?
69
- utils_1.wrapAttributeWithOperator(queryItemKey) :
70
- queryItemKey;
68
+ const key = utils_1.isAttributeByAssociation(queryItemKey, associationModels)
69
+ ? utils_1.wrapAttributeWithOperator(queryItemKey)
70
+ : queryItemKey;
71
71
  formattedQuery[key] = queryItemValue;
72
72
  });
73
73
  const formattedScopes = Array.from(formattedScopeMap.entries()).map(([scopeName, scopeValue]) => {
@@ -104,7 +104,7 @@ const formatPayload = ({ order = [], page = utils_1.PAGE_DEFAULT, perPage = util
104
104
  const formattedPerPage = formatPerPage(perPage);
105
105
  const result = formatQuery(query, associationModels);
106
106
  let { formattedQuery } = result;
107
- if (searchTerm) {
107
+ if (searchTerm && !(options === null || options === void 0 ? void 0 : options.skipSearchTermFormat)) {
108
108
  const attributesToSend = (attributes === null || attributes === void 0 ? void 0 : attributes.length) ? attributes : Object.keys(model.rawAttributes);
109
109
  const queryWithSearchTerm = formatSearchTerm(searchTerm, attributesToSend, model.rawAttributes);
110
110
  formattedQuery = lodash_1.default.isEmpty(formattedQuery) ? queryWithSearchTerm : {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autofleet/sheilta",
3
- "version": "1.3.4",
3
+ "version": "1.3.5-beta.2",
4
4
  "description": "manage cache",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",