@nautical-commerce/graphql-schema 1.73.0 → 1.74.0
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 +57 -51
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -742,7 +742,7 @@ type Query {
|
|
742
742
|
priceBook(
|
743
743
|
"""ID of a price book."""
|
744
744
|
id: ID!
|
745
|
-
): PriceBook
|
745
|
+
): PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
746
746
|
|
747
747
|
"""List of price books."""
|
748
748
|
priceBooks(
|
@@ -763,7 +763,7 @@ type Query {
|
|
763
763
|
|
764
764
|
"""Return the last n elements from the list."""
|
765
765
|
last: Int
|
766
|
-
): PriceBookCountableConnection
|
766
|
+
): PriceBookCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
767
767
|
|
768
768
|
"""List of price book variants in."""
|
769
769
|
priceBookVariants(
|
@@ -790,7 +790,7 @@ type Query {
|
|
790
790
|
|
791
791
|
"""Return the last n elements from the list."""
|
792
792
|
last: Int
|
793
|
-
): PriceBookVariantCountableConnection
|
793
|
+
): PriceBookVariantCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
794
794
|
|
795
795
|
"""List of price book products."""
|
796
796
|
priceBookProducts(
|
@@ -817,7 +817,7 @@ type Query {
|
|
817
817
|
|
818
818
|
"""Return the last n elements from the list."""
|
819
819
|
last: Int
|
820
|
-
): PriceBookProductCountableConnection
|
820
|
+
): PriceBookProductCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
821
821
|
|
822
822
|
"""List of price book product types."""
|
823
823
|
priceBookProductTypes(
|
@@ -844,7 +844,7 @@ type Query {
|
|
844
844
|
|
845
845
|
"""Return the last n elements from the list."""
|
846
846
|
last: Int
|
847
|
-
): PriceBookProductTypeCountableConnection
|
847
|
+
): PriceBookProductTypeCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
848
848
|
|
849
849
|
"""List of price book variants in history table."""
|
850
850
|
priceBookVariantsHistory(
|
@@ -871,7 +871,7 @@ type Query {
|
|
871
871
|
|
872
872
|
"""Return the last n elements from the list."""
|
873
873
|
last: Int
|
874
|
-
): PriceBookVariantHistoryCountableConnection
|
874
|
+
): PriceBookVariantHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
875
875
|
|
876
876
|
"""List of price book products in history table."""
|
877
877
|
priceBookProductsHistory(
|
@@ -898,7 +898,7 @@ type Query {
|
|
898
898
|
|
899
899
|
"""Return the last n elements from the list."""
|
900
900
|
last: Int
|
901
|
-
): PriceBookProductHistoryCountableConnection
|
901
|
+
): PriceBookProductHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
902
902
|
|
903
903
|
"""List of price book product types in history tables."""
|
904
904
|
priceBookProductTypesHistory(
|
@@ -925,7 +925,7 @@ type Query {
|
|
925
925
|
|
926
926
|
"""Return the last n elements from the list."""
|
927
927
|
last: Int
|
928
|
-
): PriceBookProductTypeHistoryCountableConnection
|
928
|
+
): PriceBookProductTypeHistoryCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
929
929
|
|
930
930
|
"""Look up users attached to a price book by ID."""
|
931
931
|
priceBookUsers(
|
@@ -946,7 +946,7 @@ type Query {
|
|
946
946
|
|
947
947
|
"""Return the last n elements from the list."""
|
948
948
|
last: Int
|
949
|
-
): UserCountableConnection
|
949
|
+
): UserCountableConnection @deprecated(reason: "Price books will be removed on June 11, 2025")
|
950
950
|
|
951
951
|
"""Look up a plugin by ID."""
|
952
952
|
plugin(
|
@@ -1363,13 +1363,13 @@ type Query {
|
|
1363
1363
|
|
1364
1364
|
"""Return the last n elements from the list."""
|
1365
1365
|
last: Int
|
1366
|
-
): NauticalOrderCountableConnection
|
1366
|
+
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1367
1367
|
|
1368
1368
|
"""Look up a nautical quote order by token"""
|
1369
1369
|
nauticalQuoteOrderByToken(
|
1370
1370
|
"""The Nautical quote order token"""
|
1371
1371
|
token: NauticalUUID!
|
1372
|
-
): NauticalOrder
|
1372
|
+
): NauticalOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1373
1373
|
|
1374
1374
|
"""List of quote orders."""
|
1375
1375
|
quoteOrders(
|
@@ -1393,7 +1393,7 @@ type Query {
|
|
1393
1393
|
|
1394
1394
|
"""Return the last n elements from the list."""
|
1395
1395
|
last: Int
|
1396
|
-
): OrderCountableConnection
|
1396
|
+
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
1397
1397
|
|
1398
1398
|
"""Return the total sales amount from a specific period."""
|
1399
1399
|
ordersTotal(
|
@@ -2416,7 +2416,7 @@ type User implements Node & ObjectWithMetadata {
|
|
2416
2416
|
|
2417
2417
|
"""Return the last n elements from the list."""
|
2418
2418
|
last: Int
|
2419
|
-
): OrderCountableConnection
|
2419
|
+
): OrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2420
2420
|
numOrders: Int
|
2421
2421
|
|
2422
2422
|
"""List of user's nautical orders."""
|
@@ -2459,7 +2459,7 @@ type User implements Node & ObjectWithMetadata {
|
|
2459
2459
|
|
2460
2460
|
"""Return the last n elements from the list."""
|
2461
2461
|
last: Int
|
2462
|
-
): NauticalOrderCountableConnection
|
2462
|
+
): NauticalOrderCountableConnection @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
2463
2463
|
|
2464
2464
|
"""List of user's permissions."""
|
2465
2465
|
userPermissions: [UserPermission!]!
|
@@ -2516,7 +2516,7 @@ type User implements Node & ObjectWithMetadata {
|
|
2516
2516
|
documents: [Document!]!
|
2517
2517
|
|
2518
2518
|
"""Returns values of price book the user is added to"""
|
2519
|
-
priceBook: PriceBook
|
2519
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
2520
2520
|
|
2521
2521
|
"""
|
2522
2522
|
If null, then the environment isn't set and they don't have dashboard reporting enabled
|
@@ -2665,6 +2665,9 @@ type Checkout implements Node & ObjectWithMetadata {
|
|
2665
2665
|
"""The price of the checkout before shipping, with taxes included."""
|
2666
2666
|
subtotalPrice: TaxedMoney!
|
2667
2667
|
|
2668
|
+
"""The price of the checkout before discount, shipping and taxes"""
|
2669
|
+
originalPrice: Money!
|
2670
|
+
|
2668
2671
|
"""The checkout's token."""
|
2669
2672
|
token: NauticalUUID!
|
2670
2673
|
|
@@ -3897,7 +3900,7 @@ enum OrderOrderSource {
|
|
3897
3900
|
"""An enumeration."""
|
3898
3901
|
enum OrderStatus {
|
3899
3902
|
DRAFT
|
3900
|
-
QUOTE
|
3903
|
+
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
3901
3904
|
UNFULFILLED
|
3902
3905
|
PARTIALLY_FULFILLED
|
3903
3906
|
FULFILLED
|
@@ -4929,6 +4932,7 @@ enum WebhookEventTypeEnum {
|
|
4929
4932
|
CUSTOMER_UPDATED
|
4930
4933
|
CUSTOMER_DELETED
|
4931
4934
|
FULFILLMENT_CREATED
|
4935
|
+
FULFILLMENT_UPDATED
|
4932
4936
|
INVOICE_DELETED
|
4933
4937
|
INVOICE_REQUESTED
|
4934
4938
|
INVOICE_SENT
|
@@ -5719,10 +5723,10 @@ enum NauticalOrderSubStatus {
|
|
5719
5723
|
|
5720
5724
|
enum OrderSubStatusEnum {
|
5721
5725
|
"""In Review"""
|
5722
|
-
IN_REVIEW
|
5726
|
+
IN_REVIEW @deprecated(reason: "This will be removed on June 11, 2025")
|
5723
5727
|
|
5724
5728
|
"""Quote Requested"""
|
5725
|
-
QUOTE_REQUESTED
|
5729
|
+
QUOTE_REQUESTED @deprecated(reason: "This will be removed on June 11, 2025")
|
5726
5730
|
|
5727
5731
|
"""Awaiting Payment"""
|
5728
5732
|
AWAITING_PAYMENT
|
@@ -5790,7 +5794,7 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
5790
5794
|
allocations: [Allocation!]
|
5791
5795
|
|
5792
5796
|
"""The pricebook, if any, that changed the price of this line."""
|
5793
|
-
priceBook: PriceBook
|
5797
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
5794
5798
|
|
5795
5799
|
"""The number of items ordered on this order line."""
|
5796
5800
|
quantityOrdered: Int!
|
@@ -5889,7 +5893,7 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
5889
5893
|
translatedVariantName: String!
|
5890
5894
|
|
5891
5895
|
"""The pricebook, if any, that changed the price of this line"""
|
5892
|
-
priceBook: PriceBook
|
5896
|
+
priceBook: PriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
5893
5897
|
|
5894
5898
|
"""The related orderline attached to the connected seller order"""
|
5895
5899
|
sellerOrderline: OrderLine
|
@@ -7805,10 +7809,11 @@ enum OrderStatusFilter {
|
|
7805
7809
|
CANCELED
|
7806
7810
|
}
|
7807
7811
|
|
7812
|
+
"""An enumeration."""
|
7808
7813
|
enum OrderSourceFilter {
|
7809
7814
|
CHECKOUT
|
7810
7815
|
DRAFT
|
7811
|
-
QUOTE
|
7816
|
+
QUOTE @deprecated(reason: "This will be removed on June 11, 2025")
|
7812
7817
|
MANUAL
|
7813
7818
|
EXTERNAL
|
7814
7819
|
}
|
@@ -8054,6 +8059,7 @@ enum WebhookSampleEventTypeEnum {
|
|
8054
8059
|
CUSTOMER_UPDATED
|
8055
8060
|
CUSTOMER_DELETED
|
8056
8061
|
FULFILLMENT_CREATED
|
8062
|
+
FULFILLMENT_UPDATED
|
8057
8063
|
INVOICE_DELETED
|
8058
8064
|
INVOICE_REQUESTED
|
8059
8065
|
INVOICE_SENT
|
@@ -8547,7 +8553,7 @@ type Shop {
|
|
8547
8553
|
dashboardUrl: String
|
8548
8554
|
|
8549
8555
|
"""Whether the marketplace has enabled quote orders."""
|
8550
|
-
enableQuoteOrders: Boolean
|
8556
|
+
enableQuoteOrders: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
8551
8557
|
|
8552
8558
|
"""Whether the marketplace has enabled offer orders."""
|
8553
8559
|
enableOfferOrders: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
@@ -8841,10 +8847,10 @@ type SellerOnboardingSettings implements Node {
|
|
8841
8847
|
welcomeMessage: String
|
8842
8848
|
|
8843
8849
|
"""The fulfillment model used by the MP."""
|
8844
|
-
fulfillmentModel: String
|
8850
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025")
|
8845
8851
|
|
8846
8852
|
"""A summary of required documents from sellers."""
|
8847
|
-
requiredDocuments: String
|
8853
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025")
|
8848
8854
|
|
8849
8855
|
"""Text displayed when the MP is not accepting new sellers."""
|
8850
8856
|
notAcceptingSellersMessage: String
|
@@ -13162,7 +13168,7 @@ type Mutation {
|
|
13162
13168
|
description: String
|
13163
13169
|
|
13164
13170
|
"""
|
13165
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13171
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/webp, application/x-eps, image/svg, image/x-bmp, application/vnd.oasis.opendocument.spreadsheet, image/bmp, application/postscript, application/svg+xml, application/jpg, application/dxf, text/plain, text/csv, application/vnd.ms-excel, text/svg, pplication/vnd.rar, application/vnd.ms-word, application/pdf, application/msword, text/rtf, text/x-pdf, drawing/x-dwf, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-dwg, application/x-rar, application/vnd.pdf, text/x-csv, image/x-ms-bmp, application/tiff, image/x-tif, application/vnd.oasis.opendocument.presentation, drawing/dwg, image/x-dxf, image/eps, image/tiff, application/x-gzip, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/csv, application/x-zip-compressed, application/vnd.oasis.opendocument.text, application/x-jpg, application/gzip-compressed, application/x-rtf, image/heif-sequence, image/jpeg, application/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/pdf, application/x-rar-compressed, application/rtf, drawing/x-dwg, application/acrobat, application/x-tif, image/heic-sequence, image/jpg, application/x-acad, text/comma-separated-values, application/x-tar, image/png, application/x-dxf, image/dxf, image/heic, application/tif, text/x-comma-separated-values, image/heif, image/gif, image/tif, application/excel, image/svg+xml, image/x-tiff, image/x-eps, application/acad, application/x-tiff, text/svg-xml, application/eps, application/x-autocad, image/vnd.dwg, application/gzipped, application/vnd.ms-powerpoint, application/zip, image/x-dwg, application/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.
|
13166
13172
|
"""
|
13167
13173
|
file: Upload!
|
13168
13174
|
|
@@ -14010,7 +14016,7 @@ type Mutation {
|
|
14010
14016
|
priceBookCreate(
|
14011
14017
|
"""Fields required to create a price book."""
|
14012
14018
|
input: PriceBookCreateInput!
|
14013
|
-
): PriceBookCreate
|
14019
|
+
): PriceBookCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14014
14020
|
|
14015
14021
|
"""Updates an existing price book."""
|
14016
14022
|
priceBookUpdate(
|
@@ -14019,25 +14025,25 @@ type Mutation {
|
|
14019
14025
|
|
14020
14026
|
"""Fields required to update a price book."""
|
14021
14027
|
input: PriceBookUpdateInput!
|
14022
|
-
): PriceBookUpdate
|
14028
|
+
): PriceBookUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14023
14029
|
|
14024
14030
|
"""Deletes a price book."""
|
14025
14031
|
priceBookDelete(
|
14026
14032
|
"""ID of a price book to delete."""
|
14027
14033
|
id: ID!
|
14028
|
-
): PriceBookDelete
|
14034
|
+
): PriceBookDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14029
14035
|
|
14030
14036
|
"""Deletes price books."""
|
14031
14037
|
priceBookBulkDelete(
|
14032
14038
|
"""List of price book IDs to delete."""
|
14033
14039
|
ids: [ID!]!
|
14034
|
-
): PriceBookBulkDelete
|
14040
|
+
): PriceBookBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14035
14041
|
|
14036
14042
|
"""Add a variant to price book."""
|
14037
14043
|
priceBookVariantCreate(
|
14038
14044
|
"""Fields required to add a price book variant."""
|
14039
14045
|
input: PriceBookVariantCreateInput!
|
14040
|
-
): PriceBookVariantCreate
|
14046
|
+
): PriceBookVariantCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14041
14047
|
|
14042
14048
|
"""Updates an existing price book variant."""
|
14043
14049
|
priceBookVariantUpdate(
|
@@ -14046,25 +14052,25 @@ type Mutation {
|
|
14046
14052
|
|
14047
14053
|
"""Fields required to update a price book variant."""
|
14048
14054
|
input: PriceBookVariantUpdateInput!
|
14049
|
-
): PriceBookVariantUpdate
|
14055
|
+
): PriceBookVariantUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14050
14056
|
|
14051
14057
|
"""Deletes a price book variant."""
|
14052
14058
|
priceBookVariantDelete(
|
14053
14059
|
"""ID of a price book variant to delete."""
|
14054
14060
|
id: ID!
|
14055
|
-
): PriceBookVariantDelete
|
14061
|
+
): PriceBookVariantDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14056
14062
|
|
14057
14063
|
"""Deletes price book's variants."""
|
14058
14064
|
priceBookVariantBulkDelete(
|
14059
14065
|
"""List of price book variant IDs to delete."""
|
14060
14066
|
ids: [ID!]!
|
14061
|
-
): PriceBookVariantBulkDelete
|
14067
|
+
): PriceBookVariantBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14062
14068
|
|
14063
14069
|
"""Add a product to price book."""
|
14064
14070
|
priceBookProductCreate(
|
14065
14071
|
"""Fields required to add a price book product."""
|
14066
14072
|
input: PriceBookProductCreateInput!
|
14067
|
-
): PriceBookProductCreate
|
14073
|
+
): PriceBookProductCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14068
14074
|
|
14069
14075
|
"""Updates an existing price book product."""
|
14070
14076
|
priceBookProductUpdate(
|
@@ -14073,25 +14079,25 @@ type Mutation {
|
|
14073
14079
|
|
14074
14080
|
"""Fields required to update a price book product."""
|
14075
14081
|
input: PriceBookProductUpdateInput!
|
14076
|
-
): PriceBookProductUpdate
|
14082
|
+
): PriceBookProductUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14077
14083
|
|
14078
14084
|
"""Deletes a price book product."""
|
14079
14085
|
priceBookProductDelete(
|
14080
14086
|
"""ID of a price book product to delete."""
|
14081
14087
|
id: ID!
|
14082
|
-
): PriceBookProductDelete
|
14088
|
+
): PriceBookProductDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14083
14089
|
|
14084
14090
|
"""Deletes price book's products."""
|
14085
14091
|
priceBookProductBulkDelete(
|
14086
14092
|
"""List of price book product IDs to delete."""
|
14087
14093
|
ids: [ID!]!
|
14088
|
-
): PriceBookProductBulkDelete
|
14094
|
+
): PriceBookProductBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14089
14095
|
|
14090
14096
|
"""Add a product type to price book."""
|
14091
14097
|
priceBookProductTypeCreate(
|
14092
14098
|
"""Fields required to add a price book product type."""
|
14093
14099
|
input: PriceBookProductTypeCreateInput!
|
14094
|
-
): PriceBookProductTypeCreate
|
14100
|
+
): PriceBookProductTypeCreate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14095
14101
|
|
14096
14102
|
"""Updates an existing price book product type."""
|
14097
14103
|
priceBookProductTypeUpdate(
|
@@ -14100,31 +14106,31 @@ type Mutation {
|
|
14100
14106
|
|
14101
14107
|
"""Fields required to update a price book product type."""
|
14102
14108
|
input: PriceBookProductTypeUpdateInput!
|
14103
|
-
): PriceBookProductTypeUpdate
|
14109
|
+
): PriceBookProductTypeUpdate @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14104
14110
|
|
14105
14111
|
"""Deletes a price book product type."""
|
14106
14112
|
priceBookProductTypeDelete(
|
14107
14113
|
"""ID of a price book product type to delete."""
|
14108
14114
|
id: ID!
|
14109
|
-
): PriceBookProductTypeDelete
|
14115
|
+
): PriceBookProductTypeDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14110
14116
|
|
14111
14117
|
"""Deletes price book's product types."""
|
14112
14118
|
priceBookProductTypeBulkDelete(
|
14113
14119
|
"""List of price book product type IDs to delete."""
|
14114
14120
|
ids: [ID!]!
|
14115
|
-
): PriceBookProductTypeBulkDelete
|
14121
|
+
): PriceBookProductTypeBulkDelete @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14116
14122
|
|
14117
14123
|
"""Add a user to price book."""
|
14118
14124
|
userAddToPriceBook(
|
14119
14125
|
"""Fields required to add a user to price book."""
|
14120
14126
|
input: UserAddToPriceBookInput!
|
14121
|
-
): UserAddToPriceBook
|
14127
|
+
): UserAddToPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14122
14128
|
|
14123
14129
|
"""Removes a user from price book."""
|
14124
14130
|
userRemoveFromPriceBook(
|
14125
14131
|
"""ID of user to be removed from price book."""
|
14126
14132
|
id: ID!
|
14127
|
-
): UserRemoveFromPriceBook
|
14133
|
+
): UserRemoveFromPriceBook @deprecated(reason: "Price books will be removed on June 11, 2025")
|
14128
14134
|
|
14129
14135
|
"""Creates a new category."""
|
14130
14136
|
categoryCreate(
|
@@ -15124,7 +15130,7 @@ type Mutation {
|
|
15124
15130
|
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
15131
|
"""
|
15126
15132
|
storefrontUrl: String!
|
15127
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "The ability to send Order IDs will be removed on February 26, 2025.")
|
15133
|
+
): 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
15134
|
|
15129
15135
|
"""Creates a new order fee."""
|
15130
15136
|
orderFeeCreate(
|
@@ -15605,7 +15611,7 @@ type Mutation {
|
|
15605
15611
|
checkoutConvertToNauticalQuoteOrder(
|
15606
15612
|
"""Checkout ID."""
|
15607
15613
|
checkoutId: ID!
|
15608
|
-
): CheckoutConvertToNauticalQuoteOrder
|
15614
|
+
): CheckoutConvertToNauticalQuoteOrder @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
15609
15615
|
|
15610
15616
|
"""Create a new checkout."""
|
15611
15617
|
checkoutCreate(
|
@@ -16591,7 +16597,7 @@ input MarketplaceConfigurationInput {
|
|
16591
16597
|
supportedCountries: [String!]
|
16592
16598
|
|
16593
16599
|
"""True if sellers can send quotes to customers."""
|
16594
|
-
sellerCanSendQuote: Boolean
|
16600
|
+
sellerCanSendQuote: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16595
16601
|
|
16596
16602
|
"""Determines scope for checking duplicated variant attribute sets"""
|
16597
16603
|
variantUniqueness: VariantUniquenessEnum = null
|
@@ -16600,7 +16606,7 @@ input MarketplaceConfigurationInput {
|
|
16600
16606
|
defaultSellerChecklists: [DefaultSellerChecklistInput!]
|
16601
16607
|
|
16602
16608
|
"""True if quote orders trigger stock allocation."""
|
16603
|
-
enableStockAllocationForQuotes: Boolean
|
16609
|
+
enableStockAllocationForQuotes: Boolean @deprecated(reason: "Quotes will be removed on June 11, 2025")
|
16604
16610
|
|
16605
16611
|
"""True if offer orders trigger stock allocation."""
|
16606
16612
|
enableStockAllocationForOffers: Boolean @deprecated(reason: "This will be removed on February 20, 2025.")
|
@@ -18061,10 +18067,10 @@ input SellerOnboardingSettingsCreateInput {
|
|
18061
18067
|
welcomeMessage: String
|
18062
18068
|
|
18063
18069
|
"""The fulfillment model used by the MP."""
|
18064
|
-
fulfillmentModel: String
|
18070
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18065
18071
|
|
18066
18072
|
"""A summary of required documents from sellers."""
|
18067
|
-
requiredDocuments: String
|
18073
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18068
18074
|
|
18069
18075
|
"""Text displayed when the MP is not accepting new sellers."""
|
18070
18076
|
notAcceptingSellersMessage: String
|
@@ -18088,10 +18094,10 @@ input SellerOnboardingSettingsUpdateInput {
|
|
18088
18094
|
welcomeMessage: String
|
18089
18095
|
|
18090
18096
|
"""The fulfillment model used by the MP."""
|
18091
|
-
fulfillmentModel: String
|
18097
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18092
18098
|
|
18093
18099
|
"""A summary of required documents from sellers."""
|
18094
|
-
requiredDocuments: String
|
18100
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18095
18101
|
|
18096
18102
|
"""Text displayed when the MP is not accepting new sellers."""
|
18097
18103
|
notAcceptingSellersMessage: String
|