arky-sdk 0.4.42 → 0.4.43
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.cjs +2 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/types.d.cts +1 -0
- package/dist/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1383,7 +1383,8 @@ var createShippingApi = (apiConfig) => {
|
|
|
1383
1383
|
return apiConfig.httpClient.post(
|
|
1384
1384
|
`/v1/businesses/${apiConfig.businessId}/orders/${params.orderId}/shipping/rates`,
|
|
1385
1385
|
{
|
|
1386
|
-
parcel: params.parcel
|
|
1386
|
+
parcel: params.parcel,
|
|
1387
|
+
fromAddress: params.fromAddress
|
|
1387
1388
|
},
|
|
1388
1389
|
options
|
|
1389
1390
|
);
|