@gem-sdk/core 1.14.0-dev.688 → 1.14.0-dev.690
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/dist/cjs/graphql/fragments/custom-font.generated.js +9 -0
- package/dist/cjs/graphql/fragments/published-theme-page.generated.js +3 -0
- package/dist/cjs/graphql/queries/published-theme-pages.generated.js +3 -2
- package/dist/esm/graphql/fragments/custom-font.generated.js +9 -0
- package/dist/esm/graphql/fragments/published-theme-page.generated.js +3 -0
- package/dist/esm/graphql/queries/published-theme-pages.generated.js +3 -2
- package/dist/types/index.d.ts +21 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";var publishedThemePage_generated=require("../fragments/published-theme-page.generated.js"),publishedPageSection_generated=require("../fragments/published-page-section.generated.js"),publishedCustomSection_generated=require("../fragments/published-custom-section.generated.js"),dataSeo_generated=require("../fragments/data-seo.generated.js"),publishedThemeStyle_generated=require("../fragments/published-theme-style.generated.js"),analytic_generated=require("../fragments/analytic.generated.js"),customCode_generated=require("../fragments/custom-code.generated.js");const PublishedThemePagesDocument=`
|
|
1
|
+
"use strict";var publishedThemePage_generated=require("../fragments/published-theme-page.generated.js"),publishedPageSection_generated=require("../fragments/published-page-section.generated.js"),publishedCustomSection_generated=require("../fragments/published-custom-section.generated.js"),dataSeo_generated=require("../fragments/data-seo.generated.js"),publishedThemeStyle_generated=require("../fragments/published-theme-style.generated.js"),analytic_generated=require("../fragments/analytic.generated.js"),customCode_generated=require("../fragments/custom-code.generated.js"),customFont_generated=require("../fragments/custom-font.generated.js");const PublishedThemePagesDocument=`
|
|
2
2
|
query publishedThemePages($slug: String, $slugType: PublishedThemePageType!) {
|
|
3
3
|
publishedThemePages(slug: $slug, slugType: $slugType) {
|
|
4
4
|
...PublishedThemePageSelect
|
|
@@ -10,4 +10,5 @@ ${publishedCustomSection_generated.PublishedCustomSectionSelect}
|
|
|
10
10
|
${dataSeo_generated.DataSeoSelect}
|
|
11
11
|
${publishedThemeStyle_generated.PublishedThemeStyleSelect}
|
|
12
12
|
${analytic_generated.AnalyticSelect}
|
|
13
|
-
${customCode_generated.CustomCodeSelect}
|
|
13
|
+
${customCode_generated.CustomCodeSelect}
|
|
14
|
+
${customFont_generated.CustomFontSelect}`;exports.PublishedThemePagesDocument=PublishedThemePagesDocument;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import{PublishedThemePageSelect as e}from"../fragments/published-theme-page.generated.js";import{PublishedPageSectionSelect as s}from"../fragments/published-page-section.generated.js";import{PublishedCustomSectionSelect as t}from"../fragments/published-custom-section.generated.js";import{DataSeoSelect as m}from"../fragments/data-seo.generated.js";import{PublishedThemeStyleSelect as r}from"../fragments/published-theme-style.generated.js";import{AnalyticSelect as g}from"../fragments/analytic.generated.js";import{CustomCodeSelect as a}from"../fragments/custom-code.generated.js";let PublishedThemePagesDocument=`
|
|
1
|
+
import{PublishedThemePageSelect as e}from"../fragments/published-theme-page.generated.js";import{PublishedPageSectionSelect as s}from"../fragments/published-page-section.generated.js";import{PublishedCustomSectionSelect as t}from"../fragments/published-custom-section.generated.js";import{DataSeoSelect as m}from"../fragments/data-seo.generated.js";import{PublishedThemeStyleSelect as r}from"../fragments/published-theme-style.generated.js";import{AnalyticSelect as g}from"../fragments/analytic.generated.js";import{CustomCodeSelect as a}from"../fragments/custom-code.generated.js";import{CustomFontSelect as o}from"../fragments/custom-font.generated.js";let PublishedThemePagesDocument=`
|
|
2
2
|
query publishedThemePages($slug: String, $slugType: PublishedThemePageType!) {
|
|
3
3
|
publishedThemePages(slug: $slug, slugType: $slugType) {
|
|
4
4
|
...PublishedThemePageSelect
|
|
@@ -10,4 +10,5 @@ ${t}
|
|
|
10
10
|
${m}
|
|
11
11
|
${r}
|
|
12
12
|
${g}
|
|
13
|
-
${a}
|
|
13
|
+
${a}
|
|
14
|
+
${o}`;export{PublishedThemePagesDocument};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1233,6 +1233,19 @@ type CustomCode = {
|
|
|
1233
1233
|
body?: Maybe<Scalars$1['String']>;
|
|
1234
1234
|
header?: Maybe<Scalars$1['String']>;
|
|
1235
1235
|
};
|
|
1236
|
+
type CustomFont = {
|
|
1237
|
+
backupFileKey?: Maybe<Scalars$1['String']>;
|
|
1238
|
+
backupFilePath?: Maybe<Scalars$1['String']>;
|
|
1239
|
+
fileKey: Scalars$1['String'];
|
|
1240
|
+
filePath: Scalars$1['String'];
|
|
1241
|
+
fontFamily: Scalars$1['String'];
|
|
1242
|
+
fontStyle?: Maybe<Scalars$1['String']>;
|
|
1243
|
+
fontWeight?: Maybe<Scalars$1['String']>;
|
|
1244
|
+
id: Scalars$1['ID'];
|
|
1245
|
+
mimeType: Scalars$1['String'];
|
|
1246
|
+
shopID: Scalars$1['String'];
|
|
1247
|
+
size: Scalars$1['String'];
|
|
1248
|
+
};
|
|
1236
1249
|
type Customer = {
|
|
1237
1250
|
acceptsMarketing?: Maybe<Scalars$1['Boolean']>;
|
|
1238
1251
|
acceptsMarketingUpdatedAt?: Maybe<Scalars$1['Time']>;
|
|
@@ -5743,6 +5756,7 @@ type shop_CollectionProductsArgs = CollectionProductsArgs;
|
|
|
5743
5756
|
type shop_CollectionTagWhereInput = CollectionTagWhereInput;
|
|
5744
5757
|
type shop_CollectionWhereInput = CollectionWhereInput;
|
|
5745
5758
|
type shop_CustomCode = CustomCode;
|
|
5759
|
+
type shop_CustomFont = CustomFont;
|
|
5746
5760
|
type shop_Customer = Customer;
|
|
5747
5761
|
type shop_CustomerAddress = CustomerAddress;
|
|
5748
5762
|
type shop_CustomerAddressPlatform = CustomerAddressPlatform;
|
|
@@ -5937,6 +5951,7 @@ declare namespace shop {
|
|
|
5937
5951
|
shop_CollectionTagWhereInput as CollectionTagWhereInput,
|
|
5938
5952
|
shop_CollectionWhereInput as CollectionWhereInput,
|
|
5939
5953
|
shop_CustomCode as CustomCode,
|
|
5954
|
+
shop_CustomFont as CustomFont,
|
|
5940
5955
|
shop_Customer as Customer,
|
|
5941
5956
|
shop_CustomerAddress as CustomerAddress,
|
|
5942
5957
|
shop_CustomerAddressPlatform as CustomerAddressPlatform,
|
|
@@ -6716,6 +6731,11 @@ type TextareaControlType<T> = SharedControlType<T> & {
|
|
|
6716
6731
|
minHeight?: number;
|
|
6717
6732
|
maxWidth?: number;
|
|
6718
6733
|
autoHeight?: boolean;
|
|
6734
|
+
suggestContents?: {
|
|
6735
|
+
message: string;
|
|
6736
|
+
eg?: string;
|
|
6737
|
+
isStrike?: boolean;
|
|
6738
|
+
}[];
|
|
6719
6739
|
};
|
|
6720
6740
|
|
|
6721
6741
|
type TextEditorControlType<T> = SharedControlType<T> & {
|
|
@@ -8185,6 +8205,7 @@ type PublishedThemePagesQueryResponse = {
|
|
|
8185
8205
|
pageStyle?: Maybe<Pick<PublishedThemeStyle, 'id' | 'data' | 'name'>>;
|
|
8186
8206
|
themePageAnalytic?: Maybe<Pick<Analytic, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
8187
8207
|
themePageCustomCode?: Maybe<Pick<CustomCode, 'body' | 'header'>>;
|
|
8208
|
+
themePageCustomFonts?: Maybe<Array<Maybe<CustomFont>>>;
|
|
8188
8209
|
}>>>;
|
|
8189
8210
|
};
|
|
8190
8211
|
declare const PublishedThemePagesDocument: string;
|