@soppiya/app-bridge 1.1.6 → 1.1.8

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 (52) hide show
  1. package/dist/components/collections-pciker/api/query.d.ts +5 -2
  2. package/dist/components/collections-pciker/api/query.js +8 -8
  3. package/dist/components/collections-pciker/model/useCollections.d.ts +1 -1
  4. package/dist/components/collections-pciker/model/useCollections.js +3 -4
  5. package/dist/components/country-picker/api/query.d.ts +8 -0
  6. package/dist/components/country-picker/api/query.js +19 -0
  7. package/dist/components/country-picker/index.d.ts +1 -0
  8. package/dist/components/country-picker/index.js +2 -0
  9. package/dist/components/country-picker/model/useContry.d.ts +26 -0
  10. package/dist/components/country-picker/model/useContry.js +48 -0
  11. package/dist/components/country-picker/ui/CountryPicker.d.ts +9 -0
  12. package/dist/components/country-picker/ui/CountryPicker.js +114 -0
  13. package/dist/components/country-picker/ui/CountryPicker.stories.d.ts +12 -0
  14. package/dist/components/country-picker/ui/CountryPicker.stories.js +11 -0
  15. package/dist/components/customers-picker/api/query.d.ts +8 -0
  16. package/dist/components/customers-picker/api/query.js +22 -0
  17. package/dist/components/customers-picker/index.d.ts +1 -0
  18. package/dist/components/customers-picker/index.js +2 -0
  19. package/dist/components/customers-picker/model/useCustomers.d.ts +30 -0
  20. package/dist/components/customers-picker/model/useCustomers.js +48 -0
  21. package/dist/components/customers-picker/ui/CustomersPicker.d.ts +9 -0
  22. package/dist/components/customers-picker/ui/CustomersPicker.js +113 -0
  23. package/dist/components/customers-picker/ui/CustomersPicker.stories.d.ts +12 -0
  24. package/dist/components/customers-picker/ui/CustomersPicker.stories.js +11 -0
  25. package/dist/components/index.d.ts +3 -0
  26. package/dist/components/index.js +3 -0
  27. package/dist/components/media/Media.js +1 -1
  28. package/dist/components/meta-data/api/query.js +3 -0
  29. package/dist/components/meta-data/model/meta.types.js +3 -1
  30. package/dist/components/meta-data/model/useGetMetaFields.d.ts +4 -0
  31. package/dist/components/meta-data/ui/MetaData.stories.d.ts +1 -0
  32. package/dist/components/meta-data/ui/MetaData.stories.js +22 -1
  33. package/dist/components/meta-data/ui/MetaDataItem.js +22 -0
  34. package/dist/components/meta-data/ui/MetaobjectRefMetaField.d.ts +3 -0
  35. package/dist/components/meta-data/ui/MetaobjectRefMetaField.js +30 -0
  36. package/dist/components/meta-data/ui/SingleLineTextMetaField.js +10 -9
  37. package/dist/components/segments-picker/api/query.d.ts +8 -0
  38. package/dist/components/segments-picker/api/query.js +18 -0
  39. package/dist/components/segments-picker/index.d.ts +1 -0
  40. package/dist/components/segments-picker/index.js +2 -0
  41. package/dist/components/segments-picker/model/useSegments.d.ts +25 -0
  42. package/dist/components/segments-picker/model/useSegments.js +48 -0
  43. package/dist/components/segments-picker/ui/SegmentsPicker.d.ts +9 -0
  44. package/dist/components/segments-picker/ui/SegmentsPicker.js +105 -0
  45. package/dist/components/segments-picker/ui/SegmentsPicker.stories.d.ts +12 -0
  46. package/dist/components/segments-picker/ui/SegmentsPicker.stories.js +11 -0
  47. package/dist/shared/graphql/gql.d.ts +19 -4
  48. package/dist/shared/graphql/gql.js +6 -3
  49. package/dist/shared/graphql/graphql.d.ts +190 -55
  50. package/dist/shared/graphql/graphql.js +1309 -271
  51. package/dist/styles.css +12 -0
  52. package/package.json +2 -2
@@ -81,12 +81,6 @@ var graphql_CartSortkeys = /*#__PURE__*/ function(CartSortkeys) {
81
81
  CartSortkeys["updatedAt"] = "updatedAt";
82
82
  return CartSortkeys;
83
83
  }({});
