@soppiya/app-bridge 1.2.0 → 1.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/articles-picker/model/useArticles.js +5 -2
- package/dist/components/blogs-picker/model/useBlogs.js +5 -2
- package/dist/components/collections-pciker/model/useCollections.js +5 -2
- package/dist/components/country-picker/model/{useContry.d.ts → useCountries.d.ts} +2 -2
- package/dist/components/country-picker/model/{useContry.js → useCountries.js} +8 -7
- package/dist/components/country-picker/ui/CountryPicker.d.ts +1 -1
- package/dist/components/country-picker/ui/CountryPicker.js +5 -5
- package/dist/components/country-picker/ui/CountryPicker.stories.d.ts +1 -1
- package/dist/components/customers-picker/model/useCustomers.d.ts +1 -1
- package/dist/components/customers-picker/model/useCustomers.js +6 -5
- package/dist/components/customers-picker/ui/CustomersPicker.d.ts +1 -1
- package/dist/components/customers-picker/ui/CustomersPicker.js +3 -3
- package/dist/components/customers-picker/ui/CustomersPicker.stories.d.ts +1 -1
- package/dist/components/link-list-picker/model/useLinkList.js +5 -2
- package/dist/components/link-list-picker/ui/LinkListPicker.d.ts +1 -1
- package/dist/components/link-list-picker/ui/LinkListPicker.js +2 -2
- package/dist/components/link-list-picker/ui/LinkListPicker.stories.d.ts +1 -1
- package/dist/components/meta-data/ui/VariantRefMetaField.d.ts +1 -1
- package/dist/components/metaobjects-entries-picker/model/useMetaobjectEntries.js +5 -2
- package/dist/components/metaobjects-entries-picker/ui/MetaobjectEntriesPicker.d.ts +1 -1
- package/dist/components/metaobjects-entries-picker/ui/MetaobjectEntriesPicker.js +2 -2
- package/dist/components/metaobjects-entries-picker/ui/MetaobjectEntriesPicker.stories.d.ts +1 -1
- package/dist/components/metaobjects-picker/model/useMetaobjects.js +5 -2
- package/dist/components/pages-picker/model/usePages.js +5 -2
- package/dist/components/pages-picker/ui/PagesPicker.js +2 -2
- package/dist/components/products-picker/model/useProducts.js +5 -2
- package/dist/components/products-picker/ui/ProductPicker.d.ts +1 -1
- package/dist/components/products-picker/ui/ProductPicker.js +2 -2
- package/dist/components/products-picker/ui/ProductsPicker.stories.d.ts +1 -1
- package/dist/components/region-picker/api/query.d.ts +8 -0
- package/dist/components/region-picker/api/query.js +18 -0
- package/dist/components/region-picker/index.d.ts +0 -0
- package/dist/components/region-picker/index.js +0 -0
- package/dist/components/region-picker/model/useRegion.d.ts +25 -0
- package/dist/components/region-picker/model/useRegion.js +50 -0
- package/dist/components/region-picker/ui/RegionPicker.d.ts +11 -0
- package/dist/components/region-picker/ui/RegionPicker.js +110 -0
- package/dist/components/region-picker/ui/RegionPicker.stories.d.ts +19 -0
- package/dist/components/region-picker/ui/RegionPicker.stories.js +13 -0
- package/dist/components/segments-picker/api/query.js +29 -13
- package/dist/components/segments-picker/model/useSegments.d.ts +1 -1
- package/dist/components/segments-picker/model/useSegments.js +6 -5
- package/dist/components/segments-picker/ui/SegmentsPicker.d.ts +1 -1
- package/dist/components/segments-picker/ui/SegmentsPicker.js +3 -3
- package/dist/components/segments-picker/ui/SegmentsPicker.stories.d.ts +1 -1
- package/dist/components/variants-picker/model/useVariants.d.ts +1 -1
- package/dist/components/variants-picker/model/useVariants.js +6 -5
- package/dist/components/variants-picker/ui/VariantsPicker.js +1 -1
- package/dist/shared/graphql/gql.d.ts +7 -2
- package/dist/shared/graphql/gql.js +3 -2
- package/dist/shared/graphql/graphql.d.ts +790 -67
- package/dist/shared/graphql/graphql.js +482 -27
- package/package.json +1 -1
|
@@ -62,25 +62,53 @@ var graphql_CartDiscountStatus = /*#__PURE__*/ function(CartDiscountStatus) {
|
|
|
62
62
|
}({});
|
|
63
63
|
var graphql_CartDiscountType = /*#__PURE__*/ function(CartDiscountType) {
|
|
64
64
|
CartDiscountType["amount"] = "amount";
|
|
65
|
-
CartDiscountType["
|
|
65
|
+
CartDiscountType["free"] = "free";
|
|
66
66
|
CartDiscountType["percentage"] = "percentage";
|
|
67
67
|
return CartDiscountType;
|
|
68
68
|
}({});
|
|
69
|
+
var graphql_CartFulfillmentMethod = /*#__PURE__*/ function(CartFulfillmentMethod) {
|
|
70
|
+
CartFulfillmentMethod["delivery"] = "delivery";
|
|
71
|
+
CartFulfillmentMethod["pickup"] = "pickup";
|
|
72
|
+
CartFulfillmentMethod["shipping"] = "shipping";
|
|
73
|
+
return CartFulfillmentMethod;
|
|
74
|
+
}({});
|
|
69
75
|
var graphql_CartLineItemSource = /*#__PURE__*/ function(CartLineItemSource) {
|
|
70
76
|
CartLineItemSource["app"] = "app";
|
|
71
77
|
CartLineItemSource["store"] = "store";
|
|
72
78
|
return CartLineItemSource;
|
|
73
79
|
}({});
|
|
80
|
+
var graphql_CartPaymentOptionChargeType = /*#__PURE__*/ function(CartPaymentOptionChargeType) {
|
|
81
|
+
CartPaymentOptionChargeType["fixed"] = "fixed";
|
|
82
|
+
CartPaymentOptionChargeType["percentage"] = "percentage";
|
|
83
|
+
return CartPaymentOptionChargeType;
|
|
84
|
+
}({});
|
|
85
|
+
var graphql_CartPaymentOptionType = /*#__PURE__*/ function(CartPaymentOptionType) {
|
|
86
|
+
CartPaymentOptionType["digital"] = "digital";
|
|
87
|
+
CartPaymentOptionType["manual"] = "manual";
|
|
88
|
+
return CartPaymentOptionType;
|
|
89
|
+
}({});
|
|
74
90
|
var graphql_CartSortkeys = /*#__PURE__*/ function(CartSortkeys) {
|
|
75
91
|
CartSortkeys["_id"] = "_id";
|
|
76
92
|
CartSortkeys["createdAt"] = "createdAt";
|
|
77
|
-
CartSortkeys["
|
|
78
|
-
CartSortkeys["
|
|
79
|
-
CartSortkeys["
|
|
80
|
-
CartSortkeys["
|
|
93
|
+
CartSortkeys["customer"] = "customer";
|
|
94
|
+
CartSortkeys["discount"] = "discount";
|
|
95
|
+
CartSortkeys["ip"] = "ip";
|
|
96
|
+
CartSortkeys["market"] = "market";
|
|
97
|
+
CartSortkeys["note"] = "note";
|
|
98
|
+
CartSortkeys["payment"] = "payment";
|
|
99
|
+
CartSortkeys["shipping"] = "shipping";
|
|
100
|
+
CartSortkeys["subtotal"] = "subtotal";
|
|
101
|
+
CartSortkeys["tax"] = "tax";
|
|
102
|
+
CartSortkeys["total"] = "total";
|
|
81
103
|
CartSortkeys["updatedAt"] = "updatedAt";
|
|
104
|
+
CartSortkeys["user_agent"] = "user_agent";
|
|
82
105
|
return CartSortkeys;
|
|
83
106
|
}({});
|
|
107
|
+
var graphql_CartTaxScope = /*#__PURE__*/ function(CartTaxScope) {
|
|
108
|
+
CartTaxScope["line_item"] = "line_item";
|
|
109
|
+
CartTaxScope["shipping"] = "shipping";
|
|
110
|
+
return CartTaxScope;
|
|
111
|
+
}({});
|
|
84
112
|
var graphql_CheckoutAutoFulfillment = /*#__PURE__*/ function(CheckoutAutoFulfillment) {
|
|
85
113
|
CheckoutAutoFulfillment["all"] = "all";
|
|
86
114
|
CheckoutAutoFulfillment["gift_cards"] = "gift_cards";
|
|
@@ -176,6 +204,7 @@ var graphql_CustomerSegmentConditionOperator = /*#__PURE__*/ function(CustomerSe
|
|
|
176
204
|
}({});
|
|
177
205
|
var graphql_CustomerSegmentSortkeys = /*#__PURE__*/ function(CustomerSegmentSortkeys) {
|
|
178
206
|
CustomerSegmentSortkeys["_id"] = "_id";
|
|
207
|
+
CustomerSegmentSortkeys["combine"] = "combine";
|
|
179
208
|
CustomerSegmentSortkeys["createdAt"] = "createdAt";
|
|
180
209
|
CustomerSegmentSortkeys["title"] = "title";
|
|
181
210
|
CustomerSegmentSortkeys["updatedAt"] = "updatedAt";
|
|
@@ -210,6 +239,14 @@ var graphql_DeliveryProfileSortKeys = /*#__PURE__*/ function(DeliveryProfileSort
|
|
|
210
239
|
DeliveryProfileSortKeys["updatedAt"] = "updatedAt";
|
|
211
240
|
return DeliveryProfileSortKeys;
|
|
212
241
|
}({});
|
|
242
|
+
var graphql_DeliveryRateSortKeys = /*#__PURE__*/ function(DeliveryRateSortKeys) {
|
|
243
|
+
DeliveryRateSortKeys["_id"] = "_id";
|
|
244
|
+
DeliveryRateSortKeys["createdAt"] = "createdAt";
|
|
245
|
+
DeliveryRateSortKeys["name"] = "name";
|
|
246
|
+
DeliveryRateSortKeys["profile"] = "profile";
|
|
247
|
+
DeliveryRateSortKeys["updatedAt"] = "updatedAt";
|
|
248
|
+
return DeliveryRateSortKeys;
|
|
249
|
+
}({});
|
|
213
250
|
var graphql_DeliveryZoneRateConditionType = /*#__PURE__*/ function(DeliveryZoneRateConditionType) {
|
|
214
251
|
DeliveryZoneRateConditionType["price"] = "price";
|
|
215
252
|
DeliveryZoneRateConditionType["weight"] = "weight";
|
|
@@ -289,15 +326,13 @@ var graphql_DiscountFsType = /*#__PURE__*/ function(DiscountFsType) {
|
|
|
289
326
|
}({});
|
|
290
327
|
var graphql_DiscountSortKeys = /*#__PURE__*/ function(DiscountSortKeys) {
|
|
291
328
|
DiscountSortKeys["_id"] = "_id";
|
|
292
|
-
DiscountSortKeys["
|
|
293
|
-
DiscountSortKeys["
|
|
329
|
+
DiscountSortKeys["application"] = "application";
|
|
330
|
+
DiscountSortKeys["code"] = "code";
|
|
294
331
|
DiscountSortKeys["createdAt"] = "createdAt";
|
|
295
|
-
DiscountSortKeys["
|
|
296
|
-
DiscountSortKeys["
|
|
297
|
-
DiscountSortKeys["
|
|
298
|
-
DiscountSortKeys["
|
|
299
|
-
DiscountSortKeys["reserved"] = "reserved";
|
|
300
|
-
DiscountSortKeys["safety_stock"] = "safety_stock";
|
|
332
|
+
DiscountSortKeys["customer_usage_limit"] = "customer_usage_limit";
|
|
333
|
+
DiscountSortKeys["ends_at"] = "ends_at";
|
|
334
|
+
DiscountSortKeys["starts_at"] = "starts_at";
|
|
335
|
+
DiscountSortKeys["total_usage_limit"] = "total_usage_limit";
|
|
301
336
|
DiscountSortKeys["updatedAt"] = "updatedAt";
|
|
302
337
|
return DiscountSortKeys;
|
|
303
338
|
}({});
|
|
@@ -522,6 +557,115 @@ var graphql_MetaobjectSortKeys = /*#__PURE__*/ function(MetaobjectSortKeys) {
|
|
|
522
557
|
MetaobjectSortKeys["updatedAt"] = "updatedAt";
|
|
523
558
|
return MetaobjectSortKeys;
|
|
524
559
|
}({});
|
|
560
|
+
var graphql_OrderChannel = /*#__PURE__*/ function(OrderChannel) {
|
|
561
|
+
OrderChannel["app"] = "app";
|
|
562
|
+
OrderChannel["system"] = "system";
|
|
563
|
+
return OrderChannel;
|
|
564
|
+
}({});
|
|
565
|
+
var graphql_OrderDiscountScope = /*#__PURE__*/ function(OrderDiscountScope) {
|
|
566
|
+
OrderDiscountScope["cart"] = "cart";
|
|
567
|
+
OrderDiscountScope["line_item"] = "line_item";
|
|
568
|
+
OrderDiscountScope["shipping"] = "shipping";
|
|
569
|
+
return OrderDiscountScope;
|
|
570
|
+
}({});
|
|
571
|
+
var graphql_OrderDiscountSource = /*#__PURE__*/ function(OrderDiscountSource) {
|
|
572
|
+
OrderDiscountSource["app"] = "app";
|
|
573
|
+
OrderDiscountSource["store"] = "store";
|
|
574
|
+
return OrderDiscountSource;
|
|
575
|
+
}({});
|
|
576
|
+
var graphql_OrderDiscountStatus = /*#__PURE__*/ function(OrderDiscountStatus) {
|
|
577
|
+
OrderDiscountStatus["applied"] = "applied";
|
|
578
|
+
OrderDiscountStatus["invalid"] = "invalid";
|
|
579
|
+
OrderDiscountStatus["pending"] = "pending";
|
|
580
|
+
return OrderDiscountStatus;
|
|
581
|
+
}({});
|
|
582
|
+
var graphql_OrderDiscountType = /*#__PURE__*/ function(OrderDiscountType) {
|
|
583
|
+
OrderDiscountType["amount"] = "amount";
|
|
584
|
+
OrderDiscountType["free"] = "free";
|
|
585
|
+
OrderDiscountType["percentage"] = "percentage";
|
|
586
|
+
return OrderDiscountType;
|
|
587
|
+
}({});
|
|
588
|
+
var graphql_OrderFulfillmentMethod = /*#__PURE__*/ function(OrderFulfillmentMethod) {
|
|
589
|
+
OrderFulfillmentMethod["delivery"] = "delivery";
|
|
590
|
+
OrderFulfillmentMethod["pickup"] = "pickup";
|
|
591
|
+
OrderFulfillmentMethod["shipping"] = "shipping";
|
|
592
|
+
return OrderFulfillmentMethod;
|
|
593
|
+
}({});
|
|
594
|
+
var graphql_OrderFulfillmentStatus = /*#__PURE__*/ function(OrderFulfillmentStatus) {
|
|
595
|
+
OrderFulfillmentStatus["cancelled"] = "cancelled";
|
|
596
|
+
OrderFulfillmentStatus["fulfilled"] = "fulfilled";
|
|
597
|
+
OrderFulfillmentStatus["in_progress"] = "in_progress";
|
|
598
|
+
OrderFulfillmentStatus["partially_fulfilled"] = "partially_fulfilled";
|
|
599
|
+
OrderFulfillmentStatus["pending"] = "pending";
|
|
600
|
+
return OrderFulfillmentStatus;
|
|
601
|
+
}({});
|
|
602
|
+
var graphql_OrderLineItemSource = /*#__PURE__*/ function(OrderLineItemSource) {
|
|
603
|
+
OrderLineItemSource["app"] = "app";
|
|
604
|
+
OrderLineItemSource["store"] = "store";
|
|
605
|
+
return OrderLineItemSource;
|
|
606
|
+
}({});
|
|
607
|
+
var graphql_OrderPaymentOptionChargeType = /*#__PURE__*/ function(OrderPaymentOptionChargeType) {
|
|
608
|
+
OrderPaymentOptionChargeType["fixed"] = "fixed";
|
|
609
|
+
OrderPaymentOptionChargeType["percentage"] = "percentage";
|
|
610
|
+
return OrderPaymentOptionChargeType;
|
|
611
|
+
}({});
|
|
612
|
+
var graphql_OrderPaymentOptionType = /*#__PURE__*/ function(OrderPaymentOptionType) {
|
|
613
|
+
OrderPaymentOptionType["digital"] = "digital";
|
|
614
|
+
OrderPaymentOptionType["manual"] = "manual";
|
|
615
|
+
return OrderPaymentOptionType;
|
|
616
|
+
}({});
|
|
617
|
+
var graphql_OrderPaymentSortkey = /*#__PURE__*/ function(OrderPaymentSortkey) {
|
|
618
|
+
OrderPaymentSortkey["_id"] = "_id";
|
|
619
|
+
OrderPaymentSortkey["amount"] = "amount";
|
|
620
|
+
OrderPaymentSortkey["completed_at"] = "completed_at";
|
|
621
|
+
OrderPaymentSortkey["currency"] = "currency";
|
|
622
|
+
OrderPaymentSortkey["order"] = "order";
|
|
623
|
+
OrderPaymentSortkey["reatedAt"] = "reatedAt";
|
|
624
|
+
OrderPaymentSortkey["ref_id"] = "ref_id";
|
|
625
|
+
OrderPaymentSortkey["status"] = "status";
|
|
626
|
+
OrderPaymentSortkey["transaction_id"] = "transaction_id";
|
|
627
|
+
OrderPaymentSortkey["updatedAt"] = "updatedAt";
|
|
628
|
+
return OrderPaymentSortkey;
|
|
629
|
+
}({});
|
|
630
|
+
var graphql_OrderPaymentStatus = /*#__PURE__*/ function(OrderPaymentStatus) {
|
|
631
|
+
OrderPaymentStatus["overdue"] = "overdue";
|
|
632
|
+
OrderPaymentStatus["paid"] = "paid";
|
|
633
|
+
OrderPaymentStatus["partially_paid"] = "partially_paid";
|
|
634
|
+
OrderPaymentStatus["partially_refunded"] = "partially_refunded";
|
|
635
|
+
OrderPaymentStatus["pending"] = "pending";
|
|
636
|
+
OrderPaymentStatus["refunded"] = "refunded";
|
|
637
|
+
OrderPaymentStatus["unpaid"] = "unpaid";
|
|
638
|
+
return OrderPaymentStatus;
|
|
639
|
+
}({});
|
|
640
|
+
var graphql_OrderSortkey = /*#__PURE__*/ function(OrderSortkey) {
|
|
641
|
+
OrderSortkey["_id"] = "_id";
|
|
642
|
+
OrderSortkey["createdAt"] = "createdAt";
|
|
643
|
+
OrderSortkey["customer"] = "customer";
|
|
644
|
+
OrderSortkey["discount"] = "discount";
|
|
645
|
+
OrderSortkey["ip"] = "ip";
|
|
646
|
+
OrderSortkey["market"] = "market";
|
|
647
|
+
OrderSortkey["note"] = "note";
|
|
648
|
+
OrderSortkey["payment"] = "payment";
|
|
649
|
+
OrderSortkey["shipping"] = "shipping";
|
|
650
|
+
OrderSortkey["subtotal"] = "subtotal";
|
|
651
|
+
OrderSortkey["tax"] = "tax";
|
|
652
|
+
OrderSortkey["total"] = "total";
|
|
653
|
+
OrderSortkey["updatedAt"] = "updatedAt";
|
|
654
|
+
OrderSortkey["user_agent"] = "user_agent";
|
|
655
|
+
return OrderSortkey;
|
|
656
|
+
}({});
|
|
657
|
+
var graphql_OrderStatus = /*#__PURE__*/ function(OrderStatus) {
|
|
658
|
+
OrderStatus["cancelled"] = "cancelled";
|
|
659
|
+
OrderStatus["completed"] = "completed";
|
|
660
|
+
OrderStatus["confirmed"] = "confirmed";
|
|
661
|
+
OrderStatus["pending"] = "pending";
|
|
662
|
+
return OrderStatus;
|
|
663
|
+
}({});
|
|
664
|
+
var graphql_OrderTaxScope = /*#__PURE__*/ function(OrderTaxScope) {
|
|
665
|
+
OrderTaxScope["line_item"] = "line_item";
|
|
666
|
+
OrderTaxScope["shipping"] = "shipping";
|
|
667
|
+
return OrderTaxScope;
|
|
668
|
+
}({});
|
|
525
669
|
var graphql_PageSortKeys = /*#__PURE__*/ function(PageSortKeys) {
|
|
526
670
|
PageSortKeys["_id"] = "_id";
|
|
527
671
|
PageSortKeys["createdAt"] = "createdAt";
|
|
@@ -535,6 +679,11 @@ var graphql_PageStatus = /*#__PURE__*/ function(PageStatus) {
|
|
|
535
679
|
PageStatus["draft"] = "draft";
|
|
536
680
|
return PageStatus;
|
|
537
681
|
}({});
|
|
682
|
+
var graphql_PayOrderPaymentResponseType = /*#__PURE__*/ function(PayOrderPaymentResponseType) {
|
|
683
|
+
PayOrderPaymentResponseType["digital"] = "digital";
|
|
684
|
+
PayOrderPaymentResponseType["manual"] = "manual";
|
|
685
|
+
return PayOrderPaymentResponseType;
|
|
686
|
+
}({});
|
|
538
687
|
var graphql_PayStoreInvoiceStatus = /*#__PURE__*/ function(PayStoreInvoiceStatus) {
|
|
539
688
|
PayStoreInvoiceStatus["paid"] = "paid";
|
|
540
689
|
PayStoreInvoiceStatus["pending"] = "pending";
|
|
@@ -611,19 +760,19 @@ var graphql_PresetType = /*#__PURE__*/ function(PresetType) {
|
|
|
611
760
|
PresetType["transfers"] = "transfers";
|
|
612
761
|
return PresetType;
|
|
613
762
|
}({});
|
|
614
|
-
var
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
return
|
|
763
|
+
var graphql_ProductSortKey = /*#__PURE__*/ function(ProductSortKey) {
|
|
764
|
+
ProductSortKey["_id"] = "_id";
|
|
765
|
+
ProductSortKey["meta_tags"] = "meta_tags";
|
|
766
|
+
ProductSortKey["meta_title"] = "meta_title";
|
|
767
|
+
ProductSortKey["option1"] = "option1";
|
|
768
|
+
ProductSortKey["option2"] = "option2";
|
|
769
|
+
ProductSortKey["option3"] = "option3";
|
|
770
|
+
ProductSortKey["status"] = "status";
|
|
771
|
+
ProductSortKey["template"] = "template";
|
|
772
|
+
ProductSortKey["title"] = "title";
|
|
773
|
+
ProductSortKey["type"] = "type";
|
|
774
|
+
ProductSortKey["vendor"] = "vendor";
|
|
775
|
+
return ProductSortKey;
|
|
627
776
|
}({});
|
|
628
777
|
var graphql_ProductStatus = /*#__PURE__*/ function(ProductStatus) {
|
|
629
778
|
ProductStatus["active"] = "active";
|
|
@@ -667,6 +816,14 @@ var graphql_ShippingProfileSortKeys = /*#__PURE__*/ function(ShippingProfileSort
|
|
|
667
816
|
ShippingProfileSortKeys["updatedAt"] = "updatedAt";
|
|
668
817
|
return ShippingProfileSortKeys;
|
|
669
818
|
}({});
|
|
819
|
+
var graphql_ShippingRateSortKeys = /*#__PURE__*/ function(ShippingRateSortKeys) {
|
|
820
|
+
ShippingRateSortKeys["_id"] = "_id";
|
|
821
|
+
ShippingRateSortKeys["createdAt"] = "createdAt";
|
|
822
|
+
ShippingRateSortKeys["name"] = "name";
|
|
823
|
+
ShippingRateSortKeys["profile"] = "profile";
|
|
824
|
+
ShippingRateSortKeys["updatedAt"] = "updatedAt";
|
|
825
|
+
return ShippingRateSortKeys;
|
|
826
|
+
}({});
|
|
670
827
|
var graphql_ShippingZoneRateConditionType = /*#__PURE__*/ function(ShippingZoneRateConditionType) {
|
|
671
828
|
ShippingZoneRateConditionType["price"] = "price";
|
|
672
829
|
ShippingZoneRateConditionType["weight"] = "weight";
|
|
@@ -4973,6 +5130,304 @@ const ProductsDocument = {
|
|
|
4973
5130
|
}
|
|
4974
5131
|
]
|
|
4975
5132
|
};
|
|
5133
|
+
const _RegionsDocument = {
|
|
5134
|
+
kind: "Document",
|
|
5135
|
+
definitions: [
|
|
5136
|
+
{
|
|
5137
|
+
kind: "OperationDefinition",
|
|
5138
|
+
operation: "query",
|
|
5139
|
+
name: {
|
|
5140
|
+
kind: "Name",
|
|
5141
|
+
value: "_regions"
|
|
5142
|
+
},
|
|
5143
|
+
variableDefinitions: [
|
|
5144
|
+
{
|
|
5145
|
+
kind: "VariableDefinition",
|
|
5146
|
+
variable: {
|
|
5147
|
+
kind: "Variable",
|
|
5148
|
+
name: {
|
|
5149
|
+
kind: "Name",
|
|
5150
|
+
value: "filterKeys"
|
|
5151
|
+
}
|
|
5152
|
+
},
|
|
5153
|
+
type: {
|
|
5154
|
+
kind: "NamedType",
|
|
5155
|
+
name: {
|
|
5156
|
+
kind: "Name",
|
|
5157
|
+
value: "_RegionFilterKeys"
|
|
5158
|
+
}
|
|
5159
|
+
}
|
|
5160
|
+
},
|
|
5161
|
+
{
|
|
5162
|
+
kind: "VariableDefinition",
|
|
5163
|
+
variable: {
|
|
5164
|
+
kind: "Variable",
|
|
5165
|
+
name: {
|
|
5166
|
+
kind: "Name",
|
|
5167
|
+
value: "query"
|
|
5168
|
+
}
|
|
5169
|
+
},
|
|
5170
|
+
type: {
|
|
5171
|
+
kind: "NamedType",
|
|
5172
|
+
name: {
|
|
5173
|
+
kind: "Name",
|
|
5174
|
+
value: "String"
|
|
5175
|
+
}
|
|
5176
|
+
}
|
|
5177
|
+
},
|
|
5178
|
+
{
|
|
5179
|
+
kind: "VariableDefinition",
|
|
5180
|
+
variable: {
|
|
5181
|
+
kind: "Variable",
|
|
5182
|
+
name: {
|
|
5183
|
+
kind: "Name",
|
|
5184
|
+
value: "after"
|
|
5185
|
+
}
|
|
5186
|
+
},
|
|
5187
|
+
type: {
|
|
5188
|
+
kind: "NamedType",
|
|
5189
|
+
name: {
|
|
5190
|
+
kind: "Name",
|
|
5191
|
+
value: "ID"
|
|
5192
|
+
}
|
|
5193
|
+
}
|
|
5194
|
+
},
|
|
5195
|
+
{
|
|
5196
|
+
kind: "VariableDefinition",
|
|
5197
|
+
variable: {
|
|
5198
|
+
kind: "Variable",
|
|
5199
|
+
name: {
|
|
5200
|
+
kind: "Name",
|
|
5201
|
+
value: "before"
|
|
5202
|
+
}
|
|
5203
|
+
},
|
|
5204
|
+
type: {
|
|
5205
|
+
kind: "NamedType",
|
|
5206
|
+
name: {
|
|
5207
|
+
kind: "Name",
|
|
5208
|
+
value: "ID"
|
|
5209
|
+
}
|
|
5210
|
+
}
|
|
5211
|
+
},
|
|
5212
|
+
{
|
|
5213
|
+
kind: "VariableDefinition",
|
|
5214
|
+
variable: {
|
|
5215
|
+
kind: "Variable",
|
|
5216
|
+
name: {
|
|
5217
|
+
kind: "Name",
|
|
5218
|
+
value: "first"
|
|
5219
|
+
}
|
|
5220
|
+
},
|
|
5221
|
+
type: {
|
|
5222
|
+
kind: "NamedType",
|
|
5223
|
+
name: {
|
|
5224
|
+
kind: "Name",
|
|
5225
|
+
value: "Int"
|
|
5226
|
+
}
|
|
5227
|
+
}
|
|
5228
|
+
},
|
|
5229
|
+
{
|
|
5230
|
+
kind: "VariableDefinition",
|
|
5231
|
+
variable: {
|
|
5232
|
+
kind: "Variable",
|
|
5233
|
+
name: {
|
|
5234
|
+
kind: "Name",
|
|
5235
|
+
value: "last"
|
|
5236
|
+
}
|
|
5237
|
+
},
|
|
5238
|
+
type: {
|
|
5239
|
+
kind: "NamedType",
|
|
5240
|
+
name: {
|
|
5241
|
+
kind: "Name",
|
|
5242
|
+
value: "Int"
|
|
5243
|
+
}
|
|
5244
|
+
}
|
|
5245
|
+
}
|
|
5246
|
+
],
|
|
5247
|
+
selectionSet: {
|
|
5248
|
+
kind: "SelectionSet",
|
|
5249
|
+
selections: [
|
|
5250
|
+
{
|
|
5251
|
+
kind: "Field",
|
|
5252
|
+
name: {
|
|
5253
|
+
kind: "Name",
|
|
5254
|
+
value: "_regions"
|
|
5255
|
+
},
|
|
5256
|
+
arguments: [
|
|
5257
|
+
{
|
|
5258
|
+
kind: "Argument",
|
|
5259
|
+
name: {
|
|
5260
|
+
kind: "Name",
|
|
5261
|
+
value: "filterKeys"
|
|
5262
|
+
},
|
|
5263
|
+
value: {
|
|
5264
|
+
kind: "Variable",
|
|
5265
|
+
name: {
|
|
5266
|
+
kind: "Name",
|
|
5267
|
+
value: "filterKeys"
|
|
5268
|
+
}
|
|
5269
|
+
}
|
|
5270
|
+
},
|
|
5271
|
+
{
|
|
5272
|
+
kind: "Argument",
|
|
5273
|
+
name: {
|
|
5274
|
+
kind: "Name",
|
|
5275
|
+
value: "query"
|
|
5276
|
+
},
|
|
5277
|
+
value: {
|
|
5278
|
+
kind: "Variable",
|
|
5279
|
+
name: {
|
|
5280
|
+
kind: "Name",
|
|
5281
|
+
value: "query"
|
|
5282
|
+
}
|
|
5283
|
+
}
|
|
5284
|
+
},
|
|
5285
|
+
{
|
|
5286
|
+
kind: "Argument",
|
|
5287
|
+
name: {
|
|
5288
|
+
kind: "Name",
|
|
5289
|
+
value: "after"
|
|
5290
|
+
},
|
|
5291
|
+
value: {
|
|
5292
|
+
kind: "Variable",
|
|
5293
|
+
name: {
|
|
5294
|
+
kind: "Name",
|
|
5295
|
+
value: "after"
|
|
5296
|
+
}
|
|
5297
|
+
}
|
|
5298
|
+
},
|
|
5299
|
+
{
|
|
5300
|
+
kind: "Argument",
|
|
5301
|
+
name: {
|
|
5302
|
+
kind: "Name",
|
|
5303
|
+
value: "before"
|
|
5304
|
+
},
|
|
5305
|
+
value: {
|
|
5306
|
+
kind: "Variable",
|
|
5307
|
+
name: {
|
|
5308
|
+
kind: "Name",
|
|
5309
|
+
value: "before"
|
|
5310
|
+
}
|
|
5311
|
+
}
|
|
5312
|
+
},
|
|
5313
|
+
{
|
|
5314
|
+
kind: "Argument",
|
|
5315
|
+
name: {
|
|
5316
|
+
kind: "Name",
|
|
5317
|
+
value: "first"
|
|
5318
|
+
},
|
|
5319
|
+
value: {
|
|
5320
|
+
kind: "Variable",
|
|
5321
|
+
name: {
|
|
5322
|
+
kind: "Name",
|
|
5323
|
+
value: "first"
|
|
5324
|
+
}
|
|
5325
|
+
}
|
|
5326
|
+
},
|
|
5327
|
+
{
|
|
5328
|
+
kind: "Argument",
|
|
5329
|
+
name: {
|
|
5330
|
+
kind: "Name",
|
|
5331
|
+
value: "last"
|
|
5332
|
+
},
|
|
5333
|
+
value: {
|
|
5334
|
+
kind: "Variable",
|
|
5335
|
+
name: {
|
|
5336
|
+
kind: "Name",
|
|
5337
|
+
value: "last"
|
|
5338
|
+
}
|
|
5339
|
+
}
|
|
5340
|
+
}
|
|
5341
|
+
],
|
|
5342
|
+
selectionSet: {
|
|
5343
|
+
kind: "SelectionSet",
|
|
5344
|
+
selections: [
|
|
5345
|
+
{
|
|
5346
|
+
kind: "Field",
|
|
5347
|
+
name: {
|
|
5348
|
+
kind: "Name",
|
|
5349
|
+
value: "pageInfo"
|
|
5350
|
+
},
|
|
5351
|
+
selectionSet: {
|
|
5352
|
+
kind: "SelectionSet",
|
|
5353
|
+
selections: [
|
|
5354
|
+
{
|
|
5355
|
+
kind: "Field",
|
|
5356
|
+
name: {
|
|
5357
|
+
kind: "Name",
|
|
5358
|
+
value: "endCursor"
|
|
5359
|
+
}
|
|
5360
|
+
},
|
|
5361
|
+
{
|
|
5362
|
+
kind: "Field",
|
|
5363
|
+
name: {
|
|
5364
|
+
kind: "Name",
|
|
5365
|
+
value: "hasNextPage"
|
|
5366
|
+
}
|
|
5367
|
+
},
|
|
5368
|
+
{
|
|
5369
|
+
kind: "Field",
|
|
5370
|
+
name: {
|
|
5371
|
+
kind: "Name",
|
|
5372
|
+
value: "hasPreviousPage"
|
|
5373
|
+
}
|
|
5374
|
+
},
|
|
5375
|
+
{
|
|
5376
|
+
kind: "Field",
|
|
5377
|
+
name: {
|
|
5378
|
+
kind: "Name",
|
|
5379
|
+
value: "startCursor"
|
|
5380
|
+
}
|
|
5381
|
+
}
|
|
5382
|
+
]
|
|
5383
|
+
}
|
|
5384
|
+
},
|
|
5385
|
+
{
|
|
5386
|
+
kind: "Field",
|
|
5387
|
+
name: {
|
|
5388
|
+
kind: "Name",
|
|
5389
|
+
value: "edges"
|
|
5390
|
+
},
|
|
5391
|
+
selectionSet: {
|
|
5392
|
+
kind: "SelectionSet",
|
|
5393
|
+
selections: [
|
|
5394
|
+
{
|
|
5395
|
+
kind: "Field",
|
|
5396
|
+
name: {
|
|
5397
|
+
kind: "Name",
|
|
5398
|
+
value: "node"
|
|
5399
|
+
},
|
|
5400
|
+
selectionSet: {
|
|
5401
|
+
kind: "SelectionSet",
|
|
5402
|
+
selections: [
|
|
5403
|
+
{
|
|
5404
|
+
kind: "Field",
|
|
5405
|
+
name: {
|
|
5406
|
+
kind: "Name",
|
|
5407
|
+
value: "_id"
|
|
5408
|
+
}
|
|
5409
|
+
},
|
|
5410
|
+
{
|
|
5411
|
+
kind: "Field",
|
|
5412
|
+
name: {
|
|
5413
|
+
kind: "Name",
|
|
5414
|
+
value: "name"
|
|
5415
|
+
}
|
|
5416
|
+
}
|
|
5417
|
+
]
|
|
5418
|
+
}
|
|
5419
|
+
}
|
|
5420
|
+
]
|
|
5421
|
+
}
|
|
5422
|
+
}
|
|
5423
|
+
]
|
|
5424
|
+
}
|
|
5425
|
+
}
|
|
5426
|
+
]
|
|
5427
|
+
}
|
|
5428
|
+
}
|
|
5429
|
+
]
|
|
5430
|
+
};
|
|
4976
5431
|
const CustomerSegmentsDocument = {
|
|
4977
5432
|
kind: "Document",
|
|
4978
5433
|
definitions: [
|
|
@@ -5635,4 +6090,4 @@ const VariantsDocument = {
|
|
|
5635
6090
|
}
|
|
5636
6091
|
]
|
|
5637
6092
|
};
|
|
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,
|
|
6093
|
+
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_CartFulfillmentMethod as CartFulfillmentMethod, graphql_CartLineItemSource as CartLineItemSource, graphql_CartPaymentOptionChargeType as CartPaymentOptionChargeType, graphql_CartPaymentOptionType as CartPaymentOptionType, graphql_CartSortkeys as CartSortkeys, graphql_CartTaxScope as CartTaxScope, 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_DeliveryRateSortKeys as DeliveryRateSortKeys, 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_OrderChannel as OrderChannel, graphql_OrderDiscountScope as OrderDiscountScope, graphql_OrderDiscountSource as OrderDiscountSource, graphql_OrderDiscountStatus as OrderDiscountStatus, graphql_OrderDiscountType as OrderDiscountType, graphql_OrderFulfillmentMethod as OrderFulfillmentMethod, graphql_OrderFulfillmentStatus as OrderFulfillmentStatus, graphql_OrderLineItemSource as OrderLineItemSource, graphql_OrderPaymentOptionChargeType as OrderPaymentOptionChargeType, graphql_OrderPaymentOptionType as OrderPaymentOptionType, graphql_OrderPaymentSortkey as OrderPaymentSortkey, graphql_OrderPaymentStatus as OrderPaymentStatus, graphql_OrderSortkey as OrderSortkey, graphql_OrderStatus as OrderStatus, graphql_OrderTaxScope as OrderTaxScope, graphql_PageSortKeys as PageSortKeys, graphql_PageStatus as PageStatus, PagesDocument, graphql_PayOrderPaymentResponseType as PayOrderPaymentResponseType, 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_ProductSortKey as ProductSortKey, graphql_ProductStatus as ProductStatus, ProductsDocument, graphql_PurchaseSortKeys as PurchaseSortKeys, graphql_PurchaseStatus as PurchaseStatus, graphql_RedirectSortKeys as RedirectSortKeys, graphql_ShippingProfileSortKeys as ShippingProfileSortKeys, graphql_ShippingRateSortKeys as ShippingRateSortKeys, 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, _RegionsDocument, graphql_SoppiyaPaymentSortKeys as _SoppiyaPaymentSortKeys, graphql_ThemeSortKeys as _ThemeSortKeys, graphql_ThemeVersionSortKeys as _ThemeVersionSortKeys, graphql_TimezoneSortKeys as _TimezoneSortKeys };
|