@nautical-commerce/graphql-schema 1.88.0-26-g262fbc9f3 → 1.88.0-4-g4e1f3d5ad
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 +4 -23
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -7416,19 +7416,12 @@ scalar PositiveDecimal
|
|
7416
7416
|
|
7417
7417
|
type WarningMessageItem {
|
7418
7418
|
"""Code of the warning message."""
|
7419
|
-
code:
|
7419
|
+
code: String!
|
7420
7420
|
|
7421
7421
|
"""Warning message."""
|
7422
7422
|
message: String!
|
7423
7423
|
}
|
7424
7424
|
|
7425
|
-
enum ProductWarningEnum {
|
7426
|
-
CATEGORY_REQUIRED
|
7427
|
-
PRODUCT_ATTRIBUTE_VALUE_REQUIRED
|
7428
|
-
VARIANT_ATTRIBUTE_VALUE_REQUIRED
|
7429
|
-
DEFAULT_VARIANT_REQUIRED
|
7430
|
-
}
|
7431
|
-
|
7432
7425
|
"""Represents availability of a variant in the storefront."""
|
7433
7426
|
type VariantPricingInfo {
|
7434
7427
|
"""Whether it is in sale or not."""
|
@@ -11362,7 +11355,7 @@ type Mutation {
|
|
11362
11355
|
description: String
|
11363
11356
|
|
11364
11357
|
"""
|
11365
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11358
|
+
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.presentation, application/tiff, application/x-acad, text/rtf, application/postscript, image/x-dxf, drawing/x-dwf, image/webp, application/dxf, text/x-csv, application/gzip-compressed, image/x-eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/svg+xml, image/eps, application/dwg, drawing/dwg, application/eps, image/vnd.dwg, application/x-rtf, text/pdf, image/svg, application/csv, application/x-dxf, application/vnd.ms-excel, image/x-dwg, pplication/vnd.rar, application/vnd.oasis.opendocument.spreadsheet, text/csv, application/x-gzip, application/x-dwg, image/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/x-comma-separated-values, image/heif, text/svg-xml, image/heic, application/msword, application/vnd.oasis.opendocument.text, image/heif-sequence, application/excel, image/x-tif, image/heic-sequence, image/dxf, application/jpg, application/x-jpg, application/x-tiff, text/svg, image/x-ms-bmp, image/tif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/bmp, application/x-autocad, image/jpeg, application/gzipped, drawing/x-dwg, application/x-csv, application/x-eps, application/acrobat, image/tiff, image/x-bmp, text/x-pdf, image/jpg, image/svg+xml, application/vnd.pdf, application/x-rar, application/x-pdf, application/gzip, application/x-rar-compressed, application/x-tif, text/comma-separated-values, application/tif, application/rtf, application/vnd.ms-word, image/png, application/vnd.ms-powerpoint, image/gif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/plain, application/x-tar, application/zip, application/x-zip-compressed, application/pdf, application/acad.
|
11366
11359
|
"""
|
11367
11360
|
file: Upload!
|
11368
11361
|
|
@@ -13337,9 +13330,9 @@ type Mutation {
|
|
13337
13330
|
"""Request an invoice for the order using plugin."""
|
13338
13331
|
invoiceRequest(
|
13339
13332
|
"""
|
13340
|
-
Document type (for order requests): 1) Invoice, 2) Packing Slip, 4) Pre-forma-invoice
|
13333
|
+
Document type (for order requests): 1) Invoice, 2) Packing Slip, 3) Purchase order, 4) Pre-forma-invoice.
|
13341
13334
|
"""
|
13342
|
-
documentType: Int
|
13335
|
+
documentType: Int @deprecated(reason: "Purchase order document type will be removed on 25 June, 2025.")
|
13343
13336
|
|
13344
13337
|
"""Invoice number, if not provided it will be generated."""
|
13345
13338
|
number: String
|
@@ -19909,18 +19902,6 @@ enum ProductFieldEnum {
|
|
19909
19902
|
|
19910
19903
|
"""Variant images"""
|
19911
19904
|
VARIANT_IMAGES
|
19912
|
-
|
19913
|
-
"""Product attributes"""
|
19914
|
-
PRODUCT_ATTRIBUTES
|
19915
|
-
|
19916
|
-
"""Product custom fields"""
|
19917
|
-
PRODUCT_CUSTOM_FIELDS
|
19918
|
-
|
19919
|
-
"""Variant attributes"""
|
19920
|
-
VARIANT_ATTRIBUTES
|
19921
|
-
|
19922
|
-
"""Variant custom fields"""
|
19923
|
-
VARIANT_CUSTOM_FIELDS
|
19924
19905
|
}
|
19925
19906
|
|
19926
19907
|
enum FileTypesEnum {
|