@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.
- package/nautical/schema.graphql +6 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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:
|
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(
|