@nautical-commerce/graphql-schema 1.66.0-13-g315365dcc → 1.66.0-14-gdb0fe6596

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.
@@ -2995,16 +2995,16 @@ type Product implements Node & ObjectWithMetadata {
2995
2995
  seller: Seller
2996
2996
 
2997
2997
  """Manufacturer Product Number"""
2998
- mpn: String
2998
+ mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
2999
2999
 
3000
3000
  """Brand of the product"""
3001
- brand: String
3001
+ brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3002
3002
 
3003
3003
  """Manufacturer of the product"""
3004
- manufacturer: String
3004
+ manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3005
3005
 
3006
3006
  """Product model code"""
3007
- model: String
3007
+ model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
3008
3008
  seoTitle: String
3009
3009
  seoDescription: String
3010
3010
  productType: ProductType
@@ -3133,7 +3133,7 @@ type Product implements Node & ObjectWithMetadata {
3133
3133
  """
3134
3134
  The product's sorting priority weight in query results. A larger value indicates a higher priority. This field can be used in both ascending and descending sorting methods.
3135
3135
  """
3136
- sortPriorityWeight: Decimal
3136
+ sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
3137
3137
 
3138
3138
  """List of logs for product status changes."""
3139
3139
  productStatusLogs: [ProductStatusLog!]
@@ -13209,7 +13209,7 @@ type Mutation {
13209
13209
  description: String
13210
13210
 
13211
13211
  """
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/svg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/postscript, text/x-csv, application/csv, image/svg+xml, application/x-rar-compressed, text/svg, application/x-tif, application/rtf, application/x-jpg, image/heic, application/tif, text/csv, application/vnd.oasis.opendocument.presentation, application/vnd.oasis.opendocument.text, pplication/vnd.rar, application/zip, image/tiff, application/acad, application/vnd.ms-excel, image/x-eps, application/pdf, image/vnd.dwg, image/x-bmp, text/svg-xml, image/gif, drawing/x-dwg, image/heif, image/eps, image/x-dwg, application/jpg, image/x-dxf, application/x-zip-compressed, application/vnd.ms-word, application/x-eps, application/x-dxf, application/x-rtf, application/msword, application/eps, text/pdf, application/acrobat, application/dwg, image/jpeg, image/x-tiff, image/jpg, application/gzip-compressed, text/x-comma-separated-values, image/bmp, image/png, application/x-tar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/comma-separated-values, application/x-rar, text/rtf, image/dxf, application/vnd.pdf, application/x-csv, image/heif-sequence, application/x-gzip, drawing/x-dwf, application/vnd.ms-powerpoint, application/excel, application/gzipped, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/plain, drawing/dwg, application/x-acad, application/gzip, image/x-ms-bmp, image/heic-sequence, image/tif, application/x-autocad, application/x-dwg, text/x-pdf, image/x-tif, application/x-tiff, application/svg+xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dxf, application/x-pdf, application/tiff, application/vnd.oasis.opendocument.spreadsheet, image/webp.
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.
13213
13213
  """
13214
13214
  file: Upload!
13215
13215
 
@@ -19244,16 +19244,16 @@ input ProductCreateInput {
19244
19244
  visibleInListings: Boolean
19245
19245
 
19246
19246
  """Manufacturer product number"""
19247
- mpn: String
19247
+ mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19248
19248
 
19249
19249
  """Product brand"""
19250
- brand: String
19250
+ brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19251
19251
 
19252
19252
  """Manufacturer of the product"""
19253
- manufacturer: String
19253
+ manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19254
19254
 
19255
19255
  """Product model code"""
19256
- model: String
19256
+ model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19257
19257
 
19258
19258
  """Override price for grouped products"""
19259
19259
  overridePrice: Boolean
@@ -19270,7 +19270,7 @@ input ProductCreateInput {
19270
19270
  subStatusReason: String
19271
19271
 
19272
19272
  """Sort priority for product"""
19273
- sortPriorityWeight: Decimal
19273
+ sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
19274
19274
 
19275
19275
  """
19276
19276
  Set whether this product requires shipping by default, will be overridden by product type if provided
@@ -19460,16 +19460,16 @@ input ProductInput {
19460
19460
  visibleInListings: Boolean
19461
19461
 
19462
19462
  """Manufacturer product number"""
19463
- mpn: String
19463
+ mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19464
19464
 
19465
19465
  """Product brand"""
19466
- brand: String
19466
+ brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19467
19467
 
19468
19468
  """Manufacturer of the product"""
19469
- manufacturer: String
19469
+ manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19470
19470
 
19471
19471
  """Product model code"""
19472
- model: String
19472
+ model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
19473
19473
 
19474
19474
  """Override price for grouped products"""
19475
19475
  overridePrice: Boolean
@@ -19486,7 +19486,7 @@ input ProductInput {
19486
19486
  subStatusReason: String
19487
19487
 
19488
19488
  """Sort priority for product"""
19489
- sortPriorityWeight: Decimal
19489
+ sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
19490
19490
 
19491
19491
  """
19492
19492
  Set whether this product requires shipping by default, will be overridden by product type if provided
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.66.0-13-g315365dcc",
3
+ "version": "v1.66.0-14-gdb0fe6596",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {