@nautical-commerce/graphql-schema 1.73.0-9-g607b074f3 → 1.74.0-1-ga54313147
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 +149 -59
- 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
|
@@ -5720,10 +5809,10 @@ enum NauticalOrderSubStatus {
|
|
5720
5809
|
|
5721
5810
|
enum OrderSubStatusEnum {
|
5722
5811
|
"""In Review"""
|
5723
|
-
IN_REVIEW
|
5812
|
+
IN_REVIEW @deprecated(reason: "This will be removed on June 11, 2025")
|
5724
5813
|
|
5725
5814
|
"""Quote Requested"""
|
5726
|
-
QUOTE_REQUESTED
|
5815
|
+
QUOTE_REQUESTED @deprecated(reason: "This will be removed on June 11, 2025")
|
5727
5816
|
|
5728
5817
|
"""Awaiting Payment"""
|
5729
5818
|
AWAITING_PAYMENT
|
@@ -5791,7 +5880,7 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
5791
5880
|
allocations: [Allocation!]
|
5792
5881
|
|
5793
5882
|
"""The pricebook, if any, that changed the price of this line."""
|
5794
|
-
priceBook: PriceBook
|
5883
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
5795
5884
|
|
5796
5885
|
"""The number of items ordered on this order line."""
|
5797
5886
|
quantityOrdered: Int!
|
@@ -5890,7 +5979,7 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
5890
5979
|
translatedVariantName: String!
|
5891
5980
|
|
5892
5981
|
"""The pricebook, if any, that changed the price of this line"""
|
5893
|
-
priceBook: PriceBook
|
5982
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
5894
5983
|
|
5895
5984
|
"""The related orderline attached to the connected seller order"""
|
5896
5985
|
sellerOrderline: OrderLine
|
@@ -7806,10 +7895,11 @@ enum OrderStatusFilter {
|
|
7806
7895
|
CANCELED
|
7807
7896
|
}
|
7808
7897
|
|
7898
|
+
"""An enumeration."""
|
7809
7899
|
enum OrderSourceFilter {
|
7810
7900
|
CHECKOUT
|
7811
7901
|
DRAFT
|
7812
|
-
QUOTE
|
7902
|
+
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
7813
7903
|
MANUAL
|
7814
7904
|
EXTERNAL
|
7815
7905
|
}
|
@@ -8549,7 +8639,7 @@ type Shop {
|
|
8549
8639
|
dashboardUrl: String
|
8550
8640
|
|
8551
8641
|
"""Whether the marketplace has enabled quote orders."""
|
8552
|
-
enableQuoteOrders: Boolean
|
8642
|
+
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8553
8643
|
|
8554
8644
|
"""Whether the marketplace has enabled offer orders."""
|
8555
8645
|
enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
@@ -13164,7 +13254,7 @@ type Mutation {
|
|
13164
13254
|
description: String
|
13165
13255
|
|
13166
13256
|
"""
|
13167
|
-
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: text/pdf, image/eps, image/heic-sequence, application/postscript, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/svg-xml, application/acad, application/gzip-compressed, application/acrobat, application/vnd.ms-powerpoint, application/tif, image/tiff, application/x-csv, application/x-zip-compressed, application/gzip, drawing/x-dwf, application/x-tif, application/x-tar, application/eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar, image/heic, application/gzipped, image/jpeg, application/x-tiff, application/x-pdf, image/webp, text/csv, text/rtf, application/x-jpg, text/comma-separated-values, text/x-csv, image/bmp, image/x-eps, image/tif, application/pdf, image/svg+xml, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-bmp, text/x-comma-separated-values, drawing/dwg, application/x-rtf, application/dwg, image/dxf, application/vnd.oasis.opendocument.text, image/heif, application/x-eps, image/heif-sequence, image/x-dxf, application/x-autocad, application/zip, image/x-tif, application/vnd.oasis.opendocument.spreadsheet, application/vnd.oasis.opendocument.presentation, application/svg+xml, image/png, pplication/vnd.rar, image/x-dwg, image/vnd.dwg, application/vnd.pdf, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/excel, text/svg, application/csv, application/msword, text/x-pdf, application/vnd.ms-word, application/rtf, application/dxf, application/tiff, image/gif, application/x-rar-compressed, image/x-tiff, application/x-dxf, application/x-acad, application/x-gzip, drawing/x-dwg, image/svg, image/jpg, text/plain, application/jpg.
|
13168
13258
|
"""
|
13169
13259
|
file: Upload!
|
13170
13260
|
|
@@ -14012,7 +14102,7 @@ type Mutation {
|
|
14012
14102
|
priceBookCreate(
|
14013
14103
|
"""Fields required to create a price book."""
|
14014
14104
|
input: PriceBookCreateInput!
|
14015
|
-
): PriceBookCreate
|
14105
|
+
): PriceBookCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14016
14106
|
|
14017
14107
|
"""Updates an existing price book."""
|
14018
14108
|
priceBookUpdate(
|
@@ -14021,25 +14111,25 @@ type Mutation {
|
|
14021
14111
|
|
14022
14112
|
"""Fields required to update a price book."""
|
14023
14113
|
input: PriceBookUpdateInput!
|
14024
|
-
): PriceBookUpdate
|
14114
|
+
): PriceBookUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14025
14115
|
|
14026
14116
|
"""Deletes a price book."""
|
14027
14117
|
priceBookDelete(
|
14028
14118
|
"""ID of a price book to delete."""
|
14029
14119
|
id: ID!
|
14030
|
-
): PriceBookDelete
|
14120
|
+
): PriceBookDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14031
14121
|
|
14032
14122
|
"""Deletes price books."""
|
14033
14123
|
priceBookBulkDelete(
|
14034
14124
|
"""List of price book IDs to delete."""
|
14035
14125
|
ids: [ID!]!
|
14036
|
-
): PriceBookBulkDelete
|
14126
|
+
): PriceBookBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14037
14127
|
|
14038
14128
|
"""Add a variant to price book."""
|
14039
14129
|
priceBookVariantCreate(
|
14040
14130
|
"""Fields required to add a price book variant."""
|
14041
14131
|
input: PriceBookVariantCreateInput!
|
14042
|
-
): PriceBookVariantCreate
|
14132
|
+
): PriceBookVariantCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14043
14133
|
|
14044
14134
|
"""Updates an existing price book variant."""
|
14045
14135
|
priceBookVariantUpdate(
|
@@ -14048,25 +14138,25 @@ type Mutation {
|
|
14048
14138
|
|
14049
14139
|
"""Fields required to update a price book variant."""
|
14050
14140
|
input: PriceBookVariantUpdateInput!
|
14051
|
-
): PriceBookVariantUpdate
|
14141
|
+
): PriceBookVariantUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14052
14142
|
|
14053
14143
|
"""Deletes a price book variant."""
|
14054
14144
|
priceBookVariantDelete(
|
14055
14145
|
"""ID of a price book variant to delete."""
|
14056
14146
|
id: ID!
|
14057
|
-
): PriceBookVariantDelete
|
14147
|
+
): PriceBookVariantDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14058
14148
|
|
14059
14149
|
"""Deletes price book's variants."""
|
14060
14150
|
priceBookVariantBulkDelete(
|
14061
14151
|
"""List of price book variant IDs to delete."""
|
14062
14152
|
ids: [ID!]!
|
14063
|
-
): PriceBookVariantBulkDelete
|
14153
|
+
): PriceBookVariantBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14064
14154
|
|
14065
14155
|
"""Add a product to price book."""
|
14066
14156
|
priceBookProductCreate(
|
14067
14157
|
"""Fields required to add a price book product."""
|
14068
14158
|
input: PriceBookProductCreateInput!
|
14069
|
-
): PriceBookProductCreate
|
14159
|
+
): PriceBookProductCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14070
14160
|
|
14071
14161
|
"""Updates an existing price book product."""
|
14072
14162
|
priceBookProductUpdate(
|
@@ -14075,25 +14165,25 @@ type Mutation {
|
|
14075
14165
|
|
14076
14166
|
"""Fields required to update a price book product."""
|
14077
14167
|
input: PriceBookProductUpdateInput!
|
14078
|
-
): PriceBookProductUpdate
|
14168
|
+
): PriceBookProductUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14079
14169
|
|
14080
14170
|
"""Deletes a price book product."""
|
14081
14171
|
priceBookProductDelete(
|
14082
14172
|
"""ID of a price book product to delete."""
|
14083
14173
|
id: ID!
|
14084
|
-
): PriceBookProductDelete
|
14174
|
+
): PriceBookProductDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14085
14175
|
|
14086
14176
|
"""Deletes price book's products."""
|
14087
14177
|
priceBookProductBulkDelete(
|
14088
14178
|
"""List of price book product IDs to delete."""
|
14089
14179
|
ids: [ID!]!
|
14090
|
-
): PriceBookProductBulkDelete
|
14180
|
+
): PriceBookProductBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14091
14181
|
|
14092
14182
|
"""Add a product type to price book."""
|
14093
14183
|
priceBookProductTypeCreate(
|
14094
14184
|
"""Fields required to add a price book product type."""
|
14095
14185
|
input: PriceBookProductTypeCreateInput!
|
14096
|
-
): PriceBookProductTypeCreate
|
14186
|
+
): PriceBookProductTypeCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14097
14187
|
|
14098
14188
|
"""Updates an existing price book product type."""
|
14099
14189
|
priceBookProductTypeUpdate(
|
@@ -14102,31 +14192,31 @@ type Mutation {
|
|
14102
14192
|
|
14103
14193
|
"""Fields required to update a price book product type."""
|
14104
14194
|
input: PriceBookProductTypeUpdateInput!
|
14105
|
-
): PriceBookProductTypeUpdate
|
14195
|
+
): PriceBookProductTypeUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14106
14196
|
|
14107
14197
|
"""Deletes a price book product type."""
|
14108
14198
|
priceBookProductTypeDelete(
|
14109
14199
|
"""ID of a price book product type to delete."""
|
14110
14200
|
id: ID!
|
14111
|
-
): PriceBookProductTypeDelete
|
14201
|
+
): PriceBookProductTypeDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14112
14202
|
|
14113
14203
|
"""Deletes price book's product types."""
|
14114
14204
|
priceBookProductTypeBulkDelete(
|
14115
14205
|
"""List of price book product type IDs to delete."""
|
14116
14206
|
ids: [ID!]!
|
14117
|
-
): PriceBookProductTypeBulkDelete
|
14207
|
+
): PriceBookProductTypeBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14118
14208
|
|
14119
14209
|
"""Add a user to price book."""
|
14120
14210
|
userAddToPriceBook(
|
14121
14211
|
"""Fields required to add a user to price book."""
|
14122
14212
|
input: UserAddToPriceBookInput!
|
14123
|
-
): UserAddToPriceBook
|
14213
|
+
): UserAddToPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14124
14214
|
|
14125
14215
|
"""Removes a user from price book."""
|
14126
14216
|
userRemoveFromPriceBook(
|
14127
14217
|
"""ID of user to be removed from price book."""
|
14128
14218
|
id: ID!
|
14129
|
-
): UserRemoveFromPriceBook
|
14219
|
+
): UserRemoveFromPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14130
14220
|
|
14131
14221
|
"""Creates a new category."""
|
14132
14222
|
categoryCreate(
|
@@ -15126,7 +15216,7 @@ type Mutation {
|
|
15126
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=...
|
15127
15217
|
"""
|
15128
15218
|
storefrontUrl: String!
|
15129
|
-
): 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.")
|
15130
15220
|
|
15131
15221
|
"""Creates a new order fee."""
|
15132
15222
|
orderFeeCreate(
|
@@ -15607,7 +15697,7 @@ type Mutation {
|
|
15607
15697
|
checkoutConvertToNauticalQuoteOrder(
|
15608
15698
|
"""Checkout ID."""
|
15609
15699
|
checkoutId: ID!
|
15610
|
-
): CheckoutConvertToNauticalQuoteOrder
|
15700
|
+
): CheckoutConvertToNauticalQuoteOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
15611
15701
|
|
15612
15702
|
"""Create a new checkout."""
|
15613
15703
|
checkoutCreate(
|
@@ -16593,7 +16683,7 @@ input MarketplaceConfigurationInput {
|
|
16593
16683
|
supportedCountries: [String!]
|
16594
16684
|
|
16595
16685
|
"""True if sellers can send quotes to customers."""
|
16596
|
-
sellerCanSendQuote: Boolean
|
16686
|
+
sellerCanSendQuote: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16597
16687
|
|
16598
16688
|
"""Determines scope for checking duplicated variant attribute sets"""
|
16599
16689
|
variantUniqueness: VariantUniquenessEnum = null
|
@@ -16602,7 +16692,7 @@ input MarketplaceConfigurationInput {
|
|
16602
16692
|
defaultSellerChecklists: [DefaultSellerChecklistInput!]
|
16603
16693
|
|
16604
16694
|
"""True if quote orders trigger stock allocation."""
|
16605
|
-
enableStockAllocationForQuotes: Boolean
|
16695
|
+
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16606
16696
|
|
16607
16697
|
"""True if offer orders trigger stock allocation."""
|
16608
16698
|
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|