@infrab4a/connect 3.4.0-beta.10 → 3.4.0-beta.12
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/bundles/infrab4a-connect.umd.js +5 -5
- package/bundles/infrab4a-connect.umd.js.map +1 -1
- package/domain/catalog/models/category-filter.d.ts +4 -3
- package/domain/catalog/repositories/category-filter.repository.d.ts +1 -0
- package/esm2015/domain/catalog/models/category-filter.js +5 -5
- package/esm2015/domain/catalog/repositories/category-filter.repository.js +1 -1
- package/esm2015/infra/hasura-graphql/repositories/catalog/category-filter-hasura-graphql.repository.js +2 -2
- package/fesm2015/infrab4a-connect.js +5 -5
- package/fesm2015/infrab4a-connect.js.map +1 -1
- package/package.json +1 -1
|
@@ -1297,12 +1297,12 @@
|
|
|
1297
1297
|
function CategoryFilter() {
|
|
1298
1298
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
1299
1299
|
}
|
|
1300
|
-
CategoryFilter.prototype.identifierFields = function () {
|
|
1301
|
-
return ['id'];
|
|
1302
|
-
};
|
|
1303
1300
|
Object.defineProperty(CategoryFilter, "identifiersFields", {
|
|
1301
|
+
// identifierFields(): NonFunctionPropertyNames<CategoryFilter>[] {
|
|
1302
|
+
// return ['id']
|
|
1303
|
+
// }
|
|
1304
1304
|
get: function () {
|
|
1305
|
-
return ['id'];
|
|
1305
|
+
return ['id', 'filterId', 'categoryId'];
|
|
1306
1306
|
},
|
|
1307
1307
|
enumerable: false,
|
|
1308
1308
|
configurable: true
|
|
@@ -3774,7 +3774,7 @@
|
|
|
3774
3774
|
where: {
|
|
3775
3775
|
type: 'category_filter_bool_exp',
|
|
3776
3776
|
required: true,
|
|
3777
|
-
value: { category_id: { _eq: categoryId },
|
|
3777
|
+
value: { category_id: { _eq: categoryId }, filter_id: { _eq: filterId } },
|
|
3778
3778
|
},
|
|
3779
3779
|
});
|
|
3780
3780
|
};
|