84
- var graphql_CartStatus = /*#__PURE__*/ function(CartStatus) {
85
- CartStatus["abandoned"] = "abandoned";
86
- CartStatus["active"] = "active";
87
- CartStatus["converted"] = "converted";
88
- return CartStatus;
89
- }({});
90
84
  var graphql_CheckoutAutoFulfillment = /*#__PURE__*/ function(CheckoutAutoFulfillment) {
91
85
  CheckoutAutoFulfillment["all"] = "all";
92
86
  CheckoutAutoFulfillment["gift_cards"] = "gift_cards";
@@ -245,11 +239,11 @@ var graphql_DiscountAopApplication = /*#__PURE__*/ function(DiscountAopApplicati
245
239
  DiscountAopApplication["products"] = "products";
246
240
  return DiscountAopApplication;
247
241
  }({});
248
- var graphql_DiscountAopMinimunPurchaseType = /*#__PURE__*/ function(DiscountAopMinimunPurchaseType) {
249
- DiscountAopMinimunPurchaseType["amount"] = "amount";
250
- DiscountAopMinimunPurchaseType["none"] = "none";
251
- DiscountAopMinimunPurchaseType["quantity"] = "quantity";
252
- return DiscountAopMinimunPurchaseType;
242
+ var graphql_DiscountAopMinimumPurchaseType = /*#__PURE__*/ function(DiscountAopMinimumPurchaseType) {
243
+ DiscountAopMinimumPurchaseType["amount"] = "amount";
244
+ DiscountAopMinimumPurchaseType["none"] = "none";
245
+ DiscountAopMinimumPurchaseType["quantity"] = "quantity";
246
+ return DiscountAopMinimumPurchaseType;
253
247
  }({});
254
248
  var graphql_DiscountAopType = /*#__PURE__*/ function(DiscountAopType) {
255
249
  DiscountAopType["fixed"] = "fixed";
@@ -266,10 +260,10 @@ var graphql_DiscountBxgyApplication = /*#__PURE__*/ function(DiscountBxgyApplica
266
260
  DiscountBxgyApplication["products"] = "products";
267
261
  return DiscountBxgyApplication;
268
262
  }({});
269
- var graphql_DiscountBxgyMinimunPurchaseType = /*#__PURE__*/ function(DiscountBxgyMinimunPurchaseType) {
270
- DiscountBxgyMinimunPurchaseType["amount"] = "amount";
271
- DiscountBxgyMinimunPurchaseType["quantity"] = "quantity";
272
- return DiscountBxgyMinimunPurchaseType;
263
+ var graphql_DiscountBxgyMinimumPurchaseType = /*#__PURE__*/ function(DiscountBxgyMinimumPurchaseType) {
264
+ DiscountBxgyMinimumPurchaseType["amount"] = "amount";
265
+ DiscountBxgyMinimumPurchaseType["quantity"] = "quantity";
266
+ return DiscountBxgyMinimumPurchaseType;
273
267
  }({});
274
268
  var graphql_DiscountBxgyOfferApplication = /*#__PURE__*/ function(DiscountBxgyOfferApplication) {
275
269
  DiscountBxgyOfferApplication["collections"] = "collections";
@@ -282,11 +276,11 @@ var graphql_DiscountBxgyType = /*#__PURE__*/ function(DiscountBxgyType) {
282
276
  DiscountBxgyType["percentage"] = "percentage";
283
277
  return DiscountBxgyType;
284
278
  }({});
285
- var graphql_DiscountFsMinimunPurchaseType = /*#__PURE__*/ function(DiscountFsMinimunPurchaseType) {
286
- DiscountFsMinimunPurchaseType["amount"] = "amount";
287
- DiscountFsMinimunPurchaseType["none"] = "none";
288
- DiscountFsMinimunPurchaseType["quantity"] = "quantity";
289
- return DiscountFsMinimunPurchaseType;
279
+ var graphql_DiscountFsMinimumPurchaseType = /*#__PURE__*/ function(DiscountFsMinimumPurchaseType) {
280
+ DiscountFsMinimumPurchaseType["amount"] = "amount";
281
+ DiscountFsMinimumPurchaseType["none"] = "none";
282
+ DiscountFsMinimumPurchaseType["quantity"] = "quantity";
283
+ return DiscountFsMinimumPurchaseType;
290
284
  }({});
291
285
  var graphql_DiscountFsType = /*#__PURE__*/ function(DiscountFsType) {
292
286
  DiscountFsType["all_countries"] = "all_countries";
@@ -703,6 +697,11 @@ var graphql_StoreInvoiceBeneficiary = /*#__PURE__*/ function(StoreInvoiceBenefic
703
697
  StoreInvoiceBeneficiary["soppiya"] = "soppiya";
704
698
  return StoreInvoiceBeneficiary;
705
699
  }({});
700
+ var graphql_StoreInvoiceDisbursementStatus = /*#__PURE__*/ function(StoreInvoiceDisbursementStatus) {
701
+ StoreInvoiceDisbursementStatus["disbursed"] = "disbursed";
702
+ StoreInvoiceDisbursementStatus["pending"] = "pending";
703
+ return StoreInvoiceDisbursementStatus;
704
+ }({});
706
705
  var graphql_StoreInvoicePaymentStatus = /*#__PURE__*/ function(StoreInvoicePaymentStatus) {
707
706
  StoreInvoicePaymentStatus["paid"] = "paid";
708
707
  StoreInvoicePaymentStatus["pending"] = "pending";
@@ -1644,7 +1643,41 @@ const CollectionsDocument = {
1644
1643
  kind: "Variable",
1645
1644
  name: {
1646
1645
  kind: "Name",
1647
- value: "skip"
1646
+ value: "after"
1647
+ }
1648
+ },
1649
+ type: {
1650
+ kind: "NamedType",
1651
+ name: {
1652
+ kind: "Name",
1653
+ value: "ID"
1654
+ }
1655
+ }
1656
+ },
1657
+ {
1658
+ kind: "VariableDefinition",
1659
+ variable: {
1660
+ kind: "Variable",
1661
+ name: {
1662
+ kind: "Name",
1663
+ value: "before"
1664
+ }
1665
+ },
1666
+ type: {
1667
+ kind: "NamedType",
1668
+ name: {
1669
+ kind: "Name",
1670
+ value: "ID"
1671
+ }
1672
+ }
1673
+ },
1674
+ {
1675
+ kind: "VariableDefinition",
1676
+ variable: {
1677
+ kind: "Variable",
1678
+ name: {
1679
+ kind: "Name",
1680
+ value: "first"
1648
1681
  }
1649
1682
  },
1650
1683
  type: {
@@ -1661,14 +1694,14 @@ const CollectionsDocument = {
1661
1694
  kind: "Variable",
1662
1695
  name: {
1663
1696
  kind: "Name",
1664
- value: "filterKeys"
1697
+ value: "last"
1665
1698
  }
1666
1699
  },
1667
1700
  type: {
1668
1701
  kind: "NamedType",
1669
1702
  name: {
1670
1703
  kind: "Name",
1671
- value: "CollectionFilterKeys"
1704
+ value: "Int"
1672
1705
  }
1673
1706
  }
1674
1707
  },
@@ -1688,6 +1721,23 @@ const CollectionsDocument = {
1688
1721
  value: "String"
1689
1722
  }
1690
1723
  }
1724
+ },
1725
+ {
1726
+ kind: "VariableDefinition",
1727
+ variable: {
1728
+ kind: "Variable",
1729
+ name: {
1730
+ kind: "Name",
1731
+ value: "filterKeys"
1732
+ }
1733
+ },
1734
+ type: {
1735
+ kind: "NamedType",
1736
+ name: {
1737
+ kind: "Name",
1738
+ value: "CollectionFilterKeys"
1739
+ }
1740
+ }
1691
1741
  }
1692
1742
  ],
1693
1743
  selectionSet: {
@@ -1704,13 +1754,13 @@ const CollectionsDocument = {
1704
1754
  kind: "Argument",
1705
1755
  name: {
1706
1756
  kind: "Name",
1707
- value: "skip"
1757
+ value: "after"
1708
1758
  },
1709
1759
  value: {
1710
1760
  kind: "Variable",
1711
1761
  name: {
1712
1762
  kind: "Name",
1713
- value: "skip"
1763
+ value: "after"
1714
1764
  }
1715
1765
  }
1716
1766
  },
@@ -1718,13 +1768,41 @@ const CollectionsDocument = {
1718
1768
  kind: "Argument",
1719
1769
  name: {
1720
1770
  kind: "Name",
1721
- value: "filterKeys"
1771
+ value: "before"
1722
1772
  },
1723
1773
  value: {
1724
1774
  kind: "Variable",
1725
1775
  name: {
1726
1776
  kind: "Name",
1727
- value: "filterKeys"
1777
+ value: "before"
1778
+ }
1779
+ }
1780
+ },
1781
+ {
1782
+ kind: "Argument",
1783
+ name: {
1784
+ kind: "Name",
1785
+ value: "first"
1786
+ },
1787
+ value: {
1788
+ kind: "Variable",
1789
+ name: {
1790
+ kind: "Name",
1791
+ value: "first"
1792
+ }
1793
+ }
1794
+ },
1795
+ {
1796
+ kind: "Argument",
1797
+ name: {
1798
+ kind: "Name",
1799
+ value: "last"
1800
+ },
1801
+ value: {
1802
+ kind: "Variable",
1803
+ name: {
1804
+ kind: "Name",
1805
+ value: "last"
1728
1806
  }
1729
1807
  }
1730
1808
  },
@@ -1741,11 +1819,65 @@ const CollectionsDocument = {
1741
1819
  value: "query"
1742
1820
  }
1743
1821
  }
1822
+ },
1823
+ {
1824
+ kind: "Argument",
1825
+ name: {
1826
+ kind: "Name",
1827
+ value: "filterKeys"
1828
+ },
1829
+ value: {
1830
+ kind: "Variable",
1831
+ name: {
1832
+ kind: "Name",
1833
+ value: "filterKeys"
1834
+ }
1835
+ }
1744
1836
  }
1745
1837
  ],
1746
1838
  selectionSet: {
1747
1839
  kind: "SelectionSet",
1748
1840
  selections: [
1841
+ {
1842
+ kind: "Field",
1843
+ name: {
1844
+ kind: "Name",
1845
+ value: "pageInfo"
1846
+ },
1847
+ selectionSet: {
1848
+ kind: "SelectionSet",
1849
+ selections: [
1850
+ {
1851
+ kind: "Field",
1852
+ name: {
1853
+ kind: "Name",
1854
+ value: "endCursor"
1855
+ }
1856
+ },
1857
+ {
1858
+ kind: "Field",
1859
+ name: {
1860
+ kind: "Name",
1861
+ value: "hasNextPage"
1862
+ }
1863
+ },
1864
+ {
1865
+ kind: "Field",
1866
+ name: {
1867
+ kind: "Name",
1868
+ value: "hasPreviousPage"
1869
+ }
1870
+ },
1871
+ {
1872
+ kind: "Field",
1873
+ name: {
1874
+ kind: "Name",
1875
+ value: "startCursor"
1876
+ }
1877
+ }
1878
+ ]
1879
+ }
1880
+ },
1749
1881
  {
1750
1882
  kind: "Field",
1751
1883
  name: {
@@ -1809,46 +1941,6 @@ const CollectionsDocument = {
1809
1941
  }
1810
1942
  ]
1811
1943
  }
1812
- },
1813
- {
1814
- kind: "Field",
1815
- name: {
1816
- kind: "Name",
1817
- value: "pageInfo"
1818
- },
1819
- selectionSet: {
1820
- kind: "SelectionSet",
1821
- selections: [
1822
- {
1823
- kind: "Field",
1824
- name: {
1825
- kind: "Name",
1826
- value: "endCursor"
1827
- }
1828
- },
1829
- {
1830
- kind: "Field",
1831
- name: {
1832
- kind: "Name",
1833
- value: "hasNextPage"
1834
- }
1835
- },
1836
- {
1837
- kind: "Field",
1838
- name: {
1839
- kind: "Name",
1840
- value: "hasPreviousPage"
1841
- }
1842
- },
1843
- {
1844
- kind: "Field",
1845
- name: {
1846
- kind: "Name",
1847
- value: "startCursor"
1848
- }
1849
- }
1850
- ]
1851
- }
1852
1944
  }
1853
1945
  ]
1854
1946
  }
@@ -1858,7 +1950,7 @@ const CollectionsDocument = {
1858
1950
  }
1859
1951
  ]
1860
1952
  };
