@nautical-commerce/graphql-schema 1.78.0-23-gf437b4f8f → 1.78.0-25-g47893783e
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 +4 -107
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -7016,9 +7016,6 @@ enum OrderPayoutStatusEnum {
|
|
7016
7016
|
"""Ready for payout"""
|
7017
7017
|
READY_FOR_PAYOUT
|
7018
7018
|
|
7019
|
-
"""Pending final payout"""
|
7020
|
-
PENDING_FINAL_PAYOUT @deprecated(reason: "This will be removed on February 26, 2025")
|
7021
|
-
|
7022
7019
|
"""Paid out"""
|
7023
7020
|
PAID_OUT
|
7024
7021
|
|
@@ -12762,7 +12759,7 @@ type Mutation {
|
|
12762
12759
|
description: String
|
12763
12760
|
|
12764
12761
|
"""
|
12765
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12762
|
+
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, application/vnd.oasis.opendocument.spreadsheet, image/tif, application/x-dxf, application/x-rar, image/heif-sequence, application/gzipped, application/vnd.ms-word, image/x-ms-bmp, application/acrobat, image/eps, application/excel, application/x-acad, pplication/vnd.rar, drawing/x-dwf, text/rtf, application/tiff, application/x-rtf, image/dxf, application/vnd.oasis.opendocument.presentation, application/tif, application/postscript, application/vnd.ms-excel, image/webp, application/zip, image/heif, image/vnd.dwg, application/gzip, text/csv, drawing/x-dwg, application/x-tiff, image/heic, application/x-rar-compressed, text/x-csv, application/x-gzip, image/gif, drawing/dwg, application/x-zip-compressed, image/x-eps, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/svg+xml, image/png, application/gzip-compressed, application/acad, text/x-comma-separated-values, image/jpg, image/x-tif, application/dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, text/svg, application/x-csv, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/svg+xml, application/eps, image/x-bmp, application/x-jpg, image/bmp, application/msword, text/comma-separated-values, image/svg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-autocad, application/rtf, image/jpeg, text/plain, image/x-dwg, application/jpg, image/tiff, application/csv, application/x-dwg, application/x-eps, application/dwg, image/heic-sequence, application/x-tar, text/x-pdf, application/x-tif, application/vnd.pdf, application/vnd.ms-powerpoint, text/svg-xml, image/x-dxf, image/x-tiff.
|
12766
12763
|
"""
|
12767
12764
|
file: Upload!
|
12768
12765
|
|
@@ -14301,12 +14298,6 @@ type Mutation {
|
|
14301
14298
|
input: NauticalDraftOrderCreateInput!
|
14302
14299
|
): NauticalDraftOrderCreate
|
14303
14300
|
|
14304
|
-
"""Creates a new Nautical historical order."""
|
14305
|
-
nauticalHistoricalOrderCreate(
|
14306
|
-
"""Fields required to create an historical order."""
|
14307
|
-
input: NauticalHistoricalOrderInput!
|
14308
|
-
): NauticalHistoricalOrderCreate @deprecated(reason: "This mutation will be removed on February 18, 2025")
|
14309
|
-
|
14310
14301
|
"""Deletes a draft order."""
|
14311
14302
|
draftOrderDelete(
|
14312
14303
|
"""ID of a draft or quote order to delete."""
|
@@ -14652,13 +14643,6 @@ type Mutation {
|
|
14652
14643
|
input: NauticalOrderUpdateInput!
|
14653
14644
|
): NauticalOrderUpdate
|
14654
14645
|
|
14655
|
-
"""Modifies the payout status of an order"""
|
14656
|
-
orderPayoutStatusUpdate(
|
14657
|
-
"""Target order id."""
|
14658
|
-
id: ID!
|
14659
|
-
input: OrderPayoutStatusUpdateInput!
|
14660
|
-
): OrderPayoutStatusUpdate @deprecated(reason: "This will be removed on February 26, 2025.")
|
14661
|
-
|
14662
14646
|
"""Updates a shipping method of the order."""
|
14663
14647
|
orderUpdateShipping(
|
14664
14648
|
"""ID of the order to update a shipping method."""
|
@@ -14726,22 +14710,18 @@ type Mutation {
|
|
14726
14710
|
|
14727
14711
|
"""Sends a quote order to a customer."""
|
14728
14712
|
nauticalQuoteOrderSendToCustomer(
|
14729
|
-
"""
|
14730
|
-
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
14731
|
-
"""
|
14713
|
+
"""ID of the nautical order (with Quote status) to send to the customer."""
|
14732
14714
|
id: ID!
|
14733
14715
|
|
14734
14716
|
"""
|
14735
14717
|
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=...
|
14736
14718
|
"""
|
14737
14719
|
storefrontUrl: String!
|
14738
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "
|
14720
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on June 11, 2025.")
|
14739
14721
|
|
14740
14722
|
"""Sends a quote order to a customer."""
|
14741
14723
|
nauticalDraftOrderSendToCustomer(
|
14742
|
-
"""
|
14743
|
-
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
14744
|
-
"""
|
14724
|
+
"""ID of the nautical order (with Quote status) to send to the customer."""
|
14745
14725
|
id: ID!
|
14746
14726
|
|
14747
14727
|
"""
|
@@ -20270,78 +20250,6 @@ input NauticalDraftOrderCreateInput {
|
|
20270
20250
|
transactionCurrency: String
|
20271
20251
|
}
|
20272
20252
|
|
20273
|
-
"""Creates a new Nautical historical order."""
|
20274
|
-
type NauticalHistoricalOrderCreate {
|
20275
|
-
orderErrors: [OrderError!]!
|
20276
|
-
nauticalOrder: NauticalOrder
|
20277
|
-
}
|
20278
|
-
|
20279
|
-
input NauticalHistoricalOrderInput {
|
20280
|
-
"""Billing address of the customer."""
|
20281
|
-
billingAddress: AddressInput
|
20282
|
-
|
20283
|
-
"""Shipping address of the customer."""
|
20284
|
-
shippingAddress: AddressInput
|
20285
|
-
|
20286
|
-
"""Customer associated with the draft order."""
|
20287
|
-
user: ID
|
20288
|
-
|
20289
|
-
"""Email address of the customer."""
|
20290
|
-
userEmail: String
|
20291
|
-
|
20292
|
-
"""Discount amount for the order."""
|
20293
|
-
discount: PositiveDecimal
|
20294
|
-
|
20295
|
-
"""Shipping price without taxes."""
|
20296
|
-
shippingPriceNetAmount: PositiveDecimal
|
20297
|
-
|
20298
|
-
"""Shipping price with taxes."""
|
20299
|
-
shippingPriceGrossAmount: PositiveDecimal
|
20300
|
-
|
20301
|
-
"""Total price without taxes."""
|
20302
|
-
totalNetAmount: PositiveDecimal
|
20303
|
-
|
20304
|
-
"""Total price with taxes."""
|
20305
|
-
totalGrossAmount: PositiveDecimal
|
20306
|
-
|
20307
|
-
"""Currency code."""
|
20308
|
-
currency: String
|
20309
|
-
|
20310
|
-
"""A note from a customer. Visible by customers in the order summary."""
|
20311
|
-
customerNote: String
|
20312
|
-
|
20313
|
-
"""Variant line input consisting of variant ID and quantity of products."""
|
20314
|
-
lines: [HistoricalOrderLineInput!]
|
20315
|
-
seller: ID
|
20316
|
-
|
20317
|
-
"""Created date time of historical order in ISO 8601 format."""
|
20318
|
-
created: DateTime
|
20319
|
-
|
20320
|
-
"""Order ID in the external source."""
|
20321
|
-
externalId: String
|
20322
|
-
externalInventoryId: String
|
20323
|
-
|
20324
|
-
"""External source name."""
|
20325
|
-
externalSource: String
|
20326
|
-
}
|
20327
|
-
|
20328
|
-
input HistoricalOrderLineInput {
|
20329
|
-
"""Number of variant items ordered."""
|
20330
|
-
quantity: Int!
|
20331
|
-
|
20332
|
-
"""Product variant ID."""
|
20333
|
-
variantId: ID!
|
20334
|
-
|
20335
|
-
"""Total price without taxes."""
|
20336
|
-
unitPriceNetAmount: PositiveDecimal
|
20337
|
-
|
20338
|
-
"""Total price with taxes."""
|
20339
|
-
unitPriceGrossAmount: PositiveDecimal
|
20340
|
-
|
20341
|
-
"""Order ID in the external source."""
|
20342
|
-
externalId: String
|
20343
|
-
}
|
20344
|
-
|
20345
20253
|
"""Deletes a draft order."""
|
20346
20254
|
type DraftOrderDelete {
|
20347
20255
|
orderErrors: [OrderError!]!
|
@@ -20930,17 +20838,6 @@ input NauticalOrderUpdateInput {
|
|
20930
20838
|
poNumbers: [String!]
|
20931
20839
|
}
|
20932
20840
|
|
20933
|
-
"""Modifies the payout status of an order"""
|
20934
|
-
type OrderPayoutStatusUpdate {
|
20935
|
-
"""Order that was updated."""
|
20936
|
-
order: Order
|
20937
|
-
orderErrors: [OrderError!]!
|
20938
|
-
}
|
20939
|
-
|
20940
|
-
input OrderPayoutStatusUpdateInput {
|
20941
|
-
payoutStatus: OrderPayoutStatusEnum!
|
20942
|
-
}
|
20943
|
-
|
20944
20841
|
"""Updates a shipping method of the order."""
|
20945
20842
|
type OrderUpdateShipping {
|
20946
20843
|
"""Order with updated shipping method."""
|