@infrab4a/connect 4.2.3-beta.3 → 4.2.3-beta.5

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.cjs.js CHANGED
@@ -4461,7 +4461,8 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
4461
4461
  type: 'category_product_bool_exp',
4462
4462
  required: true,
4463
4463
  value: {
4464
- category_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
4464
+ category_id: categoryId,
4465
+ product_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
4465
4466
  },
4466
4467
  },
4467
4468
  });
@@ -5436,7 +5437,8 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
5436
5437
  type: 'category_product_bool_exp',
5437
5438
  required: true,
5438
5439
  value: {
5439
- category_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
5440
+ category_id: categoryId,
5441
+ product_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
5440
5442
  },
5441
5443
  },
5442
5444
  });
package/index.esm.js CHANGED
@@ -4455,7 +4455,8 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
4455
4455
  type: 'category_product_bool_exp',
4456
4456
  required: true,
4457
4457
  value: {
4458
- category_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
4458
+ category_id: categoryId,
4459
+ product_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
4459
4460
  },
4460
4461
  },
4461
4462
  });
@@ -5430,7 +5431,8 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
5430
5431
  type: 'category_product_bool_exp',
5431
5432
  required: true,
5432
5433
  value: {
5433
- category_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
5434
+ category_id: categoryId,
5435
+ product_id: { _in: category.products.filter((productId) => !plainData.products.includes(productId)) },
5434
5436
  },
5435
5437
  },
5436
5438
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.2.3-beta.3",
3
+ "version": "4.2.3-beta.5",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },