tf-checkout-react 1.2.21 → 1.2.22
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/.DS_Store +0 -0
- package/src/api/index.ts +1 -1
- package/src/components/.DS_Store +0 -0
- package/src/components/common/dist/PhoneNumberField.js +96 -0
|
@@ -1428,7 +1428,7 @@ var getStates = function getStates(countryId) {
|
|
|
1428
1428
|
return publicRequest.get("/countries/" + countryId + "/states/");
|
|
1429
1429
|
};
|
|
1430
1430
|
var getOrders = function getOrders(page, limit, eventSlug) {
|
|
1431
|
-
return publicRequest.get("v1/account/orders/?page=" + page + "&limit=" + limit + "&filter[event]=" + eventSlug + "&filter[brand]=" + CONFIGS.BRAND_SLUG + "&filter[subbrands]=
|
|
1431
|
+
return publicRequest.get("v1/account/orders/?page=" + page + "&limit=" + limit + "&filter[event]=" + eventSlug + "&filter[brand]=" + CONFIGS.BRAND_SLUG + "&filter[subbrands]=true");
|
|
1432
1432
|
};
|
|
1433
1433
|
var getOrderDetails = function getOrderDetails(orderId) {
|
|
1434
1434
|
return publicRequest.get("v1/account/order/" + orderId);
|