@nautical-commerce/graphql-schema 1.67.0-17-g9106f45e2 → 1.67.0-18-g1cd28caa0
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 +10 -8
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2840,10 +2840,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2840
2840
|
id: ID!
|
2841
2841
|
createdAt: DateTime!
|
2842
2842
|
updatedAt: DateTime!
|
2843
|
-
|
2844
|
-
"""Product model code"""
|
2845
|
-
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2846
|
-
descriptionHtml: String!
|
2847
2843
|
externalId: String
|
2848
2844
|
externalSource: String
|
2849
2845
|
seoTitle: String
|
@@ -2897,6 +2893,12 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2897
2893
|
"""Whether this variant is visible on the buyer side or not"""
|
2898
2894
|
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2899
2895
|
|
2896
|
+
"""Product description"""
|
2897
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2898
|
+
|
2899
|
+
"""Product description HTML"""
|
2900
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2901
|
+
|
2900
2902
|
"""Product variant size info."""
|
2901
2903
|
size: VariantSize @deprecated(reason: "This will be removed on April 17, 2025.")
|
2902
2904
|
|
@@ -13202,7 +13204,7 @@ type Mutation {
|
|
13202
13204
|
description: String
|
13203
13205
|
|
13204
13206
|
"""
|
13205
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13207
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/bmp, image/gif, drawing/x-dwg, application/vnd.pdf, application/eps, text/rtf, image/webp, image/heif-sequence, image/heif, image/vnd.dwg, application/vnd.oasis.opendocument.presentation, application/postscript, application/x-dwg, application/x-autocad, application/msword, image/x-dwg, image/heic-sequence, application/x-tiff, image/jpg, image/x-tiff, text/x-comma-separated-values, application/gzipped, image/svg, application/vnd.oasis.opendocument.text, image/tif, pplication/vnd.rar, application/jpg, application/vnd.ms-powerpoint, image/x-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/gzip-compressed, application/x-tif, image/jpeg, application/x-rtf, image/x-ms-bmp, application/x-jpg, image/svg+xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/gzip, application/x-gzip, application/x-eps, application/zip, image/tiff, application/x-tar, application/tif, application/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/acad, application/x-csv, image/x-tif, application/tiff, text/pdf, application/excel, image/eps, text/x-pdf, application/dxf, application/x-pdf, application/svg+xml, application/acrobat, text/csv, application/vnd.ms-word, application/csv, text/plain, text/svg-xml, image/x-dxf, text/svg, application/x-rar, drawing/dwg, image/x-eps, image/heic, text/x-csv, image/png, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.spreadsheet, application/dwg, application/pdf, application/x-rar-compressed, application/x-acad, text/comma-separated-values, application/x-zip-compressed, image/dxf, application/rtf, drawing/x-dwf, application/vnd.ms-excel.
|
13206
13208
|
"""
|
13207
13209
|
file: Upload!
|
13208
13210
|
|
@@ -19763,7 +19765,7 @@ input ProductVariantCreateInput {
|
|
19763
19765
|
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19764
19766
|
|
19765
19767
|
"""Product variant description (HTML)."""
|
19766
|
-
descriptionHtml: String
|
19768
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19767
19769
|
|
19768
19770
|
"""Price of the particular variant."""
|
19769
19771
|
price: PositiveDecimal
|
@@ -19904,7 +19906,7 @@ input ProductVariantBulkCreateInput {
|
|
19904
19906
|
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19905
19907
|
|
19906
19908
|
"""Product variant description (HTML)."""
|
19907
|
-
descriptionHtml: String
|
19909
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19908
19910
|
|
19909
19911
|
"""Price of the particular variant."""
|
19910
19912
|
price: PositiveDecimal
|
@@ -20083,7 +20085,7 @@ input ProductVariantInput {
|
|
20083
20085
|
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20084
20086
|
|
20085
20087
|
"""Product variant description (HTML)."""
|
20086
|
-
descriptionHtml: String
|
20088
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20087
20089
|
|
20088
20090
|
"""Price of the particular variant."""
|
20089
20091
|
price: PositiveDecimal
|