@nautical-commerce/graphql-schema 1.73.0 → 1.74.0-2-g25036c536
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 +157 -65
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -67,6 +67,33 @@ type PageInfo {
|
|
67
67
|
}
|
68
68
|
|
69
69
|
type Query {
|
70
|
+
"""Look up a marketplace subscription by id."""
|
71
|
+
marketplaceSubscription(
|
72
|
+
"""ID of a marketplace subscription"""
|
73
|
+
id: ID!
|
74
|
+
): MarketplaceSubscription
|
75
|
+
|
76
|
+
"""List of marketplace subscriptions."""
|
77
|
+
marketplaceSubscriptions(
|
78
|
+
"""Filtering options for marketplace subscriptions."""
|
79
|
+
filter: MarketplaceSubscriptionFilterInput
|
80
|
+
|
81
|
+
"""Sort marketplace subscription."""
|
82
|
+
sortBy: MarketplaceSubscriptionSortingInput
|
83
|
+
|
84
|
+
"""Return the elements in the list that come before the specified cursor."""
|
85
|
+
before: String
|
86
|
+
|
87
|
+
"""Return the elements in the list that come after the specified cursor."""
|
88
|
+
after: String
|
89
|
+
|
90
|
+
"""Return the first n elements from the list."""
|
91
|
+
first: Int
|
92
|
+
|
93
|
+
"""Return the last n elements from the list."""
|
94
|
+
last: Int
|
95
|
+
): MarketplaceSubscriptionCountableConnection
|
96
|
+
|
70
97
|
"""Look up an email template by ID."""
|
71
98
|
emailTemplate(
|
72
99
|
"""ID of an email template"""
|
@@ -742,7 +769,7 @@ type Query {
|
|
742
769
|
priceBook(
|
743
770
|
"""ID of a price book."""
|
744
771
|
id: ID!
|
745
|
-
): PriceBook
|
772
|
+
): PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
746
773
|
|
747
774
|
"""List of price books."""
|
748
775
|
priceBooks(
|
@@ -763,7 +790,7 @@ type Query {
|
|
763
790
|
|
764
791
|
"""Return the last n elements from the list."""
|
765
792
|
last: Int
|
766
|
-
): PriceBookCountableConnection
|
793
|
+
): PriceBookCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
767
794
|
|
768
795
|
"""List of price book variants in."""
|
769
796
|
priceBookVariants(
|
@@ -790,7 +817,7 @@ type Query {
|
|
790
817
|
|
791
818
|
"""Return the last n elements from the list."""
|
792
819
|
last: Int
|
793
|
-
): PriceBookVariantCountableConnection
|
820
|
+
): PriceBookVariantCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
794
821
|
|
795
822
|
"""List of price book products."""
|
796
823
|
priceBookProducts(
|
@@ -817,7 +844,7 @@ type Query {
|
|
817
844
|
|
818
845
|
"""Return the last n elements from the list."""
|
819
846
|
last: Int
|
820
|
-
): PriceBookProductCountableConnection
|
847
|
+
): PriceBookProductCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
821
848
|
|
822
849
|
"""List of price book product types."""
|
823
850
|
priceBookProductTypes(
|
@@ -844,7 +871,7 @@ type Query {
|
|
844
871
|
|
845
872
|
"""Return the last n elements from the list."""
|
846
873
|
last: Int
|
847
|
-
): PriceBookProductTypeCountableConnection
|
874
|
+
): PriceBookProductTypeCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
848
875
|
|
849
876
|
"""List of price book variants in history table."""
|
850
877
|
priceBookVariantsHistory(
|
@@ -871,7 +898,7 @@ type Query {
|
|
871
898
|
|
872
899
|
"""Return the last n elements from the list."""
|
873
900
|
last: Int
|
874
|
-
): PriceBookVariantHistoryCountableConnection
|
901
|
+
): PriceBookVariantHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
875
902
|
|
876
903
|
"""List of price book products in history table."""
|
877
904
|
priceBookProductsHistory(
|
@@ -898,7 +925,7 @@ type Query {
|
|
898
925
|
|
899
926
|
"""Return the last n elements from the list."""
|
900
927
|
last: Int
|
901
|
-
): PriceBookProductHistoryCountableConnection
|
928
|
+
): PriceBookProductHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
902
929
|
|
903
930
|
"""List of price book product types in history tables."""
|
904
931
|
priceBookProductTypesHistory(
|
@@ -925,7 +952,7 @@ type Query {
|
|
925
952
|
|
926
953
|
"""Return the last n elements from the list."""
|
927
954
|
last: Int
|
928
|
-
): PriceBookProductTypeHistoryCountableConnection
|
955
|
+
): PriceBookProductTypeHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
929
956
|
|
930
957
|
"""Look up users attached to a price book by ID."""
|
931
958
|
priceBookUsers(
|
@@ -946,7 +973,7 @@ type Query {
|
|
946
973
|
|
947
974
|
"""Return the last n elements from the list."""
|
948
975
|
last: Int
|
949
|
-
): UserCountableConnection
|
976
|
+
): UserCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
950
977
|
|
951
978
|
"""Look up a plugin by ID."""
|
952
979
|
plugin(
|
@@ -1363,13 +1390,13 @@ type Query {
|
|
1363
1390
|
|
1364
1391
|
"""Return the last n elements from the list."""
|
1365
1392
|
last: Int
|
1366
|
-
): NauticalOrderCountableConnection
|
1393
|
+
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1367
1394
|
|
1368
1395
|
"""Look up a nautical quote order by token"""
|
1369
1396
|
nauticalQuoteOrderByToken(
|
1370
1397
|
"""The Nautical quote order token"""
|
1371
1398
|
token: NauticalUUID!
|
1372
|
-
): NauticalOrder
|
1399
|
+
): NauticalOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1373
1400
|
|
1374
1401
|
"""List of quote orders."""
|
1375
1402
|
quoteOrders(
|
@@ -1393,7 +1420,7 @@ type Query {
|
|
1393
1420
|
|
1394
1421
|
"""Return the last n elements from the list."""
|
1395
1422
|
last: Int
|
1396
|
-
): OrderCountableConnection
|
1423
|
+
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1397
1424
|
|
1398
1425
|
"""Return the total sales amount from a specific period."""
|
1399
1426
|
ordersTotal(
|
@@ -2130,6 +2157,79 @@ type Query {
|
|
2130
2157
|
_service: _Service!
|
2131
2158
|
}
|
2132
2159
|
|
2160
|
+
"""Represents a marketplace subscription."""
|
2161
|
+
type MarketplaceSubscription implements Node {
|
2162
|
+
"""The ID of the object"""
|
2163
|
+
id: ID!
|
2164
|
+
providerCustomerId: String!
|
2165
|
+
isActive: Boolean!
|
2166
|
+
|
2167
|
+
"""The provider of the marketplace subscription"""
|
2168
|
+
provider: MarketplaceSubscriptionProviderTypeEnum
|
2169
|
+
}
|
2170
|
+
|
2171
|
+
"""An object with an ID"""
|
2172
|
+
interface Node {
|
2173
|
+
"""The ID of the object"""
|
2174
|
+
id: ID!
|
2175
|
+
}
|
2176
|
+
|
2177
|
+
"""An enumeration."""
|
2178
|
+
enum MarketplaceSubscriptionProviderTypeEnum {
|
2179
|
+
STRIPE
|
2180
|
+
}
|
2181
|
+
|
2182
|
+
type MarketplaceSubscriptionCountableConnection {
|
2183
|
+
"""Pagination data for this connection."""
|
2184
|
+
pageInfo: PageInfo!
|
2185
|
+
edges: [MarketplaceSubscriptionCountableEdge!]!
|
2186
|
+
|
2187
|
+
"""A total count of items in the collection."""
|
2188
|
+
totalCount: Int
|
2189
|
+
}
|
2190
|
+
|
2191
|
+
type MarketplaceSubscriptionCountableEdge {
|
2192
|
+
"""The item at the end of the edge."""
|
2193
|
+
node: MarketplaceSubscription!
|
2194
|
+
|
2195
|
+
"""A cursor for use in pagination."""
|
2196
|
+
cursor: String!
|
2197
|
+
}
|
2198
|
+
|
2199
|
+
"""Filter input class for marketplace subscriptions."""
|
2200
|
+
input MarketplaceSubscriptionFilterInput {
|
2201
|
+
isActive: Boolean
|
2202
|
+
provider: MarketplaceSubscriptionProviderTypeEnum
|
2203
|
+
}
|
2204
|
+
|
2205
|
+
"""Input type for specifying marketplace subscription sorting criteria."""
|
2206
|
+
input MarketplaceSubscriptionSortingInput {
|
2207
|
+
"""Specifies the direction in which to sort products."""
|
2208
|
+
direction: OrderDirection!
|
2209
|
+
|
2210
|
+
"""Sort marketplace subscription by the selected field."""
|
2211
|
+
field: MarketplaceSubscriptionSortField!
|
2212
|
+
}
|
2213
|
+
|
2214
|
+
enum OrderDirection {
|
2215
|
+
"""Specifies an ascending sort order."""
|
2216
|
+
ASC
|
2217
|
+
|
2218
|
+
"""Specifies a descending sort order."""
|
2219
|
+
DESC
|
2220
|
+
}
|
2221
|
+
|
2222
|
+
"""
|
2223
|
+
Enumerates possible fields by which marketplace subscriptions can be sorted.
|
2224
|
+
"""
|
2225
|
+
enum MarketplaceSubscriptionSortField {
|
2226
|
+
"""Sort marketplace subscription by id."""
|
2227
|
+
ID
|
2228
|
+
|
2229
|
+
"""Sort marketplace subscription by provider."""
|
2230
|
+
PROVIDER
|
2231
|
+
}
|
2232
|
+
|
2133
2233
|
"""Represents an email template."""
|
2134
2234
|
type EmailTemplate implements Node {
|
2135
2235
|
"""The ID of the object"""
|
@@ -2154,12 +2254,6 @@ type EmailTemplate implements Node {
|
|
2154
2254
|
eventType: EventTypeEnum!
|
2155
2255
|
}
|
2156
2256
|
|
2157
|
-
"""An object with an ID"""
|
2158
|
-
interface Node {
|
2159
|
-
"""The ID of the object"""
|
2160
|
-
id: ID!
|
2161
|
-
}
|
2162
|
-
|
2163
2257
|
"""
|
2164
2258
|
The `DateTime` scalar type represents a DateTime
|
2165
2259
|
value as specified by
|
@@ -2259,14 +2353,6 @@ input EmailTemplateSortingInput {
|
|
2259
2353
|
field: EmailTemplateSortField!
|
2260
2354
|
}
|
2261
2355
|
|
2262
|
-
enum OrderDirection {
|
2263
|
-
"""Specifies an ascending sort order."""
|
2264
|
-
ASC
|
2265
|
-
|
2266
|
-
"""Specifies a descending sort order."""
|
2267
|
-
DESC
|
2268
|
-
}
|
2269
|
-
|
2270
2356
|
enum EmailTemplateSortField {
|
2271
2357
|
"""Sort email template by title."""
|
2272
2358
|
TITLE
|
@@ -2416,7 +2502,7 @@ type User implements Node & ObjectWithMetadata {
|
|
2416
2502
|
|
2417
2503
|
"""Return the last n elements from the list."""
|
2418
2504
|
last: Int
|
2419
|
-
): OrderCountableConnection
|
2505
|
+
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2420
2506
|
numOrders: Int
|
2421
2507
|
|
2422
2508
|
"""List of user's nautical orders."""
|
@@ -2459,7 +2545,7 @@ type User implements Node & ObjectWithMetadata {
|
|
2459
2545
|
|
2460
2546
|
"""Return the last n elements from the list."""
|
2461
2547
|
last: Int
|
2462
|
-
): NauticalOrderCountableConnection
|
2548
|
+
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2463
2549
|
|
2464
2550
|
"""List of user's permissions."""
|
2465
2551
|
userPermissions: [UserPermission!]!
|
@@ -2516,7 +2602,7 @@ type User implements Node & ObjectWithMetadata {
|
|
2516
2602
|
documents: [Document!]!
|
2517
2603
|
|
2518
2604
|
"""Returns values of price book the user is added to"""
|
2519
|
-
priceBook: PriceBook
|
2605
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
2520
2606
|
|
2521
2607
|
"""
|
2522
2608
|
If null, then the environment isn't set and they don't have dashboard reporting enabled
|
@@ -2665,6 +2751,9 @@ type Checkout implements Node & ObjectWithMetadata {
|
|
2665
2751
|
"""The price of the checkout before shipping, with taxes included."""
|
2666
2752
|
subtotalPrice: TaxedMoney!
|
2667
2753
|
|
2754
|
+
"""The price of the checkout before discount, shipping and taxes"""
|
2755
|
+
originalPrice: Money!
|
2756
|
+
|
2668
2757
|
"""The checkout's token."""
|
2669
2758
|
token: NauticalUUID!
|
2670
2759
|
|
@@ -3897,7 +3986,7 @@ enum OrderOrderSource {
|
|
3897
3986
|
"""An enumeration."""
|
3898
3987
|
enum OrderStatus {
|
3899
3988
|
DRAFT
|
3900
|
-
QUOTE
|
3989
|
+
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
3901
3990
|
UNFULFILLED
|
3902
3991
|
PARTIALLY_FULFILLED
|
3903
3992
|
FULFILLED
|
@@ -4929,6 +5018,7 @@ enum WebhookEventTypeEnum {
|
|
4929
5018
|
CUSTOMER_UPDATED
|
4930
5019
|
CUSTOMER_DELETED
|
4931
5020
|
FULFILLMENT_CREATED
|
5021
|
+
FULFILLMENT_UPDATED
|
4932
5022
|
INVOICE_DELETED
|
4933
5023
|
INVOICE_REQUESTED
|
4934
5024
|
INVOICE_SENT
|
@@ -5719,10 +5809,10 @@ enum NauticalOrderSubStatus {
|
|
5719
5809
|
|
5720
5810
|
enum OrderSubStatusEnum {
|
5721
5811
|
"""In Review"""
|
5722
|
-
IN_REVIEW
|
5812
|
+
IN_REVIEW @deprecated(reason: "This will be removed on June 11, 2025")
|
5723
5813
|
|
5724
5814
|
"""Quote Requested"""
|
5725
|
-
QUOTE_REQUESTED
|
5815
|
+
QUOTE_REQUESTED @deprecated(reason: "This will be removed on June 11, 2025")
|
5726
5816
|
|
5727
5817
|
"""Awaiting Payment"""
|
5728
5818
|
AWAITING_PAYMENT
|
@@ -5790,7 +5880,7 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
5790
5880
|
allocations: [Allocation!]
|
5791
5881
|
|
5792
5882
|
"""The pricebook, if any, that changed the price of this line."""
|
5793
|
-
priceBook: PriceBook
|
5883
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
5794
5884
|
|
5795
5885
|
"""The number of items ordered on this order line."""
|
5796
5886
|
quantityOrdered: Int!
|
@@ -5889,7 +5979,7 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
5889
5979
|
translatedVariantName: String!
|
5890
5980
|
|
5891
5981
|
"""The pricebook, if any, that changed the price of this line"""
|
5892
|
-
priceBook: PriceBook
|
5982
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
5893
5983
|
|
5894
5984
|
"""The related orderline attached to the connected seller order"""
|
5895
5985
|
sellerOrderline: OrderLine
|
@@ -7805,10 +7895,11 @@ enum OrderStatusFilter {
|
|
7805
7895
|
CANCELED
|
7806
7896
|
}
|
7807
7897
|
|
7898
|
+
"""An enumeration."""
|
7808
7899
|
enum OrderSourceFilter {
|
7809
7900
|
CHECKOUT
|
7810
7901
|
DRAFT
|
7811
|
-
QUOTE
|
7902
|
+
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
7812
7903
|
MANUAL
|
7813
7904
|
EXTERNAL
|
7814
7905
|
}
|
@@ -8054,6 +8145,7 @@ enum WebhookSampleEventTypeEnum {
|
|
8054
8145
|
CUSTOMER_UPDATED
|
8055
8146
|
CUSTOMER_DELETED
|
8056
8147
|
FULFILLMENT_CREATED
|
8148
|
+
FULFILLMENT_UPDATED
|
8057
8149
|
INVOICE_DELETED
|
8058
8150
|
INVOICE_REQUESTED
|
8059
8151
|
INVOICE_SENT
|
@@ -8547,7 +8639,7 @@ type Shop {
|
|
8547
8639
|
dashboardUrl: String
|
8548
8640
|
|
8549
8641
|
"""Whether the marketplace has enabled quote orders."""
|
8550
|
-
enableQuoteOrders: Boolean
|
8642
|
+
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8551
8643
|
|
8552
8644
|
"""Whether the marketplace has enabled offer orders."""
|
8553
8645
|
enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
@@ -8841,10 +8933,10 @@ type SellerOnboardingSettings implements Node {
|
|
8841
8933
|
welcomeMessage: String
|
8842
8934
|
|
8843
8935
|
"""The fulfillment model used by the MP."""
|
8844
|
-
fulfillmentModel: String
|
8936
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025")
|
8845
8937
|
|
8846
8938
|
"""A summary of required documents from sellers."""
|
8847
|
-
requiredDocuments: String
|
8939
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025")
|
8848
8940
|
|
8849
8941
|
"""Text displayed when the MP is not accepting new sellers."""
|
8850
8942
|
notAcceptingSellersMessage: String
|
@@ -13162,7 +13254,7 @@ type Mutation {
|
|
13162
13254
|
description: String
|
13163
13255
|
|
13164
13256
|
"""
|
13165
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13257
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/jpg, image/x-bmp, image/x-tiff, application/vnd.pdf, image/heic, application/rtf, application/x-autocad, application/vnd.oasis.opendocument.spreadsheet, application/x-dwg, image/gif, text/csv, application/jpg, image/svg, application/gzip-compressed, application/x-pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/svg+xml, image/x-dwg, application/vnd.ms-excel, image/eps, image/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/comma-separated-values, drawing/dwg, application/msword, application/excel, application/x-tif, image/x-tif, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/svg+xml, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif, image/bmp, application/acrobat, image/tif, application/x-rar, image/dxf, application/vnd.oasis.opendocument.presentation, image/vnd.dwg, application/x-eps, application/vnd.ms-powerpoint, application/eps, application/x-zip-compressed, application/x-tar, image/heic-sequence, image/x-eps, application/gzip, application/dxf, image/heif-sequence, image/x-ms-bmp, image/webp, application/x-gzip, image/jpeg, application/csv, application/tif, application/vnd.oasis.opendocument.text, application/zip, application/gzipped, image/tiff, text/rtf, text/svg, text/svg-xml, application/x-dxf, application/vnd.ms-word, application/pdf, application/acad, text/x-csv, application/postscript, text/pdf, application/tiff, text/plain, text/x-comma-separated-values, application/dwg, application/x-csv, text/x-pdf, application/x-jpg, drawing/x-dwf, application/x-acad, application/x-rar-compressed, application/x-tiff, image/png, drawing/x-dwg.
|
13166
13258
|
"""
|
13167
13259
|
file: Upload!
|
13168
13260
|
|
@@ -14010,7 +14102,7 @@ type Mutation {
|
|
14010
14102
|
priceBookCreate(
|
14011
14103
|
"""Fields required to create a price book."""
|
14012
14104
|
input: PriceBookCreateInput!
|
14013
|
-
): PriceBookCreate
|
14105
|
+
): PriceBookCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14014
14106
|
|
14015
14107
|
"""Updates an existing price book."""
|
14016
14108
|
priceBookUpdate(
|
@@ -14019,25 +14111,25 @@ type Mutation {
|
|
14019
14111
|
|
14020
14112
|
"""Fields required to update a price book."""
|
14021
14113
|
input: PriceBookUpdateInput!
|
14022
|
-
): PriceBookUpdate
|
14114
|
+
): PriceBookUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14023
14115
|
|
14024
14116
|
"""Deletes a price book."""
|
14025
14117
|
priceBookDelete(
|
14026
14118
|
"""ID of a price book to delete."""
|
14027
14119
|
id: ID!
|
14028
|
-
): PriceBookDelete
|
14120
|
+
): PriceBookDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14029
14121
|
|
14030
14122
|
"""Deletes price books."""
|
14031
14123
|
priceBookBulkDelete(
|
14032
14124
|
"""List of price book IDs to delete."""
|
14033
14125
|
ids: [ID!]!
|
14034
|
-
): PriceBookBulkDelete
|
14126
|
+
): PriceBookBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14035
14127
|
|
14036
14128
|
"""Add a variant to price book."""
|
14037
14129
|
priceBookVariantCreate(
|
14038
14130
|
"""Fields required to add a price book variant."""
|
14039
14131
|
input: PriceBookVariantCreateInput!
|
14040
|
-
): PriceBookVariantCreate
|
14132
|
+
): PriceBookVariantCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14041
14133
|
|
14042
14134
|
"""Updates an existing price book variant."""
|
14043
14135
|
priceBookVariantUpdate(
|
@@ -14046,25 +14138,25 @@ type Mutation {
|
|
14046
14138
|
|
14047
14139
|
"""Fields required to update a price book variant."""
|
14048
14140
|
input: PriceBookVariantUpdateInput!
|
14049
|
-
): PriceBookVariantUpdate
|
14141
|
+
): PriceBookVariantUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14050
14142
|
|
14051
14143
|
"""Deletes a price book variant."""
|
14052
14144
|
priceBookVariantDelete(
|
14053
14145
|
"""ID of a price book variant to delete."""
|
14054
14146
|
id: ID!
|
14055
|
-
): PriceBookVariantDelete
|
14147
|
+
): PriceBookVariantDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14056
14148
|
|
14057
14149
|
"""Deletes price book's variants."""
|
14058
14150
|
priceBookVariantBulkDelete(
|
14059
14151
|
"""List of price book variant IDs to delete."""
|
14060
14152
|
ids: [ID!]!
|
14061
|
-
): PriceBookVariantBulkDelete
|
14153
|
+
): PriceBookVariantBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14062
14154
|
|
14063
14155
|
"""Add a product to price book."""
|
14064
14156
|
priceBookProductCreate(
|
14065
14157
|
"""Fields required to add a price book product."""
|
14066
14158
|
input: PriceBookProductCreateInput!
|
14067
|
-
): PriceBookProductCreate
|
14159
|
+
): PriceBookProductCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14068
14160
|
|
14069
14161
|
"""Updates an existing price book product."""
|
14070
14162
|
priceBookProductUpdate(
|
@@ -14073,25 +14165,25 @@ type Mutation {
|
|
14073
14165
|
|
14074
14166
|
"""Fields required to update a price book product."""
|
14075
14167
|
input: PriceBookProductUpdateInput!
|
14076
|
-
): PriceBookProductUpdate
|
14168
|
+
): PriceBookProductUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14077
14169
|
|
14078
14170
|
"""Deletes a price book product."""
|
14079
14171
|
priceBookProductDelete(
|
14080
14172
|
"""ID of a price book product to delete."""
|
14081
14173
|
id: ID!
|
14082
|
-
): PriceBookProductDelete
|
14174
|
+
): PriceBookProductDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14083
14175
|
|
14084
14176
|
"""Deletes price book's products."""
|
14085
14177
|
priceBookProductBulkDelete(
|
14086
14178
|
"""List of price book product IDs to delete."""
|
14087
14179
|
ids: [ID!]!
|
14088
|
-
): PriceBookProductBulkDelete
|
14180
|
+
): PriceBookProductBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14089
14181
|
|
14090
14182
|
"""Add a product type to price book."""
|
14091
14183
|
priceBookProductTypeCreate(
|
14092
14184
|
"""Fields required to add a price book product type."""
|
14093
14185
|
input: PriceBookProductTypeCreateInput!
|
14094
|
-
): PriceBookProductTypeCreate
|
14186
|
+
): PriceBookProductTypeCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14095
14187
|
|
14096
14188
|
"""Updates an existing price book product type."""
|
14097
14189
|
priceBookProductTypeUpdate(
|
@@ -14100,31 +14192,31 @@ type Mutation {
|
|
14100
14192
|
|
14101
14193
|
"""Fields required to update a price book product type."""
|
14102
14194
|
input: PriceBookProductTypeUpdateInput!
|
14103
|
-
): PriceBookProductTypeUpdate
|
14195
|
+
): PriceBookProductTypeUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14104
14196
|
|
14105
14197
|
"""Deletes a price book product type."""
|
14106
14198
|
priceBookProductTypeDelete(
|
14107
14199
|
"""ID of a price book product type to delete."""
|
14108
14200
|
id: ID!
|
14109
|
-
): PriceBookProductTypeDelete
|
14201
|
+
): PriceBookProductTypeDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14110
14202
|
|
14111
14203
|
"""Deletes price book's product types."""
|
14112
14204
|
priceBookProductTypeBulkDelete(
|
14113
14205
|
"""List of price book product type IDs to delete."""
|
14114
14206
|
ids: [ID!]!
|
14115
|
-
): PriceBookProductTypeBulkDelete
|
14207
|
+
): PriceBookProductTypeBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14116
14208
|
|
14117
14209
|
"""Add a user to price book."""
|
14118
14210
|
userAddToPriceBook(
|
14119
14211
|
"""Fields required to add a user to price book."""
|
14120
14212
|
input: UserAddToPriceBookInput!
|
14121
|
-
): UserAddToPriceBook
|
14213
|
+
): UserAddToPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14122
14214
|
|
14123
14215
|
"""Removes a user from price book."""
|
14124
14216
|
userRemoveFromPriceBook(
|
14125
14217
|
"""ID of user to be removed from price book."""
|
14126
14218
|
id: ID!
|
14127
|
-
): UserRemoveFromPriceBook
|
14219
|
+
): UserRemoveFromPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14128
14220
|
|
14129
14221
|
"""Creates a new category."""
|
14130
14222
|
categoryCreate(
|
@@ -15124,7 +15216,7 @@ type Mutation {
|
|
15124
15216
|
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=...
|
15125
15217
|
"""
|
15126
15218
|
storefrontUrl: String!
|
15127
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "The ability to send Order IDs will be removed on February 26, 2025.")
|
15219
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "The ability to send Order IDs will be removed on February 26, 2025. This will be removed on June 11, 2025.")
|
15128
15220
|
|
15129
15221
|
"""Creates a new order fee."""
|
15130
15222
|
orderFeeCreate(
|
@@ -15605,7 +15697,7 @@ type Mutation {
|
|
15605
15697
|
checkoutConvertToNauticalQuoteOrder(
|
15606
15698
|
"""Checkout ID."""
|
15607
15699
|
checkoutId: ID!
|
15608
|
-
): CheckoutConvertToNauticalQuoteOrder
|
15700
|
+
): CheckoutConvertToNauticalQuoteOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
15609
15701
|
|
15610
15702
|
"""Create a new checkout."""
|
15611
15703
|
checkoutCreate(
|
@@ -16591,7 +16683,7 @@ input MarketplaceConfigurationInput {
|
|
16591
16683
|
supportedCountries: [String!]
|
16592
16684
|
|
16593
16685
|
"""True if sellers can send quotes to customers."""
|
16594
|
-
sellerCanSendQuote: Boolean
|
16686
|
+
sellerCanSendQuote: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16595
16687
|
|
16596
16688
|
"""Determines scope for checking duplicated variant attribute sets"""
|
16597
16689
|
variantUniqueness: VariantUniquenessEnum = null
|
@@ -16600,7 +16692,7 @@ input MarketplaceConfigurationInput {
|
|
16600
16692
|
defaultSellerChecklists: [DefaultSellerChecklistInput!]
|
16601
16693
|
|
16602
16694
|
"""True if quote orders trigger stock allocation."""
|
16603
|
-
enableStockAllocationForQuotes: Boolean
|
16695
|
+
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16604
16696
|
|
16605
16697
|
"""True if offer orders trigger stock allocation."""
|
16606
16698
|
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
@@ -18061,10 +18153,10 @@ input SellerOnboardingSettingsCreateInput {
|
|
18061
18153
|
welcomeMessage: String
|
18062
18154
|
|
18063
18155
|
"""The fulfillment model used by the MP."""
|
18064
|
-
fulfillmentModel: String
|
18156
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18065
18157
|
|
18066
18158
|
"""A summary of required documents from sellers."""
|
18067
|
-
requiredDocuments: String
|
18159
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18068
18160
|
|
18069
18161
|
"""Text displayed when the MP is not accepting new sellers."""
|
18070
18162
|
notAcceptingSellersMessage: String
|
@@ -18088,10 +18180,10 @@ input SellerOnboardingSettingsUpdateInput {
|
|
18088
18180
|
welcomeMessage: String
|
18089
18181
|
|
18090
18182
|
"""The fulfillment model used by the MP."""
|
18091
|
-
fulfillmentModel: String
|
18183
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18092
18184
|
|
18093
18185
|
"""A summary of required documents from sellers."""
|
18094
|
-
requiredDocuments: String
|
18186
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18095
18187
|
|
18096
18188
|
"""Text displayed when the MP is not accepting new sellers."""
|
18097
18189
|
notAcceptingSellersMessage: String
|