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