@nautical-commerce/graphql-schema 1.72.0 → 1.73.0
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 +17 -3
- 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
|
@@ -3755,6 +3756,11 @@ type Order implements Node & ObjectWithMetadata {
|
|
3755
3756
|
Indicates that the shipping price is set manually by user rather than taken from a related shipping method.
|
3756
3757
|
"""
|
3757
3758
|
isShippingPriceOverridden: Boolean!
|
3759
|
+
|
3760
|
+
"""
|
3761
|
+
Indicates that the order is being fulfilled by the marketplace and the seller is not responsible for shipping.
|
3762
|
+
"""
|
3763
|
+
fulfilledByMarketplace: Boolean!
|
3758
3764
|
token: String!
|
3759
3765
|
voucher: Voucher
|
3760
3766
|
discount: Money
|
@@ -4567,6 +4573,9 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
4567
4573
|
|
4568
4574
|
"""Brand of the product"""
|
4569
4575
|
model: String
|
4576
|
+
|
4577
|
+
"""Whether this product type allows creating variants."""
|
4578
|
+
hasVariantOptions: Boolean!
|
4570
4579
|
}
|
4571
4580
|
|
4572
4581
|
"""Representation of tax types fetched from tax gateway."""
|
@@ -13153,7 +13162,7 @@ type Mutation {
|
|
13153
13162
|
description: String
|
13154
13163
|
|
13155
13164
|
"""
|
13156
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13165
|
+
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-jpg, image/heif-sequence, application/rtf, application/x-gzip, application/x-eps, image/jpg, application/gzipped, image/jpeg, application/vnd.oasis.opendocument.spreadsheet, image/x-ms-bmp, application/vnd.ms-powerpoint, application/x-tar, application/x-rtf, application/x-tiff, image/x-tiff, text/plain, application/x-dwg, text/csv, application/jpg, image/eps, application/eps, application/gzip, application/x-rar, application/vnd.ms-excel, text/x-comma-separated-values, image/png, application/x-acad, image/svg, image/dxf, image/tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/acad, application/gzip-compressed, application/postscript, text/comma-separated-values, application/dxf, image/x-eps, text/svg-xml, drawing/x-dwg, application/x-dxf, application/zip, image/tiff, image/svg+xml, drawing/x-dwf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/gif, application/x-csv, application/dwg, application/acrobat, image/x-dwg, application/msword, image/bmp, image/x-dxf, drawing/dwg, application/tif, application/x-rar-compressed, image/x-bmp, application/x-zip-compressed, image/heic-sequence, application/pdf, image/vnd.dwg, application/excel, image/webp, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/rtf, application/vnd.oasis.opendocument.text, image/heif, application/vnd.ms-word, text/pdf, text/svg, application/tiff, image/heic, application/x-autocad, application/vnd.pdf, application/csv, application/vnd.oasis.opendocument.presentation, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/x-pdf, application/x-tif, pplication/vnd.rar, text/x-csv, application/svg+xml.
|
13157
13166
|
"""
|
13158
13167
|
file: Upload!
|
13159
13168
|
|
@@ -16520,9 +16529,8 @@ input NauticalConfigurationInputItem {
|
|
16520
16529
|
|
16521
16530
|
"""Updates marketplace configuration."""
|
16522
16531
|
type MarketplaceConfigurationUpdate {
|
16523
|
-
"""Updated marketplace configuration."""
|
16524
|
-
marketplaceConfiguration: MarketplaceConfiguration
|
16525
16532
|
marketplaceConfigurationErrors: [MarketplaceConfigurationError!]!
|
16533
|
+
marketplaceConfiguration: MarketplaceConfiguration
|
16526
16534
|
}
|
16527
16535
|
|
16528
16536
|
type MarketplaceConfigurationError {
|
@@ -19128,6 +19136,9 @@ input ProductCreateInput {
|
|
19128
19136
|
"""List of attributes."""
|
19129
19137
|
attributes: [AttributeValueInput!]
|
19130
19138
|
|
19139
|
+
"""List of attributes to assign as variant attributes to this product."""
|
19140
|
+
variantAttributes: [ID!]
|
19141
|
+
|
19131
19142
|
"""ID of the type that product belongs to."""
|
19132
19143
|
productType: ID
|
19133
19144
|
|
@@ -19356,6 +19367,9 @@ input ProductInput {
|
|
19356
19367
|
"""List of attributes."""
|
19357
19368
|
attributes: [AttributeValueInput!]
|
19358
19369
|
|
19370
|
+
"""List of attributes to assign as variant attributes to this product."""
|
19371
|
+
variantAttributes: [ID!]
|
19372
|
+
|
19359
19373
|
"""ID of the type that product belongs to."""
|
19360
19374
|
productType: ID
|
19361
19375
|
|