@infrab4a/connect 4.0.0-beta.45 → 4.0.0-beta.46
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/esm2020/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.mjs +3 -2
- package/fesm2015/infrab4a-connect.mjs +2 -1
- package/fesm2015/infrab4a-connect.mjs.map +1 -1
- package/fesm2020/infrab4a-connect.mjs +2 -1
- package/fesm2020/infrab4a-connect.mjs.map +1 -1
- package/infra/hasura-graphql/repositories/catalog/category-collection-children-hasura-graphql.repository.d.ts +4 -4
- package/package.json +1 -1
|
@@ -3368,12 +3368,13 @@ class VariantHasuraGraphQL extends Variant {
|
|
|
3368
3368
|
}
|
|
3369
3369
|
|
|
3370
3370
|
class CategoryCollectionChildrenHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGraphQL(Base)) {
|
|
3371
|
-
constructor(endpoint, authOptions) {
|
|
3371
|
+
constructor({ endpoint, authOptions, interceptors, }) {
|
|
3372
3372
|
super({
|
|
3373
3373
|
tableName: 'category_collection_children',
|
|
3374
3374
|
model: CategoryCollectionChildren,
|
|
3375
3375
|
endpoint,
|
|
3376
3376
|
authOptions,
|
|
3377
|
+
interceptors,
|
|
3377
3378
|
fields: [
|
|
3378
3379
|
{ collectionId: { columnName: 'collection_id' } },
|
|
3379
3380
|
{ categoryId: { columnName: 'category_id' } },
|