@infrab4a/connect 4.9.4-beta.0 → 4.9.4-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
|
@@ -4928,6 +4928,7 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
4928
4928
|
},
|
|
4929
4929
|
'theme',
|
|
4930
4930
|
{ bannerUrl: { columnName: 'banner_url' } },
|
|
4931
|
+
{ mostRelevant: { columnName: 'most_relevant', type: HasuraGraphQLColumnType.Jsonb } },
|
|
4931
4932
|
],
|
|
4932
4933
|
});
|
|
4933
4934
|
this.productRepository = productRepository;
|
package/index.esm.js
CHANGED
|
@@ -4904,6 +4904,7 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
4904
4904
|
},
|
|
4905
4905
|
'theme',
|
|
4906
4906
|
{ bannerUrl: { columnName: 'banner_url' } },
|
|
4907
|
+
{ mostRelevant: { columnName: 'most_relevant', type: HasuraGraphQLColumnType.Jsonb } },
|
|
4907
4908
|
],
|
|
4908
4909
|
});
|
|
4909
4910
|
this.productRepository = productRepository;
|
package/package.json
CHANGED
|
@@ -26,6 +26,7 @@ export declare class CategoryBase<ChildCategory extends ModelBaseStructure<Child
|
|
|
26
26
|
parentId?: number;
|
|
27
27
|
theme?: string;
|
|
28
28
|
bannerUrl?: string;
|
|
29
|
+
mostRelevant?: string[];
|
|
29
30
|
parent?: CategoryBase;
|
|
30
31
|
filters?: Filter[];
|
|
31
32
|
static get identifiersFields(): GenericIdentifier[];
|