@nautical-commerce/graphql-schema 1.88.0-26-g262fbc9f3 → 1.88.0-3-g03b552cc1
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 +5 -85
- 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/gzip-compressed, application/dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.pdf, application/postscript, application/x-tar, application/x-zip-compressed, application/jpg, application/tiff, image/heif-sequence, application/x-eps, text/x-csv, application/csv, application/msword, drawing/x-dwf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-jpg, application/rtf, image/jpeg, text/rtf, application/x-acad, text/svg, application/dwg, image/eps, text/x-comma-separated-values, image/heif, application/acrobat, application/x-csv, image/dxf, application/x-rtf, application/x-gzip, image/x-dxf, application/tif, text/svg-xml, text/comma-separated-values, application/x-dwg, text/pdf, application/pdf, application/x-dxf, image/x-tiff, image/x-tif, application/gzipped, image/webp, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/png, application/zip, pplication/vnd.rar, application/gzip, drawing/x-dwg, application/vnd.ms-powerpoint, image/bmp, application/x-tif, text/csv, drawing/dwg, image/heic, image/x-bmp, image/gif, application/x-tiff, image/x-ms-bmp, image/svg+xml, application/x-autocad, image/jpg, text/x-pdf, application/x-rar, application/vnd.oasis.opendocument.presentation, application/vnd.oasis.opendocument.spreadsheet, image/x-eps, image/tif, application/svg+xml, application/excel, image/heic-sequence, application/vnd.ms-word, application/eps, application/x-rar-compressed, text/plain, image/svg, application/x-pdf, application/vnd.ms-excel, application/vnd.oasis.opendocument.text, image/vnd.dwg, image/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-dwg, 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
|
@@ -19832,95 +19825,22 @@ input ExportInfoInput {
|
|
19832
19825
|
}
|
19833
19826
|
|
19834
19827
|
enum ProductFieldEnum {
|
19835
|
-
"""ID"""
|
19836
|
-
ID
|
19837
|
-
|
19838
|
-
"""Name"""
|
19839
19828
|
NAME
|
19840
|
-
|
19841
|
-
"""Description"""
|
19842
19829
|
DESCRIPTION
|
19843
|
-
|
19844
|
-
"""Product type"""
|
19845
19830
|
PRODUCT_TYPE
|
19846
|
-
|
19847
|
-
"""Product template"""
|
19848
|
-
PRODUCT_TEMPLATE
|
19849
|
-
|
19850
|
-
"""Seller"""
|
19851
|
-
SELLER
|
19852
|
-
|
19853
|
-
"""Category"""
|
19854
19831
|
CATEGORY
|
19855
|
-
|
19856
|
-
"""Visible"""
|
19857
19832
|
VISIBLE
|
19858
|
-
|
19859
|
-
"""Available for purchase"""
|
19860
19833
|
AVAILABLE_FOR_PURCHASE
|
19861
|
-
|
19862
|
-
"""Searchable"""
|
19863
19834
|
SEARCHABLE
|
19864
|
-
|
19865
|
-
"""Product weight"""
|
19866
19835
|
PRODUCT_WEIGHT
|
19867
|
-
|
19868
|
-
"""Product dimensions"""
|
19869
|
-
PRODUCT_DIMENSIONS
|
19870
|
-
|
19871
|
-
"""Collections"""
|
19872
19836
|
COLLECTIONS
|
19873
|
-
|
19874
|
-
"""Charge taxes"""
|
19875
19837
|
CHARGE_TAXES
|
19876
|
-
|
19877
|
-
"""Product images"""
|
19878
19838
|
PRODUCT_IMAGES
|
19879
|
-
|
19880
|
-
"""URL handle"""
|
19881
|
-
URL_HANDLE
|
19882
|
-
|
19883
|
-
"""SEO title"""
|
19884
|
-
SEO_TITLE
|
19885
|
-
|
19886
|
-
"""SEO description"""
|
19887
|
-
SEO_DESCRIPTION
|
19888
|
-
|
19889
|
-
"""Variant name"""
|
19890
|
-
VARIANT_NAME
|
19891
|
-
|
19892
|
-
"""Variant SKU"""
|
19893
19839
|
VARIANT_SKU
|
19894
|
-
|
19895
|
-
"""Variant price"""
|
19896
19840
|
VARIANT_PRICE
|
19897
|
-
|
19898
|
-
"""Variant cost price"""
|
19899
|
-
VARIANT_COST_PRICE
|
19900
|
-
|
19901
|
-
"""Variant currency"""
|
19902
|
-
VARIANT_CURRENCY
|
19903
|
-
|
19904
|
-
"""Variant weight"""
|
19841
|
+
COST_PRICE
|
19905
19842
|
VARIANT_WEIGHT
|
19906
|
-
|
19907
|
-
"""Variant dimensions"""
|
19908
|
-
VARIANT_DIMENSIONS
|
19909
|
-
|
19910
|
-
"""Variant images"""
|
19911
19843
|
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
19844
|
}
|
19925
19845
|
|
19926
19846
|
enum FileTypesEnum {
|