@soppiya/app-bridge 1.1.1 → 1.1.2
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/components/articles-picker/ui/ArticlesPicker.js +1 -1
- package/dist/components/blogs-picker/ui/BlogsPicker.js +0 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +1 -0
- package/dist/components/link-list-picker/api/query.d.ts +8 -0
- package/dist/components/link-list-picker/api/query.js +22 -0
- package/dist/components/link-list-picker/index.d.ts +1 -0
- package/dist/components/link-list-picker/index.js +2 -0
- package/dist/components/link-list-picker/model/useLinkList.d.ts +30 -0
- package/dist/components/link-list-picker/model/useLinkList.js +46 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.d.ts +9 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.js +98 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.stories.d.ts +14 -0
- package/dist/components/link-list-picker/ui/LinkListPicker.stories.js +10 -0
- package/dist/shared/graphql/gql.d.ts +5 -0
- package/dist/shared/graphql/gql.js +2 -1
- package/dist/shared/graphql/graphql.d.ts +35 -0
- package/dist/shared/graphql/graphql.js +325 -1
- package/package.json +1 -1
|
@@ -33,7 +33,7 @@ const ArticlesPicker = ({ title, initialIds = [], limit = 1 / 0, onClose, onOk }
|
|
|
33
33
|
});
|
|
34
34
|
return /*#__PURE__*/ jsx(Modal, {
|
|
35
35
|
open: true,
|
|
36
|
-
title: title || "
|
|
36
|
+
title: title || "Articles",
|
|
37
37
|
bodyPadding: 0,
|
|
38
38
|
buttons: ButtonJSX,
|
|
39
39
|
onClose: onClose,
|
|
@@ -22,7 +22,6 @@ const BlogsPicker = ({ title, initialIds = [], limit = 1 / 0, onClose, onOk })=>
|
|
|
22
22
|
const handleOk = ()=>{
|
|
23
23
|
if (lodash.isFunction(onOk)) onOk(selectedBlog);
|
|
24
24
|
};
|
|
25
|
-
console.log(selectedBlog);
|
|
26
25
|
const ButtonJSX = /*#__PURE__*/ jsx(InlineStack, {
|
|
27
26
|
justifyContent: "end",
|
|
28
27
|
children: /*#__PURE__*/ jsx(Button, {
|
package/dist/components/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./articles-picker/index.js";
|
|
2
2
|
export * from "./blogs-picker/index.js";
|
|
3
3
|
export * from "./collections-pciker/index.js";
|
|
4
|
+
export * from "./link-list-picker/index.js";
|
|
4
5
|
export * from "./media/index.js";
|
|
5
6
|
export * from "./meta-data/index.js";
|
|
6
7
|
export * from "./pages-picker/index.js";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const linkListQuery: import("@graphql-typed-document-node/core").TypedDocumentNode<import("../../../shared/graphql/graphql").LinklistsQuery, import("../../../shared/graphql/graphql").Exact<{
|
|
2
|
+
after?: import("../../../shared/graphql/graphql").InputMaybe<import("../../../shared/graphql/graphql").Scalars["ID"]["input"]>;
|
|
3
|
+
before?: import("../../../shared/graphql/graphql").InputMaybe<import("../../../shared/graphql/graphql").Scalars["ID"]["input"]>;
|
|
4
|
+
first?: import("../../../shared/graphql/graphql").InputMaybe<import("../../../shared/graphql/graphql").Scalars["Int"]["input"]>;
|
|
5
|
+
last?: import("../../../shared/graphql/graphql").InputMaybe<import("../../../shared/graphql/graphql").Scalars["Int"]["input"]>;
|
|
6
|
+
query?: import("../../../shared/graphql/graphql").InputMaybe<import("../../../shared/graphql/graphql").Scalars["String"]["input"]>;
|
|
7
|
+
filterKeys?: import("../../../shared/graphql/graphql").InputMaybe<import("../../../shared/graphql/graphql").LinklistFilterKeys>;
|
|
8
|
+
}>>;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { graphql } from "../../../shared/graphql/index.js";
|
|
2
|
+
const linkListQuery = graphql(`query Linklists($after: ID, $before: ID, $first: Int, $last: Int, $query: String, $filterKeys: LinklistFilterKeys) {
|
|
3
|
+
linklists(after: $after, before: $before, first: $first, last: $last, query: $query, filterKeys: $filterKeys) {
|
|
4
|
+
pageInfo {
|
|
5
|
+
endCursor
|
|
6
|
+
hasNextPage
|
|
7
|
+
hasPreviousPage
|
|
8
|
+
startCursor
|
|
9
|
+
}
|
|
10
|
+
edges {
|
|
11
|
+
node {
|
|
12
|
+
_id
|
|
13
|
+
title
|
|
14
|
+
links {
|
|
15
|
+
url
|
|
16
|
+
_id
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}`);
|
|
22
|
+
export { linkListQuery };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as LinkListPicker } from "./ui/LinkListPicker";
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { LinklistFilterKeys } from "../../../shared/graphql/graphql";
|
|
2
|
+
type Props = {
|
|
3
|
+
skip?: boolean;
|
|
4
|
+
first?: number;
|
|
5
|
+
query?: string | null;
|
|
6
|
+
filterKeys?: LinklistFilterKeys;
|
|
7
|
+
};
|
|
8
|
+
export declare const useLinklist: (props?: Props) => {
|
|
9
|
+
linklists: {
|
|
10
|
+
__typename: "Linklist";
|
|
11
|
+
_id?: string | null;
|
|
12
|
+
title?: string | null;
|
|
13
|
+
links?: Array<{
|
|
14
|
+
__typename: "LinklistLayer1";
|
|
15
|
+
url?: string | null;
|
|
16
|
+
_id?: string | null;
|
|
17
|
+
} | null> | null;
|
|
18
|
+
}[] | undefined;
|
|
19
|
+
pageInfo: {
|
|
20
|
+
__typename: "PageInfo";
|
|
21
|
+
endCursor?: string | null;
|
|
22
|
+
hasNextPage?: boolean | null;
|
|
23
|
+
hasPreviousPage?: boolean | null;
|
|
24
|
+
startCursor?: string | null;
|
|
25
|
+
} | null | undefined;
|
|
26
|
+
isLoadingLinklist: boolean;
|
|
27
|
+
error: import("@apollo/client").ErrorLike | undefined;
|
|
28
|
+
fetchMoreLinklists: () => void;
|
|
29
|
+
};
|
|
30
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { useQuery } from "@apollo/client/react";
|
|
2
|
+
import { linkListQuery } from "../api/query.js";
|
|
3
|
+
const useLinklist = (props = {})=>{
|
|
4
|
+
const { skip, first, query, filterKeys } = props;
|
|
5
|
+
const { data, loading: isLoadingLinklist, error, fetchMore } = useQuery(linkListQuery, {
|
|
6
|
+
skip,
|
|
7
|
+
variables: {
|
|
8
|
+
first,
|
|
9
|
+
query,
|
|
10
|
+
filterKeys
|
|
11
|
+
}
|
|
12
|
+
});
|
|
13
|
+
const linklists = data?.linklists?.edges?.map((edge)=>edge?.node).filter((node)=>null != node);
|
|
14
|
+
const pageInfo = data?.linklists?.pageInfo;
|
|
15
|
+
const fetchMoreLinklists = ()=>{
|
|
16
|
+
if (!pageInfo?.hasNextPage) return;
|
|
17
|
+
fetchMore({
|
|
18
|
+
variables: {
|
|
19
|
+
first,
|
|
20
|
+
query,
|
|
21
|
+
filterKeys,
|
|
22
|
+
after: pageInfo.endCursor
|
|
23
|
+
},
|
|
24
|
+
updateQuery (prev, { fetchMoreResult }) {
|
|
25
|
+
if (!fetchMoreResult.linklists?.edges || !prev.linklists?.edges) return prev;
|
|
26
|
+
return {
|
|
27
|
+
linklists: {
|
|
28
|
+
...fetchMoreResult.linklists,
|
|
29
|
+
edges: [
|
|
30
|
+
...prev.linklists.edges,
|
|
31
|
+
...fetchMoreResult.linklists.edges
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
};
|
|
38
|
+
return {
|
|
39
|
+
linklists,
|
|
40
|
+
pageInfo,
|
|
41
|
+
isLoadingLinklist,
|
|
42
|
+
error,
|
|
43
|
+
fetchMoreLinklists
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export { useLinklist };
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
title?: string;
|
|
3
|
+
initialIds?: string[];
|
|
4
|
+
limit?: number;
|
|
5
|
+
onClose?: () => void;
|
|
6
|
+
onOk?: (linklist: string[]) => void;
|
|
7
|
+
};
|
|
8
|
+
declare const LinkListPicker: ({ title, initialIds, limit, onClose, onOk }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default LinkListPicker;
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { InfinityScroll } from "../../infinity-scroll/index.js";
|
|
3
|
+
import { useFilterQuery } from "../../../shared/lib/index.js";
|
|
4
|
+
import { BlockStack, Box, Button, Checkbox, InlineStack, Input, Modal, Spinner, Text } from "@soppiya/elementus";
|
|
5
|
+
import lodash from "lodash";
|
|
6
|
+
import { useState } from "react";
|
|
7
|
+
import { useLinklist } from "../model/useLinkList.js";
|
|
8
|
+
const LinkListPicker_LinkListPicker = ({ title, initialIds = [], limit = 1 / 0, onClose, onOk })=>{
|
|
9
|
+
const [selectedLinklist, setSelectedLinklist] = useState(initialIds);
|
|
10
|
+
const { query, debounceQuery, onChangeQuery } = useFilterQuery();
|
|
11
|
+
const { linklists, isLoadingLinklist, fetchMoreLinklists, pageInfo } = useLinklist({
|
|
12
|
+
first: 20,
|
|
13
|
+
query: debounceQuery
|
|
14
|
+
});
|
|
15
|
+
const isSelected = limit === 1 / 0 ? true : 1 === limit ? 1 === selectedLinklist.length : selectedLinklist.length >= limit;
|
|
16
|
+
const handleSelectedLinklist = (linkListId)=>{
|
|
17
|
+
selectedLinklist.includes(linkListId) ? setSelectedLinklist((prev)=>prev.filter((id)=>id !== linkListId)) : setSelectedLinklist((prev)=>[
|
|
18
|
+
...prev,
|
|
19
|
+
linkListId
|
|
20
|
+
]);
|
|
21
|
+
};
|
|
22
|
+
const handleOk = ()=>{
|
|
23
|
+
if (lodash.isFunction(onOk)) onOk(selectedLinklist);
|
|
24
|
+
};
|
|
25
|
+
const ButtonJSX = /*#__PURE__*/ jsx(InlineStack, {
|
|
26
|
+
justifyContent: "end",
|
|
27
|
+
children: /*#__PURE__*/ jsx(Button, {
|
|
28
|
+
disabled: lodash.isEmpty(selectedLinklist) || !isSelected,
|
|
29
|
+
onClick: handleOk,
|
|
30
|
+
children: "Add"
|
|
31
|
+
})
|
|
32
|
+
});
|
|
33
|
+
return /*#__PURE__*/ jsx(Modal, {
|
|
34
|
+
open: true,
|
|
35
|
+
title: title || "Linklist",
|
|
36
|
+
bodyPadding: 0,
|
|
37
|
+
buttons: ButtonJSX,
|
|
38
|
+
onClose: onClose,
|
|
39
|
+
children: /*#__PURE__*/ jsxs(BlockStack, {
|
|
40
|
+
children: [
|
|
41
|
+
/*#__PURE__*/ jsx(Box, {
|
|
42
|
+
className: "border-b border-b-[#ebebeb]! h",
|
|
43
|
+
padding: 60,
|
|
44
|
+
children: /*#__PURE__*/ jsx(Input, {
|
|
45
|
+
size: "sm",
|
|
46
|
+
type: "search",
|
|
47
|
+
value: query ?? "",
|
|
48
|
+
onChange: (event)=>onChangeQuery(event.target.value)
|
|
49
|
+
})
|
|
50
|
+
}),
|
|
51
|
+
isLoadingLinklist ? /*#__PURE__*/ jsx(InlineStack, {
|
|
52
|
+
justifyContent: "center",
|
|
53
|
+
padding: 80,
|
|
54
|
+
children: /*#__PURE__*/ jsx(Spinner, {
|
|
55
|
+
size: "md"
|
|
56
|
+
})
|
|
57
|
+
}) : /*#__PURE__*/ jsxs(BlockStack, {
|
|
58
|
+
children: [
|
|
59
|
+
linklists?.map((linklist)=>/*#__PURE__*/ jsxs(InlineStack, {
|
|
60
|
+
stack: "full",
|
|
61
|
+
className: "lg:cursor-pointer border-b border-b-[#ebebeb]!",
|
|
62
|
+
gapX: 60,
|
|
63
|
+
padding: 60,
|
|
64
|
+
onClick: ()=>handleSelectedLinklist(String(linklist._id)),
|
|
65
|
+
children: [
|
|
66
|
+
/*#__PURE__*/ jsx(InlineStack, {
|
|
67
|
+
alignItems: "center",
|
|
68
|
+
gapX: 60,
|
|
69
|
+
children: /*#__PURE__*/ jsx(Box, {
|
|
70
|
+
children: /*#__PURE__*/ jsx(Checkbox, {
|
|
71
|
+
checked: selectedLinklist.includes(String(linklist._id)),
|
|
72
|
+
onChange: ()=>{}
|
|
73
|
+
})
|
|
74
|
+
})
|
|
75
|
+
}),
|
|
76
|
+
/*#__PURE__*/ jsx(BlockStack, {
|
|
77
|
+
gapY: 30,
|
|
78
|
+
justifyContent: "center",
|
|
79
|
+
children: /*#__PURE__*/ jsx(Text, {
|
|
80
|
+
size: "sm",
|
|
81
|
+
color: "secondary",
|
|
82
|
+
truncate: "truncate-1",
|
|
83
|
+
children: linklist.title
|
|
84
|
+
})
|
|
85
|
+
})
|
|
86
|
+
]
|
|
87
|
+
}, linklist._id)),
|
|
88
|
+
pageInfo?.hasNextPage && /*#__PURE__*/ jsx(InfinityScroll, {
|
|
89
|
+
onFetch: fetchMoreLinklists
|
|
90
|
+
})
|
|
91
|
+
]
|
|
92
|
+
})
|
|
93
|
+
]
|
|
94
|
+
})
|
|
95
|
+
});
|
|
96
|
+
};
|
|
97
|
+
const LinkListPicker = LinkListPicker_LinkListPicker;
|
|
98
|
+
export { LinkListPicker as default };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
declare const meta: {
|
|
2
|
+
title: string;
|
|
3
|
+
component: ({ title, initialIds, limit, onClose, onOk }: {
|
|
4
|
+
title?: string;
|
|
5
|
+
initialIds?: string[];
|
|
6
|
+
limit?: number;
|
|
7
|
+
onClose?: () => void;
|
|
8
|
+
onOk?: (linklist: string[]) => void;
|
|
9
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
};
|
|
11
|
+
export default meta;
|
|
12
|
+
export declare const Default: {
|
|
13
|
+
args: {};
|
|
14
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import LinkListPicker from "./LinkListPicker.js";
|
|
2
|
+
const meta = {
|
|
3
|
+
title: "Example/LinkListPicker",
|
|
4
|
+
component: LinkListPicker
|
|
5
|
+
};
|
|
6
|
+
const LinkListPicker_stories = meta;
|
|
7
|
+
const Default = {
|
|
8
|
+
args: {}
|
|
9
|
+
};
|
|
10
|
+
export { Default, LinkListPicker_stories as default };
|
|
@@ -15,6 +15,7 @@ type Documents = {
|
|
|
15
15
|
"query Articles($filterKeys: ArticleFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n articles(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}": typeof types.ArticlesDocument;
|
|
16
16
|
"query Blogs($filterKeys: BlogFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n blogs(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n }\n}": typeof types.BlogsDocument;
|
|
17
17
|
"query Collections($skip: Int, $filterKeys: CollectionFilterKeys, $query: String) {\n collections(skip: $skip, filterKeys: $filterKeys, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}": typeof types.CollectionsDocument;
|
|
18
|
+
"query Linklists($after: ID, $before: ID, $first: Int, $last: Int, $query: String, $filterKeys: LinklistFilterKeys) {\n linklists(after: $after, before: $before, first: $first, last: $last, query: $query, filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n links {\n url\n _id\n }\n }\n }\n }\n}": typeof types.LinklistsDocument;
|
|
18
19
|
"\n query Medias(\n $after: ID\n $before: ID\n $first: Int\n $last: Int\n $query: String\n $reverse: Boolean\n $sortKey: MediaSortKeys\n $filterKeys: MediaFilterKeys\n ) {\n medias(\n after: $after\n before: $before\n first: $first\n last: $last\n query: $query\n reverse: $reverse\n sortKey: $sortKey\n filterKeys: $filterKeys\n ) {\n edges {\n node {\n _id\n file_name\n url\n size\n type\n mimetype\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n }\n": typeof types.MediasDocument;
|
|
19
20
|
"\n query StoragePlan {\n plan {\n storage\n package {\n _id\n storage\n }\n }\n }\n": typeof types.StoragePlanDocument;
|
|
20
21
|
"\n query MediaUsage {\n mediaUsage\n }\n": typeof types.MediaUsageDocument;
|
|
@@ -51,6 +52,10 @@ export declare function graphql(source: "query Blogs($filterKeys: BlogFilterKeys
|
|
|
51
52
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
52
53
|
*/
|
|
53
54
|
export declare function graphql(source: "query Collections($skip: Int, $filterKeys: CollectionFilterKeys, $query: String) {\n collections(skip: $skip, filterKeys: $filterKeys, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}"): (typeof documents)["query Collections($skip: Int, $filterKeys: CollectionFilterKeys, $query: String) {\n collections(skip: $skip, filterKeys: $filterKeys, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}"];
|
|
55
|
+
/**
|
|
56
|
+
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
57
|
+
*/
|
|
58
|
+
export declare function graphql(source: "query Linklists($after: ID, $before: ID, $first: Int, $last: Int, $query: String, $filterKeys: LinklistFilterKeys) {\n linklists(after: $after, before: $before, first: $first, last: $last, query: $query, filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n links {\n url\n _id\n }\n }\n }\n }\n}"): (typeof documents)["query Linklists($after: ID, $before: ID, $first: Int, $last: Int, $query: String, $filterKeys: LinklistFilterKeys) {\n linklists(after: $after, before: $before, first: $first, last: $last, query: $query, filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n links {\n url\n _id\n }\n }\n }\n }\n}"];
|
|
54
59
|
/**
|
|
55
60
|
* The graphql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
56
61
|
*/
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
-
import { AddMediasDocument, ArticlesDocument, BlogsDocument, CollectionsDocument, DeleteMediasDocument, MediaUsageDocument, MediasDocument, MetafieldsDocument, PagesDocument, ProductsDocument, StoragePlanDocument, VariantsDocument } from "./graphql.js";
|
|
1
|
+
import { AddMediasDocument, ArticlesDocument, BlogsDocument, CollectionsDocument, DeleteMediasDocument, LinklistsDocument, MediaUsageDocument, MediasDocument, MetafieldsDocument, PagesDocument, ProductsDocument, StoragePlanDocument, VariantsDocument } from "./graphql.js";
|
|
2
2
|
const documents = {
|
|
3
3
|
"query Articles($filterKeys: ArticleFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n articles(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}": ArticlesDocument,
|
|
4
4
|
"query Blogs($filterKeys: BlogFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n blogs(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n }\n}": BlogsDocument,
|
|
5
5
|
"query Collections($skip: Int, $filterKeys: CollectionFilterKeys, $query: String) {\n collections(skip: $skip, filterKeys: $filterKeys, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}": CollectionsDocument,
|
|
6
|
+
"query Linklists($after: ID, $before: ID, $first: Int, $last: Int, $query: String, $filterKeys: LinklistFilterKeys) {\n linklists(after: $after, before: $before, first: $first, last: $last, query: $query, filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n links {\n url\n _id\n }\n }\n }\n }\n}": LinklistsDocument,
|
|
6
7
|
"\n query Medias(\n $after: ID\n $before: ID\n $first: Int\n $last: Int\n $query: String\n $reverse: Boolean\n $sortKey: MediaSortKeys\n $filterKeys: MediaFilterKeys\n ) {\n medias(\n after: $after\n before: $before\n first: $first\n last: $last\n query: $query\n reverse: $reverse\n sortKey: $sortKey\n filterKeys: $filterKeys\n ) {\n edges {\n node {\n _id\n file_name\n url\n size\n type\n mimetype\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n }\n": MediasDocument,
|
|
7
8
|
"\n query StoragePlan {\n plan {\n storage\n package {\n _id\n storage\n }\n }\n }\n": StoragePlanDocument,
|
|
8
9
|
"\n query MediaUsage {\n mediaUsage\n }\n": MediaUsageDocument,
|
|
@@ -639,6 +639,7 @@ export type CartLineItem = {
|
|
|
639
639
|
product?: Maybe<Product>;
|
|
640
640
|
product_title?: Maybe<Scalars['String']['output']>;
|
|
641
641
|
quantity?: Maybe<Scalars['Int']['output']>;
|
|
642
|
+
shipping_profile?: Maybe<ShippingProfile>;
|
|
642
643
|
sku?: Maybe<Scalars['String']['output']>;
|
|
643
644
|
source?: Maybe<CartLineItemSource>;
|
|
644
645
|
variant?: Maybe<Variant>;
|
|
@@ -6608,6 +6609,39 @@ export type CollectionsQuery = {
|
|
|
6608
6609
|
} | null;
|
|
6609
6610
|
} | null;
|
|
6610
6611
|
};
|
|
6612
|
+
export type LinklistsQueryVariables = Exact<{
|
|
6613
|
+
after?: InputMaybe<Scalars['ID']['input']>;
|
|
6614
|
+
before?: InputMaybe<Scalars['ID']['input']>;
|
|
6615
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
6616
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
6617
|
+
query?: InputMaybe<Scalars['String']['input']>;
|
|
6618
|
+
filterKeys?: InputMaybe<LinklistFilterKeys>;
|
|
6619
|
+
}>;
|
|
6620
|
+
export type LinklistsQuery = {
|
|
6621
|
+
linklists?: {
|
|
6622
|
+
__typename: 'LinklistConnection';
|
|
6623
|
+
pageInfo?: {
|
|
6624
|
+
__typename: 'PageInfo';
|
|
6625
|
+
endCursor?: string | null;
|
|
6626
|
+
hasNextPage?: boolean | null;
|
|
6627
|
+
hasPreviousPage?: boolean | null;
|
|
6628
|
+
startCursor?: string | null;
|
|
6629
|
+
} | null;
|
|
6630
|
+
edges?: Array<{
|
|
6631
|
+
__typename: 'LinklistEdge';
|
|
6632
|
+
node?: {
|
|
6633
|
+
__typename: 'Linklist';
|
|
6634
|
+
_id?: string | null;
|
|
6635
|
+
title?: string | null;
|
|
6636
|
+
links?: Array<{
|
|
6637
|
+
__typename: 'LinklistLayer1';
|
|
6638
|
+
url?: string | null;
|
|
6639
|
+
_id?: string | null;
|
|
6640
|
+
} | null> | null;
|
|
6641
|
+
} | null;
|
|
6642
|
+
} | null> | null;
|
|
6643
|
+
} | null;
|
|
6644
|
+
};
|
|
6611
6645
|
export type MediasQueryVariables = Exact<{
|
|
6612
6646
|
after?: InputMaybe<Scalars['ID']['input']>;
|
|
6613
6647
|
before?: InputMaybe<Scalars['ID']['input']>;
|
|
@@ -6811,6 +6845,7 @@ export type VariantsQuery = {
|
|
|
6811
6845
|
export declare const ArticlesDocument: DocumentNode<ArticlesQuery, ArticlesQueryVariables>;
|
|
6812
6846
|
export declare const BlogsDocument: DocumentNode<BlogsQuery, BlogsQueryVariables>;
|
|
6813
6847
|
export declare const CollectionsDocument: DocumentNode<CollectionsQuery, CollectionsQueryVariables>;
|
|
6848
|
+
export declare const LinklistsDocument: DocumentNode<LinklistsQuery, LinklistsQueryVariables>;
|
|
6814
6849
|
export declare const MediasDocument: DocumentNode<MediasQuery, MediasQueryVariables>;
|
|
6815
6850
|
export declare const StoragePlanDocument: DocumentNode<StoragePlanQuery, StoragePlanQueryVariables>;
|
|
6816
6851
|
export declare const MediaUsageDocument: DocumentNode<MediaUsageQuery, MediaUsageQueryVariables>;
|
|
@@ -1865,6 +1865,330 @@ const CollectionsDocument = {
|
|
|
1865
1865
|
}
|
|
1866
1866
|
]
|
|
1867
1867
|
};
|
|
1868
|
+
const LinklistsDocument = {
|
|
1869
|
+
kind: "Document",
|
|
1870
|
+
definitions: [
|
|
1871
|
+
{
|
|
1872
|
+
kind: "OperationDefinition",
|
|
1873
|
+
operation: "query",
|
|
1874
|
+
name: {
|
|
1875
|
+
kind: "Name",
|
|
1876
|
+
value: "Linklists"
|
|
1877
|
+
},
|
|
1878
|
+
variableDefinitions: [
|
|
1879
|
+
{
|
|
1880
|
+
kind: "VariableDefinition",
|
|
1881
|
+
variable: {
|
|
1882
|
+
kind: "Variable",
|
|
1883
|
+
name: {
|
|
1884
|
+
kind: "Name",
|
|
1885
|
+
value: "after"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
type: {
|
|
1889
|
+
kind: "NamedType",
|
|
1890
|
+
name: {
|
|
1891
|
+
kind: "Name",
|
|
1892
|
+
value: "ID"
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1895
|
+
},
|
|
1896
|
+
{
|
|
1897
|
+
kind: "VariableDefinition",
|
|
1898
|
+
variable: {
|
|
1899
|
+
kind: "Variable",
|
|
1900
|
+
name: {
|
|
1901
|
+
kind: "Name",
|
|
1902
|
+
value: "before"
|
|
1903
|
+
}
|
|
1904
|
+
},
|
|
1905
|
+
type: {
|
|
1906
|
+
kind: "NamedType",
|
|
1907
|
+
name: {
|
|
1908
|
+
kind: "Name",
|
|
1909
|
+
value: "ID"
|
|
1910
|
+
}
|
|
1911
|
+
}
|
|
1912
|
+
},
|
|
1913
|
+
{
|
|
1914
|
+
kind: "VariableDefinition",
|
|
1915
|
+
variable: {
|
|
1916
|
+
kind: "Variable",
|
|
1917
|
+
name: {
|
|
1918
|
+
kind: "Name",
|
|
1919
|
+
value: "first"
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
type: {
|
|
1923
|
+
kind: "NamedType",
|
|
1924
|
+
name: {
|
|
1925
|
+
kind: "Name",
|
|
1926
|
+
value: "Int"
|
|
1927
|
+
}
|
|
1928
|
+
}
|
|
1929
|
+
},
|
|
1930
|
+
{
|
|
1931
|
+
kind: "VariableDefinition",
|
|
1932
|
+
variable: {
|
|
1933
|
+
kind: "Variable",
|
|
1934
|
+
name: {
|
|
1935
|
+
kind: "Name",
|
|
1936
|
+
value: "last"
|
|
1937
|
+
}
|
|
1938
|
+
},
|
|
1939
|
+
type: {
|
|
1940
|
+
kind: "NamedType",
|
|
1941
|
+
name: {
|
|
1942
|
+
kind: "Name",
|
|
1943
|
+
value: "Int"
|
|
1944
|
+
}
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1947
|
+
{
|
|
1948
|
+
kind: "VariableDefinition",
|
|
1949
|
+
variable: {
|
|
1950
|
+
kind: "Variable",
|
|
1951
|
+
name: {
|
|
1952
|
+
kind: "Name",
|
|
1953
|
+
value: "query"
|
|
1954
|
+
}
|
|
1955
|
+
},
|
|
1956
|
+
type: {
|
|
1957
|
+
kind: "NamedType",
|
|
1958
|
+
name: {
|
|
1959
|
+
kind: "Name",
|
|
1960
|
+
value: "String"
|
|
1961
|
+
}
|
|
1962
|
+
}
|
|
1963
|
+
},
|
|
1964
|
+
{
|
|
1965
|
+
kind: "VariableDefinition",
|
|
1966
|
+
variable: {
|
|
1967
|
+
kind: "Variable",
|
|
1968
|
+
name: {
|
|
1969
|
+
kind: "Name",
|
|
1970
|
+
value: "filterKeys"
|
|
1971
|
+
}
|
|
1972
|
+
},
|
|
1973
|
+
type: {
|
|
1974
|
+
kind: "NamedType",
|
|
1975
|
+
name: {
|
|
1976
|
+
kind: "Name",
|
|
1977
|
+
value: "LinklistFilterKeys"
|
|
1978
|
+
}
|
|
1979
|
+
}
|
|
1980
|
+
}
|
|
1981
|
+
],
|
|
1982
|
+
selectionSet: {
|
|
1983
|
+
kind: "SelectionSet",
|
|
1984
|
+
selections: [
|
|
1985
|
+
{
|
|
1986
|
+
kind: "Field",
|
|
1987
|
+
name: {
|
|
1988
|
+
kind: "Name",
|
|
1989
|
+
value: "linklists"
|
|
1990
|
+
},
|
|
1991
|
+
arguments: [
|
|
1992
|
+
{
|
|
1993
|
+
kind: "Argument",
|
|
1994
|
+
name: {
|
|
1995
|
+
kind: "Name",
|
|
1996
|
+
value: "after"
|
|
1997
|
+
},
|
|
1998
|
+
value: {
|
|
1999
|
+
kind: "Variable",
|
|
2000
|
+
name: {
|
|
2001
|
+
kind: "Name",
|
|
2002
|
+
value: "after"
|
|
2003
|
+
}
|
|
2004
|
+
}
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
kind: "Argument",
|
|
2008
|
+
name: {
|
|
2009
|
+
kind: "Name",
|
|
2010
|
+
value: "before"
|
|
2011
|
+
},
|
|
2012
|
+
value: {
|
|
2013
|
+
kind: "Variable",
|
|
2014
|
+
name: {
|
|
2015
|
+
kind: "Name",
|
|
2016
|
+
value: "before"
|
|
2017
|
+
}
|
|
2018
|
+
}
|
|
2019
|
+
},
|
|
2020
|
+
{
|
|
2021
|
+
kind: "Argument",
|
|
2022
|
+
name: {
|
|
2023
|
+
kind: "Name",
|
|
2024
|
+
value: "first"
|
|
2025
|
+
},
|
|
2026
|
+
value: {
|
|
2027
|
+
kind: "Variable",
|
|
2028
|
+
name: {
|
|
2029
|
+
kind: "Name",
|
|
2030
|
+
value: "first"
|
|
2031
|
+
}
|
|
2032
|
+
}
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
kind: "Argument",
|
|
2036
|
+
name: {
|
|
2037
|
+
kind: "Name",
|
|
2038
|
+
value: "last"
|
|
2039
|
+
},
|
|
2040
|
+
value: {
|
|
2041
|
+
kind: "Variable",
|
|
2042
|
+
name: {
|
|
2043
|
+
kind: "Name",
|
|
2044
|
+
value: "last"
|
|
2045
|
+
}
|
|
2046
|
+
}
|
|
2047
|
+
},
|
|
2048
|
+
{
|
|
2049
|
+
kind: "Argument",
|
|
2050
|
+
name: {
|
|
2051
|
+
kind: "Name",
|
|
2052
|
+
value: "query"
|
|
2053
|
+
},
|
|
2054
|
+
value: {
|
|
2055
|
+
kind: "Variable",
|
|
2056
|
+
name: {
|
|
2057
|
+
kind: "Name",
|
|
2058
|
+
value: "query"
|
|
2059
|
+
}
|
|
2060
|
+
}
|
|
2061
|
+
},
|
|
2062
|
+
{
|
|
2063
|
+
kind: "Argument",
|
|
2064
|
+
name: {
|
|
2065
|
+
kind: "Name",
|
|
2066
|
+
value: "filterKeys"
|
|
2067
|
+
},
|
|
2068
|
+
value: {
|
|
2069
|
+
kind: "Variable",
|
|
2070
|
+
name: {
|
|
2071
|
+
kind: "Name",
|
|
2072
|
+
value: "filterKeys"
|
|
2073
|
+
}
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
],
|
|
2077
|
+
selectionSet: {
|
|
2078
|
+
kind: "SelectionSet",
|
|
2079
|
+
selections: [
|
|
2080
|
+
{
|
|
2081
|
+
kind: "Field",
|
|
2082
|
+
name: {
|
|
2083
|
+
kind: "Name",
|
|
2084
|
+
value: "pageInfo"
|
|
2085
|
+
},
|
|
2086
|
+
selectionSet: {
|
|
2087
|
+
kind: "SelectionSet",
|
|
2088
|
+
selections: [
|
|
2089
|
+
{
|
|
2090
|
+
kind: "Field",
|
|
2091
|
+
name: {
|
|
2092
|
+
kind: "Name",
|
|
2093
|
+
value: "endCursor"
|
|
2094
|
+
}
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
kind: "Field",
|
|
2098
|
+
name: {
|
|
2099
|
+
kind: "Name",
|
|
2100
|
+
value: "hasNextPage"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
{
|
|
2104
|
+
kind: "Field",
|
|
2105
|
+
name: {
|
|
2106
|
+
kind: "Name",
|
|
2107
|
+
value: "hasPreviousPage"
|
|
2108
|
+
}
|
|
2109
|
+
},
|
|
2110
|
+
{
|
|
2111
|
+
kind: "Field",
|
|
2112
|
+
name: {
|
|
2113
|
+
kind: "Name",
|
|
2114
|
+
value: "startCursor"
|
|
2115
|
+
}
|
|
2116
|
+
}
|
|
2117
|
+
]
|
|
2118
|
+
}
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
kind: "Field",
|
|
2122
|
+
name: {
|
|
2123
|
+
kind: "Name",
|
|
2124
|
+
value: "edges"
|
|
2125
|
+
},
|
|
2126
|
+
selectionSet: {
|
|
2127
|
+
kind: "SelectionSet",
|
|
2128
|
+
selections: [
|
|
2129
|
+
{
|
|
2130
|
+
kind: "Field",
|
|
2131
|
+
name: {
|
|
2132
|
+
kind: "Name",
|
|
2133
|
+
value: "node"
|
|
2134
|
+
},
|
|
2135
|
+
selectionSet: {
|
|
2136
|
+
kind: "SelectionSet",
|
|
2137
|
+
selections: [
|
|
2138
|
+
{
|
|
2139
|
+
kind: "Field",
|
|
2140
|
+
name: {
|
|
2141
|
+
kind: "Name",
|
|
2142
|
+
value: "_id"
|
|
2143
|
+
}
|
|
2144
|
+
},
|
|
2145
|
+
{
|
|
2146
|
+
kind: "Field",
|
|
2147
|
+
name: {
|
|
2148
|
+
kind: "Name",
|
|
2149
|
+
value: "title"
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
kind: "Field",
|
|
2154
|
+
name: {
|
|
2155
|
+
kind: "Name",
|
|
2156
|
+
value: "links"
|
|
2157
|
+
},
|
|
2158
|
+
selectionSet: {
|
|
2159
|
+
kind: "SelectionSet",
|
|
2160
|
+
selections: [
|
|
2161
|
+
{
|
|
2162
|
+
kind: "Field",
|
|
2163
|
+
name: {
|
|
2164
|
+
kind: "Name",
|
|
2165
|
+
value: "url"
|
|
2166
|
+
}
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
kind: "Field",
|
|
2170
|
+
name: {
|
|
2171
|
+
kind: "Name",
|
|
2172
|
+
value: "_id"
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
]
|
|
2176
|
+
}
|
|
2177
|
+
}
|
|
2178
|
+
]
|
|
2179
|
+
}
|
|
2180
|
+
}
|
|
2181
|
+
]
|
|
2182
|
+
}
|
|
2183
|
+
}
|
|
2184
|
+
]
|
|
2185
|
+
}
|
|
2186
|
+
}
|
|
2187
|
+
]
|
|
2188
|
+
}
|
|
2189
|
+
}
|
|
2190
|
+
]
|
|
2191
|
+
};
|
|
1868
2192
|
const MediasDocument = {
|
|
1869
2193
|
kind: "Document",
|
|
1870
2194
|
definitions: [
|
|
@@ -3684,4 +4008,4 @@ const VariantsDocument = {
|
|
|
3684
4008
|
}
|
|
3685
4009
|
]
|
|
3686
4010
|
};
|
|
3687
|
-
export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|
|
4011
|
+
export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, LinklistsDocument, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|