@nautical-commerce/graphql-schema 1.75.0-14-g9404048b6 → 1.75.0-16-g639da1dd9
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 +4 -13
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -10975,9 +10975,7 @@ type MarketplaceConfiguration {
|
|
10975
10975
|
"""IANA timezone to display datetime fields in the marketplace"""
|
10976
10976
|
timezone: String!
|
10977
10977
|
enableBackorders: Boolean!
|
10978
|
-
|
10979
|
-
"""Determines when revenue is accrued to the marketplace and sellers"""
|
10980
|
-
revenueAccrualStrategy: RevenueAccrualStrategyEnum @deprecated(reason: "This will be removed on February 20, 2025.")
|
10978
|
+
revenueAccrualStrategy: MarketplaceConfigurationRevenueAccrualStrategy!
|
10981
10979
|
|
10982
10980
|
"""
|
10983
10981
|
Determines whether shipping methods are available based on marketplace checkout total or seller totals
|
@@ -11576,16 +11574,12 @@ type DefaultSellerChecklist {
|
|
11576
11574
|
isEnabled: Boolean!
|
11577
11575
|
}
|
11578
11576
|
|
11579
|
-
|
11577
|
+
"""An enumeration."""
|
11578
|
+
enum MarketplaceConfigurationRevenueAccrualStrategy {
|
11580
11579
|
"""
|
11581
11580
|
Accrue revenue to the marketplace and sellers when orders are fulfilled.
|
11582
11581
|
"""
|
11583
11582
|
FULFILLMENT
|
11584
|
-
|
11585
|
-
"""
|
11586
|
-
Accrue all revenue to the marketplace and sellers when orders are placed.
|
11587
|
-
"""
|
11588
|
-
ORDER_PLACEMENT
|
11589
11583
|
}
|
11590
11584
|
|
11591
11585
|
enum AvailableShippingStrategyEnum {
|
@@ -13171,7 +13165,7 @@ type Mutation {
|
|
13171
13165
|
description: String
|
13172
13166
|
|
13173
13167
|
"""
|
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/
|
13168
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/csv, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpg, application/x-tiff, application/gzip, application/tif, image/x-tiff, image/tiff, drawing/x-dwg, application/acad, text/x-pdf, image/bmp, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/csv, application/gzipped, application/pdf, image/heif, application/gzip-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heic, text/svg, drawing/dwg, image/x-eps, application/acrobat, image/webp, text/plain, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/gif, pplication/vnd.rar, application/tiff, drawing/x-dwf, application/x-pdf, text/x-csv, application/rtf, application/dwg, application/vnd.ms-excel, application/x-csv, application/x-gzip, application/x-zip-compressed, image/dxf, image/x-dwg, image/x-ms-bmp, image/x-bmp, image/png, image/svg, application/svg+xml, application/vnd.ms-word, application/vnd.ms-powerpoint, text/comma-separated-values, image/svg+xml, application/zip, application/vnd.oasis.opendocument.spreadsheet, text/svg-xml, application/x-tar, image/eps, application/eps, text/rtf, application/x-dxf, application/x-dwg, text/x-comma-separated-values, application/postscript, application/jpg, application/x-acad, application/x-rar, application/x-eps, application/excel, image/vnd.dwg, image/heif-sequence, image/x-tif, application/dxf, application/vnd.oasis.opendocument.presentation, image/x-dxf, application/x-rar-compressed, text/pdf, application/x-tif, application/vnd.pdf, application/msword, application/x-jpg, application/vnd.oasis.opendocument.text, image/jpeg, image/heic-sequence, image/tif, application/x-rtf.
|
13175
13169
|
"""
|
13176
13170
|
file: Upload!
|
13177
13171
|
|
@@ -16565,9 +16559,6 @@ input MarketplaceConfigurationInput {
|
|
16565
16559
|
"""Updates status transformation strategy for payout."""
|
16566
16560
|
payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
|
16567
16561
|
|
16568
|
-
"""Update revenue accrual strategy"""
|
16569
|
-
revenueAccrualStrategy: RevenueAccrualStrategyEnum = null @deprecated(reason: "This will be removed on February 20, 2025.")
|
16570
|
-
|
16571
16562
|
"""Update available shipping strategy"""
|
16572
16563
|
availableShippingStrategy: AvailableShippingStrategyEnum = null
|
16573
16564
|
|