@nautical-commerce/graphql-schema 1.60.1 → 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 +55 -360
- 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!
|
@@ -3891,7 +3844,10 @@ type Order implements Node & ObjectWithMetadata {
|
|
3891
3844
|
payoutStatus: OrderPayoutStatusEnum
|
3892
3845
|
|
3893
3846
|
"""Summary of all payouts of this order"""
|
3894
|
-
payoutsSummary
|
3847
|
+
payoutsSummary(
|
3848
|
+
"""Order payout status."""
|
3849
|
+
payoutStatus: PayoutStatusEnum
|
3850
|
+
): [OrderPayoutSummary!]!
|
3895
3851
|
|
3896
3852
|
"""Remaining available balance to be paid out."""
|
3897
3853
|
availablePayoutBalance: Money
|
@@ -3905,12 +3861,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3905
3861
|
"""Validation status for the order"""
|
3906
3862
|
validationStatus: [ValidationStatus!]
|
3907
3863
|
|
3908
|
-
"""Latest bid made against the order."""
|
3909
|
-
currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
3910
|
-
|
3911
|
-
"""List of all bids made against the order."""
|
3912
|
-
bids: [Bid!] @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
3913
|
-
|
3914
3864
|
"""
|
3915
3865
|
Determines if seller is the only seller on the related nautical order. Note: if nautical order doesn't exist - will return None.
|
3916
3866
|
"""
|
@@ -3937,9 +3887,6 @@ enum OrderOrderSource {
|
|
3937
3887
|
"""quote"""
|
3938
3888
|
QUOTE
|
3939
3889
|
|
3940
|
-
"""offer"""
|
3941
|
-
OFFER
|
3942
|
-
|
3943
3890
|
"""manual"""
|
3944
3891
|
MANUAL
|
3945
3892
|
|
@@ -3951,7 +3898,6 @@ enum OrderOrderSource {
|
|
3951
3898
|
enum OrderStatus {
|
3952
3899
|
DRAFT
|
3953
3900
|
QUOTE
|
3954
|
-
OFFER
|
3955
3901
|
UNFULFILLED
|
3956
3902
|
PARTIALLY_FULFILLED
|
3957
3903
|
FULFILLED
|
@@ -3977,24 +3923,6 @@ enum OrderSubStatus {
|
|
3977
3923
|
|
3978
3924
|
"""Complete"""
|
3979
3925
|
COMPLETE
|
3980
|
-
|
3981
|
-
"""Offer Approved"""
|
3982
|
-
OFFER_APPROVED
|
3983
|
-
|
3984
|
-
"""Offer Cancelled"""
|
3985
|
-
OFFER_CANCELLED
|
3986
|
-
|
3987
|
-
"""Offer Created"""
|
3988
|
-
OFFER_CREATED
|
3989
|
-
|
3990
|
-
"""Offer Expired"""
|
3991
|
-
OFFER_EXPIRED
|
3992
|
-
|
3993
|
-
"""Offer Negotiating"""
|
3994
|
-
OFFER_NEGOTIATING
|
3995
|
-
|
3996
|
-
"""Offer Rejected"""
|
3997
|
-
OFFER_REJECTED
|
3998
3926
|
}
|
3999
3927
|
|
4000
3928
|
"""
|
@@ -4616,7 +4544,7 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
4616
4544
|
weight: Weight
|
4617
4545
|
|
4618
4546
|
"""
|
4619
|
-
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
|
4620
4548
|
"""
|
4621
4549
|
isPriceOverrideAllowed: Boolean!
|
4622
4550
|
createdBy: Seller
|
@@ -5702,12 +5630,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5702
5630
|
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
5703
5631
|
shippingMethodName: String!
|
5704
5632
|
|
5705
|
-
"""Latest bid made against the order."""
|
5706
|
-
currentBid: Bid @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
5707
|
-
|
5708
|
-
"""List of all bids made against the order."""
|
5709
|
-
bids: [Bid!] @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
5710
|
-
|
5711
5633
|
"""List of all the vendor orders connected to this marketplace order."""
|
5712
5634
|
subOrders: [Order!]
|
5713
5635
|
|
@@ -5735,9 +5657,6 @@ enum NauticalOrderOrderSource {
|
|
5735
5657
|
"""quote"""
|
5736
5658
|
QUOTE
|
5737
5659
|
|
5738
|
-
"""offer"""
|
5739
|
-
OFFER
|
5740
|
-
|
5741
5660
|
"""manual"""
|
5742
5661
|
MANUAL
|
5743
5662
|
|
@@ -5749,7 +5668,6 @@ enum NauticalOrderOrderSource {
|
|
5749
5668
|
enum NauticalOrderStatus {
|
5750
5669
|
DRAFT
|
5751
5670
|
QUOTE
|
5752
|
-
OFFER
|
5753
5671
|
UNFULFILLED
|
5754
5672
|
PARTIALLY_FULFILLED
|
5755
5673
|
FULFILLED
|
@@ -5775,24 +5693,6 @@ enum NauticalOrderSubStatus {
|
|
5775
5693
|
|
5776
5694
|
"""Complete"""
|
5777
5695
|
COMPLETE
|
5778
|
-
|
5779
|
-
"""Offer Approved"""
|
5780
|
-
OFFER_APPROVED
|
5781
|
-
|
5782
|
-
"""Offer Cancelled"""
|
5783
|
-
OFFER_CANCELLED
|
5784
|
-
|
5785
|
-
"""Offer Created"""
|
5786
|
-
OFFER_CREATED
|
5787
|
-
|
5788
|
-
"""Offer Expired"""
|
5789
|
-
OFFER_EXPIRED
|
5790
|
-
|
5791
|
-
"""Offer Negotiating"""
|
5792
|
-
OFFER_NEGOTIATING
|
5793
|
-
|
5794
|
-
"""Offer Rejected"""
|
5795
|
-
OFFER_REJECTED
|
5796
5696
|
}
|
5797
5697
|
|
5798
5698
|
enum OrderSubStatusEnum {
|
@@ -5807,24 +5707,6 @@ enum OrderSubStatusEnum {
|
|
5807
5707
|
|
5808
5708
|
"""Complete"""
|
5809
5709
|
COMPLETE
|
5810
|
-
|
5811
|
-
"""Offer Approved"""
|
5812
|
-
OFFER_APPROVED
|
5813
|
-
|
5814
|
-
"""Offer Cancelled"""
|
5815
|
-
OFFER_CANCELLED
|
5816
|
-
|
5817
|
-
"""Offer Created"""
|
5818
|
-
OFFER_CREATED
|
5819
|
-
|
5820
|
-
"""Offer Expired"""
|
5821
|
-
OFFER_EXPIRED
|
5822
|
-
|
5823
|
-
"""Offer Negotiating"""
|
5824
|
-
OFFER_NEGOTIATING
|
5825
|
-
|
5826
|
-
"""Offer Rejected"""
|
5827
|
-
OFFER_REJECTED
|
5828
5710
|
}
|
5829
5711
|
|
5830
5712
|
"""Represents order line of particular order."""
|
@@ -6708,12 +6590,6 @@ enum OrderEventsEmailsEnum {
|
|
6708
6590
|
|
6709
6591
|
"""The quote request email was sent to the marketplace operator"""
|
6710
6592
|
QUOTE_REQUESTED
|
6711
|
-
|
6712
|
-
"""A bid action performed by the seller triggered email to be sent"""
|
6713
|
-
SELLER_BID_ACTION
|
6714
|
-
|
6715
|
-
"""A bid action performed by the buyer triggered email to be sent"""
|
6716
|
-
BUYER_BID_ACTION
|
6717
6593
|
}
|
6718
6594
|
|
6719
6595
|
type NauticalOrderEventOrderLineObject {
|
@@ -6727,47 +6603,6 @@ type NauticalOrderEventOrderLineObject {
|
|
6727
6603
|
itemName: String
|
6728
6604
|
}
|
6729
6605
|
|
6730
|
-
"""Represents a bid."""
|
6731
|
-
type Bid implements Node {
|
6732
|
-
"""The ID of the object"""
|
6733
|
-
id: ID!
|
6734
|
-
privateMetadata: JSONString!
|
6735
|
-
metadata: JSONString!
|
6736
|
-
tenant: Tenant!
|
6737
|
-
createdAt: DateTime!
|
6738
|
-
updatedAt: DateTime!
|
6739
|
-
status: BidStatus!
|
6740
|
-
user: User
|
6741
|
-
role: BidRole!
|
6742
|
-
order: Order
|
6743
|
-
nauticalOrder: NauticalOrder
|
6744
|
-
bidAmount: Decimal!
|
6745
|
-
currency: String!
|
6746
|
-
amount: Money
|
6747
|
-
message: String
|
6748
|
-
}
|
6749
|
-
|
6750
|
-
"""An enumeration."""
|
6751
|
-
enum BidStatus {
|
6752
|
-
"""Submitted"""
|
6753
|
-
SUBMITTED
|
6754
|
-
|
6755
|
-
"""Accepted"""
|
6756
|
-
ACCEPTED
|
6757
|
-
|
6758
|
-
"""Rejected"""
|
6759
|
-
REJECTED
|
6760
|
-
}
|
6761
|
-
|
6762
|
-
"""An enumeration."""
|
6763
|
-
enum BidRole {
|
6764
|
-
"""Seller"""
|
6765
|
-
SELLER
|
6766
|
-
|
6767
|
-
"""Buyer"""
|
6768
|
-
BUYER
|
6769
|
-
}
|
6770
|
-
|
6771
6606
|
"""
|
6772
6607
|
Represents a refund scoped to an nautical order, a seller order, or a seller order line
|
6773
6608
|
"""
|
@@ -7192,6 +7027,23 @@ type OrderPayoutSummary {
|
|
7192
7027
|
vendorPayout: VendorPayout!
|
7193
7028
|
}
|
7194
7029
|
|
7030
|
+
enum PayoutStatusEnum {
|
7031
|
+
"""Draft"""
|
7032
|
+
DRAFT
|
7033
|
+
|
7034
|
+
"""Paid"""
|
7035
|
+
PAID
|
7036
|
+
|
7037
|
+
"""Archived"""
|
7038
|
+
ARCHIVED
|
7039
|
+
|
7040
|
+
"""Locked"""
|
7041
|
+
LOCKED
|
7042
|
+
|
7043
|
+
"""Error"""
|
7044
|
+
ERROR
|
7045
|
+
}
|
7046
|
+
|
7195
7047
|
type AgreementSellersCountableConnection {
|
7196
7048
|
"""Pagination data for this connection."""
|
7197
7049
|
pageInfo: PageInfo!
|
@@ -8107,7 +7959,6 @@ enum OrderSourceFilter {
|
|
8107
7959
|
CHECKOUT
|
8108
7960
|
DRAFT
|
8109
7961
|
QUOTE
|
8110
|
-
OFFER
|
8111
7962
|
MANUAL
|
8112
7963
|
EXTERNAL
|
8113
7964
|
}
|
@@ -8857,7 +8708,7 @@ type Shop {
|
|
8857
8708
|
enableQuoteOrders: Boolean
|
8858
8709
|
|
8859
8710
|
"""Whether the marketplace has enabled offer orders."""
|
8860
|
-
enableOfferOrders: Boolean
|
8711
|
+
enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
8861
8712
|
|
8862
8713
|
"""Shop's name."""
|
8863
8714
|
name: String!
|
@@ -8871,9 +8722,6 @@ type Shop {
|
|
8871
8722
|
"""Include taxes in prices."""
|
8872
8723
|
includeTaxesInPrices: Boolean!
|
8873
8724
|
|
8874
|
-
"""Display prices with tax in store."""
|
8875
|
-
displayGrossPrices: Boolean! @deprecated(reason: "This will be removed on November 22, 2024. Use the includeTaxesInPrices setting instead.")
|
8876
|
-
|
8877
8725
|
"""Charge taxes on shipping."""
|
8878
8726
|
chargeTaxesOnShipping: Boolean!
|
8879
8727
|
|
@@ -8904,9 +8752,6 @@ type Shop {
|
|
8904
8752
|
"""Is authenticated user required for to view product price information."""
|
8905
8753
|
loginForPrice: Boolean
|
8906
8754
|
|
8907
|
-
"""Is authenticated user required to view product listings."""
|
8908
|
-
loginForProducts: Boolean @deprecated(reason: "This will be removed on November 22, 2024. Use the loginForPrice setting instead.")
|
8909
|
-
|
8910
8755
|
"""Gets active plugins."""
|
8911
8756
|
activePlugins: [Plugin!]!
|
8912
8757
|
|
@@ -8996,9 +8841,6 @@ type Domain {
|
|
8996
8841
|
"""The host name of the domain."""
|
8997
8842
|
host: String!
|
8998
8843
|
|
8999
|
-
"""Inform if SSL is enabled."""
|
9000
|
-
sslEnabled: Boolean! @deprecated(reason: "This will be removed on November 14, 2024")
|
9001
|
-
|
9002
8844
|
"""Shop's absolute URL."""
|
9003
8845
|
url: String!
|
9004
8846
|
}
|
@@ -9121,6 +8963,9 @@ type StorefrontTheme implements Node {
|
|
9121
8963
|
|
9122
8964
|
"""Font to be used on the storefront"""
|
9123
8965
|
font: Font
|
8966
|
+
|
8967
|
+
"""Font color in hex."""
|
8968
|
+
fontColor: String
|
9124
8969
|
}
|
9125
8970
|
|
9126
8971
|
"""Font for a storefront."""
|
@@ -11176,11 +11021,6 @@ type MarketplaceConfiguration {
|
|
11176
11021
|
tenant: Tenant!
|
11177
11022
|
id: UUID!
|
11178
11023
|
marketplaceName: String!
|
11179
|
-
|
11180
|
-
"""
|
11181
|
-
True if marketplace accrues shipping revenue, false if sellers accrue shipping revenue
|
11182
|
-
"""
|
11183
|
-
marketplaceAccruesShippingRevenue: Boolean @deprecated(reason: "Replaced by fulfillmentModel. This will be removed on November 25, 2024.")
|
11184
11024
|
requireProductApproval: Boolean!
|
11185
11025
|
requireProductTypes: Boolean!
|
11186
11026
|
|
@@ -11206,7 +11046,7 @@ type MarketplaceConfiguration {
|
|
11206
11046
|
"""Returns list of default checklists for seller."""
|
11207
11047
|
defaultSellerChecklists: [DefaultSellerChecklist!]!
|
11208
11048
|
enableStockAllocationForQuotes: Boolean!
|
11209
|
-
enableStockAllocationForOffers: Boolean
|
11049
|
+
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025 and will return false until then")
|
11210
11050
|
enableStockAllocationForDrafts: Boolean!
|
11211
11051
|
validateStockOnOrderPaymentCreation: Boolean!
|
11212
11052
|
|
@@ -11927,9 +11767,6 @@ enum EmailEventMessageType {
|
|
11927
11767
|
"""Order Fulfillment Update"""
|
11928
11768
|
ORDER_FULFILLMENT_UPDATE
|
11929
11769
|
|
11930
|
-
"""Order Payment Confirmation"""
|
11931
|
-
ORDER_PAYMENT_CONFIRMATION
|
11932
|
-
|
11933
11770
|
"""Order Canceled"""
|
11934
11771
|
ORDER_CANCELED
|
11935
11772
|
|
@@ -11939,9 +11776,6 @@ enum EmailEventMessageType {
|
|
11939
11776
|
"""Order Refund Confirmation"""
|
11940
11777
|
ORDER_REFUND_CONFIRMATION
|
11941
11778
|
|
11942
|
-
"""Seller Bid Action"""
|
11943
|
-
SELLER_BID_ACTION
|
11944
|
-
|
11945
11779
|
"""Pending Quote"""
|
11946
11780
|
PENDING_QUOTE
|
11947
11781
|
|
@@ -11987,12 +11821,6 @@ enum EmailEventMessageType {
|
|
11987
11821
|
"""Seller Agreement Not Accepted"""
|
11988
11822
|
SELLER_AGREEMENT_NOT_ACCEPTED
|
11989
11823
|
|
11990
|
-
"""Vin Decode Success"""
|
11991
|
-
VIN_DECODE_SUCCESS
|
11992
|
-
|
11993
|
-
"""Vin Decode Failed"""
|
11994
|
-
VIN_DECODE_FAILED
|
11995
|
-
|
11996
11824
|
"""Import Catalog Failed"""
|
11997
11825
|
IMPORT_CATALOG_FAILED
|
11998
11826
|
|
@@ -12014,9 +11842,6 @@ enum EmailEventMessageType {
|
|
12014
11842
|
"""Pending Customer"""
|
12015
11843
|
PENDING_CUSTOMER
|
12016
11844
|
|
12017
|
-
"""Buyer Bid Action"""
|
12018
|
-
BUYER_BID_ACTION
|
12019
|
-
|
12020
11845
|
"""Quote Requested"""
|
12021
11846
|
QUOTE_REQUESTED
|
12022
11847
|
}
|
@@ -12062,9 +11887,6 @@ enum NotifyEventTypeEnum {
|
|
12062
11887
|
"""Order Fulfillment Update"""
|
12063
11888
|
ORDER_FULFILLMENT_UPDATE
|
12064
11889
|
|
12065
|
-
"""Order Payment Confirmation"""
|
12066
|
-
ORDER_PAYMENT_CONFIRMATION @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12067
|
-
|
12068
11890
|
"""Order Canceled"""
|
12069
11891
|
ORDER_CANCELED
|
12070
11892
|
|
@@ -12074,9 +11896,6 @@ enum NotifyEventTypeEnum {
|
|
12074
11896
|
"""Order Refund Confirmation"""
|
12075
11897
|
ORDER_REFUND_CONFIRMATION
|
12076
11898
|
|
12077
|
-
"""Seller Bid Action"""
|
12078
|
-
SELLER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12079
|
-
|
12080
11899
|
"""Pending Quote"""
|
12081
11900
|
PENDING_QUOTE
|
12082
11901
|
|
@@ -12122,12 +11941,6 @@ enum NotifyEventTypeEnum {
|
|
12122
11941
|
"""Seller Agreement Not Accepted"""
|
12123
11942
|
SELLER_AGREEMENT_NOT_ACCEPTED
|
12124
11943
|
|
12125
|
-
"""Vin Decode Success"""
|
12126
|
-
VIN_DECODE_SUCCESS @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12127
|
-
|
12128
|
-
"""Vin Decode Failed"""
|
12129
|
-
VIN_DECODE_FAILED @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12130
|
-
|
12131
11944
|
"""Import Catalog Failed"""
|
12132
11945
|
IMPORT_CATALOG_FAILED
|
12133
11946
|
|
@@ -12149,9 +11962,6 @@ enum NotifyEventTypeEnum {
|
|
12149
11962
|
"""Pending Customer"""
|
12150
11963
|
PENDING_CUSTOMER
|
12151
11964
|
|
12152
|
-
"""Buyer Bid Action"""
|
12153
|
-
BUYER_BID_ACTION @deprecated(reason: "Will be removed on Nov 12, 2024")
|
12154
|
-
|
12155
11965
|
"""Quote Requested"""
|
12156
11966
|
QUOTE_REQUESTED
|
12157
11967
|
}
|
@@ -13435,7 +13245,7 @@ enum StaffMemberStatus {
|
|
13435
13245
|
DEACTIVATED
|
13436
13246
|
}
|
13437
13247
|
|
13438
|
-
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
|
13439
13249
|
|
13440
13250
|
scalar _Any
|
13441
13251
|
|
@@ -13469,7 +13279,7 @@ type Mutation {
|
|
13469
13279
|
description: String
|
13470
13280
|
|
13471
13281
|
"""
|
13472
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
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.
|
13473
13283
|
"""
|
13474
13284
|
file: Upload!
|
13475
13285
|
|
@@ -13519,24 +13329,6 @@ type Mutation {
|
|
13519
13329
|
targetIds: [ID!]
|
13520
13330
|
): DocumentRemove
|
13521
13331
|
|
13522
|
-
"""Creates a new Bid."""
|
13523
|
-
bidCreate(
|
13524
|
-
"""Fields required to create a new bid."""
|
13525
|
-
input: BidInput!
|
13526
|
-
): BidCreate @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
13527
|
-
|
13528
|
-
"""Accepts the specificed bid."""
|
13529
|
-
bidAccept(
|
13530
|
-
"""ID of the bid to accept."""
|
13531
|
-
bidId: ID!
|
13532
|
-
): BidAccept @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
13533
|
-
|
13534
|
-
"""Rejects the specificed bid."""
|
13535
|
-
bidReject(
|
13536
|
-
"""ID of the bid to reject."""
|
13537
|
-
bidId: ID!
|
13538
|
-
): BidReject @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
13539
|
-
|
13540
13332
|
"""Updates nautical configuration."""
|
13541
13333
|
nauticalConfigurationUpdate(input: [NauticalConfigurationInputItem!]): NauticalConfigurationUpdate
|
13542
13334
|
|
@@ -15098,7 +14890,7 @@ type Mutation {
|
|
15098
14890
|
nauticalHistoricalOrderCreate(
|
15099
14891
|
"""Fields required to create an historical order."""
|
15100
14892
|
input: NauticalHistoricalOrderInput!
|
15101
|
-
): NauticalHistoricalOrderCreate
|
14893
|
+
): NauticalHistoricalOrderCreate @deprecated(reason: "This mutation will be removed on February 18, 2025")
|
15102
14894
|
|
15103
14895
|
"""Deletes a draft order."""
|
15104
14896
|
draftOrderDelete(
|
@@ -15166,7 +14958,7 @@ type Mutation {
|
|
15166
14958
|
id: ID!
|
15167
14959
|
): NauticalDraftOrderLineDelete
|
15168
14960
|
|
15169
|
-
"""Updates an order line of a draft
|
14961
|
+
"""Updates an order line of a draft or quote order."""
|
15170
14962
|
draftOrderLineUpdate(
|
15171
14963
|
"""ID of the order line to update."""
|
15172
14964
|
id: ID!
|
@@ -15205,9 +14997,7 @@ type Mutation {
|
|
15205
14997
|
token: String
|
15206
14998
|
): NauticalDraftOrderUpdate
|
15207
14999
|
|
15208
|
-
"""
|
15209
|
-
Overrides unit net price of an order line of a draft, quote, or offer order.
|
15210
|
-
"""
|
15000
|
+
"""Overrides unit net price of an order line of a draft or quote order."""
|
15211
15001
|
draftOrderLinePriceOverride(
|
15212
15002
|
"""ID of the order line to update."""
|
15213
15003
|
id: ID!
|
@@ -15217,7 +15007,7 @@ type Mutation {
|
|
15217
15007
|
): DraftOrderLinePriceOverride
|
15218
15008
|
|
15219
15009
|
"""
|
15220
|
-
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.
|
15221
15011
|
"""
|
15222
15012
|
nauticalDraftOrderLinePriceOverride(
|
15223
15013
|
"""ID of the marketplace order line to update."""
|
@@ -15544,16 +15334,6 @@ type Mutation {
|
|
15544
15334
|
id: ID!
|
15545
15335
|
): OrderFeeDelete
|
15546
15336
|
|
15547
|
-
"""
|
15548
|
-
Converts a seller or marketplace offer order to a nautical quote order.
|
15549
|
-
"""
|
15550
|
-
orderOfferConvertToNauticalQuoteOrder(
|
15551
|
-
"""
|
15552
|
-
ID of the nautical offer or offer order to be converted to a nautical quote order
|
15553
|
-
"""
|
15554
|
-
id: ID!
|
15555
|
-
): OrderOfferConvertToNauticalQuoteOrder @deprecated(reason: "This will be removed alongside bids and offers on November 21, 2024")
|
15556
|
-
|
15557
15337
|
"""
|
15558
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
|
15559
15339
|
"""
|
@@ -16879,81 +16659,6 @@ type DocumentRemove {
|
|
16879
16659
|
documentErrors: [DocumentError!]!
|
16880
16660
|
}
|
16881
16661
|
|
16882
|
-
"""Creates a new Bid."""
|
16883
|
-
type BidCreate {
|
16884
|
-
bid: Bid
|
16885
|
-
bidErrors: [BidError!]!
|
16886
|
-
}
|
16887
|
-
|
16888
|
-
type BidError {
|
16889
|
-
"""
|
16890
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
16891
|
-
"""
|
16892
|
-
field: String
|
16893
|
-
|
16894
|
-
"""The error message."""
|
16895
|
-
message: String!
|
16896
|
-
|
16897
|
-
"""The error code."""
|
16898
|
-
code: BidErrorCode!
|
16899
|
-
}
|
16900
|
-
|
16901
|
-
"""An enumeration."""
|
16902
|
-
enum BidErrorCode {
|
16903
|
-
GRAPHQL_ERROR
|
16904
|
-
INVALID
|
16905
|
-
NOT_FOUND
|
16906
|
-
REQUIRED
|
16907
|
-
UNIQUE
|
16908
|
-
}
|
16909
|
-
|
16910
|
-
input BidInput {
|
16911
|
-
"""Role of the user creating the bid."""
|
16912
|
-
role: BidRoleEnum!
|
16913
|
-
|
16914
|
-
"""ID of the Nautical Order or Order to associate with this bid."""
|
16915
|
-
orderId: ID!
|
16916
|
-
|
16917
|
-
"""Amount of the bid."""
|
16918
|
-
bidAmount: PositiveDecimal!
|
16919
|
-
|
16920
|
-
"""
|
16921
|
-
Currency in 3-letter currency code format. If this is omitted, the marketplace currency will be used by default.
|
16922
|
-
"""
|
16923
|
-
currency: String
|
16924
|
-
|
16925
|
-
"""Message to add to the bid."""
|
16926
|
-
message: String
|
16927
|
-
}
|
16928
|
-
|
16929
|
-
enum BidRoleEnum {
|
16930
|
-
"""Seller"""
|
16931
|
-
SELLER
|
16932
|
-
|
16933
|
-
"""Buyer"""
|
16934
|
-
BUYER
|
16935
|
-
}
|
16936
|
-
|
16937
|
-
"""Accepts the specificed bid."""
|
16938
|
-
type BidAccept {
|
16939
|
-
"""Seller order for which the bid was accepted."""
|
16940
|
-
order: Order
|
16941
|
-
|
16942
|
-
"""Nautical order for which the bid was accepted."""
|
16943
|
-
nauticalOrder: NauticalOrder
|
16944
|
-
bidErrors: [BidError!]!
|
16945
|
-
}
|
16946
|
-
|
16947
|
-
"""Rejects the specificed bid."""
|
16948
|
-
type BidReject {
|
16949
|
-
"""Seller order for which the bid was rejected."""
|
16950
|
-
order: Order
|
16951
|
-
|
16952
|
-
"""Nautical order for which the bid was rejected."""
|
16953
|
-
nauticalOrder: NauticalOrder
|
16954
|
-
bidErrors: [BidError!]!
|
16955
|
-
}
|
16956
|
-
|
16957
16662
|
"""Updates nautical configuration."""
|
16958
16663
|
type NauticalConfigurationUpdate {
|
16959
16664
|
nauticalConfigurationList: [NauticalConfiguration!]
|
@@ -17018,11 +16723,6 @@ input MarketplaceConfigurationInput {
|
|
17018
16723
|
"""
|
17019
16724
|
isSellerShippingZoneCreationAllowed: Boolean
|
17020
16725
|
|
17021
|
-
"""
|
17022
|
-
True if marketplace accrues shipping revenue, false if sellers accrue shipping revenue
|
17023
|
-
"""
|
17024
|
-
marketplaceAccruesShippingRevenue: Boolean @deprecated(reason: "Replaced by fulfillmentModel. This will be removed on November 25, 2024.")
|
17025
|
-
|
17026
16726
|
"""True if seller products require approval"""
|
17027
16727
|
requireProductApproval: Boolean
|
17028
16728
|
|
@@ -17068,7 +16768,7 @@ input MarketplaceConfigurationInput {
|
|
17068
16768
|
enableStockAllocationForQuotes: Boolean
|
17069
16769
|
|
17070
16770
|
"""True if offer orders trigger stock allocation."""
|
17071
|
-
enableStockAllocationForOffers: Boolean
|
16771
|
+
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
17072
16772
|
|
17073
16773
|
"""True if draft orders trigger stock allocation."""
|
17074
16774
|
enableStockAllocationForDrafts: Boolean
|
@@ -18622,9 +18322,6 @@ input ShopSettingsInput {
|
|
18622
18322
|
"""Include taxes in prices."""
|
18623
18323
|
includeTaxesInPrices: Boolean
|
18624
18324
|
|
18625
|
-
"""Display prices with tax in store."""
|
18626
|
-
displayGrossPrices: Boolean @deprecated(reason: "This will be removed on November 22, 2024.")
|
18627
|
-
|
18628
18325
|
"""Charge taxes on shipping."""
|
18629
18326
|
chargeTaxesOnShipping: Boolean
|
18630
18327
|
|
@@ -18740,6 +18437,9 @@ input StorefrontThemeInput {
|
|
18740
18437
|
|
18741
18438
|
"""ID of of the selected font."""
|
18742
18439
|
font: String
|
18440
|
+
|
18441
|
+
"""Font color in hex."""
|
18442
|
+
fontColor: String
|
18743
18443
|
}
|
18744
18444
|
|
18745
18445
|
"""Update a storefront theme."""
|
@@ -20161,7 +19861,7 @@ input ProductTypeInput {
|
|
20161
19861
|
slug: String
|
20162
19862
|
|
20163
19863
|
"""
|
20164
|
-
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.
|
20165
19865
|
"""
|
20166
19866
|
isPriceOverrideAllowed: Boolean
|
20167
19867
|
|
@@ -21185,7 +20885,6 @@ input OrderLineCreateInput {
|
|
21185
20885
|
enum DraftOrderInitialStatus {
|
21186
20886
|
DRAFT
|
21187
20887
|
QUOTE
|
21188
|
-
OFFER
|
21189
20888
|
}
|
21190
20889
|
|
21191
20890
|
"""Creates a new Nautical draft order."""
|
@@ -21387,7 +21086,7 @@ type NauticalDraftOrderLineDelete {
|
|
21387
21086
|
orderErrors: [OrderError!]!
|
21388
21087
|
}
|
21389
21088
|
|
21390
|
-
"""Updates an order line of a draft
|
21089
|
+
"""Updates an order line of a draft or quote order."""
|
21391
21090
|
type DraftOrderLineUpdate {
|
21392
21091
|
"""A related draft or quote order."""
|
21393
21092
|
order: Order
|
@@ -21473,11 +21172,9 @@ input NauticalDraftOrderInput {
|
|
21473
21172
|
poNumbers: [String!]
|
21474
21173
|
}
|
21475
21174
|
|
21476
|
-
"""
|
21477
|
-
Overrides unit net price of an order line of a draft, quote, or offer order.
|
21478
|
-
"""
|
21175
|
+
"""Overrides unit net price of an order line of a draft or quote order."""
|
21479
21176
|
type DraftOrderLinePriceOverride {
|
21480
|
-
"""A related draft,
|
21177
|
+
"""A related draft, or quote order."""
|
21481
21178
|
order: Order
|
21482
21179
|
orderErrors: [OrderError!]!
|
21483
21180
|
orderLine: OrderLine
|
@@ -21494,10 +21191,10 @@ input OrderLinePriceOverrideInput {
|
|
21494
21191
|
}
|
21495
21192
|
|
21496
21193
|
"""
|
21497
|
-
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.
|
21498
21195
|
"""
|
21499
21196
|
type NauticalDraftOrderLinePriceOverride {
|
21500
|
-
"""A related draft,
|
21197
|
+
"""A related draft, or quote marketplace order."""
|
21501
21198
|
nauticalOrder: NauticalOrder
|
21502
21199
|
orderErrors: [OrderError!]!
|
21503
21200
|
nauticalOrderLine: NauticalOrderLine
|
@@ -22061,18 +21758,6 @@ type OrderFeeDelete {
|
|
22061
21758
|
orderErrors: [OrderError!]!
|
22062
21759
|
}
|
22063
21760
|
|
22064
|
-
"""
|
22065
|
-
Converts a seller or marketplace offer order to a nautical quote order.
|
22066
|
-
"""
|
22067
|
-
type OrderOfferConvertToNauticalQuoteOrder {
|
22068
|
-
"""The converted Nautical Quote order (available only for MPO)."""
|
22069
|
-
nauticalOrder: NauticalOrder
|
22070
|
-
|
22071
|
-
"""The converted Quote order"""
|
22072
|
-
order: Order
|
22073
|
-
orderErrors: [OrderError!]!
|
22074
|
-
}
|
22075
|
-
|
22076
21761
|
"""
|
22077
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
|
22078
21763
|
"""
|
@@ -24083,6 +23768,11 @@ input UserCreateInput {
|
|
24083
23768
|
"""Marketplace VAT identification number"""
|
24084
23769
|
vatIdentificationNumber: String
|
24085
23770
|
|
23771
|
+
"""
|
23772
|
+
Indicates whether a 'set password' email should be sent to the customer.
|
23773
|
+
"""
|
23774
|
+
sendCustomerSetPasswordEmail: Boolean
|
23775
|
+
|
24086
23776
|
"""
|
24087
23777
|
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
24088
23778
|
"""
|
@@ -24137,6 +23827,11 @@ input CustomerInput {
|
|
24137
23827
|
|
24138
23828
|
"""Marketplace VAT identification number"""
|
24139
23829
|
vatIdentificationNumber: String
|
23830
|
+
|
23831
|
+
"""
|
23832
|
+
Indicates whether a 'set password' email should be sent to the customer.
|
23833
|
+
"""
|
23834
|
+
sendCustomerSetPasswordEmail: Boolean
|
24140
23835
|
}
|
24141
23836
|
|
24142
23837
|
"""Deletes a customer."""
|