@nautical-commerce/graphql-schema 1.66.0-14-gdb0fe6596 → 1.66.0-16-g339132753

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.
@@ -2840,7 +2840,9 @@ type ProductVariant implements Node & ObjectWithMetadata {
2840
2840
  id: ID!
2841
2841
  createdAt: DateTime!
2842
2842
  updatedAt: DateTime!
2843
- description: String!
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: image/tif, application/x-jpg, image/x-ms-bmp, image/dxf, application/gzip, text/x-comma-separated-values, image/x-bmp, image/webp, application/jpg, application/x-acad, application/svg+xml, image/svg, application/x-tif, application/dwg, image/x-tiff, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rtf, drawing/x-dwg, application/excel, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tar, application/vnd.oasis.opendocument.text, application/vnd.ms-word, image/x-dwg, application/rtf, application/x-pdf, image/vnd.dwg, application/vnd.ms-excel, application/zip, application/eps, application/acad, text/rtf, image/x-dxf, application/csv, application/x-dxf, application/gzipped, image/eps, image/gif, text/x-csv, application/x-csv, text/pdf, image/svg+xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/tiff, application/gzip-compressed, text/svg-xml, image/jpg, image/heic, application/msword, application/x-tiff, text/x-pdf, application/x-eps, image/heif-sequence, text/plain, drawing/dwg, application/x-zip-compressed, application/tiff, drawing/x-dwf, application/x-rar, image/jpeg, pplication/vnd.rar, text/svg, image/heif, image/bmp, application/pdf, image/x-tif, text/comma-separated-values, application/x-rar-compressed, application/vnd.oasis.opendocument.spreadsheet, text/csv, application/vnd.pdf, application/vnd.oasis.opendocument.presentation, application/x-gzip, application/acrobat, application/postscript, application/dxf, image/x-eps, application/vnd.ms-powerpoint, application/x-dwg, image/png, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heic-sequence, application/tif.
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/x-pdf, application/x-gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, drawing/dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.presentation, application/x-dxf, image/jpeg, application/x-autocad, application/x-rtf, image/vnd.dwg, text/comma-separated-values, application/tiff, application/eps, application/acrobat, application/zip, text/csv, application/postscript, application/acad, text/svg, image/x-dxf, image/x-ms-bmp, application/x-tiff, application/vnd.oasis.opendocument.spreadsheet, text/plain, application/x-rar, image/x-eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.pdf, application/vnd.oasis.opendocument.text, application/x-eps, text/x-comma-separated-values, application/msword, application/jpg, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/excel, image/heif, application/csv, text/pdf, application/pdf, image/svg, image/bmp, application/x-rar-compressed, text/svg-xml, application/x-tif, image/svg+xml, application/rtf, application/tif, image/x-bmp, image/jpg, drawing/x-dwg, text/x-csv, image/x-dwg, drawing/x-dwf, image/eps, application/gzip-compressed, image/x-tif, application/x-jpg, application/dwg, application/vnd.ms-powerpoint, application/x-acad, image/heic, application/vnd.ms-word, application/gzip, text/x-pdf, application/x-csv, image/tif, image/dxf, image/heif-sequence, application/x-zip-compressed, image/gif, application/dxf, application/svg+xml, application/x-dwg, image/webp, application/x-tar, image/png, application/gzipped, application/vnd.ms-excel, image/x-tiff, image/heic-sequence, image/tiff, text/rtf.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.66.0-14-gdb0fe6596",
3
+ "version": "v1.66.0-16-g339132753",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {