@gem-sdk/core 1.45.0-dev.139 → 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.
@@ -22,7 +22,9 @@ const ArticlesDocument = `
22
22
  descriptionMeta
23
23
  baseID
24
24
  platform
25
- tags
25
+ tags {
26
+ name
27
+ }
26
28
  isSample
27
29
  platformCreatedAt
28
30
  author
@@ -29,10 +29,15 @@ const BlogsDocument = `
29
29
  titleMeta
30
30
  descriptionMeta
31
31
  baseID
32
- tags
32
+ tags {
33
+ name
34
+ }
33
35
  isSample
34
36
  platformCreatedAt
35
37
  author
38
+ content {
39
+ excerptHtml
40
+ }
36
41
  media {
37
42
  width
38
43
  src
@@ -20,7 +20,9 @@ const ArticlesDocument = `
20
20
  descriptionMeta
21
21
  baseID
22
22
  platform
23
- tags
23
+ tags {
24
+ name
25
+ }
24
26
  isSample
25
27
  platformCreatedAt
26
28
  author
@@ -27,10 +27,15 @@ const BlogsDocument = `
27
27
  titleMeta
28
28
  descriptionMeta
29
29
  baseID
30
- tags
30
+ tags {
31
+ name
32
+ }
31
33
  isSample
32
34
  platformCreatedAt
33
35
  author
36
+ content {
37
+ excerptHtml
38
+ }
34
39
  media {
35
40
  width
36
41
  src
@@ -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: Array<Scalars$2['String']>;
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,
@@ -7235,6 +7245,7 @@ type RangeControlType<T> = SharedControlType<T> & {
7235
7245
  units?: string[];
7236
7246
  disableOnChange?: boolean;
7237
7247
  useOnlyUnitInit?: boolean;
7248
+ ignoreMax?: boolean;
7238
7249
  hideUnit?: boolean;
7239
7250
  hideInput?: boolean;
7240
7251
  } & OnlyOne<{
@@ -37414,7 +37425,8 @@ type ArticlesQueryVariables = Exact$1<{
37414
37425
  type ArticlesQueryResponse = {
37415
37426
  articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
37416
37427
  edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
37417
- node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'tags' | 'isSample' | 'platformCreatedAt' | 'author'> & {
37428
+ node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'author'> & {
37429
+ tags: Array<never>;
37418
37430
  content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
37419
37431
  blogs?: Maybe$1<{
37420
37432
  edges: Array<{
@@ -37443,8 +37455,15 @@ type BlogsQueryResponse = {
37443
37455
  node?: Maybe$1<(Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
37444
37456
  articles?: Maybe$1<(Pick<ArticleConnection$1, 'totalCount'> & {
37445
37457
  edges: Array<(Pick<ArticleEdge$1, 'cursor'> & {
37446
- node?: Maybe$1<(Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'tags' | 'isSample' | 'platformCreatedAt' | 'author'> & {
37447
- media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
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'>>;
37448
37467
  })>;
37449
37468
  })>;
37450
37469
  })>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gem-sdk/core",
3
- "version": "1.45.0-dev.139",
3
+ "version": "1.45.0-dev.142",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "main": "dist/cjs/index.js",