@nautical-commerce/graphql-schema 1.72.0-2-ga93ae6fcb → 1.72.0-20-g624dd4e70

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.
@@ -3243,6 +3243,7 @@ type Seller implements Node & ObjectWithMetadata {
3243
3243
  if no order has been created
3244
3244
  """
3245
3245
  firstOrderPlacedDate: DateTime
3246
+ fullfilledByMarketplace: Boolean!
3246
3247
  created: DateTime!
3247
3248
  updated: DateTime!
3248
3249
  accountSetupTasksAreDone: Boolean
@@ -4567,6 +4568,9 @@ type ProductType implements Node & ObjectWithMetadata {
4567
4568
 
4568
4569
  """Brand of the product"""
4569
4570
  model: String
4571
+
4572
+ """Whether this product type allows creating variants."""
4573
+ hasVariantOptions: Boolean!
4570
4574
  }
4571
4575
 
4572
4576
  """Representation of tax types fetched from tax gateway."""
@@ -13153,7 +13157,7 @@ type Mutation {
13153
13157
  description: String
13154
13158
 
13155
13159
  """
13156
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/x-dwg, application/x-csv, application/rtf, image/tiff, application/x-tiff, application/vnd.ms-powerpoint, application/acrobat, application/vnd.oasis.opendocument.spreadsheet, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/gzip-compressed, application/x-tar, application/csv, image/svg, application/tiff, image/vnd.dwg, image/webp, text/plain, text/svg, application/tif, text/x-csv, image/jpg, application/jpg, application/excel, text/pdf, text/x-comma-separated-values, image/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/msword, text/svg-xml, image/x-dxf, application/x-acad, application/vnd.pdf, application/x-pdf, image/bmp, application/x-zip-compressed, application/x-rar, application/x-dxf, application/zip, application/x-rar-compressed, image/heic-sequence, image/dxf, application/pdf, application/x-rtf, application/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-jpg, text/x-pdf, image/heic, image/x-tif, image/eps, application/vnd.oasis.opendocument.presentation, application/x-autocad, application/eps, application/x-gzip, application/x-tif, image/x-dwg, text/csv, drawing/x-dwf, application/vnd.ms-excel, application/dwg, application/gzipped, image/tif, application/vnd.ms-word, image/heif, application/x-eps, pplication/vnd.rar, image/png, text/comma-separated-values, image/jpeg, image/gif, image/x-bmp, drawing/dwg, application/postscript, image/heif-sequence, image/x-ms-bmp, application/x-dwg, application/dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.text, text/rtf, application/acad, application/gzip, image/svg+xml.
13160
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.pdf, application/acad, image/x-bmp, application/x-csv, application/acrobat, text/svg, application/rtf, application/x-eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/excel, image/png, application/svg+xml, image/heic-sequence, image/x-eps, application/x-rar, image/svg+xml, application/zip, text/x-csv, application/jpg, application/tiff, text/plain, image/x-tiff, text/x-pdf, application/vnd.ms-powerpoint, image/jpg, text/svg-xml, application/x-dxf, application/gzip, text/x-comma-separated-values, text/comma-separated-values, application/x-zip-compressed, image/bmp, image/tif, application/dxf, text/pdf, application/tif, text/csv, application/vnd.oasis.opendocument.presentation, application/x-autocad, image/tiff, application/gzip-compressed, application/gzipped, application/dwg, image/x-tif, image/gif, image/x-ms-bmp, image/heif, application/x-tar, application/x-tiff, image/eps, application/x-rar-compressed, application/vnd.ms-word, image/heif-sequence, application/pdf, image/x-dxf, image/x-dwg, application/vnd.ms-excel, text/rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, drawing/dwg, application/x-rtf, application/vnd.oasis.opendocument.spreadsheet, drawing/x-dwf, image/heic, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/webp, application/x-tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/vnd.dwg, image/dxf, application/x-acad, application/postscript, application/csv, application/msword, pplication/vnd.rar, application/x-pdf, image/svg, image/jpeg, application/x-dwg, application/eps, drawing/x-dwg, application/x-jpg.
13157
13161
  """
13158
13162
  file: Upload!
13159
13163
 
@@ -19128,6 +19132,9 @@ input ProductCreateInput {
19128
19132
  """List of attributes."""
19129
19133
  attributes: [AttributeValueInput!]
19130
19134
 
19135
+ """List of attributes to assign as variant attributes to this product."""
19136
+ variantAttributes: [ID!]
19137
+
19131
19138
  """ID of the type that product belongs to."""
19132
19139
  productType: ID
19133
19140
 
@@ -19356,6 +19363,9 @@ input ProductInput {
19356
19363
  """List of attributes."""
19357
19364
  attributes: [AttributeValueInput!]
19358
19365
 
19366
+ """List of attributes to assign as variant attributes to this product."""
19367
+ variantAttributes: [ID!]
19368
+
19359
19369
  """ID of the type that product belongs to."""
19360
19370
  productType: ID
19361
19371
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.72.0-2-ga93ae6fcb",
3
+ "version": "v1.72.0-20-g624dd4e70",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {