@nautical-commerce/graphql-schema 1.81.0-21-g0f1d17b45 → 1.81.0-23-g6adef2cbd
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 +15 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2950,6 +2950,11 @@ type Product implements Node & ObjectWithMetadata {
|
|
2950
2950
|
|
2951
2951
|
"""Whether this product allows creating variants."""
|
2952
2952
|
hasVariantOptions: Boolean!
|
2953
|
+
|
2954
|
+
"""
|
2955
|
+
List of warnings for this product that needs to be resolved for publishing.
|
2956
|
+
"""
|
2957
|
+
warnings: [WarningMessageItem!]!
|
2953
2958
|
}
|
2954
2959
|
|
2955
2960
|
"""
|
@@ -4688,6 +4693,7 @@ input ProductFilterInput {
|
|
4688
4693
|
advancedSearch: ProductSearchInput
|
4689
4694
|
ids: [ID]
|
4690
4695
|
isStaff: Boolean
|
4696
|
+
hasWarnings: Boolean
|
4691
4697
|
metadata: MetadataFilterInput
|
4692
4698
|
privateMetadata: MetadataFilterInput
|
4693
4699
|
}
|
@@ -7823,6 +7829,14 @@ Should be used in places where value must be positive.
|
|
7823
7829
|
"""
|
7824
7830
|
scalar PositiveDecimal
|
7825
7831
|
|
7832
|
+
type WarningMessageItem {
|
7833
|
+
"""Code of the warning message."""
|
7834
|
+
code: String!
|
7835
|
+
|
7836
|
+
"""Warning Message."""
|
7837
|
+
message: String!
|
7838
|
+
}
|
7839
|
+
|
7826
7840
|
"""Represents availability of a variant in the storefront."""
|
7827
7841
|
type VariantPricingInfo {
|
7828
7842
|
"""Whether it is in sale or not."""
|
@@ -12112,7 +12126,7 @@ type Mutation {
|
|
12112
12126
|
description: String
|
12113
12127
|
|
12114
12128
|
"""
|
12115
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
12129
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/zip, text/comma-separated-values, image/heif-sequence, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/excel, image/x-dxf, application/dwg, application/x-rtf, image/eps, image/x-dwg, pplication/vnd.rar, image/tif, image/bmp, application/gzipped, image/vnd.dwg, application/acrobat, text/x-comma-separated-values, application/vnd.ms-powerpoint, image/x-eps, image/svg, drawing/dwg, text/csv, image/x-tiff, image/heic, image/dxf, image/svg+xml, drawing/x-dwg, text/x-pdf, application/postscript, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dxf, drawing/x-dwf, image/tiff, application/dxf, application/x-rar, application/x-csv, application/x-tif, application/jpg, text/pdf, application/tiff, application/acad, application/vnd.oasis.opendocument.text, application/svg+xml, text/svg-xml, application/vnd.ms-word, text/svg, image/x-bmp, application/msword, application/eps, application/vnd.oasis.opendocument.spreadsheet, application/vnd.oasis.opendocument.presentation, text/x-csv, application/vnd.ms-excel, image/webp, application/gzip, application/x-acad, image/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-ms-bmp, image/heif, application/x-autocad, application/csv, application/gzip-compressed, application/tif, application/x-zip-compressed, application/x-eps, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar-compressed, application/x-tar, image/jpeg, image/png, application/x-gzip, application/x-jpg, image/heic-sequence, application/vnd.pdf, text/plain, application/pdf, application/x-pdf, image/x-tif, application/x-tiff, text/rtf, image/gif.
|
12116
12130
|
"""
|
12117
12131
|
file: Upload!
|
12118
12132
|
|