@nautical-commerce/graphql-schema 1.67.0-10-g9b23b3220 → 1.67.0-11-ga53d923ca

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.
@@ -10856,7 +10856,7 @@ type Menu implements Node {
10856
10856
  }
10857
10857
 
10858
10858
  """
10859
- Represents a single item of the related menu. Can store categories, collection or pages.
10859
+ Represents a single item of the related menu. Can store categories, collection, pages, sellers, products, content or policy pages.
10860
10860
  """
10861
10861
  type MenuItem implements Node {
10862
10862
  """The ID of the object"""
@@ -10867,6 +10867,10 @@ type MenuItem implements Node {
10867
10867
  category: Category
10868
10868
  collection: Collection
10869
10869
  page: Page
10870
+ seller: Seller
10871
+ product: Product
10872
+ content: Content
10873
+ policy: Policy
10870
10874
  level: Int!
10871
10875
  children: [MenuItem!]!
10872
10876
 
@@ -13201,7 +13205,7 @@ type Mutation {
13201
13205
  description: String
13202
13206
 
13203
13207
  """
13204
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, image/x-tiff, image/heic-sequence, image/x-dxf, application/x-acad, drawing/x-dwg, image/x-bmp, image/eps, application/x-dwg, application/x-autocad, application/vnd.ms-powerpoint, image/heic, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/svg+xml, application/x-csv, application/x-eps, application/x-rar, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-excel, application/jpg, application/postscript, image/webp, image/x-ms-bmp, application/vnd.pdf, application/x-jpg, image/gif, drawing/dwg, application/vnd.oasis.opendocument.spreadsheet, application/x-rtf, application/x-dxf, application/vnd.ms-word, application/x-tar, text/svg-xml, pplication/vnd.rar, image/x-eps, application/acad, image/bmp, text/comma-separated-values, image/jpeg, application/vnd.oasis.opendocument.text, application/x-pdf, application/tiff, application/vnd.oasis.opendocument.presentation, image/dxf, application/x-tif, image/svg, application/dwg, application/zip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tiff, application/pdf, image/png, application/excel, text/pdf, text/x-pdf, text/rtf, text/plain, application/csv, image/jpg, text/svg, image/vnd.dwg, application/gzip-compressed, drawing/x-dwf, text/csv, image/tif, text/x-comma-separated-values, application/dxf, application/acrobat, image/x-dwg, application/rtf, image/heif, application/gzip, text/x-csv, application/svg+xml, image/heif-sequence, application/gzipped, application/x-rar-compressed, application/eps, application/x-zip-compressed, image/x-tif, application/tif, application/msword, application/x-gzip.
13208
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-pdf, application/pdf, image/gif, image/vnd.dwg, drawing/x-dwg, image/x-tif, image/svg, application/x-acad, application/postscript, application/jpg, application/x-tiff, application/vnd.ms-excel, application/excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-autocad, image/eps, application/x-rtf, text/x-comma-separated-values, application/x-tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, drawing/x-dwf, image/x-eps, image/svg+xml, application/gzip-compressed, text/comma-separated-values, image/webp, text/svg-xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-word, drawing/dwg, application/zip, image/bmp, image/heif-sequence, image/tiff, application/gzipped, application/eps, application/x-dwg, application/vnd.oasis.opendocument.spreadsheet, text/x-pdf, image/x-ms-bmp, text/svg, image/x-dxf, image/tif, image/heic-sequence, image/heic, application/dxf, image/x-dwg, text/x-csv, text/plain, application/tiff, image/x-bmp, application/x-eps, application/vnd.oasis.opendocument.text, pplication/vnd.rar, application/vnd.pdf, image/png, image/x-tiff, application/x-rar-compressed, application/acad, application/x-jpg, text/pdf, application/vnd.ms-powerpoint, image/jpeg, application/gzip, application/x-zip-compressed, application/acrobat, application/tif, image/heif, application/x-gzip, application/svg+xml, application/x-dxf, image/jpg, application/csv, application/vnd.oasis.opendocument.presentation, application/x-csv, application/dwg, application/msword, image/dxf, application/x-rar, text/rtf, application/x-tar, text/csv.
13205
13209
  """
13206
13210
  file: Upload!
13207
13211
 
@@ -15278,7 +15282,7 @@ type Mutation {
15278
15282
  """Creates a new menu item."""
15279
15283
  menuItemCreate(
15280
15284
  """
15281
- Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection` is allowed per item.
15285
+ Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection`, `seller`, `product`, `content`, 'policy` is allowed per item.
15282
15286
  """
15283
15287
  input: MenuItemCreateInput!
15284
15288
  ): MenuItemCreate
@@ -15301,7 +15305,7 @@ type Mutation {
15301
15305
  id: ID!
15302
15306
 
15303
15307
  """
15304
- Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection` is allowed per item.
15308
+ Fields required to update a menu item. Only one of `url`, `category`, `page`, `collection`, `seller`, `product`, `content`, `policy` is allowed per item.
15305
15309
  """
15306
15310
  input: MenuItemInput!
15307
15311
  ): MenuItemUpdate
@@ -21672,6 +21676,18 @@ input MenuItemInput {
21672
21676
 
21673
21677
  """Page to which item points."""
21674
21678
  page: ID
21679
+
21680
+ """Seller to which item points."""
21681
+ seller: ID
21682
+
21683
+ """Product to which item points."""
21684
+ product: ID
21685
+
21686
+ """Storefront contenet page to which item points."""
21687
+ content: ID
21688
+
21689
+ """Policy page to which item points."""
21690
+ policy: ID
21675
21691
  }
21676
21692
 
21677
21693
  """Deletes a menu."""
@@ -21723,6 +21739,18 @@ input MenuItemCreateInput {
21723
21739
  """Page to which item points."""
21724
21740
  page: ID
21725
21741
 
21742
+ """Seller to which item points."""
21743
+ seller: ID
21744
+
21745
+ """Product to which item points."""
21746
+ product: ID
21747
+
21748
+ """Storefront contenet page to which item points."""
21749
+ content: ID
21750
+
21751
+ """Policy page to which item points."""
21752
+ policy: ID
21753
+
21726
21754
  """Menu to which item belongs."""
21727
21755
  menu: ID!
21728
21756
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.67.0-10-g9b23b3220",
3
+ "version": "v1.67.0-11-ga53d923ca",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {