@gem-sdk/core 3.0.0-pre-production.14 → 3.0.0-pre-production.15
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/types/index.d.ts
CHANGED
|
@@ -44711,22 +44711,22 @@ type BlogsQueryVariables = Exact$1<{
|
|
|
44711
44711
|
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
44712
44712
|
}>;
|
|
44713
44713
|
type BlogsQueryResponse = {
|
|
44714
|
-
blogs?: Maybe$1<
|
|
44715
|
-
edges: Array<
|
|
44716
|
-
node?: Maybe$1<
|
|
44717
|
-
articles?: Maybe$1<
|
|
44718
|
-
edges: Array<
|
|
44719
|
-
node?: Maybe$1<
|
|
44714
|
+
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
44715
|
+
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
44716
|
+
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
44717
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
44718
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
44719
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
44720
44720
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
44721
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
44721
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
|
|
44722
44722
|
media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
|
|
44723
|
-
}
|
|
44724
|
-
}
|
|
44725
|
-
}
|
|
44726
|
-
}
|
|
44727
|
-
}
|
|
44723
|
+
}>;
|
|
44724
|
+
}>;
|
|
44725
|
+
}>;
|
|
44726
|
+
}>;
|
|
44727
|
+
}>;
|
|
44728
44728
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
44729
|
-
}
|
|
44729
|
+
}>;
|
|
44730
44730
|
};
|
|
44731
44731
|
|
|
44732
44732
|
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>;
|