@nautical-commerce/graphql-schema 1.63.0-2-g35aa94299 → 1.63.0-20-ga84b3b253

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.
@@ -3499,9 +3499,6 @@ enum SellerApplicationCheckpoint {
3499
3499
  """Address"""
3500
3500
  ADDRESS
3501
3501
 
3502
- """Business Sell"""
3503
- BUSINESS_SELL
3504
-
3505
3502
  """Complete"""
3506
3503
  COMPLETE
3507
3504
  }
@@ -13164,7 +13161,7 @@ type Mutation {
13164
13161
  description: String
13165
13162
 
13166
13163
  """
13167
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-tar, application/x-pdf, application/vnd.ms-word, application/gzipped, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/png, application/excel, application/vnd.oasis.opendocument.text, text/svg-xml, application/tiff, image/svg+xml, application/acad, application/zip, application/gzip, text/svg, image/jpeg, application/gzip-compressed, text/rtf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-excel, image/svg, text/pdf, drawing/x-dwf, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, image/dxf, application/msword, application/x-gzip, application/x-rar, text/x-csv, drawing/x-dwg, application/vnd.pdf, image/x-dwg, image/gif, image/eps, image/x-ms-bmp, image/x-eps, application/x-rtf, application/x-dwg, image/tif, application/x-tiff, image/x-bmp, application/x-zip-compressed, application/x-autocad, application/x-tif, image/heic-sequence, application/x-rar-compressed, image/jpg, image/heic, image/bmp, application/x-csv, text/x-pdf, application/acrobat, application/rtf, application/tif, application/x-dxf, application/postscript, application/eps, application/jpg, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-powerpoint, text/csv, image/x-tif, image/heif, application/dxf, application/x-acad, application/csv, pplication/vnd.rar, application/pdf, image/vnd.dwg, application/dwg, application/svg+xml, image/x-dxf, text/plain, application/x-jpg, text/x-comma-separated-values, application/x-eps, text/comma-separated-values, image/tiff, image/webp.
13164
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-gzip, application/x-jpg, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, image/x-bmp, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/rtf, image/vnd.dwg, application/pdf, image/x-tif, image/x-dwg, application/vnd.ms-powerpoint, image/bmp, application/dwg, application/vnd.oasis.opendocument.presentation, application/x-dwg, application/x-tar, pplication/vnd.rar, text/x-pdf, application/x-rar-compressed, image/heif-sequence, application/tif, image/tif, application/zip, image/webp, application/tiff, application/gzipped, application/x-pdf, application/acrobat, image/jpeg, drawing/dwg, application/vnd.pdf, application/x-csv, application/gzip-compressed, image/jpg, application/x-autocad, image/x-ms-bmp, text/csv, image/eps, application/vnd.ms-word, application/vnd.oasis.opendocument.spreadsheet, application/vnd.oasis.opendocument.text, application/x-rtf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/png, application/dxf, image/x-eps, image/x-tiff, text/x-csv, application/jpg, application/x-tif, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/x-acad, image/svg, text/svg, application/postscript, drawing/x-dwf, application/x-dxf, image/heif, application/x-tiff, text/plain, application/acad, image/svg+xml, text/comma-separated-values, image/heic-sequence, image/x-dxf, text/pdf, text/svg-xml, application/excel, application/x-zip-compressed, application/vnd.ms-excel, application/csv, application/x-eps, image/gif, drawing/x-dwg, application/msword, image/tiff, application/x-rar, application/eps, image/heic, image/dxf.
13168
13165
  """
13169
13166
  file: Upload!
13170
13167
 
@@ -14966,6 +14963,15 @@ type Mutation {
14966
14963
  order: ID
14967
14964
  ): OrderFulfill
14968
14965
 
14966
+ """Creates new fulfillments for a nautical order."""
14967
+ nauticalOrderFulfill(
14968
+ """Fields required to create a fulfillment."""
14969
+ input: NauticalOrderFulfillInput!
14970
+
14971
+ """ID of the Nautical Order to be fulfilled."""
14972
+ nauticalOrder: ID
14973
+ ): NauticalOrderFulfill
14974
+
14969
14975
  """
14970
14976
  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
14977
  """
@@ -21051,6 +21057,32 @@ input OrderFulfillStockInput {
21051
21057
  warehouse: ID!
21052
21058
  }
21053
21059
 
21060
+ """Creates new fulfillments for a nautical order."""
21061
+ type NauticalOrderFulfill {
21062
+ """List of created fulfillments."""
21063
+ fulfillments: [Fulfillment!]!
21064
+
21065
+ """Fulfilled order."""
21066
+ nauticalOrder: NauticalOrder!
21067
+ orderErrors: [OrderError!]!
21068
+ }
21069
+
21070
+ input NauticalOrderFulfillInput {
21071
+ """List of items informing how to fulfill the order."""
21072
+ lines: [NauticalOrderFulfillLineInput!]!
21073
+
21074
+ """If true, send an email notification to the customer."""
21075
+ notifyCustomer: Boolean
21076
+ }
21077
+
21078
+ input NauticalOrderFulfillLineInput {
21079
+ """The ID of the nautical order line."""
21080
+ nauticalOrderLineId: ID
21081
+
21082
+ """List of stock items to create."""
21083
+ stocks: [OrderFulfillStockInput!]!
21084
+ }
21085
+
21054
21086
  """
21055
21087
  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
21088
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.63.0-2-g35aa94299",
3
+ "version": "v1.63.0-20-ga84b3b253",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {