@gem-sdk/core 1.3.5 → 1.5.0-canary-4fb10428

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.
@@ -4,6 +4,7 @@ const PublishedThemePageSelect = `
4
4
  fragment PublishedThemePageSelect on PublishedThemePage {
5
5
  id
6
6
  name
7
+ handle
7
8
  isMobile
8
9
  sectionPosition
9
10
  pageSections {
@@ -0,0 +1,9 @@
1
+ 'use strict';
2
+
3
+ const PageViewUpDocument = `
4
+ mutation pageViewUp($pageHandle: String!, $userAgent: String!) {
5
+ pageViewUp(pageHandle: $pageHandle, userAgent: $userAgent)
6
+ }
7
+ `;
8
+
9
+ exports.PageViewUpDocument = PageViewUpDocument;
package/dist/cjs/index.js CHANGED
@@ -13,6 +13,7 @@ var ProductContext = require('./contexts/ProductContext.js');
13
13
  var SectionContext = require('./contexts/SectionContext.js');
14
14
  var ShopContext = require('./contexts/ShopContext.js');
15
15
  var CollectionContext = require('./contexts/CollectionContext.js');
16
+ var pageViewUp_generated = require('./graphql/mutations/page-view-up.generated.js');
16
17
  var collectionDetailFilter_generated = require('./graphql/queries/collection-detail-filter.generated.js');
17
18
  var collection_generated = require('./graphql/queries/collection.generated.js');
18
19
  var publishedThemePages_generated = require('./graphql/queries/published-theme-pages.generated.js');
@@ -106,6 +107,7 @@ exports.ShopProvider = ShopContext.ShopProvider;
106
107
  exports.useShopStore = ShopContext.useShopStore;
107
108
  exports.CollectionProvider = CollectionContext.CollectionProvider;
108
109
  exports.useCollectionStore = CollectionContext.useCollectionStore;
110
+ exports.PageViewUpDocument = pageViewUp_generated.PageViewUpDocument;
109
111
  exports.CollectionDetailFilterDocument = collectionDetailFilter_generated.CollectionDetailFilterDocument;
110
112
  exports.CollectionDocument = collection_generated.CollectionDocument;
111
113
  exports.PublishedThemePagesDocument = publishedThemePages_generated.PublishedThemePagesDocument;
@@ -2,6 +2,7 @@ const PublishedThemePageSelect = `
2
2
  fragment PublishedThemePageSelect on PublishedThemePage {
3
3
  id
4
4
  name
5
+ handle
5
6
  isMobile
6
7
  sectionPosition
7
8
  pageSections {
@@ -0,0 +1,7 @@
1
+ const PageViewUpDocument = `
2
+ mutation pageViewUp($pageHandle: String!, $userAgent: String!) {
3
+ pageViewUp(pageHandle: $pageHandle, userAgent: $userAgent)
4
+ }
5
+ `;
6
+
7
+ export { PageViewUpDocument };
package/dist/esm/index.js CHANGED
@@ -11,6 +11,7 @@ export { ProductProvider, useProductStore } from './contexts/ProductContext.js';
11
11
  export { SectionProvider, useSection, useSectionStore } from './contexts/SectionContext.js';
12
12
  export { ShopProvider, useShopStore } from './contexts/ShopContext.js';
13
13
  export { CollectionProvider, useCollectionStore } from './contexts/CollectionContext.js';
14
+ export { PageViewUpDocument } from './graphql/mutations/page-view-up.generated.js';
14
15
  export { CollectionDetailFilterDocument } from './graphql/queries/collection-detail-filter.generated.js';
15
16
  export { CollectionDocument } from './graphql/queries/collection.generated.js';
16
17
  export { PublishedThemePagesDocument } from './graphql/queries/published-theme-pages.generated.js';