@infrab4a/connect 3.13.8-beta.0 → 3.13.8-beta.3
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 +6 -3
- package/bundles/infrab4a-connect.umd.js.map +1 -1
- package/domain/catalog/models/types/shop-description.type.d.ts +1 -0
- package/esm2015/domain/catalog/models/types/shop-description.type.js +1 -1
- package/esm2015/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.js +7 -4
- package/fesm2015/infrab4a-connect.js +6 -3
- package/fesm2015/infrab4a-connect.js.map +1 -1
- package/package.json +1 -1
|
@@ -5440,20 +5440,23 @@
|
|
|
5440
5440
|
whoMustUse: data.who_must_use,
|
|
5441
5441
|
howToUse: data.how_to_use,
|
|
5442
5442
|
brand: data.brand_description,
|
|
5443
|
+
ingredients: data.ingredients,
|
|
5443
5444
|
}); },
|
|
5444
5445
|
bindFindFilter: function (sentence) {
|
|
5445
5446
|
var filters = Object.values(sentence).shift();
|
|
5446
|
-
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, ((filters === null || filters === void 0 ? void 0 : filters.description) && { description: filters.description })), (filters.differentials && { differentials: filters.differentials })), (filters.whoMustUse && {
|
|
5447
|
+
return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, ((filters === null || filters === void 0 ? void 0 : filters.description) && { description: filters.description })), (filters.differentials && { differentials: filters.differentials })), (filters.whoMustUse && {
|
|
5447
5448
|
who_must_use: filters.whoMustUse,
|
|
5448
5449
|
})), (filters.howToUse && {
|
|
5449
5450
|
how_to_use: filters.howToUse,
|
|
5450
5451
|
})), (filters.brand && {
|
|
5451
5452
|
brand_description: filters.brand,
|
|
5453
|
+
})), (filters.ingredients && {
|
|
5454
|
+
ingredients: filters.ingredients,
|
|
5452
5455
|
}));
|
|
5453
5456
|
},
|
|
5454
|
-
bindPersistData: function (descriptionData) { return (Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, ((descriptionData === null || descriptionData === void 0 ? void 0 : descriptionData.description) && { description: descriptionData.description })), (descriptionData.differentials && { differentials: descriptionData.differentials })), (descriptionData.whoMustUse && {
|
|
5457
|
+
bindPersistData: function (descriptionData) { return (Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, ((descriptionData === null || descriptionData === void 0 ? void 0 : descriptionData.description) && { description: descriptionData.description })), (descriptionData.differentials && { differentials: descriptionData.differentials })), (descriptionData.whoMustUse && {
|
|
5455
5458
|
who_must_use: descriptionData.whoMustUse,
|
|
5456
|
-
})), (descriptionData.howToUse && { how_to_use: descriptionData.howToUse })), (descriptionData.brand && { brand_description: descriptionData.brand }))); },
|
|
5459
|
+
})), (descriptionData.howToUse && { how_to_use: descriptionData.howToUse })), (descriptionData.brand && { brand_description: descriptionData.brand })), (descriptionData.ingredients && { ingredients: descriptionData.ingredients }))); },
|
|
5457
5460
|
},
|
|
5458
5461
|
},
|
|
5459
5462
|
{ differentials: { columnName: 'differentials' } },
|