@nautical-commerce/graphql-schema 1.83.7 → 1.84.0-10-g2e23c7ac2

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.
@@ -2817,6 +2817,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
2817
2817
 
2818
2818
  """Product dimensions."""
2819
2819
  dimensions: ProductDimensions
2820
+
2821
+ """
2822
+ List of warnings for this product variant that needs to be resolved for publishing.
2823
+ """
2824
+ warnings: [WarningMessageItem!]!
2820
2825
  }
2821
2826
 
2822
2827
  """An enumeration."""
@@ -7866,7 +7871,7 @@ type WarningMessageItem {
7866
7871
  """Code of the warning message."""
7867
7872
  code: String!
7868
7873
 
7869
- """Warning Message."""
7874
+ """Warning message."""
7870
7875
  message: String!
7871
7876
  }
7872
7877
 
@@ -12195,7 +12200,7 @@ type Mutation {
12195
12200
  description: String
12196
12201
 
12197
12202
  """
12198
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/csv, application/dxf, application/x-tif, application/x-zip-compressed, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-tiff, image/tiff, application/postscript, image/png, application/x-jpg, drawing/x-dwf, text/x-csv, image/heif-sequence, image/x-tif, application/svg+xml, application/msword, text/x-pdf, application/x-autocad, application/x-pdf, application/x-rar, text/comma-separated-values, application/gzip-compressed, application/jpg, image/gif, drawing/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rtf, image/heif, pplication/vnd.rar, image/vnd.dwg, image/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.spreadsheet, application/gzipped, text/plain, image/eps, application/vnd.ms-powerpoint, application/x-dwg, application/zip, application/x-gzip, application/eps, application/tif, application/x-tiff, text/svg-xml, application/vnd.pdf, application/tiff, application/excel, image/x-dxf, application/x-eps, image/tif, text/svg, application/x-acad, application/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-bmp, application/acad, application/pdf, application/vnd.oasis.opendocument.presentation, image/bmp, image/x-ms-bmp, application/x-rar-compressed, image/svg+xml, application/x-tar, application/rtf, application/vnd.ms-word, image/jpeg, application/acrobat, application/x-dxf, image/webp, image/svg, application/dwg, text/x-comma-separated-values, image/heic, text/rtf, text/pdf, application/x-csv, application/vnd.oasis.opendocument.text, application/gzip, image/jpg, image/x-eps, image/dxf, image/heic-sequence, drawing/dwg.
12203
+ 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/gzipped, text/plain, application/vnd.oasis.opendocument.text, text/comma-separated-values, application/x-dwg, application/vnd.pdf, image/svg, image/x-tif, application/acad, image/jpeg, image/x-ms-bmp, application/jpg, image/heif-sequence, image/x-bmp, image/jpg, drawing/dwg, application/x-acad, image/webp, application/dxf, application/x-tar, application/tif, image/heif, application/gzip-compressed, application/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tif, image/gif, image/x-dxf, drawing/x-dwg, application/zip, application/x-rtf, application/vnd.ms-excel, application/dwg, application/x-tiff, image/png, application/vnd.oasis.opendocument.presentation, application/svg+xml, application/x-pdf, text/svg-xml, application/x-gzip, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/x-comma-separated-values, application/pdf, text/x-csv, image/x-dwg, application/x-rar, application/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/x-pdf, application/x-zip-compressed, application/msword, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.spreadsheet, application/x-jpg, text/svg, image/dxf, image/x-eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heic, text/rtf, application/csv, text/csv, application/x-dxf, application/acrobat, image/eps, application/rtf, image/bmp, image/tiff, image/x-tiff, application/gzip, image/tif, application/excel, application/postscript, application/x-eps, application/vnd.ms-word, drawing/x-dwf, image/svg+xml, application/tiff, image/heic-sequence, image/vnd.dwg, application/x-autocad, pplication/vnd.rar.
12199
12204
  """
12200
12205
  file: Upload!
12201
12206
 
@@ -13693,7 +13698,7 @@ type Mutation {
13693
13698
 
13694
13699
  """ID of the seller to attach the order to"""
13695
13700
  seller: ID!
13696
- ): DraftOrderComplete
13701
+ ): DraftOrderComplete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderComplete instead.")
13697
13702
 
13698
13703
  """Completes creating an order."""
13699
13704
  nauticalDraftOrderComplete(
@@ -13720,7 +13725,7 @@ type Mutation {
13720
13725
 
13721
13726
  """ID of the draft order to update transaction currency."""
13722
13727
  orderId: ID!
13723
- ): DraftOrderSetTransactionCurrency
13728
+ ): DraftOrderSetTransactionCurrency @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderSetTransactionCurrency instead.")
13724
13729
 
