@nautical-commerce/graphql-schema 1.78.0-14-gb670f45fb → 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.
@@ -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: application/x-rtf, application/vnd.ms-excel, image/jpg, text/svg, image/dxf, application/gzip, application/x-csv, image/vnd.dwg, application/acrobat, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tiff, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heic, image/bmp, drawing/x-dwf, text/x-pdf, application/jpg, application/x-acad, application/vnd.oasis.opendocument.text, application/x-rar, application/eps, image/heic-sequence, application/vnd.oasis.opendocument.spreadsheet, application/csv, text/comma-separated-values, application/postscript, application/rtf, image/jpeg, image/gif, image/heif, application/x-dwg, image/png, image/x-ms-bmp, application/tiff, image/x-dxf, application/x-jpg, application/acad, image/svg+xml, application/x-zip-compressed, text/pdf, application/x-dxf, image/x-tiff, pplication/vnd.rar, text/svg-xml, text/csv, application/gzipped, drawing/x-dwg, application/vnd.ms-powerpoint, text/x-csv, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, application/x-eps, application/gzip-compressed, application/dwg, application/x-tar, image/heif-sequence, application/vnd.oasis.opendocument.presentation, image/tif, image/x-bmp, image/tiff, application/vnd.ms-word, application/tif, application/msword, text/rtf, image/webp, application/dxf, text/plain, application/x-pdf, application/svg+xml, application/excel, image/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-eps, application/x-tif, application/x-gzip, application/zip, application/x-autocad, image/svg, application/x-rar-compressed, application/vnd.pdf, image/x-tif, image/eps.
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
 
@@ -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
- images: [ProductImage!]
19543
- productErrors: [ProductError!]!
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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.78.0-14-gb670f45fb",
3
+ "version": "v1.78.0-15-g9d2241be7",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {