@nautical-commerce/graphql-schema 1.74.2-3-g1eb2f7b6f → 1.74.2-5-g60dc012f4
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 -4
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2740,11 +2740,17 @@ type Checkout implements Node & ObjectWithMetadata {
|
|
2740
2740
|
"""The price of the shipping, with all the taxes included."""
|
2741
2741
|
shippingPrice: TaxedMoney!
|
2742
2742
|
|
2743
|
-
"""The price of the
|
2744
|
-
|
2743
|
+
"""The price of the shipping after discount"""
|
2744
|
+
discountedShippingPrice: Money
|
2745
2745
|
|
2746
2746
|
"""The price of the checkout before discount, shipping and taxes"""
|
2747
|
-
originalPrice: Money!
|
2747
|
+
originalPrice: Money! @deprecated(reason: "This will be removed on June 17, 2025")
|
2748
|
+
|
2749
|
+
"""The price of the checkout before discount"""
|
2750
|
+
originalSubtotalPrice: Money!
|
2751
|
+
|
2752
|
+
"""The price of the checkout before shipping, with taxes included."""
|
2753
|
+
subtotalPrice: TaxedMoney!
|
2748
2754
|
|
2749
2755
|
"""The checkout's token."""
|
2750
2756
|
token: NauticalUUID!
|
@@ -2754,6 +2760,9 @@ type Checkout implements Node & ObjectWithMetadata {
|
|
2754
2760
|
"""
|
2755
2761
|
totalPrice: TaxedMoney!
|
2756
2762
|
|
2763
|
+
"""The sum of the checkout line prices, without discount"""
|
2764
|
+
originalTotalPrice: Money!
|
2765
|
+
|
2757
2766
|
"""Discount Type if voucher is applied"""
|
2758
2767
|
discountType: VoucherTypeEnum
|
2759
2768
|
|
@@ -13185,7 +13194,7 @@ type Mutation {
|
|
13185
13194
|
description: String
|
13186
13195
|
|
13187
13196
|
"""
|
13188
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13197
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/tiff, image/eps, application/vnd.oasis.opendocument.spreadsheet, image/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/pdf, text/x-comma-separated-values, image/x-dwg, application/vnd.ms-excel, image/heic-sequence, application/x-rar-compressed, application/dwg, application/postscript, text/comma-separated-values, application/msword, text/svg-xml, application/tif, application/x-tiff, drawing/x-dwf, image/gif, text/svg, application/gzipped, application/x-tif, application/x-rtf, image/tif, text/pdf, image/bmp, drawing/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/webp, text/rtf, text/x-pdf, application/x-autocad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-jpg, application/x-pdf, application/vnd.ms-powerpoint, image/x-ms-bmp, application/vnd.pdf, application/x-eps, application/x-acad, image/dxf, application/x-tar, image/svg, image/png, application/eps, image/heif, image/x-eps, image/heif-sequence, image/heic, application/x-rar, text/csv, text/x-csv, application/vnd.oasis.opendocument.presentation, application/acad, text/plain, image/jpeg, image/x-tif, image/svg+xml, application/csv, image/tiff, application/acrobat, image/x-dxf, application/gzip-compressed, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-csv, application/zip, application/vnd.ms-word, image/jpg, image/x-bmp, application/svg+xml, application/x-dwg, image/vnd.dwg, drawing/dwg, application/dxf, application/rtf, application/excel, application/x-dxf, application/x-zip-compressed, application/gzip, application/x-gzip, pplication/vnd.rar, application/jpg.
|
13189
13198
|
"""
|
13190
13199
|
file: Upload!
|
13191
13200
|
|