@gem-sdk/core 1.45.0-dev.141 → 1.45.0-dev.142
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 +3 -1
- package/dist/cjs/graphql/queries/blogs.generated.js +6 -1
- package/dist/esm/graphql/queries/articles.generated.js +3 -1
- package/dist/esm/graphql/queries/blogs.generated.js +6 -1
- package/dist/types/index.d.ts +26 -8
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ type Article$2 = {
|
|
|
75
75
|
platform?: Maybe$1<ArticlePlatform$1>;
|
|
76
76
|
platformCreatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
77
77
|
platformUpdatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
78
|
-
tags
|
|
78
|
+
tags?: Maybe$1<Array<Maybe$1<Tag$1>>>;
|
|
79
79
|
templateSuffix?: Maybe$1<Scalars$2['String']>;
|
|
80
80
|
title?: Maybe$1<Scalars$2['String']>;
|
|
81
81
|
titleMeta?: Maybe$1<Scalars$2['String']>;
|
|
@@ -2333,6 +2333,7 @@ type Entity = {
|
|
|
2333
2333
|
findPublishedThemePageOnlineStoreDataByID: PublishedThemePageOnlineStoreData$1;
|
|
2334
2334
|
findPublishedThemeSectionByID: PublishedThemeSection$1;
|
|
2335
2335
|
findPublishedThemeStyleByID: PublishedThemeStyle$1;
|
|
2336
|
+
findTagByID: Tag$1;
|
|
2336
2337
|
};
|
|
2337
2338
|
type EntityFindMetafieldByIdArgs = {
|
|
2338
2339
|
id: Scalars$2['ID'];
|
|
@@ -2373,6 +2374,9 @@ type EntityFindPublishedThemeSectionByIdArgs = {
|
|
|
2373
2374
|
type EntityFindPublishedThemeStyleByIdArgs = {
|
|
2374
2375
|
id: Scalars$2['ID'];
|
|
2375
2376
|
};
|
|
2377
|
+
type EntityFindTagByIdArgs = {
|
|
2378
|
+
id: Scalars$2['ID'];
|
|
2379
|
+
};
|
|
2376
2380
|
type Media$1 = {
|
|
2377
2381
|
alt?: Maybe$1<Scalars$2['String']>;
|
|
2378
2382
|
contentType?: Maybe$1<Scalars$2['String']>;
|
|
@@ -5429,9 +5433,6 @@ type PublishedThemePage$1 = {
|
|
|
5429
5433
|
themePageOnlineStoreData?: Maybe$1<Array<Maybe$1<PublishedThemePageOnlineStoreData$1>>>;
|
|
5430
5434
|
type: PublishedThemePageType$1;
|
|
5431
5435
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5432
|
-
publishedAt?: Maybe$1<Scalars$2['Time']>;
|
|
5433
|
-
isPlatformDefault?: boolean;
|
|
5434
|
-
platformOriginalTemplateContent?: string;
|
|
5435
5436
|
};
|
|
5436
5437
|
type PublishedThemePageCustomSection$1 = {
|
|
5437
5438
|
id: Scalars$2['ID'];
|
|
@@ -6334,6 +6335,12 @@ type StoreProperty$1 = {
|
|
|
6334
6335
|
primaryDomain?: Maybe$1<Scalars$2['String']>;
|
|
6335
6336
|
swatchesConfig: Scalars$2['String'];
|
|
6336
6337
|
};
|
|
6338
|
+
type Tag$1 = {
|
|
6339
|
+
createdAt?: Maybe$1<Scalars$2['Time']>;
|
|
6340
|
+
id: Scalars$2['ID'];
|
|
6341
|
+
name?: Maybe$1<Scalars$2['String']>;
|
|
6342
|
+
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
6343
|
+
};
|
|
6337
6344
|
type TagType$1 = 'ARTICLE' | 'BLOG' | 'COLLECTION' | 'PRODUCT';
|
|
6338
6345
|
/**
|
|
6339
6346
|
* TagWhereInput is used for filtering Tag objects.
|
|
@@ -6452,7 +6459,7 @@ type VariantProductOptionWhereInput$1 = {
|
|
|
6452
6459
|
variantIDNEQ?: InputMaybe$1<Scalars$2['ID']>;
|
|
6453
6460
|
variantIDNotIn?: InputMaybe$1<Array<Scalars$2['ID']>>;
|
|
6454
6461
|
};
|
|
6455
|
-
type _Entity = Metafield$1 | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1;
|
|
6462
|
+
type _Entity = Metafield$1 | Product$1 | PublishedCustomSection$1 | PublishedPageInteraction$1 | PublishedPageSection$1 | PublishedPageSectionMeta$1 | PublishedShopMeta$1 | PublishedThemePage$1 | PublishedThemePageCustomSection$1 | PublishedThemePageMeta$1 | PublishedThemePageOnlineStoreData$1 | PublishedThemeSection$1 | PublishedThemeStyle$1 | Tag$1;
|
|
6456
6463
|
type _Service = {
|
|
6457
6464
|
sdl?: Maybe$1<Scalars$2['String']>;
|
|
6458
6465
|
};
|
|
@@ -6471,6 +6478,7 @@ type shop_EntityFindPublishedThemePageMetaByIdArgs = EntityFindPublishedThemePag
|
|
|
6471
6478
|
type shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs = EntityFindPublishedThemePageOnlineStoreDataByIdArgs;
|
|
6472
6479
|
type shop_EntityFindPublishedThemeSectionByIdArgs = EntityFindPublishedThemeSectionByIdArgs;
|
|
6473
6480
|
type shop_EntityFindPublishedThemeStyleByIdArgs = EntityFindPublishedThemeStyleByIdArgs;
|
|
6481
|
+
type shop_EntityFindTagByIdArgs = EntityFindTagByIdArgs;
|
|
6474
6482
|
type shop_Query_EntitiesArgs = Query_EntitiesArgs;
|
|
6475
6483
|
type shop__Entity = _Entity;
|
|
6476
6484
|
type shop__Service = _Service;
|
|
@@ -6553,6 +6561,7 @@ declare namespace shop {
|
|
|
6553
6561
|
shop_EntityFindPublishedThemePageOnlineStoreDataByIdArgs as EntityFindPublishedThemePageOnlineStoreDataByIdArgs,
|
|
6554
6562
|
shop_EntityFindPublishedThemeSectionByIdArgs as EntityFindPublishedThemeSectionByIdArgs,
|
|
6555
6563
|
shop_EntityFindPublishedThemeStyleByIdArgs as EntityFindPublishedThemeStyleByIdArgs,
|
|
6564
|
+
shop_EntityFindTagByIdArgs as EntityFindTagByIdArgs,
|
|
6556
6565
|
Exact$1 as Exact,
|
|
6557
6566
|
InputMaybe$1 as InputMaybe,
|
|
6558
6567
|
MakeMaybe$1 as MakeMaybe,
|
|
@@ -6693,6 +6702,7 @@ declare namespace shop {
|
|
|
6693
6702
|
ShopShopify$1 as ShopShopify,
|
|
6694
6703
|
ShopTokenWhereInput$1 as ShopTokenWhereInput,
|
|
6695
6704
|
StoreProperty$1 as StoreProperty,
|
|
6705
|
+
Tag$1 as Tag,
|
|
6696
6706
|
TagType$1 as TagType,
|
|
6697
6707
|
TagWhereInput$1 as TagWhereInput,
|
|
6698
6708
|
VariantProductOptionWhereInput$1 as VariantProductOptionWhereInput,
|
|
@@ -37415,7 +37425,8 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
37415
37425
|
type ArticlesQueryResponse = {
|
|
37416
37426
|
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
37417
37427
|
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
37418
|
-
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | '
|
|
37428
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
37429
|
+
tags: Array<never>;
|
|
37419
37430
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
37420
37431
|
blogs?: Maybe$1<{
|
|
37421
37432
|
edges: Array<{
|
|
@@ -37444,8 +37455,15 @@ type BlogsQueryResponse = {
|
|
|
37444
37455
|
node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
37445
37456
|
articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
|
|
37446
37457
|
edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
|
|
37447
|
-
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | '
|
|
37448
|
-
|
|
37458
|
+
node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
|
|
37459
|
+
tags: Array<never>;
|
|
37460
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
37461
|
+
blogs?: Maybe$1<{
|
|
37462
|
+
edges: Array<{
|
|
37463
|
+
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
37464
|
+
}>;
|
|
37465
|
+
}>;
|
|
37466
|
+
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
37449
37467
|
})>;
|
|
37450
37468
|
})>;
|
|
37451
37469
|
})>;
|