@soppiya/app-bridge 1.1.7 → 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 (42) 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/segments-picker/api/query.d.ts +8 -0
  28. package/dist/components/segments-picker/api/query.js +18 -0
  29. package/dist/components/segments-picker/index.d.ts +1 -0
  30. package/dist/components/segments-picker/index.js +2 -0
  31. package/dist/components/segments-picker/model/useSegments.d.ts +25 -0
  32. package/dist/components/segments-picker/model/useSegments.js +48 -0
  33. package/dist/components/segments-picker/ui/SegmentsPicker.d.ts +9 -0
  34. package/dist/components/segments-picker/ui/SegmentsPicker.js +105 -0
  35. package/dist/components/segments-picker/ui/SegmentsPicker.stories.d.ts +12 -0
  36. package/dist/components/segments-picker/ui/SegmentsPicker.stories.js +11 -0
  37. package/dist/shared/graphql/gql.d.ts +17 -2
  38. package/dist/shared/graphql/gql.js +5 -2
  39. package/dist/shared/graphql/graphql.d.ts +150 -38
  40. package/dist/shared/graphql/graphql.js +1303 -284
  41. package/dist/styles.css +12 -0
  42. package/package.json +2 -2
@@ -338,6 +338,18 @@ export type AddStaff = {
338
338
  limited_apps?: InputMaybe<Array<Scalars['ID']['input']>>;
339
339
  permissions?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
340
340
  };
