@nautical-commerce/graphql-schema 1.80.0-21-ga908aef7b → 1.80.0-22-g2dff4d595
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 +1 -34
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12481,7 +12481,7 @@ type Mutation {
|
|
12481
12481
|
description: String
|
12482
12482
|
|
12483
12483
|
"""
|
12484
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12484
|
+
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.oasis.opendocument.spreadsheet, application/acad, application/jpg, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/plain, image/x-tif, application/x-rtf, application/x-rar, application/gzipped, application/csv, drawing/x-dwf, drawing/dwg, text/x-comma-separated-values, application/x-dwg, image/x-eps, application/vnd.ms-powerpoint, image/x-tiff, image/x-dxf, image/bmp, application/x-autocad, image/heif, image/heic-sequence, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/pdf, application/x-jpg, application/pdf, application/x-tiff, image/vnd.dwg, text/x-pdf, application/x-eps, application/excel, application/gzip-compressed, application/vnd.ms-excel, application/x-pdf, image/webp, image/x-ms-bmp, application/x-gzip, image/tif, pplication/vnd.rar, application/x-acad, application/vnd.oasis.opendocument.presentation, application/tif, application/acrobat, application/tiff, application/x-dxf, application/msword, image/png, image/svg, application/x-zip-compressed, application/gzip, image/tiff, text/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/svg+xml, image/heic, application/eps, application/vnd.oasis.opendocument.text, text/comma-separated-values, application/zip, text/svg, image/heif-sequence, application/dwg, image/gif, text/svg-xml, text/x-csv, application/vnd.pdf, image/x-bmp, image/x-dwg, application/x-rar-compressed, image/eps, application/x-tif, image/jpg, application/dxf, application/postscript, drawing/x-dwg, application/x-tar, application/x-csv, application/rtf, image/jpeg, image/svg+xml, image/dxf.
|
12485
12485
|
"""
|
12486
12486
|
file: Upload!
|
12487
12487
|
|
@@ -14872,12 +14872,6 @@ type Mutation {
|
|
14872
14872
|
input: ExportProductsInput!
|
14873
14873
|
): ProductsExport
|
14874
14874
|
|
14875
|
-
"""Import products with csv file."""
|
14876
|
-
productsImport(
|
14877
|
-
"""Represents a file in a multipart request."""
|
14878
|
-
file: Upload!
|
14879
|
-
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
14880
|
-
|
14881
14875
|
"""Adds a gift card or a voucher to a checkout."""
|
14882
14876
|
checkoutAddPromoCode(
|
14883
14877
|
"""Checkout ID."""
|
@@ -21558,33 +21552,6 @@ enum FileTypesEnum {
|
|
21558
21552
|
XLSX
|
21559
21553
|
}
|
21560
21554
|
|
21561
|
-
"""Import products with csv file."""
|
21562
|
-
type ProductsImport {
|
21563
|
-
"""The newly created import file which is responsible for import data."""
|
21564
|
-
importFile: ImportFile
|
21565
|
-
importErrors: [ImportError!]!
|
21566
|
-
}
|
21567
|
-
|
21568
|
-
type ImportError {
|
21569
|
-
"""
|
21570
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
21571
|
-
"""
|
21572
|
-
field: String
|
21573
|
-
|
21574
|
-
"""The error message."""
|
21575
|
-
message: String!
|
21576
|
-
|
21577
|
-
"""The error code."""
|
21578
|
-
code: ImportErrorCode!
|
21579
|
-
}
|
21580
|
-
|
21581
|
-
"""An enumeration."""
|
21582
|
-
enum ImportErrorCode {
|
21583
|
-
INVALID
|
21584
|
-
NOT_FOUND
|
21585
|
-
REQUIRED
|
21586
|
-
}
|
21587
|
-
|
21588
21555
|
"""Adds a gift card or a voucher to a checkout."""
|
21589
21556
|
type CheckoutAddPromoCode {
|
21590
21557
|
"""The checkout with the added gift card or voucher."""
|