@nautical-commerce/graphql-schema 1.90.0-16-g82e067d00 → 1.90.0-18-g0e451c22a
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 +16 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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: application/
|
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/svg+xml, drawing/x-dwg, application/x-zip-compressed, application/rtf, image/jpg, image/gif, image/dxf, application/x-autocad, image/heic, image/png, application/postscript, image/x-tiff, application/x-tiff, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.spreadsheet, text/plain, text/comma-separated-values, text/pdf, application/gzip, application/zip, image/svg+xml, image/x-ms-bmp, application/tif, text/svg, image/x-tif, application/x-eps, image/jpeg, application/gzipped, image/x-bmp, application/vnd.pdf, application/vnd.ms-excel, application/x-dxf, application/x-rar, application/vnd.oasis.opendocument.presentation, application/x-rtf, application/vnd.ms-powerpoint, image/heif-sequence, drawing/x-dwf, image/x-eps, application/dwg, application/eps, pplication/vnd.rar, application/x-tar, image/x-dwg, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/csv, application/excel, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/tiff, image/heic-sequence, application/vnd.ms-word, text/x-comma-separated-values, application/x-tif, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf, application/x-pdf, text/rtf, application/jpg, application/x-acad, application/pdf, image/tif, image/webp, application/gzip-compressed, application/acrobat, application/acad, application/x-gzip, text/x-csv, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/dxf, application/x-dwg, text/svg-xml, application/x-csv, image/svg, application/x-jpg, image/eps, application/msword, text/x-pdf, application/tiff, image/vnd.dwg, image/bmp.
|
11243
11258
|
"""
|
11244
11259
|
file: Upload!
|
11245
11260
|
|