@nautical-commerce/graphql-schema 1.86.0-32-g3317de000 → 1.86.0-34-gdee1b91fd
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 -4
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1838,7 +1838,8 @@ enum EventTypeEnum {
|
|
1838
1838
|
order_canceled
|
1839
1839
|
partial_order_cancel
|
1840
1840
|
order_refund_confirmation
|
1841
|
-
pending_quote
|
1841
|
+
pending_quote @deprecated(reason: "Use order_payment_link instead. This value will be deprecated on September 10, 2025")
|
1842
|
+
order_payment_link
|
1842
1843
|
merchant_account_set_password
|
1843
1844
|
account_set_staff_password
|
1844
1845
|
csv_export_products_success
|
@@ -6722,10 +6723,13 @@ enum OrderEventsEmailsEnum {
|
|
6722
6723
|
MPO_ORDER_NOTIFICATION
|
6723
6724
|
|
6724
6725
|
"""The quote email was sent"""
|
6725
|
-
QUOTE_SENT
|
6726
|
+
QUOTE_SENT @deprecated(reason: "Use PAYMENT_LINK_SENT instead. This value will be deprecated on September 10, 2025")
|
6726
6727
|
|
6727
6728
|
"""The quote request email was sent to the marketplace operator"""
|
6728
6729
|
QUOTE_REQUESTED
|
6730
|
+
|
6731
|
+
"""The payment link email was sent"""
|
6732
|
+
PAYMENT_LINK_SENT
|
6729
6733
|
}
|
6730
6734
|
|
6731
6735
|
type NauticalOrderEventOrderLineObject {
|
@@ -10219,6 +10223,9 @@ enum EmailEventMessageType {
|
|
10219
10223
|
"""Pending Quote"""
|
10220
10224
|
PENDING_QUOTE
|
10221
10225
|
|
10226
|
+
"""Order Payment Link"""
|
10227
|
+
ORDER_PAYMENT_LINK
|
10228
|
+
|
10222
10229
|
"""Merchant Account Set Password"""
|
10223
10230
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
10224
10231
|
|
@@ -10340,7 +10347,10 @@ enum NotifyEventTypeEnum {
|
|
10340
10347
|
ORDER_REFUND_CONFIRMATION
|
10341
10348
|
|
10342
10349
|
"""Pending Quote"""
|
10343
|
-
PENDING_QUOTE
|
10350
|
+
PENDING_QUOTE @deprecated(reason: "Use ORDER_PAYMENT_LINK instead. This will be removed on September 10, 2025")
|
10351
|
+
|
10352
|
+
"""Order Payment Link"""
|
10353
|
+
ORDER_PAYMENT_LINK
|
10344
10354
|
|
10345
10355
|
"""Merchant Account Set Password"""
|
10346
10356
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
@@ -11486,7 +11496,7 @@ type Mutation {
|
|
11486
11496
|
description: String
|
11487
11497
|
|
11488
11498
|
"""
|
11489
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11499
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.presentation, application/x-dwg, application/gzip, drawing/x-dwg, application/acad, image/tif, application/msword, image/x-bmp, application/eps, image/heif-sequence, text/svg-xml, application/csv, application/x-eps, application/x-pdf, application/acrobat, image/heif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpg, application/excel, application/vnd.ms-word, text/plain, application/jpg, application/rtf, text/x-pdf, application/x-dxf, application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-eps, application/svg+xml, application/tiff, image/heic, application/x-acad, application/vnd.ms-powerpoint, text/svg, image/eps, application/x-rar-compressed, text/rtf, image/tiff, application/x-tif, application/vnd.ms-excel, image/svg+xml, application/gzipped, image/x-dwg, application/dwg, image/x-ms-bmp, application/x-autocad, text/pdf, application/x-gzip, image/heic-sequence, text/csv, application/gzip-compressed, text/x-csv, application/vnd.oasis.opendocument.spreadsheet, image/x-dxf, image/vnd.dwg, image/gif, image/x-tiff, image/jpeg, application/x-rar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/png, drawing/dwg, application/postscript, image/dxf, drawing/x-dwf, pplication/vnd.rar, application/dxf, text/comma-separated-values, application/x-csv, image/x-tif, application/x-zip-compressed, application/vnd.pdf, application/x-rtf, image/bmp, image/webp, image/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, application/tif, application/x-jpg, text/x-comma-separated-values, application/x-tiff, application/zip.
|
11490
11500
|
"""
|
11491
11501
|
file: Upload!
|
11492
11502
|
|