@infrab4a/connect 4.21.1 → 4.21.2-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 CHANGED
@@ -6129,6 +6129,8 @@ class VariantHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
6129
6129
  },
6130
6130
  'group',
6131
6131
  'validity',
6132
+ { tags: { columnName: 'tags', type: HasuraGraphQLColumnType.Jsonb } },
6133
+ 'published',
6132
6134
  ],
6133
6135
  });
6134
6136
  }
package/index.esm.js CHANGED
@@ -6123,6 +6123,8 @@ class VariantHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGra
6123
6123
  },
6124
6124
  'group',
6125
6125
  'validity',
6126
+ { tags: { columnName: 'tags', type: HasuraGraphQLColumnType.Jsonb } },
6127
+ 'published',
6126
6128
  ],
6127
6129
  });
6128
6130
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.21.1",
3
+ "version": "4.21.2-beta.0",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -15,5 +15,7 @@ export declare class Variant extends BaseModel<Variant, ProductVariantIdentifier
15
15
  updatedAt?: Date;
16
16
  group?: number;
17
17
  validity: boolean;
18
+ tags: string[];
19
+ published: boolean;
18
20
  static get identifiersFields(): ProductVariantIdentifiers[];
19
21
  }