@infrab4a/connect 4.7.0 → 4.8.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.
package/index.cjs.js CHANGED
@@ -5238,6 +5238,7 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
5238
5238
  { fullPriceDiscountPercentage: { columnName: 'full_price_discount_percentage' } },
5239
5239
  { subscriberPrice: { columnName: 'subscriber_price' } },
5240
5240
  'published',
5241
+ 'outlet',
5241
5242
  'sku',
5242
5243
  {
5243
5244
  stock: {
package/index.esm.js CHANGED
@@ -5214,6 +5214,7 @@ class ProductHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
5214
5214
  { fullPriceDiscountPercentage: { columnName: 'full_price_discount_percentage' } },
5215
5215
  { subscriberPrice: { columnName: 'subscriber_price' } },
5216
5216
  'published',
5217
+ 'outlet',
5217
5218
  'sku',
5218
5219
  {
5219
5220
  stock: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.7.0",
3
+ "version": "4.8.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -33,6 +33,7 @@ export declare class ProductBase<ChildProduct extends ModelBaseStructure<ChildPr
33
33
  gender?: ProductGender;
34
34
  shoppingCount?: number;
35
35
  metadata: ProductMetadata;
36
+ outlet?: boolean;
36
37
  private reviewsTotal?;
37
38
  get evaluation(): ProductEvaluation;
38
39
  set evaluation(evaluation: ProductEvaluation);