@infrab4a/connect 4.11.0 → 4.11.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 +10 -0
- package/index.esm.js +10 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -6143,6 +6143,15 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
6143
6143
|
}),
|
|
6144
6144
|
},
|
|
6145
6145
|
},
|
|
6146
|
+
{
|
|
6147
|
+
metadatas: {
|
|
6148
|
+
columnName: 'metadatas',
|
|
6149
|
+
fields: ['shop', 'title', 'description'],
|
|
6150
|
+
bindPersistData: (value) => ({
|
|
6151
|
+
metadatas: { data: value },
|
|
6152
|
+
}),
|
|
6153
|
+
},
|
|
6154
|
+
},
|
|
6146
6155
|
{ isCollection: { columnName: 'is_collection' } },
|
|
6147
6156
|
{ isWishlist: { columnName: 'is_wishlist' } },
|
|
6148
6157
|
'reference',
|
|
@@ -6162,6 +6171,7 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
6162
6171
|
'theme',
|
|
6163
6172
|
{ bannerUrl: { columnName: 'banner_url' } },
|
|
6164
6173
|
{ personHasPhoto: { columnName: 'person_has_photo' } },
|
|
6174
|
+
{ mostRelevants: { columnName: 'most_relevants', type: HasuraGraphQLColumnType.Jsonb } },
|
|
6165
6175
|
],
|
|
6166
6176
|
});
|
|
6167
6177
|
this.categoryFilterRepository = categoryFilterRepository;
|
package/index.esm.js
CHANGED
|
@@ -6137,6 +6137,15 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
6137
6137
|
}),
|
|
6138
6138
|
},
|
|
6139
6139
|
},
|
|
6140
|
+
{
|
|
6141
|
+
metadatas: {
|
|
6142
|
+
columnName: 'metadatas',
|
|
6143
|
+
fields: ['shop', 'title', 'description'],
|
|
6144
|
+
bindPersistData: (value) => ({
|
|
6145
|
+
metadatas: { data: value },
|
|
6146
|
+
}),
|
|
6147
|
+
},
|
|
6148
|
+
},
|
|
6140
6149
|
{ isCollection: { columnName: 'is_collection' } },
|
|
6141
6150
|
{ isWishlist: { columnName: 'is_wishlist' } },
|
|
6142
6151
|
'reference',
|
|
@@ -6156,6 +6165,7 @@ class WishlistHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
|
|
|
6156
6165
|
'theme',
|
|
6157
6166
|
{ bannerUrl: { columnName: 'banner_url' } },
|
|
6158
6167
|
{ personHasPhoto: { columnName: 'person_has_photo' } },
|
|
6168
|
+
{ mostRelevants: { columnName: 'most_relevants', type: HasuraGraphQLColumnType.Jsonb } },
|
|
6159
6169
|
],
|
|
6160
6170
|
});
|
|
6161
6171
|
this.categoryFilterRepository = categoryFilterRepository;
|