@nautical-commerce/graphql-schema 1.66.0-14-gdb0fe6596 → 1.66.0-15-g548fdd439
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 +8 -6
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2840,7 +2840,9 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2840
2840
|
id: ID!
|
2841
2841
|
createdAt: DateTime!
|
2842
2842
|
updatedAt: DateTime!
|
2843
|
-
|
2843
|
+
|
2844
|
+
"""Product model code"""
|
2845
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2844
2846
|
descriptionHtml: String!
|
2845
2847
|
externalId: String
|
2846
2848
|
externalSource: String
|
@@ -2894,7 +2896,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2894
2896
|
pricing: VariantPricingInfo
|
2895
2897
|
|
2896
2898
|
"""Whether this variant is visible on the buyer side or not"""
|
2897
|
-
isVisible: Boolean!
|
2899
|
+
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2898
2900
|
|
2899
2901
|
"""Product variant size info."""
|
2900
2902
|
size: VariantSize
|
@@ -13209,7 +13211,7 @@ type Mutation {
|
|
13209
13211
|
description: String
|
13210
13212
|
|
13211
13213
|
"""
|
13212
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13214
|
+
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/vnd.ms-excel, application/pdf, text/x-pdf, application/x-gzip, drawing/dwg, application/zip, image/vnd.dwg, application/postscript, image/bmp, image/dxf, application/msword, application/x-tar, image/tiff, application/x-rar-compressed, application/vnd.oasis.opendocument.spreadsheet, text/pdf, image/x-bmp, drawing/x-dwg, image/svg, application/vnd.oasis.opendocument.text, application/vnd.pdf, application/jpg, application/x-tif, image/svg+xml, image/webp, application/svg+xml, image/heif, text/x-csv, image/eps, text/svg-xml, application/x-zip-compressed, application/dwg, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, drawing/x-dwf, text/plain, image/png, application/x-tiff, image/x-tif, application/gzipped, application/dxf, application/gzip, application/vnd.ms-word, application/rtf, application/acrobat, text/comma-separated-values, application/tiff, application/x-dwg, application/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, application/x-acad, text/x-comma-separated-values, image/x-eps, application/excel, application/x-csv, text/svg, image/heic-sequence, application/gzip-compressed, application/tif, image/jpeg, application/x-dxf, application/eps, image/x-dwg, image/x-tiff, text/rtf, application/vnd.ms-powerpoint, image/heic, application/x-autocad, image/x-dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-eps, application/x-jpg, application/acad, image/x-ms-bmp, text/csv, pplication/vnd.rar, image/gif, image/tif, application/x-pdf, image/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar.
|
13213
13215
|
"""
|
13214
13216
|
file: Upload!
|
13215
13217
|
|
@@ -19767,7 +19769,7 @@ input ProductVariantCreateInput {
|
|
19767
19769
|
costPrice: PositiveDecimal
|
19768
19770
|
|
19769
19771
|
"""Description of the product variant."""
|
19770
|
-
description: String
|
19772
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19771
19773
|
|
19772
19774
|
"""Product variant description (HTML)."""
|
19773
19775
|
descriptionHtml: String
|
@@ -19908,7 +19910,7 @@ input ProductVariantBulkCreateInput {
|
|
19908
19910
|
costPrice: PositiveDecimal
|
19909
19911
|
|
19910
19912
|
"""Description of the product variant."""
|
19911
|
-
description: String
|
19913
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19912
19914
|
|
19913
19915
|
"""Product variant description (HTML)."""
|
19914
19916
|
descriptionHtml: String
|
@@ -20087,7 +20089,7 @@ input ProductVariantInput {
|
|
20087
20089
|
costPrice: PositiveDecimal
|
20088
20090
|
|
20089
20091
|
"""Description of the product variant."""
|
20090
|
-
description: String
|
20092
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20091
20093
|
|
20092
20094
|
"""Product variant description (HTML)."""
|
20093
20095
|
descriptionHtml: String
|