@nautical-commerce/graphql-schema 1.95.0-3-g58ef5e7c6 → 1.95.1-1-gb779166a9

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.
@@ -11826,7 +11826,7 @@ type Mutation {
11826
11826
  description: String
11827
11827
 
11828
11828
  """
11829
- 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-rar, image/heif-sequence, drawing/x-dwg, image/png, application/eps, application/vnd.ms-word, text/csv, image/gif, text/x-pdf, application/csv, application/x-tar, image/heif, application/x-csv, application/x-jpg, application/tiff, application/x-rtf, application/acad, application/x-pdf, application/x-autocad, application/zip, application/x-acad, application/vnd.oasis.opendocument.presentation, application/acrobat, application/vnd.ms-excel, application/x-dwg, image/webp, application/x-rar-compressed, application/vnd.pdf, application/x-gzip, text/rtf, image/x-eps, image/x-bmp, drawing/x-dwf, application/msword, image/tif, application/vnd.ms-powerpoint, application/x-tiff, application/tif, application/gzip-compressed, image/jpeg, image/heic, application/rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/postscript, application/vnd.oasis.opendocument.spreadsheet, application/gzipped, drawing/dwg, image/svg, image/x-dwg, image/bmp, text/plain, text/svg, text/svg-xml, application/x-dxf, text/x-csv, application/gzip, image/svg+xml, application/x-tif, image/tiff, text/pdf, image/x-ms-bmp, image/x-tiff, application/jpg, text/comma-separated-values, image/dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/pdf, image/x-tif, image/vnd.dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dxf, text/x-comma-separated-values, application/x-eps, image/x-dxf, pplication/vnd.rar, image/jpg, application/dwg, image/eps, application/vnd.oasis.opendocument.text, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/excel, application/svg+xml, image/heic-sequence.
11829
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, application/vnd.oasis.opendocument.text, application/x-jpg, application/rtf, text/comma-separated-values, image/svg+xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/bmp, image/webp, text/x-csv, image/gif, image/vnd.dwg, text/pdf, application/eps, image/jpeg, application/gzipped, application/tiff, application/dwg, text/x-pdf, image/tiff, image/x-ms-bmp, application/tif, text/svg-xml, application/dxf, application/excel, application/x-dxf, application/x-tif, text/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, pplication/vnd.rar, application/gzip, application/x-csv, image/svg, image/x-eps, image/x-tif, drawing/x-dwf, image/png, application/x-acad, application/gzip-compressed, application/x-tiff, image/x-bmp, image/heic-sequence, application/x-rar-compressed, image/eps, text/rtf, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/zip, drawing/x-dwg, application/x-gzip, application/vnd.ms-word, application/x-rar, application/vnd.ms-excel, image/heif, application/jpg, application/acad, application/csv, text/plain, application/svg+xml, application/x-tar, text/x-comma-separated-values, application/x-eps, application/vnd.oasis.opendocument.spreadsheet, image/x-dwg, image/heic, application/x-autocad, application/x-pdf, application/msword, text/csv, image/dxf, application/vnd.ms-powerpoint, image/x-dxf, drawing/dwg, image/x-tiff, application/x-dwg, application/acrobat, application/postscript, application/pdf, image/tif, image/jpg, application/vnd.oasis.opendocument.presentation, application/x-zip-compressed.
11830
11830
  """
11831
11831
  file: Upload!
11832
11832
 
@@ -13182,6 +13182,19 @@ type Mutation {
13182
13182
  token: String
13183
13183
  ): NauticalDraftOrderComplete
13184
13184
 
13185
+ """Adds customers to orders that are not attached to existing customers."""
13186
+ nauticalOrderBulkAssignCustomer(
13187
+ """
13188
+ List of nautical order IDs to assign given customer to. The given orders must not have any customer assigned already.
13189
+ """
13190
+ ids: [ID!]!
13191
+
13192
+ """
13193
+ ID of the user to attach to the orders. User must have the same email as the email on the given orders.
13194
+ """
13195
+ user: ID!
13196
+ ): NauticalOrderBulkAssignCustomer
13197
+
13185
13198
  """Update currency in the existing draft order object."""
13186
13199
  draftOrderSetTransactionCurrency(
13187
13200
  """Set currency for this nautical order and related items."""
@@ -18484,6 +18497,23 @@ type NauticalDraftOrderComplete {
18484
18497
  orderErrors: [OrderError!]!
18485
18498
  }
18486
18499
 
18500
+ """Adds customers to orders that are not attached to existing customers."""
18501
+ type NauticalOrderBulkAssignCustomer {
18502
+ """The orders that had their user updated."""
18503
+ successfulOrders: [NauticalOrder!]
18504
+
18505
+ """The orders that could not have their user updated."""
18506
+ failedOrders: [OrderUserOverrideFailure!]
18507
+ }
18508
+
18509
+ type OrderUserOverrideFailure {
18510
+ """Nautical order number that failed to be overridden."""
18511
+ order: Int
18512
+
18513
+ """Reason for failure."""
18514
+ reason: String
18515
+ }
18516
+
18487
18517
  """Update currency in the existing draft order object."""
18488
18518
  type DraftOrderSetTransactionCurrency {
18489
18519
  """Draft Order to update transaction currency."""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.95.0-3-g58ef5e7c6",
3
+ "version": "v1.95.1-1-gb779166a9",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {