@soppiya/app-bridge 1.0.7 → 1.0.9

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.
Files changed (102) hide show
  1. package/dist/components/articles-picker/api/query.d.ts +8 -0
  2. package/dist/components/articles-picker/api/query.js +22 -0
  3. package/dist/components/articles-picker/model/useArticles.d.ts +30 -0
  4. package/dist/components/articles-picker/model/useArticles.js +46 -0
  5. package/dist/components/articles-picker/ui/ArticlesPicker.d.ts +9 -0
  6. package/dist/components/articles-picker/ui/ArticlesPicker.js +107 -0
  7. package/dist/components/articles-picker/ui/ProductPicker.stories.d.ts +17 -0
  8. package/dist/components/articles-picker/ui/ProductPicker.stories.js +13 -0
  9. package/dist/components/blogs-picker/api/query.d.ts +8 -0
  10. package/dist/components/blogs-picker/api/query.js +22 -0
  11. package/dist/components/blogs-picker/model/useBlogs.d.ts +30 -0
  12. package/dist/components/blogs-picker/model/useBlogs.js +46 -0
  13. package/dist/components/blogs-picker/ui/BlogsPicker.d.ts +9 -0
  14. package/dist/components/blogs-picker/ui/BlogsPicker.js +107 -0
  15. package/dist/components/blogs-picker/ui/BlogsPicker.stories.d.ts +17 -0
  16. package/dist/components/blogs-picker/ui/BlogsPicker.stories.js +13 -0
  17. package/dist/components/collections-pciker/api/query.d.ts +5 -0
  18. package/dist/components/collections-pciker/api/query.js +22 -0
  19. package/dist/components/collections-pciker/model/useCollections.d.ts +29 -0
  20. package/dist/components/collections-pciker/model/useCollections.js +32 -0
  21. package/dist/components/collections-pciker/ui/CollectionPicker.d.ts +9 -0
  22. package/dist/components/collections-pciker/ui/CollectionPicker.js +105 -0
  23. package/dist/components/collections-pciker/ui/CollectionPicker.stories.d.ts +17 -0
  24. package/dist/components/collections-pciker/ui/CollectionPicker.stories.js +13 -0
  25. package/dist/components/index.d.ts +4 -3
  26. package/dist/components/index.js +4 -4
  27. package/dist/components/meta-data/api/query.d.ts +4 -0
  28. package/dist/components/meta-data/api/query.js +14 -0
  29. package/dist/components/meta-data/index.d.ts +0 -0
  30. package/dist/components/meta-data/index.js +0 -0
  31. package/dist/components/meta-data/model/meta.types.d.ts +7 -0
  32. package/dist/components/meta-data/model/meta.types.js +33 -0
  33. package/dist/components/meta-data/model/schema.d.ts +0 -0
  34. package/dist/components/meta-data/model/schema.js +0 -0
  35. package/dist/components/meta-data/model/useGetMetaFields.d.ts +12 -0
  36. package/dist/components/meta-data/model/useGetMetaFields.js +18 -0
  37. package/dist/components/meta-data/ui/ArticleRefMetaField.d.ts +3 -0
  38. package/dist/components/meta-data/ui/ArticleRefMetaField.js +37 -0
  39. package/dist/components/meta-data/ui/BlogRefMetaField.d.ts +3 -0
  40. package/dist/components/meta-data/ui/BlogRefMetaField.js +37 -0
  41. package/dist/components/meta-data/ui/BooleanMetaField.d.ts +3 -0
  42. package/dist/components/meta-data/ui/BooleanMetaField.js +27 -0
  43. package/dist/components/meta-data/ui/CollectionRefMetaField.d.ts +3 -0
  44. package/dist/components/meta-data/ui/CollectionRefMetaField.js +36 -0
  45. package/dist/components/meta-data/ui/ColorMetaField.d.ts +3 -0
  46. package/dist/components/meta-data/ui/ColorMetaField.js +17 -0
  47. package/dist/components/meta-data/ui/DateAndTimeMetaField.d.ts +3 -0
  48. package/dist/components/meta-data/ui/DateAndTimeMetaField.js +34 -0
  49. package/dist/components/meta-data/ui/DateMetaField.d.ts +3 -0
  50. package/dist/components/meta-data/ui/DateMetaField.js +33 -0
  51. package/dist/components/meta-data/ui/FloatMetaField.d.ts +3 -0
  52. package/dist/components/meta-data/ui/FloatMetaField.js +23 -0
  53. package/dist/components/meta-data/ui/MetaData.d.ts +13 -0
  54. package/dist/components/meta-data/ui/MetaData.js +45 -0
  55. package/dist/components/meta-data/ui/MetaData.stories.d.ts +10 -0
  56. package/dist/components/meta-data/ui/MetaData.stories.js +136 -0
  57. package/dist/components/meta-data/ui/MetaDataItem.d.ts +16 -0
  58. package/dist/components/meta-data/ui/MetaDataItem.js +247 -0
  59. package/dist/components/meta-data/ui/MetaDataTypePopup.d.ts +11 -0
  60. package/dist/components/meta-data/ui/MetaDataTypePopup.js +62 -0
  61. package/dist/components/meta-data/ui/MultilineTextMetaField.d.ts +3 -0
  62. package/dist/components/meta-data/ui/MultilineTextMetaField.js +15 -0
  63. package/dist/components/meta-data/ui/NumberMetaField.d.ts +3 -0
  64. package/dist/components/meta-data/ui/NumberMetaField.js +19 -0
  65. package/dist/components/meta-data/ui/PageRefMetaField.d.ts +3 -0
  66. package/dist/components/meta-data/ui/PageRefMetaField.js +6 -0
  67. package/dist/components/meta-data/ui/ProductRefMetaField.d.ts +3 -0
  68. package/dist/components/meta-data/ui/ProductRefMetaField.js +37 -0
  69. package/dist/components/meta-data/ui/SingleLineTextMetaField.d.ts +3 -0
  70. package/dist/components/meta-data/ui/SingleLineTextMetaField.js +18 -0
  71. package/dist/components/meta-data/ui/VariantRefMetaField.d.ts +3 -0
  72. package/dist/components/meta-data/ui/VariantRefMetaField.js +45 -0
  73. package/dist/components/products-picker/api/query.d.ts +8 -0
  74. package/dist/components/products-picker/api/query.js +24 -0
  75. package/dist/components/products-picker/index.d.ts +1 -0
  76. package/dist/components/products-picker/index.js +2 -0
  77. package/dist/components/products-picker/model/useProducts.d.ts +30 -0
  78. package/dist/components/products-picker/model/useProducts.js +46 -0
  79. package/dist/components/products-picker/ui/ProductPicker.d.ts +9 -0
  80. package/dist/components/products-picker/ui/ProductPicker.js +107 -0
  81. package/dist/components/products-picker/ui/ProductsPicker.stories.d.ts +17 -0
  82. package/dist/components/products-picker/ui/ProductsPicker.stories.js +13 -0
  83. package/dist/components/savebar/SaveBar.d.ts +2 -1
  84. package/dist/components/savebar/SaveBar.js +2 -1
  85. package/dist/components/variants-picker/api/query.d.ts +1 -0
  86. package/dist/components/variants-picker/api/query.js +2 -2
  87. package/dist/components/variants-picker/model/useVariants.d.ts +3 -0
  88. package/dist/components/variants-picker/model/useVariants.js +6 -3
  89. package/dist/components/variants-picker/ui/VariantsPicker.d.ts +2 -1
  90. package/dist/components/variants-picker/ui/VariantsPicker.js +3 -2
  91. package/dist/components/variants-picker/ui/VariantsPicker.stories.d.ts +2 -1
  92. package/dist/index.d.ts +2 -2
  93. package/dist/shared/graphql/gql.d.ts +27 -2
  94. package/dist/shared/graphql/gql.js +7 -2
  95. package/dist/shared/graphql/graphql.d.ts +2270 -108
  96. package/dist/shared/graphql/graphql.js +2058 -297
  97. package/dist/shared/loading/Loading.d.ts +2 -0
  98. package/dist/shared/loading/Loading.js +11 -0
  99. package/dist/shared/loading/index.d.ts +1 -0
  100. package/dist/shared/loading/index.js +2 -0
  101. package/dist/styles.css +85 -0
  102. package/package.json +4 -2
