@infrab4a/connect 4.2.4 → 4.2.5-beta.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
|
@@ -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;
|
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;
|
package/package.json
CHANGED
|
@@ -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[];
|