@nautical-commerce/graphql-schema 1.65.0-15-g23ab919b3 → 1.65.0-17-g0ba73e4fa
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 +10 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2762,7 +2762,6 @@ enum ShippingMethodTypeEnum {
|
|
2762
2762
|
}
|
2763
2763
|
|
2764
2764
|
type MultiSellerShippingMethod {
|
2765
|
-
seller: Int @deprecated(reason: "Use sellerId instead. This will be removed on December 31, 2024.")
|
2766
2765
|
sellerId: ID!
|
2767
2766
|
sellerName: String!
|
2768
2767
|
value: [ShippingMethod!]!
|
@@ -8940,7 +8939,7 @@ input ShippingZoneFilterInput {
|
|
8940
8939
|
search: String
|
8941
8940
|
}
|
8942
8941
|
|
8943
|
-
type PublicSeller implements Node {
|
8942
|
+
type PublicSeller implements Node & ObjectWithMetadata {
|
8944
8943
|
"""The ID of the object"""
|
8945
8944
|
id: ID!
|
8946
8945
|
companyName: String!
|
@@ -8956,6 +8955,14 @@ type PublicSeller implements Node {
|
|
8956
8955
|
): Image
|
8957
8956
|
products(offset: Int, before: String, after: String, first: Int, last: Int): ProductCountableConnection!
|
8958
8957
|
variants(offset: Int, before: String, after: String, first: Int, last: Int): ProductVariantCountableConnection!
|
8958
|
+
|
8959
|
+
"""
|
8960
|
+
List of private metadata items.Requires proper staff permissions to access.
|
8961
|
+
"""
|
8962
|
+
privateMetadata: [MetadataItem!]!
|
8963
|
+
|
8964
|
+
"""List of public metadata items. Can be accessed without permissions."""
|
8965
|
+
metadata: [MetadataItem!]!
|
8959
8966
|
storeDescription: String
|
8960
8967
|
storeDescriptionPlainText: String
|
8961
8968
|
}
|
@@ -13181,7 +13188,7 @@ type Mutation {
|
|
13181
13188
|
description: String
|
13182
13189
|
|
13183
13190
|
"""
|
13184
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13191
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/excel, image/svg+xml, image/heif-sequence, application/eps, application/gzipped, application/acad, application/rtf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg, application/x-rar-compressed, application/x-tif, application/x-dxf, image/x-ms-bmp, image/x-dxf, drawing/dwg, text/x-csv, application/vnd.ms-excel, text/csv, application/x-dwg, text/rtf, application/postscript, image/webp, application/x-gzip, application/dxf, application/x-acad, image/x-tiff, application/jpg, image/eps, image/heic-sequence, text/svg-xml, image/jpg, application/msword, image/tiff, application/vnd.oasis.opendocument.presentation, image/gif, application/x-pdf, application/zip, image/dxf, image/png, application/x-autocad, image/svg, application/gzip-compressed, image/heic, text/pdf, application/x-zip-compressed, application/vnd.ms-word, text/comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, text/x-pdf, drawing/x-dwg, image/vnd.dwg, text/plain, image/tif, image/x-tif, application/x-jpg, application/x-tar, application/x-rar, application/acrobat, pplication/vnd.rar, image/x-eps, image/x-bmp, text/x-comma-separated-values, application/dwg, application/x-rtf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/csv, application/x-tiff, application/x-eps, application/gzip, application/vnd.pdf, application/tif, image/bmp, image/jpeg, application/tiff, application/vnd.oasis.opendocument.text, image/x-dwg, image/heif, drawing/x-dwf, application/vnd.ms-powerpoint, application/pdf, application/x-csv.
|
13185
13192
|
"""
|
13186
13193
|
file: Upload!
|
13187
13194
|
|