@nautical-commerce/graphql-schema 1.64.0-12-gc1e41abf7 → 1.64.0-14-g21ba2103b
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 +7 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3791,6 +3791,9 @@ type Order implements Node & ObjectWithMetadata {
|
|
3791
3791
|
"""Total amount of the order."""
|
3792
3792
|
total: TaxedMoney
|
3793
3793
|
|
3794
|
+
"""Total of the order including any discounts."""
|
3795
|
+
discountedTotal: TaxedMoney
|
3796
|
+
|
3794
3797
|
"""Original total amount of the order."""
|
3795
3798
|
originalTotal: TaxedMoney
|
3796
3799
|
|
@@ -5693,6 +5696,9 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
5693
5696
|
"""Price of the order line."""
|
5694
5697
|
totalPrice: TaxedMoney
|
5695
5698
|
|
5699
|
+
"""Total price of the line with any discounts applied"""
|
5700
|
+
discountedTotalPrice: TaxedMoney
|
5701
|
+
|
5696
5702
|
"""
|
5697
5703
|
A purchased product variant. Note: this field may be null if the variant has been removed from stock at all.
|
5698
5704
|
"""
|
@@ -13166,7 +13172,7 @@ type Mutation {
|
|
13166
13172
|
description: String
|
13167
13173
|
|
13168
13174
|
"""
|
13169
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
13175
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/vnd.dwg, application/x-eps, image/tif, application/tif, application/vnd.oasis.opendocument.spreadsheet, text/pdf, drawing/dwg, application/x-rar, application/jpg, image/webp, image/jpg, application/x-tif, application/postscript, text/csv, image/eps, application/vnd.oasis.opendocument.presentation, application/acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.text, text/rtf, image/x-ms-bmp, image/bmp, application/msword, drawing/x-dwg, application/x-tar, image/x-dwg, image/svg+xml, application/x-gzip, application/x-csv, application/x-dxf, application/x-jpg, application/excel, image/heif, image/jpeg, application/x-pdf, image/dxf, application/x-autocad, application/x-tiff, application/x-acad, text/x-csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/svg, text/comma-separated-values, drawing/x-dwf, application/x-dwg, application/vnd.ms-excel, text/svg-xml, text/svg, image/heic-sequence, text/plain, image/png, application/gzipped, application/gzip, image/heic, application/x-rar-compressed, application/csv, image/x-eps, image/x-tif, application/pdf, application/acrobat, image/x-tiff, application/vnd.ms-powerpoint, image/tiff, application/svg+xml, application/dxf, image/x-dxf, application/gzip-compressed, application/rtf, image/x-bmp, application/vnd.pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-zip-compressed, text/x-comma-separated-values, application/zip, text/x-pdf, application/tiff, application/eps, image/heif-sequence, application/vnd.ms-word, application/dwg, application/x-rtf, pplication/vnd.rar, image/gif.
|
13170
13176
|
"""
|
13171
13177
|
file: Upload!
|
13172
13178
|
|