@nautical-commerce/graphql-schema 1.78.0-36-gaaab17458 → 1.78.0-38-g16e266890

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.
@@ -3130,6 +3130,9 @@ type Product implements Node & ObjectWithMetadata {
3130
3130
  """List of sales associated with the product."""
3131
3131
  sales: [Sale!]!
3132
3132
 
3133
+ """List of sale messages for the storefront."""
3134
+ saleMessages: [String!]
3135
+
3133
3136
  """List of vouchers associated with the product."""
3134
3137
  vouchers: [Voucher!]!
3135
3138
 
@@ -12749,7 +12752,7 @@ type Mutation {
12749
12752
  description: String
12750
12753
 
12751
12754
  """
12752
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/dxf, application/vnd.ms-excel, image/tiff, application/gzip-compressed, application/pdf, image/x-ms-bmp, application/rtf, application/x-tar, application/x-rtf, image/eps, application/acad, image/svg+xml, application/msword, text/x-comma-separated-values, image/gif, application/vnd.pdf, application/x-eps, application/vnd.oasis.opendocument.spreadsheet, text/x-csv, image/x-bmp, application/excel, application/x-tiff, application/x-rar, application/x-gzip, application/x-dwg, text/pdf, text/csv, application/gzip, application/svg+xml, image/heif, image/bmp, application/tiff, image/jpeg, image/svg, application/zip, text/svg, application/vnd.ms-powerpoint, application/x-csv, pplication/vnd.rar, application/jpg, drawing/dwg, image/x-eps, image/tif, application/vnd.oasis.opendocument.text, application/x-autocad, application/eps, image/heif-sequence, text/plain, application/x-zip-compressed, text/x-pdf, application/vnd.ms-word, drawing/x-dwf, application/csv, image/x-tif, application/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.presentation, image/heic-sequence, image/dxf, application/postscript, image/png, application/x-rar-compressed, application/dwg, application/gzipped, image/x-dxf, image/heic, text/comma-separated-values, text/rtf, application/x-tif, image/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/tif, image/vnd.dwg, image/x-dwg, drawing/x-dwg, application/acrobat, image/x-tiff, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-jpg, text/svg-xml, image/webp, application/x-acad.
12755
+ 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-dwg, application/x-csv, image/svg, application/x-acad, image/gif, image/heif-sequence, application/vnd.ms-powerpoint, application/x-eps, application/x-jpg, drawing/x-dwg, application/x-dxf, text/rtf, image/x-eps, image/x-bmp, application/svg+xml, image/jpeg, application/jpg, application/gzip-compressed, application/x-rar, image/svg+xml, image/tiff, application/x-rar-compressed, image/x-ms-bmp, application/rtf, image/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tiff, text/x-csv, application/dxf, application/vnd.ms-word, image/heif, image/png, application/gzipped, text/comma-separated-values, application/x-autocad, application/x-rtf, text/x-pdf, image/dxf, application/vnd.oasis.opendocument.text, application/vnd.pdf, image/webp, text/pdf, application/tiff, application/zip, application/acad, application/pdf, text/x-comma-separated-values, application/vnd.oasis.opendocument.presentation, application/postscript, pplication/vnd.rar, application/vnd.oasis.opendocument.spreadsheet, application/dwg, text/svg, application/msword, application/x-tiff, text/csv, image/eps, image/vnd.dwg, application/x-tar, application/csv, application/tif, image/bmp, image/x-dxf, application/eps, image/x-tif, application/x-tif, drawing/x-dwf, image/heic, application/x-dwg, application/x-zip-compressed, text/plain, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/acrobat, drawing/dwg, image/tif, text/svg-xml, image/heic-sequence, application/gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-excel, application/x-pdf, application/excel.
12753
12756
  """
12754
12757
  file: Upload!
12755
12758
 
@@ -12812,7 +12815,7 @@ type Mutation {
12812
12815
  payoutCreate(
12813
12816
  """Fields required to create a payout."""
12814
12817
  input: PayoutCreateInput!
12815
- ): PayoutCreate
12818
+ ): PayoutCreate @deprecated(reason: "This will be removed on July 15, 2024. Use payoutCreateAsync instead.")
12816
12819
 
12817
12820
  """
12818
12821
  Creates a new payout asynchronously. The payout will be created in CREATING state and then transition to DRAFT once the vendor payouts are created.
@@ -12902,7 +12905,7 @@ type Mutation {
12902
12905
 
12903
12906
  """List of vendor payout IDs to process."""
12904
12907
  ids: [ID]!
12905
- ): VendorPayoutsBulkProcess
12908
+ ): VendorPayoutsBulkProcess @deprecated(reason: "This will be removed on July 15, 2024. Use payoutProcess instead.")
12906
12909
 
12907
12910
  """Adds note to the vendor payout."""
12908
12911
  vendorPayoutNoteAdd(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.78.0-36-gaaab17458",
3
+ "version": "v1.78.0-38-g16e266890",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {