@nautical-commerce/graphql-schema 1.74.2-15-g81ea0ebe8 → 1.74.2-17-gdb54a1ff1
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 +14 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -13171,7 +13171,7 @@ type Mutation {
|
|
13171
13171
|
description: String
|
13172
13172
|
|
13173
13173
|
"""
|
13174
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
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/jpg, image/jpg, application/excel, application/x-rtf, image/bmp, application/tiff, text/x-comma-separated-values, text/rtf, image/gif, application/eps, application/x-tar, application/x-dxf, application/x-rar-compressed, application/gzipped, image/jpeg, image/x-tif, application/x-autocad, image/dxf, image/webp, application/dwg, text/svg-xml, application/vnd.ms-word, application/vnd.oasis.opendocument.presentation, text/svg, application/x-csv, image/heif-sequence, application/x-rar, application/zip, application/msword, application/x-pdf, application/acrobat, application/rtf, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-ms-bmp, image/x-bmp, text/plain, application/x-gzip, application/svg+xml, application/pdf, image/x-dxf, image/tif, application/postscript, image/tiff, application/vnd.ms-powerpoint, application/x-dwg, application/gzip-compressed, application/x-jpg, image/svg, application/gzip, application/acad, application/x-eps, image/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.pdf, application/x-acad, drawing/dwg, image/png, image/x-tiff, text/pdf, application/x-zip-compressed, application/vnd.oasis.opendocument.spreadsheet, image/heic, application/x-tiff, image/x-eps, drawing/x-dwf, image/svg+xml, application/vnd.ms-excel, pplication/vnd.rar, application/dxf, application/tif, text/csv, image/heif, text/x-pdf, text/comma-separated-values, image/x-dwg, text/x-csv, drawing/x-dwg, image/vnd.dwg, application/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heic-sequence, application/csv.
|
13175
13175
|
"""
|
13176
13176
|
file: Upload!
|
13177
13177
|
|
@@ -15135,6 +15135,19 @@ type Mutation {
|
|
15135
15135
|
storefrontUrl: String!
|
15136
15136
|
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "The ability to send Order IDs will be removed on February 26, 2025. This will be removed on June 11, 2025.")
|
15137
15137
|
|
15138
|
+
"""Sends a quote order to a customer."""
|
15139
|
+
nauticalDraftOrderSendToCustomer(
|
15140
|
+
"""
|
15141
|
+
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
15142
|
+
"""
|
15143
|
+
id: ID!
|
15144
|
+
|
15145
|
+
"""
|
15146
|
+
URL to send customer to for quote confirmation. Whatever URL is sent will have `token` added to the search parameters of the URL, e.g. if you send http://localhost/quote, the generated URL will be http://localhost/quote?token=...
|
15147
|
+
"""
|
15148
|
+
storefrontUrl: String!
|
15149
|
+
): NauticalQuoteOrderSendToCustomer
|
15150
|
+
|
15138
15151
|
"""Creates a new order fee."""
|
15139
15152
|
orderFeeCreate(
|
15140
15153
|
"""Fields required to create a new order fee."""
|