@nautical-commerce/graphql-schema 1.83.6 → 1.84.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 +13 -13
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12195,7 +12195,7 @@ type Mutation {
|
|
12195
12195
|
description: String
|
12196
12196
|
|
12197
12197
|
"""
|
12198
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12198
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/x-dwf, application/pdf, text/x-pdf, application/x-acad, image/svg, text/rtf, application/x-dwg, application/gzip, application/postscript, application/vnd.oasis.opendocument.presentation, application/x-rtf, text/pdf, image/eps, image/webp, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/svg+xml, application/dxf, application/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-jpg, application/eps, application/x-dxf, image/heif, application/dwg, text/svg-xml, image/x-ms-bmp, image/x-tif, text/comma-separated-values, drawing/dwg, image/x-dwg, application/x-gzip, application/csv, image/bmp, application/msword, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tiff, image/x-dxf, image/jpg, image/png, image/heic-sequence, application/x-rar-compressed, application/acrobat, application/tiff, image/vnd.dwg, image/x-tiff, application/zip, application/x-zip-compressed, image/dxf, image/jpeg, application/jpg, application/svg+xml, application/x-csv, application/x-autocad, text/x-comma-separated-values, application/vnd.oasis.opendocument.text, application/vnd.ms-word, application/tif, image/tiff, image/gif, application/x-eps, application/excel, text/plain, application/rtf, text/csv, application/acad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heif-sequence, text/x-csv, application/vnd.ms-excel, image/tif, application/x-tar, image/x-eps, application/vnd.oasis.opendocument.spreadsheet, application/vnd.pdf, application/x-rar, application/x-pdf, image/x-bmp, application/vnd.ms-powerpoint, text/svg, drawing/x-dwg, image/heic, application/gzipped, pplication/vnd.rar, application/gzip-compressed.
|
12199
12199
|
"""
|
12200
12200
|
file: Upload!
|
12201
12201
|
|
@@ -13693,7 +13693,7 @@ type Mutation {
|
|
13693
13693
|
|
13694
13694
|
"""ID of the seller to attach the order to"""
|
13695
13695
|
seller: ID!
|
13696
|
-
): DraftOrderComplete
|
13696
|
+
): DraftOrderComplete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderComplete instead.")
|
13697
13697
|
|
13698
13698
|
"""Completes creating an order."""
|
13699
13699
|
nauticalDraftOrderComplete(
|
@@ -13720,7 +13720,7 @@ type Mutation {
|
|
13720
13720
|
|
13721
13721
|
"""ID of the draft order to update transaction currency."""
|
13722
13722
|
orderId: ID!
|
13723
|
-
): DraftOrderSetTransactionCurrency
|
13723
|
+
): DraftOrderSetTransactionCurrency @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderSetTransactionCurrency instead.")
|
13724
13724
|
|
13725
13725
|
"""
|
13726
13726
|
Update currency in the existing nautical draft order object, related nautical order lines, child order and their lines.
|
@@ -13737,7 +13737,7 @@ type Mutation {
|
|
13737
13737
|
draftOrderCreate(
|
13738
13738
|
"""Fields required to create an order."""
|
13739
13739
|
input: DraftOrderCreateInput!
|
13740
|
-
): DraftOrderCreate
|
13740
|
+
): DraftOrderCreate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderCreate instead.")
|
13741
13741
|
|
13742
13742
|
"""Creates a new Nautical draft order."""
|
13743
13743
|
nauticalDraftOrderCreate(
|
@@ -13749,7 +13749,7 @@ type Mutation {
|
|
13749
13749
|
draftOrderDelete(
|
13750
13750
|
"""ID of a draft or quote order to delete."""
|
13751
13751
|
id: ID!
|
13752
|
-
): DraftOrderDelete
|
13752
|
+
): DraftOrderDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
13753
13753
|
|
13754
13754
|
"""Deletes a draft order."""
|
13755
13755
|
nauticalDraftOrderDelete(
|
@@ -13761,7 +13761,7 @@ type Mutation {
|
|
13761
13761
|
draftOrderBulkDelete(
|
13762
13762
|
"""List of draft or quote order IDs to delete."""
|
13763
13763
|
ids: [ID!]!
|
13764
|
-
): DraftOrderBulkDelete
|
13764
|
+
): DraftOrderBulkDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
13765
13765
|
|
13766
13766
|
"""Deletes draft or quote orders."""
|
13767
13767
|
nauticalDraftOrderBulkDelete(
|
@@ -13773,7 +13773,7 @@ type Mutation {
|
|
13773
13773
|
draftOrderLinesBulkDelete(
|
13774
13774
|
"""List of order lines IDs to delete."""
|
13775
13775
|
ids: [ID!]!
|
13776
|
-
): DraftOrderLinesBulkDelete
|
13776
|
+
): DraftOrderLinesBulkDelete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinesBulkDelete instead.")
|
13777
13777
|
|
13778
13778
|
"""Deletes order lines."""
|
13779
13779
|
nauticalDraftOrderLinesBulkDelete(
|
@@ -13788,7 +13788,7 @@ type Mutation {
|
|
13788
13788
|
|
13789
13789
|
"""Fields required to add order lines."""
|
13790
13790
|
input: [OrderLineCreateInput!]!
|
13791
|
-
): DraftOrderLinesCreate
|
13791
|
+
): DraftOrderLinesCreate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinesCreate instead.")
|
13792
13792
|
|
13793
13793
|
"""Create order lines for a draft or quote order."""
|
13794
13794
|
nauticalDraftOrderLinesCreate(
|
@@ -13803,7 +13803,7 @@ type Mutation {
|
|
13803
13803
|
draftOrderLineDelete(
|
13804
13804
|
"""ID of the order line to delete."""
|
13805
13805
|
id: ID!
|
13806
|
-
): DraftOrderLineDelete
|
13806
|
+
): DraftOrderLineDelete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLineDelete instead.")
|
13807
13807
|
|
13808
13808
|
"""Deletes an order line from a draft or quote order."""
|
13809
13809
|
nauticalDraftOrderLineDelete(
|
@@ -13818,7 +13818,7 @@ type Mutation {
|
|
13818
13818
|
|
13819
13819
|
"""Fields required to update an order line."""
|
13820
13820
|
input: OrderLineInput!
|
13821
|
-
): DraftOrderLineUpdate
|
13821
|
+
): DraftOrderLineUpdate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLineUpdate instead.")
|
13822
13822
|
|
13823
13823
|
"""Updates an order line of a draft order."""
|
13824
13824
|
nauticalDraftOrderLineUpdate(
|
@@ -13836,7 +13836,7 @@ type Mutation {
|
|
13836
13836
|
|
13837
13837
|
"""Fields required to update an order."""
|
13838
13838
|
input: DraftOrderInput!
|
13839
|
-
): DraftOrderUpdate
|
13839
|
+
): DraftOrderUpdate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderUpdate instead.")
|
13840
13840
|
|
13841
13841
|
"""Updates a draft or quote nautical order."""
|
13842
13842
|
nauticalDraftOrderUpdate(
|
@@ -13857,7 +13857,7 @@ type Mutation {
|
|
13857
13857
|
|
13858
13858
|
"""Fields required to override price for an order line."""
|
13859
13859
|
input: OrderLinePriceOverrideInput!
|
13860
|
-
): DraftOrderLinePriceOverride
|
13860
|
+
): DraftOrderLinePriceOverride @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinePriceOverride instead.")
|
13861
13861
|
|
13862
13862
|
"""
|
13863
13863
|
Overrides unit net price of a marketplace order line of a draft, or quote order.
|
@@ -16642,7 +16642,7 @@ input WarehouseAddressInput {
|
|
16642
16642
|
streetAddress2: String
|
16643
16643
|
|
16644
16644
|
"""City."""
|
16645
|
-
city: String
|
16645
|
+
city: String
|
16646
16646
|
|
16647
16647
|
"""District."""
|
16648
16648
|
cityArea: String
|