@nautical-commerce/graphql-schema 1.86.0-24-g72407ad7f → 1.86.0-26-g771ac5ea2
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 +22 -2
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -11486,7 +11486,7 @@ type Mutation {
|
|
11486
11486
|
description: String
|
11487
11487
|
|
11488
11488
|
"""
|
11489
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
11489
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/dwg, text/comma-separated-values, application/x-zip-compressed, image/x-bmp, application/x-pdf, application/x-jpg, image/tiff, image/heif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rtf, text/svg, text/pdf, application/x-acad, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.text, image/jpeg, application/x-tiff, application/rtf, application/x-tif, image/heic-sequence, image/gif, image/eps, image/tif, drawing/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/webp, application/vnd.pdf, image/x-dxf, image/svg, image/svg+xml, text/x-csv, drawing/x-dwf, image/dxf, application/jpg, application/dxf, application/gzipped, image/png, application/x-dxf, image/heic, application/tiff, text/plain, application/msword, application/csv, application/vnd.oasis.opendocument.spreadsheet, drawing/dwg, application/excel, application/x-gzip, text/x-pdf, application/x-tar, image/heif-sequence, pplication/vnd.rar, application/gzip, application/postscript, text/rtf, application/acrobat, application/vnd.oasis.opendocument.presentation, text/x-comma-separated-values, application/tif, image/x-eps, application/vnd.ms-word, image/x-dwg, application/x-eps, application/x-csv, application/x-rar-compressed, application/zip, application/x-dwg, application/gzip-compressed, application/acad, application/x-rar, text/csv, application/pdf, application/svg+xml, image/x-tif, image/x-tiff, text/svg-xml, application/vnd.ms-powerpoint, image/jpg, application/x-autocad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/vnd.dwg, image/x-ms-bmp, application/eps, image/bmp.
|
11490
11490
|
"""
|
11491
11491
|
file: Upload!
|
11492
11492
|
|
@@ -13319,7 +13319,20 @@ type Mutation {
|
|
13319
13319
|
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=...
|
13320
13320
|
"""
|
13321
13321
|
storefrontUrl: String!
|
13322
|
-
): NauticalQuoteOrderSendToCustomer
|
13322
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on September 10, 2025. Use nauticalPaymentLinkSendToCustomer instead.")
|
13323
|
+
|
13324
|
+
"""Sends a payment link to a customer."""
|
13325
|
+
nauticalPaymentLinkSendToCustomer(
|
13326
|
+
"""
|
13327
|
+
ID of the nautical order (with Draft or Quote status) to send to the customer.
|
13328
|
+
"""
|
13329
|
+
id: ID!
|
13330
|
+
|
13331
|
+
"""
|
13332
|
+
URL to send customer to for payment. Whatever URL is sent will have `token` added to the search parameters of the URL, e.g. if you send http://localhost/orders, the generated URL will be http://localhost/orders?token=...
|
13333
|
+
"""
|
13334
|
+
storefrontUrl: String!
|
13335
|
+
): NauticalPaymentLinkSendToCustomer
|
13323
13336
|
|
13324
13337
|
"""Creates a new order fee."""
|
13325
13338
|
orderFeeCreate(
|
@@ -19092,6 +19105,13 @@ type NauticalQuoteOrderSendToCustomer {
|
|
19092
19105
|
orderErrors: [OrderError!]!
|
19093
19106
|
}
|
19094
19107
|
|
19108
|
+
"""Sends a payment link to a customer."""
|
19109
|
+
type NauticalPaymentLinkSendToCustomer {
|
19110
|
+
"""Nautical order to send to customer"""
|
19111
|
+
order: NauticalOrder
|
19112
|
+
orderErrors: [OrderError!]!
|
19113
|
+
}
|
19114
|
+
|
19095
19115
|
"""Creates a new order fee."""
|
19096
19116
|
type OrderFeeCreate {
|
19097
19117
|
"""An order fee that was created."""
|