@nautical-commerce/graphql-schema 1.82.2 → 1.83.0-10-gb86228688
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 +19 -12
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -4914,6 +4914,7 @@ type Attribute implements Node & ObjectWithMetadata {
|
|
4914
4914
|
externalSource: String
|
4915
4915
|
productTypes(offset: Int, before: String, after: String, first: Int, last: Int): ProductTypeCountableConnection!
|
4916
4916
|
productVariantTypes(offset: Int, before: String, after: String, first: Int, last: Int): ProductTypeCountableConnection!
|
4917
|
+
isLocked: Boolean!
|
4917
4918
|
|
4918
4919
|
"""
|
4919
4920
|
List of private metadata items.Requires proper staff permissions to access.
|
@@ -12194,7 +12195,7 @@ type Mutation {
|
|
12194
12195
|
description: String
|
12195
12196
|
|
12196
12197
|
"""
|
12197
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/
|
12198
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/jpg, application/vnd.pdf, application/excel, image/x-bmp, image/svg+xml, application/x-csv, image/heic, application/jpg, image/png, application/x-acad, image/gif, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-tiff, image/heic-sequence, text/pdf, application/x-rtf, text/x-csv, application/gzipped, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, text/svg-xml, image/tif, application/zip, application/x-tar, application/x-rar-compressed, application/gzip, application/dwg, application/x-eps, drawing/x-dwf, text/csv, image/x-eps, image/x-dxf, application/pdf, application/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-jpg, image/x-ms-bmp, application/vnd.ms-excel, image/heif-sequence, application/gzip-compressed, text/x-pdf, application/x-tiff, image/jpeg, image/bmp, pplication/vnd.rar, image/eps, application/x-zip-compressed, text/svg, application/x-tif, application/x-gzip, text/plain, application/svg+xml, image/tiff, drawing/dwg, drawing/x-dwg, application/vnd.oasis.opendocument.presentation, image/webp, text/rtf, application/acad, text/x-comma-separated-values, image/vnd.dwg, image/dxf, application/msword, application/csv, application/rtf, application/tiff, application/x-rar, application/x-autocad, image/svg, application/x-dxf, application/acrobat, image/x-tif, application/eps, application/vnd.oasis.opendocument.spreadsheet, application/tif, application/vnd.ms-word, text/comma-separated-values, application/dxf, application/postscript, image/heif, application/vnd.oasis.opendocument.text.
|
12198
12199
|
"""
|
12199
12200
|
file: Upload!
|
12200
12201
|
|
@@ -13692,7 +13693,7 @@ type Mutation {
|
|
13692
13693
|
|
13693
13694
|
"""ID of the seller to attach the order to"""
|
13694
13695
|
seller: ID!
|
13695
|
-
): DraftOrderComplete
|
13696
|
+
): DraftOrderComplete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderComplete instead.")
|
13696
13697
|
|
13697
13698
|
"""Completes creating an order."""
|
13698
13699
|
nauticalDraftOrderComplete(
|
@@ -13719,7 +13720,7 @@ type Mutation {
|
|
13719
13720
|
|
13720
13721
|
"""ID of the draft order to update transaction currency."""
|
13721
13722
|
orderId: ID!
|
13722
|
-
): DraftOrderSetTransactionCurrency
|
13723
|
+
): DraftOrderSetTransactionCurrency @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderSetTransactionCurrency instead.")
|
13723
13724
|
|
13724
13725
|
"""
|
13725
13726
|
Update currency in the existing nautical draft order object, related nautical order lines, child order and their lines.
|
@@ -13736,7 +13737,7 @@ type Mutation {
|
|
13736
13737
|
draftOrderCreate(
|
13737
13738
|
"""Fields required to create an order."""
|
13738
13739
|
input: DraftOrderCreateInput!
|
13739
|
-
): DraftOrderCreate
|
13740
|
+
): DraftOrderCreate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderCreate instead.")
|
13740
13741
|
|
13741
13742
|
"""Creates a new Nautical draft order."""
|
13742
13743
|
nauticalDraftOrderCreate(
|
@@ -13748,7 +13749,7 @@ type Mutation {
|
|
13748
13749
|
draftOrderDelete(
|
13749
13750
|
"""ID of a draft or quote order to delete."""
|
13750
13751
|
id: ID!
|
13751
|
-
): DraftOrderDelete
|
13752
|
+
): DraftOrderDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
13752
13753
|
|
13753
13754
|
"""Deletes a draft order."""
|
13754
13755
|
nauticalDraftOrderDelete(
|
@@ -13760,7 +13761,7 @@ type Mutation {
|
|
13760
13761
|
draftOrderBulkDelete(
|
13761
13762
|
"""List of draft or quote order IDs to delete."""
|
13762
13763
|
ids: [ID!]!
|
13763
|
-
): DraftOrderBulkDelete
|
13764
|
+
): DraftOrderBulkDelete @deprecated(reason: "This will be removed on August 15, 2025.")
|
13764
13765
|
|
13765
13766
|
"""Deletes draft or quote orders."""
|
13766
13767
|
nauticalDraftOrderBulkDelete(
|
@@ -13772,7 +13773,7 @@ type Mutation {
|
|
13772
13773
|
draftOrderLinesBulkDelete(
|
13773
13774
|
"""List of order lines IDs to delete."""
|
13774
13775
|
ids: [ID!]!
|
13775
|
-
): DraftOrderLinesBulkDelete
|
13776
|
+
): DraftOrderLinesBulkDelete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinesBulkDelete instead.")
|
13776
13777
|
|
13777
13778
|
"""Deletes order lines."""
|
13778
13779
|
nauticalDraftOrderLinesBulkDelete(
|
@@ -13787,7 +13788,7 @@ type Mutation {
|
|
13787
13788
|
|
13788
13789
|
"""Fields required to add order lines."""
|
13789
13790
|
input: [OrderLineCreateInput!]!
|
13790
|
-
): DraftOrderLinesCreate
|
13791
|
+
): DraftOrderLinesCreate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinesCreate instead.")
|
13791
13792
|
|
13792
13793
|
"""Create order lines for a draft or quote order."""
|
13793
13794
|
nauticalDraftOrderLinesCreate(
|
@@ -13802,7 +13803,7 @@ type Mutation {
|
|
13802
13803
|
draftOrderLineDelete(
|
13803
13804
|
"""ID of the order line to delete."""
|
13804
13805
|
id: ID!
|
13805
|
-
): DraftOrderLineDelete
|
13806
|
+
): DraftOrderLineDelete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLineDelete instead.")
|
13806
13807
|
|
13807
13808
|
"""Deletes an order line from a draft or quote order."""
|
13808
13809
|
nauticalDraftOrderLineDelete(
|
@@ -13817,7 +13818,7 @@ type Mutation {
|
|
13817
13818
|
|
13818
13819
|
"""Fields required to update an order line."""
|
13819
13820
|
input: OrderLineInput!
|
13820
|
-
): DraftOrderLineUpdate
|
13821
|
+
): DraftOrderLineUpdate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLineUpdate instead.")
|
13821
13822
|
|
13822
13823
|
"""Updates an order line of a draft order."""
|
13823
13824
|
nauticalDraftOrderLineUpdate(
|
@@ -13835,7 +13836,7 @@ type Mutation {
|
|
13835
13836
|
|
13836
13837
|
"""Fields required to update an order."""
|
13837
13838
|
input: DraftOrderInput!
|
13838
|
-
): DraftOrderUpdate
|
13839
|
+
): DraftOrderUpdate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderUpdate instead.")
|
13839
13840
|
|
13840
13841
|
"""Updates a draft or quote nautical order."""
|
13841
13842
|
nauticalDraftOrderUpdate(
|
@@ -13856,7 +13857,7 @@ type Mutation {
|
|
13856
13857
|
|
13857
13858
|
"""Fields required to override price for an order line."""
|
13858
13859
|
input: OrderLinePriceOverrideInput!
|
13859
|
-
): DraftOrderLinePriceOverride
|
13860
|
+
): DraftOrderLinePriceOverride @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinePriceOverride instead.")
|
13860
13861
|
|
13861
13862
|
"""
|
13862
13863
|
Overrides unit net price of a marketplace order line of a draft, or quote order.
|
@@ -21457,6 +21458,9 @@ input AttributeCreateInput {
|
|
21457
21458
|
ID of the Seller that created the Attribute, or null if Marketplace Operator
|
21458
21459
|
"""
|
21459
21460
|
createdBy: String
|
21461
|
+
|
21462
|
+
"""Determines if sellers can create values for this attribute."""
|
21463
|
+
isLocked: Boolean
|
21460
21464
|
}
|
21461
21465
|
|
21462
21466
|
input AttributeValueCreateInput {
|
@@ -21586,6 +21590,9 @@ input AttributeUpdateInput {
|
|
21586
21590
|
ID of the Seller that created the Attribute, or null if Marketplace Operator
|
21587
21591
|
"""
|
21588
21592
|
createdBy: String
|
21593
|
+
|
21594
|
+
"""Determines if sellers can create values for this attribute."""
|
21595
|
+
isLocked: Boolean
|
21589
21596
|
}
|
21590
21597
|
|
21591
21598
|
"""Assign attributes to a given custom field template."""
|