@gem-sdk/core 2.0.0-dev.640 → 2.0.0-dev.649

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.
@@ -69,7 +69,6 @@ const postPurchaseRequiredElements = [
69
69
  'PostPurchaseAcceptButton',
70
70
  'PostPurchaseButton',
71
71
  'PostPurchaseCalloutBox',
72
- 'PostPurchaseProductPriceBreakdown',
73
72
  'PostPurchaseProductImages',
74
73
  'PostPurchaseCalloutText'
75
74
  ];
@@ -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
  `;
@@ -67,7 +67,6 @@ const postPurchaseRequiredElements = [
67
67
  'PostPurchaseAcceptButton',
68
68
  'PostPurchaseButton',
69
69
  'PostPurchaseCalloutBox',
70
- 'PostPurchaseProductPriceBreakdown',
71
70
  'PostPurchaseProductImages',
72
71
  'PostPurchaseCalloutText'
73
72
  ];
@@ -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
  `;
@@ -35325,9 +35325,10 @@ type ThemePageQueryResponse = {
35325
35325
  }>>>;
35326
35326
  }>;
35327
35327
  }>;
35328
+ themeSections?: Maybe<Array<Maybe<Pick<ThemeSection, 'id' | 'name' | 'component'>>>>;
35328
35329
  }>;
35329
35330
  };
35330
- 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 ";
35331
+ 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 ";
35331
35332
 
35332
35333
  type SaleFunnelDiscountsQueryVariables = Exact<{
35333
35334
  where?: InputMaybe<SaleFunnelDiscountWhereInput>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "2.0.0-dev.640",
3
+ "version": "2.0.0-dev.649",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",