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