@nautical-commerce/graphql-schema 1.68.0-27-gb257f649b → 1.68.0-29-gbc442a0dc
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 +6 -4
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -8545,7 +8545,7 @@ type Shop {
|
|
8545
8545
|
phonePrefixes: [String!]!
|
8546
8546
|
|
8547
8547
|
"""Include taxes in prices."""
|
8548
|
-
includeTaxesInPrices: Boolean!
|
8548
|
+
includeTaxesInPrices: Boolean! @deprecated(reason: "This will be removed on April 29, 2025.")
|
8549
8549
|
|
8550
8550
|
"""Charge taxes on shipping."""
|
8551
8551
|
chargeTaxesOnShipping: Boolean!
|
@@ -10973,7 +10973,9 @@ type MarketplaceConfiguration {
|
|
10973
10973
|
|
10974
10974
|
"""URL of a view where customers can set their password."""
|
10975
10975
|
customerSetPasswordUrl: String
|
10976
|
-
|
10976
|
+
|
10977
|
+
"""Include taxes in prices."""
|
10978
|
+
includeTaxesInPrices: Boolean! @deprecated(reason: "This will be removed on April 29, 2025.")
|
10977
10979
|
chargeTaxesOnShipping: Boolean!
|
10978
10980
|
|
10979
10981
|
"""
|
@@ -13153,7 +13155,7 @@ type Mutation {
|
|
13153
13155
|
description: String
|
13154
13156
|
|
13155
13157
|
"""
|
13156
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13158
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/png, image/heic, application/x-rar-compressed, text/rtf, application/jpg, text/comma-separated-values, application/vnd.ms-word, application/gzipped, image/svg+xml, image/heic-sequence, application/msword, application/x-pdf, application/rtf, image/x-eps, application/acad, application/x-gzip, application/dwg, application/vnd.oasis.opendocument.text, application/x-acad, application/excel, application/x-rar, image/svg, text/svg, image/jpg, application/acrobat, application/postscript, application/x-dxf, application/x-tar, drawing/dwg, image/eps, application/x-dwg, application/x-eps, application/x-csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, application/vnd.pdf, image/webp, text/x-csv, image/tiff, image/x-tiff, application/pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/tiff, application/x-tiff, text/plain, application/x-rtf, image/gif, text/svg-xml, image/tif, application/tif, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/zip, application/gzip, image/heif, application/vnd.oasis.opendocument.presentation, application/dxf, application/vnd.ms-powerpoint, application/x-autocad, image/bmp, image/heif-sequence, application/gzip-compressed, text/csv, image/jpeg, image/x-bmp, drawing/x-dwf, image/x-tif, pplication/vnd.rar, text/pdf, image/x-ms-bmp, application/vnd.ms-excel, application/x-jpg, image/dxf, drawing/x-dwg, application/x-tif, image/vnd.dwg, text/x-pdf, image/x-dxf, application/csv, text/x-comma-separated-values, image/x-dwg, application/eps, application/vnd.oasis.opendocument.spreadsheet.
|
13157
13159
|
"""
|
13158
13160
|
file: Upload!
|
13159
13161
|
|
@@ -16643,7 +16645,7 @@ input MarketplaceConfigurationInput {
|
|
16643
16645
|
customerSetPasswordUrl: String
|
16644
16646
|
|
16645
16647
|
"""Include taxes in prices."""
|
16646
|
-
includeTaxesInPrices: Boolean
|
16648
|
+
includeTaxesInPrices: Boolean @deprecated(reason: "This will be removed on April 29, 2025.")
|
16647
16649
|
|
16648
16650
|
"""Charge taxes on shipping."""
|
16649
16651
|
chargeTaxesOnShipping: Boolean
|