@nautical-commerce/graphql-schema 1.63.0-14-g0d1f30d4f → 1.63.0-15-gf8b3ba9f0

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