@nautical-commerce/graphql-schema 1.80.0-1-g234500387 → 1.80.0-10-g748fbbe2c

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.
@@ -2480,7 +2480,9 @@ type User implements Node & ObjectWithMetadata {
2480
2480
  last: Int
2481
2481
  ): WishlistCountableConnection
2482
2482
  seller: Seller
2483
- isAssignable: Boolean
2483
+
2484
+ """If true, the user can be assigned as the owner of a seller"""
2485
+ isAssignable: Boolean!
2484
2486
 
2485
2487
  """List of documents associated with the user."""
2486
2488
  documents: [Document!]!
@@ -3362,7 +3364,7 @@ type MarketplaceConfiguration {
3362
3364
  Determines whether shipping methods are available based on marketplace checkout total or seller totals
3363
3365
  """
3364
3366
  availableShippingStrategy: AvailableShippingStrategyEnum
3365
- attributeTemplateStrategy: MarketplaceConfigurationAttributeTemplateStrategy!
3367
+ attributeTemplateStrategy: AttributeTemplateStrategyEnum @deprecated(reason: "This field will be removed on July 23, 2025.")
3366
3368
 
3367
3369
  """Determines the fulfillment model for the marketplace"""
3368
3370
  fulfillmentModel: FulfillmentModelEnum!
@@ -4004,8 +4006,7 @@ enum AvailableShippingStrategyEnum {
4004
4006
  MARKETPLACE_LINES
4005
4007
  }
4006
4008
 
4007
- """An enumeration."""
4008
- enum MarketplaceConfigurationAttributeTemplateStrategy {
4009
+ enum AttributeTemplateStrategyEnum {
4009
4010
  """
4010
4011
  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
4012
  """
@@ -12557,7 +12558,7 @@ type Mutation {
12557
12558
  description: String
12558
12559
 
12559
12560
  """
12560
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/x-pdf, application/dxf, application/csv, image/svg+xml, application/vnd.oasis.opendocument.presentation, pplication/vnd.rar, text/x-comma-separated-values, application/x-rtf, application/x-dxf, application/msword, application/gzip-compressed, application/vnd.oasis.opendocument.text, text/pdf, drawing/x-dwg, text/plain, text/x-csv, application/acrobat, image/heif-sequence, application/vnd.ms-word, application/x-acad, application/x-dwg, image/eps, image/heic, image/x-eps, image/heic-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-csv, application/vnd.ms-excel, image/webp, text/svg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-autocad, image/vnd.dwg, text/rtf, application/rtf, application/vnd.oasis.opendocument.spreadsheet, application/postscript, text/comma-separated-values, drawing/dwg, image/dxf, application/x-rar, application/eps, application/tiff, application/jpg, application/x-rar-compressed, image/gif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dwg, image/x-dwg, image/x-ms-bmp, application/excel, image/tif, image/x-tiff, image/svg, application/acad, application/x-tif, application/x-tiff, image/x-tif, image/x-dxf, application/zip, image/bmp, application/gzipped, drawing/x-dwf, image/jpg, text/csv, application/x-eps, application/x-zip-compressed, image/jpeg, application/x-jpg, text/svg-xml, image/x-bmp, application/pdf, application/vnd.pdf, application/vnd.ms-powerpoint, application/gzip, image/heif, application/x-tar, image/png, application/x-pdf, application/svg+xml, image/tiff, application/tif, application/x-gzip.
12561
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-tif, application/jpg, text/comma-separated-values, image/heic-sequence, image/x-dxf, image/tif, application/x-acad, application/gzip, image/x-ms-bmp, image/svg, image/gif, application/dwg, application/x-zip-compressed, image/x-bmp, application/vnd.pdf, application/tif, application/dxf, image/svg+xml, application/x-tif, application/x-rar, application/vnd.ms-word, application/pdf, application/msword, text/plain, image/dxf, application/rtf, image/bmp, application/x-csv, image/jpg, text/pdf, application/x-pdf, application/x-tiff, application/x-rtf, text/x-comma-separated-values, pplication/vnd.rar, image/x-tiff, text/x-csv, application/svg+xml, image/tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg, text/svg-xml, application/x-autocad, application/csv, image/webp, text/x-pdf, image/png, application/eps, application/excel, image/heif-sequence, application/gzipped, application/x-dxf, image/eps, image/x-dwg, application/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, drawing/x-dwf, text/csv, application/vnd.oasis.opendocument.text, drawing/dwg, image/x-eps, application/zip, application/vnd.ms-excel, application/vnd.oasis.opendocument.spreadsheet, application/gzip-compressed, application/x-dwg, application/vnd.oasis.opendocument.presentation, text/rtf, application/tiff, application/postscript, image/heif, drawing/x-dwg, image/vnd.dwg, application/acad, application/vnd.ms-powerpoint, application/acrobat, application/x-gzip, application/x-rar-compressed, image/jpeg, application/x-jpg, image/heic.
12561
12562
  """
12562
12563
  file: Upload!
12563
12564
 
@@ -15939,7 +15940,7 @@ input MarketplaceConfigurationInput {
15939
15940
  availableShippingStrategy: AvailableShippingStrategyEnum = null
15940
15941
 
15941
15942
  """Update attribute template strategy"""
15942
- attributeTemplateStrategy: AttributeTemplateStrategyEnum = null
15943
+ attributeTemplateStrategy: AttributeTemplateStrategyEnum = null @deprecated(reason: "This field will be removed on July 23, 2025.")
15943
15944
 
15944
15945
  """
15945
15946
  Updates currency of the marketplace. Marketplace currency will be updated after the cache time (approximately 30 seconds)'
@@ -16026,18 +16027,6 @@ input MarketplaceConfigurationInput {
16026
16027
  chargeTaxesOnShipping: Boolean
16027
16028
  }
16028
16029
 
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
16030
  input DefaultSellerChecklistInput {
16042
16031
  title: String!
16043
16032
  description: String!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.80.0-1-g234500387",
3
+ "version": "v1.80.0-10-g748fbbe2c",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {