@nautical-commerce/graphql-schema 1.86.0-5-g9cf24a4bf → 1.86.0-51-g89d8f0e05
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 +69 -224
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -983,57 +983,6 @@ type Query {
|
|
983
983
|
last: Int
|
984
984
|
): NauticalOrderCountableConnection
|
985
985
|
|
986
|
-
"""List of quote orders."""
|
987
|
-
nauticalQuoteOrders(
|
988
|
-
"""Sort quote orders."""
|
989
|
-
sortBy: OrderSortingInput
|
990
|
-
|
991
|
-
"""Filtering options for nautical quote orders."""
|
992
|
-
filter: NauticalOrderQuoteFilterInput
|
993
|
-
|
994
|
-
"""Return the elements in the list that come before the specified cursor."""
|
995
|
-
before: String
|
996
|
-
|
997
|
-
"""Return the elements in the list that come after the specified cursor."""
|
998
|
-
after: String
|
999
|
-
|
1000
|
-
"""Return the first n elements from the list."""
|
1001
|
-
first: Int
|
1002
|
-
|
1003
|
-
"""Return the last n elements from the list."""
|
1004
|
-
last: Int
|
1005
|
-
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1006
|
-
|
1007
|
-
"""Look up a nautical quote order by token"""
|
1008
|
-
nauticalQuoteOrderByToken(
|
1009
|
-
"""The Nautical quote order token"""
|
1010
|
-
token: NauticalUUID!
|
1011
|
-
): NauticalOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1012
|
-
|
1013
|
-
"""List of quote orders."""
|
1014
|
-
quoteOrders(
|
1015
|
-
"""Sort quote orders."""
|
1016
|
-
sortBy: OrderSortingInput
|
1017
|
-
|
1018
|
-
"""Filtering options for quote orders."""
|
1019
|
-
filter: OrderQuoteFilterInput
|
1020
|
-
|
1021
|
-
"""Seller global id to filter by"""
|
1022
|
-
identifier: ID
|
1023
|
-
|
1024
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1025
|
-
before: String
|
1026
|
-
|
1027
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1028
|
-
after: String
|
1029
|
-
|
1030
|
-
"""Return the first n elements from the list."""
|
1031
|
-
first: Int
|
1032
|
-
|
1033
|
-
"""Return the last n elements from the list."""
|
1034
|
-
last: Int
|
1035
|
-
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1036
|
-
|
1037
986
|
"""Return the total sales amount from a specific period."""
|
1038
987
|
ordersTotal(
|
1039
988
|
"""Seller global id to filter by"""
|
@@ -1838,7 +1787,8 @@ enum EventTypeEnum {
|
|
1838
1787
|
order_canceled
|
1839
1788
|
partial_order_cancel
|
1840
1789
|
order_refund_confirmation
|
1841
|
-
pending_quote
|
1790
|
+
pending_quote @deprecated(reason: "Use order_payment_link instead. This value will be deprecated on September 10, 2025")
|
1791
|
+
order_payment_link
|
1842
1792
|
merchant_account_set_password
|
1843
1793
|
account_set_staff_password
|
1844
1794
|
csv_export_products_success
|
@@ -1861,7 +1811,7 @@ enum EventTypeEnum {
|
|
1861
1811
|
account_deactivated
|
1862
1812
|
pending_order
|
1863
1813
|
pending_customer
|
1864
|
-
quote_requested
|
1814
|
+
quote_requested @deprecated(reason: "Use order_payment_link instead. This value will be deprecated on September 10, 2025")
|
1865
1815
|
}
|
1866
1816
|
|
1867
1817
|
"""Represents an email template preview."""
|
@@ -2033,27 +1983,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2033
1983
|
"""Return the last n elements from the list."""
|
2034
1984
|
last: Int
|
2035
1985
|
): OrderCountableConnection
|
2036
|
-
|
2037
|
-
"""List of user's quote seller orders."""
|
2038
|
-
quoteOrders(
|
2039
|
-
"""Filtering options for orders."""
|
2040
|
-
filter: CustomerOrderFilterInput
|
2041
|
-
|
2042
|
-
"""Sort orders."""
|
2043
|
-
sortBy: OrderSortingInput
|
2044
|
-
|
2045
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2046
|
-
before: String
|
2047
|
-
|
2048
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2049
|
-
after: String
|
2050
|
-
|
2051
|
-
"""Return the first n elements from the list."""
|
2052
|
-
first: Int
|
2053
|
-
|
2054
|
-
"""Return the last n elements from the list."""
|
2055
|
-
last: Int
|
2056
|
-
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2057
1986
|
numOrders: Int
|
2058
1987
|
|
2059
1988
|
"""List of user's nautical orders."""
|
@@ -2077,27 +2006,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2077
2006
|
last: Int
|
2078
2007
|
): NauticalOrderCountableConnection
|
2079
2008
|
|
2080
|
-
"""List of user's nautical quote orders."""
|
2081
|
-
nauticalQuoteOrders(
|
2082
|
-
"""Filtering options for orders."""
|
2083
|
-
filter: CustomerNauticalOrderFilterInput
|
2084
|
-
|
2085
|
-
"""Sort orders."""
|
2086
|
-
sortBy: OrderSortingInput
|
2087
|
-
|
2088
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2089
|
-
before: String
|
2090
|
-
|
2091
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2092
|
-
after: String
|
2093
|
-
|
2094
|
-
"""Return the first n elements from the list."""
|
2095
|
-
first: Int
|
2096
|
-
|
2097
|
-
"""Return the last n elements from the list."""
|
2098
|
-
last: Int
|
2099
|
-
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2100
|
-
|
2101
2009
|
"""List of user's permissions."""
|
2102
2010
|
userPermissions: [UserPermission!]!
|
2103
2011
|
|
@@ -2472,7 +2380,7 @@ type CheckoutLine implements Node & ObjectWithMetadata {
|
|
2472
2380
|
seller: Seller
|
2473
2381
|
|
2474
2382
|
"""
|
2475
|
-
The unit price of line which is the discounted price after
|
2383
|
+
The unit price of line which is the discounted price after sale application
|
2476
2384
|
"""
|
2477
2385
|
discountedUnitPrice: TaxedMoney!
|
2478
2386
|
|
@@ -2511,7 +2419,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2511
2419
|
allowBackorders: Boolean
|
2512
2420
|
|
2513
2421
|
"""
|
2514
|
-
indicates whether we allow overriding the unit_price of variants in checkout and draft
|
2422
|
+
indicates whether we allow overriding the unit_price of variants in checkout and draft order lines
|
2515
2423
|
"""
|
2516
2424
|
isPriceOverrideAllowed: Boolean!
|
2517
2425
|
isShippingRequired: Boolean!
|
@@ -2650,7 +2558,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
2650
2558
|
subStatus: ProductSubStatus!
|
2651
2559
|
|
2652
2560
|
"""
|
2653
|
-
indicates whether we allow overriding the unit_price of variants in checkout and draft
|
2561
|
+
indicates whether we allow overriding the unit_price of variants in checkout and draft order lines
|
2654
2562
|
"""
|
2655
2563
|
isPriceOverrideAllowed: Boolean!
|
2656
2564
|
isShippingRequired: Boolean!
|
@@ -3023,14 +2931,12 @@ type MarketplaceConfiguration {
|
|
3023
2931
|
|
3024
2932
|
"""Supported countries for the marketplace"""
|
3025
2933
|
supportedCountries: [String!]!
|
3026
|
-
sellerCanSendQuote: Boolean!
|
3027
2934
|
|
3028
2935
|
"""Determines scope for checking duplicated variant attribute sets"""
|
3029
2936
|
variantUniqueness: VariantUniquenessEnum
|
3030
2937
|
|
3031
2938
|
"""Returns list of default checklists for seller."""
|
3032
2939
|
defaultSellerChecklists: [DefaultSellerChecklist!]!
|
3033
|
-
enableStockAllocationForQuotes: Boolean!
|
3034
2940
|
enableStockAllocationForDrafts: Boolean!
|
3035
2941
|
validateStockOnOrderPaymentCreation: Boolean!
|
3036
2942
|
|
@@ -4085,7 +3991,7 @@ type Order implements Node & ObjectWithMetadata {
|
|
4085
3991
|
"""
|
4086
3992
|
List of sub-statuses that can be changed to based on current state of the order
|
4087
3993
|
"""
|
4088
|
-
allowedSubStatuses: [OrderSubStatusEnum!]
|
3994
|
+
allowedSubStatuses: [OrderSubStatusEnum!] @deprecated(reason: "This will be removed on September 9, 2025.")
|
4089
3995
|
|
4090
3996
|
"""Shipping methods that can be used with this order."""
|
4091
3997
|
availableShippingMethods: [ShippingMethod!]
|
@@ -4178,9 +4084,6 @@ enum OrderOrderSource {
|
|
4178
4084
|
"""draft"""
|
4179
4085
|
DRAFT
|
4180
4086
|
|
4181
|
-
"""quote"""
|
4182
|
-
QUOTE
|
4183
|
-
|
4184
4087
|
"""manual"""
|
4185
4088
|
MANUAL
|
4186
4089
|
|
@@ -4191,7 +4094,6 @@ enum OrderOrderSource {
|
|
4191
4094
|
"""An enumeration."""
|
4192
4095
|
enum OrderStatus {
|
4193
4096
|
DRAFT
|
4194
|
-
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
4195
4097
|
UNFULFILLED
|
4196
4098
|
PARTIALLY_FULFILLED
|
4197
4099
|
FULFILLED
|
@@ -4206,12 +4108,6 @@ enum OrderStatus {
|
|
4206
4108
|
|
4207
4109
|
"""An enumeration."""
|
4208
4110
|
enum OrderSubStatus {
|
4209
|
-
"""In Review"""
|
4210
|
-
IN_REVIEW
|
4211
|
-
|
4212
|
-
"""Quote Requested"""
|
4213
|
-
QUOTE_REQUESTED
|
4214
|
-
|
4215
4111
|
"""Awaiting Payment"""
|
4216
4112
|
AWAITING_PAYMENT
|
4217
4113
|
|
@@ -4783,6 +4679,8 @@ Represents a type of product. It defines what attributes are available to produc
|
|
4783
4679
|
type ProductType implements Node & ObjectWithMetadata {
|
4784
4680
|
"""The ID of the object"""
|
4785
4681
|
id: ID!
|
4682
|
+
description: String!
|
4683
|
+
descriptionHtml: String!
|
4786
4684
|
externalId: String
|
4787
4685
|
|
4788
4686
|
"""External source from which the product type is imported."""
|
@@ -4795,7 +4693,7 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
4795
4693
|
weight: Weight
|
4796
4694
|
|
4797
4695
|
"""
|
4798
|
-
indicates whether we allow overriding the unit_price of variants in checkout and draft
|
4696
|
+
indicates whether we allow overriding the unit_price of variants in checkout and draft order lines
|
4799
4697
|
"""
|
4800
4698
|
isPriceOverrideAllowed: Boolean!
|
4801
4699
|
createdBy: Seller
|
@@ -5822,7 +5720,7 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5822
5720
|
"""
|
5823
5721
|
List of sub-statuses that can be changed to based on current state of the order
|
5824
5722
|
"""
|
5825
|
-
allowedSubStatuses: [OrderSubStatusEnum!]
|
5723
|
+
allowedSubStatuses: [OrderSubStatusEnum!] @deprecated(reason: "This will be removed on September 9, 2025.")
|
5826
5724
|
|
5827
5725
|
"""List"""
|
5828
5726
|
sellerUnfulfilled: [OrderLine!]!
|
@@ -5924,9 +5822,6 @@ enum NauticalOrderOrderSource {
|
|
5924
5822
|
"""draft"""
|
5925
5823
|
DRAFT
|
5926
5824
|
|
5927
|
-
"""quote"""
|
5928
|
-
QUOTE
|
5929
|
-
|
5930
5825
|
"""manual"""
|
5931
5826
|
MANUAL
|
5932
5827
|
|
@@ -5937,7 +5832,6 @@ enum NauticalOrderOrderSource {
|
|
5937
5832
|
"""An enumeration."""
|
5938
5833
|
enum NauticalOrderStatus {
|
5939
5834
|
DRAFT
|
5940
|
-
QUOTE
|
5941
5835
|
UNFULFILLED
|
5942
5836
|
PARTIALLY_FULFILLED
|
5943
5837
|
FULFILLED
|
@@ -5952,12 +5846,6 @@ enum NauticalOrderStatus {
|
|
5952
5846
|
|
5953
5847
|
"""An enumeration."""
|
5954
5848
|
enum NauticalOrderSubStatus {
|
5955
|
-
"""In Review"""
|
5956
|
-
IN_REVIEW
|
5957
|
-
|
5958
|
-
"""Quote Requested"""
|
5959
|
-
QUOTE_REQUESTED
|
5960
|
-
|
5961
5849
|
"""Awaiting Payment"""
|
5962
5850
|
AWAITING_PAYMENT
|
5963
5851
|
|
@@ -5966,12 +5854,6 @@ enum NauticalOrderSubStatus {
|
|
5966
5854
|
}
|
5967
5855
|
|
5968
5856
|
enum OrderSubStatusEnum {
|
5969
|
-
"""In Review"""
|
5970
|
-
IN_REVIEW @deprecated(reason: "This will be removed on June 11, 2025")
|
5971
|
-
|
5972
|
-
"""Quote Requested"""
|
5973
|
-
QUOTE_REQUESTED @deprecated(reason: "This will be removed on June 11, 2025")
|
5974
|
-
|
5975
5857
|
"""Awaiting Payment"""
|
5976
5858
|
AWAITING_PAYMENT
|
5977
5859
|
|
@@ -6720,10 +6602,13 @@ enum OrderEventsEmailsEnum {
|
|
6720
6602
|
MPO_ORDER_NOTIFICATION
|
6721
6603
|
|
6722
6604
|
"""The quote email was sent"""
|
6723
|
-
QUOTE_SENT
|
6605
|
+
QUOTE_SENT @deprecated(reason: "Use PAYMENT_LINK_SENT instead. This value will be deprecated on September 10, 2025")
|
6724
6606
|
|
6725
6607
|
"""The quote request email was sent to the marketplace operator"""
|
6726
|
-
QUOTE_REQUESTED
|
6608
|
+
QUOTE_REQUESTED @deprecated(reason: "Use PAYMENT_LINK_SENT instead. This value will be deprecated on September 10, 2025")
|
6609
|
+
|
6610
|
+
"""The payment link email was sent"""
|
6611
|
+
PAYMENT_LINK_SENT
|
6727
6612
|
}
|
6728
6613
|
|
6729
6614
|
type NauticalOrderEventOrderLineObject {
|
@@ -7904,7 +7789,6 @@ enum OrderStatusFilter {
|
|
7904
7789
|
enum OrderSourceFilter {
|
7905
7790
|
CHECKOUT
|
7906
7791
|
DRAFT
|
7907
|
-
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
7908
7792
|
MANUAL
|
7909
7793
|
EXTERNAL
|
7910
7794
|
}
|
@@ -8634,9 +8518,6 @@ type Shop {
|
|
8634
8518
|
"""Dashboard url for the shop."""
|
8635
8519
|
dashboardUrl: String
|
8636
8520
|
|
8637
|
-
"""Whether the marketplace has enabled quote orders."""
|
8638
|
-
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8639
|
-
|
8640
8521
|
"""Shop's name."""
|
8641
8522
|
name: String!
|
8642
8523
|
|
@@ -9906,36 +9787,6 @@ input NauticalOrderDraftFilterInput {
|
|
9906
9787
|
subStatus: String
|
9907
9788
|
}
|
9908
9789
|
|
9909
|
-
input NauticalOrderQuoteFilterInput {
|
9910
|
-
customer: String
|
9911
|
-
created: DateRangeInput
|
9912
|
-
metadata: MetadataFilterInput
|
9913
|
-
privateMetadata: MetadataFilterInput
|
9914
|
-
ids: [ID]
|
9915
|
-
search: String
|
9916
|
-
isHistorical: Boolean
|
9917
|
-
subStatus: [QuoteOrderSubStatusFilter!]
|
9918
|
-
source: [OrderSourceFilter!]
|
9919
|
-
}
|
9920
|
-
|
9921
|
-
enum QuoteOrderSubStatusFilter {
|
9922
|
-
IN_REVIEW
|
9923
|
-
QUOTE_REQUESTED
|
9924
|
-
AWAITING_PAYMENT
|
9925
|
-
}
|
9926
|
-
|
9927
|
-
input OrderQuoteFilterInput {
|
9928
|
-
customer: String
|
9929
|
-
created: DateRangeInput
|
9930
|
-
metadata: MetadataFilterInput
|
9931
|
-
privateMetadata: MetadataFilterInput
|
9932
|
-
ids: [ID]
|
9933
|
-
search: String
|
9934
|
-
isHistorical: Boolean
|
9935
|
-
subStatus: [QuoteOrderSubStatusFilter!]
|
9936
|
-
source: [OrderSourceFilter!]
|
9937
|
-
}
|
9938
|
-
|
9939
9790
|
enum ReportingPeriod {
|
9940
9791
|
TODAY
|
9941
9792
|
THIS_MONTH
|
@@ -10217,6 +10068,9 @@ enum EmailEventMessageType {
|
|
10217
10068
|
"""Pending Quote"""
|
10218
10069
|
PENDING_QUOTE
|
10219
10070
|
|
10071
|
+
"""Order Payment Link"""
|
10072
|
+
ORDER_PAYMENT_LINK
|
10073
|
+
|
10220
10074
|
"""Merchant Account Set Password"""
|
10221
10075
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
10222
10076
|
|
@@ -10338,7 +10192,10 @@ enum NotifyEventTypeEnum {
|
|
10338
10192
|
ORDER_REFUND_CONFIRMATION
|
10339
10193
|
|
10340
10194
|
"""Pending Quote"""
|
10341
|
-
PENDING_QUOTE
|
10195
|
+
PENDING_QUOTE @deprecated(reason: "Use ORDER_PAYMENT_LINK instead. This will be removed on September 10, 2025")
|
10196
|
+
|
10197
|
+
"""Order Payment Link"""
|
10198
|
+
ORDER_PAYMENT_LINK
|
10342
10199
|
|
10343
10200
|
"""Merchant Account Set Password"""
|
10344
10201
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
@@ -10407,7 +10264,7 @@ enum NotifyEventTypeEnum {
|
|
10407
10264
|
PENDING_CUSTOMER
|
10408
10265
|
|
10409
10266
|
"""Quote Requested"""
|
10410
|
-
QUOTE_REQUESTED
|
10267
|
+
QUOTE_REQUESTED @deprecated(reason: "Use ORDER_PAYMENT_LINK instead. This will be removed on September 10, 2025")
|
10411
10268
|
}
|
10412
10269
|
|
10413
10270
|
input EmailEventSortingInput {
|
@@ -11484,7 +11341,7 @@ type Mutation {
|
|
11484
11341
|
description: String
|
11485
11342
|
|
11486
11343
|
"""
|
11487
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11344
|
+
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-bmp, application/x-rar, image/heic, application/x-csv, image/jpeg, image/jpg, application/gzip-compressed, application/x-acad, application/vnd.ms-word, application/vnd.ms-excel, image/x-ms-bmp, application/vnd.ms-powerpoint, text/csv, application/msword, application/dwg, application/x-tar, application/x-dwg, application/gzip, application/vnd.pdf, text/rtf, pplication/vnd.rar, image/heif-sequence, application/svg+xml, application/x-autocad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/x-csv, application/dxf, application/rtf, text/pdf, application/postscript, image/tiff, application/vnd.oasis.opendocument.spreadsheet, application/x-dxf, application/acrobat, image/tif, image/dxf, application/x-rar-compressed, image/eps, application/x-rtf, application/x-gzip, text/svg-xml, image/vnd.dwg, text/plain, text/x-comma-separated-values, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.presentation, application/acad, application/pdf, application/x-tif, application/eps, drawing/x-dwf, application/zip, application/x-tiff, application/x-eps, application/tiff, image/svg, application/x-zip-compressed, application/jpg, image/x-eps, text/x-pdf, image/x-dwg, image/bmp, application/gzipped, drawing/x-dwg, image/png, application/tif, image/gif, image/x-tif, image/webp, drawing/dwg, image/heif, image/x-dxf, application/x-pdf, text/svg, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/svg+xml, application/csv, image/heic-sequence, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/comma-separated-values, image/x-tiff, application/excel.
|
11488
11345
|
"""
|
11489
11346
|
file: Upload!
|
11490
11347
|
|
@@ -12926,15 +12783,15 @@ type Mutation {
|
|
12926
12783
|
id: ID!
|
12927
12784
|
): NauticalDraftOrderDelete
|
12928
12785
|
|
12929
|
-
"""Deletes draft
|
12786
|
+
"""Deletes draft order."""
|
12930
12787
|
draftOrderBulkDelete(
|
12931
|
-
"""List of draft
|
12788
|
+
"""List of draft order IDs to delete."""
|
12932
12789
|
ids: [ID!]!
|
12933
12790
|
): DraftOrderBulkDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
12934
12791
|
|
12935
|
-
"""Deletes draft
|
12792
|
+
"""Deletes draft orders."""
|
12936
12793
|
nauticalDraftOrderBulkDelete(
|
12937
|
-
"""List of draft
|
12794
|
+
"""List of draft order IDs to delete."""
|
12938
12795
|
ids: [ID!]!
|
12939
12796
|
): NauticalDraftOrderBulkDelete
|
12940
12797
|
|
@@ -13110,12 +12967,6 @@ type Mutation {
|
|
13110
12967
|
id: ID!
|
13111
12968
|
): NauticalOrderCancel
|
13112
12969
|
|
13113
|
-
"""Cancel a nautical quote order."""
|
13114
|
-
nauticalQuoteOrderCancel(
|
13115
|
-
"""ID of the nautical order to cancel."""
|
13116
|
-
id: ID!
|
13117
|
-
): NauticalQuoteOrderCancel
|
13118
|
-
|
13119
12970
|
"""Capture a nautical order."""
|
13120
12971
|
nauticalOrderCapture(
|
13121
12972
|
"""Amount of money to capture."""
|
@@ -13298,7 +13149,7 @@ type Mutation {
|
|
13298
13149
|
): NauticalOrderPaymentCreate
|
13299
13150
|
|
13300
13151
|
"""Sends a quote order to a customer."""
|
13301
|
-
|
13152
|
+
nauticalDraftOrderSendToCustomer(
|
13302
13153
|
"""ID of the nautical order (with Quote status) to send to the customer."""
|
13303
13154
|
id: ID!
|
13304
13155
|
|
@@ -13306,18 +13157,20 @@ type Mutation {
|
|
13306
13157
|
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=...
|
13307
13158
|
"""
|
13308
13159
|
storefrontUrl: String!
|
13309
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on
|
13160
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on September 10, 2025. Use nauticalPaymentLinkSendToCustomer instead.")
|
13310
13161
|
|
13311
|
-
"""Sends a
|
13312
|
-
|
13313
|
-
"""
|
13162
|
+
"""Sends a payment link to a customer."""
|
13163
|
+
nauticalPaymentLinkSendToCustomer(
|
13164
|
+
"""
|
13165
|
+
ID of the nautical order (with Draft or Quote status) to send to the customer.
|
13166
|
+
"""
|
13314
13167
|
id: ID!
|
13315
13168
|
|
13316
13169
|
"""
|
13317
|
-
URL to send customer to for
|
13170
|
+
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=...
|
13318
13171
|
"""
|
13319
13172
|
storefrontUrl: String!
|
13320
|
-
):
|
13173
|
+
): NauticalPaymentLinkSendToCustomer
|
13321
13174
|
|
13322
13175
|
"""Creates a new order fee."""
|
13323
13176
|
orderFeeCreate(
|
@@ -13753,14 +13606,6 @@ type Mutation {
|
|
13753
13606
|
vehicles: Boolean = false
|
13754
13607
|
): CheckoutComplete
|
13755
13608
|
|
13756
|
-
"""
|
13757
|
-
Converts checkout to nautical quote order with the same id as checkout has when checkout is ready to be converted into quote order. This mutation should delete current checkout in case when order is created.
|
13758
|
-
"""
|
13759
|
-
checkoutConvertToNauticalQuoteOrder(
|
13760
|
-
"""Checkout ID."""
|
13761
|
-
checkoutId: ID!
|
13762
|
-
): CheckoutConvertToNauticalQuoteOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
13763
|
-
|
13764
13609
|
"""Create a new checkout."""
|
13765
13610
|
checkoutCreate(
|
13766
13611
|
"""Fields required to create checkout."""
|
@@ -14714,18 +14559,12 @@ input MarketplaceConfigurationInput {
|
|
14714
14559
|
"""Supported countries for the marketplace"""
|
14715
14560
|
supportedCountries: [String!]
|
14716
14561
|
|
14717
|
-
"""True if sellers can send quotes to customers."""
|
14718
|
-
sellerCanSendQuote: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
14719
|
-
|
14720
14562
|
"""Determines scope for checking duplicated variant attribute sets"""
|
14721
14563
|
variantUniqueness: VariantUniquenessEnum = null
|
14722
14564
|
|
14723
14565
|
"""List of all default checklists for seller."""
|
14724
14566
|
defaultSellerChecklists: [DefaultSellerChecklistInput!]
|
14725
14567
|
|
14726
|
-
"""True if quote orders trigger stock allocation."""
|
14727
|
-
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
14728
|
-
|
14729
14568
|
"""True if draft orders trigger stock allocation."""
|
14730
14569
|
enableStockAllocationForDrafts: Boolean
|
14731
14570
|
|
@@ -17389,8 +17228,14 @@ input ProductTypeInput {
|
|
17389
17228
|
"""Product type slug."""
|
17390
17229
|
slug: String
|
17391
17230
|
|
17231
|
+
"""Product type description (plaintext, read-only)."""
|
17232
|
+
description: String
|
17233
|
+
|
17234
|
+
"""Product type description (html)."""
|
17235
|
+
descriptionHtml: String
|
17236
|
+
|
17392
17237
|
"""
|
17393
|
-
Allow variant price to be overridden for products in this product type in the checkout or in
|
17238
|
+
Allow variant price to be overridden for products in this product type in the checkout or in draft orders.
|
17394
17239
|
"""
|
17395
17240
|
isPriceOverrideAllowed: Boolean
|
17396
17241
|
|
@@ -18251,7 +18096,6 @@ enum OrderErrorCode {
|
|
18251
18096
|
PAYMENT_MISSING
|
18252
18097
|
PERMISSION_DENIED
|
18253
18098
|
PAYOUT_STATUS_CHANGE_NOT_ALLOWED
|
18254
|
-
QUOTE_PAYMENT_ERROR
|
18255
18099
|
REQUIRED
|
18256
18100
|
SHIPPING_METHOD_NOT_APPLICABLE
|
18257
18101
|
SHIPPING_METHOD_REQUIRED
|
@@ -18318,7 +18162,7 @@ input DraftOrderCreateInput {
|
|
18318
18162
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18319
18163
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18320
18164
|
"""
|
18321
|
-
subStatus: OrderSubStatusEnum
|
18165
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18322
18166
|
|
18323
18167
|
"""Variant line input consisting of variant ID and quantity of products."""
|
18324
18168
|
lines: [OrderLineCreateInput!]
|
@@ -18343,7 +18187,6 @@ input OrderLineCreateInput {
|
|
18343
18187
|
|
18344
18188
|
enum DraftOrderInitialStatus {
|
18345
18189
|
DRAFT
|
18346
|
-
QUOTE
|
18347
18190
|
}
|
18348
18191
|
|
18349
18192
|
"""Creates a new Nautical draft order."""
|
@@ -18373,7 +18216,7 @@ input NauticalDraftOrderCreateInput {
|
|
18373
18216
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18374
18217
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18375
18218
|
"""
|
18376
|
-
subStatus: OrderSubStatusEnum
|
18219
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18377
18220
|
|
18378
18221
|
"""
|
18379
18222
|
Optional purchase order numbers of documents that outline what the buyer would like to purchase and how much of it they would like to receive
|
@@ -18405,14 +18248,14 @@ type NauticalDraftOrderDelete {
|
|
18405
18248
|
nauticalOrder: NauticalOrder
|
18406
18249
|
}
|
18407
18250
|
|
18408
|
-
"""Deletes draft
|
18251
|
+
"""Deletes draft order."""
|
18409
18252
|
type DraftOrderBulkDelete {
|
18410
18253
|
"""Returns how many objects were affected."""
|
18411
18254
|
count: Int!
|
18412
18255
|
orderErrors: [OrderError!]!
|
18413
18256
|
}
|
18414
18257
|
|
18415
|
-
"""Deletes draft
|
18258
|
+
"""Deletes draft orders."""
|
18416
18259
|
type NauticalDraftOrderBulkDelete {
|
18417
18260
|
"""Returns how many objects were affected."""
|
18418
18261
|
count: Int!
|
@@ -18521,7 +18364,7 @@ input DraftOrderInput {
|
|
18521
18364
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18522
18365
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18523
18366
|
"""
|
18524
|
-
subStatus: OrderSubStatusEnum
|
18367
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18525
18368
|
}
|
18526
18369
|
|
18527
18370
|
"""Updates a draft or quote nautical order."""
|
@@ -18551,7 +18394,7 @@ input NauticalDraftOrderInput {
|
|
18551
18394
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18552
18395
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18553
18396
|
"""
|
18554
|
-
subStatus: OrderSubStatusEnum
|
18397
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18555
18398
|
|
18556
18399
|
"""
|
18557
18400
|
Optional purchase order numbers of documents that outline what the buyer would like to purchase and how much of it they would like to receive
|
@@ -18666,13 +18509,6 @@ type NauticalOrderCancel {
|
|
18666
18509
|
orderErrors: [OrderError!]!
|
18667
18510
|
}
|
18668
18511
|
|
18669
|
-
"""Cancel a nautical quote order."""
|
18670
|
-
type NauticalQuoteOrderCancel {
|
18671
|
-
"""Canceled nautical quote order."""
|
18672
|
-
order: NauticalOrder
|
18673
|
-
orderErrors: [OrderError!]!
|
18674
|
-
}
|
18675
|
-
|
18676
18512
|
"""Capture a nautical order."""
|
18677
18513
|
type NauticalOrderCapture {
|
18678
18514
|
"""Captured Nautical Order."""
|
@@ -19084,6 +18920,13 @@ type NauticalQuoteOrderSendToCustomer {
|
|
19084
18920
|
orderErrors: [OrderError!]!
|
19085
18921
|
}
|
19086
18922
|
|
18923
|
+
"""Sends a payment link to a customer."""
|
18924
|
+
type NauticalPaymentLinkSendToCustomer {
|
18925
|
+
"""Nautical order to send to customer"""
|
18926
|
+
order: NauticalOrder
|
18927
|
+
orderErrors: [OrderError!]!
|
18928
|
+
}
|
18929
|
+
|
19087
18930
|
"""Creates a new order fee."""
|
19088
18931
|
type OrderFeeCreate {
|
19089
18932
|
"""An order fee that was created."""
|
@@ -20070,15 +19913,6 @@ type CheckoutComplete {
|
|
20070
19913
|
checkoutErrors: [CheckoutError!]!
|
20071
19914
|
}
|
20072
19915
|
|
20073
|
-
"""
|
20074
|
-
Converts checkout to nautical quote order with the same id as checkout has when checkout is ready to be converted into quote order. This mutation should delete current checkout in case when order is created.
|
20075
|
-
"""
|
20076
|
-
type CheckoutConvertToNauticalQuoteOrder {
|
20077
|
-
"""Created Nautical Quote Order."""
|
20078
|
-
order: NauticalOrder
|
20079
|
-
checkoutErrors: [CheckoutError!]!
|
20080
|
-
}
|
20081
|
-
|
20082
19916
|
"""Create a new checkout."""
|
20083
19917
|
type CheckoutCreate {
|
20084
19918
|
"""
|
@@ -20408,6 +20242,9 @@ input AttributeUpdateInput {
|
|
20408
20242
|
"""Internal representation of an attribute name."""
|
20409
20243
|
slug: String
|
20410
20244
|
|
20245
|
+
"""Existing values to be updated for this attribute."""
|
20246
|
+
updateValues: [AttributeValueUpdateInput!]
|
20247
|
+
|
20411
20248
|
"""IDs of values to be removed from this attribute."""
|
20412
20249
|
removeValues: [ID!]
|
20413
20250
|
|
@@ -20446,6 +20283,14 @@ input AttributeUpdateInput {
|
|
20446
20283
|
isLocked: Boolean
|
20447
20284
|
}
|
20448
20285
|
|
20286
|
+
input AttributeValueUpdateInput {
|
20287
|
+
"""The ID of the attribute value to update."""
|
20288
|
+
id: ID!
|
20289
|
+
|
20290
|
+
"""Fields to update the attribute value with."""
|
20291
|
+
value: AttributeValueCreateInput!
|
20292
|
+
}
|
20293
|
+
|
20449
20294
|
"""Assign attributes to a given custom field template."""
|
20450
20295
|
type CustomAttributeAssign {
|
20451
20296
|
"""The updated custom field template."""
|