@gem-sdk/core 2.0.0-staging.1040 → 2.0.0-staging.1041
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
|
@@ -35285,24 +35285,24 @@ type BlogsQueryVariables = Exact$1<{
|
|
|
35285
35285
|
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
35286
35286
|
}>;
|
|
35287
35287
|
type BlogsQueryResponse = {
|
|
35288
|
-
blogs?: Maybe$1<
|
|
35289
|
-
edges: Array<
|
|
35290
|
-
node?: Maybe$1<
|
|
35291
|
-
articles?: Maybe$1<
|
|
35292
|
-
edges: Array<
|
|
35293
|
-
node?: Maybe$1<
|
|
35288
|
+
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
35289
|
+
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
35290
|
+
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
35291
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
35292
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
35293
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'publishedAt' | 'author'> & {
|
|
35294
35294
|
tags?: Maybe$1<Array<Maybe$1<Pick<Tag$1, 'name'>>>>;
|
|
35295
35295
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
35296
35296
|
media?: Maybe$1<Pick<Media$1, 'width' | 'src' | 'height'>>;
|
|
35297
|
-
}
|
|
35298
|
-
}
|
|
35299
|
-
}
|
|
35300
|
-
}
|
|
35301
|
-
}
|
|
35297
|
+
}>;
|
|
35298
|
+
}>;
|
|
35299
|
+
}>;
|
|
35300
|
+
}>;
|
|
35301
|
+
}>;
|
|
35302
35302
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
35303
|
-
}
|
|
35303
|
+
}>;
|
|
35304
35304
|
};
|
|
35305
|
-
declare const BlogsDocument = "\n query blogs($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: BlogOrder, $where: BlogWhereInput, $articlesOrderBy: ArticleOrder) {\n blogs(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n baseID\n description\n descriptionMeta\n handle\n articles(orderBy: $articlesOrderBy) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n tags {\n name\n }\n content {\n excerptHtml\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n media {\n width\n src\n height\n }\n }\n }\n totalCount\n }\n id\n platform\n tags\n templateSuffix\n title\n titleMeta\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35305
|
+
declare const BlogsDocument = "\n query blogs($after: Cursor, $before: Cursor, $first: Int, $last: Int, $orderBy: BlogOrder, $where: BlogWhereInput, $articlesOrderBy: ArticleOrder) {\n blogs(\n after: $after\n before: $before\n first: $first\n last: $last\n orderBy: $orderBy\n where: $where\n ) {\n edges {\n cursor\n node {\n baseID\n description\n descriptionMeta\n handle\n articles(orderBy: $articlesOrderBy) {\n edges {\n cursor\n node {\n id\n title\n handle\n description\n templateSuffix\n titleMeta\n descriptionMeta\n baseID\n tags {\n name\n }\n content {\n excerptHtml\n html\n }\n isSample\n platformCreatedAt\n platformUpdatedAt\n publishedAt\n author\n media {\n width\n src\n height\n }\n }\n }\n totalCount\n }\n id\n platform\n tags\n templateSuffix\n title\n titleMeta\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n totalCount\n }\n}\n ";
|
|
35306
35306
|
|
|
35307
35307
|
type LibraryTemplateQueryVariables = Exact<{
|
|
35308
35308
|
libraryTemplateId: Scalars['ID'];
|