@nautical-commerce/graphql-schema 1.80.0-1-g234500387 → 1.80.0-3-gda6129e33
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 -17
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3362,7 +3362,7 @@ type MarketplaceConfiguration {
|
|
3362
3362
|
Determines whether shipping methods are available based on marketplace checkout total or seller totals
|
3363
3363
|
"""
|
3364
3364
|
availableShippingStrategy: AvailableShippingStrategyEnum
|
3365
|
-
attributeTemplateStrategy:
|
3365
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 23, 2025.")
|
3366
3366
|
|
3367
3367
|
"""Determines the fulfillment model for the marketplace"""
|
3368
3368
|
fulfillmentModel: FulfillmentModelEnum!
|
@@ -4004,8 +4004,7 @@ enum AvailableShippingStrategyEnum {
|
|
4004
4004
|
MARKETPLACE_LINES
|
4005
4005
|
}
|
4006
4006
|
|
4007
|
-
|
4008
|
-
enum MarketplaceConfigurationAttributeTemplateStrategy {
|
4007
|
+
enum AttributeTemplateStrategyEnum {
|
4009
4008
|
"""
|
4010
4009
|
Assigned attributes may only come from templates (ProductType for PIM-specific attribute usage or CustomFieldTemplate for custom field attribute usage), no non-templated attribute assignment is allowed
|
4011
4010
|
"""
|
@@ -12557,7 +12556,7 @@ type Mutation {
|
|
12557
12556
|
description: String
|
12558
12557
|
|
12559
12558
|
"""
|
12560
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12559
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/postscript, image/eps, application/vnd.ms-powerpoint, application/x-acad, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/msword, image/vnd.dwg, application/x-gzip, text/x-pdf, application/dwg, application/svg+xml, application/vnd.ms-word, application/x-csv, application/pdf, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-bmp, text/svg-xml, image/jpg, pplication/vnd.rar, text/comma-separated-values, application/gzip, application/tiff, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/gzip-compressed, text/plain, text/svg, application/x-rar, image/tif, application/x-eps, text/rtf, application/x-rtf, image/x-eps, drawing/x-dwg, drawing/x-dwf, application/x-tar, text/x-comma-separated-values, text/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/svg, image/heic, image/x-dxf, image/heif-sequence, application/rtf, application/acrobat, image/gif, application/jpg, application/x-dwg, application/dxf, image/bmp, image/x-tiff, application/zip, application/acad, application/x-rar-compressed, application/vnd.oasis.opendocument.text, image/tiff, application/x-dxf, image/svg+xml, application/x-tiff, application/x-autocad, image/x-dwg, image/jpeg, drawing/dwg, application/eps, application/x-tif, application/vnd.pdf, application/tif, application/x-pdf, application/vnd.oasis.opendocument.spreadsheet, image/heic-sequence, text/pdf, text/x-csv, image/png, application/excel, image/x-tif, image/webp, application/x-zip-compressed, application/gzipped, application/csv, image/heif, image/dxf, application/vnd.oasis.opendocument.presentation.
|
12561
12560
|
"""
|
12562
12561
|
file: Upload!
|
12563
12562
|
|
@@ -15939,7 +15938,7 @@ input MarketplaceConfigurationInput {
|
|
15939
15938
|
availableShippingStrategy: AvailableShippingStrategyEnum = null
|
15940
15939
|
|
15941
15940
|
"""Update attribute template strategy"""
|
15942
|
-
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null
|
15941
|
+
attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 23, 2025.")
|
15943
15942
|
|
15944
15943
|
"""
|
15945
15944
|
Updates currency of the marketplace. Marketplace currency will be updated after the cache time (approximately 30 seconds)'
|
@@ -16026,18 +16025,6 @@ input MarketplaceConfigurationInput {
|
|
16026
16025
|
chargeTaxesOnShipping: Boolean
|
16027
16026
|
}
|
16028
16027
|
|
16029
|
-
enum AttributeTemplateStrategyEnum {
|
16030
|
-
"""
|
16031
|
-
Assigned attributes may only come from templates (ProductType for PIM-specific attribute usage or CustomFieldTemplate for custom field attribute usage), no non-templated attribute assignment is allowed
|
16032
|
-
"""
|
16033
|
-
STRICT
|
16034
|
-
|
16035
|
-
"""
|
16036
|
-
Assigned attributes may come from BOTH attribute templates and non-templated attribute assignments
|
16037
|
-
"""
|
16038
|
-
FLEXIBLE
|
16039
|
-
}
|
16040
|
-
|
16041
16028
|
input DefaultSellerChecklistInput {
|
16042
16029
|
title: String!
|
16043
16030
|
description: String!
|