sysone-api-mapper 1.0.53 → 1.0.54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sysone-api-mapper",
3
- "version": "1.0.53",
3
+ "version": "1.0.54",
4
4
  "description": "Paquete mapper para portal de productores",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -376,9 +376,10 @@ export const getQuotationByCode_Request = (inputParams) => {
376
376
  }
377
377
 
378
378
  export const getQuotations_Request = (inputParams) => {
379
+ const { quotationNumber, ...otherParams } = inputParams;
379
380
  return {
380
- number: inputParams.quotationNumber,
381
- ...inputParams
381
+ number: quotationNumber,
382
+ ...otherParams
382
383
  }
383
384
  }
384
385