@nautical-commerce/graphql-schema 1.90.2 → 1.91.0
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 +18 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1762,13 +1762,13 @@ value as specified by
|
|
1762
1762
|
"""
|
1763
1763
|
scalar DateTime
|
1764
1764
|
|
1765
|
-
"""
|
1765
|
+
"""Temporary recipient type - to be deprecated after September 30, 2025."""
|
1766
1766
|
enum RecipientTypeEnum {
|
1767
1767
|
CUSTOMER
|
1768
1768
|
SELLER_PRIMARY_CONTACT
|
1769
1769
|
STAFF_MEMBER_MARKETPLACE
|
1770
1770
|
STAFF_MEMBER_SELLER
|
1771
|
-
STAFF_MEMBER_MARKETPLACE_OR_SELLER
|
1771
|
+
STAFF_MEMBER_MARKETPLACE_OR_SELLER @deprecated(reason: "Use STAFF_MEMBER_MARKETPLACE or STAFF_MEMBER_SELLER instead. This value will be deprecated on September 30, 2025")
|
1772
1772
|
}
|
1773
1773
|
|
1774
1774
|
"""An enumeration."""
|
@@ -4873,6 +4873,9 @@ type Attribute implements Node & ObjectWithMetadata {
|
|
4873
4873
|
ID of the Seller that created the Product Type, or null if Marketplace Operator
|
4874
4874
|
"""
|
4875
4875
|
createdBy: Seller
|
4876
|
+
|
4877
|
+
"""List of warnings for this attribute."""
|
4878
|
+
warnings: [AttributeWarningMessageItem!]!
|
4876
4879
|
}
|
4877
4880
|
|
4878
4881
|
type ProductTypeCountableConnection {
|
@@ -5127,6 +5130,18 @@ enum AttributeValueType {
|
|
5127
5130
|
STRING
|
5128
5131
|
}
|
5129
5132
|
|
5133
|
+
type AttributeWarningMessageItem {
|
5134
|
+
"""Code of the warning message."""
|
5135
|
+
code: AttributeWarningEnum!
|
5136
|
+
|
5137
|
+
"""Warning message."""
|
5138
|
+
message: String!
|
5139
|
+
}
|
5140
|
+
|
5141
|
+
enum AttributeWarningEnum {
|
5142
|
+
ASSIGNED_TO_PRODUCT_OR_TEMPLATE
|
5143
|
+
}
|
5144
|
+
|
5130
5145
|
type CollectionCountableConnection {
|
5131
5146
|
"""Pagination data for this connection."""
|
5132
5147
|
pageInfo: PageInfo!
|
@@ -11239,7 +11254,7 @@ type Mutation {
|
|
11239
11254
|
description: String
|
11240
11255
|
|
11241
11256
|
"""
|
11242
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11257
|
+
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-rar, image/tif, image/heif, application/x-autocad, image/svg, image/x-eps, application/svg+xml, application/vnd.oasis.opendocument.text, application/tif, application/pdf, text/x-csv, text/comma-separated-values, image/jpg, image/webp, application/eps, image/gif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/postscript, application/x-dxf, application/x-eps, application/msword, application/x-tar, application/gzipped, application/x-pdf, application/vnd.oasis.opendocument.spreadsheet, image/dxf, drawing/x-dwf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/gzip, text/plain, drawing/dwg, application/acad, application/excel, application/x-rar-compressed, image/heic-sequence, image/png, application/x-dwg, image/x-tif, application/csv, image/svg+xml, application/x-acad, image/eps, image/heif-sequence, application/dxf, application/gzip-compressed, application/x-rtf, application/rtf, application/vnd.oasis.opendocument.presentation, application/acrobat, image/x-tiff, application/x-gzip, application/jpg, text/rtf, application/dwg, text/pdf, application/vnd.ms-excel, application/x-csv, text/svg-xml, image/vnd.dwg, application/zip, image/x-dwg, application/tiff, drawing/x-dwg, application/x-tif, application/x-jpg, text/svg, application/x-zip-compressed, image/x-dxf, image/jpeg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/bmp, pplication/vnd.rar, image/tiff, application/x-tiff, image/x-ms-bmp, application/vnd.ms-word, text/x-pdf, text/csv, application/vnd.ms-powerpoint, image/heic, application/vnd.pdf, image/x-bmp, text/x-comma-separated-values.
|
11243
11258
|
"""
|
11244
11259
|
file: Upload!
|
11245
11260
|
|