1861
- const LinklistsDocument = {
1953
+ const _CountriesDocument = {
1862
1954
  kind: "Document",
1863
1955
  definitions: [
1864
1956
  {
@@ -1866,7 +1958,7 @@ const LinklistsDocument = {
1866
1958
  operation: "query",
1867
1959
  name: {
1868
1960
  kind: "Name",
1869
- value: "Linklists"
1961
+ value: "_countries"
1870
1962
  },
1871
1963
  variableDefinitions: [
1872
1964
  {
@@ -1967,7 +2059,7 @@ const LinklistsDocument = {
1967
2059
  kind: "NamedType",
1968
2060
  name: {
1969
2061
  kind: "Name",
1970
- value: "LinklistFilterKeys"
2062
+ value: "_CountryFilterKeys"
1971
2063
  }
1972
2064
  }
1973
2065
  }
@@ -1979,7 +2071,7 @@ const LinklistsDocument = {
1979
2071
  kind: "Field",
1980
2072
  name: {
1981
2073
  kind: "Name",
1982
- value: "linklists"
2074
+ value: "_countries"
1983
2075
  },
1984
2076
  arguments: [
1985
2077
  {
@@ -2139,33 +2231,14 @@ const LinklistsDocument = {
2139
2231
  kind: "Field",
2140
2232
  name: {
2141
2233
  kind: "Name",
2142
- value: "title"
2234
+ value: "name"
2143
2235
  }
2144
2236
  },
2145
2237
  {
2146
2238
  kind: "Field",
2147
2239
  name: {
2148
2240
  kind: "Name",
2149
- value: "links"
2150
- },
2151
- selectionSet: {
2152
- kind: "SelectionSet",
2153
- selections: [
2154
- {
2155
- kind: "Field",
2156
- name: {
2157
- kind: "Name",
2158
- value: "url"
2159
- }
2160
- },
2161
- {
2162
- kind: "Field",
2163
- name: {
2164
- kind: "Name",
2165
- value: "_id"
2166
- }
2167
- }
2168
- ]
2241
+ value: "flag"
2169
2242
  }
2170
2243
  }
2171
2244
  ]
@@ -2182,7 +2255,7 @@ const LinklistsDocument = {
2182
2255
  }
2183
2256
  ]
2184
2257
  };
2185
- const MediasDocument = {
2258
+ const CustomersDocument = {
2186
2259
  kind: "Document",
2187
2260
  definitions: [
2188
2261
  {
@@ -2190,7 +2263,7 @@ const MediasDocument = {
2190
2263
  operation: "query",
2191
2264
  name: {
2192
2265
  kind: "Name",
2193
- value: "Medias"
2266
+ value: "Customers"
2194
2267
  },
2195
2268
  variableDefinitions: [
2196
2269
  {
@@ -2278,40 +2351,6 @@ const MediasDocument = {
2278
2351
  }
2279
2352
  }
2280
2353
  },
2281
- {
2282
- kind: "VariableDefinition",
2283
- variable: {
2284
- kind: "Variable",
2285
- name: {
2286
- kind: "Name",
2287
- value: "reverse"
2288
- }
2289
- },
2290
- type: {
2291
- kind: "NamedType",
2292
- name: {
2293
- kind: "Name",
2294
- value: "Boolean"
2295
- }
2296
- }
2297
- },
2298
- {
2299
- kind: "VariableDefinition",
2300
- variable: {
2301
- kind: "Variable",
2302
- name: {
2303
- kind: "Name",
2304
- value: "sortKey"
2305
- }
2306
- },
2307
- type: {
2308
- kind: "NamedType",
2309
- name: {
2310
- kind: "Name",
2311
- value: "MediaSortKeys"
2312
- }
2313
- }
2314
- },
2315
2354
  {
2316
2355
  kind: "VariableDefinition",
2317
2356
  variable: {
@@ -2325,7 +2364,7 @@ const MediasDocument = {
2325
2364
  kind: "NamedType",
2326
2365
  name: {
2327
2366
  kind: "Name",
2328
- value: "MediaFilterKeys"
2367
+ value: "CustomerFilterKeys"
2329
2368
  }
2330
2369
  }
2331
2370
  }
@@ -2337,7 +2376,7 @@ const MediasDocument = {
2337
2376
  kind: "Field",
2338
2377
  name: {
2339
2378
  kind: "Name",
2340
- value: "medias"
2379
+ value: "customers"
2341
2380
  },
2342
2381
  arguments: [
2343
2382
  {
@@ -2414,17 +2453,699 @@ const MediasDocument = {
2414
2453
  kind: "Argument",
2415
2454
  name: {
2416
2455
  kind: "Name",
2417
- value: "reverse"
2456
+ value: "filterKeys"
2418
2457
  },
2419
2458
  value: {
2420
2459
  kind: "Variable",
2421
2460
  name: {
2422
2461
  kind: "Name",
2423
- value: "reverse"
2462
+ value: "filterKeys"
2424
2463
  }
2425
2464
  }
2426
- },
2427
- {
2465
+ }
2466
+ ],
2467
+ selectionSet: {
2468
+ kind: "SelectionSet",
2469
+ selections: [
2470
+ {
2471
+ kind: "Field",
2472
+ name: {
2473
+ kind: "Name",
2474
+ value: "pageInfo"
2475
+ },
2476
+ selectionSet: {
2477
+ kind: "SelectionSet",
2478
+ selections: [
2479
+ {
2480
+ kind: "Field",
2481
+ name: {
2482
+ kind: "Name",
2483
+ value: "endCursor"
2484
+ }
2485
+ },
2486
+ {
2487
+ kind: "Field",
2488
+ name: {
2489
+ kind: "Name",
2490
+ value: "hasNextPage"
2491
+ }
2492
+ },
2493
+ {
2494
+ kind: "Field",
2495
+ name: {
2496
+ kind: "Name",
2497
+ value: "hasPreviousPage"
2498
+ }
2499
+ },
2500
+ {
2501
+ kind: "Field",
2502
+ name: {
2503
+ kind: "Name",
2504
+ value: "startCursor"
2505
+ }
2506
+ }
2507
+ ]
2508
+ }
2509
+ },
2510
+ {
2511
+ kind: "Field",
2512
+ name: {
2513
+ kind: "Name",
2514
+ value: "edges"
2515
+ },
2516
+ selectionSet: {
2517
+ kind: "SelectionSet",
2518
+ selections: [
2519
+ {
2520
+ kind: "Field",
2521
+ name: {
2522
+ kind: "Name",
2523
+ value: "node"
2524
+ },
2525
+ selectionSet: {
2526
+ kind: "SelectionSet",
2527
+ selections: [
2528
+ {
2529
+ kind: "Field",
2530
+ name: {
2531
+ kind: "Name",
2532
+ value: "_id"
2533
+ }
2534
+ },
2535
+ {
2536
+ kind: "Field",
2537
+ name: {
2538
+ kind: "Name",
2539
+ value: "first_name"
2540
+ }
2541
+ },
2542
+ {
2543
+ kind: "Field",
2544
+ name: {
2545
+ kind: "Name",
2546
+ value: "last_name"
2547
+ }
2548
+ },
2549
+ {
2550
+ kind: "Field",
2551
+ name: {
2552
+ kind: "Name",
2553
+ value: "email"
2554
+ },
2555
+ selectionSet: {
2556
+ kind: "SelectionSet",
2557
+ selections: [
2558
+ {
2559
+ kind: "Field",
2560
+ name: {
2561
+ kind: "Name",
2562
+ value: "address"
2563
+ }
2564
+ }
2565
+ ]
2566
+ }
2567
+ }
2568
+ ]
2569
+ }
2570
+ }
2571
+ ]
2572
+ }
2573
+ }
2574
+ ]
2575
+ }
2576
+ }
2577
+ ]
2578
+ }
2579
+ }
2580
+ ]
2581
+ };
2582
+ const LinklistsDocument = {
2583
+ kind: "Document",
2584
+ definitions: [
2585
+ {
2586
+ kind: "OperationDefinition",
2587
+ operation: "query",
2588
+ name: {
2589
+ kind: "Name",
2590
+ value: "Linklists"
2591
+ },
2592
+ variableDefinitions: [
2593
+ {
2594
+ kind: "VariableDefinition",
2595
+ variable: {
2596
+ kind: "Variable",
2597
+ name: {
2598
+ kind: "Name",
2599
+ value: "after"
2600
+ }
2601
+ },
2602
+ type: {
2603
+ kind: "NamedType",
2604
+ name: {
2605
+ kind: "Name",
2606
+ value: "ID"
2607
+ }
2608
+ }
2609
+ },
2610
+ {
2611
+ kind: "VariableDefinition",
2612
+ variable: {
2613
+ kind: "Variable",
2614
+ name: {
2615
+ kind: "Name",
2616
+ value: "before"
2617
+ }
2618
+ },
2619
+ type: {
2620
+ kind: "NamedType",
2621
+ name: {
2622
+ kind: "Name",
2623
+ value: "ID"
2624
+ }
2625
+ }
2626
+ },
2627
+ {
2628
+ kind: "VariableDefinition",
2629
+ variable: {
2630
+ kind: "Variable",
2631
+ name: {
2632
+ kind: "Name",
2633
+ value: "first"
2634
+ }
2635
+ },
2636
+ type: {
2637
+ kind: "NamedType",
2638
+ name: {
2639
+ kind: "Name",
2640
+ value: "Int"
2641
+ }
2642
+ }
2643
+ },
2644
+ {
2645
+ kind: "VariableDefinition",
2646
+ variable: {
2647
+ kind: "Variable",
2648
+ name: {
2649
+ kind: "Name",
2650
+ value: "last"
2651
+ }
2652
+ },
2653
+ type: {
2654
+ kind: "NamedType",
2655
+ name: {
2656
+ kind: "Name",
2657
+ value: "Int"
2658
+ }
2659
+ }
2660
+ },
2661
+ {
2662
+ kind: "VariableDefinition",
2663
+ variable: {
2664
+ kind: "Variable",
2665
+ name: {
2666
+ kind: "Name",
2667
+ value: "query"
2668
+ }
2669
+ },
2670
+ type: {
2671
+ kind: "NamedType",
2672
+ name: {
2673
+ kind: "Name",
2674
+ value: "String"
2675
+ }
2676
+ }
2677
+ },
2678
+ {
2679
+ kind: "VariableDefinition",
2680
+ variable: {
2681
+ kind: "Variable",
2682
+ name: {
2683
+ kind: "Name",
2684
+ value: "filterKeys"
2685
+ }
2686
+ },
2687
+ type: {
2688
+ kind: "NamedType",
2689
+ name: {
2690
+ kind: "Name",
2691
+ value: "LinklistFilterKeys"
2692
+ }
2693
+ }
2694
+ }
2695
+ ],
2696
+ selectionSet: {
2697
+ kind: "SelectionSet",
2698
+ selections: [
2699
+ {
2700
+ kind: "Field",
2701
+ name: {
2702
+ kind: "Name",
2703
+ value: "linklists"
2704
+ },
2705
+ arguments: [
2706
+ {
2707
+ kind: "Argument",
2708
+ name: {
2709
+ kind: "Name",
2710
+ value: "after"
2711
+ },
2712
+ value: {
2713
+ kind: "Variable",
2714
+ name: {
2715
+ kind: "Name",
2716
+ value: "after"
2717
+ }
2718
+ }
2719
+ },
2720
+ {
2721
+ kind: "Argument",
2722
+ name: {
2723
+ kind: "Name",
2724
+ value: "before"
2725
+ },
2726
+ value: {
2727
+ kind: "Variable",
2728
+ name: {
2729
+ kind: "Name",
2730
+ value: "before"
2731
+ }
2732
+ }
2733
+ },
2734
+ {
2735
+ kind: "Argument",
2736
+ name: {
2737
+ kind: "Name",
2738
+ value: "first"
2739
+ },
2740
+ value: {
2741
+ kind: "Variable",
2742
+ name: {
2743
+ kind: "Name",
2744
+ value: "first"
2745
+ }
2746
+ }
2747
+ },
2748
+ {
2749
+ kind: "Argument",
2750
+ name: {
2751
+ kind: "Name",
2752
+ value: "last"
2753
+ },
2754
+ value: {
2755
+ kind: "Variable",
2756
+ name: {
2757
+ kind: "Name",
2758
+ value: "last"
2759
+ }
2760
+ }
2761
+ },
2762
+ {
2763
+ kind: "Argument",
2764
+ name: {
2765
+ kind: "Name",
2766
+ value: "query"
2767
+ },
2768
+ value: {
2769
+ kind: "Variable",
2770
+ name: {
2771
+ kind: "Name",
2772
+ value: "query"
2773
+ }
2774
+ }
2775
+ },
2776
+ {
2777
+ kind: "Argument",
2778
+ name: {
2779
+ kind: "Name",
2780
+ value: "filterKeys"
2781
+ },
2782
+ value: {
2783
+ kind: "Variable",
2784
+ name: {
2785
+ kind: "Name",
2786
+ value: "filterKeys"
2787
+ }
2788
+ }
2789
+ }
2790
+ ],
2791
+ selectionSet: {
2792
+ kind: "SelectionSet",
2793
+ selections: [
2794
+ {
2795
+ kind: "Field",
2796
+ name: {
2797
+ kind: "Name",
2798
+ value: "pageInfo"
2799
+ },
2800
+ selectionSet: {
2801
+ kind: "SelectionSet",
2802
+ selections: [
2803
+ {
2804
+ kind: "Field",
2805
+ name: {
2806
+ kind: "Name",
2807
+ value: "endCursor"
2808
+ }
2809
+ },
2810
+ {
2811
+ kind: "Field",
2812
+ name: {
2813
+ kind: "Name",
2814
+ value: "hasNextPage"
2815
+ }
2816
+ },
2817
+ {
2818
+ kind: "Field",
2819
+ name: {
2820
+ kind: "Name",
2821
+ value: "hasPreviousPage"
2822
+ }
2823
+ },
2824
+ {
2825
+ kind: "Field",
2826
+ name: {
2827
+ kind: "Name",
2828
+ value: "startCursor"
2829
+ }
2830
+ }
2831
+ ]
2832
+ }
2833
+ },
2834
+ {
2835
+ kind: "Field",
2836
+ name: {
2837
+ kind: "Name",
2838
+ value: "edges"
2839
+ },
2840
+ selectionSet: {
2841
+ kind: "SelectionSet",
2842
+ selections: [
2843
+ {
2844
+ kind: "Field",
2845
+ name: {
2846
+ kind: "Name",
2847
+ value: "node"
2848
+ },
2849
+ selectionSet: {
2850
+ kind: "SelectionSet",
2851
+ selections: [
2852
+ {
2853
+ kind: "Field",
2854
+ name: {
2855
+ kind: "Name",
2856
+ value: "_id"
2857
+ }
2858
+ },
2859
+ {
2860
+ kind: "Field",
2861
+ name: {
2862
+ kind: "Name",
2863
+ value: "title"
2864
+ }
2865
+ },
2866
+ {
2867
+ kind: "Field",
2868
+ name: {
2869
+ kind: "Name",
2870
+ value: "links"
2871
+ },
2872
+ selectionSet: {
2873
+ kind: "SelectionSet",
2874
+ selections: [
2875
+ {
2876
+ kind: "Field",
2877
+ name: {
2878
+ kind: "Name",
2879
+ value: "url"
2880
+ }
2881
+ },
2882
+ {
2883
+ kind: "Field",
2884
+ name: {
2885
+ kind: "Name",
2886
+ value: "_id"
2887
+ }
2888
+ }
2889
+ ]
2890
+ }
2891
+ }
2892
+ ]
2893
+ }
2894
+ }
2895
+ ]
2896
+ }
2897
+ }
2898
+ ]
2899
+ }
2900
+ }
2901
+ ]
2902
+ }
2903
+ }
2904
+ ]
2905
+ };
2906
+ const MediasDocument = {
2907
+ kind: "Document",
2908
+ definitions: [
2909
+ {
2910
+ kind: "OperationDefinition",
2911
+ operation: "query",
2912
+ name: {
2913
+ kind: "Name",
2914
+ value: "Medias"
2915
+ },
2916
+ variableDefinitions: [
2917
+ {
2918
+ kind: "VariableDefinition",
2919
+ variable: {
2920
+ kind: "Variable",
2921
+ name: {
2922
+ kind: "Name",
2923
+ value: "after"
2924
+ }
2925
+ },
2926
+ type: {
2927
+ kind: "NamedType",
2928
+ name: {
2929
+ kind: "Name",
2930
+ value: "ID"
2931
+ }
2932
+ }
2933
+ },
2934
+ {
2935
+ kind: "VariableDefinition",
2936
+ variable: {
2937
+ kind: "Variable",
2938
+ name: {
2939
+ kind: "Name",
2940
+ value: "before"
2941
+ }
2942
+ },
2943
+ type: {
2944
+ kind: "NamedType",
2945
+ name: {
2946
+ kind: "Name",
2947
+ value: "ID"
2948
+ }
2949
+ }
2950
+ },
2951
+ {
2952
+ kind: "VariableDefinition",
2953
+ variable: {
2954
+ kind: "Variable",
2955
+ name: {
2956
+ kind: "Name",
2957
+ value: "first"
2958
+ }
2959
+ },
2960
+ type: {
2961
+ kind: "NamedType",
2962
+ name: {
2963
+ kind: "Name",
2964
+ value: "Int"
2965
+ }
2966
+ }
2967
+ },
2968
+ {
2969
+ kind: "VariableDefinition",
2970
+ variable: {
2971
+ kind: "Variable",
2972
+ name: {
2973
+ kind: "Name",
2974
+ value: "last"
2975
+ }
2976
+ },
2977
+ type: {
2978
+ kind: "NamedType",
2979
+ name: {
2980
+ kind: "Name",
2981
+ value: "Int"
2982
+ }
2983
+ }
2984
+ },
2985
+ {
2986
+ kind: "VariableDefinition",
2987
+ variable: {
2988
+ kind: "Variable",
2989
+ name: {
2990
+ kind: "Name",
2991
+ value: "query"
2992
+ }
2993
+ },
2994
+ type: {
2995
+ kind: "NamedType",
2996
+ name: {
2997
+ kind: "Name",
2998
+ value: "String"
2999
+ }
3000
+ }
3001
+ },
3002
+ {
3003
+ kind: "VariableDefinition",
3004
+ variable: {
3005
+ kind: "Variable",
3006
+ name: {
3007
+ kind: "Name",
3008
+ value: "reverse"
3009
+ }
3010
+ },
3011
+ type: {
3012
+ kind: "NamedType",
3013
+ name: {
3014
+ kind: "Name",
3015
+ value: "Boolean"
3016
+ }
3017
+ }
3018
+ },
3019
+ {
3020
+ kind: "VariableDefinition",
3021
+ variable: {
3022
+ kind: "Variable",
3023
+ name: {
3024
+ kind: "Name",
3025
+ value: "sortKey"
3026
+ }
3027
+ },
3028
+ type: {
3029
+ kind: "NamedType",
3030
+ name: {
3031
+ kind: "Name",
3032
+ value: "MediaSortKeys"
3033
+ }
3034
+ }
3035
+ },
3036
+ {
3037
+ kind: "VariableDefinition",
3038
+ variable: {
3039
+ kind: "Variable",
3040
+ name: {
3041
+ kind: "Name",
3042
+ value: "filterKeys"
3043
+ }
3044
+ },
3045
+ type: {
3046
+ kind: "NamedType",
3047
+ name: {
3048
+ kind: "Name",
3049
+ value: "MediaFilterKeys"
3050
+ }
3051
+ }
3052
+ }
3053
+ ],
3054
+ selectionSet: {
3055
+ kind: "SelectionSet",
3056
+ selections: [
3057
+ {
3058
+ kind: "Field",
3059
+ name: {
3060
+ kind: "Name",
3061
+ value: "medias"
3062
+ },
3063
+ arguments: [
3064
+ {
3065
+ kind: "Argument",
3066
+ name: {
3067
+ kind: "Name",
3068
+ value: "after"
3069
+ },
3070
+ value: {
3071
+ kind: "Variable",
3072
+ name: {
3073
+ kind: "Name",
3074
+ value: "after"
3075
+ }
3076
+ }
3077
+ },
3078
+ {
3079
+ kind: "Argument",
3080
+ name: {
3081
+ kind: "Name",
3082
+ value: "before"
3083
+ },
3084
+ value: {
3085
+ kind: "Variable",
3086
+ name: {
3087
+ kind: "Name",
3088
+ value: "before"
3089
+ }
3090
+ }
3091
+ },
3092
+ {
3093
+ kind: "Argument",
3094
+ name: {
3095
+ kind: "Name",
3096
+ value: "first"
3097
+ },
3098
+ value: {
3099
+ kind: "Variable",
3100
+ name: {
3101
+ kind: "Name",
3102
+ value: "first"
3103
+ }
3104
+ }
3105
+ },
3106
+ {
3107
+ kind: "Argument",
3108
+ name: {
3109
+ kind: "Name",
3110
+ value: "last"
3111
+ },
3112
+ value: {
3113
+ kind: "Variable",
3114
+ name: {
3115
+ kind: "Name",
3116
+ value: "last"
3117
+ }
3118
+ }
3119
+ },
3120
+ {
3121
+ kind: "Argument",
3122
+ name: {
3123
+ kind: "Name",
3124
+ value: "query"
3125
+ },
3126
+ value: {
3127
+ kind: "Variable",
3128
+ name: {
3129
+ kind: "Name",
3130
+ value: "query"
3131
+ }
3132
+ }
3133
+ },
3134
+ {
3135
+ kind: "Argument",
3136
+ name: {
3137
+ kind: "Name",
3138
+ value: "reverse"
3139
+ },
3140
+ value: {
3141
+ kind: "Variable",
3142
+ name: {
3143
+ kind: "Name",
3144
+ value: "reverse"
3145
+ }
3146
+ }
3147
+ },
3148
+ {
2428
3149
  kind: "Argument",
2429
3150
  name: {
2430
3151
  kind: "Name",
@@ -2738,18 +3459,99 @@ const AddMediasDocument = {
2738
3459
  value: "file_name"
2739
3460
  }
2740
3461
  },
2741
- {
2742
- kind: "Field",
3462
+ {
3463
+ kind: "Field",
3464
+ name: {
3465
+ kind: "Name",
3466
+ value: "url"
3467
+ }
3468
+ },
3469
+ {
3470
+ kind: "Field",
3471
+ name: {
3472
+ kind: "Name",
3473
+ value: "size"
3474
+ }
3475
+ }
3476
+ ]
3477
+ }
3478
+ }
3479
+ ]
3480
+ }
3481
+ }
3482
+ ]
3483
+ };
3484
+ const DeleteMediasDocument = {
3485
+ kind: "Document",
3486
+ definitions: [
3487
+ {
3488
+ kind: "OperationDefinition",
3489
+ operation: "mutation",
3490
+ name: {
3491
+ kind: "Name",
3492
+ value: "DeleteMedias"
3493
+ },
3494
+ variableDefinitions: [
3495
+ {
3496
+ kind: "VariableDefinition",
3497
+ variable: {
3498
+ kind: "Variable",
3499
+ name: {
3500
+ kind: "Name",
3501
+ value: "cursors"
3502
+ }
3503
+ },
3504
+ type: {
3505
+ kind: "NonNullType",
3506
+ type: {
3507
+ kind: "ListType",
3508
+ type: {
3509
+ kind: "NonNullType",
3510
+ type: {
3511
+ kind: "NamedType",
3512
+ name: {
3513
+ kind: "Name",
3514
+ value: "ID"
3515
+ }
3516
+ }
3517
+ }
3518
+ }
3519
+ }
3520
+ }
3521
+ ],
3522
+ selectionSet: {
3523
+ kind: "SelectionSet",
3524
+ selections: [
3525
+ {
3526
+ kind: "Field",
3527
+ name: {
3528
+ kind: "Name",
3529
+ value: "deleteMedias"
3530
+ },
3531
+ arguments: [
3532
+ {
3533
+ kind: "Argument",
3534
+ name: {
3535
+ kind: "Name",
3536
+ value: "cursors"
3537
+ },
3538
+ value: {
3539
+ kind: "Variable",
2743
3540
  name: {
2744
3541
  kind: "Name",
2745
- value: "url"
3542
+ value: "cursors"
2746
3543
  }
2747
- },
3544
+ }
3545
+ }
3546
+ ],
3547
+ selectionSet: {
3548
+ kind: "SelectionSet",
3549
+ selections: [
2748
3550
  {
2749
3551
  kind: "Field",
2750
3552
  name: {
2751
3553
  kind: "Name",
2752
- value: "size"
3554
+ value: "message"
2753
3555
  }
2754
3556
  }
2755
3557
  ]
@@ -2760,15 +3562,15 @@ const AddMediasDocument = {
2760
3562
  }
2761
3563
  ]
2762
3564
  };
2763
- const DeleteMediasDocument = {
3565
+ const MetafieldsDocument = {
2764
3566
  kind: "Document",
2765
3567
  definitions: [
2766
3568
  {
2767
3569
  kind: "OperationDefinition",
2768
- operation: "mutation",
3570
+ operation: "query",
2769
3571
  name: {
2770
3572
  kind: "Name",
2771
- value: "DeleteMedias"
3573
+ value: "Metafields"
2772
3574
  },
2773
3575
  variableDefinitions: [
2774
3576
  {
@@ -2777,23 +3579,31 @@ const DeleteMediasDocument = {
2777
3579
  kind: "Variable",
2778
3580
  name: {
2779
3581
  kind: "Name",
2780
- value: "cursors"
3582
+ value: "filterKeys"
2781
3583
  }
2782
3584
  },
2783
3585
  type: {
2784
- kind: "NonNullType",
2785
- type: {
2786
- kind: "ListType",
2787
- type: {
2788
- kind: "NonNullType",
2789
- type: {
2790
- kind: "NamedType",
2791
- name: {
2792
- kind: "Name",
2793
- value: "ID"
2794
- }
2795
- }
2796
- }
3586
+ kind: "NamedType",
3587
+ name: {
3588
+ kind: "Name",
3589
+ value: "MetafieldFilterKeys"
3590
+ }
3591
+ }
3592
+ },
3593
+ {
3594
+ kind: "VariableDefinition",
3595
+ variable: {
3596
+ kind: "Variable",
3597
+ name: {
3598
+ kind: "Name",
3599
+ value: "first"
3600
+ }
3601
+ },
3602
+ type: {
3603
+ kind: "NamedType",
3604
+ name: {
3605
+ kind: "Name",
3606
+ value: "Int"
2797
3607
  }
2798
3608
  }
2799
3609
  }
@@ -2805,20 +3615,34 @@ const DeleteMediasDocument = {
2805
3615
  kind: "Field",
2806
3616
  name: {
2807
3617
  kind: "Name",
2808
- value: "deleteMedias"
3618
+ value: "metafields"
2809
3619
  },
2810
3620
  arguments: [
2811
3621
  {
2812
3622
  kind: "Argument",
2813
3623
  name: {
2814
3624
  kind: "Name",
2815
- value: "cursors"
3625
+ value: "filterKeys"
2816
3626
  },
2817
3627
  value: {
2818
3628
  kind: "Variable",
2819
3629
  name: {
2820
3630
  kind: "Name",
2821
- value: "cursors"
3631
+ value: "filterKeys"
3632
+ }
3633
+ }
3634
+ },
3635
+ {
3636
+ kind: "Argument",
3637
+ name: {
3638
+ kind: "Name",
3639
+ value: "first"
3640
+ },
3641
+ value: {
3642
+ kind: "Variable",
3643
+ name: {
3644
+ kind: "Name",
3645
+ value: "first"
2822
3646
  }
2823
3647
  }
2824
3648
  }
@@ -2830,7 +3654,71 @@ const DeleteMediasDocument = {
2830
3654
  kind: "Field",
2831
3655
  name: {
2832
3656
  kind: "Name",
2833
- value: "message"
3657
+ value: "edges"
3658
+ },
3659
+ selectionSet: {
3660
+ kind: "SelectionSet",
3661
+ selections: [
3662
+ {
3663
+ kind: "Field",
3664
+ name: {
3665
+ kind: "Name",
3666
+ value: "node"
3667
+ },
3668
+ selectionSet: {
3669
+ kind: "SelectionSet",
3670
+ selections: [
3671
+ {
3672
+ kind: "Field",
3673
+ name: {
3674
+ kind: "Name",
3675
+ value: "_id"
3676
+ }
3677
+ },
3678
+ {
3679
+ kind: "Field",
3680
+ name: {
3681
+ kind: "Name",
3682
+ value: "entry"
3683
+ }
3684
+ },
3685
+ {
3686
+ kind: "Field",
3687
+ name: {
3688
+ kind: "Name",
3689
+ value: "name"
3690
+ }
3691
+ },
3692
+ {
3693
+ kind: "Field",
3694
+ name: {
3695
+ kind: "Name",
3696
+ value: "type"
3697
+ }
3698
+ },
3699
+ {
3700
+ kind: "Field",
3701
+ name: {
3702
+ kind: "Name",
3703
+ value: "metaobject_reference"
3704
+ },
3705
+ selectionSet: {
3706
+ kind: "SelectionSet",
3707
+ selections: [
3708
+ {
3709
+ kind: "Field",
3710
+ name: {
3711
+ kind: "Name",
3712
+ value: "_id"
3713
+ }
3714
+ }
3715
+ ]
3716
+ }
3717
+ }
3718
+ ]
3719
+ }
3720
+ }
3721
+ ]
2834
3722
  }
2835
3723
  }
2836
3724
  ]
@@ -2841,7 +3729,7 @@ const DeleteMediasDocument = {
2841
3729
  }
2842
3730
  ]
2843
3731
  };
2844
- const MetafieldsDocument = {
3732
+ const MetaobjectEntriesDocument = {
2845
3733
  kind: "Document",
2846
3734
  definitions: [
2847
3735
  {
@@ -2849,7 +3737,7 @@ const MetafieldsDocument = {
2849
3737
  operation: "query",
2850
3738
  name: {
2851
3739
  kind: "Name",
2852
- value: "Metafields"
3740
+ value: "MetaobjectEntries"
2853
3741
  },
2854
3742
  variableDefinitions: [
2855
3743
  {
@@ -2858,14 +3746,31 @@ const MetafieldsDocument = {
2858
3746
  kind: "Variable",
2859
3747
  name: {
2860
3748
  kind: "Name",
2861
- value: "filterKeys"
3749
+ value: "after"
2862
3750
  }
2863
3751
  },
2864
3752
  type: {
2865
3753
  kind: "NamedType",
2866
3754
  name: {
2867
3755
  kind: "Name",
2868
- value: "MetafieldFilterKeys"
3756
+ value: "ID"
3757
+ }
3758
+ }
3759
+ },
3760
+ {
3761
+ kind: "VariableDefinition",
3762
+ variable: {
3763
+ kind: "Variable",
3764
+ name: {
3765
+ kind: "Name",
3766
+ value: "before"
3767
+ }
3768
+ },
3769
+ type: {
3770
+ kind: "NamedType",
3771
+ name: {
3772
+ kind: "Name",
3773
+ value: "ID"
2869
3774
  }
2870
3775
  }
2871
3776
  },
@@ -2885,6 +3790,57 @@ const MetafieldsDocument = {
2885
3790
  value: "Int"
2886
3791
  }
2887
3792
  }
3793
+ },
3794
+ {
3795
+ kind: "VariableDefinition",
3796
+ variable: {
3797
+ kind: "Variable",
3798
+ name: {
3799
+ kind: "Name",
3800
+ value: "last"
3801
+ }
3802
+ },
3803
+ type: {
3804
+ kind: "NamedType",
3805
+ name: {
3806
+ kind: "Name",
3807
+ value: "Int"
3808
+ }
3809
+ }
3810
+ },
3811
+ {
3812
+ kind: "VariableDefinition",
3813
+ variable: {
3814
+ kind: "Variable",
3815
+ name: {
3816
+ kind: "Name",
3817
+ value: "query"
3818
+ }
3819
+ },
3820
+ type: {
3821
+ kind: "NamedType",
3822
+ name: {
3823
+ kind: "Name",
3824
+ value: "String"
3825
+ }
3826
+ }
3827
+ },
3828
+ {
3829
+ kind: "VariableDefinition",
3830
+ variable: {
3831
+ kind: "Variable",
3832
+ name: {
3833
+ kind: "Name",
3834
+ value: "filterKeys"
3835
+ }
3836
+ },
3837
+ type: {
3838
+ kind: "NamedType",
3839
+ name: {
3840
+ kind: "Name",
3841
+ value: "MetaobjectEntryFilterKeys"
3842
+ }
3843
+ }
2888
3844
  }
2889
3845
  ],
2890
3846
  selectionSet: {
@@ -2894,20 +3850,62 @@ const MetafieldsDocument = {
2894
3850
  kind: "Field",
2895
3851
  name: {
2896
3852
  kind: "Name",
2897
- value: "metafields"
3853
+ value: "metaobjectEntries"
2898
3854
  },
2899
3855
  arguments: [
2900
3856
  {
2901
3857
  kind: "Argument",
2902
3858
  name: {
2903
3859
  kind: "Name",
2904
- value: "filterKeys"
3860
+ value: "after"
3861
+ },
3862
+ value: {
3863
+ kind: "Variable",
3864
+ name: {
3865
+ kind: "Name",
3866
+ value: "after"
3867
+ }
3868
+ }
3869
+ },
3870
+ {
3871
+ kind: "Argument",
3872
+ name: {
3873
+ kind: "Name",
3874
+ value: "before"
3875
+ },
3876
+ value: {
3877
+ kind: "Variable",
3878
+ name: {
3879
+ kind: "Name",
3880
+ value: "before"
3881
+ }
3882
+ }
3883
+ },
3884
+ {
3885
+ kind: "Argument",
3886
+ name: {
3887
+ kind: "Name",
3888
+ value: "first"
3889
+ },
3890
+ value: {
3891
+ kind: "Variable",
3892
+ name: {
3893
+ kind: "Name",
3894
+ value: "first"
3895
+ }
3896
+ }
3897
+ },
3898
+ {
3899
+ kind: "Argument",
3900
+ name: {
3901
+ kind: "Name",
3902
+ value: "last"
2905
3903
  },
2906
3904
  value: {
2907
3905
  kind: "Variable",
2908
3906
  name: {
2909
3907
  kind: "Name",
2910
- value: "filterKeys"
3908
+ value: "last"
2911
3909
  }
2912
3910
  }
2913
3911
  },
@@ -2915,13 +3913,27 @@ const MetafieldsDocument = {
2915
3913
  kind: "Argument",
2916
3914
  name: {
2917
3915
  kind: "Name",
2918
- value: "first"
3916
+ value: "query"
2919
3917
  },
2920
3918
  value: {
2921
3919
  kind: "Variable",
2922
3920
  name: {
2923
3921
  kind: "Name",
2924
- value: "first"
3922
+ value: "query"
3923
+ }
3924
+ }
3925
+ },
3926
+ {
3927
+ kind: "Argument",
3928
+ name: {
3929
+ kind: "Name",
3930
+ value: "filterKeys"
3931
+ },
3932
+ value: {
3933
+ kind: "Variable",
3934
+ name: {
3935
+ kind: "Name",
3936
+ value: "filterKeys"
2925
3937
  }
2926
3938
  }
2927
3939
  }
@@ -2929,6 +3941,46 @@ const MetafieldsDocument = {
2929
3941
  selectionSet: {
2930
3942
  kind: "SelectionSet",
2931
3943
  selections: [
3944
+ {
3945
+ kind: "Field",
3946
+ name: {
3947
+ kind: "Name",
3948
+ value: "pageInfo"
3949
+ },
3950
+ selectionSet: {
3951
+ kind: "SelectionSet",
3952
+ selections: [
3953
+ {
3954
+ kind: "Field",
3955
+ name: {
3956
+ kind: "Name",
3957
+ value: "endCursor"
3958
+ }
3959
+ },
3960
+ {
3961
+ kind: "Field",
3962
+ name: {
3963
+ kind: "Name",
3964
+ value: "hasNextPage"
3965
+ }
3966
+ },
3967
+ {
3968
+ kind: "Field",
3969
+ name: {
3970
+ kind: "Name",
3971
+ value: "hasPreviousPage"
3972
+ }
3973
+ },
3974
+ {
3975
+ kind: "Field",
3976
+ name: {
3977
+ kind: "Name",
3978
+ value: "startCursor"
3979
+ }
3980
+ }
3981
+ ]
3982
+ }
3983
+ },
2932
3984
  {
2933
3985
  kind: "Field",
2934
3986
  name: {
@@ -2958,21 +4010,7 @@ const MetafieldsDocument = {
2958
4010
  kind: "Field",
2959
4011
  name: {
2960
4012
  kind: "Name",
2961
- value: "entry"
2962
- }
2963
- },
2964
- {
2965
- kind: "Field",
2966
- name: {
2967
- kind: "Name",
2968
- value: "name"
2969
- }
2970
- },
2971
- {
2972
- kind: "Field",
2973
- name: {
2974
- kind: "Name",
2975
- value: "type"
4013
+ value: "title"
2976
4014
  }
2977
4015
  }
2978
4016
  ]
@@ -2989,7 +4027,7 @@ const MetafieldsDocument = {
2989
4027
  }
2990
4028
  ]
2991
4029
  };
2992
- const MetaobjectEntriesDocument = {
4030
+ const MetaobjectsDocument = {
2993
4031
  kind: "Document",
2994
4032
  definitions: [
2995
4033
  {
@@ -2997,7 +4035,7 @@ const MetaobjectEntriesDocument = {
2997
4035
  operation: "query",
2998
4036
  name: {
2999
4037
  kind: "Name",
3000
- value: "MetaobjectEntries"
4038
+ value: "Metaobjects"
3001
4039
  },
3002
4040
  variableDefinitions: [
3003
4041
  {
@@ -3006,14 +4044,14 @@ const MetaobjectEntriesDocument = {
3006
4044
  kind: "Variable",
3007
4045
  name: {
3008
4046
  kind: "Name",
3009
- value: "after"
4047
+ value: "filterKeys"
3010
4048
  }
3011
4049
  },
3012
4050
  type: {
3013
4051
  kind: "NamedType",
3014
4052
  name: {
3015
4053
  kind: "Name",
3016
- value: "ID"
4054
+ value: "MetaobjectFilterKeys"
3017
4055
  }
3018
4056
  }
3019
4057
  },
@@ -3023,7 +4061,7 @@ const MetaobjectEntriesDocument = {
3023
4061
  kind: "Variable",
3024
4062
  name: {
3025
4063
  kind: "Name",
3026
- value: "before"
4064
+ value: "after"
3027
4065
  }
3028
4066
  },
3029
4067
  type: {
@@ -3040,14 +4078,14 @@ const MetaobjectEntriesDocument = {
3040
4078
  kind: "Variable",
3041
4079
  name: {
3042
4080
  kind: "Name",
3043
- value: "first"
4081
+ value: "before"
3044
4082
  }
3045
4083
  },
3046
4084
  type: {
3047
4085
  kind: "NamedType",
3048
4086
  name: {
3049
4087
  kind: "Name",
3050
- value: "Int"
4088
+ value: "ID"
3051
4089
  }
3052
4090
  }
3053
4091
  },
@@ -3057,7 +4095,7 @@ const MetaobjectEntriesDocument = {
3057
4095
  kind: "Variable",
3058
4096
  name: {
3059
4097
  kind: "Name",
3060
- value: "last"
4098
+ value: "first"
3061
4099
  }
3062
4100
  },
3063
4101
  type: {
@@ -3074,14 +4112,14 @@ const MetaobjectEntriesDocument = {
3074
4112
  kind: "Variable",
3075
4113
  name: {
3076
4114
  kind: "Name",
3077
- value: "query"
4115
+ value: "last"
3078
4116
  }
3079
4117
  },
3080
4118
  type: {
3081
4119
  kind: "NamedType",
3082
4120
  name: {
3083
4121
  kind: "Name",
3084
- value: "String"
4122
+ value: "Int"
3085
4123
  }
3086
4124
  }
3087
4125
  },
@@ -3091,14 +4129,14 @@ const MetaobjectEntriesDocument = {
3091
4129
  kind: "Variable",
3092
4130
  name: {
3093
4131
  kind: "Name",
3094
- value: "filterKeys"
4132
+ value: "query"
3095
4133
  }
3096
4134
  },
3097
4135
  type: {
3098
4136
  kind: "NamedType",
3099
4137
  name: {
3100
4138
  kind: "Name",
3101
- value: "MetaobjectEntryFilterKeys"
4139
+ value: "String"
3102
4140
  }
3103
4141
  }
3104
4142
  }
@@ -3110,20 +4148,20 @@ const MetaobjectEntriesDocument = {
3110
4148
  kind: "Field",
3111
4149
  name: {
3112
4150
  kind: "Name",
3113
- value: "metaobjectEntries"
4151
+ value: "metaobjects"
3114
4152
  },
3115
4153
  arguments: [
3116
4154
  {
3117
4155
  kind: "Argument",
3118
4156
  name: {
3119
4157
  kind: "Name",
3120
- value: "after"
4158
+ value: "filterKeys"
3121
4159
  },
3122
4160
  value: {
3123
4161
  kind: "Variable",
3124
4162
  name: {
3125
4163
  kind: "Name",
3126
- value: "after"
4164
+ value: "filterKeys"
3127
4165
  }
3128
4166
  }
3129
4167
  },
@@ -3131,13 +4169,13 @@ const MetaobjectEntriesDocument = {
3131
4169
  kind: "Argument",
3132
4170
  name: {
3133
4171
  kind: "Name",
3134
- value: "before"
4172
+ value: "after"
3135
4173
  },
3136
4174
  value: {
3137
4175
  kind: "Variable",
3138
4176
  name: {
3139
4177
  kind: "Name",
3140
- value: "before"
4178
+ value: "after"
3141
4179
  }
3142
4180
  }
3143
4181
  },
@@ -3145,13 +4183,13 @@ const MetaobjectEntriesDocument = {
3145
4183
  kind: "Argument",
3146
4184
  name: {
3147
4185
  kind: "Name",
3148
- value: "first"
4186
+ value: "before"
3149
4187
  },
3150
4188
  value: {
3151
4189
  kind: "Variable",
3152
4190
  name: {
3153
4191
  kind: "Name",
3154
- value: "first"
4192
+ value: "before"
3155
4193
  }
3156
4194
  }
3157
4195
  },
@@ -3159,13 +4197,13 @@ const MetaobjectEntriesDocument = {
3159
4197
  kind: "Argument",
3160
4198
  name: {
3161
4199
  kind: "Name",
3162
- value: "last"
4200
+ value: "first"
3163
4201
  },
3164
4202
  value: {
3165
4203
  kind: "Variable",
3166
4204
  name: {
3167
4205
  kind: "Name",
3168
- value: "last"
4206
+ value: "first"
3169
4207
  }
3170
4208
  }
3171
4209
  },
@@ -3173,13 +4211,13 @@ const MetaobjectEntriesDocument = {
3173
4211
  kind: "Argument",
3174
4212
  name: {
3175
4213
  kind: "Name",
3176
- value: "query"
4214
+ value: "last"
3177
4215
  },
3178
4216
  value: {
3179
4217
  kind: "Variable",
3180
4218
  name: {
3181
4219
  kind: "Name",
3182
- value: "query"
4220
+ value: "last"
3183
4221
  }
3184
4222
  }
3185
4223
  },
@@ -3187,13 +4225,13 @@ const MetaobjectEntriesDocument = {
3187
4225
  kind: "Argument",
3188
4226
  name: {
3189
4227
  kind: "Name",
3190
- value: "filterKeys"
4228
+ value: "query"
3191
4229
  },
3192
4230
  value: {
3193
4231
  kind: "Variable",
3194
4232
  name: {
3195
4233
  kind: "Name",
3196
- value: "filterKeys"
4234
+ value: "query"
3197
4235
  }
3198
4236
  }
3199
4237
  }
@@ -3270,7 +4308,7 @@ const MetaobjectEntriesDocument = {
3270
4308
  kind: "Field",
3271
4309
  name: {
3272
4310
  kind: "Name",
3273
- value: "title"
4311
+ value: "name"
3274
4312
  }
3275
4313
  }
3276
4314
  ]
@@ -3287,7 +4325,7 @@ const MetaobjectEntriesDocument = {
3287
4325
  }
3288
4326
  ]
3289
4327
  };
3290
- const MetaobjectsDocument = {
4328
+ const PagesDocument = {
3291
4329
  kind: "Document",
3292
4330
  definitions: [
3293
4331
  {
@@ -3295,7 +4333,7 @@ const MetaobjectsDocument = {
3295
4333
  operation: "query",
3296
4334
  name: {
3297
4335
  kind: "Name",
3298
- value: "Metaobjects"
4336
+ value: "Pages"
3299
4337
  },
3300
4338
  variableDefinitions: [
3301
4339
  {
@@ -3311,7 +4349,7 @@ const MetaobjectsDocument = {
3311
4349
  kind: "NamedType",
3312
4350
  name: {
3313
4351
  kind: "Name",
3314
- value: "MetaobjectFilterKeys"
4352
+ value: "PageFilterKeys"
3315
4353
  }
3316
4354
  }
3317
4355
  },
@@ -3408,7 +4446,7 @@ const MetaobjectsDocument = {
3408
4446
  kind: "Field",
3409
4447
  name: {
3410
4448
  kind: "Name",
3411
- value: "metaobjects"
4449
+ value: "pages"
3412
4450
  },
3413
4451
  arguments: [
3414
4452
  {
@@ -3568,7 +4606,33 @@ const MetaobjectsDocument = {
3568
4606
  kind: "Field",
3569
4607
  name: {
3570
4608
  kind: "Name",
3571
- value: "name"
4609
+ value: "title"
4610
+ }
4611
+ },
4612
+ {
4613
+ kind: "Field",
4614
+ name: {
4615
+ kind: "Name",
4616
+ value: "image"
4617
+ },
4618
+ selectionSet: {
4619
+ kind: "SelectionSet",
4620
+ selections: [
4621
+ {
4622
+ kind: "Field",
4623
+ name: {
4624
+ kind: "Name",
4625
+ value: "_id"
4626
+ }
4627
+ },
4628
+ {
4629
+ kind: "Field",
4630
+ name: {
4631
+ kind: "Name",
4632
+ value: "url"
4633
+ }
4634
+ }
4635
+ ]
3572
4636
  }
3573
4637
  }
3574
4638
  ]
@@ -3585,7 +4649,7 @@ const MetaobjectsDocument = {
3585
4649
  }
3586
4650
  ]
3587
4651
  };
3588
- const PagesDocument = {
4652
+ const ProductsDocument = {
3589
4653
  kind: "Document",
3590
4654
  definitions: [
3591
4655
  {
@@ -3593,7 +4657,7 @@ const PagesDocument = {
3593
4657
  operation: "query",
3594
4658
  name: {
3595
4659
  kind: "Name",
3596
- value: "Pages"
4660
+ value: "Products"
3597
4661
  },
3598
4662
  variableDefinitions: [
3599
4663
  {
@@ -3602,14 +4666,14 @@ const PagesDocument = {
3602
4666
  kind: "Variable",
3603
4667
  name: {
3604
4668
  kind: "Name",
3605
- value: "filterKeys"
4669
+ value: "after"
3606
4670
  }
3607
4671
  },
3608
4672
  type: {
3609
4673
  kind: "NamedType",
3610
4674
  name: {
3611
4675
  kind: "Name",
3612
- value: "PageFilterKeys"
4676
+ value: "ID"
3613
4677
  }
3614
4678
  }
3615
4679
  },
@@ -3619,7 +4683,7 @@ const PagesDocument = {
3619
4683
  kind: "Variable",
3620
4684
  name: {
3621
4685
  kind: "Name",
3622
- value: "after"
4686
+ value: "before"
3623
4687
  }
3624
4688
  },
3625
4689
  type: {
@@ -3636,14 +4700,14 @@ const PagesDocument = {
3636
4700
  kind: "Variable",
3637
4701
  name: {
3638
4702
  kind: "Name",
3639
- value: "before"
4703
+ value: "first"
3640
4704
  }
3641
4705
  },
3642
4706
  type: {
3643
4707
  kind: "NamedType",
3644
4708
  name: {
3645
4709
  kind: "Name",
3646
- value: "ID"
4710
+ value: "Int"
3647
4711
  }
3648
4712
  }
3649
4713
  },
@@ -3653,7 +4717,7 @@ const PagesDocument = {
3653
4717
  kind: "Variable",
3654
4718
  name: {
3655
4719
  kind: "Name",
3656
- value: "first"
4720
+ value: "last"
3657
4721
  }
3658
4722
  },
3659
4723
  type: {
@@ -3670,14 +4734,14 @@ const PagesDocument = {
3670
4734
  kind: "Variable",
3671
4735
  name: {
3672
4736
  kind: "Name",
3673
- value: "last"
4737
+ value: "query"
3674
4738
  }
3675
4739
  },
3676
4740
  type: {
3677
4741
  kind: "NamedType",
3678
4742
  name: {
3679
4743
  kind: "Name",
3680
- value: "Int"
4744
+ value: "String"
3681
4745
  }
3682
4746
  }
3683
4747
  },
@@ -3687,14 +4751,14 @@ const PagesDocument = {
3687
4751
  kind: "Variable",
3688
4752
  name: {
3689
4753
  kind: "Name",
3690
- value: "query"
4754
+ value: "filterKeys"
3691
4755
  }
3692
4756
  },
3693
4757
  type: {
3694
4758
  kind: "NamedType",
3695
4759
  name: {
3696
4760
  kind: "Name",
3697
- value: "String"
4761
+ value: "ProductFilterKeys"
3698
4762
  }
3699
4763
  }
3700
4764
  }
@@ -3706,20 +4770,20 @@ const PagesDocument = {
3706
4770
  kind: "Field",
3707
4771
  name: {
3708
4772
  kind: "Name",
3709
- value: "pages"
4773
+ value: "products"
3710
4774
  },
3711
4775
  arguments: [
3712
4776
  {
3713
4777
  kind: "Argument",
3714
4778
  name: {
3715
4779
  kind: "Name",
3716
- value: "filterKeys"
4780
+ value: "after"
3717
4781
  },
3718
4782
  value: {
3719
4783
  kind: "Variable",
3720
4784
  name: {
3721
4785
  kind: "Name",
3722
- value: "filterKeys"
4786
+ value: "after"
3723
4787
  }
3724
4788
  }
3725
4789
  },
@@ -3727,13 +4791,13 @@ const PagesDocument = {
3727
4791
  kind: "Argument",
3728
4792
  name: {
3729
4793
  kind: "Name",
3730
- value: "after"
4794
+ value: "before"
3731
4795
  },
3732
4796
  value: {
3733
4797
  kind: "Variable",
3734
4798
  name: {
3735
4799
  kind: "Name",
3736
- value: "after"
4800
+ value: "before"
3737
4801
  }
3738
4802
  }
3739
4803
  },
@@ -3741,13 +4805,13 @@ const PagesDocument = {
3741
4805
  kind: "Argument",
3742
4806
  name: {
3743
4807
  kind: "Name",
3744
- value: "before"
4808
+ value: "first"
3745
4809
  },
3746
4810
  value: {
3747
4811
  kind: "Variable",
3748
4812
  name: {
3749
4813
  kind: "Name",
3750
- value: "before"
4814
+ value: "first"
3751
4815
  }
3752
4816
  }
3753
4817
  },
@@ -3755,13 +4819,13 @@ const PagesDocument = {
3755
4819
  kind: "Argument",
3756
4820
  name: {
3757
4821
  kind: "Name",
3758
- value: "first"
4822
+ value: "last"
3759
4823
  },
3760
4824
  value: {
3761
4825
  kind: "Variable",
3762
4826
  name: {
3763
4827
  kind: "Name",
3764
- value: "first"
4828
+ value: "last"
3765
4829
  }
3766
4830
  }
3767
4831
  },
@@ -3769,13 +4833,13 @@ const PagesDocument = {
3769
4833
  kind: "Argument",
3770
4834
  name: {
3771
4835
  kind: "Name",
3772
- value: "last"
4836
+ value: "query"
3773
4837
  },
3774
4838
  value: {
3775
4839
  kind: "Variable",
3776
4840
  name: {
3777
4841
  kind: "Name",
3778
- value: "last"
4842
+ value: "query"
3779
4843
  }
3780
4844
  }
3781
4845
  },
@@ -3783,13 +4847,13 @@ const PagesDocument = {
3783
4847
  kind: "Argument",
3784
4848
  name: {
3785
4849
  kind: "Name",
3786
- value: "query"
4850
+ value: "filterKeys"
3787
4851
  },
3788
4852
  value: {
3789
4853
  kind: "Variable",
3790
4854
  name: {
3791
4855
  kind: "Name",
3792
- value: "query"
4856
+ value: "filterKeys"
3793
4857
  }
3794
4858
  }
3795
4859
  }
@@ -3909,7 +4973,7 @@ const PagesDocument = {
3909
4973
  }
3910
4974
  ]
3911
4975
  };
3912
- const ProductsDocument = {
4976
+ const CustomerSegmentsDocument = {
3913
4977
  kind: "Document",
3914
4978
  definitions: [
3915
4979
  {
@@ -3917,7 +4981,7 @@ const ProductsDocument = {
3917
4981
  operation: "query",
3918
4982
  name: {
3919
4983
  kind: "Name",
3920
- value: "Products"
4984
+ value: "CustomerSegments"
3921
4985
  },
3922
4986
  variableDefinitions: [
3923
4987
  {
@@ -4018,7 +5082,7 @@ const ProductsDocument = {
4018
5082
  kind: "NamedType",
4019
5083
  name: {
4020
5084
  kind: "Name",
4021
- value: "ProductFilterKeys"
5085
+ value: "CustomerSegmentFilterKeys"
4022
5086
  }
4023
5087
  }
4024
5088
  }
@@ -4030,7 +5094,7 @@ const ProductsDocument = {
4030
5094
  kind: "Field",
4031
5095
  name: {
4032
5096
  kind: "Name",
4033
- value: "products"
5097
+ value: "customerSegments"
4034
5098
  },
4035
5099
  arguments: [
4036
5100
  {
@@ -4192,32 +5256,6 @@ const ProductsDocument = {
4192
5256
  kind: "Name",
4193
5257
  value: "title"
4194
5258
  }
4195
- },
4196
- {
4197
- kind: "Field",
4198
- name: {
4199
- kind: "Name",
4200
- value: "image"
4201
- },
4202
- selectionSet: {
4203
- kind: "SelectionSet",
4204
- selections: [
4205
- {
4206
- kind: "Field",
4207
- name: {
4208
- kind: "Name",
4209
- value: "_id"
4210
- }
4211
- },
4212
- {
4213
- kind: "Field",
4214
- name: {
4215
- kind: "Name",
4216
- value: "url"
4217
- }
4218
- }
4219
- ]
4220
- }
4221
5259
  }
4222
5260
  ]
4223
5261
  }
@@ -4597,4 +5635,4 @@ const VariantsDocument = {
4597
5635
  }
4598
5636
  ]
4599
5637
  };
4600
- export { graphql_AccountEmailIntent as AccountEmailIntent, graphql_AccountEmailUpdateActionIntent as AccountEmailUpdateActionIntent, AddMediasDocument, graphql_graphql_AppSortKeys as AppSortKeys, graphql_ArticleCommentPermission as ArticleCommentPermission, graphql_ArticleSortKeys as ArticleSortKeys, graphql_ArticleStatus as ArticleStatus, ArticlesDocument, graphql_BlogSortKeys as BlogSortKeys, BlogsDocument, graphql_CartDiscountScope as CartDiscountScope, graphql_CartDiscountSource as CartDiscountSource, graphql_CartDiscountStatus as CartDiscountStatus, graphql_CartDiscountType as CartDiscountType, graphql_CartLineItemSource as CartLineItemSource, graphql_CartSortkeys as CartSortkeys, graphql_CartStatus as CartStatus, graphql_CheckoutAutoFulfillment as CheckoutAutoFulfillment, graphql_CheckoutContactMethod as CheckoutContactMethod, graphql_CheckoutExcludeRequiredOptional as CheckoutExcludeRequiredOptional, graphql_CheckoutNameRequirement as CheckoutNameRequirement, graphql_CollectionProductSortkey as CollectionProductSortkey, graphql_CollectionSortKey as CollectionSortKey, CollectionsDocument, graphql_CustomerAddressSortkeys as CustomerAddressSortkeys, graphql_CustomerSegmentCombine as CustomerSegmentCombine, graphql_CustomerSegmentConditionField as CustomerSegmentConditionField, graphql_CustomerSegmentConditionOperator as CustomerSegmentConditionOperator, graphql_CustomerSegmentSortkeys as CustomerSegmentSortkeys, graphql_CustomerSortkeys as CustomerSortkeys, graphql_DefaultThemeTemplateType as DefaultThemeTemplateType, DeleteMediasDocument, graphql_DeliveryProfileSortKeys as DeliveryProfileSortKeys, graphql_DeliveryZoneRateConditionType as DeliveryZoneRateConditionType, graphql_DeliveryZoneSortKeys as DeliveryZoneSortKeys, graphql_DiscountAooMinimumPurchaseType as DiscountAooMinimumPurchaseType, graphql_DiscountAooType as DiscountAooType, graphql_DiscountAopApplication as DiscountAopApplication, graphql_DiscountAopMinimunPurchaseType as DiscountAopMinimunPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimunPurchaseType as DiscountBxgyMinimunPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimunPurchaseType as DiscountFsMinimunPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, LinklistsDocument, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, MetaobjectEntriesDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, MetaobjectsDocument, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoicePaymentStatus as StoreInvoicePaymentStatus, graphql_StoreInvoiceRefundStatus as StoreInvoiceRefundStatus, graphql_StoreInvoiceSortKeys as StoreInvoiceSortKeys, graphql_StoreLengthUnit as StoreLengthUnit, graphql_StoreSortkeys as StoreSortkeys, graphql_StoreWeightUnit as StoreWeightUnit, graphql_SupplierSortKeys as SupplierSortKeys, graphql_TaxOverrideLevel as TaxOverrideLevel, graphql_TaxOverrideType as TaxOverrideType, graphql_TaxSortKeys as TaxSortKeys, graphql_graphql_ThemeSortKeys as ThemeSortKeys, graphql_TransferSortKeys as TransferSortKeys, graphql_TransferStatus as TransferStatus, graphql_UserDeviceSortKeys as UserDeviceSortKeys, graphql_UserPasskeySortKeys as UserPasskeySortKeys, graphql_UserSessionSortKeys as UserSessionSortKeys, graphql_VariantSortKeys as VariantSortKeys, graphql_VariantStatus as VariantStatus, VariantsDocument, graphql_WhoamiType as WhoamiType, graphql_AppSortKeys as _AppSortKeys, graphql_CategorySortKeys as _CategorySortKeys, graphql_ContinentSortKeys as _ContinentSortKeys, graphql_CountrySortKeys as _CountrySortKeys, graphql_CurrencySortKeys as _CurrencySortKeys, graphql_HscodeSortKeys as _HscodeSortKeys, graphql_LanguageSortKeys as _LanguageSortKeys, graphql_PackageSortKeys as _PackageSortKeys, graphql_PaymentGatewaySortKeys as _PaymentGatewaySortKeys, graphql_PaymentProviderSortKeys as _PaymentProviderSortKeys, graphql_PhoneSortKeys as _PhoneSortKeys, graphql_RegionSortKeys as _RegionSortKeys, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
5638
+ 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_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, CustomerSegmentsDocument, graphql_CustomerSortkeys as CustomerSortkeys, CustomersDocument, 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_DiscountAopMinimumPurchaseType as DiscountAopMinimumPurchaseType, graphql_DiscountAopType as DiscountAopType, graphql_DiscountApplication as DiscountApplication, graphql_DiscountBxgyApplication as DiscountBxgyApplication, graphql_DiscountBxgyMinimumPurchaseType as DiscountBxgyMinimumPurchaseType, graphql_DiscountBxgyOfferApplication as DiscountBxgyOfferApplication, graphql_DiscountBxgyType as DiscountBxgyType, graphql_DiscountFsMinimumPurchaseType as DiscountFsMinimumPurchaseType, graphql_DiscountFsType as DiscountFsType, graphql_DiscountSortKeys as DiscountSortKeys, graphql_DiscountType as DiscountType, graphql_DomainRecordType as DomainRecordType, graphql_DomainSortkeys as DomainSortkeys, graphql_EditThemeTemplateType as EditThemeTemplateType, graphql_InventorySortKeys as InventorySortKeys, graphql_LinklistSortKeys as LinklistSortKeys, graphql_LinklistType as LinklistType, LinklistsDocument, graphql_LocationSortKeys as LocationSortKeys, graphql_LogActions as LogActions, graphql_LogResources as LogResources, graphql_LogSortKeys as LogSortKeys, graphql_LoginMethod as LoginMethod, graphql_MarketSortKeys as MarketSortKeys, graphql_MarketVariantSortKeys as MarketVariantSortKeys, graphql_MediaSortKeys as MediaSortKeys, graphql_MediaType as MediaType, MediaUsageDocument, MediasDocument, graphql_MetafieldEntryType as MetafieldEntryType, graphql_MetafieldScope as MetafieldScope, graphql_MetafieldSortKeys as MetafieldSortKeys, graphql_MetafieldType as MetafieldType, MetafieldsDocument, MetaobjectEntriesDocument, graphql_MetaobjectEntrySortKeys as MetaobjectEntrySortKeys, graphql_MetaobjectFieldType as MetaobjectFieldType, graphql_MetaobjectSortKeys as MetaobjectSortKeys, MetaobjectsDocument, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayStoreInvoiceStatus as PayStoreInvoiceStatus, graphql_PaymentChargeType as PaymentChargeType, graphql_PaymentSortKeys as PaymentSortKeys, graphql_PaymentType as PaymentType, graphql_PickupProfileReadyIn as PickupProfileReadyIn, graphql_PickupProfileSortKeys as PickupProfileSortKeys, graphql_PresetSortKeys as PresetSortKeys, graphql_PresetType as PresetType, graphql_ProductSortKeys as ProductSortKeys, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingZoneRateConditionType as ShippingZoneRateConditionType, graphql_ShippingZoneSortKeys as ShippingZoneSortKeys, graphql_StaffAppPermission as StaffAppPermission, graphql_StaffSortKeys as StaffSortKeys, StoragePlanDocument, graphql_StoreInvoiceBeneficiary as StoreInvoiceBeneficiary, graphql_StoreInvoiceDisbursementStatus as StoreInvoiceDisbursementStatus, 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, _CountriesDocument, 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 };