cardus 0.0.51 → 0.0.52

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
@@ -143,7 +143,8 @@ class IntegrationManager {
143
143
  defaultAgencyId: agencyId,
144
144
  userId: idUsuario,
145
145
  integrationId: this.integrationType,
146
- tempShipmentData: parsedOrder
146
+ tempShipmentData: parsedOrder,
147
+ sellerAddress
147
148
  }),
148
149
  warehouseId,
149
150
  sellerAddress,
package/index.ts CHANGED
@@ -146,7 +146,8 @@ export class IntegrationManager {
146
146
  defaultAgencyId: agencyId,
147
147
  userId: idUsuario,
148
148
  integrationId: this.integrationType,
149
- tempShipmentData: parsedOrder
149
+ tempShipmentData: parsedOrder,
150
+ sellerAddress
150
151
  }),
151
152
  warehouseId,
152
153
  sellerAddress,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cardus",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "description": "an integration manager",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/types/index.ts CHANGED
@@ -334,6 +334,7 @@ export type GetAgencyIdForTempShipment = (params: {
334
334
  userId: number;
335
335
  integrationId: number;
336
336
  tempShipmentData: ModifiedOrder;
337
+ sellerAddress: SellerAddress;
337
338
  }) => Promise<number>;
338
339
 
339
340
  export type ExecutionManager = {