13725
13730
  """
13726
13731
  Update currency in the existing nautical draft order object, related nautical order lines, child order and their lines.
@@ -13737,7 +13742,7 @@ type Mutation {
13737
13742
  draftOrderCreate(
13738
13743
  """Fields required to create an order."""
13739
13744
  input: DraftOrderCreateInput!
13740
- ): DraftOrderCreate
13745
+ ): DraftOrderCreate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderCreate instead.")
13741
13746
 
13742
13747
  """Creates a new Nautical draft order."""
13743
13748
  nauticalDraftOrderCreate(
@@ -13749,7 +13754,7 @@ type Mutation {
13749
13754
  draftOrderDelete(
13750
13755
  """ID of a draft or quote order to delete."""
13751
13756
  id: ID!
13752
- ): DraftOrderDelete
13757
+ ): DraftOrderDelete @deprecated(reason: "This will be removed on August 15, 2025.")
13753
13758
 
13754
13759
  """Deletes a draft order."""
13755
13760
  nauticalDraftOrderDelete(
@@ -13761,7 +13766,7 @@ type Mutation {
13761
13766
  draftOrderBulkDelete(
13762
13767
  """List of draft or quote order IDs to delete."""
13763
13768
  ids: [ID!]!
13764
- ): DraftOrderBulkDelete
13769
+ ): DraftOrderBulkDelete @deprecated(reason: "This will be removed on August 15, 2025.")
13765
13770
 
13766
13771
  """Deletes draft or quote orders."""
13767
13772
  nauticalDraftOrderBulkDelete(
@@ -13773,7 +13778,7 @@ type Mutation {
13773
13778
  draftOrderLinesBulkDelete(
13774
13779
  """List of order lines IDs to delete."""
13775
13780
  ids: [ID!]!
13776
- ): DraftOrderLinesBulkDelete
13781
+ ): DraftOrderLinesBulkDelete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinesBulkDelete instead.")
13777
13782
 
13778
13783
  """Deletes order lines."""
13779
13784
  nauticalDraftOrderLinesBulkDelete(
@@ -13788,7 +13793,7 @@ type Mutation {
13788
13793
 
13789
13794
  """Fields required to add order lines."""
13790
13795
  input: [OrderLineCreateInput!]!
13791
- ): DraftOrderLinesCreate
13796
+ ): DraftOrderLinesCreate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinesCreate instead.")
13792
13797
 
13793
13798
  """Create order lines for a draft or quote order."""
13794
13799
  nauticalDraftOrderLinesCreate(
@@ -13803,7 +13808,7 @@ type Mutation {
13803
13808
  draftOrderLineDelete(
13804
13809
  """ID of the order line to delete."""
13805
13810
  id: ID!
13806
- ): DraftOrderLineDelete
13811
+ ): DraftOrderLineDelete @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLineDelete instead.")
13807
13812
 
13808
13813
  """Deletes an order line from a draft or quote order."""
13809
13814
  nauticalDraftOrderLineDelete(
@@ -13818,7 +13823,7 @@ type Mutation {
13818
13823
 
13819
13824
  """Fields required to update an order line."""
13820
13825
  input: OrderLineInput!
13821
- ): DraftOrderLineUpdate
13826
+ ): DraftOrderLineUpdate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLineUpdate instead.")
13822
13827
 
13823
13828
  """Updates an order line of a draft order."""
13824
13829
  nauticalDraftOrderLineUpdate(
@@ -13836,7 +13841,7 @@ type Mutation {
13836
13841
 
13837
13842
  """Fields required to update an order."""
13838
13843
  input: DraftOrderInput!
13839
- ): DraftOrderUpdate
13844
+ ): DraftOrderUpdate @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderUpdate instead.")
13840
13845
 
13841
13846
  """Updates a draft or quote nautical order."""
13842
13847
  nauticalDraftOrderUpdate(
@@ -13857,7 +13862,7 @@ type Mutation {
13857
13862
 
13858
13863
  """Fields required to override price for an order line."""
13859
13864
  input: OrderLinePriceOverrideInput!
13860
- ): DraftOrderLinePriceOverride
13865
+ ): DraftOrderLinePriceOverride @deprecated(reason: "This will be removed on August 15, 2025. Use nauticalDraftOrderLinePriceOverride instead.")
13861
13866
 
13862
13867
  """
13863
13868
  Overrides unit net price of a marketplace order line of a draft, or quote order.
@@ -16642,7 +16647,7 @@ input WarehouseAddressInput {
16642
16647
  streetAddress2: String
16643
16648
 
16644
16649
  """City."""
16645
- city: String!
16650
+ city: String
16646
16651
 
16647
16652
  """District."""
16648
16653
  cityArea: String
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.83.7",
3
+ "version": "v1.84.0-10-g2e23c7ac2",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {