@nautical-commerce/graphql-schema 1.78.0-14-gb670f45fb → 1.78.0-16-gf593a31e4
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 +24 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -13160,7 +13160,7 @@ type Mutation {
|
|
13160
13160
|
description: String
|
13161
13161
|
|
13162
13162
|
"""
|
13163
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13163
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-ms-bmp, application/svg+xml, application/msword, application/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-autocad, pplication/vnd.rar, image/eps, image/x-dxf, application/dwg, application/x-pdf, image/gif, application/x-rar, application/x-csv, image/webp, application/vnd.oasis.opendocument.spreadsheet, drawing/x-dwg, image/jpg, application/dxf, text/svg-xml, application/csv, image/x-tif, image/svg+xml, application/postscript, application/tif, application/x-rtf, image/x-bmp, application/eps, image/dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/acad, drawing/dwg, drawing/x-dwf, application/x-tar, text/rtf, application/excel, application/tiff, application/x-zip-compressed, application/gzip, text/plain, image/bmp, image/heic, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dwg, text/svg, image/jpeg, text/pdf, image/x-eps, application/x-dwg, text/x-comma-separated-values, application/vnd.ms-word, application/x-tif, application/vnd.oasis.opendocument.presentation, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.text, application/x-gzip, application/x-rar-compressed, application/zip, text/comma-separated-values, image/heif-sequence, application/vnd.pdf, image/tif, application/x-eps, application/x-dxf, application/x-tiff, application/x-acad, text/x-pdf, image/svg, image/x-tiff, application/acrobat, image/heic-sequence, text/x-csv, image/png, application/x-jpg, text/csv, application/pdf, image/vnd.dwg, application/gzipped, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/rtf, application/gzip-compressed, image/tiff.
|
13164
13164
|
"""
|
13165
13165
|
file: Upload!
|
13166
13166
|
|
@@ -19539,8 +19539,29 @@ Create one or more product images. For each image, if URL is present, image will
|
|
19539
19539
|
"""
|
19540
19540
|
type ProductImageBulkCreate {
|
19541
19541
|
product: Product
|
19542
|
-
|
19543
|
-
|
19542
|
+
|
19543
|
+
"""List of the created images."""
|
19544
|
+
images: [ProductImage!]!
|
19545
|
+
bulkProductImageErrors: [BulkProductImageError!]!
|
19546
|
+
}
|
19547
|
+
|
19548
|
+
type BulkProductImageError {
|
19549
|
+
"""
|
19550
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
19551
|
+
"""
|
19552
|
+
field: String
|
19553
|
+
|
19554
|
+
"""The error message."""
|
19555
|
+
message: String!
|
19556
|
+
|
19557
|
+
"""The error code."""
|
19558
|
+
code: ProductErrorCode!
|
19559
|
+
|
19560
|
+
"""List of attributes IDs which causes the error."""
|
19561
|
+
attributes: [ID!]
|
19562
|
+
|
19563
|
+
"""Index of an input list item that caused the error."""
|
19564
|
+
index: Int
|
19544
19565
|
}
|
19545
19566
|
|
19546
19567
|
input ProductImageBulkCreateInput {
|