@nautical-commerce/graphql-schema 1.86.0-4-g9c7cec4d0 → 1.86.0-41-g92920d189
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 -227
- 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
|
@@ -5053,7 +4951,6 @@ enum PermissionEnum {
|
|
5053
4951
|
MANAGE_DOCUMENTS
|
5054
4952
|
MANAGE_EMAILS
|
5055
4953
|
MANAGE_PLUGINS
|
5056
|
-
MANAGE_PRICEBOOKS
|
5057
4954
|
MANAGE_STOREFRONTS
|
5058
4955
|
MANAGE_MENUS
|
5059
4956
|
MANAGE_ORDERS
|
@@ -5202,8 +5099,6 @@ enum WebhookEventTypeEnum {
|
|
5202
5099
|
PAYOUT_CREATED
|
5203
5100
|
PAYOUT_UPDATED
|
5204
5101
|
PAYOUT_DELETED
|
5205
|
-
PRICE_BOOK_CREATED
|
5206
|
-
PRICE_BOOK_UPDATED
|
5207
5102
|
PRODUCT_CREATED
|
5208
5103
|
PRODUCT_DELETED
|
5209
5104
|
PRODUCT_UPDATED
|
@@ -5825,7 +5720,7 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5825
5720
|
"""
|
5826
5721
|
List of sub-statuses that can be changed to based on current state of the order
|
5827
5722
|
"""
|
5828
|
-
allowedSubStatuses: [OrderSubStatusEnum!]
|
5723
|
+
allowedSubStatuses: [OrderSubStatusEnum!] @deprecated(reason: "This will be removed on September 9, 2025.")
|
5829
5724
|
|
5830
5725
|
"""List"""
|
5831
5726
|
sellerUnfulfilled: [OrderLine!]!
|
@@ -5927,9 +5822,6 @@ enum NauticalOrderOrderSource {
|
|
5927
5822
|
"""draft"""
|
5928
5823
|
DRAFT
|
5929
5824
|
|
5930
|
-
"""quote"""
|
5931
|
-
QUOTE
|
5932
|
-
|
5933
5825
|
"""manual"""
|
5934
5826
|
MANUAL
|
5935
5827
|
|
@@ -5940,7 +5832,6 @@ enum NauticalOrderOrderSource {
|
|
5940
5832
|
"""An enumeration."""
|
5941
5833
|
enum NauticalOrderStatus {
|
5942
5834
|
DRAFT
|
5943
|
-
QUOTE
|
5944
5835
|
UNFULFILLED
|
5945
5836
|
PARTIALLY_FULFILLED
|
5946
5837
|
FULFILLED
|
@@ -5955,12 +5846,6 @@ enum NauticalOrderStatus {
|
|
5955
5846
|
|
5956
5847
|
"""An enumeration."""
|
5957
5848
|
enum NauticalOrderSubStatus {
|
5958
|
-
"""In Review"""
|
5959
|
-
IN_REVIEW
|
5960
|
-
|
5961
|
-
"""Quote Requested"""
|
5962
|
-
QUOTE_REQUESTED
|
5963
|
-
|
5964
5849
|
"""Awaiting Payment"""
|
5965
5850
|
AWAITING_PAYMENT
|
5966
5851
|
|
@@ -5969,12 +5854,6 @@ enum NauticalOrderSubStatus {
|
|
5969
5854
|
}
|
5970
5855
|
|
5971
5856
|
enum OrderSubStatusEnum {
|
5972
|
-
"""In Review"""
|
5973
|
-
IN_REVIEW @deprecated(reason: "This will be removed on June 11, 2025")
|
5974
|
-
|
5975
|
-
"""Quote Requested"""
|
5976
|
-
QUOTE_REQUESTED @deprecated(reason: "This will be removed on June 11, 2025")
|
5977
|
-
|
5978
5857
|
"""Awaiting Payment"""
|
5979
5858
|
AWAITING_PAYMENT
|
5980
5859
|
|
@@ -6723,10 +6602,13 @@ enum OrderEventsEmailsEnum {
|
|
6723
6602
|
MPO_ORDER_NOTIFICATION
|
6724
6603
|
|
6725
6604
|
"""The quote email was sent"""
|
6726
|
-
QUOTE_SENT
|
6605
|
+
QUOTE_SENT @deprecated(reason: "Use PAYMENT_LINK_SENT instead. This value will be deprecated on September 10, 2025")
|
6727
6606
|
|
6728
6607
|
"""The quote request email was sent to the marketplace operator"""
|
6729
|
-
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
|
6730
6612
|
}
|
6731
6613
|
|
6732
6614
|
type NauticalOrderEventOrderLineObject {
|
@@ -7907,7 +7789,6 @@ enum OrderStatusFilter {
|
|
7907
7789
|
enum OrderSourceFilter {
|
7908
7790
|
CHECKOUT
|
7909
7791
|
DRAFT
|
7910
|
-
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
7911
7792
|
MANUAL
|
7912
7793
|
EXTERNAL
|
7913
7794
|
}
|
@@ -8637,9 +8518,6 @@ type Shop {
|
|
8637
8518
|
"""Dashboard url for the shop."""
|
8638
8519
|
dashboardUrl: String
|
8639
8520
|
|
8640
|
-
"""Whether the marketplace has enabled quote orders."""
|
8641
|
-
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8642
|
-
|
8643
8521
|
"""Shop's name."""
|
8644
8522
|
name: String!
|
8645
8523
|
|
@@ -9909,36 +9787,6 @@ input NauticalOrderDraftFilterInput {
|
|
9909
9787
|
subStatus: String
|
9910
9788
|
}
|
9911
9789
|
|
9912
|
-
input NauticalOrderQuoteFilterInput {
|
9913
|
-
customer: String
|
9914
|
-
created: DateRangeInput
|
9915
|
-
metadata: MetadataFilterInput
|
9916
|
-
privateMetadata: MetadataFilterInput
|
9917
|
-
ids: [ID]
|
9918
|
-
search: String
|
9919
|
-
isHistorical: Boolean
|
9920
|
-
subStatus: [QuoteOrderSubStatusFilter!]
|
9921
|
-
source: [OrderSourceFilter!]
|
9922
|
-
}
|
9923
|
-
|
9924
|
-
enum QuoteOrderSubStatusFilter {
|
9925
|
-
IN_REVIEW
|
9926
|
-
QUOTE_REQUESTED
|
9927
|
-
AWAITING_PAYMENT
|
9928
|
-
}
|
9929
|
-
|
9930
|
-
input OrderQuoteFilterInput {
|
9931
|
-
customer: String
|
9932
|
-
created: DateRangeInput
|
9933
|
-
metadata: MetadataFilterInput
|
9934
|
-
privateMetadata: MetadataFilterInput
|
9935
|
-
ids: [ID]
|
9936
|
-
search: String
|
9937
|
-
isHistorical: Boolean
|
9938
|
-
subStatus: [QuoteOrderSubStatusFilter!]
|
9939
|
-
source: [OrderSourceFilter!]
|
9940
|
-
}
|
9941
|
-
|
9942
9790
|
enum ReportingPeriod {
|
9943
9791
|
TODAY
|
9944
9792
|
THIS_MONTH
|
@@ -10220,6 +10068,9 @@ enum EmailEventMessageType {
|
|
10220
10068
|
"""Pending Quote"""
|
10221
10069
|
PENDING_QUOTE
|
10222
10070
|
|
10071
|
+
"""Order Payment Link"""
|
10072
|
+
ORDER_PAYMENT_LINK
|
10073
|
+
|
10223
10074
|
"""Merchant Account Set Password"""
|
10224
10075
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
10225
10076
|
|
@@ -10341,7 +10192,10 @@ enum NotifyEventTypeEnum {
|
|
10341
10192
|
ORDER_REFUND_CONFIRMATION
|
10342
10193
|
|
10343
10194
|
"""Pending Quote"""
|
10344
|
-
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
|
10345
10199
|
|
10346
10200
|
"""Merchant Account Set Password"""
|
10347
10201
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
@@ -10410,7 +10264,7 @@ enum NotifyEventTypeEnum {
|
|
10410
10264
|
PENDING_CUSTOMER
|
10411
10265
|
|
10412
10266
|
"""Quote Requested"""
|
10413
|
-
QUOTE_REQUESTED
|
10267
|
+
QUOTE_REQUESTED @deprecated(reason: "Use ORDER_PAYMENT_LINK instead. This will be removed on September 10, 2025")
|
10414
10268
|
}
|
10415
10269
|
|
10416
10270
|
input EmailEventSortingInput {
|
@@ -11487,7 +11341,7 @@ type Mutation {
|
|
11487
11341
|
description: String
|
11488
11342
|
|
11489
11343
|
"""
|
11490
|
-
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: drawing/x-dwg, application/x-acad, application/gzipped, application/vnd.ms-powerpoint, image/tif, application/x-tiff, text/x-pdf, image/jpeg, text/csv, application/x-rar-compressed, application/vnd.pdf, application/x-dxf, image/bmp, text/svg, application/zip, application/acrobat, drawing/dwg, text/x-csv, image/svg, application/vnd.oasis.opendocument.spreadsheet, application/vnd.oasis.opendocument.presentation, application/x-csv, image/jpg, application/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/jpg, application/vnd.ms-excel, image/heic-sequence, image/x-tiff, application/dwg, image/x-eps, text/comma-separated-values, application/x-jpg, application/rtf, image/x-ms-bmp, application/x-rar, application/tiff, image/heic, image/x-tif, image/svg+xml, application/msword, image/webp, application/x-tif, image/tiff, application/csv, image/eps, text/rtf, drawing/x-dwf, text/x-comma-separated-values, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf, pplication/vnd.rar, application/tif, text/svg-xml, application/x-tar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/plain, image/x-bmp, image/vnd.dwg, application/svg+xml, application/excel, application/pdf, application/acad, application/x-pdf, application/x-zip-compressed, application/x-rtf, application/x-dwg, application/gzip, image/gif, application/x-autocad, image/heif-sequence, application/gzip-compressed, application/vnd.ms-word, application/vnd.oasis.opendocument.text, application/dxf, text/pdf, image/dxf, application/eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-gzip, image/png, image/heif, application/postscript.
|
11491
11345
|
"""
|
11492
11346
|
file: Upload!
|
11493
11347
|
|
@@ -12929,15 +12783,15 @@ type Mutation {
|
|
12929
12783
|
id: ID!
|
12930
12784
|
): NauticalDraftOrderDelete
|
12931
12785
|
|
12932
|
-
"""Deletes draft
|
12786
|
+
"""Deletes draft order."""
|
12933
12787
|
draftOrderBulkDelete(
|
12934
|
-
"""List of draft
|
12788
|
+
"""List of draft order IDs to delete."""
|
12935
12789
|
ids: [ID!]!
|
12936
12790
|
): DraftOrderBulkDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
12937
12791
|
|
12938
|
-
"""Deletes draft
|
12792
|
+
"""Deletes draft orders."""
|
12939
12793
|
nauticalDraftOrderBulkDelete(
|
12940
|
-
"""List of draft
|
12794
|
+
"""List of draft order IDs to delete."""
|
12941
12795
|
ids: [ID!]!
|
12942
12796
|
): NauticalDraftOrderBulkDelete
|
12943
12797
|
|
@@ -13113,12 +12967,6 @@ type Mutation {
|
|
13113
12967
|
id: ID!
|
13114
12968
|
): NauticalOrderCancel
|
13115
12969
|
|
13116
|
-
"""Cancel a nautical quote order."""
|
13117
|
-
nauticalQuoteOrderCancel(
|
13118
|
-
"""ID of the nautical order to cancel."""
|
13119
|
-
id: ID!
|
13120
|
-
): NauticalQuoteOrderCancel
|
13121
|
-
|
13122
12970
|
"""Capture a nautical order."""
|
13123
12971
|
nauticalOrderCapture(
|
13124
12972
|
"""Amount of money to capture."""
|
@@ -13301,7 +13149,7 @@ type Mutation {
|
|
13301
13149
|
): NauticalOrderPaymentCreate
|
13302
13150
|
|
13303
13151
|
"""Sends a quote order to a customer."""
|
13304
|
-
|
13152
|
+
nauticalDraftOrderSendToCustomer(
|
13305
13153
|
"""ID of the nautical order (with Quote status) to send to the customer."""
|
13306
13154
|
id: ID!
|
13307
13155
|
|
@@ -13309,18 +13157,20 @@ type Mutation {
|
|
13309
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=...
|
13310
13158
|
"""
|
13311
13159
|
storefrontUrl: String!
|
13312
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on
|
13160
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on September 10, 2025. Use nauticalPaymentLinkSendToCustomer instead.")
|
13313
13161
|
|
13314
|
-
"""Sends a
|
13315
|
-
|
13316
|
-
"""
|
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
|
+
"""
|
13317
13167
|
id: ID!
|
13318
13168
|
|
13319
13169
|
"""
|
13320
|
-
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=...
|
13321
13171
|
"""
|
13322
13172
|
storefrontUrl: String!
|
13323
|
-
):
|
13173
|
+
): NauticalPaymentLinkSendToCustomer
|
13324
13174
|
|
13325
13175
|
"""Creates a new order fee."""
|
13326
13176
|
orderFeeCreate(
|
@@ -13756,14 +13606,6 @@ type Mutation {
|
|
13756
13606
|
vehicles: Boolean = false
|
13757
13607
|
): CheckoutComplete
|
13758
13608
|
|
13759
|
-
"""
|
13760
|
-
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.
|
13761
|
-
"""
|
13762
|
-
checkoutConvertToNauticalQuoteOrder(
|
13763
|
-
"""Checkout ID."""
|
13764
|
-
checkoutId: ID!
|
13765
|
-
): CheckoutConvertToNauticalQuoteOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
13766
|
-
|
13767
13609
|
"""Create a new checkout."""
|
13768
13610
|
checkoutCreate(
|
13769
13611
|
"""Fields required to create checkout."""
|
@@ -14717,18 +14559,12 @@ input MarketplaceConfigurationInput {
|
|
14717
14559
|
"""Supported countries for the marketplace"""
|
14718
14560
|
supportedCountries: [String!]
|
14719
14561
|
|
14720
|
-
"""True if sellers can send quotes to customers."""
|
14721
|
-
sellerCanSendQuote: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
14722
|
-
|
14723
14562
|
"""Determines scope for checking duplicated variant attribute sets"""
|
14724
14563
|
variantUniqueness: VariantUniquenessEnum = null
|
14725
14564
|
|
14726
14565
|
"""List of all default checklists for seller."""
|
14727
14566
|
defaultSellerChecklists: [DefaultSellerChecklistInput!]
|
14728
14567
|
|
14729
|
-
"""True if quote orders trigger stock allocation."""
|
14730
|
-
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
14731
|
-
|
14732
14568
|
"""True if draft orders trigger stock allocation."""
|
14733
14569
|
enableStockAllocationForDrafts: Boolean
|
14734
14570
|
|
@@ -17392,8 +17228,14 @@ input ProductTypeInput {
|
|
17392
17228
|
"""Product type slug."""
|
17393
17229
|
slug: String
|
17394
17230
|
|
17231
|
+
"""Product type description (plaintext, read-only)."""
|
17232
|
+
description: String
|
17233
|
+
|
17234
|
+
"""Product type description (html)."""
|
17235
|
+
descriptionHtml: String
|
17236
|
+
|
17395
17237
|
"""
|
17396
|
-
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.
|
17397
17239
|
"""
|
17398
17240
|
isPriceOverrideAllowed: Boolean
|
17399
17241
|
|
@@ -18254,7 +18096,6 @@ enum OrderErrorCode {
|
|
18254
18096
|
PAYMENT_MISSING
|
18255
18097
|
PERMISSION_DENIED
|
18256
18098
|
PAYOUT_STATUS_CHANGE_NOT_ALLOWED
|
18257
|
-
QUOTE_PAYMENT_ERROR
|
18258
18099
|
REQUIRED
|
18259
18100
|
SHIPPING_METHOD_NOT_APPLICABLE
|
18260
18101
|
SHIPPING_METHOD_REQUIRED
|
@@ -18321,7 +18162,7 @@ input DraftOrderCreateInput {
|
|
18321
18162
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18322
18163
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18323
18164
|
"""
|
18324
|
-
subStatus: OrderSubStatusEnum
|
18165
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18325
18166
|
|
18326
18167
|
"""Variant line input consisting of variant ID and quantity of products."""
|
18327
18168
|
lines: [OrderLineCreateInput!]
|
@@ -18346,7 +18187,6 @@ input OrderLineCreateInput {
|
|
18346
18187
|
|
18347
18188
|
enum DraftOrderInitialStatus {
|
18348
18189
|
DRAFT
|
18349
|
-
QUOTE
|
18350
18190
|
}
|
18351
18191
|
|
18352
18192
|
"""Creates a new Nautical draft order."""
|
@@ -18376,7 +18216,7 @@ input NauticalDraftOrderCreateInput {
|
|
18376
18216
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18377
18217
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18378
18218
|
"""
|
18379
|
-
subStatus: OrderSubStatusEnum
|
18219
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18380
18220
|
|
18381
18221
|
"""
|
18382
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
|
@@ -18408,14 +18248,14 @@ type NauticalDraftOrderDelete {
|
|
18408
18248
|
nauticalOrder: NauticalOrder
|
18409
18249
|
}
|
18410
18250
|
|
18411
|
-
"""Deletes draft
|
18251
|
+
"""Deletes draft order."""
|
18412
18252
|
type DraftOrderBulkDelete {
|
18413
18253
|
"""Returns how many objects were affected."""
|
18414
18254
|
count: Int!
|
18415
18255
|
orderErrors: [OrderError!]!
|
18416
18256
|
}
|
18417
18257
|
|
18418
|
-
"""Deletes draft
|
18258
|
+
"""Deletes draft orders."""
|
18419
18259
|
type NauticalDraftOrderBulkDelete {
|
18420
18260
|
"""Returns how many objects were affected."""
|
18421
18261
|
count: Int!
|
@@ -18524,7 +18364,7 @@ input DraftOrderInput {
|
|
18524
18364
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18525
18365
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18526
18366
|
"""
|
18527
|
-
subStatus: OrderSubStatusEnum
|
18367
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18528
18368
|
}
|
18529
18369
|
|
18530
18370
|
"""Updates a draft or quote nautical order."""
|
@@ -18554,7 +18394,7 @@ input NauticalDraftOrderInput {
|
|
18554
18394
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
18555
18395
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
18556
18396
|
"""
|
18557
|
-
subStatus: OrderSubStatusEnum
|
18397
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
18558
18398
|
|
18559
18399
|
"""
|
18560
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
|
@@ -18669,13 +18509,6 @@ type NauticalOrderCancel {
|
|
18669
18509
|
orderErrors: [OrderError!]!
|
18670
18510
|
}
|
18671
18511
|
|
18672
|
-
"""Cancel a nautical quote order."""
|
18673
|
-
type NauticalQuoteOrderCancel {
|
18674
|
-
"""Canceled nautical quote order."""
|
18675
|
-
order: NauticalOrder
|
18676
|
-
orderErrors: [OrderError!]!
|
18677
|
-
}
|
18678
|
-
|
18679
18512
|
"""Capture a nautical order."""
|
18680
18513
|
type NauticalOrderCapture {
|
18681
18514
|
"""Captured Nautical Order."""
|
@@ -19087,6 +18920,13 @@ type NauticalQuoteOrderSendToCustomer {
|
|
19087
18920
|
orderErrors: [OrderError!]!
|
19088
18921
|
}
|
19089
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
|
+
|
19090
18930
|
"""Creates a new order fee."""
|
19091
18931
|
type OrderFeeCreate {
|
19092
18932
|
"""An order fee that was created."""
|
@@ -20073,15 +19913,6 @@ type CheckoutComplete {
|
|
20073
19913
|
checkoutErrors: [CheckoutError!]!
|
20074
19914
|
}
|
20075
19915
|
|
20076
|
-
"""
|
20077
|
-
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.
|
20078
|
-
"""
|
20079
|
-
type CheckoutConvertToNauticalQuoteOrder {
|
20080
|
-
"""Created Nautical Quote Order."""
|
20081
|
-
order: NauticalOrder
|
20082
|
-
checkoutErrors: [CheckoutError!]!
|
20083
|
-
}
|
20084
|
-
|
20085
19916
|
"""Create a new checkout."""
|
20086
19917
|
type CheckoutCreate {
|
20087
19918
|
"""
|
@@ -20411,6 +20242,9 @@ input AttributeUpdateInput {
|
|
20411
20242
|
"""Internal representation of an attribute name."""
|
20412
20243
|
slug: String
|
20413
20244
|
|
20245
|
+
"""Existing values to be updated for this attribute."""
|
20246
|
+
updateValues: [AttributeValueUpdateInput!]
|
20247
|
+
|
20414
20248
|
"""IDs of values to be removed from this attribute."""
|
20415
20249
|
removeValues: [ID!]
|
20416
20250
|
|
@@ -20449,6 +20283,14 @@ input AttributeUpdateInput {
|
|
20449
20283
|
isLocked: Boolean
|
20450
20284
|
}
|
20451
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
|
+
|
20452
20294
|
"""Assign attributes to a given custom field template."""
|
20453
20295
|
type CustomAttributeAssign {
|
20454
20296
|
"""The updated custom field template."""
|