@infrab4a/connect 4.3.6-beta.7 → 4.3.7

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
@@ -4739,7 +4739,7 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
4739
4739
  }
4740
4740
  }
4741
4741
  async getChildren(parentId) {
4742
- const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id', 'slug'], {
4742
+ const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id'], {
4743
4743
  args: {
4744
4744
  type: 'category_tree_args',
4745
4745
  value: { parentid: parentId },
package/index.esm.js CHANGED
@@ -4715,7 +4715,7 @@ class CategoryHasuraGraphQLRepository extends withCrudHasuraGraphQL(withHasuraGr
4715
4715
  }
4716
4716
  }
4717
4717
  async getChildren(parentId) {
4718
- const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id', 'slug'], {
4718
+ const { category_tree } = await this.query('category_tree', ['id', 'name', 'parent_id'], {
4719
4719
  args: {
4720
4720
  type: 'category_tree_args',
4721
4721
  value: { parentid: parentId },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infrab4a/connect",
3
- "version": "4.3.6-beta.7",
3
+ "version": "4.3.7",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org"
6
6
  },
@@ -1,7 +1,6 @@
1
1
  export * from './campaign';
2
2
  export * from './campaign-banner';
3
3
  export * from './home';
4
- export * from './menu';
5
4
  export * from './shop-menu';
6
5
  export * from './shop-settings';
7
6
  export * from './types';
@@ -9,5 +9,6 @@ export declare class ShopSettings extends BaseModel<ShopSettings> {
9
9
  descriptionMeta?: string;
10
10
  titleMeta?: string;
11
11
  imageMeta?: string;
12
+ hasMultiples?: boolean;
12
13
  static get identifiersFields(): GenericIdentifier[];
13
14
  }
@@ -1,8 +0,0 @@
1
- type MenuChildren = {
2
- id: string;
3
- name: string;
4
- slug: string;
5
- children?: MenuChildren;
6
- };
7
- export type Menu = MenuChildren[];
8
- export {};