cardus 0.0.30 → 0.0.32

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/index.js CHANGED
@@ -164,7 +164,7 @@ class IntegrationManager {
164
164
  user,
165
165
  tempShimpmentIds: successfullShipments.map((successfullShipment) => successfullShipment.idEnvioTemporal)
166
166
  });
167
- return filteredOrders;
167
+ return { filteredOrders, insertedTempShipments: successfullShipments };
168
168
  });
169
169
  }
170
170
  insertUserDefaultConfigurationContent(_a) {
package/index.ts CHANGED
@@ -161,7 +161,7 @@ export class IntegrationManager {
161
161
  )
162
162
  });
163
163
 
164
- return filteredOrders;
164
+ return { filteredOrders, insertedTempShipments: successfullShipments };
165
165
  }
166
166
 
167
167
  async insertUserDefaultConfigurationContent({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.30",
3
+ "version": "0.0.32",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/types/index.ts CHANGED
@@ -96,7 +96,7 @@ export type ModifiedOrder = {
96
96
  idDocumentoHolded?: string;
97
97
  tipoDocumentoHolded?: string;
98
98
  isPriority: 0 | 1;
99
- idCarrier: number | null;
99
+ idCarrier?: number | null;
100
100
  };
101
101
 
102
102
  export interface ModifiedOrderExtended extends ModifiedOrder {