@gem-sdk/core 2.5.3-staging.1 → 2.5.3-staging.4

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.
@@ -26,6 +26,11 @@
26
26
  }
27
27
  }
28
28
  }
29
+ themeSections {
30
+ id
31
+ name
32
+ component
33
+ }
29
34
  }
30
35
  }
31
36
  `;
@@ -24,6 +24,11 @@
24
24
  }
25
25
  }
26
26
  }
27
+ themeSections {
28
+ id
29
+ name
30
+ component
31
+ }
27
32
  }
28
33
  }
29
34
  `;
@@ -36620,9 +36620,10 @@ type ThemePageQueryResponse = {
36620
36620
  }>>>;
36621
36621
  }>;
36622
36622
  }>;
36623
+ themeSections?: Maybe<Array<Maybe<Pick<ThemeSection, 'id' | 'name' | 'component'>>>>;
36623
36624
  }>;
36624
36625
  };
36625
- declare const ThemePageDocument = "\n query ThemePage($themePageId: ID!, $first: Int, $where: ThemeStyleWhereInput) {\n themePage(id: $themePageId) {\n id\n name\n handle\n isMobile\n sectionPosition\n pageSections {\n cid\n component\n id\n deletedAt\n }\n theme {\n id\n themeStyles(first: $first, where: $where) {\n edges {\n node {\n data\n id\n name\n }\n }\n }\n }\n }\n}\n ";
36626
+ declare const ThemePageDocument = "\n query ThemePage($themePageId: ID!, $first: Int, $where: ThemeStyleWhereInput) {\n themePage(id: $themePageId) {\n id\n name\n handle\n isMobile\n sectionPosition\n pageSections {\n cid\n component\n id\n deletedAt\n }\n theme {\n id\n themeStyles(first: $first, where: $where) {\n edges {\n node {\n data\n id\n name\n }\n }\n }\n }\n themeSections {\n id\n name\n component\n }\n }\n}\n ";
36626
36627
 
36627
36628
  type SaleFunnelDiscountsQueryVariables = Exact<{
36628
36629
  where?: InputMaybe<SaleFunnelDiscountWhereInput>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.5.3-staging.1",
3
+ "version": "2.5.3-staging.4",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",