@gem-sdk/core 21.0.0 → 22.0.0-staging.40
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/queries/preview-page.generated.js +2 -1
- package/dist/cjs/graphql/queries/published-theme-pages.generated.js +2 -1
- package/dist/esm/graphql/queries/preview-page.generated.js +2 -1
- package/dist/esm/graphql/queries/published-theme-pages.generated.js +2 -1
- package/dist/types/index.d.ts +8 -6
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -3560,6 +3560,7 @@ type PreviewPageInteraction$1 = {
|
|
|
3560
3560
|
createdAt?: Maybe$1<Scalars$2['Time']['output']>;
|
|
3561
3561
|
deletedAt?: Maybe$1<Scalars$2['Time']['output']>;
|
|
3562
3562
|
id: Scalars$2['ID']['output'];
|
|
3563
|
+
key: Scalars$2['String']['output'];
|
|
3563
3564
|
updatedAt?: Maybe$1<Scalars$2['Time']['output']>;
|
|
3564
3565
|
value: Array<Scalars$2['Map']['output']>;
|
|
3565
3566
|
};
|
|
@@ -3593,7 +3594,7 @@ type PreviewThemePage$1 = {
|
|
|
3593
3594
|
description?: Maybe$1<Scalars$2['String']['output']>;
|
|
3594
3595
|
handle?: Maybe$1<Scalars$2['String']['output']>;
|
|
3595
3596
|
id: Scalars$2['ID']['output'];
|
|
3596
|
-
|
|
3597
|
+
interactions?: Maybe$1<Array<PreviewPageInteraction$1>>;
|
|
3597
3598
|
isGlobal?: Maybe$1<Scalars$2['Boolean']['output']>;
|
|
3598
3599
|
isMobile?: Maybe$1<Scalars$2['Boolean']['output']>;
|
|
3599
3600
|
isSample?: Maybe$1<Scalars$2['Boolean']['output']>;
|
|
@@ -5529,6 +5530,7 @@ type PublishedPageInteraction$1 = {
|
|
|
5529
5530
|
createdAt?: Maybe$1<Scalars$2['Time']['output']>;
|
|
5530
5531
|
deletedAt?: Maybe$1<Scalars$2['Time']['output']>;
|
|
5531
5532
|
id: Scalars$2['ID']['output'];
|
|
5533
|
+
key: Scalars$2['String']['output'];
|
|
5532
5534
|
updatedAt?: Maybe$1<Scalars$2['Time']['output']>;
|
|
5533
5535
|
value: Array<Scalars$2['Map']['output']>;
|
|
5534
5536
|
};
|
|
@@ -6226,7 +6228,7 @@ type PublishedThemePage$1 = {
|
|
|
6226
6228
|
description?: Maybe$1<Scalars$2['String']['output']>;
|
|
6227
6229
|
handle?: Maybe$1<Scalars$2['String']['output']>;
|
|
6228
6230
|
id: Scalars$2['ID']['output'];
|
|
6229
|
-
|
|
6231
|
+
interactions?: Maybe$1<Array<PublishedPageInteraction$1>>;
|
|
6230
6232
|
isGlobal?: Maybe$1<Scalars$2['Boolean']['output']>;
|
|
6231
6233
|
isMobile?: Maybe$1<Scalars$2['Boolean']['output']>;
|
|
6232
6234
|
isSample?: Maybe$1<Scalars$2['Boolean']['output']>;
|
|
@@ -43453,7 +43455,7 @@ type PublishedThemePagesQueryResponse = {
|
|
|
43453
43455
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
43454
43456
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
43455
43457
|
themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
43456
|
-
|
|
43458
|
+
interactions?: Maybe$1<Array<Pick<PublishedPageInteraction$1, 'id' | 'key' | 'value'>>>;
|
|
43457
43459
|
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
|
|
43458
43460
|
}>>>;
|
|
43459
43461
|
};
|
|
@@ -43533,7 +43535,7 @@ type PreviewThemePageQueryResponse = {
|
|
|
43533
43535
|
analytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
43534
43536
|
customCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
43535
43537
|
customFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
43536
|
-
|
|
43538
|
+
interactions?: Maybe$1<Array<Pick<PreviewPageInteraction$1, 'id' | 'key' | 'value'>>>;
|
|
43537
43539
|
metafields?: Maybe$1<Array<Pick<PreviewThemePageMeta$1, 'key' | 'value'>>>;
|
|
43538
43540
|
}>;
|
|
43539
43541
|
};
|
|
@@ -55043,7 +55045,7 @@ declare const useSwatches: () => {
|
|
|
55043
55045
|
};
|
|
55044
55046
|
declare const usePageType: () => PublishedThemePageType$1;
|
|
55045
55047
|
declare const useStoreFront: () => {
|
|
55046
|
-
provider: "
|
|
55048
|
+
provider: "BIGCOMMERCE" | "SHOPIFY" | undefined;
|
|
55047
55049
|
storefrontToken: string | undefined;
|
|
55048
55050
|
storefrontUrl: string | undefined;
|
|
55049
55051
|
};
|
|
@@ -55309,7 +55311,7 @@ type PublishedThemePageSelectFragment = Pick<PublishedThemePage$1, 'id' | 'shopI
|
|
|
55309
55311
|
themePageAnalytic?: Maybe$1<Pick<Analytic$1, 'fbPixelID' | 'gaTrackingID' | 'tiktokPixelID'>>;
|
|
55310
55312
|
themePageCustomCode?: Maybe$1<Pick<CustomCode$1, 'body' | 'header'>>;
|
|
55311
55313
|
themePageCustomFonts?: Maybe$1<Array<Maybe$1<Pick<CustomFont$1, 'backupFilePath' | 'fileKey' | 'filePath' | 'fontFamily' | 'fontStyle' | 'fontWeight' | 'id' | 'mimeType' | 'shopID' | 'size'>>>>;
|
|
55312
|
-
|
|
55314
|
+
interactions?: Maybe$1<Array<Pick<PublishedPageInteraction$1, 'id' | 'key' | 'value'>>>;
|
|
55313
55315
|
metafields?: Maybe$1<Array<Maybe$1<Pick<PublishedThemePageMeta$1, 'key' | 'value'>>>>;
|
|
55314
55316
|
};
|
|
55315
55317
|
|