@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.
- package/nautical/schema.graphql +11 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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:
|
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
|
|