@infrab4a/connect 3.14.0-beta.2 → 3.14.0-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 +7 -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/models/product-hasura-graphql.js +1 -1
- package/esm2015/infra/hasura-graphql/repositories/catalog/product-hasura-graphql.repository.js +8 -4
- package/fesm2015/infrab4a-connect.js +7 -3
- package/fesm2015/infrab4a-connect.js.map +1 -1
- package/infra/hasura-graphql/models/product-hasura-graphql.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5444,26 +5444,30 @@
|
|
|
5444
5444
|
whoMustUse: data.who_must_use,
|
|
5445
5445
|
howToUse: data.how_to_use,
|
|
5446
5446
|
brand: data.brand_description,
|
|
5447
|
+
ingredients: data.ingredients,
|
|
5447
5448
|
}); },
|
|
5448
5449
|
bindFindFilter: function (sentence) {
|
|
5449
5450
|
var filters = Object.values(sentence).shift();
|
|
5450
|
-
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 && {
|
|
5451
|
+
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 && {
|
|
5451
5452
|
who_must_use: filters.whoMustUse,
|
|
5452
5453
|
})), (filters.howToUse && {
|
|
5453
5454
|
how_to_use: filters.howToUse,
|
|
5454
5455
|
})), (filters.brand && {
|
|
5455
5456
|
brand_description: filters.brand,
|
|
5457
|
+
})), (filters.ingredients && {
|
|
5458
|
+
ingredients: filters.ingredients,
|
|
5456
5459
|
}));
|
|
5457
5460
|
},
|
|
5458
|
-
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 && {
|
|
5461
|
+
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 && {
|
|
5459
5462
|
who_must_use: descriptionData.whoMustUse,
|
|
5460
|
-
})), (descriptionData.howToUse && { how_to_use: descriptionData.howToUse })), (descriptionData.brand && { brand_description: descriptionData.brand }))); },
|
|
5463
|
+
})), (descriptionData.howToUse && { how_to_use: descriptionData.howToUse })), (descriptionData.brand && { brand_description: descriptionData.brand })), (descriptionData.ingredients && { ingredients: descriptionData.ingredients }))); },
|
|
5461
5464
|
},
|
|
5462
5465
|
},
|
|
5463
5466
|
{ differentials: { columnName: 'differentials' } },
|
|
5464
5467
|
{ whoMustUse: { columnName: 'who_must_use' } },
|
|
5465
5468
|
{ howToUse: { columnName: 'how_to_use' } },
|
|
5466
5469
|
{ brandDescription: { columnName: 'brand_description' } },
|
|
5470
|
+
{ ingredients: { columnName: 'ingredients' } },
|
|
5467
5471
|
{ hasVariants: { columnName: 'has_variants' } },
|
|
5468
5472
|
{
|
|
5469
5473
|
images: {
|