@nautical-commerce/graphql-schema 1.75.0-11-g328e19553 → 1.75.0-13-g01c3115fd
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 -5
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -8831,6 +8831,7 @@ type StorefrontTheme implements Node {
|
|
8831
8831
|
"""Background color in hex."""
|
8832
8832
|
backgroundColor: String
|
8833
8833
|
logo: Image
|
8834
|
+
squareLogo: Image
|
8834
8835
|
faviconImage: Image
|
8835
8836
|
|
8836
8837
|
"""URL of the favicon."""
|
@@ -10968,7 +10969,6 @@ type MarketplaceConfiguration {
|
|
10968
10969
|
"""Returns list of default checklists for seller."""
|
10969
10970
|
defaultSellerChecklists: [DefaultSellerChecklist!]!
|
10970
10971
|
enableStockAllocationForQuotes: Boolean!
|
10971
|
-
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025 and will return false until then")
|
10972
10972
|
enableStockAllocationForDrafts: Boolean!
|
10973
10973
|
validateStockOnOrderPaymentCreation: Boolean!
|
10974
10974
|
|
@@ -13171,7 +13171,7 @@ type Mutation {
|
|
13171
13171
|
description: String
|
13172
13172
|
|
13173
13173
|
"""
|
13174
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13174
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/webp, image/x-dxf, image/x-tiff, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/tif, image/svg, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/csv, application/x-rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/zip, image/x-eps, application/x-autocad, drawing/x-dwg, text/rtf, image/heif-sequence, application/vnd.ms-excel, application/acrobat, application/x-zip-compressed, image/x-dwg, application/x-dxf, application/excel, application/dxf, text/pdf, application/x-csv, application/gzipped, image/jpeg, text/x-comma-separated-values, application/vnd.oasis.opendocument.spreadsheet, application/pdf, image/jpg, application/gzip-compressed, application/x-eps, image/heic, application/vnd.ms-word, text/comma-separated-values, image/x-ms-bmp, application/x-dwg, application/eps, application/x-acad, application/csv, image/bmp, image/svg+xml, drawing/x-dwf, application/x-tiff, application/x-gzip, application/x-rtf, image/gif, text/svg-xml, application/gzip, application/x-pdf, application/x-jpg, application/x-tif, image/heif, drawing/dwg, image/tiff, image/x-tif, application/vnd.pdf, application/acad, application/postscript, image/eps, application/svg+xml, text/x-pdf, application/vnd.ms-powerpoint, application/dwg, text/plain, application/tiff, application/msword, application/vnd.oasis.opendocument.text, image/x-bmp, image/vnd.dwg, application/x-tar, application/rtf, text/x-csv, image/dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, pplication/vnd.rar, image/tif, image/heic-sequence, application/jpg, text/svg, application/vnd.oasis.opendocument.presentation, image/png.
|
13175
13175
|
"""
|
13176
13176
|
file: Upload!
|
13177
13177
|
|
@@ -16600,9 +16600,6 @@ input MarketplaceConfigurationInput {
|
|
16600
16600
|
"""True if quote orders trigger stock allocation."""
|
16601
16601
|
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16602
16602
|
|
16603
|
-
"""True if offer orders trigger stock allocation."""
|
16604
|
-
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
16605
|
-
|
16606
16603
|
"""True if draft orders trigger stock allocation."""
|
16607
16604
|
enableStockAllocationForDrafts: Boolean
|
16608
16605
|
|
@@ -18021,6 +18018,9 @@ input StorefrontThemeInput {
|
|
18021
18018
|
"""Logo file."""
|
18022
18019
|
logo: Upload
|
18023
18020
|
|
18021
|
+
"""Square logo file."""
|
18022
|
+
squareLogo: Upload
|
18023
|
+
|
18024
18024
|
"""Favicon file"""
|
18025
18025
|
faviconImage: Upload
|
18026
18026
|
|