@shipengine/js-api 0.14.1 → 0.14.2
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
|
@@ -5229,7 +5229,7 @@ class RateCardsAPI {
|
|
|
5229
5229
|
this.client = client;
|
|
5230
5230
|
this.list = (carrierIds) => {
|
|
5231
5231
|
return this.client.get(
|
|
5232
|
-
`/v1/
|
|
5232
|
+
`/v1/rate_cards?carrier_ids=${carrierIds.toString()}`
|
|
5233
5233
|
);
|
|
5234
5234
|
};
|
|
5235
5235
|
this.client = client;
|
package/index.mjs
CHANGED
|
@@ -5225,7 +5225,7 @@ class RateCardsAPI {
|
|
|
5225
5225
|
this.client = client;
|
|
5226
5226
|
this.list = (carrierIds) => {
|
|
5227
5227
|
return this.client.get(
|
|
5228
|
-
`/v1/
|
|
5228
|
+
`/v1/rate_cards?carrier_ids=${carrierIds.toString()}`
|
|
5229
5229
|
);
|
|
5230
5230
|
};
|
|
5231
5231
|
this.client = client;
|