@nautical-commerce/graphql-schema 1.80.0-20-g3c7491e89 → 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 -40
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1793,12 +1793,6 @@ type Query {
|
|
1793
1793
|
last: Int
|
1794
1794
|
): CheckoutCountableConnection
|
1795
1795
|
|
1796
|
-
"""Look up a checkout line by ID."""
|
1797
|
-
checkoutLine(
|
1798
|
-
"""ID of the checkout line."""
|
1799
|
-
id: ID
|
1800
|
-
): CheckoutLine @deprecated(reason: "This will be removed on April 30, 2025.")
|
1801
|
-
|
1802
1796
|
"""List of checkout lines."""
|
1803
1797
|
checkoutLines(
|
1804
1798
|
"""Return the elements in the list that come before the specified cursor."""
|
@@ -12487,7 +12481,7 @@ type Mutation {
|
|
12487
12481
|
description: String
|
12488
12482
|
|
12489
12483
|
"""
|
12490
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
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.
|
12491
12485
|
"""
|
12492
12486
|
file: Upload!
|
12493
12487
|
|
@@ -14878,12 +14872,6 @@ type Mutation {
|
|
14878
14872
|
input: ExportProductsInput!
|
14879
14873
|
): ProductsExport
|
14880
14874
|
|
14881
|
-
"""Import products with csv file."""
|
14882
|
-
productsImport(
|
14883
|
-
"""Represents a file in a multipart request."""
|
14884
|
-
file: Upload!
|
14885
|
-
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
14886
|
-
|
14887
14875
|
"""Adds a gift card or a voucher to a checkout."""
|
14888
14876
|
checkoutAddPromoCode(
|
14889
14877
|
"""Checkout ID."""
|
@@ -21564,33 +21552,6 @@ enum FileTypesEnum {
|
|
21564
21552
|
XLSX
|
21565
21553
|
}
|
21566
21554
|
|
21567
|
-
"""Import products with csv file."""
|
21568
|
-
type ProductsImport {
|
21569
|
-
"""The newly created import file which is responsible for import data."""
|
21570
|
-
importFile: ImportFile
|
21571
|
-
importErrors: [ImportError!]!
|
21572
|
-
}
|
21573
|
-
|
21574
|
-
type ImportError {
|
21575
|
-
"""
|
21576
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
21577
|
-
"""
|
21578
|
-
field: String
|
21579
|
-
|
21580
|
-
"""The error message."""
|
21581
|
-
message: String!
|
21582
|
-
|
21583
|
-
"""The error code."""
|
21584
|
-
code: ImportErrorCode!
|
21585
|
-
}
|
21586
|
-
|
21587
|
-
"""An enumeration."""
|
21588
|
-
enum ImportErrorCode {
|
21589
|
-
INVALID
|
21590
|
-
NOT_FOUND
|
21591
|
-
REQUIRED
|
21592
|
-
}
|
21593
|
-
|
21594
21555
|
"""Adds a gift card or a voucher to a checkout."""
|
21595
21556
|
type CheckoutAddPromoCode {
|
21596
21557
|
"""The checkout with the added gift card or voucher."""
|