@infrab4a/connect-angular 5.4.0-beta.10 → 5.4.0

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.
@@ -1278,7 +1278,7 @@ class CheckoutService {
1278
1278
  })), concatMap(() => this.getCheckout()));
1279
1279
  }
1280
1280
  createOrder(checkoutPayload, paymentProvider, applicationVersion) {
1281
- return this.dependenciesFacade.httpClient.post(`${this.checkoutUrl}/checkout`, {
1281
+ return this.dependenciesFacade.httpClient.post(`${this.checkoutUrl}/checkoutV5`, {
1282
1282
  data: {
1283
1283
  ...checkoutPayload,
1284
1284
  applicationVersion,
@@ -1624,7 +1624,7 @@ class ProfileSearchStrategy {
1624
1624
  const repoParams = {
1625
1625
  fields: fieldsHelper.getStandardFields(),
1626
1626
  filters: {
1627
- tagsProfile: { operator: Where.LIKE, value: profile },
1627
+ tags: { operator: Where.LIKE, value: profile },
1628
1628
  ...filterHelper.buildFilterQuery(filters || {}),
1629
1629
  },
1630
1630
  ...(sort ? { orderBy: sortHelper.buildSortQuery(sort) } : {}),
@@ -1963,7 +1963,7 @@ class CatalogFilterHelper {
1963
1963
  filterQuery.rate = { operator: Where.GTE, value: filters.rate };
1964
1964
  }
1965
1965
  if (filters.tags?.length) {
1966
- filterQuery.tagsProfile = { operator: Where.LIKE, value: filters.tags };
1966
+ filterQuery.tags = { operator: Where.LIKE, value: filters.tags };
1967
1967
  }
1968
1968
  if (filters.customOptions?.length) {
1969
1969
  filterQuery.filters = { operator: Where.LIKE, value: filters.customOptions };
@@ -2047,8 +2047,7 @@ class ProductFieldsHelper {
2047
2047
  'isKit',
2048
2048
  'sku',
2049
2049
  'rate',
2050
- 'tagsProfile',
2051
- 'tagsCollection',
2050
+ 'tags',
2052
2051
  'type',
2053
2052
  'shoppingCount',
2054
2053
  'gender',