@gem-sdk/core 1.58.0-dev.142 → 1.58.0-dev.145
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
|
@@ -42051,12 +42051,12 @@ type BlogsQueryVariables = Exact$1<{
|
|
|
42051
42051
|
articlesOrderBy?: InputMaybe$1<ArticleOrder$1>;
|
|
42052
42052
|
}>;
|
|
42053
42053
|
type BlogsQueryResponse = {
|
|
42054
|
-
blogs?: Maybe$1<
|
|
42055
|
-
edges: Array<
|
|
42056
|
-
node?: Maybe$1<
|
|
42057
|
-
articles?: Maybe$1<
|
|
42058
|
-
edges: Array<
|
|
42059
|
-
node?: Maybe$1<
|
|
42054
|
+
blogs?: Maybe$1<Pick<BlogConnection$1, 'totalCount'> & {
|
|
42055
|
+
edges: Array<Pick<BlogEdge$1, 'cursor'> & {
|
|
42056
|
+
node?: Maybe$1<Pick<Blog$1, 'baseID' | 'description' | 'descriptionMeta' | 'handle' | 'id' | 'platform' | 'tags' | 'templateSuffix' | 'title' | 'titleMeta'> & {
|
|
42057
|
+
articles?: Maybe$1<Pick<ArticleConnection$1, 'totalCount'> & {
|
|
42058
|
+
edges: Array<Pick<ArticleEdge$1, 'cursor'> & {
|
|
42059
|
+
node?: Maybe$1<Pick<Article$2, 'id' | 'title' | 'handle' | 'description' | 'templateSuffix' | 'titleMeta' | 'descriptionMeta' | 'baseID' | 'platform' | 'isSample' | 'platformCreatedAt' | 'platformUpdatedAt' | 'author'> & {
|
|
42060
42060
|
tags: Array<never>;
|
|
42061
42061
|
content?: Maybe$1<Pick<ArticleContent$1, 'excerptHtml'>>;
|
|
42062
42062
|
blogs?: Maybe$1<{
|
|
@@ -42065,13 +42065,13 @@ type BlogsQueryResponse = {
|
|
|
42065
42065
|
}>;
|
|
42066
42066
|
}>;
|
|
42067
42067
|
media?: Maybe$1<Pick<Media$1, 'alt' | 'width' | 'src' | 'height'>>;
|
|
42068
|
-
}
|
|
42069
|
-
}
|
|
42070
|
-
}
|
|
42071
|
-
}
|
|
42072
|
-
}
|
|
42068
|
+
}>;
|
|
42069
|
+
}>;
|
|
42070
|
+
}>;
|
|
42071
|
+
}>;
|
|
42072
|
+
}>;
|
|
42073
42073
|
pageInfo?: Maybe$1<Pick<PageInfo$1, 'endCursor' | 'hasNextPage' | 'hasPreviousPage' | 'startCursor'>>;
|
|
42074
|
-
}
|
|
42074
|
+
}>;
|
|
42075
42075
|
};
|
|
42076
42076
|
|
|
42077
42077
|
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>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "1.58.0-dev.
|
|
3
|
+
"version": "1.58.0-dev.145",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@gem-sdk/adapter-shopify": "1.58.0-dev.142",
|
|
31
|
-
"@gem-sdk/styles": "1.58.0-dev.
|
|
31
|
+
"@gem-sdk/styles": "1.58.0-dev.145",
|
|
32
32
|
"@types/classnames": "^2.3.1"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|