@nautical-commerce/graphql-schema 1.78.0-11-g00cc72b33 → 1.78.0-13-g91340c2d8

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.
@@ -3325,7 +3325,6 @@ type Seller implements Node & ObjectWithMetadata {
3325
3325
  if no order has been created
3326
3326
  """
3327
3327
  firstOrderPlacedDate: DateTime
3328
- fullfilledByMarketplace: Boolean!
3329
3328
  created: DateTime!
3330
3329
  updated: DateTime!
3331
3330
  accountSetupTasksAreDone: Boolean
@@ -13161,7 +13160,7 @@ type Mutation {
13161
13160
  description: String
13162
13161
 
13163
13162
  """
13164
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/heif, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, application/rtf, image/png, application/x-dwg, text/svg, application/msword, text/svg-xml, pplication/vnd.rar, application/x-gzip, application/dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/svg, application/x-autocad, application/vnd.oasis.opendocument.spreadsheet, application/vnd.pdf, application/x-csv, image/x-tiff, image/gif, application/acrobat, application/tif, application/gzip, application/eps, image/x-dxf, application/acad, image/x-ms-bmp, image/vnd.dwg, application/x-tiff, application/x-eps, application/pdf, application/dwg, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/csv, image/dxf, application/x-jpg, application/x-rtf, application/x-rar, application/x-zip-compressed, drawing/dwg, image/x-eps, image/heic-sequence, image/heic, image/x-bmp, application/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/svg+xml, image/eps, application/gzipped, text/rtf, image/x-dwg, image/tiff, application/vnd.oasis.opendocument.presentation, text/plain, image/jpeg, application/vnd.ms-powerpoint, image/bmp, image/tif, application/x-dxf, application/svg+xml, application/zip, text/pdf, drawing/x-dwg, application/x-rar-compressed, image/heif-sequence, application/x-tif, text/x-csv, application/gzip-compressed, application/x-tar, text/comma-separated-values, text/x-comma-separated-values, image/jpg, application/vnd.oasis.opendocument.text, text/x-pdf, application/x-acad, drawing/x-dwf, application/tiff, application/csv, application/excel, application/vnd.ms-word, image/x-tif, image/webp.
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/dwg, image/jpg, drawing/x-dwf, application/pdf, image/bmp, image/eps, application/msword, application/x-rar, image/heif-sequence, application/vnd.pdf, application/x-acad, image/png, pplication/vnd.rar, image/x-bmp, application/gzip, image/x-dwg, image/svg+xml, image/heif, application/gzip-compressed, application/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/vnd.dwg, text/x-pdf, text/comma-separated-values, application/x-rtf, image/heic, image/x-dxf, application/dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/svg, application/zip, text/svg-xml, image/webp, application/vnd.ms-word, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar-compressed, application/vnd.oasis.opendocument.presentation, drawing/x-dwg, application/rtf, application/eps, image/x-tiff, drawing/dwg, application/acrobat, image/dxf, image/gif, application/x-autocad, image/tiff, image/x-tif, application/x-tar, application/vnd.ms-powerpoint, application/x-jpg, application/x-dxf, image/tif, application/tiff, application/svg+xml, text/csv, application/tif, application/gzipped, text/pdf, application/csv, application/vnd.oasis.opendocument.spreadsheet, text/x-csv, application/vnd.oasis.opendocument.text, application/postscript, application/excel, text/rtf, application/x-dwg, image/x-ms-bmp, image/x-eps, image/jpeg, application/x-csv, text/svg, application/x-gzip, application/x-pdf, application/acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/jpg, application/x-eps, text/x-comma-separated-values, image/heic-sequence, application/x-zip-compressed, application/x-tif, text/plain.
13165
13164
  """
13166
13165
  file: Upload!
13167
13166
 
@@ -14305,6 +14304,17 @@ type Mutation {
14305
14304
  input: ProductImageCreateInput!
14306
14305
  ): ProductImageCreate
14307
14306
 
14307
+ """
14308
+ Create one or more product images. For each image, if URL is present, image will be taken from provided URL. If any image has no URL provided, then this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
14309
+ """
14310
+ productImageBulkCreate(
14311
+ """Fields required to create one or more product images"""
14312
+ input: [ProductImageBulkCreateInput!]!
14313
+
14314
+ """ID of a product."""
14315
+ product: ID!
14316
+ ): ProductImageBulkCreate
14317
+
14308
14318
  """
14309
14319
  Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
14310
14320
  """
@@ -19522,6 +19532,41 @@ input ProductImageCreateInput {
19522
19532
  externalSource: String
19523
19533
  }
19524
19534
 
19535
+ """
19536
+ Create one or more product images. For each image, if URL is present, image will be taken from provided URL. If any image has no URL provided, then this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
19537
+ """
19538
+ type ProductImageBulkCreate {
19539
+ product: Product
19540
+ images: [ProductImage!]
19541
+ productErrors: [ProductError!]!
19542
+ }
19543
+
19544
+ input ProductImageBulkCreateInput {
19545
+ """Alt text for an image."""
19546
+ alt: String
19547
+
19548
+ """Represents an image file in a multipart request."""
19549
+ image: Upload
19550
+
19551
+ """URL of image to upload"""
19552
+ url: String
19553
+
19554
+ """
19555
+ Only for use by Marketplace Operator, if true then the image ownership will transfer to the seller that owns the product it is being assigned to, if false or not provided then image ownership will not transfer.
19556
+ """
19557
+ transferImageOwnership: Boolean = false
19558
+
19559
+ """
19560
+ External ID of the product image if originating from outside the system.
19561
+ """
19562
+ externalId: String
19563
+
19564
+ """
19565
+ External source of the product image if originating from outside the system.
19566
+ """
19567
+ externalSource: String
19568
+ }
19569
+
19525
19570
  """
19526
19571
  Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
19527
19572
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.78.0-11-g00cc72b33",
3
+ "version": "v1.78.0-13-g91340c2d8",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {