@shipengine/alchemy 0.5.3 → 0.5.4
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/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7669,7 +7669,7 @@ class RateCardsAPI {
|
|
|
7669
7669
|
this.client = client;
|
|
7670
7670
|
this.list = (carrierIds) => {
|
|
7671
7671
|
return this.client.get(
|
|
7672
|
-
`/v1/
|
|
7672
|
+
`/v1/rate_cards?carrier_ids=${carrierIds.toString()}`
|
|
7673
7673
|
);
|
|
7674
7674
|
};
|
|
7675
7675
|
this.client = client;
|
package/index.mjs
CHANGED
|
@@ -7647,7 +7647,7 @@ class RateCardsAPI {
|
|
|
7647
7647
|
this.client = client;
|
|
7648
7648
|
this.list = (carrierIds) => {
|
|
7649
7649
|
return this.client.get(
|
|
7650
|
-
`/v1/
|
|
7650
|
+
`/v1/rate_cards?carrier_ids=${carrierIds.toString()}`
|
|
7651
7651
|
);
|
|
7652
7652
|
};
|
|
7653
7653
|
this.client = client;
|