tf-checkout-react 1.0.91 → 1.0.92
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/tf-checkout-react.cjs.development.js +1 -1
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +1 -1
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/api/index.ts +1 -1
|
@@ -1294,7 +1294,7 @@ var getStates = function getStates(countryId) {
|
|
|
1294
1294
|
return publicRequest.get("/countries/" + countryId + "/states/");
|
|
1295
1295
|
};
|
|
1296
1296
|
var getOrders = function getOrders(page, limit, eventSlug) {
|
|
1297
|
-
return publicRequest.get("/v1/account/orders/?page=" + page + "&limit=" + limit + "&filter[event]=" + eventSlug);
|
|
1297
|
+
return publicRequest.get("/v1/account/orders/?page=" + page + "&limit=" + limit + "&filter[event]=" + eventSlug + "&filter[brand]=" + CONFIGS.BRAND_SLUG);
|
|
1298
1298
|
};
|
|
1299
1299
|
var getOrderDetails = function getOrderDetails(orderId) {
|
|
1300
1300
|
return publicRequest.get("/v1/account/order/" + orderId);
|