@nautical-commerce/graphql-schema 1.75.0-12-ga1b35f313 → 1.75.0-3-g77b1c49f8
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 +5 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -10968,6 +10968,7 @@ type MarketplaceConfiguration {
|
|
10968
10968
|
"""Returns list of default checklists for seller."""
|
10969
10969
|
defaultSellerChecklists: [DefaultSellerChecklist!]!
|
10970
10970
|
enableStockAllocationForQuotes: Boolean!
|
10971
|
+
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025 and will return false until then")
|
10971
10972
|
enableStockAllocationForDrafts: Boolean!
|
10972
10973
|
validateStockOnOrderPaymentCreation: Boolean!
|
10973
10974
|
|
@@ -13170,7 +13171,7 @@ type Mutation {
|
|
13170
13171
|
description: String
|
13171
13172
|
|
13172
13173
|
"""
|
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/
|
13174
|
+
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.spreadsheetml.sheet, text/comma-separated-values, image/vnd.dwg, application/x-tif, text/pdf, application/tiff, image/svg+xml, application/x-acad, application/dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tar, image/dxf, application/x-rar-compressed, application/gzip, application/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.presentation, application/excel, image/gif, application/x-jpg, text/csv, application/gzip-compressed, application/dwg, image/x-ms-bmp, drawing/x-dwf, application/x-rar, application/tif, pplication/vnd.rar, image/x-tif, image/tif, image/svg, application/vnd.oasis.opendocument.text, image/x-dxf, application/vnd.ms-powerpoint, application/gzipped, drawing/dwg, application/msword, image/tiff, application/x-dwg, image/heic, application/rtf, image/x-tiff, text/x-comma-separated-values, text/x-pdf, application/vnd.oasis.opendocument.spreadsheet, application/svg+xml, application/x-csv, application/x-autocad, application/acrobat, application/x-dxf, image/eps, image/x-dwg, application/vnd.ms-excel, image/png, image/heif, application/x-pdf, application/vnd.ms-word, image/heic-sequence, application/postscript, text/svg-xml, application/x-zip-compressed, application/vnd.pdf, application/acad, application/x-tiff, text/svg, application/zip, application/jpg, image/x-eps, image/webp, image/jpg, application/x-gzip, text/x-csv, application/x-rtf, text/rtf, image/heif-sequence, drawing/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/plain, application/pdf, image/bmp, image/jpeg, application/csv, image/x-bmp, application/x-eps.
|
13174
13175
|
"""
|
13175
13176
|
file: Upload!
|
13176
13177
|
|
@@ -16599,6 +16600,9 @@ input MarketplaceConfigurationInput {
|
|
16599
16600
|
"""True if quote orders trigger stock allocation."""
|
16600
16601
|
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16601
16602
|
|
16603
|
+
"""True if offer orders trigger stock allocation."""
|
16604
|
+
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
16605
|
+
|
16602
16606
|
"""True if draft orders trigger stock allocation."""
|
16603
16607
|
enableStockAllocationForDrafts: Boolean
|
16604
16608
|
|