341
+ export type AddStoreInvoice = {
342
+ app_id: Scalars['ID']['input'];
343
+ app_secret: Scalars['String']['input'];
344
+ line_items: Array<AddStoreInvoiceLineitem>;
345
+ metadata?: InputMaybe<Scalars['JSON']['input']>;
346
+ redirect_url?: InputMaybe<Scalars['String']['input']>;
347
+ store: Scalars['ID']['input'];
348
+ };
349
+ export type AddStoreInvoiceLineitem = {
350
+ price: Scalars['Float']['input'];
351
+ title: Scalars['String']['input'];
352
+ };
341
353
  export type AddSupplier = {
342
354
  address1?: InputMaybe<Scalars['String']['input']>;
343
355
  address2?: InputMaybe<Scalars['String']['input']>;
@@ -572,7 +584,6 @@ export type Cart = {
572
584
  note?: Maybe<Scalars['String']['output']>;
573
585
  pricing?: Maybe<CartPricing>;
574
586
  shipping_address?: Maybe<CartAddress>;
575
- status?: Maybe<CartStatus>;
576
587
  store?: Maybe<Store>;
577
588
  user_agent?: Maybe<Scalars['String']['output']>;
578
589
  };
@@ -672,6 +683,7 @@ export type CartLineItem = {
672
683
  shipping_profile?: Maybe<ShippingProfile>;
673
684
  sku?: Maybe<Scalars['String']['output']>;
674
685
  source?: Maybe<CartLineItemSource>;
686
+ url?: Maybe<Scalars['String']['output']>;
675
687
  variant?: Maybe<Variant>;
676
688
  variant_title?: Maybe<Scalars['String']['output']>;
677
689
  vendor?: Maybe<Scalars['String']['output']>;
@@ -688,7 +700,7 @@ export declare enum CartLineItemSource {
688
700
  }
689
701
  export type CartPricing = {
690
702
  __typename: 'CartPricing';
691
- currency?: Maybe<Scalars['String']['output']>;
703
+ currency?: Maybe<_Currency>;
692
704
  discount_total?: Maybe<Scalars['Float']['output']>;
693
705
  line_items?: Maybe<Array<Maybe<CartPricingLineItem>>>;
694
706
  shipping?: Maybe<Scalars['Float']['output']>;
@@ -712,11 +724,6 @@ export declare enum CartSortkeys {
712
724
  last_name = "last_name",
713
725
  updatedAt = "updatedAt"
714
726
  }
715
- export declare enum CartStatus {
716
- abandoned = "abandoned",
717
- active = "active",
718
- converted = "converted"
719
- }
720
727
  export type Checkout = {
721
728
  __typename: 'Checkout';
722
729
  address2_requirement?: Maybe<CheckoutExcludeRequiredOptional>;
@@ -1214,16 +1221,14 @@ export type Discount = {
1214
1221
  export type DiscountAoo = {
1215
1222
  __typename: 'DiscountAOO';
1216
1223
  amount?: Maybe<Scalars['Float']['output']>;
1217
- minimum_purchase_amount?: Maybe<Scalars['Int']['output']>;
1218
- minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
1219
1224
  minimum_purchase_type?: Maybe<DiscountAooMinimumPurchaseType>;
1225
+ minimum_purchase_value?: Maybe<Scalars['Float']['output']>;
1220
1226
  type?: Maybe<DiscountAooType>;
1221
1227
  };
1222
1228
  export type DiscountAooInput = {
1223
1229
  amount: Scalars['Float']['input'];
1224
- minimum_purchase_amount?: InputMaybe<Scalars['Int']['input']>;
1225
- minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
1226
1230
  minimum_purchase_type: DiscountAooMinimumPurchaseType;
1231
+ minimum_purchase_value?: InputMaybe<Scalars['Float']['input']>;
1227
1232
  type: DiscountAooType;
1228
1233
  };
1229
1234
  export declare enum DiscountAooMinimumPurchaseType {
@@ -1240,9 +1245,8 @@ export type DiscountAop = {
1240
1245
  amount?: Maybe<Scalars['Float']['output']>;
1241
1246
  application?: Maybe<DiscountAopApplication>;
1242
1247
  collections?: Maybe<Array<Maybe<Collection>>>;
1243
- minimum_purchase_amount?: Maybe<Scalars['Float']['output']>;
1244
- minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
1245
- minimum_purchase_type?: Maybe<DiscountAopMinimunPurchaseType>;
1248
+ minimum_purchase_type?: Maybe<DiscountAopMinimumPurchaseType>;
1249
+ minimum_purchase_value?: Maybe<Scalars['Float']['output']>;
1246
1250
  products?: Maybe<Array<Maybe<Product>>>;
1247
1251
  type?: Maybe<DiscountAopType>;
1248
1252
  };
@@ -1254,13 +1258,12 @@ export type DiscountAopInput = {
1254
1258
  amount: Scalars['Float']['input'];
1255
1259
  application: DiscountAopApplication;
1256
1260
  collections?: InputMaybe<Array<Scalars['ID']['input']>>;
1257
- minimum_purchase_amount?: InputMaybe<Scalars['Float']['input']>;
1258
- minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
1259
- minimum_purchase_type: DiscountAopMinimunPurchaseType;
1261
+ minimum_purchase_type: DiscountAopMinimumPurchaseType;
1262
+ minimum_purchase_value?: InputMaybe<Scalars['Float']['input']>;
1260
1263
  products?: InputMaybe<Array<Scalars['ID']['input']>>;
1261
1264
  type: DiscountAopType;
1262
1265
  };
1263
- export declare enum DiscountAopMinimunPurchaseType {
1266
+ export declare enum DiscountAopMinimumPurchaseType {
1264
1267
  amount = "amount",
1265
1268
  none = "none",
1266
1269
  quantity = "quantity"
@@ -1279,9 +1282,8 @@ export type DiscountBxgy = {
1279
1282
  application?: Maybe<DiscountBxgyApplication>;
1280
1283
  collections?: Maybe<Array<Maybe<Collection>>>;
1281
1284
  max_offer_quantity?: Maybe<Scalars['Int']['output']>;
1282
- minimum_purchase_amount?: Maybe<Scalars['Float']['output']>;
1283
- minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
1284
- minimum_purchase_type?: Maybe<DiscountBxgyMinimunPurchaseType>;
1285
+ minimum_purchase_type?: Maybe<DiscountBxgyMinimumPurchaseType>;
1286
+ minimum_purchase_value?: Maybe<Scalars['Float']['output']>;
1285
1287
  offer_application?: Maybe<DiscountBxgyOfferApplication>;
1286
1288
  offer_collections?: Maybe<Array<Maybe<Collection>>>;
1287
1289
  offer_products?: Maybe<Array<Maybe<Product>>>;
@@ -1298,9 +1300,8 @@ export type DiscountBxgyInput = {
1298
1300
  application: DiscountBxgyApplication;
1299
1301
  collections?: InputMaybe<Array<Scalars['ID']['input']>>;
1300
1302
  max_offer_quantity?: InputMaybe<Scalars['Int']['input']>;
1301
- minimum_purchase_amount?: InputMaybe<Scalars['Float']['input']>;
1302
- minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
1303
- minimum_purchase_type: DiscountBxgyMinimunPurchaseType;
1303
+ minimum_purchase_type: DiscountBxgyMinimumPurchaseType;
1304
+ minimum_purchase_value?: InputMaybe<Scalars['Float']['input']>;
1304
1305
  offer_application: DiscountBxgyOfferApplication;
1305
1306
  offer_collections?: InputMaybe<Array<Scalars['ID']['input']>>;
1306
1307
  offer_products?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -1308,7 +1309,7 @@ export type DiscountBxgyInput = {
1308
1309
  type: DiscountBxgyType;
1309
1310
  usage_per_order?: InputMaybe<Scalars['Int']['input']>;
1310
1311
  };
1311
- export declare enum DiscountBxgyMinimunPurchaseType {
1312
+ export declare enum DiscountBxgyMinimumPurchaseType {
1312
1313
  amount = "amount",
1313
1314
  quantity = "quantity"
1314
1315
  }
@@ -1336,20 +1337,18 @@ export type DiscountFs = {
1336
1337
  __typename: 'DiscountFS';
1337
1338
  countries?: Maybe<Array<Maybe<_Country>>>;
1338
1339
  exclude_after_amount?: Maybe<Scalars['Float']['output']>;
1339
- minimum_purchase_amount?: Maybe<Scalars['Int']['output']>;
1340
- minimum_purchase_quantity?: Maybe<Scalars['Int']['output']>;
1341
- minimum_purchase_type?: Maybe<DiscountFsMinimunPurchaseType>;
1340
+ minimum_purchase_type?: Maybe<DiscountFsMinimumPurchaseType>;
1341
+ minimum_purchase_value?: Maybe<Scalars['Float']['output']>;
1342
1342
  type?: Maybe<DiscountFsType>;
1343
1343
  };
1344
1344
  export type DiscountFsInput = {
1345
1345
  countries?: InputMaybe<Array<Scalars['ID']['input']>>;
1346
1346
  exclude_after_amount?: InputMaybe<Scalars['Float']['input']>;
1347
- minimum_purchase_amount?: InputMaybe<Scalars['Int']['input']>;
1348
- minimum_purchase_quantity?: InputMaybe<Scalars['Int']['input']>;
1349
- minimum_purchase_type: DiscountFsMinimunPurchaseType;
1347
+ minimum_purchase_type: DiscountFsMinimumPurchaseType;
1348
+ minimum_purchase_value?: InputMaybe<Scalars['Float']['input']>;
1350
1349
  type: DiscountFsType;
1351
1350
  };
1352
- export declare enum DiscountFsMinimunPurchaseType {
1351
+ export declare enum DiscountFsMinimumPurchaseType {
1353
1352
  amount = "amount",
1354
1353
  none = "none",
1355
1354
  quantity = "quantity"
@@ -2240,6 +2239,7 @@ export type MarketVariantEdge = {
2240
2239
  export type MarketVariantFilterKeys = {
2241
2240
  cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
2242
2241
  markets?: InputMaybe<Array<Scalars['ID']['input']>>;
2242
+ products?: InputMaybe<Array<Scalars['ID']['input']>>;
2243
2243
  variants?: InputMaybe<Array<Scalars['ID']['input']>>;
2244
2244
  };
2245
2245
  export type MarketVariantInput = {
@@ -2573,6 +2573,7 @@ export type Mutation = {
2573
2573
  addShippingZones?: Maybe<Array<Maybe<ShippingZone>>>;
2574
2574
  addStaff?: Maybe<Staff>;
2575
2575
  addStaffs?: Maybe<Array<Maybe<Staff>>>;
2576
+ addStoreInvoice?: Maybe<StoreInvoice>;
2576
2577
  addSupplier?: Maybe<Supplier>;
2577
2578
  addSuppliers?: Maybe<Array<Maybe<Supplier>>>;
2578
2579
  addTax?: Maybe<Tax>;
@@ -2960,6 +2961,9 @@ export type MutationAddStaffArgs = {
2960
2961
  export type MutationAddStaffsArgs = {
2961
2962
  input: Array<AddStaff>;
2962
2963
  };
2964
+ export type MutationAddStoreInvoiceArgs = {
2965
+ input: AddStoreInvoice;
2966
+ };
2963
2967
  export type MutationAddSupplierArgs = {
2964
2968
  input: AddSupplier;
2965
2969
  };
@@ -3987,11 +3991,11 @@ export type Purchase = {
3987
3991
  export type PurchaseAdjustment = {
3988
3992
  __typename: 'PurchaseAdjustment';
3989
3993
  cost?: Maybe<Scalars['Float']['output']>;
3990
- name?: Maybe<Scalars['String']['output']>;
3994
+ title?: Maybe<Scalars['String']['output']>;
3991
3995
  };
3992
3996
  export type PurchaseAdjustmentInput = {
3993
3997
  cost?: Scalars['Float']['input'];
3994
- name: Scalars['String']['input'];
3998
+ title: Scalars['String']['input'];
3995
3999
  };
3996
4000
  export type PurchaseConnection = {
3997
4001
  __typename: 'PurchaseConnection';
@@ -4495,11 +4499,13 @@ export type QueryCollectionProductsArgs = {
4495
4499
  sortKey?: InputMaybe<CollectionProductSortkey>;
4496
4500
  };
4497
4501
  export type QueryCollectionsArgs = {
4502
+ after?: InputMaybe<Scalars['ID']['input']>;
4503
+ before?: InputMaybe<Scalars['ID']['input']>;
4498
4504
  filterKeys?: InputMaybe<CollectionFilterKeys>;
4499
- limit?: InputMaybe<Scalars['Int']['input']>;
4505
+ first?: InputMaybe<Scalars['Int']['input']>;
4506
+ last?: InputMaybe<Scalars['Int']['input']>;
4500
4507
  query?: InputMaybe<Scalars['String']['input']>;
4501
4508
  reverse?: InputMaybe<Scalars['Boolean']['input']>;
4502
- skip?: InputMaybe<Scalars['Int']['input']>;
4503
4509
  sortKey?: InputMaybe<CollectionSortKey>;
4504
4510
  };
4505
4511
  export type QueryCustomerArgs = {
@@ -5256,21 +5262,27 @@ export type StoreInvitationDetails = {
5256
5262
  export type StoreInvoice = {
5257
5263
  __typename: 'StoreInvoice';
5258
5264
  _id?: Maybe<Scalars['ID']['output']>;
5265
+ actual_gain?: Maybe<Scalars['Float']['output']>;
5259
5266
  beneficiary?: Maybe<StoreInvoiceBeneficiary>;
5260
5267
  createdAt?: Maybe<Scalars['String']['output']>;
5268
+ disbursement_locked_untill?: Maybe<Scalars['String']['output']>;
5269
+ disbursement_status?: Maybe<StoreInvoiceDisbursementStatus>;
5261
5270
  line_items?: Maybe<Array<Maybe<StoreInvoiceLineitem>>>;
5271
+ metadata?: Maybe<Scalars['JSON']['output']>;
5262
5272
  payable?: Maybe<Scalars['Float']['output']>;
5263
5273
  payment_completed_at?: Maybe<Scalars['String']['output']>;
5264
5274
  payment_ref_id?: Maybe<Scalars['String']['output']>;
5265
5275
  payment_status?: Maybe<StoreInvoicePaymentStatus>;
5266
5276
  payment_transaction_id?: Maybe<Scalars['String']['output']>;
5267
5277
  publisher?: Maybe<Publisher>;
5278
+ redirect_url?: Maybe<Scalars['String']['output']>;
5268
5279
  refund_completed_at?: Maybe<Scalars['String']['output']>;
5269
5280
  refund_reason?: Maybe<Scalars['String']['output']>;
5270
5281
  refund_ref_id?: Maybe<Scalars['String']['output']>;
5271
5282
  refund_status?: Maybe<StoreInvoiceRefundStatus>;
5272
5283
  refund_transaction_id?: Maybe<Scalars['String']['output']>;
5273
5284
  store?: Maybe<Store>;
5285
+ total_refunded?: Maybe<Scalars['Float']['output']>;
5274
5286
  updatedAt?: Maybe<Scalars['String']['output']>;
5275
5287
  };
5276
5288
  export declare enum StoreInvoiceBeneficiary {
@@ -5283,6 +5295,10 @@ export type StoreInvoiceConnection = {
5283
5295
  pageInfo?: Maybe<PageInfo>;
5284
5296
  totalCount?: Maybe<Scalars['Int']['output']>;
5285
5297
  };
5298
+ export declare enum StoreInvoiceDisbursementStatus {
5299
+ disbursed = "disbursed",
5300
+ pending = "pending"
5301
+ }
5286
5302
  export type StoreInvoiceEdge = {
5287
5303
  __typename: 'StoreInvoiceEdge';
5288
5304
  cursor?: Maybe<Scalars['ID']['output']>;
@@ -6594,13 +6610,23 @@ export type BlogsQuery = {
6594
6610
  } | null;
6595
6611
  };
6596
6612
  export type CollectionsQueryVariables = Exact<{
6597
- skip?: InputMaybe<Scalars['Int']['input']>;
6598
- filterKeys?: InputMaybe<CollectionFilterKeys>;
6613
+ after?: InputMaybe<Scalars['ID']['input']>;
6614
+ before?: InputMaybe<Scalars['ID']['input']>;
6615
+ first?: InputMaybe<Scalars['Int']['input']>;
6616
+ last?: InputMaybe<Scalars['Int']['input']>;
6599
6617
  query?: InputMaybe<Scalars['String']['input']>;
6618
+ filterKeys?: InputMaybe<CollectionFilterKeys>;
6600
6619
  }>;
6601
6620
  export type CollectionsQuery = {
6602
6621
  collections?: {
6603
6622
  __typename: 'CollectionConnection';
6623
+ pageInfo?: {
6624
+ __typename: 'PageInfo';
6625
+ endCursor?: string | null;
6626
+ hasNextPage?: boolean | null;
6627
+ hasPreviousPage?: boolean | null;
6628
+ startCursor?: string | null;
6629
+ } | null;
6604
6630
  edges?: Array<{
6605
6631
  __typename: 'CollectionEdge';
6606
6632
  node?: {
@@ -6614,6 +6640,48 @@ export type CollectionsQuery = {
6614
6640
  } | null;
6615
6641
  } | null;
6616
6642
  } | null> | null;
6643
+ } | null;
6644
+ };
6645
+ export type _CountriesQueryVariables = Exact<{
6646
+ after?: InputMaybe<Scalars['ID']['input']>;
6647
+ before?: InputMaybe<Scalars['ID']['input']>;
6648
+ first?: InputMaybe<Scalars['Int']['input']>;
6649
+ last?: InputMaybe<Scalars['Int']['input']>;
6650
+ query?: InputMaybe<Scalars['String']['input']>;
6651
+ filterKeys?: InputMaybe<_CountryFilterKeys>;
6652
+ }>;
6653
+ export type _CountriesQuery = {
6654
+ _countries?: {
6655
+ __typename: '_CountryConnection';
6656
+ pageInfo?: {
6657
+ __typename: 'PageInfo';
6658
+ endCursor?: string | null;
6659
+ hasNextPage?: boolean | null;
6660
+ hasPreviousPage?: boolean | null;
6661
+ startCursor?: string | null;
6662
+ } | null;
6663
+ edges?: Array<{
6664
+ __typename: '_CountryEdge';
6665
+ node?: {
6666
+ __typename: '_Country';
6667
+ _id?: string | null;
6668
+ name?: string | null;
6669
+ flag?: string | null;
6670
+ } | null;
6671
+ } | null> | null;
6672
+ } | null;
6673
+ };
6674
+ export type CustomersQueryVariables = Exact<{
6675
+ after?: InputMaybe<Scalars['ID']['input']>;
6676
+ before?: InputMaybe<Scalars['ID']['input']>;
6677
+ first?: InputMaybe<Scalars['Int']['input']>;
6678
+ last?: InputMaybe<Scalars['Int']['input']>;
6679
+ query?: InputMaybe<Scalars['String']['input']>;
6680
+ filterKeys?: InputMaybe<CustomerFilterKeys>;
6681
+ }>;
6682
+ export type CustomersQuery = {
6683
+ customers?: {
6684
+ __typename: 'CustomerConnection';
6617
6685
  pageInfo?: {
6618
6686
  __typename: 'PageInfo';
6619
6687
  endCursor?: string | null;
@@ -6621,6 +6689,19 @@ export type CollectionsQuery = {
6621
6689
  hasPreviousPage?: boolean | null;
6622
6690
  startCursor?: string | null;
6623
6691
  } | null;
6692
+ edges?: Array<{
6693
+ __typename: 'CustomerEdge';
6694
+ node?: {
6695
+ __typename: 'Customer';
6696
+ _id?: string | null;
6697
+ first_name?: string | null;
6698
+ last_name?: string | null;
6699
+ email?: {
6700
+ __typename: 'CustomerEmail';
6701
+ address?: string | null;
6702
+ } | null;
6703
+ } | null;
6704
+ } | null> | null;
6624
6705
  } | null;
6625
6706
  };
6626
6707
  export type LinklistsQueryVariables = Exact<{
@@ -6876,6 +6957,34 @@ export type ProductsQuery = {
6876
6957
  } | null> | null;
6877
6958
  } | null;
6878
6959
  };
6960
+ export type CustomerSegmentsQueryVariables = Exact<{
6961
+ after?: InputMaybe<Scalars['ID']['input']>;
6962
+ before?: InputMaybe<Scalars['ID']['input']>;
6963
+ first?: InputMaybe<Scalars['Int']['input']>;
6964
+ last?: InputMaybe<Scalars['Int']['input']>;
6965
+ query?: InputMaybe<Scalars['String']['input']>;
6966
+ filterKeys?: InputMaybe<CustomerSegmentFilterKeys>;
6967
+ }>;
6968
+ export type CustomerSegmentsQuery = {
6969
+ customerSegments?: {
6970
+ __typename: 'CustomerSegmentConnection';
6971
+ pageInfo?: {
6972
+ __typename: 'PageInfo';
6973
+ endCursor?: string | null;
6974
+ hasNextPage?: boolean | null;
6975
+ hasPreviousPage?: boolean | null;
6976
+ startCursor?: string | null;
6977
+ } | null;
6978
+ edges?: Array<{
6979
+ __typename: 'CustomerSegmentEdge';
6980
+ node?: {
6981
+ __typename: 'CustomerSegment';
6982
+ _id?: string | null;
6983
+ title?: string | null;
6984
+ } | null;
6985
+ } | null> | null;
6986
+ } | null;
6987
+ };
6879
6988
  export type VariantsQueryVariables = Exact<{
6880
6989
  after?: InputMaybe<Scalars['ID']['input']>;
6881
6990
  before?: InputMaybe<Scalars['ID']['input']>;
@@ -6919,6 +7028,8 @@ export type VariantsQuery = {
6919
7028
  export declare const ArticlesDocument: DocumentNode<ArticlesQuery, ArticlesQueryVariables>;
6920
7029
  export declare const BlogsDocument: DocumentNode<BlogsQuery, BlogsQueryVariables>;
6921
7030
  export declare const CollectionsDocument: DocumentNode<CollectionsQuery, CollectionsQueryVariables>;
7031
+ export declare const _CountriesDocument: DocumentNode<_CountriesQuery, _CountriesQueryVariables>;
7032
+ export declare const CustomersDocument: DocumentNode<CustomersQuery, CustomersQueryVariables>;
6922
7033
  export declare const LinklistsDocument: DocumentNode<LinklistsQuery, LinklistsQueryVariables>;
6923
7034
  export declare const MediasDocument: DocumentNode<MediasQuery, MediasQueryVariables>;
6924
7035
  export declare const StoragePlanDocument: DocumentNode<StoragePlanQuery, StoragePlanQueryVariables>;
@@ -6930,4 +7041,5 @@ export declare const MetaobjectEntriesDocument: DocumentNode<MetaobjectEntriesQu
6930
7041
  export declare const MetaobjectsDocument: DocumentNode<MetaobjectsQuery, MetaobjectsQueryVariables>;
6931
7042
  export declare const PagesDocument: DocumentNode<PagesQuery, PagesQueryVariables>;
6932
7043
  export declare const ProductsDocument: DocumentNode<ProductsQuery, ProductsQueryVariables>;
7044
+ export declare const CustomerSegmentsDocument: DocumentNode<CustomerSegmentsQuery, CustomerSegmentsQueryVariables>;
6933
7045
  export declare const VariantsDocument: DocumentNode<VariantsQuery, VariantsQueryVariables>;