@nautical-commerce/graphql-schema 1.88.0-1-g0e153cfe6 → 1.88.0-10-g9fb5f2e48
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 +83 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -7416,12 +7416,19 @@ scalar PositiveDecimal
|
|
7416
7416
|
|
7417
7417
|
type WarningMessageItem {
|
7418
7418
|
"""Code of the warning message."""
|
7419
|
-
code:
|
7419
|
+
code: ProductWarningEnum!
|
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
|
+
|
7425
7432
|
"""Represents availability of a variant in the storefront."""
|
7426
7433
|
type VariantPricingInfo {
|
7427
7434
|
"""Whether it is in sale or not."""
|
@@ -11355,7 +11362,7 @@ type Mutation {
|
|
11355
11362
|
description: String
|
11356
11363
|
|
11357
11364
|
"""
|
11358
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-tif, application/
|
11365
|
+
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/rtf, text/csv, image/x-tif, application/x-dwg, image/svg, application/x-tiff, application/vnd.oasis.opendocument.spreadsheet, text/comma-separated-values, application/gzip-compressed, application/postscript, application/csv, application/x-rar-compressed, application/jpg, application/x-zip-compressed, text/pdf, application/x-jpg, text/svg, pplication/vnd.rar, application/tif, application/pdf, text/rtf, application/vnd.pdf, application/vnd.oasis.opendocument.text, application/vnd.ms-excel, application/gzipped, image/tiff, application/x-csv, drawing/x-dwf, image/heic-sequence, image/vnd.dwg, application/zip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-gzip, image/tif, text/svg-xml, text/x-csv, application/svg+xml, application/msword, application/excel, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-bmp, application/eps, application/x-tar, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/dxf, application/acrobat, image/x-eps, application/x-autocad, drawing/dwg, image/bmp, application/tiff, text/x-pdf, application/x-eps, image/x-ms-bmp, image/heif, text/plain, application/gzip, text/x-comma-separated-values, image/png, application/dwg, image/heic, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rar, application/vnd.ms-powerpoint, image/svg+xml, image/eps, application/dxf, application/x-rtf, image/heif-sequence, drawing/x-dwg, image/jpeg, application/x-pdf, application/x-acad, image/gif, image/jpg, application/vnd.ms-word, application/x-dxf, application/x-tif, image/webp, image/x-dwg, image/x-tiff, image/x-dxf.
|
11359
11366
|
"""
|
11360
11367
|
file: Upload!
|
11361
11368
|
|
@@ -19825,22 +19832,95 @@ input ExportInfoInput {
|
|
19825
19832
|
}
|
19826
19833
|
|
19827
19834
|
enum ProductFieldEnum {
|
19835
|
+
"""ID"""
|
19836
|
+
ID
|
19837
|
+
|
19838
|
+
"""Name"""
|
19828
19839
|
NAME
|
19840
|
+
|
19841
|
+
"""Description"""
|
19829
19842
|
DESCRIPTION
|
19843
|
+
|
19844
|
+
"""Product type"""
|
19830
19845
|
PRODUCT_TYPE
|
19846
|
+
|
19847
|
+
"""Product template"""
|
19848
|
+
PRODUCT_TEMPLATE
|
19849
|
+
|
19850
|
+
"""Seller"""
|
19851
|
+
SELLER
|
19852
|
+
|
19853
|
+
"""Category"""
|
19831
19854
|
CATEGORY
|
19855
|
+
|
19856
|
+
"""Visible"""
|
19832
19857
|
VISIBLE
|
19858
|
+
|
19859
|
+
"""Available for purchase"""
|
19833
19860
|
AVAILABLE_FOR_PURCHASE
|
19861
|
+
|
19862
|
+
"""Searchable"""
|
19834
19863
|
SEARCHABLE
|
19864
|
+
|
19865
|
+
"""Product weight"""
|
19835
19866
|
PRODUCT_WEIGHT
|
19867
|
+
|
19868
|
+
"""Product dimensions"""
|
19869
|
+
PRODUCT_DIMENSIONS
|
19870
|
+
|
19871
|
+
"""Collections"""
|
19836
19872
|
COLLECTIONS
|
19873
|
+
|
19874
|
+
"""Charge taxes"""
|
19837
19875
|
CHARGE_TAXES
|
19876
|
+
|
19877
|
+
"""Product images"""
|
19838
19878
|
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"""
|
19839
19893
|
VARIANT_SKU
|
19894
|
+
|
19895
|
+
"""Variant price"""
|
19840
19896
|
VARIANT_PRICE
|
19841
|
-
|
19897
|
+
|
19898
|
+
"""Variant cost price"""
|
19899
|
+
VARIANT_COST_PRICE
|
19900
|
+
|
19901
|
+
"""Variant currency"""
|
19902
|
+
VARIANT_CURRENCY
|
19903
|
+
|
19904
|
+
"""Variant weight"""
|
19842
19905
|
VARIANT_WEIGHT
|
19906
|
+
|
19907
|
+
"""Variant dimensions"""
|
19908
|
+
VARIANT_DIMENSIONS
|
19909
|
+
|
19910
|
+
"""Variant images"""
|
19843
19911
|
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
|
19844
19924
|
}
|
19845
19925
|
|
19846
19926
|
enum FileTypesEnum {
|