@soppiya/app-bridge 1.1.5 → 1.1.7

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/index.d.ts +2 -0
  2. package/dist/components/index.js +2 -0
  3. package/dist/components/media/Media.js +7 -7
  4. package/dist/components/meta-data/api/query.js +3 -0
  5. package/dist/components/meta-data/model/meta.types.js +3 -1
  6. package/dist/components/meta-data/model/useGetMetaFields.d.ts +4 -0
  7. package/dist/components/meta-data/ui/MetaData.stories.d.ts +1 -0
  8. package/dist/components/meta-data/ui/MetaData.stories.js +22 -1
  9. package/dist/components/meta-data/ui/MetaDataItem.js +22 -0
  10. package/dist/components/meta-data/ui/MetaobjectRefMetaField.d.ts +3 -0
  11. package/dist/components/meta-data/ui/MetaobjectRefMetaField.js +30 -0
  12. package/dist/components/meta-data/ui/SingleLineTextMetaField.js +10 -9
  13. package/dist/components/metaobjects-entries-picker/index.d.ts +1 -0
  14. package/dist/components/metaobjects-entries-picker/index.js +2 -0
  15. package/dist/components/metaobjects-entries-picker/ui/MetaobjectEntriesPicker.d.ts +10 -0
  16. package/dist/components/{metafield-entries/ui/MetaobjectEntries.js → metaobjects-entries-picker/ui/MetaobjectEntriesPicker.js} +3 -3
  17. package/dist/components/{metafield-entries/ui/MetaobjectEntries.stories.d.ts → metaobjects-entries-picker/ui/MetaobjectEntriesPicker.stories.d.ts} +1 -1
  18. package/dist/components/metaobjects-entries-picker/ui/MetaobjectEntriesPicker.stories.js +10 -0
  19. package/dist/components/metaobjects-picker/api/query.d.ts +8 -0
  20. package/dist/components/metaobjects-picker/api/query.js +18 -0
  21. package/dist/components/metaobjects-picker/index.d.ts +1 -0
  22. package/dist/components/metaobjects-picker/index.js +2 -0
  23. package/dist/components/metaobjects-picker/model/useMetaobjects.d.ts +24 -0
  24. package/dist/components/metaobjects-picker/model/useMetaobjects.js +45 -0
  25. package/dist/components/metaobjects-picker/ui/MetaobjectsPicker.d.ts +9 -0
  26. package/dist/components/metaobjects-picker/ui/MetaobjectsPicker.js +104 -0
  27. package/dist/components/metaobjects-picker/ui/MetaobjectsPicker.stories.d.ts +14 -0
  28. package/dist/components/metaobjects-picker/ui/MetaobjectsPicker.stories.js +10 -0
  29. package/dist/shared/graphql/gql.d.ts +7 -2
  30. package/dist/shared/graphql/gql.js +3 -2
  31. package/dist/shared/graphql/graphql.d.ts +71 -25
  32. package/dist/shared/graphql/graphql.js +318 -8
  33. package/dist/styles.css +20 -15
  34. package/package.json +1 -1
  35. package/dist/components/metafield-entries/index.d.ts +0 -0
  36. package/dist/components/metafield-entries/index.js +0 -0
  37. package/dist/components/metafield-entries/ui/MetaobjectEntries.d.ts +0 -10
  38. package/dist/components/metafield-entries/ui/MetaobjectEntries.stories.js +0 -10
  39. package/dist/components/metafields-picker/api/query.d.ts +0 -0
  40. package/dist/components/metafields-picker/api/query.js +0 -0
  41. package/dist/components/metafields-picker/index.d.ts +0 -0
  42. package/dist/components/metafields-picker/index.js +0 -0
  43. package/dist/components/metafields-picker/model/useMetafields.d.ts +0 -0
  44. package/dist/components/metafields-picker/model/useMetafields.js +0 -0
  45. package/dist/components/metafields-picker/ui/MetafieldsPicker.d.ts +0 -2
  46. package/dist/components/metafields-picker/ui/MetafieldsPicker.js +0 -7
  47. package/dist/components/metafields-picker/ui/MetafieldsPicker.stories.d.ts +0 -6
  48. package/dist/components/metafields-picker/ui/MetafieldsPicker.stories.js +0 -8
  49. /package/dist/components/{metafield-entries → metaobjects-entries-picker}/api/query.d.ts +0 -0
  50. /package/dist/components/{metafield-entries → metaobjects-entries-picker}/api/query.js +0 -0
  51. /package/dist/components/{metafield-entries → metaobjects-entries-picker}/model/useMetaobjectEntries.d.ts +0 -0
  52. /package/dist/components/{metafield-entries → metaobjects-entries-picker}/model/useMetaobjectEntries.js +0 -0
