@nautical-commerce/graphql-schema 1.95.1 → 1.96.0-2-g18a5bc188
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 +31 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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:
|
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/acad, application/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-dxf, application/x-tar, application/vnd.ms-powerpoint, application/x-zip-compressed, application/gzip, image/tiff, application/eps, image/svg, text/rtf, application/x-rtf, drawing/x-dwf, application/x-dwg, image/gif, image/jpg, application/excel, application/x-gzip, image/x-ms-bmp, image/x-tif, image/x-dwg, image/x-tiff, application/x-acad, text/plain, text/pdf, text/x-csv, application/tif, application/x-pdf, application/csv, application/rtf, image/svg+xml, image/eps, image/heic-sequence, text/svg, image/dxf, text/svg-xml, text/x-pdf, application/x-rar-compressed, application/vnd.pdf, application/vnd.oasis.opendocument.presentation, application/dxf, application/x-tiff, application/x-jpg, application/gzip-compressed, drawing/dwg, text/comma-separated-values, application/x-tif, image/png, application/pdf, application/acrobat, application/postscript, application/dwg, image/vnd.dwg, image/bmp, application/zip, drawing/x-dwg, application/x-dxf, pplication/vnd.rar, text/x-comma-separated-values, application/jpg, image/webp, application/tiff, application/gzipped, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, application/msword, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.text, application/x-eps, image/x-bmp, application/x-autocad, application/vnd.ms-excel, image/tif, image/heif, application/vnd.ms-word, image/heif-sequence, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/csv, image/heic, application/x-rar, image/x-eps, image/jpeg.
|
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."""
|