cardus 0.0.50 → 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 +2 -1
- package/index.ts +2 -1
- package/package.json +1 -1
- package/types/index.ts +1 -0
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
package/types/index.ts
CHANGED