@nautical-commerce/graphql-schema 1.68.0-21-g88819416f → 1.68.0-23-gf68316674
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 +13 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2968,6 +2968,9 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2968
2968
|
The sub status of the product variant. This will be the same as product's sub status.
|
2969
2969
|
"""
|
2970
2970
|
subStatus: ProductSubStatusEnum
|
2971
|
+
|
2972
|
+
"""Product dimensions."""
|
2973
|
+
dimensions: ProductDimensions
|
2971
2974
|
}
|
2972
2975
|
|
2973
2976
|
"""An enumeration."""
|
@@ -13205,7 +13208,7 @@ type Mutation {
|
|
13205
13208
|
description: String
|
13206
13209
|
|
13207
13210
|
"""
|
13208
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13211
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: pplication/vnd.rar, drawing/x-dwf, application/x-rar, application/eps, application/vnd.ms-word, image/svg+xml, image/webp, image/x-bmp, application/dxf, text/x-pdf, application/msword, text/comma-separated-values, image/png, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/csv, image/eps, image/heic, application/x-tar, application/gzip-compressed, image/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/gif, application/pdf, image/heif-sequence, image/dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-dxf, application/zip, application/x-dxf, application/x-pdf, image/x-dwg, application/x-dwg, image/vnd.dwg, application/x-gzip, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/gzip, application/vnd.ms-excel, application/vnd.pdf, image/jpeg, application/dwg, text/plain, text/csv, image/svg, application/postscript, image/x-ms-bmp, application/vnd.ms-powerpoint, application/gzipped, image/tif, image/bmp, application/x-rar-compressed, image/heif, image/heic-sequence, text/rtf, application/x-csv, application/x-rtf, application/x-acad, application/vnd.oasis.opendocument.presentation, application/vnd.oasis.opendocument.text, drawing/x-dwg, application/acad, application/tiff, image/tiff, text/svg, image/jpg, application/x-tif, application/acrobat, application/svg+xml, text/x-comma-separated-values, application/excel, text/pdf, application/jpg, image/x-tif, text/x-csv, application/x-tiff, application/vnd.oasis.opendocument.spreadsheet, drawing/dwg, application/x-autocad, image/x-eps, application/x-eps, application/tif.
|
13209
13212
|
"""
|
13210
13213
|
file: Upload!
|
13211
13214
|
|
@@ -19858,6 +19861,9 @@ input ProductVariantCreateInput {
|
|
19858
19861
|
"""
|
19859
19862
|
isPriceOverrideAllowed: Boolean
|
19860
19863
|
|
19864
|
+
"""Product dimensions."""
|
19865
|
+
dimensions: ProductDimensionsInput
|
19866
|
+
|
19861
19867
|
"""Stocks of a product available for sale."""
|
19862
19868
|
stocks: [StockInput!]
|
19863
19869
|
|
@@ -19999,6 +20005,9 @@ input ProductVariantBulkCreateInput {
|
|
19999
20005
|
"""
|
20000
20006
|
isPriceOverrideAllowed: Boolean
|
20001
20007
|
|
20008
|
+
"""Product dimensions."""
|
20009
|
+
dimensions: ProductDimensionsInput
|
20010
|
+
|
20002
20011
|
"""Stocks of a product available for sale."""
|
20003
20012
|
stocks: [StockInput!]
|
20004
20013
|
|
@@ -20177,6 +20186,9 @@ input ProductVariantInput {
|
|
20177
20186
|
Set whether this variant allows price overrides by default, will be overridden by product type attached to product if available
|
20178
20187
|
"""
|
20179
20188
|
isPriceOverrideAllowed: Boolean
|
20189
|
+
|
20190
|
+
"""Product dimensions."""
|
20191
|
+
dimensions: ProductDimensionsInput
|
20180
20192
|
}
|
20181
20193
|
|
20182
20194
|
"""
|