@nautical-commerce/graphql-schema 1.86.2 → 1.87.0-1-g393ffcc8d
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 +158 -1525
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -693,216 +693,6 @@ type Query {
|
|
693
693
|
last: Int
|
694
694
|
): ProductVariantCountableConnection
|
695
695
|
|
696
|
-
"""Look up a price book by ID."""
|
697
|
-
priceBook(
|
698
|
-
"""ID of a price book."""
|
699
|
-
id: ID!
|
700
|
-
): PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
701
|
-
|
702
|
-
"""List of price books."""
|
703
|
-
priceBooks(
|
704
|
-
"""Filtering options for price books."""
|
705
|
-
filter: PriceBookFilterInput
|
706
|
-
|
707
|
-
"""Sort price books."""
|
708
|
-
sortBy: PriceBookSortingInput
|
709
|
-
|
710
|
-
"""Return the elements in the list that come before the specified cursor."""
|
711
|
-
before: String
|
712
|
-
|
713
|
-
"""Return the elements in the list that come after the specified cursor."""
|
714
|
-
after: String
|
715
|
-
|
716
|
-
"""Return the first n elements from the list."""
|
717
|
-
first: Int
|
718
|
-
|
719
|
-
"""Return the last n elements from the list."""
|
720
|
-
last: Int
|
721
|
-
): PriceBookCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
722
|
-
|
723
|
-
"""List of price book variants in."""
|
724
|
-
priceBookVariants(
|
725
|
-
"""Price book ID to filter variants."""
|
726
|
-
priceBookId: ID!
|
727
|
-
|
728
|
-
"""Variant ID to filter variants."""
|
729
|
-
variantId: ID
|
730
|
-
|
731
|
-
"""Filtering options for price book variants ."""
|
732
|
-
filter: PriceBookVariantFilterInput
|
733
|
-
|
734
|
-
"""Sort price book variants in."""
|
735
|
-
sortBy: PriceBookVariantSortingInput
|
736
|
-
|
737
|
-
"""Return the elements in the list that come before the specified cursor."""
|
738
|
-
before: String
|
739
|
-
|
740
|
-
"""Return the elements in the list that come after the specified cursor."""
|
741
|
-
after: String
|
742
|
-
|
743
|
-
"""Return the first n elements from the list."""
|
744
|
-
first: Int
|
745
|
-
|
746
|
-
"""Return the last n elements from the list."""
|
747
|
-
last: Int
|
748
|
-
): PriceBookVariantCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
749
|
-
|
750
|
-
"""List of price book products."""
|
751
|
-
priceBookProducts(
|
752
|
-
"""Price book ID to filter products."""
|
753
|
-
priceBookId: ID!
|
754
|
-
|
755
|
-
"""Product ID to filter products from."""
|
756
|
-
productId: ID
|
757
|
-
|
758
|
-
"""Filtering options for price book products."""
|
759
|
-
filter: PriceBookProductFilterInput
|
760
|
-
|
761
|
-
"""Sort price book products."""
|
762
|
-
sortBy: PriceBookProductSortingInput
|
763
|
-
|
764
|
-
"""Return the elements in the list that come before the specified cursor."""
|
765
|
-
before: String
|
766
|
-
|
767
|
-
"""Return the elements in the list that come after the specified cursor."""
|
768
|
-
after: String
|
769
|
-
|
770
|
-
"""Return the first n elements from the list."""
|
771
|
-
first: Int
|
772
|
-
|
773
|
-
"""Return the last n elements from the list."""
|
774
|
-
last: Int
|
775
|
-
): PriceBookProductCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
776
|
-
|
777
|
-
"""List of price book product types."""
|
778
|
-
priceBookProductTypes(
|
779
|
-
"""Price book ID to filter products."""
|
780
|
-
priceBookId: ID!
|
781
|
-
|
782
|
-
"""Product type ID to filter product types."""
|
783
|
-
productTypeId: ID
|
784
|
-
|
785
|
-
"""Filtering options for price book product types."""
|
786
|
-
filter: PriceBookProductTypeFilterInput
|
787
|
-
|
788
|
-
"""Sort price book product types."""
|
789
|
-
sortBy: PriceBookProductTypeSortingInput
|
790
|
-
|
791
|
-
"""Return the elements in the list that come before the specified cursor."""
|
792
|
-
before: String
|
793
|
-
|
794
|
-
"""Return the elements in the list that come after the specified cursor."""
|
795
|
-
after: String
|
796
|
-
|
797
|
-
"""Return the first n elements from the list."""
|
798
|
-
first: Int
|
799
|
-
|
800
|
-
"""Return the last n elements from the list."""
|
801
|
-
last: Int
|
802
|
-
): PriceBookProductTypeCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
803
|
-
|
804
|
-
"""List of price book variants in history table."""
|
805
|
-
priceBookVariantsHistory(
|
806
|
-
"""Price book ID to filter variants from history table."""
|
807
|
-
priceBookId: ID!
|
808
|
-
|
809
|
-
"""Variant ID to filter variants from history table."""
|
810
|
-
variantId: ID!
|
811
|
-
|
812
|
-
"""Filtering options for price book variants from history table."""
|
813
|
-
filter: PriceBookVariantHistoryFilterInput
|
814
|
-
|
815
|
-
"""Sort price book variants in history table."""
|
816
|
-
sortBy: PriceBookVariantHistorySortingInput
|
817
|
-
|
818
|
-
"""Return the elements in the list that come before the specified cursor."""
|
819
|
-
before: String
|
820
|
-
|
821
|
-
"""Return the elements in the list that come after the specified cursor."""
|
822
|
-
after: String
|
823
|
-
|
824
|
-
"""Return the first n elements from the list."""
|
825
|
-
first: Int
|
826
|
-
|
827
|
-
"""Return the last n elements from the list."""
|
828
|
-
last: Int
|
829
|
-
): PriceBookVariantHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
830
|
-
|
831
|
-
"""List of price book products in history table."""
|
832
|
-
priceBookProductsHistory(
|
833
|
-
"""Price book ID to filter products in history table."""
|
834
|
-
priceBookId: ID!
|
835
|
-
|
836
|
-
"""Product ID to filter products from history table."""
|
837
|
-
productId: ID!
|
838
|
-
|
839
|
-
"""Filtering options for price book products in history table."""
|
840
|
-
filter: PriceBookProductHistoryFilterInput
|
841
|
-
|
842
|
-
"""Sort price book products in history table."""
|
843
|
-
sortBy: PriceBookProductHistorySortingInput
|
844
|
-
|
845
|
-
"""Return the elements in the list that come before the specified cursor."""
|
846
|
-
before: String
|
847
|
-
|
848
|
-
"""Return the elements in the list that come after the specified cursor."""
|
849
|
-
after: String
|
850
|
-
|
851
|
-
"""Return the first n elements from the list."""
|
852
|
-
first: Int
|
853
|
-
|
854
|
-
"""Return the last n elements from the list."""
|
855
|
-
last: Int
|
856
|
-
): PriceBookProductHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
857
|
-
|
858
|
-
"""List of price book product types in history tables."""
|
859
|
-
priceBookProductTypesHistory(
|
860
|
-
"""Price book ID to filter products in history tables."""
|
861
|
-
priceBookId: ID!
|
862
|
-
|
863
|
-
"""Product type ID to filter product types from history table."""
|
864
|
-
productTypeId: ID!
|
865
|
-
|
866
|
-
"""Filtering options for price book product types in history tables."""
|
867
|
-
filter: PriceBookProductTypeHistoryFilterInput
|
868
|
-
|
869
|
-
"""Sort price book product types in history tables."""
|
870
|
-
sortBy: PriceBookProductTypeHistorySortingInput
|
871
|
-
|
872
|
-
"""Return the elements in the list that come before the specified cursor."""
|
873
|
-
before: String
|
874
|
-
|
875
|
-
"""Return the elements in the list that come after the specified cursor."""
|
876
|
-
after: String
|
877
|
-
|
878
|
-
"""Return the first n elements from the list."""
|
879
|
-
first: Int
|
880
|
-
|
881
|
-
"""Return the last n elements from the list."""
|
882
|
-
last: Int
|
883
|
-
): PriceBookProductTypeHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
884
|
-
|
885
|
-
"""Look up users attached to a price book by ID."""
|
886
|
-
priceBookUsers(
|
887
|
-
"""Sort price book users."""
|
888
|
-
sortBy: UserSortingInput
|
889
|
-
|
890
|
-
"""ID of a price book."""
|
891
|
-
priceBookId: ID!
|
892
|
-
|
893
|
-
"""Return the elements in the list that come before the specified cursor."""
|
894
|
-
before: String
|
895
|
-
|
896
|
-
"""Return the elements in the list that come after the specified cursor."""
|
897
|
-
after: String
|
898
|
-
|
899
|
-
"""Return the first n elements from the list."""
|
900
|
-
first: Int
|
901
|
-
|
902
|
-
"""Return the last n elements from the list."""
|
903
|
-
last: Int
|
904
|
-
): UserCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
905
|
-
|
906
696
|
"""Look up a plugin by ID."""
|
907
697
|
plugin(
|
908
698
|
"""ID of the plugin."""
|
@@ -1193,57 +983,6 @@ type Query {
|
|
1193
983
|
last: Int
|
1194
984
|
): NauticalOrderCountableConnection
|
1195
985
|
|
1196
|
-
"""List of quote orders."""
|
1197
|
-
nauticalQuoteOrders(
|
1198
|
-
"""Sort quote orders."""
|
1199
|
-
sortBy: OrderSortingInput
|
1200
|
-
|
1201
|
-
"""Filtering options for nautical quote orders."""
|
1202
|
-
filter: NauticalOrderQuoteFilterInput
|
1203
|
-
|
1204
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1205
|
-
before: String
|
1206
|
-
|
1207
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1208
|
-
after: String
|
1209
|
-
|
1210
|
-
"""Return the first n elements from the list."""
|
1211
|
-
first: Int
|
1212
|
-
|
1213
|
-
"""Return the last n elements from the list."""
|
1214
|
-
last: Int
|
1215
|
-
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1216
|
-
|
1217
|
-
"""Look up a nautical quote order by token"""
|
1218
|
-
nauticalQuoteOrderByToken(
|
1219
|
-
"""The Nautical quote order token"""
|
1220
|
-
token: NauticalUUID!
|
1221
|
-
): NauticalOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1222
|
-
|
1223
|
-
"""List of quote orders."""
|
1224
|
-
quoteOrders(
|
1225
|
-
"""Sort quote orders."""
|
1226
|
-
sortBy: OrderSortingInput
|
1227
|
-
|
1228
|
-
"""Filtering options for quote orders."""
|
1229
|
-
filter: OrderQuoteFilterInput
|
1230
|
-
|
1231
|
-
"""Seller global id to filter by"""
|
1232
|
-
identifier: ID
|
1233
|
-
|
1234
|
-
"""Return the elements in the list that come before the specified cursor."""
|
1235
|
-
before: String
|
1236
|
-
|
1237
|
-
"""Return the elements in the list that come after the specified cursor."""
|
1238
|
-
after: String
|
1239
|
-
|
1240
|
-
"""Return the first n elements from the list."""
|
1241
|
-
first: Int
|
1242
|
-
|
1243
|
-
"""Return the last n elements from the list."""
|
1244
|
-
last: Int
|
1245
|
-
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1246
|
-
|
1247
986
|
"""Return the total sales amount from a specific period."""
|
1248
987
|
ordersTotal(
|
1249
988
|
"""Seller global id to filter by"""
|
@@ -2048,7 +1787,8 @@ enum EventTypeEnum {
|
|
2048
1787
|
order_canceled
|
2049
1788
|
partial_order_cancel
|
2050
1789
|
order_refund_confirmation
|
2051
|
-
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
|
2052
1792
|
merchant_account_set_password
|
2053
1793
|
account_set_staff_password
|
2054
1794
|
csv_export_products_success
|
@@ -2071,7 +1811,7 @@ enum EventTypeEnum {
|
|
2071
1811
|
account_deactivated
|
2072
1812
|
pending_order
|
2073
1813
|
pending_customer
|
2074
|
-
quote_requested
|
1814
|
+
quote_requested @deprecated(reason: "Quotes are deprecated. This value will be deprecated on September 10, 2025")
|
2075
1815
|
}
|
2076
1816
|
|
2077
1817
|
"""Represents an email template preview."""
|
@@ -2243,27 +1983,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2243
1983
|
"""Return the last n elements from the list."""
|
2244
1984
|
last: Int
|
2245
1985
|
): OrderCountableConnection
|
2246
|
-
|
2247
|
-
"""List of user's quote seller orders."""
|
2248
|
-
quoteOrders(
|
2249
|
-
"""Filtering options for orders."""
|
2250
|
-
filter: CustomerOrderFilterInput
|
2251
|
-
|
2252
|
-
"""Sort orders."""
|
2253
|
-
sortBy: OrderSortingInput
|
2254
|
-
|
2255
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2256
|
-
before: String
|
2257
|
-
|
2258
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2259
|
-
after: String
|
2260
|
-
|
2261
|
-
"""Return the first n elements from the list."""
|
2262
|
-
first: Int
|
2263
|
-
|
2264
|
-
"""Return the last n elements from the list."""
|
2265
|
-
last: Int
|
2266
|
-
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2267
1986
|
numOrders: Int
|
2268
1987
|
|
2269
1988
|
"""List of user's nautical orders."""
|
@@ -2287,27 +2006,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2287
2006
|
last: Int
|
2288
2007
|
): NauticalOrderCountableConnection
|
2289
2008
|
|
2290
|
-
"""List of user's nautical quote orders."""
|
2291
|
-
nauticalQuoteOrders(
|
2292
|
-
"""Filtering options for orders."""
|
2293
|
-
filter: CustomerNauticalOrderFilterInput
|
2294
|
-
|
2295
|
-
"""Sort orders."""
|
2296
|
-
sortBy: OrderSortingInput
|
2297
|
-
|
2298
|
-
"""Return the elements in the list that come before the specified cursor."""
|
2299
|
-
before: String
|
2300
|
-
|
2301
|
-
"""Return the elements in the list that come after the specified cursor."""
|
2302
|
-
after: String
|
2303
|
-
|
2304
|
-
"""Return the first n elements from the list."""
|
2305
|
-
first: Int
|
2306
|
-
|
2307
|
-
"""Return the last n elements from the list."""
|
2308
|
-
last: Int
|
2309
|
-
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2310
|
-
|
2311
2009
|
"""List of user's permissions."""
|
2312
2010
|
userPermissions: [UserPermission!]!
|
2313
2011
|
|
@@ -2367,9 +2065,6 @@ type User implements Node & ObjectWithMetadata {
|
|
2367
2065
|
"""List of documents associated with the user."""
|
2368
2066
|
documents: [Document!]!
|
2369
2067
|
|
2370
|
-
"""Returns values of price book the user is added to"""
|
2371
|
-
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
2372
|
-
|
2373
2068
|
"""
|
2374
2069
|
If null, then the environment isn't set and they don't have dashboard reporting enabled
|
2375
2070
|
"""
|
@@ -2685,7 +2380,7 @@ type CheckoutLine implements Node & ObjectWithMetadata {
|
|
2685
2380
|
seller: Seller
|
2686
2381
|
|
2687
2382
|
"""
|
2688
|
-
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
|
2689
2384
|
"""
|
2690
2385
|
discountedUnitPrice: TaxedMoney!
|
2691
2386
|
|
@@ -2724,7 +2419,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2724
2419
|
allowBackorders: Boolean
|
2725
2420
|
|
2726
2421
|
"""
|
2727
|
-
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
|
2728
2423
|
"""
|
2729
2424
|
isPriceOverrideAllowed: Boolean!
|
2730
2425
|
isShippingRequired: Boolean!
|
@@ -2863,7 +2558,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
2863
2558
|
subStatus: ProductSubStatus!
|
2864
2559
|
|
2865
2560
|
"""
|
2866
|
-
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
|
2867
2562
|
"""
|
2868
2563
|
isPriceOverrideAllowed: Boolean!
|
2869
2564
|
isShippingRequired: Boolean!
|
@@ -3236,14 +2931,12 @@ type MarketplaceConfiguration {
|
|
3236
2931
|
|
3237
2932
|
"""Supported countries for the marketplace"""
|
3238
2933
|
supportedCountries: [String!]!
|
3239
|
-
sellerCanSendQuote: Boolean!
|
3240
2934
|
|
3241
2935
|
"""Determines scope for checking duplicated variant attribute sets"""
|
3242
2936
|
variantUniqueness: VariantUniquenessEnum
|
3243
2937
|
|
3244
2938
|
"""Returns list of default checklists for seller."""
|
3245
2939
|
defaultSellerChecklists: [DefaultSellerChecklist!]!
|
3246
|
-
enableStockAllocationForQuotes: Boolean!
|
3247
2940
|
enableStockAllocationForDrafts: Boolean!
|
3248
2941
|
validateStockOnOrderPaymentCreation: Boolean!
|
3249
2942
|
|
@@ -4298,7 +3991,7 @@ type Order implements Node & ObjectWithMetadata {
|
|
4298
3991
|
"""
|
4299
3992
|
List of sub-statuses that can be changed to based on current state of the order
|
4300
3993
|
"""
|
4301
|
-
allowedSubStatuses: [OrderSubStatusEnum!]
|
3994
|
+
allowedSubStatuses: [OrderSubStatusEnum!] @deprecated(reason: "This will be removed on September 9, 2025.")
|
4302
3995
|
|
4303
3996
|
"""Shipping methods that can be used with this order."""
|
4304
3997
|
availableShippingMethods: [ShippingMethod!]
|
@@ -4391,9 +4084,6 @@ enum OrderOrderSource {
|
|
4391
4084
|
"""draft"""
|
4392
4085
|
DRAFT
|
4393
4086
|
|
4394
|
-
"""quote"""
|
4395
|
-
QUOTE
|
4396
|
-
|
4397
4087
|
"""manual"""
|
4398
4088
|
MANUAL
|
4399
4089
|
|
@@ -4404,7 +4094,6 @@ enum OrderOrderSource {
|
|
4404
4094
|
"""An enumeration."""
|
4405
4095
|
enum OrderStatus {
|
4406
4096
|
DRAFT
|
4407
|
-
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
4408
4097
|
UNFULFILLED
|
4409
4098
|
PARTIALLY_FULFILLED
|
4410
4099
|
FULFILLED
|
@@ -4419,12 +4108,6 @@ enum OrderStatus {
|
|
4419
4108
|
|
4420
4109
|
"""An enumeration."""
|
4421
4110
|
enum OrderSubStatus {
|
4422
|
-
"""In Review"""
|
4423
|
-
IN_REVIEW
|
4424
|
-
|
4425
|
-
"""Quote Requested"""
|
4426
|
-
QUOTE_REQUESTED
|
4427
|
-
|
4428
4111
|
"""Awaiting Payment"""
|
4429
4112
|
AWAITING_PAYMENT
|
4430
4113
|
|
@@ -4996,6 +4679,8 @@ Represents a type of product. It defines what attributes are available to produc
|
|
4996
4679
|
type ProductType implements Node & ObjectWithMetadata {
|
4997
4680
|
"""The ID of the object"""
|
4998
4681
|
id: ID!
|
4682
|
+
description: String!
|
4683
|
+
descriptionHtml: String!
|
4999
4684
|
externalId: String
|
5000
4685
|
|
5001
4686
|
"""External source from which the product type is imported."""
|
@@ -5008,7 +4693,7 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
5008
4693
|
weight: Weight
|
5009
4694
|
|
5010
4695
|
"""
|
5011
|
-
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
|
5012
4697
|
"""
|
5013
4698
|
isPriceOverrideAllowed: Boolean!
|
5014
4699
|
createdBy: Seller
|
@@ -5266,7 +4951,6 @@ enum PermissionEnum {
|
|
5266
4951
|
MANAGE_DOCUMENTS
|
5267
4952
|
MANAGE_EMAILS
|
5268
4953
|
MANAGE_PLUGINS
|
5269
|
-
MANAGE_PRICEBOOKS
|
5270
4954
|
MANAGE_STOREFRONTS
|
5271
4955
|
MANAGE_MENUS
|
5272
4956
|
MANAGE_ORDERS
|
@@ -5415,8 +5099,6 @@ enum WebhookEventTypeEnum {
|
|
5415
5099
|
PAYOUT_CREATED
|
5416
5100
|
PAYOUT_UPDATED
|
5417
5101
|
PAYOUT_DELETED
|
5418
|
-
PRICE_BOOK_CREATED
|
5419
|
-
PRICE_BOOK_UPDATED
|
5420
5102
|
PRODUCT_CREATED
|
5421
5103
|
PRODUCT_DELETED
|
5422
5104
|
PRODUCT_UPDATED
|
@@ -6038,7 +5720,7 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
6038
5720
|
"""
|
6039
5721
|
List of sub-statuses that can be changed to based on current state of the order
|
6040
5722
|
"""
|
6041
|
-
allowedSubStatuses: [OrderSubStatusEnum!]
|
5723
|
+
allowedSubStatuses: [OrderSubStatusEnum!] @deprecated(reason: "This will be removed on September 9, 2025.")
|
6042
5724
|
|
6043
5725
|
"""List"""
|
6044
5726
|
sellerUnfulfilled: [OrderLine!]!
|
@@ -6140,9 +5822,6 @@ enum NauticalOrderOrderSource {
|
|
6140
5822
|
"""draft"""
|
6141
5823
|
DRAFT
|
6142
5824
|
|
6143
|
-
"""quote"""
|
6144
|
-
QUOTE
|
6145
|
-
|
6146
5825
|
"""manual"""
|
6147
5826
|
MANUAL
|
6148
5827
|
|
@@ -6153,7 +5832,6 @@ enum NauticalOrderOrderSource {
|
|
6153
5832
|
"""An enumeration."""
|
6154
5833
|
enum NauticalOrderStatus {
|
6155
5834
|
DRAFT
|
6156
|
-
QUOTE
|
6157
5835
|
UNFULFILLED
|
6158
5836
|
PARTIALLY_FULFILLED
|
6159
5837
|
FULFILLED
|
@@ -6168,12 +5846,6 @@ enum NauticalOrderStatus {
|
|
6168
5846
|
|
6169
5847
|
"""An enumeration."""
|
6170
5848
|
enum NauticalOrderSubStatus {
|
6171
|
-
"""In Review"""
|
6172
|
-
IN_REVIEW
|
6173
|
-
|
6174
|
-
"""Quote Requested"""
|
6175
|
-
QUOTE_REQUESTED
|
6176
|
-
|
6177
5849
|
"""Awaiting Payment"""
|
6178
5850
|
AWAITING_PAYMENT
|
6179
5851
|
|
@@ -6182,12 +5854,6 @@ enum NauticalOrderSubStatus {
|
|
6182
5854
|
}
|
6183
5855
|
|
6184
5856
|
enum OrderSubStatusEnum {
|
6185
|
-
"""In Review"""
|
6186
|
-
IN_REVIEW @deprecated(reason: "This will be removed on June 11, 2025")
|
6187
|
-
|
6188
|
-
"""Quote Requested"""
|
6189
|
-
QUOTE_REQUESTED @deprecated(reason: "This will be removed on June 11, 2025")
|
6190
|
-
|
6191
5857
|
"""Awaiting Payment"""
|
6192
5858
|
AWAITING_PAYMENT
|
6193
5859
|
|
@@ -6253,9 +5919,6 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
6253
5919
|
"""List of allocations across warehouses."""
|
6254
5920
|
allocations: [Allocation!]
|
6255
5921
|
|
6256
|
-
"""The pricebook, if any, that changed the price of this line."""
|
6257
|
-
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
6258
|
-
|
6259
5922
|
"""The number of items ordered on this order line."""
|
6260
5923
|
quantityOrdered: Int!
|
6261
5924
|
|
@@ -6352,9 +6015,6 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
6352
6015
|
"""Variant name in the customer's language"""
|
6353
6016
|
translatedVariantName: String!
|
6354
6017
|
|
6355
|
-
"""The pricebook, if any, that changed the price of this line"""
|
6356
|
-
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
6357
|
-
|
6358
6018
|
"""The related orderline attached to the connected seller order"""
|
6359
6019
|
sellerOrderline: OrderLine
|
6360
6020
|
|
@@ -6379,15 +6039,32 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
6379
6039
|
discountedUnitPrice: TaxedMoney
|
6380
6040
|
}
|
6381
6041
|
|
6382
|
-
"""
|
6383
|
-
|
6384
|
-
"""
|
6385
|
-
|
6386
|
-
|
6387
|
-
|
6042
|
+
"""Represents allocation."""
|
6043
|
+
type Allocation implements Node {
|
6044
|
+
"""The ID of the object"""
|
6045
|
+
id: ID!
|
6046
|
+
|
6047
|
+
"""Quantity allocated for orders."""
|
6048
|
+
quantity: Int!
|
6049
|
+
|
6050
|
+
"""The warehouse were items were allocated."""
|
6051
|
+
warehouse: Warehouse!
|
6052
|
+
}
|
6053
|
+
|
6054
|
+
"""Represents warehouse."""
|
6055
|
+
type Warehouse implements Node & ObjectWithMetadata {
|
6056
|
+
externalId: String
|
6057
|
+
externalSource: String
|
6388
6058
|
|
6389
6059
|
"""The ID of the object"""
|
6390
6060
|
id: ID!
|
6061
|
+
name: String!
|
6062
|
+
slug: String!
|
6063
|
+
companyName: String!
|
6064
|
+
shippingZones(offset: Int, before: String, after: String, first: Int, last: Int): ShippingZoneCountableConnection!
|
6065
|
+
address: Address!
|
6066
|
+
email: String!
|
6067
|
+
seller: Seller!
|
6391
6068
|
|
6392
6069
|
"""
|
6393
6070
|
List of private metadata items.Requires proper staff permissions to access.
|
@@ -6396,157 +6073,7 @@ type PriceBook implements Node & ObjectWithMetadata {
|
|
6396
6073
|
|
6397
6074
|
"""List of public metadata items. Can be accessed without permissions."""
|
6398
6075
|
metadata: [MetadataItem!]!
|
6399
|
-
|
6400
|
-
"""Name of PriceBook"""
|
6401
|
-
name: String!
|
6402
|
-
|
6403
|
-
"""Determines if the PriceBook is active"""
|
6404
|
-
deleted: Boolean!
|
6405
|
-
|
6406
|
-
"""List of variants for the price book."""
|
6407
|
-
priceBookVariants: [PriceBookVariant!]
|
6408
|
-
|
6409
|
-
"""List of products for the price book."""
|
6410
|
-
priceBookProducts: [PriceBookProduct!]
|
6411
|
-
|
6412
|
-
"""List of product types for the price book."""
|
6413
|
-
priceBookProductTypes: [PriceBookProductType!]
|
6414
|
-
|
6415
|
-
"""Number of variants mapped to this price book"""
|
6416
|
-
numberOfProducts: Int!
|
6417
|
-
|
6418
|
-
"""Number of variants mapped to this price book"""
|
6419
|
-
numberOfProductTypes: Int!
|
6420
|
-
|
6421
|
-
"""Number of variants mapped to this price book"""
|
6422
|
-
numberOfVariants: Int!
|
6423
|
-
}
|
6424
|
-
|
6425
|
-
"""Variants added to the PriceBook"""
|
6426
|
-
type PriceBookVariant implements Node {
|
6427
|
-
"""The ID of the object"""
|
6428
|
-
id: ID!
|
6429
|
-
priceBook: PriceBook!
|
6430
|
-
variant: ProductVariant!
|
6431
|
-
valueType: PriceBookVariantValueType!
|
6432
|
-
currency: String!
|
6433
|
-
|
6434
|
-
"""
|
6435
|
-
Amount to decrease or increase for the variant if type selected is override orpercentage.
|
6436
|
-
"""
|
6437
|
-
price: Money!
|
6438
|
-
|
6439
|
-
"""
|
6440
|
-
Percentage to decrease or increase for the variant's price if type selected is fixed
|
6441
|
-
"""
|
6442
|
-
percentage: Float!
|
6443
|
-
}
|
6444
|
-
|
6445
|
-
"""An enumeration."""
|
6446
|
-
enum PriceBookVariantValueType {
|
6447
|
-
"""Override"""
|
6448
|
-
OVERRIDE
|
6449
|
-
|
6450
|
-
"""Adjust Percentage"""
|
6451
|
-
ADJUST_PERCENTAGE
|
6452
|
-
|
6453
|
-
"""Adjust Fixed"""
|
6454
|
-
ADJUST_FIXED
|
6455
|
-
}
|
6456
|
-
|
6457
|
-
"""Products added to the PriceBook"""
|
6458
|
-
type PriceBookProduct implements Node {
|
6459
|
-
"""The ID of the object"""
|
6460
|
-
id: ID!
|
6461
|
-
priceBook: PriceBook!
|
6462
|
-
product: Product!
|
6463
|
-
valueType: PriceBookProductValueType!
|
6464
|
-
currency: String!
|
6465
|
-
|
6466
|
-
"""
|
6467
|
-
Amount to decrease or increase for the variants of the product if type selected isoverride or percentage.
|
6468
|
-
"""
|
6469
|
-
price: Money!
|
6470
|
-
|
6471
|
-
"""
|
6472
|
-
Percentage to decrease or increase for the product's variants price if type selectedis fixed.
|
6473
|
-
"""
|
6474
|
-
percentage: Float!
|
6475
|
-
}
|
6476
|
-
|
6477
|
-
"""An enumeration."""
|
6478
|
-
enum PriceBookProductValueType {
|
6479
|
-
"""adjust_percentage"""
|
6480
|
-
ADJUST_PERCENTAGE
|
6481
|
-
|
6482
|
-
"""adjust_fixed"""
|
6483
|
-
ADJUST_FIXED
|
6484
|
-
}
|
6485
|
-
|
6486
|
-
"""Product types added to the PriceBook"""
|
6487
|
-
type PriceBookProductType implements Node {
|
6488
|
-
"""The ID of the object"""
|
6489
|
-
id: ID!
|
6490
|
-
priceBook: PriceBook!
|
6491
|
-
productType: ProductType!
|
6492
|
-
valueType: PriceBookProductTypeValueType!
|
6493
|
-
currency: String!
|
6494
|
-
|
6495
|
-
"""
|
6496
|
-
Amount to decrease or increase for the variants of the product type if type selectedis override or percentage.
|
6497
|
-
"""
|
6498
|
-
price: Money!
|
6499
|
-
|
6500
|
-
"""
|
6501
|
-
Percentage to decrease or increase for the product type's variants price if typeselected is fixed.
|
6502
|
-
"""
|
6503
|
-
percentage: Float!
|
6504
|
-
}
|
6505
|
-
|
6506
|
-
"""An enumeration."""
|
6507
|
-
enum PriceBookProductTypeValueType {
|
6508
|
-
"""adjust_percentage"""
|
6509
|
-
ADJUST_PERCENTAGE
|
6510
|
-
|
6511
|
-
"""adjust_fixed"""
|
6512
|
-
ADJUST_FIXED
|
6513
|
-
}
|
6514
|
-
|
6515
|
-
"""Represents allocation."""
|
6516
|
-
type Allocation implements Node {
|
6517
|
-
"""The ID of the object"""
|
6518
|
-
id: ID!
|
6519
|
-
|
6520
|
-
"""Quantity allocated for orders."""
|
6521
|
-
quantity: Int!
|
6522
|
-
|
6523
|
-
"""The warehouse were items were allocated."""
|
6524
|
-
warehouse: Warehouse!
|
6525
|
-
}
|
6526
|
-
|
6527
|
-
"""Represents warehouse."""
|
6528
|
-
type Warehouse implements Node & ObjectWithMetadata {
|
6529
|
-
externalId: String
|
6530
|
-
externalSource: String
|
6531
|
-
|
6532
|
-
"""The ID of the object"""
|
6533
|
-
id: ID!
|
6534
|
-
name: String!
|
6535
|
-
slug: String!
|
6536
|
-
companyName: String!
|
6537
|
-
shippingZones(offset: Int, before: String, after: String, first: Int, last: Int): ShippingZoneCountableConnection!
|
6538
|
-
address: Address!
|
6539
|
-
email: String!
|
6540
|
-
seller: Seller!
|
6541
|
-
|
6542
|
-
"""
|
6543
|
-
List of private metadata items.Requires proper staff permissions to access.
|
6544
|
-
"""
|
6545
|
-
privateMetadata: [MetadataItem!]!
|
6546
|
-
|
6547
|
-
"""List of public metadata items. Can be accessed without permissions."""
|
6548
|
-
metadata: [MetadataItem!]!
|
6549
|
-
}
|
6076
|
+
}
|
6550
6077
|
|
6551
6078
|
type ShippingZoneCountableConnection {
|
6552
6079
|
"""Pagination data for this connection."""
|
@@ -7075,10 +6602,13 @@ enum OrderEventsEmailsEnum {
|
|
7075
6602
|
MPO_ORDER_NOTIFICATION
|
7076
6603
|
|
7077
6604
|
"""The quote email was sent"""
|
7078
|
-
QUOTE_SENT
|
6605
|
+
QUOTE_SENT @deprecated(reason: "Use PAYMENT_LINK_SENT instead. This value will be deprecated on September 10, 2025")
|
7079
6606
|
|
7080
6607
|
"""The quote request email was sent to the marketplace operator"""
|
7081
|
-
QUOTE_REQUESTED
|
6608
|
+
QUOTE_REQUESTED @deprecated(reason: "Quotes are deprecated. This value will be deprecated on September 10, 2025")
|
6609
|
+
|
6610
|
+
"""The payment link email was sent"""
|
6611
|
+
PAYMENT_LINK_SENT
|
7082
6612
|
}
|
7083
6613
|
|
7084
6614
|
type NauticalOrderEventOrderLineObject {
|
@@ -8259,7 +7789,6 @@ enum OrderStatusFilter {
|
|
8259
7789
|
enum OrderSourceFilter {
|
8260
7790
|
CHECKOUT
|
8261
7791
|
DRAFT
|
8262
|
-
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
8263
7792
|
MANUAL
|
8264
7793
|
EXTERNAL
|
8265
7794
|
}
|
@@ -8989,9 +8518,6 @@ type Shop {
|
|
8989
8518
|
"""Dashboard url for the shop."""
|
8990
8519
|
dashboardUrl: String
|
8991
8520
|
|
8992
|
-
"""Whether the marketplace has enabled quote orders."""
|
8993
|
-
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8994
|
-
|
8995
8521
|
"""Shop's name."""
|
8996
8522
|
name: String!
|
8997
8523
|
|
@@ -9275,12 +8801,6 @@ type SellerOnboardingSettings implements Node {
|
|
9275
8801
|
"""Welcome message set by MP for sellers."""
|
9276
8802
|
welcomeMessage: String
|
9277
8803
|
|
9278
|
-
"""The fulfillment model used by the MP."""
|
9279
|
-
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025")
|
9280
|
-
|
9281
|
-
"""A summary of required documents from sellers."""
|
9282
|
-
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025")
|
9283
|
-
|
9284
8804
|
"""Text displayed when the MP is not accepting new sellers."""
|
9285
8805
|
notAcceptingSellersMessage: String
|
9286
8806
|
|
@@ -9691,472 +9211,6 @@ enum ProductTypeSortField {
|
|
9691
9211
|
EXTERNAL_SOURCE
|
9692
9212
|
}
|
9693
9213
|
|
9694
|
-
type PriceBookCountableConnection {
|
9695
|
-
"""Pagination data for this connection."""
|
9696
|
-
pageInfo: PageInfo!
|
9697
|
-
edges: [PriceBookCountableEdge!]!
|
9698
|
-
|
9699
|
-
"""A total count of items in the collection."""
|
9700
|
-
totalCount: Int
|
9701
|
-
}
|
9702
|
-
|
9703
|
-
type PriceBookCountableEdge {
|
9704
|
-
"""The item at the end of the edge."""
|
9705
|
-
node: PriceBook!
|
9706
|
-
|
9707
|
-
"""A cursor for use in pagination."""
|
9708
|
-
cursor: String!
|
9709
|
-
}
|
9710
|
-
|
9711
|
-
input PriceBookFilterInput {
|
9712
|
-
search: String
|
9713
|
-
deleted: Boolean
|
9714
|
-
metadata: MetadataFilterInput
|
9715
|
-
privateMetadata: MetadataFilterInput
|
9716
|
-
}
|
9717
|
-
|
9718
|
-
input PriceBookSortingInput {
|
9719
|
-
"""Specifies the direction in which to sort products."""
|
9720
|
-
direction: OrderDirection!
|
9721
|
-
|
9722
|
-
"""Sort pricebooks by the selected field."""
|
9723
|
-
field: PriceBookSortField!
|
9724
|
-
}
|
9725
|
-
|
9726
|
-
enum PriceBookSortField {
|
9727
|
-
"""Sort pricebook by name."""
|
9728
|
-
NAME
|
9729
|
-
}
|
9730
|
-
|
9731
|
-
type PriceBookVariantCountableConnection {
|
9732
|
-
"""Pagination data for this connection."""
|
9733
|
-
pageInfo: PageInfo!
|
9734
|
-
edges: [PriceBookVariantCountableEdge!]!
|
9735
|
-
|
9736
|
-
"""A total count of items in the collection."""
|
9737
|
-
totalCount: Int
|
9738
|
-
}
|
9739
|
-
|
9740
|
-
type PriceBookVariantCountableEdge {
|
9741
|
-
"""The item at the end of the edge."""
|
9742
|
-
node: PriceBookVariant!
|
9743
|
-
|
9744
|
-
"""A cursor for use in pagination."""
|
9745
|
-
cursor: String!
|
9746
|
-
}
|
9747
|
-
|
9748
|
-
input PriceBookVariantFilterInput {
|
9749
|
-
search: String
|
9750
|
-
}
|
9751
|
-
|
9752
|
-
input PriceBookVariantSortingInput {
|
9753
|
-
"""Specifies the direction in which to sort products."""
|
9754
|
-
direction: OrderDirection!
|
9755
|
-
|
9756
|
-
"""Sort pricebook variants by the selected field."""
|
9757
|
-
field: PriceBookVariantSortField!
|
9758
|
-
}
|
9759
|
-
|
9760
|
-
enum PriceBookVariantSortField {
|
9761
|
-
"""Sort pricebook variant history by number."""
|
9762
|
-
NUMBER
|
9763
|
-
|
9764
|
-
"""Sort pricebook variant history by type."""
|
9765
|
-
TYPE
|
9766
|
-
|
9767
|
-
"""Sort pricebook variant history by price."""
|
9768
|
-
PRICE
|
9769
|
-
|
9770
|
-
"""Sort pricebook variant history by percentage."""
|
9771
|
-
PERCENTAGE
|
9772
|
-
}
|
9773
|
-
|
9774
|
-
type PriceBookProductCountableConnection {
|
9775
|
-
"""Pagination data for this connection."""
|
9776
|
-
pageInfo: PageInfo!
|
9777
|
-
edges: [PriceBookProductCountableEdge!]!
|
9778
|
-
|
9779
|
-
"""A total count of items in the collection."""
|
9780
|
-
totalCount: Int
|
9781
|
-
}
|
9782
|
-
|
9783
|
-
type PriceBookProductCountableEdge {
|
9784
|
-
"""The item at the end of the edge."""
|
9785
|
-
node: PriceBookProduct!
|
9786
|
-
|
9787
|
-
"""A cursor for use in pagination."""
|
9788
|
-
cursor: String!
|
9789
|
-
}
|
9790
|
-
|
9791
|
-
input PriceBookProductFilterInput {
|
9792
|
-
search: String
|
9793
|
-
}
|
9794
|
-
|
9795
|
-
input PriceBookProductSortingInput {
|
9796
|
-
"""Specifies the direction in which to sort products."""
|
9797
|
-
direction: OrderDirection!
|
9798
|
-
|
9799
|
-
"""Sort pricebooks products by the selected field."""
|
9800
|
-
field: PriceBookProductSortField!
|
9801
|
-
}
|
9802
|
-
|
9803
|
-
enum PriceBookProductSortField {
|
9804
|
-
"""Sort pricebook product history by number."""
|
9805
|
-
NUMBER
|
9806
|
-
|
9807
|
-
"""Sort pricebook product history by type."""
|
9808
|
-
TYPE
|
9809
|
-
|
9810
|
-
"""Sort pricebook product history by price."""
|
9811
|
-
PRICE
|
9812
|
-
|
9813
|
-
"""Sort pricebook product history by percentage."""
|
9814
|
-
PERCENTAGE
|
9815
|
-
}
|
9816
|
-
|
9817
|
-
type PriceBookProductTypeCountableConnection {
|
9818
|
-
"""Pagination data for this connection."""
|
9819
|
-
pageInfo: PageInfo!
|
9820
|
-
edges: [PriceBookProductTypeCountableEdge!]!
|
9821
|
-
|
9822
|
-
"""A total count of items in the collection."""
|
9823
|
-
totalCount: Int
|
9824
|
-
}
|
9825
|
-
|
9826
|
-
type PriceBookProductTypeCountableEdge {
|
9827
|
-
"""The item at the end of the edge."""
|
9828
|
-
node: PriceBookProductType!
|
9829
|
-
|
9830
|
-
"""A cursor for use in pagination."""
|
9831
|
-
cursor: String!
|
9832
|
-
}
|
9833
|
-
|
9834
|
-
input PriceBookProductTypeFilterInput {
|
9835
|
-
search: String
|
9836
|
-
}
|
9837
|
-
|
9838
|
-
input PriceBookProductTypeSortingInput {
|
9839
|
-
"""Specifies the direction in which to sort products."""
|
9840
|
-
direction: OrderDirection!
|
9841
|
-
|
9842
|
-
"""Sort pricebooks products types by the selected field."""
|
9843
|
-
field: PriceBookProductTypeSortField!
|
9844
|
-
}
|
9845
|
-
|
9846
|
-
enum PriceBookProductTypeSortField {
|
9847
|
-
"""Sort pricebook product type history by number."""
|
9848
|
-
NUMBER
|
9849
|
-
|
9850
|
-
"""Sort pricebook product type history by type."""
|
9851
|
-
TYPE
|
9852
|
-
|
9853
|
-
"""Sort pricebook product type history by price."""
|
9854
|
-
PRICE
|
9855
|
-
|
9856
|
-
"""Sort pricebook product type history by percentage."""
|
9857
|
-
PERCENTAGE
|
9858
|
-
}
|
9859
|
-
|
9860
|
-
type PriceBookVariantHistoryCountableConnection {
|
9861
|
-
"""Pagination data for this connection."""
|
9862
|
-
pageInfo: PageInfo!
|
9863
|
-
edges: [PriceBookVariantHistoryCountableEdge!]!
|
9864
|
-
|
9865
|
-
"""A total count of items in the collection."""
|
9866
|
-
totalCount: Int
|
9867
|
-
}
|
9868
|
-
|
9869
|
-
type PriceBookVariantHistoryCountableEdge {
|
9870
|
-
"""The item at the end of the edge."""
|
9871
|
-
node: PriceBookVariantHistory!
|
9872
|
-
|
9873
|
-
"""A cursor for use in pagination."""
|
9874
|
-
cursor: String!
|
9875
|
-
}
|
9876
|
-
|
9877
|
-
"""Variants added to the PriceBook"""
|
9878
|
-
type PriceBookVariantHistory implements Node {
|
9879
|
-
"""The ID of the object"""
|
9880
|
-
id: ID!
|
9881
|
-
priceBook: PriceBook
|
9882
|
-
variantId: Int!
|
9883
|
-
valueType: PriceBookVariantHistoryValueType!
|
9884
|
-
currency: String!
|
9885
|
-
createdAt: Date!
|
9886
|
-
|
9887
|
-
"""
|
9888
|
-
Amount to decrease or increase for the variant if type selected is override orpercentage.
|
9889
|
-
"""
|
9890
|
-
price: Money!
|
9891
|
-
|
9892
|
-
"""
|
9893
|
-
Percentage to decrease or increase for the variant's price if type selected is fixed.
|
9894
|
-
"""
|
9895
|
-
percentage: Float!
|
9896
|
-
|
9897
|
-
"""
|
9898
|
-
Determines if the variant attached to the pricebook is removed or deleted.
|
9899
|
-
"""
|
9900
|
-
deleted: Boolean!
|
9901
|
-
}
|
9902
|
-
|
9903
|
-
"""An enumeration."""
|
9904
|
-
enum PriceBookVariantHistoryValueType {
|
9905
|
-
"""Override"""
|
9906
|
-
OVERRIDE
|
9907
|
-
|
9908
|
-
"""Adjust Percentage"""
|
9909
|
-
ADJUST_PERCENTAGE
|
9910
|
-
|
9911
|
-
"""Adjust Fixed"""
|
9912
|
-
ADJUST_FIXED
|
9913
|
-
}
|
9914
|
-
|
9915
|
-
input PriceBookVariantHistoryFilterInput {
|
9916
|
-
search: String
|
9917
|
-
}
|
9918
|
-
|
9919
|
-
input PriceBookVariantHistorySortingInput {
|
9920
|
-
"""Specifies the direction in which to sort products."""
|
9921
|
-
direction: OrderDirection!
|
9922
|
-
|
9923
|
-
"""Sort pricebook variants history by the selected field."""
|
9924
|
-
field: PriceBookVariantHistorySortField!
|
9925
|
-
}
|
9926
|
-
|
9927
|
-
enum PriceBookVariantHistorySortField {
|
9928
|
-
"""Sort pricebook variant history by number."""
|
9929
|
-
NUMBER
|
9930
|
-
|
9931
|
-
"""Sort pricebook variant history by type."""
|
9932
|
-
TYPE
|
9933
|
-
|
9934
|
-
"""Sort pricebook variant history by price."""
|
9935
|
-
PRICE
|
9936
|
-
|
9937
|
-
"""Sort pricebook variant history by percentage."""
|
9938
|
-
PERCENTAGE
|
9939
|
-
|
9940
|
-
"""Sort pricebook variant history by creation date."""
|
9941
|
-
CREATION_DATE
|
9942
|
-
}
|
9943
|
-
|
9944
|
-
type PriceBookProductHistoryCountableConnection {
|
9945
|
-
"""Pagination data for this connection."""
|
9946
|
-
pageInfo: PageInfo!
|
9947
|
-
edges: [PriceBookProductHistoryCountableEdge!]!
|
9948
|
-
|
9949
|
-
"""A total count of items in the collection."""
|
9950
|
-
totalCount: Int
|
9951
|
-
}
|
9952
|
-
|
9953
|
-
type PriceBookProductHistoryCountableEdge {
|
9954
|
-
"""The item at the end of the edge."""
|
9955
|
-
node: PriceBookProductHistory!
|
9956
|
-
|
9957
|
-
"""A cursor for use in pagination."""
|
9958
|
-
cursor: String!
|
9959
|
-
}
|
9960
|
-
|
9961
|
-
"""Products added to the PriceBook"""
|
9962
|
-
type PriceBookProductHistory implements Node {
|
9963
|
-
"""The ID of the object"""
|
9964
|
-
id: ID!
|
9965
|
-
priceBook: PriceBook
|
9966
|
-
productId: Int!
|
9967
|
-
valueType: PriceBookProductHistoryValueType!
|
9968
|
-
currency: String!
|
9969
|
-
createdAt: Date!
|
9970
|
-
|
9971
|
-
"""
|
9972
|
-
Amount to decrease or increase for the variants of the product if type selected isoverride or percentage.
|
9973
|
-
"""
|
9974
|
-
price: Money!
|
9975
|
-
|
9976
|
-
"""
|
9977
|
-
Percentage to decrease or increase for the product's variants price if type selectedis fixed.
|
9978
|
-
"""
|
9979
|
-
percentage: Float!
|
9980
|
-
|
9981
|
-
"""
|
9982
|
-
Determines if the product's variant attached to the pricebook is removed or deleted.
|
9983
|
-
"""
|
9984
|
-
deleted: Boolean!
|
9985
|
-
}
|
9986
|
-
|
9987
|
-
"""An enumeration."""
|
9988
|
-
enum PriceBookProductHistoryValueType {
|
9989
|
-
"""adjust_percentage"""
|
9990
|
-
ADJUST_PERCENTAGE
|
9991
|
-
|
9992
|
-
"""adjust_fixed"""
|
9993
|
-
ADJUST_FIXED
|
9994
|
-
}
|
9995
|
-
|
9996
|
-
input PriceBookProductHistoryFilterInput {
|
9997
|
-
search: String
|
9998
|
-
}
|
9999
|
-
|
10000
|
-
input PriceBookProductHistorySortingInput {
|
10001
|
-
"""Specifies the direction in which to sort products."""
|
10002
|
-
direction: OrderDirection!
|
10003
|
-
|
10004
|
-
"""Sort pricebooks products history by the selected field."""
|
10005
|
-
field: PriceBookProductHistorySortField!
|
10006
|
-
}
|
10007
|
-
|
10008
|
-
enum PriceBookProductHistorySortField {
|
10009
|
-
"""Sort pricebook product history by number."""
|
10010
|
-
NUMBER
|
10011
|
-
|
10012
|
-
"""Sort pricebook product history by type."""
|
10013
|
-
TYPE
|
10014
|
-
|
10015
|
-
"""Sort pricebook product history by price."""
|
10016
|
-
PRICE
|
10017
|
-
|
10018
|
-
"""Sort pricebook product history by percentage."""
|
10019
|
-
PERCENTAGE
|
10020
|
-
|
10021
|
-
"""Sort pricebook product history by creation date."""
|
10022
|
-
CREATION_DATE
|
10023
|
-
}
|
10024
|
-
|
10025
|
-
type PriceBookProductTypeHistoryCountableConnection {
|
10026
|
-
"""Pagination data for this connection."""
|
10027
|
-
pageInfo: PageInfo!
|
10028
|
-
edges: [PriceBookProductTypeHistoryCountableEdge!]!
|
10029
|
-
|
10030
|
-
"""A total count of items in the collection."""
|
10031
|
-
totalCount: Int
|
10032
|
-
}
|
10033
|
-
|
10034
|
-
type PriceBookProductTypeHistoryCountableEdge {
|
10035
|
-
"""The item at the end of the edge."""
|
10036
|
-
node: PriceBookProductTypeHistory!
|
10037
|
-
|
10038
|
-
"""A cursor for use in pagination."""
|
10039
|
-
cursor: String!
|
10040
|
-
}
|
10041
|
-
|
10042
|
-
"""Product types added to the PriceBook"""
|
10043
|
-
type PriceBookProductTypeHistory implements Node {
|
10044
|
-
"""The ID of the object"""
|
10045
|
-
id: ID!
|
10046
|
-
priceBook: PriceBook
|
10047
|
-
productTypeId: Int!
|
10048
|
-
valueType: PriceBookProductTypeHistoryValueType!
|
10049
|
-
currency: String!
|
10050
|
-
createdAt: Date!
|
10051
|
-
|
10052
|
-
"""
|
10053
|
-
Amount to decrease or increase for the variants of the product type if type selectedis override or percentage.
|
10054
|
-
"""
|
10055
|
-
price: Money!
|
10056
|
-
|
10057
|
-
"""
|
10058
|
-
Percentage to decrease or increase for the product type's variants price if typeselected is fixed.
|
10059
|
-
"""
|
10060
|
-
percentage: Float!
|
10061
|
-
|
10062
|
-
"""
|
10063
|
-
Determines if the product type's variant attached to the pricebook is removed ordeleted.
|
10064
|
-
"""
|
10065
|
-
deleted: Boolean!
|
10066
|
-
}
|
10067
|
-
|
10068
|
-
"""An enumeration."""
|
10069
|
-
enum PriceBookProductTypeHistoryValueType {
|
10070
|
-
"""adjust_percentage"""
|
10071
|
-
ADJUST_PERCENTAGE
|
10072
|
-
|
10073
|
-
"""adjust_fixed"""
|
10074
|
-
ADJUST_FIXED
|
10075
|
-
}
|
10076
|
-
|
10077
|
-
input PriceBookProductTypeHistoryFilterInput {
|
10078
|
-
search: String
|
10079
|
-
}
|
10080
|
-
|
10081
|
-
input PriceBookProductTypeHistorySortingInput {
|
10082
|
-
"""Specifies the direction in which to sort products."""
|
10083
|
-
direction: OrderDirection!
|
10084
|
-
|
10085
|
-
"""Sort pricebooks products history by the selected field."""
|
10086
|
-
field: PriceBookProductTypeHistorySortField!
|
10087
|
-
}
|
10088
|
-
|
10089
|
-
enum PriceBookProductTypeHistorySortField {
|
10090
|
-
"""Sort pricebook product type history by number."""
|
10091
|
-
NUMBER
|
10092
|
-
|
10093
|
-
"""Sort pricebook product type history by type."""
|
10094
|
-
TYPE
|
10095
|
-
|
10096
|
-
"""Sort pricebook product type history by price."""
|
10097
|
-
PRICE
|
10098
|
-
|
10099
|
-
"""Sort pricebook product type history by percentage."""
|
10100
|
-
PERCENTAGE
|
10101
|
-
|
10102
|
-
"""Sort pricebook product type history by creation date."""
|
10103
|
-
CREATION_DATE
|
10104
|
-
}
|
10105
|
-
|
10106
|
-
type UserCountableConnection {
|
10107
|
-
"""Pagination data for this connection."""
|
10108
|
-
pageInfo: PageInfo!
|
10109
|
-
edges: [UserCountableEdge!]!
|
10110
|
-
|
10111
|
-
"""A total count of items in the collection."""
|
10112
|
-
totalCount: Int
|
10113
|
-
}
|
10114
|
-
|
10115
|
-
type UserCountableEdge {
|
10116
|
-
"""The item at the end of the edge."""
|
10117
|
-
node: User!
|
10118
|
-
|
10119
|
-
"""A cursor for use in pagination."""
|
10120
|
-
cursor: String!
|
10121
|
-
}
|
10122
|
-
|
10123
|
-
input UserSortingInput {
|
10124
|
-
"""Specifies the direction in which to sort products."""
|
10125
|
-
direction: OrderDirection!
|
10126
|
-
|
10127
|
-
"""Sort users by the selected field."""
|
10128
|
-
field: UserSortField!
|
10129
|
-
}
|
10130
|
-
|
10131
|
-
enum UserSortField {
|
10132
|
-
"""Sort users by first name."""
|
10133
|
-
FIRST_NAME
|
10134
|
-
|
10135
|
-
"""Sort users by last name."""
|
10136
|
-
LAST_NAME
|
10137
|
-
|
10138
|
-
"""Sort users by email."""
|
10139
|
-
EMAIL
|
10140
|
-
|
10141
|
-
"""Sort users by order count."""
|
10142
|
-
ORDER_COUNT
|
10143
|
-
|
10144
|
-
"""Sort users by vendor."""
|
10145
|
-
VENDOR
|
10146
|
-
|
10147
|
-
"""Sort users by company name."""
|
10148
|
-
COMPANY_NAME
|
10149
|
-
|
10150
|
-
"""Sort users by is active."""
|
10151
|
-
IS_ACTIVE
|
10152
|
-
|
10153
|
-
"""Sort users by external id."""
|
10154
|
-
EXTERNAL_ID
|
10155
|
-
|
10156
|
-
"""Sort users by external source."""
|
10157
|
-
EXTERNAL_SOURCE
|
10158
|
-
}
|
10159
|
-
|
10160
9214
|
type PluginCountableConnection {
|
10161
9215
|
"""Pagination data for this connection."""
|
10162
9216
|
pageInfo: PageInfo!
|
@@ -10733,36 +9787,6 @@ input NauticalOrderDraftFilterInput {
|
|
10733
9787
|
subStatus: String
|
10734
9788
|
}
|
10735
9789
|
|
10736
|
-
input NauticalOrderQuoteFilterInput {
|
10737
|
-
customer: String
|
10738
|
-
created: DateRangeInput
|
10739
|
-
metadata: MetadataFilterInput
|
10740
|
-
privateMetadata: MetadataFilterInput
|
10741
|
-
ids: [ID]
|
10742
|
-
search: String
|
10743
|
-
isHistorical: Boolean
|
10744
|
-
subStatus: [QuoteOrderSubStatusFilter!]
|
10745
|
-
source: [OrderSourceFilter!]
|
10746
|
-
}
|
10747
|
-
|
10748
|
-
enum QuoteOrderSubStatusFilter {
|
10749
|
-
IN_REVIEW
|
10750
|
-
QUOTE_REQUESTED
|
10751
|
-
AWAITING_PAYMENT
|
10752
|
-
}
|
10753
|
-
|
10754
|
-
input OrderQuoteFilterInput {
|
10755
|
-
customer: String
|
10756
|
-
created: DateRangeInput
|
10757
|
-
metadata: MetadataFilterInput
|
10758
|
-
privateMetadata: MetadataFilterInput
|
10759
|
-
ids: [ID]
|
10760
|
-
search: String
|
10761
|
-
isHistorical: Boolean
|
10762
|
-
subStatus: [QuoteOrderSubStatusFilter!]
|
10763
|
-
source: [OrderSourceFilter!]
|
10764
|
-
}
|
10765
|
-
|
10766
9790
|
enum ReportingPeriod {
|
10767
9791
|
TODAY
|
10768
9792
|
THIS_MONTH
|
@@ -11044,6 +10068,9 @@ enum EmailEventMessageType {
|
|
11044
10068
|
"""Pending Quote"""
|
11045
10069
|
PENDING_QUOTE
|
11046
10070
|
|
10071
|
+
"""Order Payment Link"""
|
10072
|
+
ORDER_PAYMENT_LINK
|
10073
|
+
|
11047
10074
|
"""Merchant Account Set Password"""
|
11048
10075
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
11049
10076
|
|
@@ -11165,7 +10192,10 @@ enum NotifyEventTypeEnum {
|
|
11165
10192
|
ORDER_REFUND_CONFIRMATION
|
11166
10193
|
|
11167
10194
|
"""Pending Quote"""
|
11168
|
-
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
|
11169
10199
|
|
11170
10200
|
"""Merchant Account Set Password"""
|
11171
10201
|
MERCHANT_ACCOUNT_SET_PASSWORD
|
@@ -11234,7 +10264,7 @@ enum NotifyEventTypeEnum {
|
|
11234
10264
|
PENDING_CUSTOMER
|
11235
10265
|
|
11236
10266
|
"""Quote Requested"""
|
11237
|
-
QUOTE_REQUESTED
|
10267
|
+
QUOTE_REQUESTED @deprecated(reason: "Quotes are deprecated. This will be removed on September 10, 2025")
|
11238
10268
|
}
|
11239
10269
|
|
11240
10270
|
input EmailEventSortingInput {
|
@@ -12134,18 +11164,72 @@ enum AgreementSortField {
|
|
12134
11164
|
PUBLICATION_DATE
|
12135
11165
|
}
|
12136
11166
|
|
12137
|
-
input AgreementFilterInput {
|
12138
|
-
search: String
|
12139
|
-
}
|
11167
|
+
input AgreementFilterInput {
|
11168
|
+
search: String
|
11169
|
+
}
|
11170
|
+
|
11171
|
+
type UserCountableConnection {
|
11172
|
+
"""Pagination data for this connection."""
|
11173
|
+
pageInfo: PageInfo!
|
11174
|
+
edges: [UserCountableEdge!]!
|
11175
|
+
|
11176
|
+
"""A total count of items in the collection."""
|
11177
|
+
totalCount: Int
|
11178
|
+
}
|
11179
|
+
|
11180
|
+
type UserCountableEdge {
|
11181
|
+
"""The item at the end of the edge."""
|
11182
|
+
node: User!
|
11183
|
+
|
11184
|
+
"""A cursor for use in pagination."""
|
11185
|
+
cursor: String!
|
11186
|
+
}
|
11187
|
+
|
11188
|
+
input CustomerFilterInput {
|
11189
|
+
dateJoined: DateRangeInput
|
11190
|
+
isActive: Boolean
|
11191
|
+
moneySpent: PriceRangeInput
|
11192
|
+
numberOfOrders: IntRangeInput
|
11193
|
+
placedOrders: DateRangeInput
|
11194
|
+
search: String
|
11195
|
+
customFields: [AttributeInput!]
|
11196
|
+
}
|
11197
|
+
|
11198
|
+
input UserSortingInput {
|
11199
|
+
"""Specifies the direction in which to sort products."""
|
11200
|
+
direction: OrderDirection!
|
11201
|
+
|
11202
|
+
"""Sort users by the selected field."""
|
11203
|
+
field: UserSortField!
|
11204
|
+
}
|
11205
|
+
|
11206
|
+
enum UserSortField {
|
11207
|
+
"""Sort users by first name."""
|
11208
|
+
FIRST_NAME
|
11209
|
+
|
11210
|
+
"""Sort users by last name."""
|
11211
|
+
LAST_NAME
|
11212
|
+
|
11213
|
+
"""Sort users by email."""
|
11214
|
+
EMAIL
|
11215
|
+
|
11216
|
+
"""Sort users by order count."""
|
11217
|
+
ORDER_COUNT
|
11218
|
+
|
11219
|
+
"""Sort users by vendor."""
|
11220
|
+
VENDOR
|
11221
|
+
|
11222
|
+
"""Sort users by company name."""
|
11223
|
+
COMPANY_NAME
|
11224
|
+
|
11225
|
+
"""Sort users by is active."""
|
11226
|
+
IS_ACTIVE
|
12140
11227
|
|
12141
|
-
|
12142
|
-
|
12143
|
-
|
12144
|
-
|
12145
|
-
|
12146
|
-
placedOrders: DateRangeInput
|
12147
|
-
search: String
|
12148
|
-
customFields: [AttributeInput!]
|
11228
|
+
"""Sort users by external id."""
|
11229
|
+
EXTERNAL_ID
|
11230
|
+
|
11231
|
+
"""Sort users by external source."""
|
11232
|
+
EXTERNAL_SOURCE
|
12149
11233
|
}
|
12150
11234
|
|
12151
11235
|
type GroupCountableConnection {
|
@@ -12257,7 +11341,7 @@ type Mutation {
|
|
12257
11341
|
description: String
|
12258
11342
|
|
12259
11343
|
"""
|
12260
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11344
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-tif, application/x-jpg, image/x-bmp, drawing/x-dwg, application/x-tar, image/vnd.dwg, application/x-dxf, application/vnd.ms-powerpoint, application/gzip, text/x-csv, image/png, application/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/x-dwf, application/jpg, application/pdf, text/pdf, application/x-tif, text/x-pdf, image/x-ms-bmp, application/x-rar, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.presentation, application/dxf, image/tiff, application/vnd.oasis.opendocument.spreadsheet, application/tiff, text/svg-xml, drawing/dwg, application/vnd.ms-excel, text/rtf, image/x-dwg, image/x-eps, image/x-tiff, text/csv, application/x-dwg, application/tif, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf, application/dwg, application/x-csv, image/dxf, application/gzipped, application/msword, application/csv, application/zip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/acad, image/jpg, application/gzip-compressed, image/svg+xml, text/x-comma-separated-values, application/x-tiff, application/vnd.pdf, application/x-acad, application/rtf, image/gif, application/x-rtf, image/heif, image/webp, application/excel, image/svg, application/svg+xml, text/svg, text/plain, application/vnd.ms-word, application/x-rar-compressed, application/x-zip-compressed, image/heif-sequence, image/heic, application/x-eps, text/comma-separated-values, application/acrobat, application/postscript, image/bmp, pplication/vnd.rar, image/heic-sequence, application/x-pdf, image/eps, application/vnd.oasis.opendocument.text, image/jpeg, image/tif.
|
12261
11345
|
"""
|
12262
11346
|
file: Upload!
|
12263
11347
|
|
@@ -13103,126 +12187,6 @@ type Mutation {
|
|
13103
12187
|
input: PolicyInput!
|
13104
12188
|
): PolicyUpdate
|
13105
12189
|
|
13106
|
-
"""Creates a new price book."""
|
13107
|
-
priceBookCreate(
|
13108
|
-
"""Fields required to create a price book."""
|
13109
|
-
input: PriceBookCreateInput!
|
13110
|
-
): PriceBookCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13111
|
-
|
13112
|
-
"""Updates an existing price book."""
|
13113
|
-
priceBookUpdate(
|
13114
|
-
"""ID of a price book to update."""
|
13115
|
-
id: ID!
|
13116
|
-
|
13117
|
-
"""Fields required to update a price book."""
|
13118
|
-
input: PriceBookUpdateInput!
|
13119
|
-
): PriceBookUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13120
|
-
|
13121
|
-
"""Deletes a price book."""
|
13122
|
-
priceBookDelete(
|
13123
|
-
"""ID of a price book to delete."""
|
13124
|
-
id: ID!
|
13125
|
-
): PriceBookDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13126
|
-
|
13127
|
-
"""Deletes price books."""
|
13128
|
-
priceBookBulkDelete(
|
13129
|
-
"""List of price book IDs to delete."""
|
13130
|
-
ids: [ID!]!
|
13131
|
-
): PriceBookBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13132
|
-
|
13133
|
-
"""Add a variant to price book."""
|
13134
|
-
priceBookVariantCreate(
|
13135
|
-
"""Fields required to add a price book variant."""
|
13136
|
-
input: PriceBookVariantCreateInput!
|
13137
|
-
): PriceBookVariantCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13138
|
-
|
13139
|
-
"""Updates an existing price book variant."""
|
13140
|
-
priceBookVariantUpdate(
|
13141
|
-
"""ID of a price book variant to update."""
|
13142
|
-
id: ID!
|
13143
|
-
|
13144
|
-
"""Fields required to update a price book variant."""
|
13145
|
-
input: PriceBookVariantUpdateInput!
|
13146
|
-
): PriceBookVariantUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13147
|
-
|
13148
|
-
"""Deletes a price book variant."""
|
13149
|
-
priceBookVariantDelete(
|
13150
|
-
"""ID of a price book variant to delete."""
|
13151
|
-
id: ID!
|
13152
|
-
): PriceBookVariantDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13153
|
-
|
13154
|
-
"""Deletes price book's variants."""
|
13155
|
-
priceBookVariantBulkDelete(
|
13156
|
-
"""List of price book variant IDs to delete."""
|
13157
|
-
ids: [ID!]!
|
13158
|
-
): PriceBookVariantBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13159
|
-
|
13160
|
-
"""Add a product to price book."""
|
13161
|
-
priceBookProductCreate(
|
13162
|
-
"""Fields required to add a price book product."""
|
13163
|
-
input: PriceBookProductCreateInput!
|
13164
|
-
): PriceBookProductCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13165
|
-
|
13166
|
-
"""Updates an existing price book product."""
|
13167
|
-
priceBookProductUpdate(
|
13168
|
-
"""ID of a price book product to update."""
|
13169
|
-
id: ID!
|
13170
|
-
|
13171
|
-
"""Fields required to update a price book product."""
|
13172
|
-
input: PriceBookProductUpdateInput!
|
13173
|
-
): PriceBookProductUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13174
|
-
|
13175
|
-
"""Deletes a price book product."""
|
13176
|
-
priceBookProductDelete(
|
13177
|
-
"""ID of a price book product to delete."""
|
13178
|
-
id: ID!
|
13179
|
-
): PriceBookProductDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13180
|
-
|
13181
|
-
"""Deletes price book's products."""
|
13182
|
-
priceBookProductBulkDelete(
|
13183
|
-
"""List of price book product IDs to delete."""
|
13184
|
-
ids: [ID!]!
|
13185
|
-
): PriceBookProductBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13186
|
-
|
13187
|
-
"""Add a product type to price book."""
|
13188
|
-
priceBookProductTypeCreate(
|
13189
|
-
"""Fields required to add a price book product type."""
|
13190
|
-
input: PriceBookProductTypeCreateInput!
|
13191
|
-
): PriceBookProductTypeCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13192
|
-
|
13193
|
-
"""Updates an existing price book product type."""
|
13194
|
-
priceBookProductTypeUpdate(
|
13195
|
-
"""ID of a price book product type to update."""
|
13196
|
-
id: ID!
|
13197
|
-
|
13198
|
-
"""Fields required to update a price book product type."""
|
13199
|
-
input: PriceBookProductTypeUpdateInput!
|
13200
|
-
): PriceBookProductTypeUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13201
|
-
|
13202
|
-
"""Deletes a price book product type."""
|
13203
|
-
priceBookProductTypeDelete(
|
13204
|
-
"""ID of a price book product type to delete."""
|
13205
|
-
id: ID!
|
13206
|
-
): PriceBookProductTypeDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13207
|
-
|
13208
|
-
"""Deletes price book's product types."""
|
13209
|
-
priceBookProductTypeBulkDelete(
|
13210
|
-
"""List of price book product type IDs to delete."""
|
13211
|
-
ids: [ID!]!
|
13212
|
-
): PriceBookProductTypeBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13213
|
-
|
13214
|
-
"""Add a user to price book."""
|
13215
|
-
userAddToPriceBook(
|
13216
|
-
"""Fields required to add a user to price book."""
|
13217
|
-
input: UserAddToPriceBookInput!
|
13218
|
-
): UserAddToPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13219
|
-
|
13220
|
-
"""Removes a user from price book."""
|
13221
|
-
userRemoveFromPriceBook(
|
13222
|
-
"""ID of user to be removed from price book."""
|
13223
|
-
id: ID!
|
13224
|
-
): UserRemoveFromPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
13225
|
-
|
13226
12190
|
"""Creates a new category."""
|
13227
12191
|
categoryCreate(
|
13228
12192
|
"""Fields required to create a category."""
|
@@ -13819,15 +12783,15 @@ type Mutation {
|
|
13819
12783
|
id: ID!
|
13820
12784
|
): NauticalDraftOrderDelete
|
13821
12785
|
|
13822
|
-
"""Deletes draft
|
12786
|
+
"""Deletes draft order."""
|
13823
12787
|
draftOrderBulkDelete(
|
13824
|
-
"""List of draft
|
12788
|
+
"""List of draft order IDs to delete."""
|
13825
12789
|
ids: [ID!]!
|
13826
12790
|
): DraftOrderBulkDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
13827
12791
|
|
13828
|
-
"""Deletes draft
|
12792
|
+
"""Deletes draft orders."""
|
13829
12793
|
nauticalDraftOrderBulkDelete(
|
13830
|
-
"""List of draft
|
12794
|
+
"""List of draft order IDs to delete."""
|
13831
12795
|
ids: [ID!]!
|
13832
12796
|
): NauticalDraftOrderBulkDelete
|
13833
12797
|
|
@@ -14003,12 +12967,6 @@ type Mutation {
|
|
14003
12967
|
id: ID!
|
14004
12968
|
): NauticalOrderCancel
|
14005
12969
|
|
14006
|
-
"""Cancel a nautical quote order."""
|
14007
|
-
nauticalQuoteOrderCancel(
|
14008
|
-
"""ID of the nautical order to cancel."""
|
14009
|
-
id: ID!
|
14010
|
-
): NauticalQuoteOrderCancel
|
14011
|
-
|
14012
12970
|
"""Capture a nautical order."""
|
14013
12971
|
nauticalOrderCapture(
|
14014
12972
|
"""Amount of money to capture."""
|
@@ -14191,7 +13149,7 @@ type Mutation {
|
|
14191
13149
|
): NauticalOrderPaymentCreate
|
14192
13150
|
|
14193
13151
|
"""Sends a quote order to a customer."""
|
14194
|
-
|
13152
|
+
nauticalDraftOrderSendToCustomer(
|
14195
13153
|
"""ID of the nautical order (with Quote status) to send to the customer."""
|
14196
13154
|
id: ID!
|
14197
13155
|
|
@@ -14199,18 +13157,20 @@ type Mutation {
|
|
14199
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=...
|
14200
13158
|
"""
|
14201
13159
|
storefrontUrl: String!
|
14202
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on
|
13160
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on September 10, 2025. Use nauticalPaymentLinkSendToCustomer instead.")
|
14203
13161
|
|
14204
|
-
"""Sends a
|
14205
|
-
|
14206
|
-
"""
|
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
|
+
"""
|
14207
13167
|
id: ID!
|
14208
13168
|
|
14209
13169
|
"""
|
14210
|
-
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=...
|
14211
13171
|
"""
|
14212
13172
|
storefrontUrl: String!
|
14213
|
-
):
|
13173
|
+
): NauticalPaymentLinkSendToCustomer
|
14214
13174
|
|
14215
13175
|
"""Creates a new order fee."""
|
14216
13176
|
orderFeeCreate(
|
@@ -14646,14 +13606,6 @@ type Mutation {
|
|
14646
13606
|
vehicles: Boolean = false
|
14647
13607
|
): CheckoutComplete
|
14648
13608
|
|
14649
|
-
"""
|
14650
|
-
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.
|
14651
|
-
"""
|
14652
|
-
checkoutConvertToNauticalQuoteOrder(
|
14653
|
-
"""Checkout ID."""
|
14654
|
-
checkoutId: ID!
|
14655
|
-
): CheckoutConvertToNauticalQuoteOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
14656
|
-
|
14657
13609
|
"""Create a new checkout."""
|
14658
13610
|
checkoutCreate(
|
14659
13611
|
"""Fields required to create checkout."""
|
@@ -15607,18 +14559,12 @@ input MarketplaceConfigurationInput {
|
|
15607
14559
|
"""Supported countries for the marketplace"""
|
15608
14560
|
supportedCountries: [String!]
|
15609
14561
|
|
15610
|
-
"""True if sellers can send quotes to customers."""
|
15611
|
-
sellerCanSendQuote: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
15612
|
-
|
15613
14562
|
"""Determines scope for checking duplicated variant attribute sets"""
|
15614
14563
|
variantUniqueness: VariantUniquenessEnum = null
|
15615
14564
|
|
15616
14565
|
"""List of all default checklists for seller."""
|
15617
14566
|
defaultSellerChecklists: [DefaultSellerChecklistInput!]
|
15618
14567
|
|
15619
|
-
"""True if quote orders trigger stock allocation."""
|
15620
|
-
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
15621
|
-
|
15622
14568
|
"""True if draft orders trigger stock allocation."""
|
15623
14569
|
enableStockAllocationForDrafts: Boolean
|
15624
14570
|
|
@@ -17048,12 +15994,6 @@ input SellerOnboardingSettingsCreateInput {
|
|
17048
15994
|
"""Welcome message set by MP for sellers."""
|
17049
15995
|
welcomeMessage: String
|
17050
15996
|
|
17051
|
-
"""The fulfillment model used by the MP."""
|
17052
|
-
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
17053
|
-
|
17054
|
-
"""A summary of required documents from sellers."""
|
17055
|
-
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
17056
|
-
|
17057
15997
|
"""Text displayed when the MP is not accepting new sellers."""
|
17058
15998
|
notAcceptingSellersMessage: String
|
17059
15999
|
}
|
@@ -17075,12 +16015,6 @@ input SellerOnboardingSettingsUpdateInput {
|
|
17075
16015
|
"""Welcome message set by MP for sellers."""
|
17076
16016
|
welcomeMessage: String
|
17077
16017
|
|
17078
|
-
"""The fulfillment model used by the MP."""
|
17079
|
-
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
17080
|
-
|
17081
|
-
"""A summary of required documents from sellers."""
|
17082
|
-
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
17083
|
-
|
17084
16018
|
"""Text displayed when the MP is not accepting new sellers."""
|
17085
16019
|
notAcceptingSellersMessage: String
|
17086
16020
|
}
|
@@ -17514,313 +16448,6 @@ type PolicyUpdate {
|
|
17514
16448
|
policy: Policy
|
17515
16449
|
}
|
17516
16450
|
|
17517
|
-
"""Creates a new price book."""
|
17518
|
-
type PriceBookCreate {
|
17519
|
-
priceBookErrors: [PriceBookError!]!
|
17520
|
-
priceBook: PriceBook
|
17521
|
-
}
|
17522
|
-
|
17523
|
-
type PriceBookError {
|
17524
|
-
"""
|
17525
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
17526
|
-
"""
|
17527
|
-
field: String
|
17528
|
-
|
17529
|
-
"""The error message."""
|
17530
|
-
message: String!
|
17531
|
-
|
17532
|
-
"""The error code."""
|
17533
|
-
code: PriceBookErrorCode!
|
17534
|
-
}
|
17535
|
-
|
17536
|
-
"""An enumeration."""
|
17537
|
-
enum PriceBookErrorCode {
|
17538
|
-
NOT_FOUND
|
17539
|
-
REQUIRED
|
17540
|
-
GRAPHQL_ERROR
|
17541
|
-
INVALID
|
17542
|
-
ALREADY_EXISTS
|
17543
|
-
NOT_ALLOWED
|
17544
|
-
}
|
17545
|
-
|
17546
|
-
input PriceBookCreateInput {
|
17547
|
-
"""Name of the price book"""
|
17548
|
-
name: String
|
17549
|
-
|
17550
|
-
"""Price book description (plaintext, read-only)."""
|
17551
|
-
description: String
|
17552
|
-
|
17553
|
-
"""Price book description (html)."""
|
17554
|
-
descriptionHtml: String
|
17555
|
-
}
|
17556
|
-
|
17557
|
-
"""Updates an existing price book."""
|
17558
|
-
type PriceBookUpdate {
|
17559
|
-
priceBookErrors: [PriceBookError!]!
|
17560
|
-
priceBook: PriceBook
|
17561
|
-
}
|
17562
|
-
|
17563
|
-
input PriceBookUpdateInput {
|
17564
|
-
"""Name of the price book"""
|
17565
|
-
name: String
|
17566
|
-
|
17567
|
-
"""Price book description (plaintext, read-only)."""
|
17568
|
-
description: String
|
17569
|
-
|
17570
|
-
"""Price book description (html)."""
|
17571
|
-
descriptionHtml: String
|
17572
|
-
|
17573
|
-
"""Used to re-activate the price book."""
|
17574
|
-
activate: Boolean
|
17575
|
-
}
|
17576
|
-
|
17577
|
-
"""Deletes a price book."""
|
17578
|
-
type PriceBookDelete {
|
17579
|
-
priceBookErrors: [PriceBookError!]!
|
17580
|
-
priceBook: PriceBook
|
17581
|
-
}
|
17582
|
-
|
17583
|
-
"""Deletes price books."""
|
17584
|
-
type PriceBookBulkDelete {
|
17585
|
-
"""Returns how many objects were affected."""
|
17586
|
-
count: Int!
|
17587
|
-
priceBookErrors: [PriceBookError!]!
|
17588
|
-
}
|
17589
|
-
|
17590
|
-
"""Add a variant to price book."""
|
17591
|
-
type PriceBookVariantCreate {
|
17592
|
-
priceBookErrors: [PriceBookError!]!
|
17593
|
-
priceBookVariant: PriceBookVariant
|
17594
|
-
}
|
17595
|
-
|
17596
|
-
input PriceBookVariantCreateInput {
|
17597
|
-
"""
|
17598
|
-
Price of the particular variant to be adjusted if the type selected is OVERRIDEor FIXED.
|
17599
|
-
"""
|
17600
|
-
priceAmount: Decimal
|
17601
|
-
|
17602
|
-
"""Currency of the price that is adjusted for the variant"""
|
17603
|
-
currency: String
|
17604
|
-
|
17605
|
-
"""
|
17606
|
-
Percentage of the particular variant to be adjusted if the type selected is PERCENTAGE
|
17607
|
-
"""
|
17608
|
-
percentage: Decimal
|
17609
|
-
|
17610
|
-
"""ID of variant that is added to the price book."""
|
17611
|
-
variant: ID!
|
17612
|
-
|
17613
|
-
"""ID of price book that variant needs to be added to."""
|
17614
|
-
priceBook: ID!
|
17615
|
-
|
17616
|
-
"""Type of the price book variant"""
|
17617
|
-
valueType: PriceBookValueTypeEnum!
|
17618
|
-
}
|
17619
|
-
|
17620
|
-
enum PriceBookValueTypeEnum {
|
17621
|
-
"""Override"""
|
17622
|
-
OVERRIDE
|
17623
|
-
|
17624
|
-
"""Adjust Percentage"""
|
17625
|
-
ADJUST_PERCENTAGE
|
17626
|
-
|
17627
|
-
"""Adjust Fixed"""
|
17628
|
-
ADJUST_FIXED
|
17629
|
-
}
|
17630
|
-
|
17631
|
-
"""Updates an existing price book variant."""
|
17632
|
-
type PriceBookVariantUpdate {
|
17633
|
-
priceBookErrors: [PriceBookError!]!
|
17634
|
-
priceBookVariant: PriceBookVariant
|
17635
|
-
}
|
17636
|
-
|
17637
|
-
input PriceBookVariantUpdateInput {
|
17638
|
-
"""
|
17639
|
-
Price of the particular variant to be adjusted if the type selected is OVERRIDEor FIXED.
|
17640
|
-
"""
|
17641
|
-
priceAmount: Decimal
|
17642
|
-
|
17643
|
-
"""Currency of the price that is adjusted for the variant"""
|
17644
|
-
currency: String
|
17645
|
-
|
17646
|
-
"""
|
17647
|
-
Percentage of the particular variant to be adjusted if the type selected is PERCENTAGE
|
17648
|
-
"""
|
17649
|
-
percentage: Decimal
|
17650
|
-
|
17651
|
-
"""Type of the price book variant"""
|
17652
|
-
valueType: PriceBookValueTypeEnum
|
17653
|
-
}
|
17654
|
-
|
17655
|
-
"""Deletes a price book variant."""
|
17656
|
-
type PriceBookVariantDelete {
|
17657
|
-
priceBookErrors: [PriceBookError!]!
|
17658
|
-
priceBookVariant: PriceBookVariant
|
17659
|
-
}
|
17660
|
-
|
17661
|
-
"""Deletes price book's variants."""
|
17662
|
-
type PriceBookVariantBulkDelete {
|
17663
|
-
"""Returns how many objects were affected."""
|
17664
|
-
count: Int!
|
17665
|
-
priceBookErrors: [PriceBookError!]!
|
17666
|
-
}
|
17667
|
-
|
17668
|
-
"""Add a product to price book."""
|
17669
|
-
type PriceBookProductCreate {
|
17670
|
-
priceBookErrors: [PriceBookError!]!
|
17671
|
-
priceBookProduct: PriceBookProduct
|
17672
|
-
}
|
17673
|
-
|
17674
|
-
input PriceBookProductCreateInput {
|
17675
|
-
"""
|
17676
|
-
Price of the particular product to be adjusted if the type selected is OVERRIDEor FIXED.
|
17677
|
-
"""
|
17678
|
-
priceAmount: Decimal
|
17679
|
-
|
17680
|
-
"""Currency of the price that is adjusted for the product"""
|
17681
|
-
currency: String
|
17682
|
-
|
17683
|
-
"""
|
17684
|
-
Percentage of the particular product to be adjusted if the type selected is PERCENTAGE
|
17685
|
-
"""
|
17686
|
-
percentage: Decimal
|
17687
|
-
|
17688
|
-
"""ID of product that is added to the price book."""
|
17689
|
-
product: ID!
|
17690
|
-
|
17691
|
-
"""ID of price book that product needs to be added to."""
|
17692
|
-
priceBook: ID!
|
17693
|
-
|
17694
|
-
"""Type of the price book product"""
|
17695
|
-
valueType: PriceBookValueTypeEnum!
|
17696
|
-
}
|
17697
|
-
|
17698
|
-
"""Updates an existing price book product."""
|
17699
|
-
type PriceBookProductUpdate {
|
17700
|
-
priceBookErrors: [PriceBookError!]!
|
17701
|
-
priceBookProduct: PriceBookProduct
|
17702
|
-
}
|
17703
|
-
|
17704
|
-
input PriceBookProductUpdateInput {
|
17705
|
-
"""
|
17706
|
-
Price of the particular product to be adjusted if the type selected is OVERRIDEor FIXED.
|
17707
|
-
"""
|
17708
|
-
priceAmount: Decimal
|
17709
|
-
|
17710
|
-
"""Currency of the price that is adjusted for the product"""
|
17711
|
-
currency: String
|
17712
|
-
|
17713
|
-
"""
|
17714
|
-
Percentage of the particular product to be adjusted if the type selected is PERCENTAGE
|
17715
|
-
"""
|
17716
|
-
percentage: Decimal
|
17717
|
-
|
17718
|
-
"""Type of the price book product"""
|
17719
|
-
valueType: PriceBookValueTypeEnum
|
17720
|
-
}
|
17721
|
-
|
17722
|
-
"""Deletes a price book product."""
|
17723
|
-
type PriceBookProductDelete {
|
17724
|
-
priceBookErrors: [PriceBookError!]!
|
17725
|
-
priceBookProduct: PriceBookProduct
|
17726
|
-
}
|
17727
|
-
|
17728
|
-
"""Deletes price book's products."""
|
17729
|
-
type PriceBookProductBulkDelete {
|
17730
|
-
"""Returns how many objects were affected."""
|
17731
|
-
count: Int!
|
17732
|
-
priceBookErrors: [PriceBookError!]!
|
17733
|
-
}
|
17734
|
-
|
17735
|
-
"""Add a product type to price book."""
|
17736
|
-
type PriceBookProductTypeCreate {
|
17737
|
-
priceBookErrors: [PriceBookError!]!
|
17738
|
-
priceBookProductType: PriceBookProductType
|
17739
|
-
}
|
17740
|
-
|
17741
|
-
input PriceBookProductTypeCreateInput {
|
17742
|
-
"""
|
17743
|
-
Price of the particular product type to be adjusted if the value type selected isOVERRIDE or FIXED.
|
17744
|
-
"""
|
17745
|
-
priceAmount: Decimal
|
17746
|
-
|
17747
|
-
"""Currency of the price that is adjusted for the product type"""
|
17748
|
-
currency: String
|
17749
|
-
|
17750
|
-
"""
|
17751
|
-
Percentage of the particular product type to be adjusted if the type selected is PERCENTAGE
|
17752
|
-
"""
|
17753
|
-
percentage: Decimal
|
17754
|
-
|
17755
|
-
"""ID of product type that is added to the price book."""
|
17756
|
-
productType: ID!
|
17757
|
-
|
17758
|
-
"""ID of price book that product type needs to be added to."""
|
17759
|
-
priceBook: ID!
|
17760
|
-
|
17761
|
-
"""Value type of the price book product type"""
|
17762
|
-
valueType: PriceBookValueTypeEnum!
|
17763
|
-
}
|
17764
|
-
|
17765
|
-
"""Updates an existing price book product type."""
|
17766
|
-
type PriceBookProductTypeUpdate {
|
17767
|
-
priceBookErrors: [PriceBookError!]!
|
17768
|
-
priceBookProductType: PriceBookProductType
|
17769
|
-
}
|
17770
|
-
|
17771
|
-
input PriceBookProductTypeUpdateInput {
|
17772
|
-
"""
|
17773
|
-
Price of the particular product type to be adjusted if the value type selected isOVERRIDE or FIXED.
|
17774
|
-
"""
|
17775
|
-
priceAmount: Decimal
|
17776
|
-
|
17777
|
-
"""Currency of the price that is adjusted for the product type"""
|
17778
|
-
currency: String
|
17779
|
-
|
17780
|
-
"""
|
17781
|
-
Percentage of the particular product type to be adjusted if the type selected is PERCENTAGE
|
17782
|
-
"""
|
17783
|
-
percentage: Decimal
|
17784
|
-
|
17785
|
-
"""Value type of the price book product type"""
|
17786
|
-
valueType: PriceBookValueTypeEnum
|
17787
|
-
}
|
17788
|
-
|
17789
|
-
"""Deletes a price book product type."""
|
17790
|
-
type PriceBookProductTypeDelete {
|
17791
|
-
priceBookErrors: [PriceBookError!]!
|
17792
|
-
priceBookProductType: PriceBookProductType
|
17793
|
-
}
|
17794
|
-
|
17795
|
-
"""Deletes price book's product types."""
|
17796
|
-
type PriceBookProductTypeBulkDelete {
|
17797
|
-
"""Returns how many objects were affected."""
|
17798
|
-
count: Int!
|
17799
|
-
priceBookErrors: [PriceBookError!]!
|
17800
|
-
}
|
17801
|
-
|
17802
|
-
"""Add a user to price book."""
|
17803
|
-
type UserAddToPriceBook {
|
17804
|
-
"""An updated user instance."""
|
17805
|
-
user: User
|
17806
|
-
priceBookErrors: [PriceBookError!]!
|
17807
|
-
}
|
17808
|
-
|
17809
|
-
input UserAddToPriceBookInput {
|
17810
|
-
"""ID of user that is to be mapped to the price book."""
|
17811
|
-
user: ID!
|
17812
|
-
|
17813
|
-
"""ID of price book that user needs to be added to."""
|
17814
|
-
priceBook: ID!
|
17815
|
-
}
|
17816
|
-
|
17817
|
-
"""Removes a user from price book."""
|
17818
|
-
type UserRemoveFromPriceBook {
|
17819
|
-
"""An updated user instance."""
|
17820
|
-
user: User
|
17821
|
-
priceBookErrors: [PriceBookError!]!
|
17822
|
-
}
|
17823
|
-
|
17824
16451
|
"""Creates a new category."""
|
17825
16452
|
type CategoryCreate {
|
17826
16453
|
productErrors: [ProductError!]!
|
@@ -18601,8 +17228,14 @@ input ProductTypeInput {
|
|
18601
17228
|
"""Product type slug."""
|
18602
17229
|
slug: String
|
18603
17230
|
|
17231
|
+
"""Product type description (plaintext, read-only)."""
|
17232
|
+
description: String
|
17233
|
+
|
17234
|
+
"""Product type description (html)."""
|
17235
|
+
descriptionHtml: String
|
17236
|
+
|
18604
17237
|
"""
|
18605
|
-
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.
|
18606
17239
|
"""
|
18607
17240
|
isPriceOverrideAllowed: Boolean
|
18608
17241
|
|
@@ -19463,7 +18096,6 @@ enum OrderErrorCode {
|
|
19463
18096
|
PAYMENT_MISSING
|
19464
18097
|
PERMISSION_DENIED
|
19465
18098
|
PAYOUT_STATUS_CHANGE_NOT_ALLOWED
|
19466
|
-
QUOTE_PAYMENT_ERROR
|
19467
18099
|
REQUIRED
|
19468
18100
|
SHIPPING_METHOD_NOT_APPLICABLE
|
19469
18101
|
SHIPPING_METHOD_REQUIRED
|
@@ -19530,7 +18162,7 @@ input DraftOrderCreateInput {
|
|
19530
18162
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
19531
18163
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
19532
18164
|
"""
|
19533
|
-
subStatus: OrderSubStatusEnum
|
18165
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
19534
18166
|
|
19535
18167
|
"""Variant line input consisting of variant ID and quantity of products."""
|
19536
18168
|
lines: [OrderLineCreateInput!]
|
@@ -19555,7 +18187,6 @@ input OrderLineCreateInput {
|
|
19555
18187
|
|
19556
18188
|
enum DraftOrderInitialStatus {
|
19557
18189
|
DRAFT
|
19558
|
-
QUOTE
|
19559
18190
|
}
|
19560
18191
|
|
19561
18192
|
"""Creates a new Nautical draft order."""
|
@@ -19585,7 +18216,7 @@ input NauticalDraftOrderCreateInput {
|
|
19585
18216
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
19586
18217
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
19587
18218
|
"""
|
19588
|
-
subStatus: OrderSubStatusEnum
|
18219
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
19589
18220
|
|
19590
18221
|
"""
|
19591
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
|
@@ -19617,14 +18248,14 @@ type NauticalDraftOrderDelete {
|
|
19617
18248
|
nauticalOrder: NauticalOrder
|
19618
18249
|
}
|
19619
18250
|
|
19620
|
-
"""Deletes draft
|
18251
|
+
"""Deletes draft order."""
|
19621
18252
|
type DraftOrderBulkDelete {
|
19622
18253
|
"""Returns how many objects were affected."""
|
19623
18254
|
count: Int!
|
19624
18255
|
orderErrors: [OrderError!]!
|
19625
18256
|
}
|
19626
18257
|
|
19627
|
-
"""Deletes draft
|
18258
|
+
"""Deletes draft orders."""
|
19628
18259
|
type NauticalDraftOrderBulkDelete {
|
19629
18260
|
"""Returns how many objects were affected."""
|
19630
18261
|
count: Int!
|
@@ -19733,7 +18364,7 @@ input DraftOrderInput {
|
|
19733
18364
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
19734
18365
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
19735
18366
|
"""
|
19736
|
-
subStatus: OrderSubStatusEnum
|
18367
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
19737
18368
|
}
|
19738
18369
|
|
19739
18370
|
"""Updates a draft or quote nautical order."""
|
@@ -19763,7 +18394,7 @@ input NauticalDraftOrderInput {
|
|
19763
18394
|
be given a sub status of AWAITING_PAYMENT. Quote order can have or be given a
|
19764
18395
|
sub status of either QUOTE_REQUESTED or IN_REVIEW.
|
19765
18396
|
"""
|
19766
|
-
subStatus: OrderSubStatusEnum
|
18397
|
+
subStatus: OrderSubStatusEnum @deprecated(reason: "This will be removed on September 9, 2025.")
|
19767
18398
|
|
19768
18399
|
"""
|
19769
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
|
@@ -19878,13 +18509,6 @@ type NauticalOrderCancel {
|
|
19878
18509
|
orderErrors: [OrderError!]!
|
19879
18510
|
}
|
19880
18511
|
|
19881
|
-
"""Cancel a nautical quote order."""
|
19882
|
-
type NauticalQuoteOrderCancel {
|
19883
|
-
"""Canceled nautical quote order."""
|
19884
|
-
order: NauticalOrder
|
19885
|
-
orderErrors: [OrderError!]!
|
19886
|
-
}
|
19887
|
-
|
19888
18512
|
"""Capture a nautical order."""
|
19889
18513
|
type NauticalOrderCapture {
|
19890
18514
|
"""Captured Nautical Order."""
|
@@ -20296,6 +18920,13 @@ type NauticalQuoteOrderSendToCustomer {
|
|
20296
18920
|
orderErrors: [OrderError!]!
|
20297
18921
|
}
|
20298
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
|
+
|
20299
18930
|
"""Creates a new order fee."""
|
20300
18931
|
type OrderFeeCreate {
|
20301
18932
|
"""An order fee that was created."""
|
@@ -21282,15 +19913,6 @@ type CheckoutComplete {
|
|
21282
19913
|
checkoutErrors: [CheckoutError!]!
|
21283
19914
|
}
|
21284
19915
|
|
21285
|
-
"""
|
21286
|
-
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.
|
21287
|
-
"""
|
21288
|
-
type CheckoutConvertToNauticalQuoteOrder {
|
21289
|
-
"""Created Nautical Quote Order."""
|
21290
|
-
order: NauticalOrder
|
21291
|
-
checkoutErrors: [CheckoutError!]!
|
21292
|
-
}
|
21293
|
-
|
21294
19916
|
"""Create a new checkout."""
|
21295
19917
|
type CheckoutCreate {
|
21296
19918
|
"""
|
@@ -21620,6 +20242,9 @@ input AttributeUpdateInput {
|
|
21620
20242
|
"""Internal representation of an attribute name."""
|
21621
20243
|
slug: String
|
21622
20244
|
|
20245
|
+
"""Existing values to be updated for this attribute."""
|
20246
|
+
updateValues: [AttributeValueUpdateInput!]
|
20247
|
+
|
21623
20248
|
"""IDs of values to be removed from this attribute."""
|
21624
20249
|
removeValues: [ID!]
|
21625
20250
|
|
@@ -21658,6 +20283,14 @@ input AttributeUpdateInput {
|
|
21658
20283
|
isLocked: Boolean
|
21659
20284
|
}
|
21660
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
|
+
|
21661
20294
|
"""Assign attributes to a given custom field template."""
|
21662
20295
|
type CustomAttributeAssign {
|
21663
20296
|
"""The updated custom field template."""
|