@soppiya/app-bridge 1.0.0
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/README.md +23 -0
- package/dist/assets/images/docs.js +2 -0
- package/dist/assets/images/document.js +2 -0
- package/dist/assets/images/pdf.js +2 -0
- package/dist/assets/images/play.js +2 -0
- package/dist/assets/images/ppt.js +2 -0
- package/dist/assets/images/rar.js +2 -0
- package/dist/assets/images/sound.js +2 -0
- package/dist/assets/images/txt.js +2 -0
- package/dist/assets/images/xls.js +2 -0
- package/dist/assets/images/zip.js +2 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.js +3 -0
- package/dist/components/infinity-scroll/InfinityScroll.d.ts +5 -0
- package/dist/components/infinity-scroll/InfinityScroll.js +29 -0
- package/dist/components/infinity-scroll/index.d.ts +1 -0
- package/dist/components/infinity-scroll/index.js +2 -0
- package/dist/components/media/Media.d.ts +11 -0
- package/dist/components/media/Media.js +349 -0
- package/dist/components/media/Media.stories.d.ts +18 -0
- package/dist/components/media/Media.stories.js +13 -0
- package/dist/components/media/MediaItem.d.ts +12 -0
- package/dist/components/media/MediaItem.js +104 -0
- package/dist/components/media/MediaPreview.d.ts +7 -0
- package/dist/components/media/MediaPreview.js +127 -0
- package/dist/components/media/MediaSorting.d.ts +8 -0
- package/dist/components/media/MediaSorting.js +85 -0
- package/dist/components/media/format.d.ts +1 -0
- package/dist/components/media/format.js +28 -0
- package/dist/components/media/graph.d.ts +22 -0
- package/dist/components/media/graph.js +75 -0
- package/dist/components/media/index.d.ts +1 -0
- package/dist/components/media/index.js +2 -0
- package/dist/components/media/types.d.ts +13 -0
- package/dist/components/media/types.js +6 -0
- package/dist/components/media/uploadMedias.d.ts +7 -0
- package/dist/components/media/uploadMedias.js +31 -0
- package/dist/components/media/useDeleteMedias.d.ts +7 -0
- package/dist/components/media/useDeleteMedias.js +14 -0
- package/dist/components/media/useDrop.d.ts +11 -0
- package/dist/components/media/useDrop.js +41 -0
- package/dist/components/media/useMediaFilter.d.ts +5 -0
- package/dist/components/media/useMediaFilter.js +15 -0
- package/dist/components/media/useMediaSorting.d.ts +6 -0
- package/dist/components/media/useMediaSorting.js +19 -0
- package/dist/components/media/useMedias.d.ts +31 -0
- package/dist/components/media/useMedias.js +58 -0
- package/dist/components/media/useStorage.d.ts +8 -0
- package/dist/components/media/useStorage.js +17 -0
- package/dist/components/media/useThumbnail.d.ts +5 -0
- package/dist/components/media/useThumbnail.js +64 -0
- package/dist/components/savebar/SaveBar.d.ts +9 -0
- package/dist/components/savebar/SaveBar.js +21 -0
- package/dist/components/savebar/index.d.ts +1 -0
- package/dist/components/savebar/index.js +2 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/useSoppiyaBridge.d.ts +3 -0
- package/dist/hooks/useSoppiyaBridge.js +9 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/shared/graphql/fragment-masking.d.ts +19 -0
- package/dist/shared/graphql/fragment-masking.js +15 -0
- package/dist/shared/graphql/gql.d.ts +56 -0
- package/dist/shared/graphql/gql.js +12 -0
- package/dist/shared/graphql/graphql.d.ts +3881 -0
- package/dist/shared/graphql/graphql.js +1226 -0
- package/dist/shared/graphql/index.d.ts +2 -0
- package/dist/shared/graphql/index.js +2 -0
- package/dist/static/image/docs.png +0 -0
- package/dist/static/image/document.png +0 -0
- package/dist/static/image/pdf.png +0 -0
- package/dist/static/image/play.png +0 -0
- package/dist/static/image/ppt.png +0 -0
- package/dist/static/image/rar.png +0 -0
- package/dist/static/image/sound.png +0 -0
- package/dist/static/image/txt.png +0 -0
- package/dist/static/image/xls.png +0 -0
- package/dist/static/image/zip.png +0 -0
- package/dist/styles.css +869 -0
- package/package.json +66 -0
|
@@ -0,0 +1,1226 @@
|
|
|
1
|
+
var graphql_AccountEmailIntent = /*#__PURE__*/ function(AccountEmailIntent) {
|
|
2
|
+
AccountEmailIntent["primary"] = "primary";
|
|
3
|
+
AccountEmailIntent["secondary"] = "secondary";
|
|
4
|
+
return AccountEmailIntent;
|
|
5
|
+
}({});
|
|
6
|
+
var graphql_AccountEmailUpdateActionIntent = /*#__PURE__*/ function(AccountEmailUpdateActionIntent) {
|
|
7
|
+
AccountEmailUpdateActionIntent["change"] = "change";
|
|
8
|
+
AccountEmailUpdateActionIntent["remove"] = "remove";
|
|
9
|
+
return AccountEmailUpdateActionIntent;
|
|
10
|
+
}({});
|
|
11
|
+
var graphql_graphql_AppSortKeys = /*#__PURE__*/ function(AppSortKeys) {
|
|
12
|
+
AppSortKeys["_id"] = "_id";
|
|
13
|
+
AppSortKeys["createdAt"] = "createdAt";
|
|
14
|
+
AppSortKeys["updatedAt"] = "updatedAt";
|
|
15
|
+
return AppSortKeys;
|
|
16
|
+
}({});
|
|
17
|
+
var graphql_ArticleCommentPermission = /*#__PURE__*/ function(ArticleCommentPermission) {
|
|
18
|
+
ArticleCommentPermission["all"] = "all";
|
|
19
|
+
ArticleCommentPermission["moderate"] = "moderate";
|
|
20
|
+
ArticleCommentPermission["none"] = "none";
|
|
21
|
+
return ArticleCommentPermission;
|
|
22
|
+
}({});
|
|
23
|
+
var graphql_ArticleSortKeys = /*#__PURE__*/ function(ArticleSortKeys) {
|
|
24
|
+
ArticleSortKeys["_id"] = "_id";
|
|
25
|
+
ArticleSortKeys["blog"] = "blog";
|
|
26
|
+
ArticleSortKeys["createdAt"] = "createdAt";
|
|
27
|
+
ArticleSortKeys["status"] = "status";
|
|
28
|
+
ArticleSortKeys["title"] = "title";
|
|
29
|
+
ArticleSortKeys["updatedAt"] = "updatedAt";
|
|
30
|
+
return ArticleSortKeys;
|
|
31
|
+
}({});
|
|
32
|
+
var graphql_ArticleStatus = /*#__PURE__*/ function(ArticleStatus) {
|
|
33
|
+
ArticleStatus["active"] = "active";
|
|
34
|
+
ArticleStatus["draft"] = "draft";
|
|
35
|
+
return ArticleStatus;
|
|
36
|
+
}({});
|
|
37
|
+
var graphql_BlogSortKeys = /*#__PURE__*/ function(BlogSortKeys) {
|
|
38
|
+
BlogSortKeys["_id"] = "_id";
|
|
39
|
+
BlogSortKeys["createdAt"] = "createdAt";
|
|
40
|
+
BlogSortKeys["title"] = "title";
|
|
41
|
+
BlogSortKeys["updatedAt"] = "updatedAt";
|
|
42
|
+
return BlogSortKeys;
|
|
43
|
+
}({});
|
|
44
|
+
var graphql_CheckoutAutoFulfillment = /*#__PURE__*/ function(CheckoutAutoFulfillment) {
|
|
45
|
+
CheckoutAutoFulfillment["all"] = "all";
|
|
46
|
+
CheckoutAutoFulfillment["gift_cards"] = "gift_cards";
|
|
47
|
+
CheckoutAutoFulfillment["none"] = "none";
|
|
48
|
+
return CheckoutAutoFulfillment;
|
|
49
|
+
}({});
|
|
50
|
+
var graphql_CheckoutContactMethod = /*#__PURE__*/ function(CheckoutContactMethod) {
|
|
51
|
+
CheckoutContactMethod["email"] = "email";
|
|
52
|
+
CheckoutContactMethod["phone_or_email"] = "phone_or_email";
|
|
53
|
+
return CheckoutContactMethod;
|
|
54
|
+
}({});
|
|
55
|
+
var graphql_CheckoutExcludeRequiredOptional = /*#__PURE__*/ function(CheckoutExcludeRequiredOptional) {
|
|
56
|
+
CheckoutExcludeRequiredOptional["exclude"] = "exclude";
|
|
57
|
+
CheckoutExcludeRequiredOptional["optional"] = "optional";
|
|
58
|
+
CheckoutExcludeRequiredOptional["required"] = "required";
|
|
59
|
+
return CheckoutExcludeRequiredOptional;
|
|
60
|
+
}({});
|
|
61
|
+
var graphql_CheckoutNameRequirement = /*#__PURE__*/ function(CheckoutNameRequirement) {
|
|
62
|
+
CheckoutNameRequirement["full_name"] = "full_name";
|
|
63
|
+
CheckoutNameRequirement["last_name"] = "last_name";
|
|
64
|
+
return CheckoutNameRequirement;
|
|
65
|
+
}({});
|
|
66
|
+
var graphql_CollectionMatchType = /*#__PURE__*/ function(CollectionMatchType) {
|
|
67
|
+
CollectionMatchType["match_all"] = "match_all";
|
|
68
|
+
CollectionMatchType["match_any"] = "match_any";
|
|
69
|
+
return CollectionMatchType;
|
|
70
|
+
}({});
|
|
71
|
+
var graphql_CollectionProductSortkey = /*#__PURE__*/ function(CollectionProductSortkey) {
|
|
72
|
+
CollectionProductSortkey["_id"] = "_id";
|
|
73
|
+
CollectionProductSortkey["collection"] = "collection";
|
|
74
|
+
CollectionProductSortkey["createdAt"] = "createdAt";
|
|
75
|
+
CollectionProductSortkey["index"] = "index";
|
|
76
|
+
CollectionProductSortkey["product"] = "product";
|
|
77
|
+
CollectionProductSortkey["updatedAt"] = "updatedAt";
|
|
78
|
+
return CollectionProductSortkey;
|
|
79
|
+
}({});
|
|
80
|
+
var graphql_CollectionRuleField = /*#__PURE__*/ function(CollectionRuleField) {
|
|
81
|
+
CollectionRuleField["available"] = "available";
|
|
82
|
+
CollectionRuleField["committed"] = "committed";
|
|
83
|
+
CollectionRuleField["createdAt"] = "createdAt";
|
|
84
|
+
CollectionRuleField["damaged"] = "damaged";
|
|
85
|
+
CollectionRuleField["description"] = "description";
|
|
86
|
+
CollectionRuleField["handle"] = "handle";
|
|
87
|
+
CollectionRuleField["incoming"] = "incoming";
|
|
88
|
+
CollectionRuleField["meta_description"] = "meta_description";
|
|
89
|
+
CollectionRuleField["meta_tag"] = "meta_tag";
|
|
90
|
+
CollectionRuleField["meta_title"] = "meta_title";
|
|
91
|
+
CollectionRuleField["on_hand"] = "on_hand";
|
|
92
|
+
CollectionRuleField["option1"] = "option1";
|
|
93
|
+
CollectionRuleField["option2"] = "option2";
|
|
94
|
+
CollectionRuleField["option3"] = "option3";
|
|
95
|
+
CollectionRuleField["price"] = "price";
|
|
96
|
+
CollectionRuleField["quality_control"] = "quality_control";
|
|
97
|
+
CollectionRuleField["reserved"] = "reserved";
|
|
98
|
+
CollectionRuleField["safety_stock"] = "safety_stock";
|
|
99
|
+
CollectionRuleField["tag"] = "tag";
|
|
100
|
+
CollectionRuleField["template"] = "template";
|
|
101
|
+
CollectionRuleField["title"] = "title";
|
|
102
|
+
CollectionRuleField["type"] = "type";
|
|
103
|
+
CollectionRuleField["updatedAt"] = "updatedAt";
|
|
104
|
+
CollectionRuleField["vendor"] = "vendor";
|
|
105
|
+
return CollectionRuleField;
|
|
106
|
+
}({});
|
|
107
|
+
var graphql_CollectionRuleRelation = /*#__PURE__*/ function(CollectionRuleRelation) {
|
|
108
|
+
CollectionRuleRelation["contains"] = "contains";
|
|
109
|
+
CollectionRuleRelation["does_not_contain"] = "does_not_contain";
|
|
110
|
+
CollectionRuleRelation["ends_with"] = "ends_with";
|
|
111
|
+
CollectionRuleRelation["is_empty"] = "is_empty";
|
|
112
|
+
CollectionRuleRelation["is_equal_to"] = "is_equal_to";
|
|
113
|
+
CollectionRuleRelation["is_greater_than"] = "is_greater_than";
|
|
114
|
+
CollectionRuleRelation["is_less_than"] = "is_less_than";
|
|
115
|
+
CollectionRuleRelation["is_not_empty"] = "is_not_empty";
|
|
116
|
+
CollectionRuleRelation["is_not_equal_to"] = "is_not_equal_to";
|
|
117
|
+
CollectionRuleRelation["starts_with"] = "starts_with";
|
|
118
|
+
return CollectionRuleRelation;
|
|
119
|
+
}({});
|
|
120
|
+
var graphql_CollectionSortBy = /*#__PURE__*/ function(CollectionSortBy) {
|
|
121
|
+
CollectionSortBy["_id"] = "_id";
|
|
122
|
+
CollectionSortBy["available"] = "available";
|
|
123
|
+
CollectionSortBy["category"] = "category";
|
|
124
|
+
CollectionSortBy["committed"] = "committed";
|
|
125
|
+
CollectionSortBy["createdAt"] = "createdAt";
|
|
126
|
+
CollectionSortBy["damaged"] = "damaged";
|
|
127
|
+
CollectionSortBy["incoming"] = "incoming";
|
|
128
|
+
CollectionSortBy["manual"] = "manual";
|
|
129
|
+
CollectionSortBy["on_hand"] = "on_hand";
|
|
130
|
+
CollectionSortBy["option1"] = "option1";
|
|
131
|
+
CollectionSortBy["option2"] = "option2";
|
|
132
|
+
CollectionSortBy["option3"] = "option3";
|
|
133
|
+
CollectionSortBy["price_max"] = "price_max";
|
|
134
|
+
CollectionSortBy["price_min"] = "price_min";
|
|
135
|
+
CollectionSortBy["quality_control"] = "quality_control";
|
|
136
|
+
CollectionSortBy["reserved"] = "reserved";
|
|
137
|
+
CollectionSortBy["safety_stock"] = "safety_stock";
|
|
138
|
+
CollectionSortBy["status"] = "status";
|
|
139
|
+
CollectionSortBy["tags"] = "tags";
|
|
140
|
+
CollectionSortBy["title"] = "title";
|
|
141
|
+
CollectionSortBy["type"] = "type";
|
|
142
|
+
CollectionSortBy["updatedAt"] = "updatedAt";
|
|
143
|
+
CollectionSortBy["vendor"] = "vendor";
|
|
144
|
+
return CollectionSortBy;
|
|
145
|
+
}({});
|
|
146
|
+
var graphql_CollectionSortKey = /*#__PURE__*/ function(CollectionSortKey) {
|
|
147
|
+
CollectionSortKey["_id"] = "_id";
|
|
148
|
+
CollectionSortKey["createdAt"] = "createdAt";
|
|
149
|
+
CollectionSortKey["handle"] = "handle";
|
|
150
|
+
CollectionSortKey["meta_title"] = "meta_title";
|
|
151
|
+
CollectionSortKey["template"] = "template";
|
|
152
|
+
CollectionSortKey["title"] = "title";
|
|
153
|
+
CollectionSortKey["type"] = "type";
|
|
154
|
+
CollectionSortKey["updatedAt"] = "updatedAt";
|
|
155
|
+
return CollectionSortKey;
|
|
156
|
+
}({});
|
|
157
|
+
var graphql_CollectionType = /*#__PURE__*/ function(CollectionType) {
|
|
158
|
+
CollectionType["automated"] = "automated";
|
|
159
|
+
CollectionType["manual"] = "manual";
|
|
160
|
+
return CollectionType;
|
|
161
|
+
}({});
|
|
162
|
+
var graphql_DomainRecordType = /*#__PURE__*/ function(DomainRecordType) {
|
|
163
|
+
DomainRecordType["A"] = "A";
|
|
164
|
+
DomainRecordType["AAAA"] = "AAAA";
|
|
165
|
+
DomainRecordType["CNAME"] = "CNAME";
|
|
166
|
+
DomainRecordType["MX"] = "MX";
|
|
167
|
+
DomainRecordType["NS"] = "NS";
|
|
168
|
+
DomainRecordType["PTR"] = "PTR";
|
|
169
|
+
DomainRecordType["SOA"] = "SOA";
|
|
170
|
+
DomainRecordType["SRV"] = "SRV";
|
|
171
|
+
DomainRecordType["TXT"] = "TXT";
|
|
172
|
+
return DomainRecordType;
|
|
173
|
+
}({});
|
|
174
|
+
var graphql_DomainSortkeys = /*#__PURE__*/ function(DomainSortkeys) {
|
|
175
|
+
DomainSortkeys["_id"] = "_id";
|
|
176
|
+
DomainSortkeys["createdAt"] = "createdAt";
|
|
177
|
+
DomainSortkeys["is_primary"] = "is_primary";
|
|
178
|
+
DomainSortkeys["is_tld"] = "is_tld";
|
|
179
|
+
DomainSortkeys["name"] = "name";
|
|
180
|
+
DomainSortkeys["updatedAt"] = "updatedAt";
|
|
181
|
+
return DomainSortkeys;
|
|
182
|
+
}({});
|
|
183
|
+
var graphql_InventorySortKeys = /*#__PURE__*/ function(InventorySortKeys) {
|
|
184
|
+
InventorySortKeys["_id"] = "_id";
|
|
185
|
+
InventorySortKeys["available"] = "available";
|
|
186
|
+
InventorySortKeys["committed"] = "committed";
|
|
187
|
+
InventorySortKeys["createdAt"] = "createdAt";
|
|
188
|
+
InventorySortKeys["damaged"] = "damaged";
|
|
189
|
+
InventorySortKeys["incoming"] = "incoming";
|
|
190
|
+
InventorySortKeys["on_hand"] = "on_hand";
|
|
191
|
+
InventorySortKeys["quality_control"] = "quality_control";
|
|
192
|
+
InventorySortKeys["reserved"] = "reserved";
|
|
193
|
+
InventorySortKeys["safety_stock"] = "safety_stock";
|
|
194
|
+
InventorySortKeys["updatedAt"] = "updatedAt";
|
|
195
|
+
return InventorySortKeys;
|
|
196
|
+
}({});
|
|
197
|
+
var graphql_LinklistSortKeys = /*#__PURE__*/ function(LinklistSortKeys) {
|
|
198
|
+
LinklistSortKeys["_id"] = "_id";
|
|
199
|
+
LinklistSortKeys["createdAt"] = "createdAt";
|
|
200
|
+
LinklistSortKeys["title"] = "title";
|
|
201
|
+
LinklistSortKeys["updatedAt"] = "updatedAt";
|
|
202
|
+
return LinklistSortKeys;
|
|
203
|
+
}({});
|
|
204
|
+
var graphql_LinklistType = /*#__PURE__*/ function(LinklistType) {
|
|
205
|
+
LinklistType["article"] = "article";
|
|
206
|
+
LinklistType["blog"] = "blog";
|
|
207
|
+
LinklistType["catalog"] = "catalog";
|
|
208
|
+
LinklistType["collection"] = "collection";
|
|
209
|
+
LinklistType["collections"] = "collections";
|
|
210
|
+
LinklistType["frontpage"] = "frontpage";
|
|
211
|
+
LinklistType["http"] = "http";
|
|
212
|
+
LinklistType["metaobject"] = "metaobject";
|
|
213
|
+
LinklistType["page"] = "page";
|
|
214
|
+
LinklistType["policy"] = "policy";
|
|
215
|
+
LinklistType["product"] = "product";
|
|
216
|
+
LinklistType["search"] = "search";
|
|
217
|
+
return LinklistType;
|
|
218
|
+
}({});
|
|
219
|
+
var graphql_LocationSortKeys = /*#__PURE__*/ function(LocationSortKeys) {
|
|
220
|
+
LocationSortKeys["_id"] = "_id";
|
|
221
|
+
LocationSortKeys["address1"] = "address1";
|
|
222
|
+
LocationSortKeys["address2"] = "address2";
|
|
223
|
+
LocationSortKeys["city"] = "city";
|
|
224
|
+
LocationSortKeys["country"] = "country";
|
|
225
|
+
LocationSortKeys["createdAt"] = "createdAt";
|
|
226
|
+
LocationSortKeys["is_default"] = "is_default";
|
|
227
|
+
LocationSortKeys["name"] = "name";
|
|
228
|
+
LocationSortKeys["postal_code"] = "postal_code";
|
|
229
|
+
LocationSortKeys["updatedAt"] = "updatedAt";
|
|
230
|
+
return LocationSortKeys;
|
|
231
|
+
}({});
|
|
232
|
+
var graphql_LoginMethod = /*#__PURE__*/ function(LoginMethod) {
|
|
233
|
+
LoginMethod["email"] = "email";
|
|
234
|
+
LoginMethod["google"] = "google";
|
|
235
|
+
LoginMethod["passkey"] = "passkey";
|
|
236
|
+
return LoginMethod;
|
|
237
|
+
}({});
|
|
238
|
+
var graphql_MarketSortKeys = /*#__PURE__*/ function(MarketSortKeys) {
|
|
239
|
+
MarketSortKeys["_id"] = "_id";
|
|
240
|
+
MarketSortKeys["currency"] = "currency";
|
|
241
|
+
MarketSortKeys["domain"] = "domain";
|
|
242
|
+
MarketSortKeys["is_active"] = "is_active";
|
|
243
|
+
MarketSortKeys["is_primary"] = "is_primary";
|
|
244
|
+
MarketSortKeys["language"] = "language";
|
|
245
|
+
MarketSortKeys["name"] = "name";
|
|
246
|
+
MarketSortKeys["price_adjustment"] = "price_adjustment";
|
|
247
|
+
return MarketSortKeys;
|
|
248
|
+
}({});
|
|
249
|
+
var graphql_MarketVariantSortKeys = /*#__PURE__*/ function(MarketVariantSortKeys) {
|
|
250
|
+
MarketVariantSortKeys["_id"] = "_id";
|
|
251
|
+
MarketVariantSortKeys["compare_at_price"] = "compare_at_price";
|
|
252
|
+
MarketVariantSortKeys["is_fixed_price"] = "is_fixed_price";
|
|
253
|
+
MarketVariantSortKeys["is_tax_applicable"] = "is_tax_applicable";
|
|
254
|
+
MarketVariantSortKeys["market"] = "market";
|
|
255
|
+
MarketVariantSortKeys["price"] = "price";
|
|
256
|
+
MarketVariantSortKeys["product"] = "product";
|
|
257
|
+
MarketVariantSortKeys["sell_when_out_of_stock"] = "sell_when_out_of_stock";
|
|
258
|
+
MarketVariantSortKeys["sku"] = "sku";
|
|
259
|
+
MarketVariantSortKeys["track_inventory"] = "track_inventory";
|
|
260
|
+
MarketVariantSortKeys["use_wholesale"] = "use_wholesale";
|
|
261
|
+
MarketVariantSortKeys["variant"] = "variant";
|
|
262
|
+
return MarketVariantSortKeys;
|
|
263
|
+
}({});
|
|
264
|
+
var graphql_MediaSortKeys = /*#__PURE__*/ function(MediaSortKeys) {
|
|
265
|
+
MediaSortKeys["_id"] = "_id";
|
|
266
|
+
MediaSortKeys["createdAt"] = "createdAt";
|
|
267
|
+
MediaSortKeys["file_name"] = "file_name";
|
|
268
|
+
MediaSortKeys["mimetype"] = "mimetype";
|
|
269
|
+
MediaSortKeys["type"] = "type";
|
|
270
|
+
return MediaSortKeys;
|
|
271
|
+
}({});
|
|
272
|
+
var graphql_MediaType = /*#__PURE__*/ function(MediaType) {
|
|
273
|
+
MediaType["audio"] = "audio";
|
|
274
|
+
MediaType["file"] = "file";
|
|
275
|
+
MediaType["image"] = "image";
|
|
276
|
+
MediaType["video"] = "video";
|
|
277
|
+
return MediaType;
|
|
278
|
+
}({});
|
|
279
|
+
var graphql_MetafieldEntryType = /*#__PURE__*/ function(MetafieldEntryType) {
|
|
280
|
+
MetafieldEntryType["multiple"] = "multiple";
|
|
281
|
+
MetafieldEntryType["single"] = "single";
|
|
282
|
+
return MetafieldEntryType;
|
|
283
|
+
}({});
|
|
284
|
+
var graphql_MetafieldScope = /*#__PURE__*/ function(MetafieldScope) {
|
|
285
|
+
MetafieldScope["article"] = "article";
|
|
286
|
+
MetafieldScope["blog"] = "blog";
|
|
287
|
+
MetafieldScope["collection"] = "collection";
|
|
288
|
+
MetafieldScope["customer"] = "customer";
|
|
289
|
+
MetafieldScope["draft_order"] = "draft_order";
|
|
290
|
+
MetafieldScope["location"] = "location";
|
|
291
|
+
MetafieldScope["market"] = "market";
|
|
292
|
+
MetafieldScope["order"] = "order";
|
|
293
|
+
MetafieldScope["page"] = "page";
|
|
294
|
+
MetafieldScope["product"] = "product";
|
|
295
|
+
MetafieldScope["variant"] = "variant";
|
|
296
|
+
return MetafieldScope;
|
|
297
|
+
}({});
|
|
298
|
+
var graphql_MetafieldSortKeys = /*#__PURE__*/ function(MetafieldSortKeys) {
|
|
299
|
+
MetafieldSortKeys["_id"] = "_id";
|
|
300
|
+
MetafieldSortKeys["createdAt"] = "createdAt";
|
|
301
|
+
MetafieldSortKeys["type"] = "type";
|
|
302
|
+
MetafieldSortKeys["updatedAt"] = "updatedAt";
|
|
303
|
+
return MetafieldSortKeys;
|
|
304
|
+
}({});
|
|
305
|
+
var graphql_MetafieldType = /*#__PURE__*/ function(MetafieldType) {
|
|
306
|
+
MetafieldType["article_ref"] = "article_ref";
|
|
307
|
+
MetafieldType["audio"] = "audio";
|
|
308
|
+
MetafieldType["blog_ref"] = "blog_ref";
|
|
309
|
+
MetafieldType["boolean"] = "boolean";
|
|
310
|
+
MetafieldType["collection_ref"] = "collection_ref";
|
|
311
|
+
MetafieldType["color"] = "color";
|
|
312
|
+
MetafieldType["date"] = "date";
|
|
313
|
+
MetafieldType["date_time"] = "date_time";
|
|
314
|
+
MetafieldType["dimension"] = "dimension";
|
|
315
|
+
MetafieldType["file"] = "file";
|
|
316
|
+
MetafieldType["float"] = "float";
|
|
317
|
+
MetafieldType["image"] = "image";
|
|
318
|
+
MetafieldType["integer"] = "integer";
|
|
319
|
+
MetafieldType["json"] = "json";
|
|
320
|
+
MetafieldType["meta_object_ref"] = "meta_object_ref";
|
|
321
|
+
MetafieldType["money"] = "money";
|
|
322
|
+
MetafieldType["multiline_text"] = "multiline_text";
|
|
323
|
+
MetafieldType["page_ref"] = "page_ref";
|
|
324
|
+
MetafieldType["product_ref"] = "product_ref";
|
|
325
|
+
MetafieldType["rating"] = "rating";
|
|
326
|
+
MetafieldType["rich_text"] = "rich_text";
|
|
327
|
+
MetafieldType["single_line_text"] = "single_line_text";
|
|
328
|
+
MetafieldType["url"] = "url";
|
|
329
|
+
MetafieldType["variant_ref"] = "variant_ref";
|
|
330
|
+
MetafieldType["video"] = "video";
|
|
331
|
+
MetafieldType["weight"] = "weight";
|
|
332
|
+
return MetafieldType;
|
|
333
|
+
}({});
|
|
334
|
+
var graphql_PresetSortKeys = /*#__PURE__*/ function(PresetSortKeys) {
|
|
335
|
+
PresetSortKeys["_id"] = "_id";
|
|
336
|
+
PresetSortKeys["createdAt"] = "createdAt";
|
|
337
|
+
PresetSortKeys["updatedAt"] = "updatedAt";
|
|
338
|
+
return PresetSortKeys;
|
|
339
|
+
}({});
|
|
340
|
+
var graphql_PresetType = /*#__PURE__*/ function(PresetType) {
|
|
341
|
+
PresetType["analytics"] = "analytics";
|
|
342
|
+
PresetType["collections"] = "collections";
|
|
343
|
+
PresetType["customers"] = "customers";
|
|
344
|
+
PresetType["inventories"] = "inventories";
|
|
345
|
+
PresetType["orders"] = "orders";
|
|
346
|
+
PresetType["paginations"] = "paginations";
|
|
347
|
+
PresetType["products"] = "products";
|
|
348
|
+
PresetType["purchases"] = "purchases";
|
|
349
|
+
PresetType["transfers"] = "transfers";
|
|
350
|
+
return PresetType;
|
|
351
|
+
}({});
|
|
352
|
+
var graphql_ProductSortKeys = /*#__PURE__*/ function(ProductSortKeys) {
|
|
353
|
+
ProductSortKeys["_id"] = "_id";
|
|
354
|
+
ProductSortKeys["meta_tags"] = "meta_tags";
|
|
355
|
+
ProductSortKeys["meta_title"] = "meta_title";
|
|
356
|
+
ProductSortKeys["option1"] = "option1";
|
|
357
|
+
ProductSortKeys["option2"] = "option2";
|
|
358
|
+
ProductSortKeys["option3"] = "option3";
|
|
359
|
+
ProductSortKeys["status"] = "status";
|
|
360
|
+
ProductSortKeys["template"] = "template";
|
|
361
|
+
ProductSortKeys["title"] = "title";
|
|
362
|
+
ProductSortKeys["type"] = "type";
|
|
363
|
+
ProductSortKeys["vendor"] = "vendor";
|
|
364
|
+
return ProductSortKeys;
|
|
365
|
+
}({});
|
|
366
|
+
var graphql_ProductStatus = /*#__PURE__*/ function(ProductStatus) {
|
|
367
|
+
ProductStatus["active"] = "active";
|
|
368
|
+
ProductStatus["draft"] = "draft";
|
|
369
|
+
return ProductStatus;
|
|
370
|
+
}({});
|
|
371
|
+
var graphql_RedirectSortKeys = /*#__PURE__*/ function(RedirectSortKeys) {
|
|
372
|
+
RedirectSortKeys["_id"] = "_id";
|
|
373
|
+
RedirectSortKeys["createdAt"] = "createdAt";
|
|
374
|
+
RedirectSortKeys["from"] = "from";
|
|
375
|
+
RedirectSortKeys["to"] = "to";
|
|
376
|
+
RedirectSortKeys["updatedAt"] = "updatedAt";
|
|
377
|
+
return RedirectSortKeys;
|
|
378
|
+
}({});
|
|
379
|
+
var graphql_StaffAppPermission = /*#__PURE__*/ function(StaffAppPermission) {
|
|
380
|
+
StaffAppPermission["all"] = "all";
|
|
381
|
+
StaffAppPermission["denied"] = "denied";
|
|
382
|
+
StaffAppPermission["limited"] = "limited";
|
|
383
|
+
return StaffAppPermission;
|
|
384
|
+
}({});
|
|
385
|
+
var graphql_StaffSortKeys = /*#__PURE__*/ function(StaffSortKeys) {
|
|
386
|
+
StaffSortKeys["_id"] = "_id";
|
|
387
|
+
StaffSortKeys["createdAt"] = "createdAt";
|
|
388
|
+
StaffSortKeys["updatedAt"] = "updatedAt";
|
|
389
|
+
return StaffSortKeys;
|
|
390
|
+
}({});
|
|
391
|
+
var graphql_StoreLengthUnit = /*#__PURE__*/ function(StoreLengthUnit) {
|
|
392
|
+
StoreLengthUnit["ft"] = "ft";
|
|
393
|
+
StoreLengthUnit["m"] = "m";
|
|
394
|
+
return StoreLengthUnit;
|
|
395
|
+
}({});
|
|
396
|
+
var graphql_StoreSortkeys = /*#__PURE__*/ function(StoreSortkeys) {
|
|
397
|
+
StoreSortkeys["_id"] = "_id";
|
|
398
|
+
StoreSortkeys["createdAt"] = "createdAt";
|
|
399
|
+
StoreSortkeys["name"] = "name";
|
|
400
|
+
StoreSortkeys["updatedAt"] = "updatedAt";
|
|
401
|
+
return StoreSortkeys;
|
|
402
|
+
}({});
|
|
403
|
+
var graphql_StoreWeightUnit = /*#__PURE__*/ function(StoreWeightUnit) {
|
|
404
|
+
StoreWeightUnit["kg"] = "kg";
|
|
405
|
+
StoreWeightUnit["lb"] = "lb";
|
|
406
|
+
return StoreWeightUnit;
|
|
407
|
+
}({});
|
|
408
|
+
var graphql_UserDeviceSortKeys = /*#__PURE__*/ function(UserDeviceSortKeys) {
|
|
409
|
+
UserDeviceSortKeys["_id"] = "_id";
|
|
410
|
+
UserDeviceSortKeys["browser_name"] = "browser_name";
|
|
411
|
+
UserDeviceSortKeys["os_name"] = "os_name";
|
|
412
|
+
return UserDeviceSortKeys;
|
|
413
|
+
}({});
|
|
414
|
+
var graphql_UserPasskeySortKeys = /*#__PURE__*/ function(UserPasskeySortKeys) {
|
|
415
|
+
UserPasskeySortKeys["_id"] = "_id";
|
|
416
|
+
UserPasskeySortKeys["createdAt"] = "createdAt";
|
|
417
|
+
UserPasskeySortKeys["device_name"] = "device_name";
|
|
418
|
+
UserPasskeySortKeys["id"] = "id";
|
|
419
|
+
UserPasskeySortKeys["transports"] = "transports";
|
|
420
|
+
UserPasskeySortKeys["updatedAt"] = "updatedAt";
|
|
421
|
+
return UserPasskeySortKeys;
|
|
422
|
+
}({});
|
|
423
|
+
var graphql_UserSessionSortKeys = /*#__PURE__*/ function(UserSessionSortKeys) {
|
|
424
|
+
UserSessionSortKeys["_id"] = "_id";
|
|
425
|
+
UserSessionSortKeys["city"] = "city";
|
|
426
|
+
UserSessionSortKeys["country"] = "country";
|
|
427
|
+
UserSessionSortKeys["device"] = "device";
|
|
428
|
+
UserSessionSortKeys["ip"] = "ip";
|
|
429
|
+
UserSessionSortKeys["latitude"] = "latitude";
|
|
430
|
+
UserSessionSortKeys["longitude"] = "longitude";
|
|
431
|
+
UserSessionSortKeys["subdivision"] = "subdivision";
|
|
432
|
+
UserSessionSortKeys["time"] = "time";
|
|
433
|
+
return UserSessionSortKeys;
|
|
434
|
+
}({});
|
|
435
|
+
var graphql_VariantSortKeys = /*#__PURE__*/ function(VariantSortKeys) {
|
|
436
|
+
VariantSortKeys["_id"] = "_id";
|
|
437
|
+
VariantSortKeys["available"] = "available";
|
|
438
|
+
VariantSortKeys["committed"] = "committed";
|
|
439
|
+
VariantSortKeys["createdAt"] = "createdAt";
|
|
440
|
+
VariantSortKeys["damaged"] = "damaged";
|
|
441
|
+
VariantSortKeys["incoming"] = "incoming";
|
|
442
|
+
VariantSortKeys["on_hand"] = "on_hand";
|
|
443
|
+
VariantSortKeys["quality_control"] = "quality_control";
|
|
444
|
+
VariantSortKeys["reserved"] = "reserved";
|
|
445
|
+
VariantSortKeys["safety_stock"] = "safety_stock";
|
|
446
|
+
VariantSortKeys["sku"] = "sku";
|
|
447
|
+
VariantSortKeys["title"] = "title";
|
|
448
|
+
VariantSortKeys["updatedAt"] = "updatedAt";
|
|
449
|
+
return VariantSortKeys;
|
|
450
|
+
}({});
|
|
451
|
+
var graphql_VariantStatus = /*#__PURE__*/ function(VariantStatus) {
|
|
452
|
+
VariantStatus["active"] = "active";
|
|
453
|
+
VariantStatus["archived"] = "archived";
|
|
454
|
+
VariantStatus["draft"] = "draft";
|
|
455
|
+
return VariantStatus;
|
|
456
|
+
}({});
|
|
457
|
+
var graphql_WhoamiType = /*#__PURE__*/ function(WhoamiType) {
|
|
458
|
+
WhoamiType["APP"] = "APP";
|
|
459
|
+
WhoamiType["USER"] = "USER";
|
|
460
|
+
return WhoamiType;
|
|
461
|
+
}({});
|
|
462
|
+
var graphql_AppSortKeys = /*#__PURE__*/ function(_AppSortKeys) {
|
|
463
|
+
_AppSortKeys["_id"] = "_id";
|
|
464
|
+
_AppSortKeys["createdAt"] = "createdAt";
|
|
465
|
+
_AppSortKeys["title"] = "title";
|
|
466
|
+
_AppSortKeys["updatedAt"] = "updatedAt";
|
|
467
|
+
return _AppSortKeys;
|
|
468
|
+
}({});
|
|
469
|
+
var graphql_CategorySortKeys = /*#__PURE__*/ function(_CategorySortKeys) {
|
|
470
|
+
_CategorySortKeys["_id"] = "_id";
|
|
471
|
+
_CategorySortKeys["has_children"] = "has_children";
|
|
472
|
+
_CategorySortKeys["name"] = "name";
|
|
473
|
+
_CategorySortKeys["parent"] = "parent";
|
|
474
|
+
return _CategorySortKeys;
|
|
475
|
+
}({});
|
|
476
|
+
var graphql_ContinentSortKeys = /*#__PURE__*/ function(_ContinentSortKeys) {
|
|
477
|
+
_ContinentSortKeys["_id"] = "_id";
|
|
478
|
+
_ContinentSortKeys["name"] = "name";
|
|
479
|
+
return _ContinentSortKeys;
|
|
480
|
+
}({});
|
|
481
|
+
var graphql_CountrySortKeys = /*#__PURE__*/ function(_CountrySortKeys) {
|
|
482
|
+
_CountrySortKeys["_id"] = "_id";
|
|
483
|
+
_CountrySortKeys["iso_3166_alpha2"] = "iso_3166_alpha2";
|
|
484
|
+
_CountrySortKeys["iso_3166_alpha3"] = "iso_3166_alpha3";
|
|
485
|
+
_CountrySortKeys["name"] = "name";
|
|
486
|
+
_CountrySortKeys["native_name"] = "native_name";
|
|
487
|
+
_CountrySortKeys["official_name"] = "official_name";
|
|
488
|
+
return _CountrySortKeys;
|
|
489
|
+
}({});
|
|
490
|
+
var graphql_CurrencySortKeys = /*#__PURE__*/ function(_CurrencySortKeys) {
|
|
491
|
+
_CurrencySortKeys["_id"] = "_id";
|
|
492
|
+
_CurrencySortKeys["conversion_rate"] = "conversion_rate";
|
|
493
|
+
_CurrencySortKeys["iso_4217_code"] = "iso_4217_code";
|
|
494
|
+
_CurrencySortKeys["name"] = "name";
|
|
495
|
+
_CurrencySortKeys["native_name"] = "native_name";
|
|
496
|
+
_CurrencySortKeys["symbol"] = "symbol";
|
|
497
|
+
return _CurrencySortKeys;
|
|
498
|
+
}({});
|
|
499
|
+
var graphql_HscodeSortKeys = /*#__PURE__*/ function(_HscodeSortKeys) {
|
|
500
|
+
_HscodeSortKeys["_id"] = "_id";
|
|
501
|
+
_HscodeSortKeys["code"] = "code";
|
|
502
|
+
_HscodeSortKeys["description"] = "description";
|
|
503
|
+
return _HscodeSortKeys;
|
|
504
|
+
}({});
|
|
505
|
+
var graphql_LanguageSortKeys = /*#__PURE__*/ function(_LanguageSortKeys) {
|
|
506
|
+
_LanguageSortKeys["_id"] = "_id";
|
|
507
|
+
_LanguageSortKeys["iso_6391_code"] = "iso_6391_code";
|
|
508
|
+
_LanguageSortKeys["name"] = "name";
|
|
509
|
+
_LanguageSortKeys["native_name"] = "native_name";
|
|
510
|
+
return _LanguageSortKeys;
|
|
511
|
+
}({});
|
|
512
|
+
var graphql_PackageSortKeys = /*#__PURE__*/ function(_PackageSortKeys) {
|
|
513
|
+
_PackageSortKeys["_id"] = "_id";
|
|
514
|
+
_PackageSortKeys["title"] = "title";
|
|
515
|
+
return _PackageSortKeys;
|
|
516
|
+
}({});
|
|
517
|
+
var graphql_PaymentGatewaySortKeys = /*#__PURE__*/ function(_PaymentGatewaySortKeys) {
|
|
518
|
+
_PaymentGatewaySortKeys["_id"] = "_id";
|
|
519
|
+
_PaymentGatewaySortKeys["createdAt"] = "createdAt";
|
|
520
|
+
_PaymentGatewaySortKeys["name"] = "name";
|
|
521
|
+
return _PaymentGatewaySortKeys;
|
|
522
|
+
}({});
|
|
523
|
+
var graphql_PaymentProviderSortKeys = /*#__PURE__*/ function(_PaymentProviderSortKeys) {
|
|
524
|
+
_PaymentProviderSortKeys["_id"] = "_id";
|
|
525
|
+
_PaymentProviderSortKeys["createdAt"] = "createdAt";
|
|
526
|
+
_PaymentProviderSortKeys["name"] = "name";
|
|
527
|
+
return _PaymentProviderSortKeys;
|
|
528
|
+
}({});
|
|
529
|
+
var graphql_PhoneSortKeys = /*#__PURE__*/ function(_PhoneSortKeys) {
|
|
530
|
+
_PhoneSortKeys["_id"] = "_id";
|
|
531
|
+
_PhoneSortKeys["dialing_code"] = "dialing_code";
|
|
532
|
+
_PhoneSortKeys["format"] = "format";
|
|
533
|
+
return _PhoneSortKeys;
|
|
534
|
+
}({});
|
|
535
|
+
var graphql_RegionSortKeys = /*#__PURE__*/ function(_RegionSortKeys) {
|
|
536
|
+
_RegionSortKeys["_id"] = "_id";
|
|
537
|
+
_RegionSortKeys["country"] = "country";
|
|
538
|
+
_RegionSortKeys["name"] = "name";
|
|
539
|
+
_RegionSortKeys["tax_name"] = "tax_name";
|
|
540
|
+
_RegionSortKeys["tax_rate"] = "tax_rate";
|
|
541
|
+
_RegionSortKeys["type"] = "type";
|
|
542
|
+
return _RegionSortKeys;
|
|
543
|
+
}({});
|
|
544
|
+
var graphql_SoppiyaPaymentSortKeys = /*#__PURE__*/ function(_SoppiyaPaymentSortKeys) {
|
|
545
|
+
_SoppiyaPaymentSortKeys["_id"] = "_id";
|
|
546
|
+
return _SoppiyaPaymentSortKeys;
|
|
547
|
+
}({});
|
|
548
|
+
var graphql_ThemeSortKeys = /*#__PURE__*/ function(_ThemeSortKeys) {
|
|
549
|
+
_ThemeSortKeys["_id"] = "_id";
|
|
550
|
+
_ThemeSortKeys["createdAt"] = "createdAt";
|
|
551
|
+
_ThemeSortKeys["price"] = "price";
|
|
552
|
+
_ThemeSortKeys["title"] = "title";
|
|
553
|
+
return _ThemeSortKeys;
|
|
554
|
+
}({});
|
|
555
|
+
var graphql_ThemeVersionSortKeys = /*#__PURE__*/ function(_ThemeVersionSortKeys) {
|
|
556
|
+
_ThemeVersionSortKeys["_id"] = "_id";
|
|
557
|
+
_ThemeVersionSortKeys["createdAt"] = "createdAt";
|
|
558
|
+
_ThemeVersionSortKeys["title"] = "title";
|
|
559
|
+
return _ThemeVersionSortKeys;
|
|
560
|
+
}({});
|
|
561
|
+
var graphql_TimezoneSortKeys = /*#__PURE__*/ function(_TimezoneSortKeys) {
|
|
562
|
+
_TimezoneSortKeys["_id"] = "_id";
|
|
563
|
+
_TimezoneSortKeys["name"] = "name";
|
|
564
|
+
_TimezoneSortKeys["offset"] = "offset";
|
|
565
|
+
return _TimezoneSortKeys;
|
|
566
|
+
}({});
|
|
567
|
+
const MediasDocument = {
|
|
568
|
+
kind: "Document",
|
|
569
|
+
definitions: [
|
|
570
|
+
{
|
|
571
|
+
kind: "OperationDefinition",
|
|
572
|
+
operation: "query",
|
|
573
|
+
name: {
|
|
574
|
+
kind: "Name",
|
|
575
|
+
value: "Medias"
|
|
576
|
+
},
|
|
577
|
+
variableDefinitions: [
|
|
578
|
+
{
|
|
579
|
+
kind: "VariableDefinition",
|
|
580
|
+
variable: {
|
|
581
|
+
kind: "Variable",
|
|
582
|
+
name: {
|
|
583
|
+
kind: "Name",
|
|
584
|
+
value: "after"
|
|
585
|
+
}
|
|
586
|
+
},
|
|
587
|
+
type: {
|
|
588
|
+
kind: "NamedType",
|
|
589
|
+
name: {
|
|
590
|
+
kind: "Name",
|
|
591
|
+
value: "ID"
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
},
|
|
595
|
+
{
|
|
596
|
+
kind: "VariableDefinition",
|
|
597
|
+
variable: {
|
|
598
|
+
kind: "Variable",
|
|
599
|
+
name: {
|
|
600
|
+
kind: "Name",
|
|
601
|
+
value: "before"
|
|
602
|
+
}
|
|
603
|
+
},
|
|
604
|
+
type: {
|
|
605
|
+
kind: "NamedType",
|
|
606
|
+
name: {
|
|
607
|
+
kind: "Name",
|
|
608
|
+
value: "ID"
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
kind: "VariableDefinition",
|
|
614
|
+
variable: {
|
|
615
|
+
kind: "Variable",
|
|
616
|
+
name: {
|
|
617
|
+
kind: "Name",
|
|
618
|
+
value: "first"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
type: {
|
|
622
|
+
kind: "NamedType",
|
|
623
|
+
name: {
|
|
624
|
+
kind: "Name",
|
|
625
|
+
value: "Int"
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
kind: "VariableDefinition",
|
|
631
|
+
variable: {
|
|
632
|
+
kind: "Variable",
|
|
633
|
+
name: {
|
|
634
|
+
kind: "Name",
|
|
635
|
+
value: "last"
|
|
636
|
+
}
|
|
637
|
+
},
|
|
638
|
+
type: {
|
|
639
|
+
kind: "NamedType",
|
|
640
|
+
name: {
|
|
641
|
+
kind: "Name",
|
|
642
|
+
value: "Int"
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
kind: "VariableDefinition",
|
|
648
|
+
variable: {
|
|
649
|
+
kind: "Variable",
|
|
650
|
+
name: {
|
|
651
|
+
kind: "Name",
|
|
652
|
+
value: "query"
|
|
653
|
+
}
|
|
654
|
+
},
|
|
655
|
+
type: {
|
|
656
|
+
kind: "NamedType",
|
|
657
|
+
name: {
|
|
658
|
+
kind: "Name",
|
|
659
|
+
value: "String"
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
kind: "VariableDefinition",
|
|
665
|
+
variable: {
|
|
666
|
+
kind: "Variable",
|
|
667
|
+
name: {
|
|
668
|
+
kind: "Name",
|
|
669
|
+
value: "reverse"
|
|
670
|
+
}
|
|
671
|
+
},
|
|
672
|
+
type: {
|
|
673
|
+
kind: "NamedType",
|
|
674
|
+
name: {
|
|
675
|
+
kind: "Name",
|
|
676
|
+
value: "Boolean"
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
},
|
|
680
|
+
{
|
|
681
|
+
kind: "VariableDefinition",
|
|
682
|
+
variable: {
|
|
683
|
+
kind: "Variable",
|
|
684
|
+
name: {
|
|
685
|
+
kind: "Name",
|
|
686
|
+
value: "sortKey"
|
|
687
|
+
}
|
|
688
|
+
},
|
|
689
|
+
type: {
|
|
690
|
+
kind: "NamedType",
|
|
691
|
+
name: {
|
|
692
|
+
kind: "Name",
|
|
693
|
+
value: "MediaSortKeys"
|
|
694
|
+
}
|
|
695
|
+
}
|
|
696
|
+
},
|
|
697
|
+
{
|
|
698
|
+
kind: "VariableDefinition",
|
|
699
|
+
variable: {
|
|
700
|
+
kind: "Variable",
|
|
701
|
+
name: {
|
|
702
|
+
kind: "Name",
|
|
703
|
+
value: "filterKeys"
|
|
704
|
+
}
|
|
705
|
+
},
|
|
706
|
+
type: {
|
|
707
|
+
kind: "NamedType",
|
|
708
|
+
name: {
|
|
709
|
+
kind: "Name",
|
|
710
|
+
value: "MediaFilterKeys"
|
|
711
|
+
}
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
],
|
|
715
|
+
selectionSet: {
|
|
716
|
+
kind: "SelectionSet",
|
|
717
|
+
selections: [
|
|
718
|
+
{
|
|
719
|
+
kind: "Field",
|
|
720
|
+
name: {
|
|
721
|
+
kind: "Name",
|
|
722
|
+
value: "medias"
|
|
723
|
+
},
|
|
724
|
+
arguments: [
|
|
725
|
+
{
|
|
726
|
+
kind: "Argument",
|
|
727
|
+
name: {
|
|
728
|
+
kind: "Name",
|
|
729
|
+
value: "after"
|
|
730
|
+
},
|
|
731
|
+
value: {
|
|
732
|
+
kind: "Variable",
|
|
733
|
+
name: {
|
|
734
|
+
kind: "Name",
|
|
735
|
+
value: "after"
|
|
736
|
+
}
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
{
|
|
740
|
+
kind: "Argument",
|
|
741
|
+
name: {
|
|
742
|
+
kind: "Name",
|
|
743
|
+
value: "before"
|
|
744
|
+
},
|
|
745
|
+
value: {
|
|
746
|
+
kind: "Variable",
|
|
747
|
+
name: {
|
|
748
|
+
kind: "Name",
|
|
749
|
+
value: "before"
|
|
750
|
+
}
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
kind: "Argument",
|
|
755
|
+
name: {
|
|
756
|
+
kind: "Name",
|
|
757
|
+
value: "first"
|
|
758
|
+
},
|
|
759
|
+
value: {
|
|
760
|
+
kind: "Variable",
|
|
761
|
+
name: {
|
|
762
|
+
kind: "Name",
|
|
763
|
+
value: "first"
|
|
764
|
+
}
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
kind: "Argument",
|
|
769
|
+
name: {
|
|
770
|
+
kind: "Name",
|
|
771
|
+
value: "last"
|
|
772
|
+
},
|
|
773
|
+
value: {
|
|
774
|
+
kind: "Variable",
|
|
775
|
+
name: {
|
|
776
|
+
kind: "Name",
|
|
777
|
+
value: "last"
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
kind: "Argument",
|
|
783
|
+
name: {
|
|
784
|
+
kind: "Name",
|
|
785
|
+
value: "query"
|
|
786
|
+
},
|
|
787
|
+
value: {
|
|
788
|
+
kind: "Variable",
|
|
789
|
+
name: {
|
|
790
|
+
kind: "Name",
|
|
791
|
+
value: "query"
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
kind: "Argument",
|
|
797
|
+
name: {
|
|
798
|
+
kind: "Name",
|
|
799
|
+
value: "reverse"
|
|
800
|
+
},
|
|
801
|
+
value: {
|
|
802
|
+
kind: "Variable",
|
|
803
|
+
name: {
|
|
804
|
+
kind: "Name",
|
|
805
|
+
value: "reverse"
|
|
806
|
+
}
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
kind: "Argument",
|
|
811
|
+
name: {
|
|
812
|
+
kind: "Name",
|
|
813
|
+
value: "sortKey"
|
|
814
|
+
},
|
|
815
|
+
value: {
|
|
816
|
+
kind: "Variable",
|
|
817
|
+
name: {
|
|
818
|
+
kind: "Name",
|
|
819
|
+
value: "sortKey"
|
|
820
|
+
}
|
|
821
|
+
}
|
|
822
|
+
},
|
|
823
|
+
{
|
|
824
|
+
kind: "Argument",
|
|
825
|
+
name: {
|
|
826
|
+
kind: "Name",
|
|
827
|
+
value: "filterKeys"
|
|
828
|
+
},
|
|
829
|
+
value: {
|
|
830
|
+
kind: "Variable",
|
|
831
|
+
name: {
|
|
832
|
+
kind: "Name",
|
|
833
|
+
value: "filterKeys"
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
],
|
|
838
|
+
selectionSet: {
|
|
839
|
+
kind: "SelectionSet",
|
|
840
|
+
selections: [
|
|
841
|
+
{
|
|
842
|
+
kind: "Field",
|
|
843
|
+
name: {
|
|
844
|
+
kind: "Name",
|
|
845
|
+
value: "edges"
|
|
846
|
+
},
|
|
847
|
+
selectionSet: {
|
|
848
|
+
kind: "SelectionSet",
|
|
849
|
+
selections: [
|
|
850
|
+
{
|
|
851
|
+
kind: "Field",
|
|
852
|
+
name: {
|
|
853
|
+
kind: "Name",
|
|
854
|
+
value: "node"
|
|
855
|
+
},
|
|
856
|
+
selectionSet: {
|
|
857
|
+
kind: "SelectionSet",
|
|
858
|
+
selections: [
|
|
859
|
+
{
|
|
860
|
+
kind: "Field",
|
|
861
|
+
name: {
|
|
862
|
+
kind: "Name",
|
|
863
|
+
value: "_id"
|
|
864
|
+
}
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
kind: "Field",
|
|
868
|
+
name: {
|
|
869
|
+
kind: "Name",
|
|
870
|
+
value: "file_name"
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
kind: "Field",
|
|
875
|
+
name: {
|
|
876
|
+
kind: "Name",
|
|
877
|
+
value: "url"
|
|
878
|
+
}
|
|
879
|
+
},
|
|
880
|
+
{
|
|
881
|
+
kind: "Field",
|
|
882
|
+
name: {
|
|
883
|
+
kind: "Name",
|
|
884
|
+
value: "size"
|
|
885
|
+
}
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
kind: "Field",
|
|
889
|
+
name: {
|
|
890
|
+
kind: "Name",
|
|
891
|
+
value: "type"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
kind: "Field",
|
|
896
|
+
name: {
|
|
897
|
+
kind: "Name",
|
|
898
|
+
value: "mimetype"
|
|
899
|
+
}
|
|
900
|
+
}
|
|
901
|
+
]
|
|
902
|
+
}
|
|
903
|
+
}
|
|
904
|
+
]
|
|
905
|
+
}
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
kind: "Field",
|
|
909
|
+
name: {
|
|
910
|
+
kind: "Name",
|
|
911
|
+
value: "pageInfo"
|
|
912
|
+
},
|
|
913
|
+
selectionSet: {
|
|
914
|
+
kind: "SelectionSet",
|
|
915
|
+
selections: [
|
|
916
|
+
{
|
|
917
|
+
kind: "Field",
|
|
918
|
+
name: {
|
|
919
|
+
kind: "Name",
|
|
920
|
+
value: "endCursor"
|
|
921
|
+
}
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
kind: "Field",
|
|
925
|
+
name: {
|
|
926
|
+
kind: "Name",
|
|
927
|
+
value: "hasNextPage"
|
|
928
|
+
}
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
kind: "Field",
|
|
932
|
+
name: {
|
|
933
|
+
kind: "Name",
|
|
934
|
+
value: "hasPreviousPage"
|
|
935
|
+
}
|
|
936
|
+
},
|
|
937
|
+
{
|
|
938
|
+
kind: "Field",
|
|
939
|
+
name: {
|
|
940
|
+
kind: "Name",
|
|
941
|
+
value: "startCursor"
|
|
942
|
+
}
|
|
943
|
+
}
|
|
944
|
+
]
|
|
945
|
+
}
|
|
946
|
+
}
|
|
947
|
+
]
|
|
948
|
+
}
|
|
949
|
+
}
|
|
950
|
+
]
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
]
|
|
954
|
+
};
|
|
955
|
+
const StoragePlanDocument = {
|
|
956
|
+
kind: "Document",
|
|
957
|
+
definitions: [
|
|
958
|
+
{
|
|
959
|
+
kind: "OperationDefinition",
|
|
960
|
+
operation: "query",
|
|
961
|
+
name: {
|
|
962
|
+
kind: "Name",
|
|
963
|
+
value: "StoragePlan"
|
|
964
|
+
},
|
|
965
|
+
selectionSet: {
|
|
966
|
+
kind: "SelectionSet",
|
|
967
|
+
selections: [
|
|
968
|
+
{
|
|
969
|
+
kind: "Field",
|
|
970
|
+
name: {
|
|
971
|
+
kind: "Name",
|
|
972
|
+
value: "plan"
|
|
973
|
+
},
|
|
974
|
+
selectionSet: {
|
|
975
|
+
kind: "SelectionSet",
|
|
976
|
+
selections: [
|
|
977
|
+
{
|
|
978
|
+
kind: "Field",
|
|
979
|
+
name: {
|
|
980
|
+
kind: "Name",
|
|
981
|
+
value: "storage"
|
|
982
|
+
}
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
kind: "Field",
|
|
986
|
+
name: {
|
|
987
|
+
kind: "Name",
|
|
988
|
+
value: "package"
|
|
989
|
+
},
|
|
990
|
+
selectionSet: {
|
|
991
|
+
kind: "SelectionSet",
|
|
992
|
+
selections: [
|
|
993
|
+
{
|
|
994
|
+
kind: "Field",
|
|
995
|
+
name: {
|
|
996
|
+
kind: "Name",
|
|
997
|
+
value: "_id"
|
|
998
|
+
}
|
|
999
|
+
},
|
|
1000
|
+
{
|
|
1001
|
+
kind: "Field",
|
|
1002
|
+
name: {
|
|
1003
|
+
kind: "Name",
|
|
1004
|
+
value: "storage"
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
]
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
]
|
|
1011
|
+
}
|
|
1012
|
+
}
|
|
1013
|
+
]
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
]
|
|
1017
|
+
};
|
|
1018
|
+
const MediaUsageDocument = {
|
|
1019
|
+
kind: "Document",
|
|
1020
|
+
definitions: [
|
|
1021
|
+
{
|
|
1022
|
+
kind: "OperationDefinition",
|
|
1023
|
+
operation: "query",
|
|
1024
|
+
name: {
|
|
1025
|
+
kind: "Name",
|
|
1026
|
+
value: "MediaUsage"
|
|
1027
|
+
},
|
|
1028
|
+
selectionSet: {
|
|
1029
|
+
kind: "SelectionSet",
|
|
1030
|
+
selections: [
|
|
1031
|
+
{
|
|
1032
|
+
kind: "Field",
|
|
1033
|
+
name: {
|
|
1034
|
+
kind: "Name",
|
|
1035
|
+
value: "mediaUsage"
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
]
|
|
1039
|
+
}
|
|
1040
|
+
}
|
|
1041
|
+
]
|
|
1042
|
+
};
|
|
1043
|
+
const AddMediasDocument = {
|
|
1044
|
+
kind: "Document",
|
|
1045
|
+
definitions: [
|
|
1046
|
+
{
|
|
1047
|
+
kind: "OperationDefinition",
|
|
1048
|
+
operation: "mutation",
|
|
1049
|
+
name: {
|
|
1050
|
+
kind: "Name",
|
|
1051
|
+
value: "AddMedias"
|
|
1052
|
+
},
|
|
1053
|
+
variableDefinitions: [
|
|
1054
|
+
{
|
|
1055
|
+
kind: "VariableDefinition",
|
|
1056
|
+
variable: {
|
|
1057
|
+
kind: "Variable",
|
|
1058
|
+
name: {
|
|
1059
|
+
kind: "Name",
|
|
1060
|
+
value: "input"
|
|
1061
|
+
}
|
|
1062
|
+
},
|
|
1063
|
+
type: {
|
|
1064
|
+
kind: "NonNullType",
|
|
1065
|
+
type: {
|
|
1066
|
+
kind: "ListType",
|
|
1067
|
+
type: {
|
|
1068
|
+
kind: "NonNullType",
|
|
1069
|
+
type: {
|
|
1070
|
+
kind: "NamedType",
|
|
1071
|
+
name: {
|
|
1072
|
+
kind: "Name",
|
|
1073
|
+
value: "Upload"
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
],
|
|
1081
|
+
selectionSet: {
|
|
1082
|
+
kind: "SelectionSet",
|
|
1083
|
+
selections: [
|
|
1084
|
+
{
|
|
1085
|
+
kind: "Field",
|
|
1086
|
+
name: {
|
|
1087
|
+
kind: "Name",
|
|
1088
|
+
value: "addMedias"
|
|
1089
|
+
},
|
|
1090
|
+
arguments: [
|
|
1091
|
+
{
|
|
1092
|
+
kind: "Argument",
|
|
1093
|
+
name: {
|
|
1094
|
+
kind: "Name",
|
|
1095
|
+
value: "input"
|
|
1096
|
+
},
|
|
1097
|
+
value: {
|
|
1098
|
+
kind: "Variable",
|
|
1099
|
+
name: {
|
|
1100
|
+
kind: "Name",
|
|
1101
|
+
value: "input"
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1104
|
+
}
|
|
1105
|
+
],
|
|
1106
|
+
selectionSet: {
|
|
1107
|
+
kind: "SelectionSet",
|
|
1108
|
+
selections: [
|
|
1109
|
+
{
|
|
1110
|
+
kind: "Field",
|
|
1111
|
+
name: {
|
|
1112
|
+
kind: "Name",
|
|
1113
|
+
value: "_id"
|
|
1114
|
+
}
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
kind: "Field",
|
|
1118
|
+
name: {
|
|
1119
|
+
kind: "Name",
|
|
1120
|
+
value: "file_name"
|
|
1121
|
+
}
|
|
1122
|
+
},
|
|
1123
|
+
{
|
|
1124
|
+
kind: "Field",
|
|
1125
|
+
name: {
|
|
1126
|
+
kind: "Name",
|
|
1127
|
+
value: "url"
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
kind: "Field",
|
|
1132
|
+
name: {
|
|
1133
|
+
kind: "Name",
|
|
1134
|
+
value: "size"
|
|
1135
|
+
}
|
|
1136
|
+
}
|
|
1137
|
+
]
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
]
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
]
|
|
1144
|
+
};
|
|
1145
|
+
const DeleteMediasDocument = {
|
|
1146
|
+
kind: "Document",
|
|
1147
|
+
definitions: [
|
|
1148
|
+
{
|
|
1149
|
+
kind: "OperationDefinition",
|
|
1150
|
+
operation: "mutation",
|
|
1151
|
+
name: {
|
|
1152
|
+
kind: "Name",
|
|
1153
|
+
value: "DeleteMedias"
|
|
1154
|
+
},
|
|
1155
|
+
variableDefinitions: [
|
|
1156
|
+
{
|
|
1157
|
+
kind: "VariableDefinition",
|
|
1158
|
+
variable: {
|
|
1159
|
+
kind: "Variable",
|
|
1160
|
+
name: {
|
|
1161
|
+
kind: "Name",
|
|
1162
|
+
value: "cursors"
|
|
1163
|
+
}
|
|
1164
|
+
},
|
|
1165
|
+
type: {
|
|
1166
|
+
kind: "NonNullType",
|
|
1167
|
+
type: {
|
|
1168
|
+
kind: "ListType",
|
|
1169
|
+
type: {
|
|
1170
|
+
kind: "NonNullType",
|
|
1171
|
+
type: {
|
|
1172
|
+
kind: "NamedType",
|
|
1173
|
+
name: {
|
|
1174
|
+
kind: "Name",
|
|
1175
|
+
value: "ID"
|
|
1176
|
+
}
|
|
1177
|
+
}
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
],
|
|
1183
|
+
selectionSet: {
|
|
1184
|
+
kind: "SelectionSet",
|
|
1185
|
+
selections: [
|
|
1186
|
+
{
|
|
1187
|
+
kind: "Field",
|
|
1188
|
+
name: {
|
|
1189
|
+
kind: "Name",
|
|
1190
|
+
value: "deleteMedias"
|
|
1191
|
+
},
|
|
1192
|
+
arguments: [
|
|
1193
|
+
{
|
|
1194
|
+
kind: "Argument",
|
|
1195
|
+
name: {
|
|
1196
|
+
kind: "Name",
|
|
1197
|
+
value: "cursors"
|
|
1198
|
+
},
|
|
1199
|
+
value: {
|
|
1200
|
+
kind: "Variable",
|
|
1201
|
+
name: {
|
|
1202
|
+
kind: "Name",
|
|
1203
|
+
value: "cursors"
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
}
|
|
1207
|
+
],
|
|
1208
|
+
selectionSet: {
|
|
1209
|
+
kind: "SelectionSet",
|
|
1210
|
+
selections: [
|
|
1211
|
+
{
|
|
1212
|
+
kind: "Field",
|
|
1213
|
+
name: {
|
|
1214
|
+
kind: "Name",
|
|
1215
|
+
value: "message"
|
|
1216
|
+
}
|
|
1217
|
+
}
|
|
1218
|
+
]
|
|
1219
|
+
}
|
|
1220
|
+
}
|
|
1221
|
+
]
|
|
1222
|
+
}
|
|
1223
|
+
}
|
|
1224
|
+
]
|
|
1225
|
+
};
|
|
1226
|
+
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, graphql_BlogSortKeys as BlogSortKeys, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionMatchType as CollectionMatchType, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionRuleField as CollectionRuleField, graphql_CollectionRuleRelation as CollectionRuleRelation, graphql_CollectionSortBy as CollectionSortBy, graphql_CollectionSortKey as CollectionSortKey, graphql_CollectionType as CollectionType, DeleteMediasDocument, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, graphql_LocationSortKeys as LocationSortKeys, 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, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, 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 };
|