@nautical-commerce/graphql-schema 1.61.0-1-gda19ec096 → 1.61.0-10-g8e55537dc
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +17 -355
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2202,11 +2202,9 @@ enum EventTypeEnum {
|
|
2202
2202
|
order_fulfillment_confirmation
|
2203
2203
|
order_fulfillment_denied
|
2204
2204
|
order_fulfillment_update
|
2205
|
-
order_payment_confirmation
|
2206
2205
|
order_canceled
|
2207
2206
|
partial_order_cancel
|
2208
2207
|
order_refund_confirmation
|
2209
|
-
seller_bid_action
|
2210
2208
|
pending_quote
|
2211
2209
|
account_set_staff_password
|
2212
2210
|
csv_export_products_success
|
@@ -2222,8 +2220,6 @@ enum EventTypeEnum {
|
|
2222
2220
|
seller_status_paused
|
2223
2221
|
seller_agreement_accepted
|
2224
2222
|
seller_agreement_not_accepted
|
2225
|
-
vin_decode_success
|
2226
|
-
vin_decode_failed
|
2227
2223
|
import_catalog_failed
|
2228
2224
|
import_catalog_success
|
2229
2225
|
account_activate_request
|
@@ -2231,7 +2227,6 @@ enum EventTypeEnum {
|
|
2231
2227
|
account_deactivated
|
2232
2228
|
pending_order
|
2233
2229
|
pending_customer
|
2234
|
-
buyer_bid_action
|
2235
2230
|
quote_requested
|
2236
2231
|
}
|
2237
2232
|
|
@@ -2434,27 +2429,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2434
2429
|
"""Return the last n elements from the list."""
|
2435
2430
|
last: Int
|
2436
2431
|
): OrderCountableConnection
|
2437
|
-
|
2438
|
-
"""List of user's offer seller orders."""
|
2439
|
-
offerOrders(
|
2440
|
-
"""Filtering options for orders."""
|
2441
|
-
filter: CustomerOrderFilterInput
|
2442
|
-
|
2443
|
-
"""Sort orders."""
|
2444
|
-
sortBy: OrderSortingInput
|
2445
|
-
|
2446
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2447
|
-
before: String
|
2448
|
-
|
2449
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2450
|
-
after: String
|
2451
|
-
|
2452
|
-
"""Return the first n elements from the list."""
|
2453
|
-
first: Int
|
2454
|
-
|
2455
|
-
"""Return the last n elements from the list."""
|
2456
|
-
last: Int
|
2457
|
-
): OrderCountableConnection @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
2458
2432
|
numOrders: Int
|
2459
2433
|
|
2460
2434
|
"""List of user's nautical orders."""
|
@@ -2499,27 +2473,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2499
2473
|
last: Int
|
2500
2474
|
): NauticalOrderCountableConnection
|
2501
2475
|
|
2502
|
-
"""List of user's nautical offer orders."""
|
2503
|
-
nauticalOfferOrders(
|
2504
|
-
"""Filtering options for orders."""
|
2505
|
-
filter: CustomerNauticalOrderFilterInput
|
2506
|
-
|
2507
|
-
"""Sort orders."""
|
2508
|
-
sortBy: OrderSortingInput
|
2509
|
-
|
2510
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2511
|
-
before: String
|
2512
|
-
|
2513
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2514
|
-
after: String
|
2515
|
-
|
2516
|
-
"""Return the first n elements from the list."""
|
2517
|
-
first: Int
|
2518
|
-
|
2519
|
-
"""Return the last n elements from the list."""
|
2520
|
-
last: Int
|
2521
|
-
): NauticalOrderCountableConnection @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
2522
|
-
|
2523
2476
|
"""List of user's permissions."""
|
2524
2477
|
userPermissions: [UserPermission!]!
|
2525
2478
|
|
@@ -2932,7 +2885,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2932
2885
|
allowBackorders: Boolean
|
2933
2886
|
|
2934
2887
|
"""
|
2935
|
-
indicates whether we allow overriding the unit_price of variants in checkout and draft, quote
|
2888
|
+
indicates whether we allow overriding the unit_price of variants in checkout and draft, quote order lines
|
2936
2889
|
"""
|
2937
2890
|
isPriceOverrideAllowed: Boolean!
|
2938
2891
|
isShippingRequired: Boolean!
|
@@ -3088,7 +3041,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
3088
3041
|
subStatus: ProductSubStatus!
|
3089
3042
|
|
3090
3043
|
"""
|
3091
|
-
indicates whether we allow overriding the unit_price of variants in checkout and draft, quote
|
3044
|
+
indicates whether we allow overriding the unit_price of variants in checkout and draft, quote order lines
|
3092
3045
|
"""
|
3093
3046
|
isPriceOverrideAllowed: Boolean!
|
3094
3047
|
isShippingRequired: Boolean!
|
@@ -3908,12 +3861,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3908
3861
|
"""Validation status for the order"""
|
3909
3862
|
validationStatus: [ValidationStatus!]
|
3910
3863
|
|
3911
|
-
"""Latest bid made against the order."""
|
3912
|
-
currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
3913
|
-
|
3914
|
-
"""List of all bids made against the order."""
|
3915
|
-
bids: [Bid!] @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
3916
|
-
|
3917
3864
|
"""
|
3918
3865
|
Determines if seller is the only seller on the related nautical order. Note: if nautical order doesn't exist - will return None.
|
3919
3866
|
"""
|
@@ -3940,9 +3887,6 @@ enum OrderOrderSource {
|
|
3940
3887
|
"""quote"""
|
3941
3888
|
QUOTE
|
3942
3889
|
|
3943
|
-
"""offer"""
|
3944
|
-
OFFER
|
3945
|
-
|
3946
3890
|
"""manual"""
|
3947
3891
|
MANUAL
|
3948
3892
|
|
@@ -3954,7 +3898,6 @@ enum OrderOrderSource {
|
|
3954
3898
|
enum OrderStatus {
|
3955
3899
|
DRAFT
|
3956
3900
|
QUOTE
|
3957
|
-
OFFER
|
3958
3901
|
UNFULFILLED
|
3959
3902
|
PARTIALLY_FULFILLED
|
3960
3903
|
FULFILLED
|
@@ -3980,24 +3923,6 @@ enum OrderSubStatus {
|
|
3980
3923
|
|
3981
3924
|
"""Complete"""
|
3982
3925
|
COMPLETE
|
3983
|
-
|
3984
|
-
"""Offer Approved"""
|
3985
|
-
OFFER_APPROVED
|
3986
|
-
|
3987
|
-
"""Offer Cancelled"""
|
3988
|
-
OFFER_CANCELLED
|
3989
|
-
|
3990
|
-
"""Offer Created"""
|
3991
|
-
OFFER_CREATED
|
3992
|
-
|
3993
|
-
"""Offer Expired"""
|
3994
|
-
OFFER_EXPIRED
|
3995
|
-
|
3996
|
-
"""Offer Negotiating"""
|
3997
|
-
OFFER_NEGOTIATING
|
3998
|
-
|
3999
|
-
"""Offer Rejected"""
|
4000
|
-
OFFER_REJECTED
|
4001
3926
|
}
|
4002
3927
|
|
4003
3928
|
"""
|
@@ -4619,7 +4544,7 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
4619
4544
|
weight: Weight
|
4620
4545
|
|
4621
4546
|
"""
|
4622
|
-
indicates whether we allow overriding the unit_price of variants in checkout and draft, quote
|
4547
|
+
indicates whether we allow overriding the unit_price of variants in checkout and draft, quote order lines
|
4623
4548
|
"""
|
4624
4549
|
isPriceOverrideAllowed: Boolean!
|
4625
4550
|
createdBy: Seller
|
@@ -5705,12 +5630,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5705
5630
|
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
5706
5631
|
shippingMethodName: String!
|
5707
5632
|
|
5708
|
-
"""Latest bid made against the order."""
|
5709
|
-
currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
5710
|
-
|
5711
|
-
"""List of all bids made against the order."""
|
5712
|
-
bids: [Bid!] @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
5713
|
-
|
5714
5633
|
"""List of all the vendor orders connected to this marketplace order."""
|
5715
5634
|
subOrders: [Order!]
|
5716
5635
|
|
@@ -5738,9 +5657,6 @@ enum NauticalOrderOrderSource {
|
|
5738
5657
|
"""quote"""
|
5739
5658
|
QUOTE
|
5740
5659
|
|
5741
|
-
"""offer"""
|
5742
|
-
OFFER
|
5743
|
-
|
5744
5660
|
"""manual"""
|
5745
5661
|
MANUAL
|
5746
5662
|
|
@@ -5752,7 +5668,6 @@ enum NauticalOrderOrderSource {
|
|
5752
5668
|
enum NauticalOrderStatus {
|
5753
5669
|
DRAFT
|
5754
5670
|
QUOTE
|
5755
|
-
OFFER
|
5756
5671
|
UNFULFILLED
|
5757
5672
|
PARTIALLY_FULFILLED
|
5758
5673
|
FULFILLED
|
@@ -5778,24 +5693,6 @@ enum NauticalOrderSubStatus {
|
|
5778
5693
|
|
5779
5694
|
"""Complete"""
|
5780
5695
|
COMPLETE
|
5781
|
-
|
5782
|
-
"""Offer Approved"""
|
5783
|
-
OFFER_APPROVED
|
5784
|
-
|
5785
|
-
"""Offer Cancelled"""
|
5786
|
-
OFFER_CANCELLED
|
5787
|
-
|
5788
|
-
"""Offer Created"""
|
5789
|
-
OFFER_CREATED
|
5790
|
-
|
5791
|
-
"""Offer Expired"""
|
5792
|
-
OFFER_EXPIRED
|
5793
|
-
|
5794
|
-
"""Offer Negotiating"""
|
5795
|
-
OFFER_NEGOTIATING
|
5796
|
-
|
5797
|
-
"""Offer Rejected"""
|
5798
|
-
OFFER_REJECTED
|
5799
5696
|
}
|
5800
5697
|
|
5801
5698
|
enum OrderSubStatusEnum {
|
@@ -5810,24 +5707,6 @@ enum OrderSubStatusEnum {
|
|
5810
5707
|
|
5811
5708
|
"""Complete"""
|
5812
5709
|
COMPLETE
|
5813
|
-
|
5814
|
-
"""Offer Approved"""
|
5815
|
-
OFFER_APPROVED
|
5816
|
-
|
5817
|
-
"""Offer Cancelled"""
|
5818
|
-
OFFER_CANCELLED
|
5819
|
-
|
5820
|
-
"""Offer Created"""
|
5821
|
-
OFFER_CREATED
|
5822
|
-
|
5823
|
-
"""Offer Expired"""
|
5824
|
-
OFFER_EXPIRED
|
5825
|
-
|
5826
|
-
"""Offer Negotiating"""
|
5827
|
-
OFFER_NEGOTIATING
|
5828
|
-
|
5829
|
-
"""Offer Rejected"""
|
5830
|
-
OFFER_REJECTED
|
5831
5710
|
}
|
5832
5711
|
|
5833
5712
|
"""Represents order line of particular order."""
|
@@ -6711,12 +6590,6 @@ enum OrderEventsEmailsEnum {
|
|
6711
6590
|
|
6712
6591
|
"""The quote request email was sent to the marketplace operator"""
|
6713
6592
|
QUOTE_REQUESTED
|
6714
|
-
|
6715
|
-
"""A bid action performed by the seller triggered email to be sent"""
|
6716
|
-
SELLER_BID_ACTION
|
6717
|
-
|
6718
|
-
"""A bid action performed by the buyer triggered email to be sent"""
|
6719
|
-
BUYER_BID_ACTION
|
6720
6593
|
}
|
6721
6594
|
|
6722
6595
|
type NauticalOrderEventOrderLineObject {
|
@@ -6730,47 +6603,6 @@ type NauticalOrderEventOrderLineObject {
|
|
6730
6603
|
itemName: String
|
6731
6604
|
}
|
6732
6605
|
|
6733
|
-
"""Represents a bid."""
|
6734
|
-
type Bid implements Node {
|
6735
|
-
"""The ID of the object"""
|
6736
|
-
id: ID!
|
6737
|
-
privateMetadata: JSONString!
|
6738
|
-
metadata: JSONString!
|
6739
|
-
tenant: Tenant!
|
6740
|
-
createdAt: DateTime!
|
6741
|
-
updatedAt: DateTime!
|
6742
|
-
status: BidStatus!
|
6743
|
-
user: User
|
6744
|
-
role: BidRole!
|
6745
|
-
order: Order
|
6746
|
-
nauticalOrder: NauticalOrder
|
6747
|
-
bidAmount: Decimal!
|
6748
|
-
currency: String!
|
6749
|
-
amount: Money
|
6750
|
-
message: String
|
6751
|
-
}
|
6752
|
-
|
6753
|
-
"""An enumeration."""
|
6754
|
-
enum BidStatus {
|
6755
|
-
"""Submitted"""
|
6756
|
-
SUBMITTED
|
6757
|
-
|
6758
|
-
"""Accepted"""
|
6759
|
-
ACCEPTED
|
6760
|
-
|
6761
|
-
"""Rejected"""
|
6762
|
-
REJECTED
|
6763
|
-
}
|
6764
|
-
|
6765
|
-
"""An enumeration."""
|
6766
|
-
enum BidRole {
|
6767
|
-
"""Seller"""
|
6768
|
-
SELLER
|
6769
|
-
|
6770
|
-
"""Buyer"""
|
6771
|
-
BUYER
|
6772
|
-
}
|
6773
|
-
|
6774
6606
|
"""
|
6775
6607
|
Represents a refund scoped to an nautical order, a seller order, or a seller order line
|
6776
6608
|
"""
|
@@ -8127,7 +7959,6 @@ enum OrderSourceFilter {
|
|
8127
7959
|
CHECKOUT
|
8128
7960
|
DRAFT
|
8129
7961
|
QUOTE
|
8130
|
-
OFFER
|
8131
7962
|
MANUAL
|
8132
7963
|
EXTERNAL
|
8133
7964
|
}
|
@@ -8877,7 +8708,7 @@ type Shop {
|
|
8877
8708
|
enableQuoteOrders: Boolean
|
8878
8709
|
|
8879
8710
|
"""Whether the marketplace has enabled offer orders."""
|
8880
|
-
enableOfferOrders: Boolean
|
8711
|
+
enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
8881
8712
|
|
8882
8713
|
"""Shop's name."""
|
8883
8714
|
name: String!
|
@@ -8891,9 +8722,6 @@ type Shop {
|
|
8891
8722
|
"""Include taxes in prices."""
|
8892
8723
|
includeTaxesInPrices: Boolean!
|
8893
8724
|
|
8894
|
-
"""Display prices with tax in store."""
|
8895
|
-
displayGrossPrices: Boolean! @deprecated(reason: "This will be removed on November 22, 2024. Use the includeTaxesInPrices setting instead.")
|
8896
|
-
|
8897
8725
|
"""Charge taxes on shipping."""
|
8898
8726
|
chargeTaxesOnShipping: Boolean!
|
8899
8727
|
|
@@ -8924,9 +8752,6 @@ type Shop {
|
|
8924
8752
|
"""Is authenticated user required for to view product price information."""
|
8925
8753
|
loginForPrice: Boolean
|
8926
8754
|
|
8927
|
-
"""Is authenticated user required to view product listings."""
|
8928
|
-
loginForProducts: Boolean @deprecated(reason: "This will be removed on November 22, 2024. Use the loginForPrice setting instead.")
|
8929
|
-
|
8930
8755
|
"""Gets active plugins."""
|
8931
8756
|
activePlugins: [Plugin!]!
|
8932
8757
|
|
@@ -11196,11 +11021,6 @@ type MarketplaceConfiguration {
|
|
11196
11021
|
tenant: Tenant!
|
11197
11022
|
id: UUID!
|
11198
11023
|
marketplaceName: String!
|
11199
|
-
|
11200
|
-
"""
|
11201
|
-
True if marketplace accrues shipping revenue, false if sellers accrue shipping revenue
|
11202
|
-
"""
|
11203
|
-
marketplaceAccruesShippingRevenue: Boolean @deprecated(reason: "Replaced by fulfillmentModel. This will be removed on November 25, 2024.")
|
11204
11024
|
requireProductApproval: Boolean!
|
11205
11025
|
requireProductTypes: Boolean!
|
11206
11026
|
|
@@ -11226,7 +11046,7 @@ type MarketplaceConfiguration {
|
|
11226
11046
|
"""Returns list of default checklists for seller."""
|
11227
11047
|
defaultSellerChecklists: [DefaultSellerChecklist!]!
|
11228
11048
|
enableStockAllocationForQuotes: Boolean!
|
11229
|
-
enableStockAllocationForOffers: Boolean
|
11049
|
+
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025 and will return false until then")
|
11230
11050
|
enableStockAllocationForDrafts: Boolean!
|
11231
11051
|
validateStockOnOrderPaymentCreation: Boolean!
|
11232
11052
|
|
@@ -11947,9 +11767,6 @@ enum EmailEventMessageType {
|
|
11947
11767
|
"""Order Fulfillment Update"""
|
11948
11768
|
ORDER_FULFILLMENT_UPDATE
|
11949
11769
|
|
11950
|
-
"""Order Payment Confirmation"""
|
11951
|
-
ORDER_PAYMENT_CONFIRMATION
|
11952
|
-
|
11953
11770
|
"""Order Canceled"""
|
11954
11771
|
ORDER_CANCELED
|
11955
11772
|
|
@@ -11959,9 +11776,6 @@ enum EmailEventMessageType {
|
|
11959
11776
|
"""Order Refund Confirmation"""
|
11960
11777
|
ORDER_REFUND_CONFIRMATION
|
11961
11778
|
|
11962
|
-
"""Seller Bid Action"""
|
11963
|
-
SELLER_BID_ACTION
|
11964
|
-
|
11965
11779
|
"""Pending Quote"""
|
11966
11780
|
PENDING_QUOTE
|
11967
11781
|
|
@@ -12007,12 +11821,6 @@ enum EmailEventMessageType {
|
|
12007
11821
|
"""Seller Agreement Not Accepted"""
|
12008
11822
|
SELLER_AGREEMENT_NOT_ACCEPTED
|
12009
11823
|
|
12010
|
-
"""Vin Decode Success"""
|
12011
|
-
VIN_DECODE_SUCCESS
|
12012
|
-
|
12013
|
-
"""Vin Decode Failed"""
|
12014
|
-
VIN_DECODE_FAILED
|
12015
|
-
|
12016
11824
|
"""Import Catalog Failed"""
|
12017
11825
|
IMPORT_CATALOG_FAILED
|
12018
11826
|
|
@@ -12034,9 +11842,6 @@ enum EmailEventMessageType {
|
|
12034
11842
|
"""Pending Customer"""
|
12035
11843
|
PENDING_CUSTOMER
|
12036
11844
|
|
12037
|
-
"""Buyer Bid Action"""
|
12038
|
-
BUYER_BID_ACTION
|
12039
|
-
|
12040
11845
|
"""Quote Requested"""
|
12041
11846
|
QUOTE_REQUESTED
|
12042
11847
|
}
|
@@ -12082,9 +11887,6 @@ enum NotifyEventTypeEnum {
|
|
12082
11887
|
"""Order Fulfillment Update"""
|
12083
11888
|
ORDER_FULFILLMENT_UPDATE
|
12084
11889
|
|
12085
|
-
"""Order Payment Confirmation"""
|
12086
|
-
ORDER_PAYMENT_CONFIRMATION @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12087
|
-
|
12088
11890
|
"""Order Canceled"""
|
12089
11891
|
ORDER_CANCELED
|
12090
11892
|
|
@@ -12094,9 +11896,6 @@ enum NotifyEventTypeEnum {
|
|
12094
11896
|
"""Order Refund Confirmation"""
|
12095
11897
|
ORDER_REFUND_CONFIRMATION
|
12096
11898
|
|
12097
|
-
"""Seller Bid Action"""
|
12098
|
-
SELLER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12099
|
-
|
12100
11899
|
"""Pending Quote"""
|
12101
11900
|
PENDING_QUOTE
|
12102
11901
|
|
@@ -12142,12 +11941,6 @@ enum NotifyEventTypeEnum {
|
|
12142
11941
|
"""Seller Agreement Not Accepted"""
|
12143
11942
|
SELLER_AGREEMENT_NOT_ACCEPTED
|
12144
11943
|
|
12145
|
-
"""Vin Decode Success"""
|
12146
|
-
VIN_DECODE_SUCCESS @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12147
|
-
|
12148
|
-
"""Vin Decode Failed"""
|
12149
|
-
VIN_DECODE_FAILED @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12150
|
-
|
12151
11944
|
"""Import Catalog Failed"""
|
12152
11945
|
IMPORT_CATALOG_FAILED
|
12153
11946
|
|
@@ -12169,9 +11962,6 @@ enum NotifyEventTypeEnum {
|
|
12169
11962
|
"""Pending Customer"""
|
12170
11963
|
PENDING_CUSTOMER
|
12171
11964
|
|
12172
|
-
"""Buyer Bid Action"""
|
12173
|
-
BUYER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12174
|
-
|
12175
11965
|
"""Quote Requested"""
|
12176
11966
|
QUOTE_REQUESTED
|
12177
11967
|
}
|
@@ -13455,7 +13245,7 @@ enum StaffMemberStatus {
|
|
13455
13245
|
DEACTIVATED
|
13456
13246
|
}
|
13457
13247
|
|
13458
|
-
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection |
|
13248
|
+
union _Entity = WishlistItem | Wishlist | User | Address | ProductVariant | Product | Category | ProductType | App | Collection | Microsite | ProductImage | Location | ProductStatusLog | Group | CatalogImportProcess | CatalogImportProcessLogRecord
|
13459
13249
|
|
13460
13250
|
scalar _Any
|
13461
13251
|
|
@@ -13489,7 +13279,7 @@ type Mutation {
|
|
13489
13279
|
description: String
|
13490
13280
|
|
13491
13281
|
"""
|
13492
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13282
|
+
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.openxmlformats-officedocument.spreadsheetml.sheet, application/svg+xml, drawing/x-dwg, image/x-dwg, application/x-csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-dxf, application/x-gzip, image/bmp, image/x-tif, application/vnd.oasis.opendocument.text, image/heif, application/x-tar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/tiff, text/pdf, image/jpeg, application/jpg, application/x-tiff, application/x-rar-compressed, image/png, application/csv, application/vnd.oasis.opendocument.presentation, text/x-pdf, image/webp, pplication/vnd.rar, application/x-dwg, application/x-zip-compressed, application/zip, application/x-tif, text/x-csv, application/dxf, image/vnd.dwg, application/vnd.ms-excel, application/x-autocad, application/gzip, image/x-eps, application/gzipped, image/x-dxf, application/x-jpg, image/heif-sequence, text/plain, application/vnd.pdf, application/vnd.oasis.opendocument.spreadsheet, application/tif, application/acrobat, application/x-rtf, application/vnd.ms-powerpoint, application/rtf, application/x-pdf, text/rtf, image/heic-sequence, image/svg+xml, application/acad, text/svg, application/excel, application/eps, text/csv, text/svg-xml, application/postscript, image/tif, image/heic, image/x-bmp, application/pdf, application/gzip-compressed, drawing/dwg, image/jpg, application/x-rar, image/eps, image/x-ms-bmp, application/x-acad, image/gif, image/svg, drawing/x-dwf, text/x-comma-separated-values, text/comma-separated-values, application/msword, image/dxf, application/dwg, application/x-eps, image/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/tiff, application/vnd.ms-word.
|
13493
13283
|
"""
|
13494
13284
|
file: Upload!
|
13495
13285
|
|
@@ -13539,24 +13329,6 @@ type Mutation {
|
|
13539
13329
|
targetIds: [ID!]
|
13540
13330
|
): DocumentRemove
|
13541
13331
|
|
13542
|
-
"""Creates a new Bid."""
|
13543
|
-
bidCreate(
|
13544
|
-
"""Fields required to create a new bid."""
|
13545
|
-
input: BidInput!
|
13546
|
-
): BidCreate @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
13547
|
-
|
13548
|
-
"""Accepts the specificed bid."""
|
13549
|
-
bidAccept(
|
13550
|
-
"""ID of the bid to accept."""
|
13551
|
-
bidId: ID!
|
13552
|
-
): BidAccept @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
13553
|
-
|
13554
|
-
"""Rejects the specificed bid."""
|
13555
|
-
bidReject(
|
13556
|
-
"""ID of the bid to reject."""
|
13557
|
-
bidId: ID!
|
13558
|
-
): BidReject @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
13559
|
-
|
13560
13332
|
"""Updates nautical configuration."""
|
13561
13333
|
nauticalConfigurationUpdate(input: [NauticalConfigurationInputItem!]): NauticalConfigurationUpdate
|
13562
13334
|
|
@@ -15186,7 +14958,7 @@ type Mutation {
|
|
15186
14958
|
id: ID!
|
15187
14959
|
): NauticalDraftOrderLineDelete
|
15188
14960
|
|
15189
|
-
"""Updates an order line of a draft
|
14961
|
+
"""Updates an order line of a draft or quote order."""
|
15190
14962
|
draftOrderLineUpdate(
|
15191
14963
|
"""ID of the order line to update."""
|
15192
14964
|
id: ID!
|
@@ -15225,9 +14997,7 @@ type Mutation {
|
|
15225
14997
|
token: String
|
15226
14998
|
): NauticalDraftOrderUpdate
|
15227
14999
|
|
15228
|
-
"""
|
15229
|
-
Overrides unit net price of an order line of a draft, quote, or offer order.
|
15230
|
-
"""
|
15000
|
+
"""Overrides unit net price of an order line of a draft or quote order."""
|
15231
15001
|
draftOrderLinePriceOverride(
|
15232
15002
|
"""ID of the order line to update."""
|
15233
15003
|
id: ID!
|
@@ -15237,7 +15007,7 @@ type Mutation {
|
|
15237
15007
|
): DraftOrderLinePriceOverride
|
15238
15008
|
|
15239
15009
|
"""
|
15240
|
-
Overrides unit net price of a marketplace order line of a draft,
|
15010
|
+
Overrides unit net price of a marketplace order line of a draft, or quote order.
|
15241
15011
|
"""
|
15242
15012
|
nauticalDraftOrderLinePriceOverride(
|
15243
15013
|
"""ID of the marketplace order line to update."""
|
@@ -15564,16 +15334,6 @@ type Mutation {
|
|
15564
15334
|
id: ID!
|
15565
15335
|
): OrderFeeDelete
|
15566
15336
|
|
15567
|
-
"""
|
15568
|
-
Converts a seller or marketplace offer order to a nautical quote order.
|
15569
|
-
"""
|
15570
|
-
orderOfferConvertToNauticalQuoteOrder(
|
15571
|
-
"""
|
15572
|
-
ID of the nautical offer or offer order to be converted to a nautical quote order
|
15573
|
-
"""
|
15574
|
-
id: ID!
|
15575
|
-
): OrderOfferConvertToNauticalQuoteOrder @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
15576
|
-
|
15577
15337
|
"""
|
15578
15338
|
Uploads lines for a draft order via CSV. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
15579
15339
|
"""
|
@@ -16899,81 +16659,6 @@ type DocumentRemove {
|
|
16899
16659
|
documentErrors: [DocumentError!]!
|
16900
16660
|
}
|
16901
16661
|
|
16902
|
-
"""Creates a new Bid."""
|
16903
|
-
type BidCreate {
|
16904
|
-
bid: Bid
|
16905
|
-
bidErrors: [BidError!]!
|
16906
|
-
}
|
16907
|
-
|
16908
|
-
type BidError {
|
16909
|
-
"""
|
16910
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
16911
|
-
"""
|
16912
|
-
field: String
|
16913
|
-
|
16914
|
-
"""The error message."""
|
16915
|
-
message: String!
|
16916
|
-
|
16917
|
-
"""The error code."""
|
16918
|
-
code: BidErrorCode!
|
16919
|
-
}
|
16920
|
-
|
16921
|
-
"""An enumeration."""
|
16922
|
-
enum BidErrorCode {
|
16923
|
-
GRAPHQL_ERROR
|
16924
|
-
INVALID
|
16925
|
-
NOT_FOUND
|
16926
|
-
REQUIRED
|
16927
|
-
UNIQUE
|
16928
|
-
}
|
16929
|
-
|
16930
|
-
input BidInput {
|
16931
|
-
"""Role of the user creating the bid."""
|
16932
|
-
role: BidRoleEnum!
|
16933
|
-
|
16934
|
-
"""ID of the Nautical Order or Order to associate with this bid."""
|
16935
|
-
orderId: ID!
|
16936
|
-
|
16937
|
-
"""Amount of the bid."""
|
16938
|
-
bidAmount: PositiveDecimal!
|
16939
|
-
|
16940
|
-
"""
|
16941
|
-
Currency in 3-letter currency code format. If this is omitted, the marketplace currency will be used by default.
|
16942
|
-
"""
|
16943
|
-
currency: String
|
16944
|
-
|
16945
|
-
"""Message to add to the bid."""
|
16946
|
-
message: String
|
16947
|
-
}
|
16948
|
-
|
16949
|
-
enum BidRoleEnum {
|
16950
|
-
"""Seller"""
|
16951
|
-
SELLER
|
16952
|
-
|
16953
|
-
"""Buyer"""
|
16954
|
-
BUYER
|
16955
|
-
}
|
16956
|
-
|
16957
|
-
"""Accepts the specificed bid."""
|
16958
|
-
type BidAccept {
|
16959
|
-
"""Seller order for which the bid was accepted."""
|
16960
|
-
order: Order
|
16961
|
-
|
16962
|
-
"""Nautical order for which the bid was accepted."""
|
16963
|
-
nauticalOrder: NauticalOrder
|
16964
|
-
bidErrors: [BidError!]!
|
16965
|
-
}
|
16966
|
-
|
16967
|
-
"""Rejects the specificed bid."""
|
16968
|
-
type BidReject {
|
16969
|
-
"""Seller order for which the bid was rejected."""
|
16970
|
-
order: Order
|
16971
|
-
|
16972
|
-
"""Nautical order for which the bid was rejected."""
|
16973
|
-
nauticalOrder: NauticalOrder
|
16974
|
-
bidErrors: [BidError!]!
|
16975
|
-
}
|
16976
|
-
|
16977
16662
|
"""Updates nautical configuration."""
|
16978
16663
|
type NauticalConfigurationUpdate {
|
16979
16664
|
nauticalConfigurationList: [NauticalConfiguration!]
|
@@ -17038,11 +16723,6 @@ input MarketplaceConfigurationInput {
|
|
17038
16723
|
"""
|
17039
16724
|
isSellerShippingZoneCreationAllowed: Boolean
|
17040
16725
|
|
17041
|
-
"""
|
17042
|
-
True if marketplace accrues shipping revenue, false if sellers accrue shipping revenue
|
17043
|
-
"""
|
17044
|
-
marketplaceAccruesShippingRevenue: Boolean @deprecated(reason: "Replaced by fulfillmentModel. This will be removed on November 25, 2024.")
|
17045
|
-
|
17046
16726
|
"""True if seller products require approval"""
|
17047
16727
|
requireProductApproval: Boolean
|
17048
16728
|
|
@@ -17088,7 +16768,7 @@ input MarketplaceConfigurationInput {
|
|
17088
16768
|
enableStockAllocationForQuotes: Boolean
|
17089
16769
|
|
17090
16770
|
"""True if offer orders trigger stock allocation."""
|
17091
|
-
enableStockAllocationForOffers: Boolean
|
16771
|
+
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
17092
16772
|
|
17093
16773
|
"""True if draft orders trigger stock allocation."""
|
17094
16774
|
enableStockAllocationForDrafts: Boolean
|
@@ -18642,9 +18322,6 @@ input ShopSettingsInput {
|
|
18642
18322
|
"""Include taxes in prices."""
|
18643
18323
|
includeTaxesInPrices: Boolean
|
18644
18324
|
|
18645
|
-
"""Display prices with tax in store."""
|
18646
|
-
displayGrossPrices: Boolean @deprecated(reason: "This will be removed on November 22, 2024.")
|
18647
|
-
|
18648
18325
|
"""Charge taxes on shipping."""
|
18649
18326
|
chargeTaxesOnShipping: Boolean
|
18650
18327
|
|
@@ -20184,7 +19861,7 @@ input ProductTypeInput {
|
|
20184
19861
|
slug: String
|
20185
19862
|
|
20186
19863
|
"""
|
20187
|
-
Allow variant price to be overridden for products in this product type in the checkout or in quote
|
19864
|
+
Allow variant price to be overridden for products in this product type in the checkout or in quote and draft orders.
|
20188
19865
|
"""
|
20189
19866
|
isPriceOverrideAllowed: Boolean
|
20190
19867
|
|
@@ -21208,7 +20885,6 @@ input OrderLineCreateInput {
|
|
21208
20885
|
enum DraftOrderInitialStatus {
|
21209
20886
|
DRAFT
|
21210
20887
|
QUOTE
|
21211
|
-
OFFER
|
21212
20888
|
}
|
21213
20889
|
|
21214
20890
|
"""Creates a new Nautical draft order."""
|
@@ -21410,7 +21086,7 @@ type NauticalDraftOrderLineDelete {
|
|
21410
21086
|
orderErrors: [OrderError!]!
|
21411
21087
|
}
|
21412
21088
|
|
21413
|
-
"""Updates an order line of a draft
|
21089
|
+
"""Updates an order line of a draft or quote order."""
|
21414
21090
|
type DraftOrderLineUpdate {
|
21415
21091
|
"""A related draft or quote order."""
|
21416
21092
|
order: Order
|
@@ -21496,11 +21172,9 @@ input NauticalDraftOrderInput {
|
|
21496
21172
|
poNumbers: [String!]
|
21497
21173
|
}
|
21498
21174
|
|
21499
|
-
"""
|
21500
|
-
Overrides unit net price of an order line of a draft, quote, or offer order.
|
21501
|
-
"""
|
21175
|
+
"""Overrides unit net price of an order line of a draft or quote order."""
|
21502
21176
|
type DraftOrderLinePriceOverride {
|
21503
|
-
"""A related draft,
|
21177
|
+
"""A related draft, or quote order."""
|
21504
21178
|
order: Order
|
21505
21179
|
orderErrors: [OrderError!]!
|
21506
21180
|
orderLine: OrderLine
|
@@ -21517,10 +21191,10 @@ input OrderLinePriceOverrideInput {
|
|
21517
21191
|
}
|
21518
21192
|
|
21519
21193
|
"""
|
21520
|
-
Overrides unit net price of a marketplace order line of a draft,
|
21194
|
+
Overrides unit net price of a marketplace order line of a draft, or quote order.
|
21521
21195
|
"""
|
21522
21196
|
type NauticalDraftOrderLinePriceOverride {
|
21523
|
-
"""A related draft,
|
21197
|
+
"""A related draft, or quote marketplace order."""
|
21524
21198
|
nauticalOrder: NauticalOrder
|
21525
21199
|
orderErrors: [OrderError!]!
|
21526
21200
|
nauticalOrderLine: NauticalOrderLine
|
@@ -22084,18 +21758,6 @@ type OrderFeeDelete {
|
|
22084
21758
|
orderErrors: [OrderError!]!
|
22085
21759
|
}
|
22086
21760
|
|
22087
|
-
"""
|
22088
|
-
Converts a seller or marketplace offer order to a nautical quote order.
|
22089
|
-
"""
|
22090
|
-
type OrderOfferConvertToNauticalQuoteOrder {
|
22091
|
-
"""The converted Nautical Quote order (available only for MPO)."""
|
22092
|
-
nauticalOrder: NauticalOrder
|
22093
|
-
|
22094
|
-
"""The converted Quote order"""
|
22095
|
-
order: Order
|
22096
|
-
orderErrors: [OrderError!]!
|
22097
|
-
}
|
22098
|
-
|
22099
21761
|
"""
|
22100
21762
|
Uploads lines for a draft order via CSV. This mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
22101
21763
|
"""
|