tf-checkout-react 1.2.20 → 1.2.21

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.20",
2
+ "version": "1.2.21",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
package/src/api/index.ts CHANGED
@@ -329,7 +329,7 @@ export const getStates = (countryId: string) =>
329
329
 
330
330
  export const getOrders = (page: number, limit: number, eventSlug: string) =>
331
331
  publicRequest.get(
332
- `v1/account/orders/?page=${page}&limit=${limit}&filter[event]=${eventSlug}&filter[brand]=${CONFIGS.BRAND_SLUG}`
332
+ `v1/account/orders/?page=${page}&limit=${limit}&filter[event]=${eventSlug}&filter[brand]=${CONFIGS.BRAND_SLUG}&filter[subbrands]=yes`
333
333
  )
334
334
 
335
335
  export const getOrderDetails = (orderId: string) =>