@gem-sdk/core 2.5.19 → 2.5.24
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/blogs.generated.js +1 -0
- package/dist/esm/graphql/queries/articles.generated.js +1 -0
- package/dist/esm/graphql/queries/blogs.generated.js +1 -0
- package/dist/types/index.d.ts +21 -20
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -142,6 +142,7 @@ type ArticleContent$1 = {
|
|
|
142
142
|
excerptHtml?: Maybe$1<Scalars$2['String']>;
|
|
143
143
|
id: Scalars$2['ID'];
|
|
144
144
|
updatedAt?: Maybe$1<Scalars$2['Time']>;
|
|
145
|
+
html?: Maybe$1<Scalars$2['String']>;
|
|
145
146
|
};
|
|
146
147
|
/**
|
|
147
148
|
* ArticleContentWhereInput is used for filtering ArticleContent objects.
|
|
@@ -44682,21 +44683,21 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
44682
44683
|
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
44683
44684
|
}>;
|
|
44684
44685
|
type ArticlesQueryResponse = {
|
|
44685
|
-
articles?: Maybe$1<
|
|
44686
|
-
edges: Array<
|
|
44687
|
-
node?: Maybe$1<
|
|
44686
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
44687
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
44688
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
44688
44689
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
44689
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
44690
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
|
|
44690
44691
|
blogs?: Maybe$1<{
|
|
44691
44692
|
edges: Array<{
|
|
44692
44693
|
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
44693
44694
|
}>;
|
|
44694
44695
|
}>;
|
|
44695
44696
|
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
44696
|
-
}
|
|
44697
|
-
}
|
|
44697
|
+
}>;
|
|
44698
|
+
}>;
|
|
44698
44699
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
44699
|
-
}
|
|
44700
|
+
}>;
|
|
44700
44701
|
};
|
|
44701
44702
|
|
|
44702
44703
|
type BlogsQueryVariables = Exact$1<{
|
|
@@ -44709,22 +44710,22 @@ type BlogsQueryVariables = Exact$1<{
|
|
|
44709
44710
|
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
44710
44711
|
}>;
|
|
44711
44712
|
type BlogsQueryResponse = {
|
|
44712
|
-
blogs?: Maybe$1<
|
|
44713
|
-
edges: Array<
|
|
44714
|
-
node?: Maybe$1<
|
|
44715
|
-
articles?: Maybe$1<
|
|
44716
|
-
edges: Array<
|
|
44717
|
-
node?: Maybe$1<
|
|
44713
|
+
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
44714
|
+
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
44715
|
+
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
44716
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
44717
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
44718
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
44718
44719
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
44719
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
44720
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
|
|
44720
44721
|
media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
|
|
44721
|
-
}
|
|
44722
|
-
}
|
|
44723
|
-
}
|
|
44724
|
-
}
|
|
44725
|
-
}
|
|
44722
|
+
}>;
|
|
44723
|
+
}>;
|
|
44724
|
+
}>;
|
|
44725
|
+
}>;
|
|
44726
|
+
}>;
|
|
44726
44727
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
44727
|
-
}
|
|
44728
|
+
}>;
|
|
44728
44729
|
};
|
|
44729
44730
|
|
|
44730
44731
|
declare const useArticlesQuery: (variables: ArticlesQueryVariables | null, options?: SWRConfiguration<ArticlesQueryResponse>) => swr__internal.SWRResponse<ArticlesQueryResponse, any, Partial<swr__internal.PublicConfiguration<ArticlesQueryResponse, any, (arg: ["query/articles", any]) => swr__internal.FetcherResponse<ArticlesQueryResponse>>> | undefined>;
|