@@ -1,4 +1,4 @@
1
- import { AddMediasDocument, ArticlesDocument, BlogsDocument, CollectionsDocument, DeleteMediasDocument, LinklistsDocument, MediaUsageDocument, MediasDocument, MetafieldsDocument, MetaobjectEntriesDocument, PagesDocument, ProductsDocument, StoragePlanDocument, VariantsDocument } from "./graphql.js";
1
+ import { AddMediasDocument, ArticlesDocument, BlogsDocument, CollectionsDocument, DeleteMediasDocument, LinklistsDocument, MediaUsageDocument, MediasDocument, MetafieldsDocument, MetaobjectEntriesDocument, MetaobjectsDocument, PagesDocument, ProductsDocument, StoragePlanDocument, VariantsDocument } from "./graphql.js";
2
2
  const documents = {
3
3
  "query Articles($filterKeys: ArticleFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n articles(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n }\n}": ArticlesDocument,
4
4
  "query Blogs($filterKeys: BlogFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n blogs(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n }\n}": BlogsDocument,
@@ -9,8 +9,9 @@ const documents = {
9
9
  "\n query MediaUsage {\n mediaUsage\n }\n": MediaUsageDocument,
10
10
  "\n mutation AddMedias($input: [Upload!]!) {\n addMedias(input: $input) {\n _id\n file_name\n url\n size\n }\n }\n": AddMediasDocument,
11
11
  "\n mutation DeleteMedias($cursors: [ID!]!) {\n deleteMedias(cursors: $cursors) {\n message\n }\n }\n": DeleteMediasDocument,
12
- "query Metafields($filterKeys: MetafieldFilterKeys, $first: Int) {\n metafields(filterKeys: $filterKeys, first: $first) {\n edges {\n node {\n _id\n entry\n name\n type\n }\n }\n }\n}": MetafieldsDocument,
12
+ "query Metafields($filterKeys: MetafieldFilterKeys, $first: Int) {\n metafields(filterKeys: $filterKeys, first: $first) {\n edges {\n node {\n _id\n entry\n name\n type\n metaobject_reference {\n _id\n }\n }\n }\n }\n}": MetafieldsDocument,
13
13
  "query MetaobjectEntries($after: ID, $before: ID, $first: Int, $last: Int, $query: String, $filterKeys: MetaobjectEntryFilterKeys) {\n metaobjectEntries(after: $after, before: $before, first: $first, last: $last, query: $query, filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n }\n }\n }\n}": MetaobjectEntriesDocument,
14
+ "query Metaobjects($filterKeys: MetaobjectFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n metaobjects(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n name\n }\n }\n }\n}": MetaobjectsDocument,
14
15
  "query Pages($filterKeys: PageFilterKeys, $after: ID, $before: ID, $first: Int, $last: Int, $query: String) {\n pages(filterKeys: $filterKeys, after: $after, before: $before, first: $first, last: $last, query: $query) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n }\n}": PagesDocument,
15
16
  "\n query Products($after: ID, $before: ID, $first: Int, $last: Int, $query: String,$filterKeys: ProductFilterKeys) {\n products(after: $after, before: $before, first: $first, last: $last, query: $query,filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n title\n image {\n _id\n url\n }\n }\n }\n }\n }\n": ProductsDocument,
16
17
  "\n query Variants($after: ID, $before: ID, $first: Int, $last: Int, $query: String,$filterKeys: VariantFilterKeys) {\n variants(after: $after, before: $before, first: $first, last: $last, query: $query,filterKeys: $filterKeys) {\n pageInfo {\n endCursor\n hasNextPage\n hasPreviousPage\n startCursor\n }\n edges {\n node {\n _id\n option1\n option2\n option3\n image {\n _id\n url\n }\n product {\n _id\n title\n }\n }\n }\n }\n }\n": VariantsDocument
@@ -91,12 +91,14 @@ export type AddBlog = {
91
91
  title: Scalars['String']['input'];
92
92
  };
93
93
  export type AddCart = {
94
+ billing_address?: InputMaybe<CartAddressInput>;
95
+ coupon?: InputMaybe<Scalars['String']['input']>;
94
96
  customer?: InputMaybe<Scalars['ID']['input']>;
95
97
  ip?: InputMaybe<Scalars['String']['input']>;
96
98
  line_items?: InputMaybe<Array<CartLineItemInput>>;
97
99
  market: Scalars['ID']['input'];
98
100
  note?: InputMaybe<Scalars['String']['input']>;
99
- shipping_address?: InputMaybe<CartShippingAddressInput>;
101
+ shipping_address?: InputMaybe<CartAddressInput>;
100
102
  user_agent?: InputMaybe<Scalars['String']['input']>;
101
103
  };
102
104
  export type AddCollection = {
@@ -254,6 +256,7 @@ export type AddPage = {
254
256
  meta_description?: InputMaybe<Scalars['String']['input']>;
255
257
  meta_tags?: InputMaybe<Array<InputMaybe<Scalars['String']['input']>>>;
256
258
  meta_title?: InputMaybe<Scalars['String']['input']>;
259
+ metafields?: InputMaybe<Array<InputMaybe<MetafieldInput>>>;
257
260
  status: PageStatus;
258
261
  template?: InputMaybe<Scalars['String']['input']>;
259
262
  title: Scalars['String']['input'];
@@ -559,6 +562,7 @@ export type Brand = {
559
562
  export type Cart = {
560
563
  __typename: 'Cart';
561
564
  _id?: Maybe<Scalars['ID']['output']>;
565
+ billing_address?: Maybe<CartAddress>;
562
566
  customer?: Maybe<Customer>;
563
567
  discounts?: Maybe<Array<Maybe<CartDiscount>>>;
564
568
  errors?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
@@ -567,11 +571,36 @@ export type Cart = {
567
571
  market?: Maybe<Market>;
568
572
  note?: Maybe<Scalars['String']['output']>;
569
573
  pricing?: Maybe<CartPricing>;
570
- shipping_address?: Maybe<CartShippingAddress>;
574
+ shipping_address?: Maybe<CartAddress>;
571
575
  status?: Maybe<CartStatus>;
572
576
  store?: Maybe<Store>;
573
577
  user_agent?: Maybe<Scalars['String']['output']>;
574
578
  };
579
+ export type CartAddress = {
580
+ __typename: 'CartAddress';
581
+ address1?: Maybe<Scalars['String']['output']>;
582
+ address2?: Maybe<Scalars['String']['output']>;
583
+ city?: Maybe<Scalars['String']['output']>;
584
+ company?: Maybe<Scalars['String']['output']>;
585
+ country?: Maybe<_Country>;
586
+ first_name?: Maybe<Scalars['String']['output']>;
587
+ last_name?: Maybe<Scalars['String']['output']>;
588
+ phone?: Maybe<Scalars['String']['output']>;
589
+ postal_code?: Maybe<Scalars['String']['output']>;
590
+ region?: Maybe<_Region>;
591
+ };
592
+ export type CartAddressInput = {
593
+ address1?: InputMaybe<Scalars['String']['input']>;
594
+ address2?: InputMaybe<Scalars['String']['input']>;
595
+ city?: InputMaybe<Scalars['String']['input']>;
596
+ company?: InputMaybe<Scalars['String']['input']>;
597
+ country?: InputMaybe<Scalars['ID']['input']>;
598
+ first_name?: InputMaybe<Scalars['String']['input']>;
599
+ last_name?: InputMaybe<Scalars['String']['input']>;
600
+ phone?: InputMaybe<Scalars['String']['input']>;
601
+ postal_code?: InputMaybe<Scalars['String']['input']>;
602
+ region?: InputMaybe<Scalars['ID']['input']>;
603
+ };
575
604
  export type CartConnection = {
576
605
  __typename: 'CartConnection';
577
606
  edges?: Maybe<Array<Maybe<CartEdge>>>;
@@ -674,17 +703,6 @@ export type CartPricingLineItem = {
674
703
  final_total?: Maybe<Scalars['Float']['output']>;
675
704
  line_item?: Maybe<Scalars['ID']['output']>;
676
705
  };
677
- export type CartShippingAddress = {
678
- __typename: 'CartShippingAddress';
679
- country?: Maybe<_Country>;
680
- postal_code?: Maybe<Scalars['String']['output']>;
681
- region?: Maybe<_Region>;
682
- };
683
- export type CartShippingAddressInput = {
684
- country?: InputMaybe<Scalars['ID']['input']>;
685
- postal_code?: InputMaybe<Scalars['ID']['input']>;
686
- region?: InputMaybe<Scalars['ID']['input']>;
687
- };
688
706
  export declare enum CartSortkeys {
689
707
  _id = "_id",
690
708
  createdAt = "createdAt",
@@ -747,7 +765,6 @@ export declare enum CheckoutNameRequirement {
747
765
  export type Collection = {
748
766
  __typename: 'Collection';
749
767
  _id?: Maybe<Scalars['ID']['output']>;
750
- collectionProducts?: Maybe<CollectionProductConnection>;
751
768
  description?: Maybe<Scalars['String']['output']>;
752
769
  handle?: Maybe<Scalars['String']['output']>;
753
770
  image?: Maybe<Media>;
@@ -755,11 +772,12 @@ export type Collection = {
755
772
  meta_tags?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
756
773
  meta_title?: Maybe<Scalars['String']['output']>;
757
774
  metafields?: Maybe<Array<Maybe<MetafieldData>>>;
775
+ products?: Maybe<CollectionProductConnection>;
758
776
  store?: Maybe<Store>;
759
777
  template?: Maybe<Scalars['String']['output']>;
760
778
  title?: Maybe<Scalars['String']['output']>;
761
779
  };
762
- export type CollectionCollectionProductsArgs = {
780
+ export type CollectionProductsArgs = {
763
781
  after?: InputMaybe<Scalars['ID']['input']>;
764
782
  before?: InputMaybe<Scalars['ID']['input']>;
765
783
  filterKeys?: InputMaybe<CollectionProductFilterKeys>;
@@ -1502,14 +1520,14 @@ export type EditBrand = {
1502
1520
  youtube?: InputMaybe<Scalars['String']['input']>;
1503
1521
  };
1504
1522
  export type EditCart = {
1523
+ billing_address?: InputMaybe<CartAddressInput>;
1505
1524
  coupon?: InputMaybe<Scalars['String']['input']>;
1506
1525
  cursor: Scalars['ID']['input'];
1507
1526
  customer?: InputMaybe<Scalars['ID']['input']>;
1508
1527
  ip?: InputMaybe<Scalars['String']['input']>;
1509
1528
  line_items?: InputMaybe<Array<CartLineItemInput>>;
1510
- market?: InputMaybe<Scalars['ID']['input']>;
1511
1529
  note?: InputMaybe<Scalars['String']['input']>;
1512
- shipping_address?: InputMaybe<CartShippingAddressInput>;
1530
+ shipping_address?: InputMaybe<CartAddressInput>;
1513
1531
  user_agent?: InputMaybe<Scalars['String']['input']>;
1514
1532
  };
1515
1533
  export type EditCollection = {
@@ -2192,6 +2210,7 @@ export type MarketVariant = {
2192
2210
  __typename: 'MarketVariant';
2193
2211
  _id?: Maybe<Scalars['ID']['output']>;
2194
2212
  compare_at_price?: Maybe<Scalars['Float']['output']>;
2213
+ createdAt?: Maybe<Scalars['String']['output']>;
2195
2214
  is_fixed_price?: Maybe<Scalars['Boolean']['output']>;
2196
2215
  is_tax_applicable?: Maybe<Scalars['Boolean']['output']>;
2197
2216
  market?: Maybe<Market>;
@@ -2203,6 +2222,7 @@ export type MarketVariant = {
2203
2222
  sku?: Maybe<Scalars['String']['output']>;
2204
2223
  store?: Maybe<Store>;
2205
2224
  track_inventory?: Maybe<Scalars['Boolean']['output']>;
2225
+ updatedAt?: Maybe<Scalars['String']['output']>;
2206
2226
  use_wholesale?: Maybe<Scalars['Boolean']['output']>;
2207
2227
  variant?: Maybe<Variant>;
2208
2228
  };
@@ -2454,19 +2474,13 @@ export type MetaobjectFieldInput = {
2454
2474
  type: MetaobjectFieldType;
2455
2475
  };
2456
2476
  export declare enum MetaobjectFieldType {
2457
- article_ref = "article_ref",
2458
- blog_ref = "blog_ref",
2459
2477
  boolean = "boolean",
2460
- collection_ref = "collection_ref",
2461
2478
  color = "color",
2462
2479
  date = "date",
2463
2480
  date_time = "date_time",
2464
2481
  multiline_text = "multiline_text",
2465
2482
  number = "number",
2466
- page_ref = "page_ref",
2467
- product_ref = "product_ref",
2468
- single_line_text = "single_line_text",
2469
- variant_ref = "variant_ref"
2483
+ single_line_text = "single_line_text"
2470
2484
  }
2471
2485
  export type MetaobjectFilterKeys = {
2472
2486
  cursors?: InputMaybe<Array<Scalars['ID']['input']>>;
@@ -3586,7 +3600,6 @@ export type PageInfo = {
3586
3600
  };
3587
3601
  export declare enum PageSortKeys {
3588
3602
  _id = "_id",
3589
- blog = "blog",
3590
3603
  createdAt = "createdAt",
3591
3604
  status = "status",
3592
3605
  title = "title",
@@ -6733,6 +6746,10 @@ export type MetafieldsQuery = {
6733
6746
  entry?: MetafieldEntryType | null;
6734
6747
  name?: string | null;
6735
6748
  type?: MetafieldType | null;
6749
+ metaobject_reference?: {
6750
+ __typename: 'Metaobject';
6751
+ _id?: string | null;
6752
+ } | null;
6736
6753
  } | null;
6737
6754
  } | null> | null;
6738
6755
  } | null;
@@ -6765,6 +6782,34 @@ export type MetaobjectEntriesQuery = {
6765
6782
  } | null> | null;
6766
6783
  } | null;
6767
6784
  };
6785
+ export type MetaobjectsQueryVariables = Exact<{
6786
+ filterKeys?: InputMaybe<MetaobjectFilterKeys>;
6787
+ after?: InputMaybe<Scalars['ID']['input']>;
6788
+ before?: InputMaybe<Scalars['ID']['input']>;
6789
+ first?: InputMaybe<Scalars['Int']['input']>;
6790
+ last?: InputMaybe<Scalars['Int']['input']>;
6791
+ query?: InputMaybe<Scalars['String']['input']>;
6792
+ }>;
6793
+ export type MetaobjectsQuery = {
6794
+ metaobjects?: {
6795
+ __typename: 'MetaobjectConnection';
6796
+ pageInfo?: {
6797
+ __typename: 'PageInfo';
6798
+ endCursor?: string | null;
6799
+ hasNextPage?: boolean | null;
6800
+ hasPreviousPage?: boolean | null;
6801
+ startCursor?: string | null;
6802
+ } | null;
6803
+ edges?: Array<{
6804
+ __typename: 'MetaobjectEdge';
6805
+ node?: {
6806
+ __typename: 'Metaobject';
6807
+ _id?: string | null;
6808
+ name?: string | null;
6809
+ } | null;
6810
+ } | null> | null;
6811
+ } | null;
6812
+ };
6768
6813
  export type PagesQueryVariables = Exact<{
6769
6814
  filterKeys?: InputMaybe<PageFilterKeys>;
6770
6815
  after?: InputMaybe<Scalars['ID']['input']>;
@@ -6882,6 +6927,7 @@ export declare const AddMediasDocument: DocumentNode<AddMediasMutation, AddMedia
6882
6927
  export declare const DeleteMediasDocument: DocumentNode<DeleteMediasMutation, DeleteMediasMutationVariables>;
6883
6928
  export declare const MetafieldsDocument: DocumentNode<MetafieldsQuery, MetafieldsQueryVariables>;
6884
6929
  export declare const MetaobjectEntriesDocument: DocumentNode<MetaobjectEntriesQuery, MetaobjectEntriesQueryVariables>;
6930
+ export declare const MetaobjectsDocument: DocumentNode<MetaobjectsQuery, MetaobjectsQueryVariables>;
6885
6931
  export declare const PagesDocument: DocumentNode<PagesQuery, PagesQueryVariables>;
6886
6932
  export declare const ProductsDocument: DocumentNode<ProductsQuery, ProductsQueryVariables>;
6887
6933
  export declare const VariantsDocument: DocumentNode<VariantsQuery, VariantsQueryVariables>;
@@ -511,19 +511,13 @@ var graphql_MetaobjectEntrySortKeys = /*#__PURE__*/ function(MetaobjectEntrySort
511
511
  return MetaobjectEntrySortKeys;
512
512
  }({});
513
513
  var graphql_MetaobjectFieldType = /*#__PURE__*/ function(MetaobjectFieldType) {
514
- MetaobjectFieldType["article_ref"] = "article_ref";
515
- MetaobjectFieldType["blog_ref"] = "blog_ref";
516
514
  MetaobjectFieldType["boolean"] = "boolean";
517
- MetaobjectFieldType["collection_ref"] = "collection_ref";
518
515
  MetaobjectFieldType["color"] = "color";
519
516
  MetaobjectFieldType["date"] = "date";
520
517
  MetaobjectFieldType["date_time"] = "date_time";
521
518
  MetaobjectFieldType["multiline_text"] = "multiline_text";
522
519
  MetaobjectFieldType["number"] = "number";
523
- MetaobjectFieldType["page_ref"] = "page_ref";
524
- MetaobjectFieldType["product_ref"] = "product_ref";
525
520
  MetaobjectFieldType["single_line_text"] = "single_line_text";
526
- MetaobjectFieldType["variant_ref"] = "variant_ref";
527
521
  return MetaobjectFieldType;
528
522
  }({});
529
523
  var graphql_MetaobjectSortKeys = /*#__PURE__*/ function(MetaobjectSortKeys) {
@@ -536,7 +530,6 @@ var graphql_MetaobjectSortKeys = /*#__PURE__*/ function(MetaobjectSortKeys) {
536
530
  }({});
537
531
  var graphql_PageSortKeys = /*#__PURE__*/ function(PageSortKeys) {
538
532
  PageSortKeys["_id"] = "_id";
539
- PageSortKeys["blog"] = "blog";
540
533
  PageSortKeys["createdAt"] = "createdAt";
541
534
  PageSortKeys["status"] = "status";
542
535
  PageSortKeys["title"] = "title";
@@ -2981,6 +2974,25 @@ const MetafieldsDocument = {
2981
2974
  kind: "Name",
2982
2975
  value: "type"
2983
2976
  }
2977
+ },
2978
+ {
2979
+ kind: "Field",
2980
+ name: {
2981
+ kind: "Name",
2982
+ value: "metaobject_reference"
2983
+ },
2984
+ selectionSet: {
2985
+ kind: "SelectionSet",
2986
+ selections: [
2987
+ {
2988
+ kind: "Field",
2989
+ name: {
2990
+ kind: "Name",
2991
+ value: "_id"
2992
+ }
2993
+ }
2994
+ ]
2995
+ }
2984
2996
  }
2985
2997
  ]
2986
2998
  }
@@ -3294,6 +3306,304 @@ const MetaobjectEntriesDocument = {
3294
3306
  }
3295
3307
  ]
3296
3308
  };
3309
+ const MetaobjectsDocument = {
3310
+ kind: "Document",
3311
+ definitions: [
3312
+ {
3313
+ kind: "OperationDefinition",
3314
+ operation: "query",
3315
+ name: {
3316
+ kind: "Name",
3317
+ value: "Metaobjects"
3318
+ },
3319
+ variableDefinitions: [
3320
+ {
3321
+ kind: "VariableDefinition",
3322
+ variable: {
3323
+ kind: "Variable",
3324
+ name: {
3325
+ kind: "Name",
3326
+ value: "filterKeys"
3327
+ }
3328
+ },
3329
+ type: {
3330
+ kind: "NamedType",
3331
+ name: {
3332
+ kind: "Name",
3333
+ value: "MetaobjectFilterKeys"
3334
+ }
3335
+ }
3336
+ },
3337
+ {
3338
+ kind: "VariableDefinition",
3339
+ variable: {
3340
+ kind: "Variable",
3341
+ name: {
3342
+ kind: "Name",
3343
+ value: "after"
3344
+ }
3345
+ },
3346
+ type: {
3347
+ kind: "NamedType",
3348
+ name: {
3349
+ kind: "Name",
3350
+ value: "ID"
3351
+ }
3352
+ }
3353
+ },
3354
+ {
3355
+ kind: "VariableDefinition",
3356
+ variable: {
3357
+ kind: "Variable",
3358
+ name: {
3359
+ kind: "Name",
3360
+ value: "before"
3361
+ }
3362
+ },
3363
+ type: {
3364
+ kind: "NamedType",
3365
+ name: {
3366
+ kind: "Name",
3367
+ value: "ID"
3368
+ }
3369
+ }
3370
+ },
3371
+ {
3372
+ kind: "VariableDefinition",
3373
+ variable: {
3374
+ kind: "Variable",
3375
+ name: {
3376
+ kind: "Name",
3377
+ value: "first"
3378
+ }
3379
+ },
3380
+ type: {
3381
+ kind: "NamedType",
3382
+ name: {
3383
+ kind: "Name",
3384
+ value: "Int"
3385
+ }
3386
+ }
3387
+ },
3388
+ {
3389
+ kind: "VariableDefinition",
3390
+ variable: {
3391
+ kind: "Variable",
3392
+ name: {
3393
+ kind: "Name",
3394
+ value: "last"
3395
+ }
3396
+ },
3397
+ type: {
3398
+ kind: "NamedType",
3399
+ name: {
3400
+ kind: "Name",
3401
+ value: "Int"
3402
+ }
3403
+ }
3404
+ },
3405
+ {
3406
+ kind: "VariableDefinition",
3407
+ variable: {
3408
+ kind: "Variable",
3409
+ name: {
3410
+ kind: "Name",
3411
+ value: "query"
3412
+ }
3413
+ },
3414
+ type: {
3415
+ kind: "NamedType",
3416
+ name: {
3417
+ kind: "Name",
3418
+ value: "String"
3419
+ }
3420
+ }
3421
+ }
3422
+ ],
3423
+ selectionSet: {
3424
+ kind: "SelectionSet",
3425
+ selections: [
3426
+ {
3427
+ kind: "Field",
3428
+ name: {
3429
+ kind: "Name",
3430
+ value: "metaobjects"
3431
+ },
3432
+ arguments: [
3433
+ {
3434
+ kind: "Argument",
3435
+ name: {
3436
+ kind: "Name",
3437
+ value: "filterKeys"
3438
+ },
3439
+ value: {
3440
+ kind: "Variable",
3441
+ name: {
3442
+ kind: "Name",
3443
+ value: "filterKeys"
3444
+ }
3445
+ }
3446
+ },
3447
+ {
3448
+ kind: "Argument",
3449
+ name: {
3450
+ kind: "Name",
3451
+ value: "after"
3452
+ },
3453
+ value: {
3454
+ kind: "Variable",
3455
+ name: {
3456
+ kind: "Name",
3457
+ value: "after"
3458
+ }
3459
+ }
3460
+ },
3461
+ {
3462
+ kind: "Argument",
3463
+ name: {
3464
+ kind: "Name",
3465
+ value: "before"
3466
+ },
3467
+ value: {
3468
+ kind: "Variable",
3469
+ name: {
3470
+ kind: "Name",
3471
+ value: "before"
3472
+ }
3473
+ }
3474
+ },
3475
+ {
3476
+ kind: "Argument",
3477
+ name: {
3478
+ kind: "Name",
3479
+ value: "first"
3480
+ },
3481
+ value: {
3482
+ kind: "Variable",
3483
+ name: {
3484
+ kind: "Name",
3485
+ value: "first"
3486
+ }
3487
+ }
3488
+ },
3489
+ {
3490
+ kind: "Argument",
3491
+ name: {
3492
+ kind: "Name",
3493
+ value: "last"
3494
+ },
3495
+ value: {
3496
+ kind: "Variable",
3497
+ name: {
3498
+ kind: "Name",
3499
+ value: "last"
3500
+ }
3501
+ }
3502
+ },
3503
+ {
3504
+ kind: "Argument",
3505
+ name: {
3506
+ kind: "Name",
3507
+ value: "query"
3508
+ },
3509
+ value: {
3510
+ kind: "Variable",
3511
+ name: {
3512
+ kind: "Name",
3513
+ value: "query"
3514
+ }
3515
+ }
3516
+ }
3517
+ ],
3518
+ selectionSet: {
3519
+ kind: "SelectionSet",
3520
+ selections: [
3521
+ {
3522
+ kind: "Field",
3523
+ name: {
3524
+ kind: "Name",
3525
+ value: "pageInfo"
3526
+ },
3527
+ selectionSet: {
3528
+ kind: "SelectionSet",
3529
+ selections: [
3530
+ {
3531
+ kind: "Field",
3532
+ name: {
3533
+ kind: "Name",
3534
+ value: "endCursor"
3535
+ }
3536
+ },
3537
+ {
3538
+ kind: "Field",
3539
+ name: {
3540
+ kind: "Name",
3541
+ value: "hasNextPage"
3542
+ }
3543
+ },
3544
+ {
3545
+ kind: "Field",
3546
+ name: {
3547
+ kind: "Name",
3548
+ value: "hasPreviousPage"
3549
+ }
3550
+ },
3551
+ {
3552
+ kind: "Field",
3553
+ name: {
3554
+ kind: "Name",
3555
+ value: "startCursor"
3556
+ }
3557
+ }
3558
+ ]
3559
+ }
3560
+ },
3561
+ {
3562
+ kind: "Field",
3563
+ name: {
3564
+ kind: "Name",
3565
+ value: "edges"
3566
+ },
3567
+ selectionSet: {
3568
+ kind: "SelectionSet",
3569
+ selections: [
3570
+ {
3571
+ kind: "Field",
3572
+ name: {
3573
+ kind: "Name",
3574
+ value: "node"
3575
+ },
3576
+ selectionSet: {
3577
+ kind: "SelectionSet",
3578
+ selections: [
3579
+ {
3580
+ kind: "Field",
3581
+ name: {
3582
+ kind: "Name",
3583
+ value: "_id"
3584
+ }
3585
+ },
3586
+ {
3587
+ kind: "Field",
3588
+ name: {
3589
+ kind: "Name",
3590
+ value: "name"
3591
+ }
3592
+ }
3593
+ ]
3594
+ }
3595
+ }
3596
+ ]
3597
+ }
3598
+ }
3599
+ ]
3600
+ }
3601
+ }
3602
+ ]
3603
+ }
3604
+ }
3605
+ ]
3606
+ };
3297
3607
  const PagesDocument = {
3298
3608
  kind: "Document",
3299
3609
  definitions: [
@@ -4306,4 +4616,4 @@ const VariantsDocument = {
4306
4616
  }
4307
4617
  ]
4308
4618
  };
4309
- 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, 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 };
4619
+ 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 };