@infrab4a/connect 5.3.2-beta.0 → 5.3.3-beta.0
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 +24 -2
- package/index.esm.js +24 -2
- package/package.json +1 -1
- package/src/domain/catalog/models/product-base.d.ts +1 -0
package/index.cjs.js
CHANGED
|
@@ -7369,6 +7369,12 @@ const commonFields = [
|
|
|
7369
7369
|
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
7370
7370
|
},
|
|
7371
7371
|
},
|
|
7372
|
+
{
|
|
7373
|
+
imagesCard: {
|
|
7374
|
+
columnName: 'images_card',
|
|
7375
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
7376
|
+
},
|
|
7377
|
+
},
|
|
7372
7378
|
'name',
|
|
7373
7379
|
{
|
|
7374
7380
|
price: {
|
|
@@ -8240,8 +8246,24 @@ const fieldsConfiguration$1 = [
|
|
|
8240
8246
|
{ tagsCollection: { columnName: 'tags_collection', type: HasuraGraphQLColumnType.Jsonb } },
|
|
8241
8247
|
{ tagsProfile: { columnName: 'tags_profile', type: HasuraGraphQLColumnType.Jsonb } },
|
|
8242
8248
|
{ daysOfUse: { columnName: 'days_of_use' } },
|
|
8243
|
-
|
|
8244
|
-
|
|
8249
|
+
{
|
|
8250
|
+
images: {
|
|
8251
|
+
columnName: 'images',
|
|
8252
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
8253
|
+
},
|
|
8254
|
+
},
|
|
8255
|
+
{
|
|
8256
|
+
miniatures: {
|
|
8257
|
+
columnName: 'miniatures',
|
|
8258
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
8259
|
+
},
|
|
8260
|
+
},
|
|
8261
|
+
{
|
|
8262
|
+
imagesCard: {
|
|
8263
|
+
columnName: 'images_card',
|
|
8264
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
8265
|
+
},
|
|
8266
|
+
},
|
|
8245
8267
|
];
|
|
8246
8268
|
class VariantHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
8247
8269
|
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
package/index.esm.js
CHANGED
|
@@ -7344,6 +7344,12 @@ const commonFields = [
|
|
|
7344
7344
|
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
7345
7345
|
},
|
|
7346
7346
|
},
|
|
7347
|
+
{
|
|
7348
|
+
imagesCard: {
|
|
7349
|
+
columnName: 'images_card',
|
|
7350
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
7351
|
+
},
|
|
7352
|
+
},
|
|
7347
7353
|
'name',
|
|
7348
7354
|
{
|
|
7349
7355
|
price: {
|
|
@@ -8215,8 +8221,24 @@ const fieldsConfiguration$1 = [
|
|
|
8215
8221
|
{ tagsCollection: { columnName: 'tags_collection', type: HasuraGraphQLColumnType.Jsonb } },
|
|
8216
8222
|
{ tagsProfile: { columnName: 'tags_profile', type: HasuraGraphQLColumnType.Jsonb } },
|
|
8217
8223
|
{ daysOfUse: { columnName: 'days_of_use' } },
|
|
8218
|
-
|
|
8219
|
-
|
|
8224
|
+
{
|
|
8225
|
+
images: {
|
|
8226
|
+
columnName: 'images',
|
|
8227
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
8228
|
+
},
|
|
8229
|
+
},
|
|
8230
|
+
{
|
|
8231
|
+
miniatures: {
|
|
8232
|
+
columnName: 'miniatures',
|
|
8233
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
8234
|
+
},
|
|
8235
|
+
},
|
|
8236
|
+
{
|
|
8237
|
+
imagesCard: {
|
|
8238
|
+
columnName: 'images_card',
|
|
8239
|
+
to: (value) => (value?.length > 0 ? `{"${value?.join?.('","') || ''}"}` : '{}'),
|
|
8240
|
+
},
|
|
8241
|
+
},
|
|
8220
8242
|
];
|
|
8221
8243
|
class VariantHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
8222
8244
|
constructor({ endpoint, authOptions, interceptors, cache, }) {
|
package/package.json
CHANGED