@nautical-commerce/graphql-schema 1.67.0-10-g9b23b3220 → 1.67.0-12-gd3c8b4806
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/nautical/schema.graphql +32 -4
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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/
|
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/vnd.pdf, image/svg, application/dxf, image/tiff, image/tif, text/svg, pplication/vnd.rar, drawing/x-dwg, application/vnd.ms-excel, application/gzip, application/gzip-compressed, text/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-word, image/x-dxf, image/vnd.dwg, image/jpg, image/dxf, drawing/x-dwf, application/acad, application/dwg, image/x-tif, image/x-tiff, application/x-dxf, text/x-csv, application/x-rar, application/x-zip-compressed, application/x-tif, text/csv, application/csv, drawing/dwg, application/vnd.oasis.opendocument.spreadsheet, application/x-autocad, text/svg-xml, application/tif, image/x-dwg, image/x-bmp, image/heif, application/x-acad, image/webp, text/x-pdf, application/x-rar-compressed, application/postscript, application/svg+xml, application/msword, image/heic, text/plain, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/bmp, application/x-tiff, application/x-rtf, application/zip, application/pdf, application/x-pdf, application/x-csv, application/tiff, image/x-ms-bmp, application/vnd.ms-powerpoint, image/svg+xml, application/eps, application/vnd.oasis.opendocument.text, application/x-jpg, text/rtf, image/heic-sequence, application/excel, text/x-comma-separated-values, application/acrobat, application/rtf, application/x-dwg, application/x-tar, image/x-eps, application/gzipped, application/x-gzip, image/heif-sequence, image/png, text/comma-separated-values, image/gif, application/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/jpeg, image/eps, application/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation.
|
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
|
|