@nautical-commerce/graphql-schema 1.74.2-8-gd1f70a536 → 1.74.2
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 -14
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2740,18 +2740,12 @@ 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 shipping after discount"""
|
2744
|
-
discountedShippingPrice: Money
|
2745
|
-
|
2746
|
-
"""The price of the checkout before discount, shipping and taxes"""
|
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
2743
|
"""The price of the checkout before shipping, with taxes included."""
|
2753
2744
|
subtotalPrice: TaxedMoney!
|
2754
2745
|
|
2746
|
+
"""The price of the checkout before discount, shipping and taxes"""
|
2747
|
+
originalPrice: Money!
|
2748
|
+
|
2755
2749
|
"""The checkout's token."""
|
2756
2750
|
token: NauticalUUID!
|
2757
2751
|
|
@@ -2760,9 +2754,6 @@ type Checkout implements Node & ObjectWithMetadata {
|
|
2760
2754
|
"""
|
2761
2755
|
totalPrice: TaxedMoney!
|
2762
2756
|
|
2763
|
-
"""The sum of the checkout line prices, without discount"""
|
2764
|
-
originalTotalPrice: Money!
|
2765
|
-
|
2766
2757
|
"""Discount Type if voucher is applied"""
|
2767
2758
|
discountType: VoucherTypeEnum
|
2768
2759
|
|
@@ -8584,6 +8575,9 @@ type Shop {
|
|
8584
8575
|
"""Whether the marketplace has enabled quote orders."""
|
8585
8576
|
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8586
8577
|
|
8578
|
+
"""Whether the marketplace has enabled offer orders."""
|
8579
|
+
enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
8580
|
+
|
8587
8581
|
"""Shop's name."""
|
8588
8582
|
name: String!
|
8589
8583
|
|
@@ -8963,7 +8957,6 @@ input SellerFilterInput {
|
|
8963
8957
|
storefront: Boolean
|
8964
8958
|
metadata: MetadataFilterInput
|
8965
8959
|
privateMetadata: MetadataFilterInput
|
8966
|
-
isMarketplaceSeller: Boolean
|
8967
8960
|
}
|
8968
8961
|
|
8969
8962
|
enum SellerStatusFilter {
|
@@ -13195,7 +13188,7 @@ type Mutation {
|
|
13195
13188
|
description: String
|
13196
13189
|
|
13197
13190
|
"""
|
13198
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13191
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/dxf, application/x-dxf, application/x-csv, image/png, image/x-bmp, image/heic-sequence, application/x-gzip, image/x-eps, text/x-csv, image/x-tiff, text/svg-xml, application/x-tar, application/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/tif, application/x-acad, image/tiff, application/excel, application/acrobat, application/tif, application/dwg, application/svg+xml, image/gif, application/vnd.ms-excel, application/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.text, image/svg+xml, text/x-comma-separated-values, application/tiff, text/comma-separated-values, application/csv, image/jpeg, image/bmp, application/gzip-compressed, text/plain, image/webp, image/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-word, application/acad, text/x-pdf, application/pdf, application/postscript, application/x-jpg, application/x-eps, image/x-ms-bmp, image/x-dwg, application/x-tif, application/vnd.oasis.opendocument.presentation, text/svg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-dxf, application/gzipped, application/x-zip-compressed, application/x-dwg, text/rtf, application/x-autocad, application/x-rar, application/rtf, application/vnd.oasis.opendocument.spreadsheet, application/msword, text/csv, image/vnd.dwg, application/x-pdf, application/eps, image/svg, image/heif, drawing/x-dwg, application/vnd.pdf, application/gzip, image/jpg, application/x-rtf, application/x-rar-compressed, application/dxf, text/pdf, image/heif-sequence, drawing/x-dwf, pplication/vnd.rar, drawing/dwg, application/zip, image/x-tif, image/heic.
|
13199
13192
|
"""
|
13200
13193
|
file: Upload!
|
13201
13194
|
|