@nautical-commerce/graphql-schema 1.75.0-15-ge0d71d537 → 1.75.0-17-g95a2b102b

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.
@@ -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
- enum RevenueAccrualStrategyEnum {
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/zip, application/dxf, image/heic-sequence, image/x-dxf, application/dwg, application/x-rtf, image/x-bmp, image/svg+xml, pplication/vnd.rar, image/x-dwg, image/vnd.dwg, application/x-jpg, application/csv, application/x-acad, image/x-eps, application/x-gzip, application/vnd.pdf, image/heic, application/x-tar, image/png, application/x-eps, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/plain, application/x-tiff, image/gif, application/gzip-compressed, application/tiff, application/vnd.ms-word, application/excel, text/pdf, application/msword, application/x-zip-compressed, image/tif, text/comma-separated-values, image/tiff, image/x-tiff, application/x-tif, application/x-csv, text/x-csv, application/x-rar-compressed, image/svg, application/vnd.oasis.opendocument.presentation, application/tif, application/svg+xml, text/svg, application/x-dwg, application/jpg, image/x-ms-bmp, application/postscript, drawing/x-dwg, application/rtf, image/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-tif, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/dwg, application/x-autocad, application/vnd.oasis.opendocument.text, application/gzip, application/acad, application/x-dxf, image/heif, text/csv, application/acrobat, image/bmp, image/jpeg, text/x-comma-separated-values, text/x-pdf, image/webp, drawing/x-dwf, image/jpg, application/gzipped, application/vnd.ms-excel, application/x-rar, application/vnd.oasis.opendocument.spreadsheet, text/svg-xml, text/rtf, application/x-pdf, image/heif-sequence, image/dxf.
13168
+ 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-csv, image/gif, application/zip, application/gzip-compressed, image/jpg, application/dwg, application/x-gzip, application/acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, application/acrobat, application/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/csv, pplication/vnd.rar, application/msword, application/x-rtf, image/dxf, application/vnd.ms-excel, application/dxf, image/heif, image/eps, application/x-tiff, application/tiff, application/x-tif, application/vnd.pdf, image/png, image/x-dwg, application/excel, drawing/x-dwg, application/x-tar, application/vnd.oasis.opendocument.text, application/vnd.ms-powerpoint, application/gzipped, application/x-dwg, application/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, application/x-rar, application/x-pdf, application/vnd.oasis.opendocument.presentation, application/pdf, image/jpeg, image/x-eps, drawing/x-dwf, application/gzip, application/x-autocad, application/x-csv, image/x-ms-bmp, image/x-bmp, text/csv, image/webp, drawing/dwg, image/tiff, application/vnd.ms-word, application/tif, image/x-dxf, application/x-zip-compressed, text/svg-xml, application/x-eps, text/x-comma-separated-values, application/vnd.oasis.opendocument.spreadsheet, application/eps, text/x-pdf, image/heic, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, image/vnd.dwg, image/heic-sequence, text/comma-separated-values, image/tif, image/x-tif, image/svg+xml, image/svg, application/x-rar-compressed, application/postscript, text/svg, text/plain, application/x-acad, text/pdf, application/x-jpg, text/rtf, image/x-tiff, image/bmp.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.75.0-15-ge0d71d537",
3
+ "version": "v1.75.0-17-g95a2b102b",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {