@nautical-commerce/graphql-schema 1.63.0 → 1.64.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 +41 -7
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2645,8 +2645,8 @@ type Checkout implements Node & ObjectWithMetadata {
|
|
2645
2645
|
availableShippingMethodsBySeller: [MultiSellerShippingMethod!]!
|
2646
2646
|
|
2647
2647
|
"""Applicable volume discounts"""
|
2648
|
-
applicableVolumeDiscounts: Money
|
2649
|
-
applicableVolumeDiscountsBySeller: [SellerVolumeDiscount!]!
|
2648
|
+
applicableVolumeDiscounts: Money @deprecated(reason: "This will be removed on March 9, 2025")
|
2649
|
+
applicableVolumeDiscountsBySeller: [SellerVolumeDiscount!]! @deprecated(reason: "This will be removed on March 9, 2025")
|
2650
2650
|
|
2651
2651
|
"""List of available payment gateways."""
|
2652
2652
|
availablePaymentGateways: [PaymentGateway!]!
|
@@ -3220,6 +3220,7 @@ type Seller implements Node & ObjectWithMetadata {
|
|
3220
3220
|
externalPayoutSchedule: String
|
3221
3221
|
agreementDecisionReason: String
|
3222
3222
|
storeDescription: String
|
3223
|
+
storeDescriptionPlainText: String
|
3223
3224
|
|
3224
3225
|
"""List of documents associated with the seller."""
|
3225
3226
|
documents: [Document!]
|
@@ -3499,9 +3500,6 @@ enum SellerApplicationCheckpoint {
|
|
3499
3500
|
"""Address"""
|
3500
3501
|
ADDRESS
|
3501
3502
|
|
3502
|
-
"""Business Sell"""
|
3503
|
-
BUSINESS_SELL
|
3504
|
-
|
3505
3503
|
"""Complete"""
|
3506
3504
|
COMPLETE
|
3507
3505
|
}
|
@@ -8953,9 +8951,10 @@ type PublicSeller implements Node {
|
|
8953
8951
|
"""Size of the store's banner."""
|
8954
8952
|
size: Int
|
8955
8953
|
): Image
|
8956
|
-
storeDescription: String!
|
8957
8954
|
products(offset: Int, before: String, after: String, first: Int, last: Int): ProductCountableConnection!
|
8958
8955
|
variants(offset: Int, before: String, after: String, first: Int, last: Int): ProductVariantCountableConnection!
|
8956
|
+
storeDescription: String
|
8957
|
+
storeDescriptionPlainText: String
|
8959
8958
|
}
|
8960
8959
|
|
8961
8960
|
type SellerCountableConnection {
|
@@ -13164,7 +13163,7 @@ type Mutation {
|
|
13164
13163
|
description: String
|
13165
13164
|
|
13166
13165
|
"""
|
13167
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13166
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, image/x-dxf, image/jpeg, image/heic-sequence, application/x-dxf, application/x-csv, application/postscript, text/pdf, drawing/x-dwf, image/x-dwg, image/vnd.dwg, image/svg, application/pdf, application/dwg, text/svg, application/vnd.ms-powerpoint, image/bmp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/msword, text/csv, application/vnd.oasis.opendocument.presentation, drawing/dwg, image/heif, application/dxf, image/webp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/svg+xml, image/dxf, application/x-acad, image/x-ms-bmp, application/excel, drawing/x-dwg, application/rtf, text/svg-xml, application/eps, application/vnd.ms-word, text/x-comma-separated-values, text/x-pdf, application/x-tar, application/vnd.oasis.opendocument.text, application/vnd.ms-excel, application/tif, application/x-rar-compressed, application/zip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.pdf, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-dwg, application/acad, pplication/vnd.rar, image/x-bmp, application/x-rar, image/gif, application/vnd.oasis.opendocument.spreadsheet, image/x-tiff, application/gzip, image/tif, text/x-csv, application/jpg, application/x-tiff, application/x-rtf, image/eps, application/x-pdf, application/svg+xml, application/gzipped, image/heic, application/x-eps, application/tiff, application/x-zip-compressed, application/acrobat, text/rtf, application/x-autocad, application/x-tif, text/comma-separated-values, image/jpg, application/x-jpg, text/plain, image/png, image/heif-sequence, application/gzip-compressed, image/x-tif, image/x-eps, application/csv.
|
13168
13167
|
"""
|
13169
13168
|
file: Upload!
|
13170
13169
|
|
@@ -14966,6 +14965,15 @@ type Mutation {
|
|
14966
14965
|
order: ID
|
14967
14966
|
): OrderFulfill
|
14968
14967
|
|
14968
|
+
"""Creates new fulfillments for a nautical order."""
|
14969
|
+
nauticalOrderFulfill(
|
14970
|
+
"""Fields required to create a fulfillment."""
|
14971
|
+
input: NauticalOrderFulfillInput!
|
14972
|
+
|
14973
|
+
"""ID of the Nautical Order to be fulfilled."""
|
14974
|
+
nauticalOrder: ID
|
14975
|
+
): NauticalOrderFulfill
|
14976
|
+
|
14969
14977
|
"""
|
14970
14978
|
Decline (permanently) part of an order. The buyer will not be charged for the missing stock. Use if stock in a warehouse is damaged, expired, or unavailable.
|
14971
14979
|
"""
|
@@ -21051,6 +21059,32 @@ input OrderFulfillStockInput {
|
|
21051
21059
|
warehouse: ID!
|
21052
21060
|
}
|
21053
21061
|
|
21062
|
+
"""Creates new fulfillments for a nautical order."""
|
21063
|
+
type NauticalOrderFulfill {
|
21064
|
+
"""List of created fulfillments."""
|
21065
|
+
fulfillments: [Fulfillment!]!
|
21066
|
+
|
21067
|
+
"""Fulfilled order."""
|
21068
|
+
nauticalOrder: NauticalOrder!
|
21069
|
+
orderErrors: [OrderError!]!
|
21070
|
+
}
|
21071
|
+
|
21072
|
+
input NauticalOrderFulfillInput {
|
21073
|
+
"""List of items informing how to fulfill the order."""
|
21074
|
+
lines: [NauticalOrderFulfillLineInput!]!
|
21075
|
+
|
21076
|
+
"""If true, send an email notification to the customer."""
|
21077
|
+
notifyCustomer: Boolean
|
21078
|
+
}
|
21079
|
+
|
21080
|
+
input NauticalOrderFulfillLineInput {
|
21081
|
+
"""The ID of the nautical order line."""
|
21082
|
+
nauticalOrderLineId: ID
|
21083
|
+
|
21084
|
+
"""List of stock items to create."""
|
21085
|
+
stocks: [OrderFulfillStockInput!]!
|
21086
|
+
}
|
21087
|
+
|
21054
21088
|
"""
|
21055
21089
|
Decline (permanently) part of an order. The buyer will not be charged for the missing stock. Use if stock in a warehouse is damaged, expired, or unavailable.
|
21056
21090
|
"""
|