@@ -37,10 +37,56 @@ var graphql_ArticleStatus = /*#__PURE__*/ function(ArticleStatus) {
37
37
  var graphql_BlogSortKeys = /*#__PURE__*/ function(BlogSortKeys) {
38
38
  BlogSortKeys["_id"] = "_id";
39
39
  BlogSortKeys["createdAt"] = "createdAt";
40
+ BlogSortKeys["handle"] = "handle";
41
+ BlogSortKeys["template"] = "template";
40
42
  BlogSortKeys["title"] = "title";
41
43
  BlogSortKeys["updatedAt"] = "updatedAt";
42
44
  return BlogSortKeys;
43
45
  }({});
46
+ var graphql_CartDiscountScope = /*#__PURE__*/ function(CartDiscountScope) {
47
+ CartDiscountScope["cart"] = "cart";
48
+ CartDiscountScope["line_item"] = "line_item";
49
+ CartDiscountScope["shipping"] = "shipping";
50
+ return CartDiscountScope;
51
+ }({});
52
+ var graphql_CartDiscountSource = /*#__PURE__*/ function(CartDiscountSource) {
53
+ CartDiscountSource["app"] = "app";
54
+ CartDiscountSource["store"] = "store";
55
+ return CartDiscountSource;
56
+ }({});
57
+ var graphql_CartDiscountStatus = /*#__PURE__*/ function(CartDiscountStatus) {
58
+ CartDiscountStatus["applied"] = "applied";
59
+ CartDiscountStatus["invalid"] = "invalid";
60
+ CartDiscountStatus["pending"] = "pending";
61
+ return CartDiscountStatus;
62
+ }({});
63
+ var graphql_CartDiscountType = /*#__PURE__*/ function(CartDiscountType) {
64
+ CartDiscountType["amount"] = "amount";
65
+ CartDiscountType["free_item"] = "free_item";
66
+ CartDiscountType["percentage"] = "percentage";
67
+ return CartDiscountType;
68
+ }({});
69
+ var graphql_CartLineItemSource = /*#__PURE__*/ function(CartLineItemSource) {
70
+ CartLineItemSource["app"] = "app";
71
+ CartLineItemSource["store"] = "store";
72
+ return CartLineItemSource;
73
+ }({});
74
+ var graphql_CartSortkeys = /*#__PURE__*/ function(CartSortkeys) {
75
+ CartSortkeys["_id"] = "_id";
76
+ CartSortkeys["createdAt"] = "createdAt";
77
+ CartSortkeys["first_name"] = "first_name";
78
+ CartSortkeys["is_tax_collectable"] = "is_tax_collectable";
79
+ CartSortkeys["language"] = "language";
80
+ CartSortkeys["last_name"] = "last_name";
81
+ CartSortkeys["updatedAt"] = "updatedAt";
82
+ return CartSortkeys;
83
+ }({});
84
+ var graphql_CartStatus = /*#__PURE__*/ function(CartStatus) {
85
+ CartStatus["abandoned"] = "abandoned";
86
+ CartStatus["active"] = "active";
87
+ CartStatus["converted"] = "converted";
88
+ return CartStatus;
89
+ }({});
44
90
  var graphql_CheckoutAutoFulfillment = /*#__PURE__*/ function(CheckoutAutoFulfillment) {
45
91
  CheckoutAutoFulfillment["all"] = "all";
46
92
  CheckoutAutoFulfillment["gift_cards"] = "gift_cards";
@@ -83,6 +129,191 @@ var graphql_CollectionSortKey = /*#__PURE__*/ function(CollectionSortKey) {
83
129
  CollectionSortKey["updatedAt"] = "updatedAt";
84
130
  return CollectionSortKey;
85
131
  }({});
132
+ var graphql_CustomerAddressSortkeys = /*#__PURE__*/ function(CustomerAddressSortkeys) {
133
+ CustomerAddressSortkeys["_id"] = "_id";
134
+ CustomerAddressSortkeys["city"] = "city";
135
+ CustomerAddressSortkeys["company"] = "company";
136
+ CustomerAddressSortkeys["country"] = "country";
137
+ CustomerAddressSortkeys["customer"] = "customer";
138
+ CustomerAddressSortkeys["first_name"] = "first_name";
139
+ CustomerAddressSortkeys["is_default"] = "is_default";
140
+ CustomerAddressSortkeys["last_name"] = "last_name";
141
+ CustomerAddressSortkeys["postal_code"] = "postal_code";
142
+ CustomerAddressSortkeys["reatedAt"] = "reatedAt";
143
+ CustomerAddressSortkeys["region"] = "region";
144
+ CustomerAddressSortkeys["updatedAt"] = "updatedAt";
145
+ return CustomerAddressSortkeys;
146
+ }({});
147
+ var graphql_CustomerSegmentCombine = /*#__PURE__*/ function(CustomerSegmentCombine) {
148
+ CustomerSegmentCombine["all"] = "all";
149
+ CustomerSegmentCombine["any"] = "any";
150
+ return CustomerSegmentCombine;
151
+ }({});
152
+ var graphql_CustomerSegmentConditionField = /*#__PURE__*/ function(CustomerSegmentConditionField) {
153
+ CustomerSegmentConditionField["amount_spent"] = "amount_spent";
154
+ CustomerSegmentConditionField["customer_cities"] = "customer_cities";
155
+ CustomerSegmentConditionField["customer_countries"] = "customer_countries";
156
+ CustomerSegmentConditionField["customer_created_at"] = "customer_created_at";
157
+ CustomerSegmentConditionField["customer_email_domain"] = "customer_email_domain";
158
+ CustomerSegmentConditionField["customer_regions"] = "customer_regions";
159
+ CustomerSegmentConditionField["customer_tags"] = "customer_tags";
160
+ CustomerSegmentConditionField["email_subscription_status"] = "email_subscription_status";
161
+ CustomerSegmentConditionField["first_ordered_at"] = "first_ordered_at";
162
+ CustomerSegmentConditionField["last_ordered_at"] = "last_ordered_at";
163
+ CustomerSegmentConditionField["number_of_orders"] = "number_of_orders";
164
+ CustomerSegmentConditionField["products_purchased"] = "products_purchased";
165
+ CustomerSegmentConditionField["sms_subscription_status"] = "sms_subscription_status";
166
+ CustomerSegmentConditionField["tax_collection_status"] = "tax_collection_status";
167
+ CustomerSegmentConditionField["variants_purchased"] = "variants_purchased";
168
+ return CustomerSegmentConditionField;
169
+ }({});
170
+ var graphql_CustomerSegmentConditionOperator = /*#__PURE__*/ function(CustomerSegmentConditionOperator) {
171
+ CustomerSegmentConditionOperator["contains"] = "contains";
172
+ CustomerSegmentConditionOperator["does_not_contain"] = "does_not_contain";
173
+ CustomerSegmentConditionOperator["ends_with"] = "ends_with";
174
+ CustomerSegmentConditionOperator["is_empty"] = "is_empty";
175
+ CustomerSegmentConditionOperator["is_equal_to"] = "is_equal_to";
176
+ CustomerSegmentConditionOperator["is_greater_than"] = "is_greater_than";
177
+ CustomerSegmentConditionOperator["is_less_than"] = "is_less_than";
178
+ CustomerSegmentConditionOperator["is_not_empty"] = "is_not_empty";
179
+ CustomerSegmentConditionOperator["is_not_equal_to"] = "is_not_equal_to";
180
+ CustomerSegmentConditionOperator["starts_with"] = "starts_with";
181
+ return CustomerSegmentConditionOperator;
182
+ }({});
183
+ var graphql_CustomerSegmentSortkeys = /*#__PURE__*/ function(CustomerSegmentSortkeys) {
184
+ CustomerSegmentSortkeys["_id"] = "_id";
185
+ CustomerSegmentSortkeys["createdAt"] = "createdAt";
186
+ CustomerSegmentSortkeys["title"] = "title";
187
+ CustomerSegmentSortkeys["updatedAt"] = "updatedAt";
188
+ return CustomerSegmentSortkeys;
189
+ }({});
190
+ var graphql_CustomerSortkeys = /*#__PURE__*/ function(CustomerSortkeys) {
191
+ CustomerSortkeys["_id"] = "_id";
192
+ CustomerSortkeys["createdAt"] = "createdAt";
193
+ CustomerSortkeys["first_name"] = "first_name";
194
+ CustomerSortkeys["is_tax_collectable"] = "is_tax_collectable";
195
+ CustomerSortkeys["language"] = "language";
196
+ CustomerSortkeys["last_name"] = "last_name";
197
+ CustomerSortkeys["updatedAt"] = "updatedAt";
198
+ return CustomerSortkeys;
199
+ }({});
200
+ var graphql_DefaultThemeTemplateType = /*#__PURE__*/ function(DefaultThemeTemplateType) {
201
+ DefaultThemeTemplateType["article"] = "article";
202
+ DefaultThemeTemplateType["articles"] = "articles";
203
+ DefaultThemeTemplateType["blog"] = "blog";
204
+ DefaultThemeTemplateType["blogs"] = "blogs";
205
+ DefaultThemeTemplateType["collection"] = "collection";
206
+ DefaultThemeTemplateType["collections"] = "collections";
207
+ DefaultThemeTemplateType["page"] = "page";
208
+ DefaultThemeTemplateType["product"] = "product";
209
+ DefaultThemeTemplateType["products"] = "products";
210
+ return DefaultThemeTemplateType;
211
+ }({});
212
+ var graphql_DeliveryProfileSortKeys = /*#__PURE__*/ function(DeliveryProfileSortKeys) {
213
+ DeliveryProfileSortKeys["_id"] = "_id";
214
+ DeliveryProfileSortKeys["createdAt"] = "createdAt";
215
+ DeliveryProfileSortKeys["name"] = "name";
216
+ DeliveryProfileSortKeys["updatedAt"] = "updatedAt";
217
+ return DeliveryProfileSortKeys;
218
+ }({});
219
+ var graphql_DeliveryZoneRateConditionType = /*#__PURE__*/ function(DeliveryZoneRateConditionType) {
220
+ DeliveryZoneRateConditionType["price"] = "price";
221
+ DeliveryZoneRateConditionType["weight"] = "weight";
222
+ return DeliveryZoneRateConditionType;
223
+ }({});
224
+ var graphql_DeliveryZoneSortKeys = /*#__PURE__*/ function(DeliveryZoneSortKeys) {
225
+ DeliveryZoneSortKeys["_id"] = "_id";
226
+ DeliveryZoneSortKeys["createdAt"] = "createdAt";
227
+ DeliveryZoneSortKeys["name"] = "name";
228
+ DeliveryZoneSortKeys["profile"] = "profile";
229
+ DeliveryZoneSortKeys["updatedAt"] = "updatedAt";
230
+ return DeliveryZoneSortKeys;
231
+ }({});
232
+ var graphql_DiscountAooMinimumPurchaseType = /*#__PURE__*/ function(DiscountAooMinimumPurchaseType) {
233
+ DiscountAooMinimumPurchaseType["amount"] = "amount";
234
+ DiscountAooMinimumPurchaseType["none"] = "none";
235
+ DiscountAooMinimumPurchaseType["quantity"] = "quantity";
236
+ return DiscountAooMinimumPurchaseType;
237
+ }({});
238
+ var graphql_DiscountAooType = /*#__PURE__*/ function(DiscountAooType) {
239
+ DiscountAooType["fixed"] = "fixed";
240
+ DiscountAooType["percentage"] = "percentage";
241
+ return DiscountAooType;
242
+ }({});
243
+ var graphql_DiscountAopApplication = /*#__PURE__*/ function(DiscountAopApplication) {
244
+ DiscountAopApplication["collections"] = "collections";
245
+ DiscountAopApplication["products"] = "products";
246
+ return DiscountAopApplication;
247
+ }({});
248
+ var graphql_DiscountAopMinimunPurchaseType = /*#__PURE__*/ function(DiscountAopMinimunPurchaseType) {
249
+ DiscountAopMinimunPurchaseType["amount"] = "amount";
250
+ DiscountAopMinimunPurchaseType["none"] = "none";
251
+ DiscountAopMinimunPurchaseType["quantity"] = "quantity";
252
+ return DiscountAopMinimunPurchaseType;
253
+ }({});
254
+ var graphql_DiscountAopType = /*#__PURE__*/ function(DiscountAopType) {
255
+ DiscountAopType["fixed"] = "fixed";
256
+ DiscountAopType["percentage"] = "percentage";
257
+ return DiscountAopType;
258
+ }({});
259
+ var graphql_DiscountApplication = /*#__PURE__*/ function(DiscountApplication) {
260
+ DiscountApplication["automatic"] = "automatic";
261
+ DiscountApplication["discount_code"] = "discount_code";
262
+ return DiscountApplication;
263
+ }({});
264
+ var graphql_DiscountBxgyApplication = /*#__PURE__*/ function(DiscountBxgyApplication) {
265
+ DiscountBxgyApplication["collections"] = "collections";
266
+ DiscountBxgyApplication["products"] = "products";
267
+ return DiscountBxgyApplication;
268
+ }({});
269
+ var graphql_DiscountBxgyMinimunPurchaseType = /*#__PURE__*/ function(DiscountBxgyMinimunPurchaseType) {
270
+ DiscountBxgyMinimunPurchaseType["amount"] = "amount";
271
+ DiscountBxgyMinimunPurchaseType["quantity"] = "quantity";
272
+ return DiscountBxgyMinimunPurchaseType;
273
+ }({});
274
+ var graphql_DiscountBxgyOfferApplication = /*#__PURE__*/ function(DiscountBxgyOfferApplication) {
275
+ DiscountBxgyOfferApplication["collections"] = "collections";
276
+ DiscountBxgyOfferApplication["products"] = "products";
277
+ return DiscountBxgyOfferApplication;
278
+ }({});
279
+ var graphql_DiscountBxgyType = /*#__PURE__*/ function(DiscountBxgyType) {
280
+ DiscountBxgyType["amount_off"] = "amount_off";
281
+ DiscountBxgyType["free"] = "free";
282
+ DiscountBxgyType["percentage"] = "percentage";
283
+ return DiscountBxgyType;
284
+ }({});
285
+ var graphql_DiscountFsMinimunPurchaseType = /*#__PURE__*/ function(DiscountFsMinimunPurchaseType) {
286
+ DiscountFsMinimunPurchaseType["amount"] = "amount";
287
+ DiscountFsMinimunPurchaseType["none"] = "none";
288
+ DiscountFsMinimunPurchaseType["quantity"] = "quantity";
289
+ return DiscountFsMinimunPurchaseType;
290
+ }({});
291
+ var graphql_DiscountFsType = /*#__PURE__*/ function(DiscountFsType) {
292
+ DiscountFsType["all_countries"] = "all_countries";
293
+ DiscountFsType["countries"] = "countries";
294
+ return DiscountFsType;
295
+ }({});
296
+ var graphql_DiscountSortKeys = /*#__PURE__*/ function(DiscountSortKeys) {
297
+ DiscountSortKeys["_id"] = "_id";
298
+ DiscountSortKeys["available"] = "available";
299
+ DiscountSortKeys["committed"] = "committed";
300
+ DiscountSortKeys["createdAt"] = "createdAt";
301
+ DiscountSortKeys["damaged"] = "damaged";
302
+ DiscountSortKeys["incoming"] = "incoming";
303
+ DiscountSortKeys["on_hand"] = "on_hand";
304
+ DiscountSortKeys["quality_control"] = "quality_control";
305
+ DiscountSortKeys["reserved"] = "reserved";
306
+ DiscountSortKeys["safety_stock"] = "safety_stock";
307
+ DiscountSortKeys["updatedAt"] = "updatedAt";
308
+ return DiscountSortKeys;
309
+ }({});
310
+ var graphql_DiscountType = /*#__PURE__*/ function(DiscountType) {
311
+ DiscountType["amount_off_order"] = "amount_off_order";
312
+ DiscountType["amount_off_products"] = "amount_off_products";
313
+ DiscountType["buy_x_get_y"] = "buy_x_get_y";
314
+ DiscountType["free_shipping"] = "free_shipping";
315
+ return DiscountType;
316
+ }({});
86
317
  var graphql_DomainRecordType = /*#__PURE__*/ function(DomainRecordType) {
87
318
  DomainRecordType["A"] = "A";
88
319
  DomainRecordType["AAAA"] = "AAAA";
@@ -126,18 +357,19 @@ var graphql_LinklistSortKeys = /*#__PURE__*/ function(LinklistSortKeys) {
126
357
  return LinklistSortKeys;
127
358
  }({});
128
359
  var graphql_LinklistType = /*#__PURE__*/ function(LinklistType) {
360
+ LinklistType["account"] = "account";
129
361
  LinklistType["article"] = "article";
130
362
  LinklistType["blog"] = "blog";
131
- LinklistType["catalog"] = "catalog";
363
+ LinklistType["blogs"] = "blogs";
364
+ LinklistType["cart"] = "cart";
132
365
  LinklistType["collection"] = "collection";
133
366
  LinklistType["collections"] = "collections";
134
- LinklistType["frontpage"] = "frontpage";
135
- LinklistType["http"] = "http";
136
- LinklistType["metaobject"] = "metaobject";
367
+ LinklistType["home"] = "home";
137
368
  LinklistType["page"] = "page";
138
- LinklistType["policy"] = "policy";
139
369
  LinklistType["product"] = "product";
370
+ LinklistType["products"] = "products";
140
371
  LinklistType["search"] = "search";
372
+ LinklistType["url"] = "url";
141
373
  return LinklistType;
142
374
  }({});
143
375
  var graphql_LocationSortKeys = /*#__PURE__*/ function(LocationSortKeys) {
@@ -239,7 +471,6 @@ var graphql_MetafieldScope = /*#__PURE__*/ function(MetafieldScope) {
239
471
  MetafieldScope["blog"] = "blog";
240
472
  MetafieldScope["collection"] = "collection";
241
473
  MetafieldScope["customer"] = "customer";
242
- MetafieldScope["draft_order"] = "draft_order";
243
474
  MetafieldScope["location"] = "location";
244
475
  MetafieldScope["market"] = "market";
245
476
  MetafieldScope["order"] = "order";
@@ -257,33 +488,71 @@ var graphql_MetafieldSortKeys = /*#__PURE__*/ function(MetafieldSortKeys) {
257
488
  }({});
258
489
  var graphql_MetafieldType = /*#__PURE__*/ function(MetafieldType) {
259
490
  MetafieldType["article_ref"] = "article_ref";
260
- MetafieldType["audio"] = "audio";
261
491
  MetafieldType["blog_ref"] = "blog_ref";
262
492
  MetafieldType["boolean"] = "boolean";
263
493
  MetafieldType["collection_ref"] = "collection_ref";
264
494
  MetafieldType["color"] = "color";
265
495
  MetafieldType["date"] = "date";
266
496
  MetafieldType["date_time"] = "date_time";
267
- MetafieldType["dimension"] = "dimension";
268
- MetafieldType["file"] = "file";
269
- MetafieldType["float"] = "float";
270
- MetafieldType["image"] = "image";
271
- MetafieldType["integer"] = "integer";
272
- MetafieldType["json"] = "json";
273
- MetafieldType["meta_object_ref"] = "meta_object_ref";
274
- MetafieldType["money"] = "money";
497
+ MetafieldType["metaobject_ref"] = "metaobject_ref";
275
498
  MetafieldType["multiline_text"] = "multiline_text";
499
+ MetafieldType["number"] = "number";
276
500
  MetafieldType["page_ref"] = "page_ref";
277
501
  MetafieldType["product_ref"] = "product_ref";
278
- MetafieldType["rating"] = "rating";
279
- MetafieldType["rich_text"] = "rich_text";
280
502
  MetafieldType["single_line_text"] = "single_line_text";
281
- MetafieldType["url"] = "url";
282
503
  MetafieldType["variant_ref"] = "variant_ref";
283
- MetafieldType["video"] = "video";
284
- MetafieldType["weight"] = "weight";
285
504
  return MetafieldType;
286
505
  }({});
506
+ var graphql_MetaobjectEntrySortKeys = /*#__PURE__*/ function(MetaobjectEntrySortKeys) {
507
+ MetaobjectEntrySortKeys["_id"] = "_id";
508
+ MetaobjectEntrySortKeys["createdAt"] = "createdAt";
509
+ MetaobjectEntrySortKeys["metaobject"] = "metaobject";
510
+ MetaobjectEntrySortKeys["updatedAt"] = "updatedAt";
511
+ return MetaobjectEntrySortKeys;
512
+ }({});
513
+ var graphql_MetaobjectFieldType = /*#__PURE__*/ function(MetaobjectFieldType) {
514
+ MetaobjectFieldType["article_ref"] = "article_ref";
515
+ MetaobjectFieldType["blog_ref"] = "blog_ref";
516
+ MetaobjectFieldType["boolean"] = "boolean";
517
+ MetaobjectFieldType["collection_ref"] = "collection_ref";
518
+ MetaobjectFieldType["color"] = "color";
519
+ MetaobjectFieldType["date"] = "date";
520
+ MetaobjectFieldType["date_time"] = "date_time";
521
+ MetaobjectFieldType["multiline_text"] = "multiline_text";
522
+ MetaobjectFieldType["number"] = "number";
523
+ MetaobjectFieldType["page_ref"] = "page_ref";
524
+ MetaobjectFieldType["product_ref"] = "product_ref";
525
+ MetaobjectFieldType["single_line_text"] = "single_line_text";
526
+ MetaobjectFieldType["variant_ref"] = "variant_ref";
527
+ return MetaobjectFieldType;
528
+ }({});
529
+ var graphql_MetaobjectSortKeys = /*#__PURE__*/ function(MetaobjectSortKeys) {
530
+ MetaobjectSortKeys["_id"] = "_id";
531
+ MetaobjectSortKeys["createdAt"] = "createdAt";
532
+ MetaobjectSortKeys["is_public"] = "is_public";
533
+ MetaobjectSortKeys["name"] = "name";
534
+ MetaobjectSortKeys["updatedAt"] = "updatedAt";
535
+ return MetaobjectSortKeys;
536
+ }({});
537
+ var graphql_PageSortKeys = /*#__PURE__*/ function(PageSortKeys) {
538
+ PageSortKeys["_id"] = "_id";
539
+ PageSortKeys["blog"] = "blog";
540
+ PageSortKeys["createdAt"] = "createdAt";
541
+ PageSortKeys["status"] = "status";
542
+ PageSortKeys["title"] = "title";
543
+ PageSortKeys["updatedAt"] = "updatedAt";
544
+ return PageSortKeys;
545
+ }({});
546
+ var graphql_PageStatus = /*#__PURE__*/ function(PageStatus) {
547
+ PageStatus["active"] = "active";
548
+ PageStatus["draft"] = "draft";
549
+ return PageStatus;
550
+ }({});
551
+ var graphql_PayStoreInvoiceStatus = /*#__PURE__*/ function(PayStoreInvoiceStatus) {
552
+ PayStoreInvoiceStatus["paid"] = "paid";
553
+ PayStoreInvoiceStatus["pending"] = "pending";
554
+ return PayStoreInvoiceStatus;
555
+ }({});
287
556
  var graphql_PaymentChargeType = /*#__PURE__*/ function(PaymentChargeType) {
288
557
  PaymentChargeType["fixed"] = "fixed";
289
558
  PaymentChargeType["percentage"] = "percentage";
@@ -304,6 +573,36 @@ var graphql_PaymentType = /*#__PURE__*/ function(PaymentType) {
304
573
  PaymentType["manual"] = "manual";
305
574
  return PaymentType;
306
575
  }({});
576
+ var graphql_PickupProfileReadyIn = /*#__PURE__*/ function(PickupProfileReadyIn) {
577
+ PickupProfileReadyIn["fifteen_minutes"] = "fifteen_minutes";
578
+ PickupProfileReadyIn["five_days"] = "five_days";
579
+ PickupProfileReadyIn["five_minutes"] = "five_minutes";
580
+ PickupProfileReadyIn["four_days"] = "four_days";
581
+ PickupProfileReadyIn["one_day"] = "one_day";
582
+ PickupProfileReadyIn["one_hour"] = "one_hour";
583
+ PickupProfileReadyIn["one_week"] = "one_week";
584
+ PickupProfileReadyIn["six_days"] = "six_days";
585
+ PickupProfileReadyIn["six_hours"] = "six_hours";
586
+ PickupProfileReadyIn["ten_minutes"] = "ten_minutes";
587
+ PickupProfileReadyIn["thirty_minutes"] = "thirty_minutes";
588
+ PickupProfileReadyIn["three_days"] = "three_days";
589
+ PickupProfileReadyIn["three_hours"] = "three_hours";
590
+ PickupProfileReadyIn["twelve_hours"] = "twelve_hours";
591
+ PickupProfileReadyIn["two_days"] = "two_days";
592
+ PickupProfileReadyIn["two_hours"] = "two_hours";
593
+ return PickupProfileReadyIn;
594
+ }({});
595
+ var graphql_PickupProfileSortKeys = /*#__PURE__*/ function(PickupProfileSortKeys) {
596
+ PickupProfileSortKeys["_id"] = "_id";
597
+ PickupProfileSortKeys["createdAt"] = "createdAt";
598
+ PickupProfileSortKeys["instructions"] = "instructions";
599
+ PickupProfileSortKeys["name"] = "name";
600
+ PickupProfileSortKeys["origin"] = "origin";
601
+ PickupProfileSortKeys["price"] = "price";
602
+ PickupProfileSortKeys["ready_in"] = "ready_in";
603
+ PickupProfileSortKeys["updatedAt"] = "updatedAt";
604
+ return PickupProfileSortKeys;
605
+ }({});
307
606
  var graphql_PresetSortKeys = /*#__PURE__*/ function(PresetSortKeys) {
308
607
  PresetSortKeys["_id"] = "_id";
309
608
  PresetSortKeys["createdAt"] = "createdAt";
@@ -312,6 +611,8 @@ var graphql_PresetSortKeys = /*#__PURE__*/ function(PresetSortKeys) {
312
611
  }({});
313
612
  var graphql_PresetType = /*#__PURE__*/ function(PresetType) {
314
613
  PresetType["analytics"] = "analytics";
614
+ PresetType["articles"] = "articles";
615
+ PresetType["blogs"] = "blogs";
315
616
  PresetType["collections"] = "collections";
316
617
  PresetType["customers"] = "customers";
317
618
  PresetType["inventories"] = "inventories";
@@ -319,6 +620,7 @@ var graphql_PresetType = /*#__PURE__*/ function(PresetType) {
319
620
  PresetType["paginations"] = "paginations";
320
621
  PresetType["products"] = "products";
321
622
  PresetType["purchases"] = "purchases";
623
+ PresetType["suppliers"] = "suppliers";
322
624
  PresetType["transfers"] = "transfers";
323
625
  return PresetType;
324
626
  }({});
@@ -370,6 +672,27 @@ var graphql_RedirectSortKeys = /*#__PURE__*/ function(RedirectSortKeys) {
370
672
  RedirectSortKeys["updatedAt"] = "updatedAt";
371
673
  return RedirectSortKeys;
372
674
  }({});
675
+ var graphql_ShippingProfileSortKeys = /*#__PURE__*/ function(ShippingProfileSortKeys) {
676
+ ShippingProfileSortKeys["_id"] = "_id";
677
+ ShippingProfileSortKeys["createdAt"] = "createdAt";
678
+ ShippingProfileSortKeys["is_default"] = "is_default";
679
+ ShippingProfileSortKeys["name"] = "name";
680
+ ShippingProfileSortKeys["updatedAt"] = "updatedAt";
681
+ return ShippingProfileSortKeys;
682
+ }({});
683
+ var graphql_ShippingZoneRateConditionType = /*#__PURE__*/ function(ShippingZoneRateConditionType) {
684
+ ShippingZoneRateConditionType["price"] = "price";
685
+ ShippingZoneRateConditionType["weight"] = "weight";
686
+ return ShippingZoneRateConditionType;
687
+ }({});
688
+ var graphql_ShippingZoneSortKeys = /*#__PURE__*/ function(ShippingZoneSortKeys) {
689
+ ShippingZoneSortKeys["_id"] = "_id";
690
+ ShippingZoneSortKeys["createdAt"] = "createdAt";
691
+ ShippingZoneSortKeys["name"] = "name";
692
+ ShippingZoneSortKeys["profile"] = "profile";
693
+ ShippingZoneSortKeys["updatedAt"] = "updatedAt";
694
+ return ShippingZoneSortKeys;
695
+ }({});
373
696
  var graphql_StaffAppPermission = /*#__PURE__*/ function(StaffAppPermission) {
374
697
  StaffAppPermission["all"] = "all";
375
698
  StaffAppPermission["denied"] = "denied";
@@ -382,6 +705,43 @@ var graphql_StaffSortKeys = /*#__PURE__*/ function(StaffSortKeys) {
382
705
  StaffSortKeys["updatedAt"] = "updatedAt";
383
706
  return StaffSortKeys;
384
707
  }({});
708
+ var graphql_StoreInvoiceBeneficiary = /*#__PURE__*/ function(StoreInvoiceBeneficiary) {
709
+ StoreInvoiceBeneficiary["publisher"] = "publisher";
710
+ StoreInvoiceBeneficiary["soppiya"] = "soppiya";
711
+ return StoreInvoiceBeneficiary;
712
+ }({});
713
+ var graphql_StoreInvoicePaymentStatus = /*#__PURE__*/ function(StoreInvoicePaymentStatus) {
714
+ StoreInvoicePaymentStatus["paid"] = "paid";
715
+ StoreInvoicePaymentStatus["pending"] = "pending";
716
+ StoreInvoicePaymentStatus["refunded"] = "refunded";
717
+ return StoreInvoicePaymentStatus;
718
+ }({});
719
+ var graphql_StoreInvoiceRefundStatus = /*#__PURE__*/ function(StoreInvoiceRefundStatus) {
720
+ StoreInvoiceRefundStatus["appealed"] = "appealed";
721
+ StoreInvoiceRefundStatus["approved"] = "approved";
722
+ StoreInvoiceRefundStatus["none"] = "none";
723
+ StoreInvoiceRefundStatus["rejected"] = "rejected";
724
+ StoreInvoiceRefundStatus["requested"] = "requested";
725
+ StoreInvoiceRefundStatus["under_review"] = "under_review";
726
+ return StoreInvoiceRefundStatus;
727
+ }({});
728
+ var graphql_StoreInvoiceSortKeys = /*#__PURE__*/ function(StoreInvoiceSortKeys) {
729
+ StoreInvoiceSortKeys["_id"] = "_id";
730
+ StoreInvoiceSortKeys["beneficiary"] = "beneficiary";
731
+ StoreInvoiceSortKeys["createdAt"] = "createdAt";
732
+ StoreInvoiceSortKeys["payable"] = "payable";
733
+ StoreInvoiceSortKeys["payment_completed_at"] = "payment_completed_at";
734
+ StoreInvoiceSortKeys["payment_ref_id"] = "payment_ref_id";
735
+ StoreInvoiceSortKeys["payment_status"] = "payment_status";
736
+ StoreInvoiceSortKeys["payment_transaction_id"] = "payment_transaction_id";
737
+ StoreInvoiceSortKeys["publisher"] = "publisher";
738
+ StoreInvoiceSortKeys["refund_completed_at"] = "refund_completed_at";
739
+ StoreInvoiceSortKeys["refund_ref_id"] = "refund_ref_id";
740
+ StoreInvoiceSortKeys["refund_status"] = "refund_status";
741
+ StoreInvoiceSortKeys["refund_transaction_id"] = "refund_transaction_id";
742
+ StoreInvoiceSortKeys["updatedAt"] = "updatedAt";
743
+ return StoreInvoiceSortKeys;
744
+ }({});
385
745
  var graphql_StoreLengthUnit = /*#__PURE__*/ function(StoreLengthUnit) {
386
746
  StoreLengthUnit["ft"] = "ft";
387
747
  StoreLengthUnit["m"] = "m";
@@ -414,6 +774,25 @@ var graphql_SupplierSortKeys = /*#__PURE__*/ function(SupplierSortKeys) {
414
774
  SupplierSortKeys["updatedAt"] = "updatedAt";
415
775
  return SupplierSortKeys;
416
776
  }({});
777
+ var graphql_TaxOverrideLevel = /*#__PURE__*/ function(TaxOverrideLevel) {
778
+ TaxOverrideLevel["country"] = "country";
779
+ TaxOverrideLevel["region"] = "region";
780
+ return TaxOverrideLevel;
781
+ }({});
782
+ var graphql_TaxOverrideType = /*#__PURE__*/ function(TaxOverrideType) {
783
+ TaxOverrideType["collection"] = "collection";
784
+ TaxOverrideType["shipping"] = "shipping";
785
+ return TaxOverrideType;
786
+ }({});
787
+ var graphql_TaxSortKeys = /*#__PURE__*/ function(TaxSortKeys) {
788
+ TaxSortKeys["_id"] = "_id";
789
+ TaxSortKeys["country"] = "country";
790
+ TaxSortKeys["createdAt"] = "createdAt";
791
+ TaxSortKeys["name"] = "name";
792
+ TaxSortKeys["rate"] = "rate";
793
+ TaxSortKeys["updatedAt"] = "updatedAt";
794
+ return TaxSortKeys;
795
+ }({});
417
796
  var graphql_graphql_ThemeSortKeys = /*#__PURE__*/ function(ThemeSortKeys) {
418
797
  ThemeSortKeys["_id"] = "_id";
419
798
  ThemeSortKeys["createdAt"] = "createdAt";
@@ -607,7 +986,7 @@ var graphql_EditThemeTemplateType = /*#__PURE__*/ function(EditThemeTemplateType
607
986
  EditThemeTemplateType["temporary"] = "temporary";
608
987
  return EditThemeTemplateType;
609
988
  }({});
610
- const MediasDocument = {
989
+ const ArticlesDocument = {
611
990
  kind: "Document",
612
991
  definitions: [
613
992
  {
@@ -615,7 +994,7 @@ const MediasDocument = {
615
994
  operation: "query",
616
995
  name: {
617
996
  kind: "Name",
618
- value: "Medias"
997
+ value: "Articles"
619
998
  },
620
999
  variableDefinitions: [
621
1000
  {
@@ -624,14 +1003,14 @@ const MediasDocument = {
624
1003
  kind: "Variable",
625
1004
  name: {
626
1005
  kind: "Name",
627
- value: "after"
1006
+ value: "filterKeys"
628
1007
  }
629
1008
  },
630
1009
  type: {
631
1010
  kind: "NamedType",
632
1011
  name: {
633
1012
  kind: "Name",
634
- value: "ID"
1013
+ value: "ArticleFilterKeys"
635
1014
  }
636
1015
  }
637
1016
  },
@@ -641,7 +1020,7 @@ const MediasDocument = {
641
1020
  kind: "Variable",
642
1021
  name: {
643
1022
  kind: "Name",
644
- value: "before"
1023
+ value: "after"
645
1024
  }
646
1025
  },
647
1026
  type: {
@@ -658,14 +1037,14 @@ const MediasDocument = {
658
1037
  kind: "Variable",
659
1038
  name: {
660
1039
  kind: "Name",
661
- value: "first"
1040
+ value: "before"
662
1041
  }
663
1042
  },
664
1043
  type: {
665
1044
  kind: "NamedType",
666
1045
  name: {
667
1046
  kind: "Name",
668
- value: "Int"
1047
+ value: "ID"
669
1048
  }
670
1049
  }
671
1050
  },
@@ -675,7 +1054,7 @@ const MediasDocument = {
675
1054
  kind: "Variable",
676
1055
  name: {
677
1056
  kind: "Name",
678
- value: "last"
1057
+ value: "first"
679
1058
  }
680
1059
  },
681
1060
  type: {
@@ -692,48 +1071,14 @@ const MediasDocument = {
692
1071
  kind: "Variable",
693
1072
  name: {
694
1073
  kind: "Name",
695
- value: "query"
696
- }
697
- },
698
- type: {
699
- kind: "NamedType",
700
- name: {
701
- kind: "Name",
702
- value: "String"
703
- }
704
- }
705
- },
706
- {
707
- kind: "VariableDefinition",
708
- variable: {
709
- kind: "Variable",
710
- name: {
711
- kind: "Name",
712
- value: "reverse"
713
- }
714
- },
715
- type: {
716
- kind: "NamedType",
717
- name: {
718
- kind: "Name",
719
- value: "Boolean"
720
- }
721
- }
722
- },
723
- {
724
- kind: "VariableDefinition",
725
- variable: {
726
- kind: "Variable",
727
- name: {
728
- kind: "Name",
729
- value: "sortKey"
1074
+ value: "last"
730
1075
  }
731
1076
  },
732
1077
  type: {
733
1078
  kind: "NamedType",
734
1079
  name: {
735
1080
  kind: "Name",
736
- value: "MediaSortKeys"
1081
+ value: "Int"
737
1082
  }
738
1083
  }
739
1084
  },
@@ -743,14 +1088,14 @@ const MediasDocument = {
743
1088
  kind: "Variable",
744
1089
  name: {
745
1090
  kind: "Name",
746
- value: "filterKeys"
1091
+ value: "query"
747
1092
  }
748
1093
  },
749
1094
  type: {
750
1095
  kind: "NamedType",
751
1096
  name: {
752
1097
  kind: "Name",
753
- value: "MediaFilterKeys"
1098
+ value: "String"
754
1099
  }
755
1100
  }
756
1101
  }
@@ -762,48 +1107,20 @@ const MediasDocument = {
762
1107
  kind: "Field",
763
1108
  name: {
764
1109
  kind: "Name",
765
- value: "medias"
1110
+ value: "articles"
766
1111
  },
767
1112
  arguments: [
768
1113
  {
769
1114
  kind: "Argument",
770
1115
  name: {
771
1116
  kind: "Name",
772
- value: "after"
773
- },
774
- value: {
775
- kind: "Variable",
776
- name: {
777
- kind: "Name",
778
- value: "after"
779
- }
780
- }
781
- },
782
- {
783
- kind: "Argument",
784
- name: {
785
- kind: "Name",
786
- value: "before"
787
- },
788
- value: {
789
- kind: "Variable",
790
- name: {
791
- kind: "Name",
792
- value: "before"
793
- }
794
- }
795
- },
796
- {
797
- kind: "Argument",
798
- name: {
799
- kind: "Name",
800
- value: "first"
1117
+ value: "filterKeys"
801
1118
  },
802
1119
  value: {
803
1120
  kind: "Variable",
804
1121
  name: {
805
1122
  kind: "Name",
806
- value: "first"
1123
+ value: "filterKeys"
807
1124
  }
808
1125
  }
809
1126
  },
@@ -811,13 +1128,13 @@ const MediasDocument = {
811
1128
  kind: "Argument",
812
1129
  name: {
813
1130
  kind: "Name",
814
- value: "last"
1131
+ value: "after"
815
1132
  },
816
1133
  value: {
817
1134
  kind: "Variable",
818
1135
  name: {
819
1136
  kind: "Name",
820
- value: "last"
1137
+ value: "after"
821
1138
  }
822
1139
  }
823
1140
  },
@@ -825,13 +1142,13 @@ const MediasDocument = {
825
1142
  kind: "Argument",
826
1143
  name: {
827
1144
  kind: "Name",
828
- value: "query"
1145
+ value: "before"
829
1146
  },
830
1147
  value: {
831
1148
  kind: "Variable",
832
1149
  name: {
833
1150
  kind: "Name",
834
- value: "query"
1151
+ value: "before"
835
1152
  }
836
1153
  }
837
1154
  },
@@ -839,13 +1156,13 @@ const MediasDocument = {
839
1156
  kind: "Argument",
840
1157
  name: {
841
1158
  kind: "Name",
842
- value: "reverse"
1159
+ value: "first"
843
1160
  },
844
1161
  value: {
845
1162
  kind: "Variable",
846
1163
  name: {
847
1164
  kind: "Name",
848
- value: "reverse"
1165
+ value: "first"
849
1166
  }
850
1167
  }
851
1168
  },
@@ -853,13 +1170,13 @@ const MediasDocument = {
853
1170
  kind: "Argument",
854
1171
  name: {
855
1172
  kind: "Name",
856
- value: "sortKey"
1173
+ value: "last"
857
1174
  },
858
1175
  value: {
859
1176
  kind: "Variable",
860
1177
  name: {
861
1178
  kind: "Name",
862
- value: "sortKey"
1179
+ value: "last"
863
1180
  }
864
1181
  }
865
1182
  },
@@ -867,13 +1184,13 @@ const MediasDocument = {
867
1184
  kind: "Argument",
868
1185
  name: {
869
1186
  kind: "Name",
870
- value: "filterKeys"
1187
+ value: "query"
871
1188
  },
872
1189
  value: {
873
1190
  kind: "Variable",
874
1191
  name: {
875
1192
  kind: "Name",
876
- value: "filterKeys"
1193
+ value: "query"
877
1194
  }
878
1195
  }
879
1196
  }
@@ -910,35 +1227,33 @@ const MediasDocument = {
910
1227
  kind: "Field",
911
1228
  name: {
912
1229
  kind: "Name",
913
- value: "file_name"
914
- }
915
- },
916
- {
917
- kind: "Field",
918
- name: {
919
- kind: "Name",
920
- value: "url"
921
- }
922
- },
923
- {
924
- kind: "Field",
925
- name: {
926
- kind: "Name",
927
- value: "size"
928
- }
929
- },
930
- {
931
- kind: "Field",
932
- name: {
933
- kind: "Name",
934
- value: "type"
1230
+ value: "title"
935
1231
  }
936
1232
  },
937
1233
  {
938
1234
  kind: "Field",
939
1235
  name: {
940
1236
  kind: "Name",
941
- value: "mimetype"
1237
+ value: "image"
1238
+ },
1239
+ selectionSet: {
1240
+ kind: "SelectionSet",
1241
+ selections: [
1242
+ {
1243
+ kind: "Field",
1244
+ name: {
1245
+ kind: "Name",
1246
+ value: "_id"
1247
+ }
1248
+ },
1249
+ {
1250
+ kind: "Field",
1251
+ name: {
1252
+ kind: "Name",
1253
+ value: "url"
1254
+ }
1255
+ }
1256
+ ]
942
1257
  }
943
1258
  }
944
1259
  ]
@@ -995,7 +1310,7 @@ const MediasDocument = {
995
1310
  }
996
1311
  ]
997
1312
  };
998
- const StoragePlanDocument = {
1313
+ const BlogsDocument = {
999
1314
  kind: "Document",
1000
1315
  definitions: [
1001
1316
  {
@@ -1003,109 +1318,1154 @@ const StoragePlanDocument = {
1003
1318
  operation: "query",
1004
1319
  name: {
1005
1320
  kind: "Name",
1006
- value: "StoragePlan"
1321
+ value: "Blogs"
1007
1322
  },
1008
- selectionSet: {
1009
- kind: "SelectionSet",
1010
- selections: [
1011
- {
1012
- kind: "Field",
1323
+ variableDefinitions: [
1324
+ {
1325
+ kind: "VariableDefinition",
1326
+ variable: {
1327
+ kind: "Variable",
1013
1328
  name: {
1014
1329
  kind: "Name",
1015
- value: "plan"
1016
- },
1017
- selectionSet: {
1018
- kind: "SelectionSet",
1019
- selections: [
1020
- {
1021
- kind: "Field",
1022
- name: {
1023
- kind: "Name",
1024
- value: "storage"
1025
- }
1026
- },
1027
- {
1028
- kind: "Field",
1029
- name: {
1030
- kind: "Name",
1031
- value: "package"
1032
- },
1033
- selectionSet: {
1034
- kind: "SelectionSet",
1035
- selections: [
1036
- {
1037
- kind: "Field",
1038
- name: {
1039
- kind: "Name",
1040
- value: "_id"
1041
- }
1042
- },
1043
- {
1044
- kind: "Field",
1045
- name: {
1046
- kind: "Name",
1047
- value: "storage"
1048
- }
1049
- }
1050
- ]
1051
- }
1052
- }
1053
- ]
1330
+ value: "filterKeys"
1054
1331
  }
1055
- }
1056
- ]
1057
- }
1058
- }
1059
- ]
1060
- };
1061
- const MediaUsageDocument = {
1062
- kind: "Document",
1063
- definitions: [
1064
- {
1065
- kind: "OperationDefinition",
1066
- operation: "query",
1067
- name: {
1068
- kind: "Name",
1069
- value: "MediaUsage"
1070
- },
1071
- selectionSet: {
1072
- kind: "SelectionSet",
1073
- selections: [
1074
- {
1075
- kind: "Field",
1332
+ },
1333
+ type: {
1334
+ kind: "NamedType",
1076
1335
  name: {
1077
1336
  kind: "Name",
1078
- value: "mediaUsage"
1337
+ value: "BlogFilterKeys"
1079
1338
  }
1080
1339
  }
1081
- ]
1082
- }
1083
- }
1084
- ]
1085
- };
1086
- const AddMediasDocument = {
1087
- kind: "Document",
1088
- definitions: [
1089
- {
1090
- kind: "OperationDefinition",
1091
- operation: "mutation",
1092
- name: {
1093
- kind: "Name",
1094
- value: "AddMedias"
1095
- },
1096
- variableDefinitions: [
1340
+ },
1097
1341
  {
1098
1342
  kind: "VariableDefinition",
1099
1343
  variable: {
1100
1344
  kind: "Variable",
1101
1345
  name: {
1102
1346
  kind: "Name",
1103
- value: "input"
1347
+ value: "after"
1104
1348
  }
1105
1349
  },
1106
1350
  type: {
1107
- kind: "NonNullType",
1108
- type: {
1351
+ kind: "NamedType",
1352
+ name: {
1353
+ kind: "Name",
1354
+ value: "ID"
1355
+ }
1356
+ }
1357
+ },
1358
+ {
1359
+ kind: "VariableDefinition",
1360
+ variable: {
1361
+ kind: "Variable",
1362
+ name: {
1363
+ kind: "Name",
1364
+ value: "before"
1365
+ }
1366
+ },
1367
+ type: {
1368
+ kind: "NamedType",
1369
+ name: {
1370
+ kind: "Name",
1371
+ value: "ID"
1372
+ }
1373
+ }
1374
+ },
1375
+ {
1376
+ kind: "VariableDefinition",
1377
+ variable: {
1378
+ kind: "Variable",
1379
+ name: {
1380
+ kind: "Name",
1381
+ value: "first"
1382
+ }
1383
+ },
1384
+ type: {
1385
+ kind: "NamedType",
1386
+ name: {
1387
+ kind: "Name",
1388
+ value: "Int"
1389
+ }
1390
+ }
1391
+ },
1392
+ {
1393
+ kind: "VariableDefinition",
1394
+ variable: {
1395
+ kind: "Variable",
1396
+ name: {
1397
+ kind: "Name",
1398
+ value: "last"
1399
+ }
1400
+ },
1401
+ type: {
1402
+ kind: "NamedType",
1403
+ name: {
1404
+ kind: "Name",
1405
+ value: "Int"
1406
+ }
1407
+ }
1408
+ },
1409
+ {
1410
+ kind: "VariableDefinition",
1411
+ variable: {
1412
+ kind: "Variable",
1413
+ name: {
1414
+ kind: "Name",
1415
+ value: "query"
1416
+ }
1417
+ },
1418
+ type: {
1419
+ kind: "NamedType",
1420
+ name: {
1421
+ kind: "Name",
1422
+ value: "String"
1423
+ }
1424
+ }
1425
+ }
1426
+ ],
1427
+ selectionSet: {
1428
+ kind: "SelectionSet",
1429
+ selections: [
1430
+ {
1431
+ kind: "Field",
1432
+ name: {
1433
+ kind: "Name",
1434
+ value: "blogs"
1435
+ },
1436
+ arguments: [
1437
+ {
1438
+ kind: "Argument",
1439
+ name: {
1440
+ kind: "Name",
1441
+ value: "filterKeys"
1442
+ },
1443
+ value: {
1444
+ kind: "Variable",
1445
+ name: {
1446
+ kind: "Name",
1447
+ value: "filterKeys"
1448
+ }
1449
+ }
1450
+ },
1451
+ {
1452
+ kind: "Argument",
1453
+ name: {
1454
+ kind: "Name",
1455
+ value: "after"
1456
+ },
1457
+ value: {
1458
+ kind: "Variable",
1459
+ name: {
1460
+ kind: "Name",
1461
+ value: "after"
1462
+ }
1463
+ }
1464
+ },
1465
+ {
1466
+ kind: "Argument",
1467
+ name: {
1468
+ kind: "Name",
1469
+ value: "before"
1470
+ },
1471
+ value: {
1472
+ kind: "Variable",
1473
+ name: {
1474
+ kind: "Name",
1475
+ value: "before"
1476
+ }
1477
+ }
1478
+ },
1479
+ {
1480
+ kind: "Argument",
1481
+ name: {
1482
+ kind: "Name",
1483
+ value: "first"
1484
+ },
1485
+ value: {
1486
+ kind: "Variable",
1487
+ name: {
1488
+ kind: "Name",
1489
+ value: "first"
1490
+ }
1491
+ }
1492
+ },
1493
+ {
1494
+ kind: "Argument",
1495
+ name: {
1496
+ kind: "Name",
1497
+ value: "last"
1498
+ },
1499
+ value: {
1500
+ kind: "Variable",
1501
+ name: {
1502
+ kind: "Name",
1503
+ value: "last"
1504
+ }
1505
+ }
1506
+ },
1507
+ {
1508
+ kind: "Argument",
1509
+ name: {
1510
+ kind: "Name",
1511
+ value: "query"
1512
+ },
1513
+ value: {
1514
+ kind: "Variable",
1515
+ name: {
1516
+ kind: "Name",
1517
+ value: "query"
1518
+ }
1519
+ }
1520
+ }
1521
+ ],
1522
+ selectionSet: {
1523
+ kind: "SelectionSet",
1524
+ selections: [
1525
+ {
1526
+ kind: "Field",
1527
+ name: {
1528
+ kind: "Name",
1529
+ value: "pageInfo"
1530
+ },
1531
+ selectionSet: {
1532
+ kind: "SelectionSet",
1533
+ selections: [
1534
+ {
1535
+ kind: "Field",
1536
+ name: {
1537
+ kind: "Name",
1538
+ value: "endCursor"
1539
+ }
1540
+ },
1541
+ {
1542
+ kind: "Field",
1543
+ name: {
1544
+ kind: "Name",
1545
+ value: "hasNextPage"
1546
+ }
1547
+ },
1548
+ {
1549
+ kind: "Field",
1550
+ name: {
1551
+ kind: "Name",
1552
+ value: "hasPreviousPage"
1553
+ }
1554
+ },
1555
+ {
1556
+ kind: "Field",
1557
+ name: {
1558
+ kind: "Name",
1559
+ value: "startCursor"
1560
+ }
1561
+ }
1562
+ ]
1563
+ }
1564
+ },
1565
+ {
1566
+ kind: "Field",
1567
+ name: {
1568
+ kind: "Name",
1569
+ value: "edges"
1570
+ },
1571
+ selectionSet: {
1572
+ kind: "SelectionSet",
1573
+ selections: [
1574
+ {
1575
+ kind: "Field",
1576
+ name: {
1577
+ kind: "Name",
1578
+ value: "node"
1579
+ },
1580
+ selectionSet: {
1581
+ kind: "SelectionSet",
1582
+ selections: [
1583
+ {
1584
+ kind: "Field",
1585
+ name: {
1586
+ kind: "Name",
1587
+ value: "_id"
1588
+ }
1589
+ },
1590
+ {
1591
+ kind: "Field",
1592
+ name: {
1593
+ kind: "Name",
1594
+ value: "title"
1595
+ }
1596
+ },
1597
+ {
1598
+ kind: "Field",
1599
+ name: {
1600
+ kind: "Name",
1601
+ value: "image"
1602
+ },
1603
+ selectionSet: {
1604
+ kind: "SelectionSet",
1605
+ selections: [
1606
+ {
1607
+ kind: "Field",
1608
+ name: {
1609
+ kind: "Name",
1610
+ value: "_id"
1611
+ }
1612
+ },
1613
+ {
1614
+ kind: "Field",
1615
+ name: {
1616
+ kind: "Name",
1617
+ value: "url"
1618
+ }
1619
+ }
1620
+ ]
1621
+ }
1622
+ }
1623
+ ]
1624
+ }
1625
+ }
1626
+ ]
1627
+ }
1628
+ }
1629
+ ]
1630
+ }
1631
+ }
1632
+ ]
1633
+ }
1634
+ }
1635
+ ]
1636
+ };
1637
+ const CollectionsDocument = {
1638
+ kind: "Document",
1639
+ definitions: [
1640
+ {
1641
+ kind: "OperationDefinition",
1642
+ operation: "query",
1643
+ name: {
1644
+ kind: "Name",
1645
+ value: "Collections"
1646
+ },
1647
+ variableDefinitions: [
1648
+ {
1649
+ kind: "VariableDefinition",
1650
+ variable: {
1651
+ kind: "Variable",
1652
+ name: {
1653
+ kind: "Name",
1654
+ value: "skip"
1655
+ }
1656
+ },
1657
+ type: {
1658
+ kind: "NamedType",
1659
+ name: {
1660
+ kind: "Name",
1661
+ value: "Int"
1662
+ }
1663
+ }
1664
+ },
1665
+ {
1666
+ kind: "VariableDefinition",
1667
+ variable: {
1668
+ kind: "Variable",
1669
+ name: {
1670
+ kind: "Name",
1671
+ value: "filterKeys"
1672
+ }
1673
+ },
1674
+ type: {
1675
+ kind: "NamedType",
1676
+ name: {
1677
+ kind: "Name",
1678
+ value: "CollectionFilterKeys"
1679
+ }
1680
+ }
1681
+ },
1682
+ {
1683
+ kind: "VariableDefinition",
1684
+ variable: {
1685
+ kind: "Variable",
1686
+ name: {
1687
+ kind: "Name",
1688
+ value: "query"
1689
+ }
1690
+ },
1691
+ type: {
1692
+ kind: "NamedType",
1693
+ name: {
1694
+ kind: "Name",
1695
+ value: "String"
1696
+ }
1697
+ }
1698
+ }
1699
+ ],
1700
+ selectionSet: {
1701
+ kind: "SelectionSet",
1702
+ selections: [
1703
+ {
1704
+ kind: "Field",
1705
+ name: {
1706
+ kind: "Name",
1707
+ value: "collections"
1708
+ },
1709
+ arguments: [
1710
+ {
1711
+ kind: "Argument",
1712
+ name: {
1713
+ kind: "Name",
1714
+ value: "skip"
1715
+ },
1716
+ value: {
1717
+ kind: "Variable",
1718
+ name: {
1719
+ kind: "Name",
1720
+ value: "skip"
1721
+ }
1722
+ }
1723
+ },
1724
+ {
1725
+ kind: "Argument",
1726
+ name: {
1727
+ kind: "Name",
1728
+ value: "filterKeys"
1729
+ },
1730
+ value: {
1731
+ kind: "Variable",
1732
+ name: {
1733
+ kind: "Name",
1734
+ value: "filterKeys"
1735
+ }
1736
+ }
1737
+ },
1738
+ {
1739
+ kind: "Argument",
1740
+ name: {
1741
+ kind: "Name",
1742
+ value: "query"
1743
+ },
1744
+ value: {
1745
+ kind: "Variable",
1746
+ name: {
1747
+ kind: "Name",
1748
+ value: "query"
1749
+ }
1750
+ }
1751
+ }
1752
+ ],
1753
+ selectionSet: {
1754
+ kind: "SelectionSet",
1755
+ selections: [
1756
+ {
1757
+ kind: "Field",
1758
+ name: {
1759
+ kind: "Name",
1760
+ value: "edges"
1761
+ },
1762
+ selectionSet: {
1763
+ kind: "SelectionSet",
1764
+ selections: [
1765
+ {
1766
+ kind: "Field",
1767
+ name: {
1768
+ kind: "Name",
1769
+ value: "node"
1770
+ },
1771
+ selectionSet: {
1772
+ kind: "SelectionSet",
1773
+ selections: [
1774
+ {
1775
+ kind: "Field",
1776
+ name: {
1777
+ kind: "Name",
1778
+ value: "_id"
1779
+ }
1780
+ },
1781
+ {
1782
+ kind: "Field",
1783
+ name: {
1784
+ kind: "Name",
1785
+ value: "title"
1786
+ }
1787
+ },
1788
+ {
1789
+ kind: "Field",
1790
+ name: {
1791
+ kind: "Name",
1792
+ value: "image"
1793
+ },
1794
+ selectionSet: {
1795
+ kind: "SelectionSet",
1796
+ selections: [
1797
+ {
1798
+ kind: "Field",
1799
+ name: {
1800
+ kind: "Name",
1801
+ value: "_id"
1802
+ }
1803
+ },
1804
+ {
1805
+ kind: "Field",
1806
+ name: {
1807
+ kind: "Name",
1808
+ value: "url"
1809
+ }
1810
+ }
1811
+ ]
1812
+ }
1813
+ }
1814
+ ]
1815
+ }
1816
+ }
1817
+ ]
1818
+ }
1819
+ },
1820
+ {
1821
+ kind: "Field",
1822
+ name: {
1823
+ kind: "Name",
1824
+ value: "pageInfo"
1825
+ },
1826
+ selectionSet: {
1827
+ kind: "SelectionSet",
1828
+ selections: [
1829
+ {
1830
+ kind: "Field",
1831
+ name: {
1832
+ kind: "Name",
1833
+ value: "endCursor"
1834
+ }
1835
+ },
1836
+ {
1837
+ kind: "Field",
1838
+ name: {
1839
+ kind: "Name",
1840
+ value: "hasNextPage"
1841
+ }
1842
+ },
1843
+ {
1844
+ kind: "Field",
1845
+ name: {
1846
+ kind: "Name",
1847
+ value: "hasPreviousPage"
1848
+ }
1849
+ },
1850
+ {
1851
+ kind: "Field",
1852
+ name: {
1853
+ kind: "Name",
1854
+ value: "startCursor"
1855
+ }
1856
+ }
1857
+ ]
1858
+ }
1859
+ }
1860
+ ]
1861
+ }
1862
+ }
1863
+ ]
1864
+ }
1865
+ }
1866
+ ]
1867
+ };
1868
+ const MediasDocument = {
1869
+ kind: "Document",
1870
+ definitions: [
1871
+ {
1872
+ kind: "OperationDefinition",
1873
+ operation: "query",
1874
+ name: {
1875
+ kind: "Name",
1876
+ value: "Medias"
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: "reverse"
1971
+ }
1972
+ },
1973
+ type: {
1974
+ kind: "NamedType",
1975
+ name: {
1976
+ kind: "Name",
1977
+ value: "Boolean"
1978
+ }
1979
+ }
1980
+ },
1981
+ {
1982
+ kind: "VariableDefinition",
1983
+ variable: {
1984
+ kind: "Variable",
1985
+ name: {
1986
+ kind: "Name",
1987
+ value: "sortKey"
1988
+ }
1989
+ },
1990
+ type: {
1991
+ kind: "NamedType",
1992
+ name: {
1993
+ kind: "Name",
1994
+ value: "MediaSortKeys"
1995
+ }
1996
+ }
1997
+ },
1998
+ {
1999
+ kind: "VariableDefinition",
2000
+ variable: {
2001
+ kind: "Variable",
2002
+ name: {
2003
+ kind: "Name",
2004
+ value: "filterKeys"
2005
+ }
2006
+ },
2007
+ type: {
2008
+ kind: "NamedType",
2009
+ name: {
2010
+ kind: "Name",
2011
+ value: "MediaFilterKeys"
2012
+ }
2013
+ }
2014
+ }
2015
+ ],
2016
+ selectionSet: {
2017
+ kind: "SelectionSet",
2018
+ selections: [
2019
+ {
2020
+ kind: "Field",
2021
+ name: {
2022
+ kind: "Name",
2023
+ value: "medias"
2024
+ },
2025
+ arguments: [
2026
+ {
2027
+ kind: "Argument",
2028
+ name: {
2029
+ kind: "Name",
2030
+ value: "after"
2031
+ },
2032
+ value: {
2033
+ kind: "Variable",
2034
+ name: {
2035
+ kind: "Name",
2036
+ value: "after"
2037
+ }
2038
+ }
2039
+ },
2040
+ {
2041
+ kind: "Argument",
2042
+ name: {
2043
+ kind: "Name",
2044
+ value: "before"
2045
+ },
2046
+ value: {
2047
+ kind: "Variable",
2048
+ name: {
2049
+ kind: "Name",
2050
+ value: "before"
2051
+ }
2052
+ }
2053
+ },
2054
+ {
2055
+ kind: "Argument",
2056
+ name: {
2057
+ kind: "Name",
2058
+ value: "first"
2059
+ },
2060
+ value: {
2061
+ kind: "Variable",
2062
+ name: {
2063
+ kind: "Name",
2064
+ value: "first"
2065
+ }
2066
+ }
2067
+ },
2068
+ {
2069
+ kind: "Argument",
2070
+ name: {
2071
+ kind: "Name",
2072
+ value: "last"
2073
+ },
2074
+ value: {
2075
+ kind: "Variable",
2076
+ name: {
2077
+ kind: "Name",
2078
+ value: "last"
2079
+ }
2080
+ }
2081
+ },
2082
+ {
2083
+ kind: "Argument",
2084
+ name: {
2085
+ kind: "Name",
2086
+ value: "query"
2087
+ },
2088
+ value: {
2089
+ kind: "Variable",
2090
+ name: {
2091
+ kind: "Name",
2092
+ value: "query"
2093
+ }
2094
+ }
2095
+ },
2096
+ {
2097
+ kind: "Argument",
2098
+ name: {
2099
+ kind: "Name",
2100
+ value: "reverse"
2101
+ },
2102
+ value: {
2103
+ kind: "Variable",
2104
+ name: {
2105
+ kind: "Name",
2106
+ value: "reverse"
2107
+ }
2108
+ }
2109
+ },
2110
+ {
2111
+ kind: "Argument",
2112
+ name: {
2113
+ kind: "Name",
2114
+ value: "sortKey"
2115
+ },
2116
+ value: {
2117
+ kind: "Variable",
2118
+ name: {
2119
+ kind: "Name",
2120
+ value: "sortKey"
2121
+ }
2122
+ }
2123
+ },
2124
+ {
2125
+ kind: "Argument",
2126
+ name: {
2127
+ kind: "Name",
2128
+ value: "filterKeys"
2129
+ },
2130
+ value: {
2131
+ kind: "Variable",
2132
+ name: {
2133
+ kind: "Name",
2134
+ value: "filterKeys"
2135
+ }
2136
+ }
2137
+ }
2138
+ ],
2139
+ selectionSet: {
2140
+ kind: "SelectionSet",
2141
+ selections: [
2142
+ {
2143
+ kind: "Field",
2144
+ name: {
2145
+ kind: "Name",
2146
+ value: "edges"
2147
+ },
2148
+ selectionSet: {
2149
+ kind: "SelectionSet",
2150
+ selections: [
2151
+ {
2152
+ kind: "Field",
2153
+ name: {
2154
+ kind: "Name",
2155
+ value: "node"
2156
+ },
2157
+ selectionSet: {
2158
+ kind: "SelectionSet",
2159
+ selections: [
2160
+ {
2161
+ kind: "Field",
2162
+ name: {
2163
+ kind: "Name",
2164
+ value: "_id"
2165
+ }
2166
+ },
2167
+ {
2168
+ kind: "Field",
2169
+ name: {
2170
+ kind: "Name",
2171
+ value: "file_name"
2172
+ }
2173
+ },
2174
+ {
2175
+ kind: "Field",
2176
+ name: {
2177
+ kind: "Name",
2178
+ value: "url"
2179
+ }
2180
+ },
2181
+ {
2182
+ kind: "Field",
2183
+ name: {
2184
+ kind: "Name",
2185
+ value: "size"
2186
+ }
2187
+ },
2188
+ {
2189
+ kind: "Field",
2190
+ name: {
2191
+ kind: "Name",
2192
+ value: "type"
2193
+ }
2194
+ },
2195
+ {
2196
+ kind: "Field",
2197
+ name: {
2198
+ kind: "Name",
2199
+ value: "mimetype"
2200
+ }
2201
+ }
2202
+ ]
2203
+ }
2204
+ }
2205
+ ]
2206
+ }
2207
+ },
2208
+ {
2209
+ kind: "Field",
2210
+ name: {
2211
+ kind: "Name",
2212
+ value: "pageInfo"
2213
+ },
2214
+ selectionSet: {
2215
+ kind: "SelectionSet",
2216
+ selections: [
2217
+ {
2218
+ kind: "Field",
2219
+ name: {
2220
+ kind: "Name",
2221
+ value: "endCursor"
2222
+ }
2223
+ },
2224
+ {
2225
+ kind: "Field",
2226
+ name: {
2227
+ kind: "Name",
2228
+ value: "hasNextPage"
2229
+ }
2230
+ },
2231
+ {
2232
+ kind: "Field",
2233
+ name: {
2234
+ kind: "Name",
2235
+ value: "hasPreviousPage"
2236
+ }
2237
+ },
2238
+ {
2239
+ kind: "Field",
2240
+ name: {
2241
+ kind: "Name",
2242
+ value: "startCursor"
2243
+ }
2244
+ }
2245
+ ]
2246
+ }
2247
+ }
2248
+ ]
2249
+ }
2250
+ }
2251
+ ]
2252
+ }
2253
+ }
2254
+ ]
2255
+ };
2256
+ const StoragePlanDocument = {
2257
+ kind: "Document",
2258
+ definitions: [
2259
+ {
2260
+ kind: "OperationDefinition",
2261
+ operation: "query",
2262
+ name: {
2263
+ kind: "Name",
2264
+ value: "StoragePlan"
2265
+ },
2266
+ selectionSet: {
2267
+ kind: "SelectionSet",
2268
+ selections: [
2269
+ {
2270
+ kind: "Field",
2271
+ name: {
2272
+ kind: "Name",
2273
+ value: "plan"
2274
+ },
2275
+ selectionSet: {
2276
+ kind: "SelectionSet",
2277
+ selections: [
2278
+ {
2279
+ kind: "Field",
2280
+ name: {
2281
+ kind: "Name",
2282
+ value: "storage"
2283
+ }
2284
+ },
2285
+ {
2286
+ kind: "Field",
2287
+ name: {
2288
+ kind: "Name",
2289
+ value: "package"
2290
+ },
2291
+ selectionSet: {
2292
+ kind: "SelectionSet",
2293
+ selections: [
2294
+ {
2295
+ kind: "Field",
2296
+ name: {
2297
+ kind: "Name",
2298
+ value: "_id"
2299
+ }
2300
+ },
2301
+ {
2302
+ kind: "Field",
2303
+ name: {
2304
+ kind: "Name",
2305
+ value: "storage"
2306
+ }
2307
+ }
2308
+ ]
2309
+ }
2310
+ }
2311
+ ]
2312
+ }
2313
+ }
2314
+ ]
2315
+ }
2316
+ }
2317
+ ]
2318
+ };
2319
+ const MediaUsageDocument = {
2320
+ kind: "Document",
2321
+ definitions: [
2322
+ {
2323
+ kind: "OperationDefinition",
2324
+ operation: "query",
2325
+ name: {
2326
+ kind: "Name",
2327
+ value: "MediaUsage"
2328
+ },
2329
+ selectionSet: {
2330
+ kind: "SelectionSet",
2331
+ selections: [
2332
+ {
2333
+ kind: "Field",
2334
+ name: {
2335
+ kind: "Name",
2336
+ value: "mediaUsage"
2337
+ }
2338
+ }
2339
+ ]
2340
+ }
2341
+ }
2342
+ ]
2343
+ };
2344
+ const AddMediasDocument = {
2345
+ kind: "Document",
2346
+ definitions: [
2347
+ {
2348
+ kind: "OperationDefinition",
2349
+ operation: "mutation",
2350
+ name: {
2351
+ kind: "Name",
2352
+ value: "AddMedias"
2353
+ },
2354
+ variableDefinitions: [
2355
+ {
2356
+ kind: "VariableDefinition",
2357
+ variable: {
2358
+ kind: "Variable",
2359
+ name: {
2360
+ kind: "Name",
2361
+ value: "input"
2362
+ }
2363
+ },
2364
+ type: {
2365
+ kind: "NonNullType",
2366
+ type: {
2367
+ kind: "ListType",
2368
+ type: {
2369
+ kind: "NonNullType",
2370
+ type: {
2371
+ kind: "NamedType",
2372
+ name: {
2373
+ kind: "Name",
2374
+ value: "Upload"
2375
+ }
2376
+ }
2377
+ }
2378
+ }
2379
+ }
2380
+ }
2381
+ ],
2382
+ selectionSet: {
2383
+ kind: "SelectionSet",
2384
+ selections: [
2385
+ {
2386
+ kind: "Field",
2387
+ name: {
2388
+ kind: "Name",
2389
+ value: "addMedias"
2390
+ },
2391
+ arguments: [
2392
+ {
2393
+ kind: "Argument",
2394
+ name: {
2395
+ kind: "Name",
2396
+ value: "input"
2397
+ },
2398
+ value: {
2399
+ kind: "Variable",
2400
+ name: {
2401
+ kind: "Name",
2402
+ value: "input"
2403
+ }
2404
+ }
2405
+ }
2406
+ ],
2407
+ selectionSet: {
2408
+ kind: "SelectionSet",
2409
+ selections: [
2410
+ {
2411
+ kind: "Field",
2412
+ name: {
2413
+ kind: "Name",
2414
+ value: "_id"
2415
+ }
2416
+ },
2417
+ {
2418
+ kind: "Field",
2419
+ name: {
2420
+ kind: "Name",
2421
+ value: "file_name"
2422
+ }
2423
+ },
2424
+ {
2425
+ kind: "Field",
2426
+ name: {
2427
+ kind: "Name",
2428
+ value: "url"
2429
+ }
2430
+ },
2431
+ {
2432
+ kind: "Field",
2433
+ name: {
2434
+ kind: "Name",
2435
+ value: "size"
2436
+ }
2437
+ }
2438
+ ]
2439
+ }
2440
+ }
2441
+ ]
2442
+ }
2443
+ }
2444
+ ]
2445
+ };
2446
+ const DeleteMediasDocument = {
2447
+ kind: "Document",
2448
+ definitions: [
2449
+ {
2450
+ kind: "OperationDefinition",
2451
+ operation: "mutation",
2452
+ name: {
2453
+ kind: "Name",
2454
+ value: "DeleteMedias"
2455
+ },
2456
+ variableDefinitions: [
2457
+ {
2458
+ kind: "VariableDefinition",
2459
+ variable: {
2460
+ kind: "Variable",
2461
+ name: {
2462
+ kind: "Name",
2463
+ value: "cursors"
2464
+ }
2465
+ },
2466
+ type: {
2467
+ kind: "NonNullType",
2468
+ type: {
1109
2469
  kind: "ListType",
1110
2470
  type: {
1111
2471
  kind: "NonNullType",
@@ -1113,10 +2473,315 @@ const AddMediasDocument = {
1113
2473
  kind: "NamedType",
1114
2474
  name: {
1115
2475
  kind: "Name",
1116
- value: "Upload"
2476
+ value: "ID"
2477
+ }
2478
+ }
2479
+ }
2480
+ }
2481
+ }
2482
+ }
2483
+ ],
2484
+ selectionSet: {
2485
+ kind: "SelectionSet",
2486
+ selections: [
2487
+ {
2488
+ kind: "Field",
2489
+ name: {
2490
+ kind: "Name",
2491
+ value: "deleteMedias"
2492
+ },
2493
+ arguments: [
2494
+ {
2495
+ kind: "Argument",
2496
+ name: {
2497
+ kind: "Name",
2498
+ value: "cursors"
2499
+ },
2500
+ value: {
2501
+ kind: "Variable",
2502
+ name: {
2503
+ kind: "Name",
2504
+ value: "cursors"
2505
+ }
2506
+ }
2507
+ }
2508
+ ],
2509
+ selectionSet: {
2510
+ kind: "SelectionSet",
2511
+ selections: [
2512
+ {
2513
+ kind: "Field",
2514
+ name: {
2515
+ kind: "Name",
2516
+ value: "message"
2517
+ }
2518
+ }
2519
+ ]
2520
+ }
2521
+ }
2522
+ ]
2523
+ }
2524
+ }
2525
+ ]
2526
+ };
2527
+ const MetafieldsDocument = {
2528
+ kind: "Document",
2529
+ definitions: [
2530
+ {
2531
+ kind: "OperationDefinition",
2532
+ operation: "query",
2533
+ name: {
2534
+ kind: "Name",
2535
+ value: "Metafields"
2536
+ },
2537
+ variableDefinitions: [
2538
+ {
2539
+ kind: "VariableDefinition",
2540
+ variable: {
2541
+ kind: "Variable",
2542
+ name: {
2543
+ kind: "Name",
2544
+ value: "filterKeys"
2545
+ }
2546
+ },
2547
+ type: {
2548
+ kind: "NamedType",
2549
+ name: {
2550
+ kind: "Name",
2551
+ value: "MetafieldFilterKeys"
2552
+ }
2553
+ }
2554
+ },
2555
+ {
2556
+ kind: "VariableDefinition",
2557
+ variable: {
2558
+ kind: "Variable",
2559
+ name: {
2560
+ kind: "Name",
2561
+ value: "first"
2562
+ }
2563
+ },
2564
+ type: {
2565
+ kind: "NamedType",
2566
+ name: {
2567
+ kind: "Name",
2568
+ value: "Int"
2569
+ }
2570
+ }
2571
+ }
2572
+ ],
2573
+ selectionSet: {
2574
+ kind: "SelectionSet",
2575
+ selections: [
2576
+ {
2577
+ kind: "Field",
2578
+ name: {
2579
+ kind: "Name",
2580
+ value: "metafields"
2581
+ },
2582
+ arguments: [
2583
+ {
2584
+ kind: "Argument",
2585
+ name: {
2586
+ kind: "Name",
2587
+ value: "filterKeys"
2588
+ },
2589
+ value: {
2590
+ kind: "Variable",
2591
+ name: {
2592
+ kind: "Name",
2593
+ value: "filterKeys"
2594
+ }
2595
+ }
2596
+ },
2597
+ {
2598
+ kind: "Argument",
2599
+ name: {
2600
+ kind: "Name",
2601
+ value: "first"
2602
+ },
2603
+ value: {
2604
+ kind: "Variable",
2605
+ name: {
2606
+ kind: "Name",
2607
+ value: "first"
1117
2608
  }
1118
2609
  }
1119
2610
  }
2611
+ ],
2612
+ selectionSet: {
2613
+ kind: "SelectionSet",
2614
+ selections: [
2615
+ {
2616
+ kind: "Field",
2617
+ name: {
2618
+ kind: "Name",
2619
+ value: "edges"
2620
+ },
2621
+ selectionSet: {
2622
+ kind: "SelectionSet",
2623
+ selections: [
2624
+ {
2625
+ kind: "Field",
2626
+ name: {
2627
+ kind: "Name",
2628
+ value: "node"
2629
+ },
2630
+ selectionSet: {
2631
+ kind: "SelectionSet",
2632
+ selections: [
2633
+ {
2634
+ kind: "Field",
2635
+ name: {
2636
+ kind: "Name",
2637
+ value: "_id"
2638
+ }
2639
+ },
2640
+ {
2641
+ kind: "Field",
2642
+ name: {
2643
+ kind: "Name",
2644
+ value: "entry"
2645
+ }
2646
+ },
2647
+ {
2648
+ kind: "Field",
2649
+ name: {
2650
+ kind: "Name",
2651
+ value: "name"
2652
+ }
2653
+ },
2654
+ {
2655
+ kind: "Field",
2656
+ name: {
2657
+ kind: "Name",
2658
+ value: "type"
2659
+ }
2660
+ }
2661
+ ]
2662
+ }
2663
+ }
2664
+ ]
2665
+ }
2666
+ }
2667
+ ]
2668
+ }
2669
+ }
2670
+ ]
2671
+ }
2672
+ }
2673
+ ]
2674
+ };
2675
+ const ProductsDocument = {
2676
+ kind: "Document",
2677
+ definitions: [
2678
+ {
2679
+ kind: "OperationDefinition",
2680
+ operation: "query",
2681
+ name: {
2682
+ kind: "Name",
2683
+ value: "Products"
2684
+ },
2685
+ variableDefinitions: [
2686
+ {
2687
+ kind: "VariableDefinition",
2688
+ variable: {
2689
+ kind: "Variable",
2690
+ name: {
2691
+ kind: "Name",
2692
+ value: "after"
2693
+ }
2694
+ },
2695
+ type: {
2696
+ kind: "NamedType",
2697
+ name: {
2698
+ kind: "Name",
2699
+ value: "ID"
2700
+ }
2701
+ }
2702
+ },
2703
+ {
2704
+ kind: "VariableDefinition",
2705
+ variable: {
2706
+ kind: "Variable",
2707
+ name: {
2708
+ kind: "Name",
2709
+ value: "before"
2710
+ }
2711
+ },
2712
+ type: {
2713
+ kind: "NamedType",
2714
+ name: {
2715
+ kind: "Name",
2716
+ value: "ID"
2717
+ }
2718
+ }
2719
+ },
2720
+ {
2721
+ kind: "VariableDefinition",
2722
+ variable: {
2723
+ kind: "Variable",
2724
+ name: {
2725
+ kind: "Name",
2726
+ value: "first"
2727
+ }
2728
+ },
2729
+ type: {
2730
+ kind: "NamedType",
2731
+ name: {
2732
+ kind: "Name",
2733
+ value: "Int"
2734
+ }
2735
+ }
2736
+ },
2737
+ {
2738
+ kind: "VariableDefinition",
2739
+ variable: {
2740
+ kind: "Variable",
2741
+ name: {
2742
+ kind: "Name",
2743
+ value: "last"
2744
+ }
2745
+ },
2746
+ type: {
2747
+ kind: "NamedType",
2748
+ name: {
2749
+ kind: "Name",
2750
+ value: "Int"
2751
+ }
2752
+ }
2753
+ },
2754
+ {
2755
+ kind: "VariableDefinition",
2756
+ variable: {
2757
+ kind: "Variable",
2758
+ name: {
2759
+ kind: "Name",
2760
+ value: "query"
2761
+ }
2762
+ },
2763
+ type: {
2764
+ kind: "NamedType",
2765
+ name: {
2766
+ kind: "Name",
2767
+ value: "String"
2768
+ }
2769
+ }
2770
+ },
2771
+ {
2772
+ kind: "VariableDefinition",
2773
+ variable: {
2774
+ kind: "Variable",
2775
+ name: {
2776
+ kind: "Name",
2777
+ value: "filterKeys"
2778
+ }
2779
+ },
2780
+ type: {
2781
+ kind: "NamedType",
2782
+ name: {
2783
+ kind: "Name",
2784
+ value: "ProductFilterKeys"
1120
2785
  }
1121
2786
  }
1122
2787
  }
@@ -1128,122 +2793,90 @@ const AddMediasDocument = {
1128
2793
  kind: "Field",
1129
2794
  name: {
1130
2795
  kind: "Name",
1131
- value: "addMedias"
2796
+ value: "products"
1132
2797
  },
1133
2798
  arguments: [
1134
2799
  {
1135
2800
  kind: "Argument",
1136
2801
  name: {
1137
2802
  kind: "Name",
1138
- value: "input"
2803
+ value: "after"
1139
2804
  },
1140
2805
  value: {
1141
2806
  kind: "Variable",
1142
2807
  name: {
1143
2808
  kind: "Name",
1144
- value: "input"
2809
+ value: "after"
1145
2810
  }
1146
2811
  }
1147
- }
1148
- ],
1149
- selectionSet: {
1150
- kind: "SelectionSet",
1151
- selections: [
1152
- {
1153
- kind: "Field",
1154
- name: {
1155
- kind: "Name",
1156
- value: "_id"
1157
- }
2812
+ },
2813
+ {
2814
+ kind: "Argument",
2815
+ name: {
2816
+ kind: "Name",
2817
+ value: "before"
1158
2818
  },
1159
- {
1160
- kind: "Field",
2819
+ value: {
2820
+ kind: "Variable",
1161
2821
  name: {
1162
2822
  kind: "Name",
1163
- value: "file_name"
2823
+ value: "before"
1164
2824
  }
2825
+ }
2826
+ },
2827
+ {
2828
+ kind: "Argument",
2829
+ name: {
2830
+ kind: "Name",
2831
+ value: "first"
1165
2832
  },
1166
- {
1167
- kind: "Field",
2833
+ value: {
2834
+ kind: "Variable",
1168
2835
  name: {
1169
2836
  kind: "Name",
1170
- value: "url"
2837
+ value: "first"
1171
2838
  }
2839
+ }
2840
+ },
2841
+ {
2842
+ kind: "Argument",
2843
+ name: {
2844
+ kind: "Name",
2845
+ value: "last"
1172
2846
  },
1173
- {
1174
- kind: "Field",
2847
+ value: {
2848
+ kind: "Variable",
1175
2849
  name: {
1176
2850
  kind: "Name",
1177
- value: "size"
2851
+ value: "last"
1178
2852
  }
1179
2853
  }
1180
- ]
1181
- }
1182
- }
1183
- ]
1184
- }
1185
- }
1186
- ]
1187
- };
1188
- const DeleteMediasDocument = {
1189
- kind: "Document",
1190
- definitions: [
1191
- {
1192
- kind: "OperationDefinition",
1193
- operation: "mutation",
1194
- name: {
1195
- kind: "Name",
1196
- value: "DeleteMedias"
1197
- },
1198
- variableDefinitions: [
1199
- {
1200
- kind: "VariableDefinition",
1201
- variable: {
1202
- kind: "Variable",
1203
- name: {
1204
- kind: "Name",
1205
- value: "cursors"
1206
- }
1207
- },
1208
- type: {
1209
- kind: "NonNullType",
1210
- type: {
1211
- kind: "ListType",
1212
- type: {
1213
- kind: "NonNullType",
1214
- type: {
1215
- kind: "NamedType",
2854
+ },
2855
+ {
2856
+ kind: "Argument",
2857
+ name: {
2858
+ kind: "Name",
2859
+ value: "query"
2860
+ },
2861
+ value: {
2862
+ kind: "Variable",
1216
2863
  name: {
1217
2864
  kind: "Name",
1218
- value: "ID"
2865
+ value: "query"
1219
2866
  }
1220
2867
  }
1221
- }
1222
- }
1223
- }
1224
- }
1225
- ],
1226
- selectionSet: {
1227
- kind: "SelectionSet",
1228
- selections: [
1229
- {
1230
- kind: "Field",
1231
- name: {
1232
- kind: "Name",
1233
- value: "deleteMedias"
1234
- },
1235
- arguments: [
2868
+ },
1236
2869
  {
1237
2870
  kind: "Argument",
1238
2871
  name: {
1239
2872
  kind: "Name",
1240
- value: "cursors"
2873
+ value: "filterKeys"
1241
2874
  },
1242
2875
  value: {
1243
2876
  kind: "Variable",
1244
2877
  name: {
1245
2878
  kind: "Name",
1246
- value: "cursors"
2879
+ value: "filterKeys"
1247
2880
  }
1248
2881
  }
1249
2882
  }
@@ -1255,7 +2888,104 @@ const DeleteMediasDocument = {
1255
2888
  kind: "Field",
1256
2889
  name: {
1257
2890
  kind: "Name",
1258
- value: "message"
2891
+ value: "pageInfo"
2892
+ },
2893
+ selectionSet: {
2894
+ kind: "SelectionSet",
2895
+ selections: [
2896
+ {
2897
+ kind: "Field",
2898
+ name: {
2899
+ kind: "Name",
2900
+ value: "endCursor"
2901
+ }
2902
+ },
2903
+ {
2904
+ kind: "Field",
2905
+ name: {
2906
+ kind: "Name",
2907
+ value: "hasNextPage"
2908
+ }
2909
+ },
2910
+ {
2911
+ kind: "Field",
2912
+ name: {
2913
+ kind: "Name",
2914
+ value: "hasPreviousPage"
2915
+ }
2916
+ },
2917
+ {
2918
+ kind: "Field",
2919
+ name: {
2920
+ kind: "Name",
2921
+ value: "startCursor"
2922
+ }
2923
+ }
2924
+ ]
2925
+ }
2926
+ },
2927
+ {
2928
+ kind: "Field",
2929
+ name: {
2930
+ kind: "Name",
2931
+ value: "edges"
2932
+ },
2933
+ selectionSet: {
2934
+ kind: "SelectionSet",
2935
+ selections: [
2936
+ {
2937
+ kind: "Field",
2938
+ name: {
2939
+ kind: "Name",
2940
+ value: "node"
2941
+ },
2942
+ selectionSet: {
2943
+ kind: "SelectionSet",
2944
+ selections: [
2945
+ {
2946
+ kind: "Field",
2947
+ name: {
2948
+ kind: "Name",
2949
+ value: "_id"
2950
+ }
2951
+ },
2952
+ {
2953
+ kind: "Field",
2954
+ name: {
2955
+ kind: "Name",
2956
+ value: "title"
2957
+ }
2958
+ },
2959
+ {
2960
+ kind: "Field",
2961
+ name: {
2962
+ kind: "Name",
2963
+ value: "image"
2964
+ },
2965
+ selectionSet: {
2966
+ kind: "SelectionSet",
2967
+ selections: [
2968
+ {
2969
+ kind: "Field",
2970
+ name: {
2971
+ kind: "Name",
2972
+ value: "_id"
2973
+ }
2974
+ },
2975
+ {
2976
+ kind: "Field",
2977
+ name: {
2978
+ kind: "Name",
2979
+ value: "url"
2980
+ }
2981
+ }
2982
+ ]
2983
+ }
2984
+ }
2985
+ ]
2986
+ }
2987
+ }
2988
+ ]
1259
2989
  }
1260
2990
  }
1261
2991
  ]
@@ -1361,6 +3091,23 @@ const VariantsDocument = {
1361
3091
  value: "String"
1362
3092
  }
1363
3093
  }
3094
+ },
3095
+ {
3096
+ kind: "VariableDefinition",
3097
+ variable: {
3098
+ kind: "Variable",
3099
+ name: {
3100
+ kind: "Name",
3101
+ value: "filterKeys"
3102
+ }
3103
+ },
3104
+ type: {
3105
+ kind: "NamedType",
3106
+ name: {
3107
+ kind: "Name",
3108
+ value: "VariantFilterKeys"
3109
+ }
3110
+ }
1364
3111
  }
1365
3112
  ],
1366
3113
  selectionSet: {
@@ -1442,6 +3189,20 @@ const VariantsDocument = {
1442
3189
  value: "query"
1443
3190
  }
1444
3191
  }
3192
+ },
3193
+ {
3194
+ kind: "Argument",
3195
+ name: {
3196
+ kind: "Name",
3197
+ value: "filterKeys"
3198
+ },
3199
+ value: {
3200
+ kind: "Variable",
3201
+ name: {
3202
+ kind: "Name",
3203
+ value: "filterKeys"
3204
+ }
3205
+ }
1445
3206
  }
1446
3207
  ],
1447
3208
  selectionSet: {
@@ -1599,4 +3360,4 @@ const VariantsDocument = {
1599
3360
  }
1600
3361
  ]
1601
3362
  };
1602
- 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_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, DeleteMediasDocument, 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, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, 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_SupplierSortKeys as SupplierSortKeys, 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 };
3363
+ 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, 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 };