@infrab4a/connect 4.2.4 → 4.2.5-beta.1

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
@@ -4316,6 +4316,8 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
4316
4316
  fields: ['id', 'name', 'reference', 'slug'],
4317
4317
  },
4318
4318
  },
4319
+ 'theme',
4320
+ { bannerUrl: { columnName: 'banner_url' } },
4319
4321
  ],
4320
4322
  });
4321
4323
  this.productRepository = productRepository;
@@ -5358,6 +5360,8 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
5358
5360
  { personId: { columnName: 'person_id' } },
5359
5361
  { personName: { columnName: 'person_name' } },
5360
5362
  { personPhoto: { columnName: 'person_photo' } },
5363
+ 'theme',
5364
+ { bannerUrl: { columnName: 'banner_url' } },
5361
5365
  ],
5362
5366
  });
5363
5367
  this.categoryFilterRepository = categoryFilterRepository;
package/index.esm.js CHANGED
@@ -4310,6 +4310,8 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
4310
4310
  fields: ['id', 'name', 'reference', 'slug'],
4311
4311
  },
4312
4312
  },
4313
+ 'theme',
4314
+ { bannerUrl: { columnName: 'banner_url' } },
4313
4315
  ],
4314
4316
  });
4315
4317
  this.productRepository = productRepository;
@@ -5352,6 +5354,8 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
5352
5354
  { personId: { columnName: 'person_id' } },
5353
5355
  { personName: { columnName: 'person_name' } },
5354
5356
  { personPhoto: { columnName: 'person_photo' } },
5357
+ 'theme',
5358
+ { bannerUrl: { columnName: 'banner_url' } },
5355
5359
  ],
5356
5360
  });
5357
5361
  this.categoryFilterRepository = categoryFilterRepository;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.2.4",
3
+ "version": "4.2.5-beta.1",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -24,6 +24,8 @@ export declare class CategoryBase<ChildCategory extends ModelBaseStructure<Child
24
24
  isWishlist?: boolean;
25
25
  reference?: string;
26
26
  parentId?: number;
27
+ theme?: string;
28
+ bannerUrl?: string;
27
29
  parent?: CategoryBase;
28
30
  filters?: Filter[];
29
31
  static get identifiersFields(): GenericIdentifier[];