@gem-sdk/core 3.0.0-pre-production.8 → 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/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.
|
|
@@ -44683,21 +44684,21 @@ type ArticlesQueryVariables = Exact$1<{
|
|
|
44683
44684
|
where?: InputMaybe$1<ArticleWhereInput$1>;
|
|
44684
44685
|
}>;
|
|
44685
44686
|
type ArticlesQueryResponse = {
|
|
44686
|
-
articles?: Maybe$1<
|
|
44687
|
-
edges: Array<
|
|
44688
|
-
node?: Maybe$1<
|
|
44687
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
44688
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
44689
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
44689
44690
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
44690
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
44691
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
|
|
44691
44692
|
blogs?: Maybe$1<{
|
|
44692
44693
|
edges: Array<{
|
|
44693
44694
|
node?: Maybe$1<Pick<Blog$1, 'title' | 'handle'>>;
|
|
44694
44695
|
}>;
|
|
44695
44696
|
}>;
|
|
44696
44697
|
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
44697
|
-
}
|
|
44698
|
-
}
|
|
44698
|
+
}>;
|
|
44699
|
+
}>;
|
|
44699
44700
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
44700
|
-
}
|
|
44701
|
+
}>;
|
|
44701
44702
|
};
|
|
44702
44703
|
|
|
44703
44704
|
type BlogsQueryVariables = Exact$1<{
|
|
@@ -44710,22 +44711,22 @@ type BlogsQueryVariables = Exact$1<{
|
|
|
44710
44711
|
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
44711
44712
|
}>;
|
|
44712
44713
|
type BlogsQueryResponse = {
|
|
44713
|
-
blogs?: Maybe$1<
|
|
44714
|
-
edges: Array<
|
|
44715
|
-
node?: Maybe$1<
|
|
44716
|
-
articles?: Maybe$1<
|
|
44717
|
-
edges: Array<
|
|
44718
|
-
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'> & {
|
|
44719
44720
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
44720
|
-
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
44721
|
+
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml' | 'html'>>;
|
|
44721
44722
|
media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
|
|
44722
|
-
}
|
|
44723
|
-
}
|
|
44724
|
-
}
|
|
44725
|
-
}
|
|
44726
|
-
}
|
|
44723
|
+
}>;
|
|
44724
|
+
}>;
|
|
44725
|
+
}>;
|
|
44726
|
+
}>;
|
|
44727
|
+
}>;
|
|
44727
44728
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
44728
|
-
}
|
|
44729
|
+
}>;
|
|
44729
44730
|
};
|
|
44730
44731
|
|
|
44731
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>;
|