@gem-sdk/core 2.0.0-dev.737 → 2.0.0-dev.744
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/articles.generated.js +1 -0
- package/dist/cjs/graphql/queries/product-variants.generated.js +1 -1
- package/dist/esm/graphql/queries/articles.generated.js +1 -0
- package/dist/esm/graphql/queries/product-variants.generated.js +1 -1
- package/dist/types/index.d.ts +9 -8
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ var selectedOption_generated = require('../fragments/selected-option.generated.j
|
|
|
5
5
|
var media_generated = require('../fragments/media.generated.js');
|
|
6
6
|
|
|
7
7
|
const ProductVariantsDocument = `
|
|
8
|
-
query productVariants($firstVariant: Int =
|
|
8
|
+
query productVariants($firstVariant: Int = 50, $afterVariant: Cursor, $orderBy: ProductOrder, $orderByVariant: ProductVariantOrder, $where: ProductWhereInput, $first: Int = 1) {
|
|
9
9
|
variants: products(first: $first, orderBy: $orderBy, where: $where) {
|
|
10
10
|
edges {
|
|
11
11
|
node {
|
|
@@ -3,7 +3,7 @@ import { SelectedOptionSelect } from '../fragments/selected-option.generated.js'
|
|
|
3
3
|
import { MediaSelect } from '../fragments/media.generated.js';
|
|
4
4
|
|
|
5
5
|
const ProductVariantsDocument = `
|
|
6
|
-
query productVariants($firstVariant: Int =
|
|
6
|
+
query productVariants($firstVariant: Int = 50, $afterVariant: Cursor, $orderBy: ProductOrder, $orderByVariant: ProductVariantOrder, $where: ProductWhereInput, $first: Int = 1) {
|
|
7
7
|
variants: products(first: $first, orderBy: $orderBy, where: $where) {
|
|
8
8
|
edges {
|
|
9
9
|
node {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -35259,9 +35259,9 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
35259
35259
|
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
35260
35260
|
}>;
|
|
35261
35261
|
type ArticlesQueryResponse = {
|
|
35262
|
-
articles?: Maybe$1<
|
|
35263
|
-
edges: Array<
|
|
35264
|
-
node?: Maybe$1<
|
|
35262
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
35263
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
35264
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
35265
35265
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
35266
35266
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
35267
35267
|
blogs?: Maybe$1<{
|
|
@@ -35270,12 +35270,12 @@ type ArticlesQueryResponse = {
|
|
|
35270
35270
|
}>;
|
|
35271
35271
|
}>;
|
|
35272
35272
|
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
35273
|
-
}
|
|
35274
|
-
}
|
|
35273
|
+
}>;
|
|
35274
|
+
}>;
|
|
35275
35275
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
35276
|
-
}
|
|
35276
|
+
}>;
|
|
35277
35277
|
};
|
|
35278
|
-
declare const ArticlesDocument = "\n query articles($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: ArticleOrder, $where: ArticleWhereInput) {\n articles(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n platform\n tags {\n name\n }\n content {\n excerptHtml\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n blogs {\n edges {\n node {\n title\n handle\n }\n }\n }\n media {\n alt\n width\n src\n height\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35278
|
+
declare const ArticlesDocument = "\n query articles($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: ArticleOrder, $where: ArticleWhereInput) {\n articles(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n platform\n tags {\n name\n }\n content {\n excerptHtml\n html\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n blogs {\n edges {\n node {\n title\n handle\n }\n }\n }\n media {\n alt\n width\n src\n height\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35279
35279
|
|
|
35280
35280
|
type BlogsQueryVariables = Exact$1<{
|
|
35281
35281
|
after?: InputMaybe$1<Scalars$2['Cursor']>;
|
|
@@ -37274,7 +37274,8 @@ type ShadowV2ControlType<T> = SharedControlType<T> & {
|
|
|
37274
37274
|
type BackgroundMediaControlType<T> = SharedControlType<T> & {
|
|
37275
37275
|
type: 'background-media';
|
|
37276
37276
|
value?: BackgroundMedia;
|
|
37277
|
-
showVideo?:
|
|
37277
|
+
showVideo?: boolean;
|
|
37278
|
+
showDeviceControl?: boolean;
|
|
37278
37279
|
hideImage?: boolean;
|
|
37279
37280
|
};
|
|
37280
37281
|
type BackgroundMedia = {
|