@nautical-commerce/graphql-schema 1.78.0-13-g91340c2d8 → 1.78.0-15-g9d2241be7
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 -7
- 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: text/x-pdf, image/webp, application/tif, application/gzipped, image/x-tif, application/svg+xml, application/vnd.ms-excel, application/x-dxf, application/x-dwg, application/vnd.oasis.opendocument.presentation, image/gif, application/x-pdf, application/x-gzip, image/tiff, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rtf, image/png, application/x-acad, application/eps, application/vnd.ms-word, drawing/x-dwf, application/acrobat, drawing/x-dwg, pplication/vnd.rar, application/x-csv, image/jpg, application/x-rar-compressed, application/vnd.oasis.opendocument.spreadsheet, application/msword, image/svg, application/x-tif, application/dxf, image/x-bmp, image/heif-sequence, application/x-eps, image/x-dwg, image/eps, application/x-rar, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.text, image/heic-sequence, text/x-comma-separated-values, application/vnd.ms-powerpoint, text/svg-xml, application/x-tiff, application/x-tar, image/heic, application/x-autocad, application/zip, application/rtf, image/heif, image/x-dxf, image/vnd.dwg, image/jpeg, image/tif, application/x-jpg, image/x-ms-bmp, application/csv, application/excel, image/dxf, application/gzip, text/x-csv, text/svg, image/x-eps, application/dwg, application/vnd.pdf, image/svg+xml, application/jpg, text/plain, application/postscript, text/comma-separated-values, text/rtf, image/bmp, image/x-tiff, application/pdf, application/x-zip-compressed, text/pdf, application/acad, application/gzip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/csv, application/tiff.
|
13164
13164
|
"""
|
13165
13165
|
file: Upload!
|
13166
13166
|
|
@@ -19507,10 +19507,12 @@ input ProductImageCreateInput {
|
|
19507
19507
|
"""Alt text for an image."""
|
19508
19508
|
alt: String
|
19509
19509
|
|
19510
|
-
"""
|
19510
|
+
"""
|
19511
|
+
Represents an image file in a multipart request. Either an image or a url must be provided.
|
19512
|
+
"""
|
19511
19513
|
image: Upload
|
19512
19514
|
|
19513
|
-
"""URL of image to upload"""
|
19515
|
+
"""URL of image to upload. Either an image or a url must be provided."""
|
19514
19516
|
url: String
|
19515
19517
|
|
19516
19518
|
"""ID of an product."""
|
@@ -19537,18 +19539,41 @@ Create one or more product images. For each image, if URL is present, image will
|
|
19537
19539
|
"""
|
19538
19540
|
type ProductImageBulkCreate {
|
19539
19541
|
product: Product
|
19540
|
-
|
19541
|
-
|
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
|
19542
19565
|
}
|
19543
19566
|
|
19544
19567
|
input ProductImageBulkCreateInput {
|
19545
19568
|
"""Alt text for an image."""
|
19546
19569
|
alt: String
|
19547
19570
|
|
19548
|
-
"""
|
19571
|
+
"""
|
19572
|
+
Represents an image file in a multipart request. Either an image or a url must be provided.
|
19573
|
+
"""
|
19549
19574
|
image: Upload
|
19550
19575
|
|
19551
|
-
"""URL of image to upload"""
|
19576
|
+
"""URL of image to upload. Either an image or a url must be provided."""
|
19552
19577
|
url: String
|
19553
19578
|
|
19554
19579
|
"""
|