@nautical-commerce/graphql-schema 1.85.0-21-g6f9f99677 → 1.85.0-23-g3c7d3334d

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.
@@ -12197,7 +12197,7 @@ type Mutation {
12197
12197
  description: String
12198
12198
 
12199
12199
  """
12200
- 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-dwg, application/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/x-pdf, application/gzip, image/dxf, drawing/dwg, application/x-gzip, application/vnd.ms-word, image/x-tiff, image/x-eps, image/png, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-rar-compressed, application/vnd.ms-powerpoint, application/x-rtf, image/x-ms-bmp, image/x-bmp, application/x-csv, application/x-tiff, image/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/excel, text/pdf, text/svg-xml, text/csv, image/svg, application/vnd.oasis.opendocument.spreadsheet, image/eps, application/x-eps, application/jpg, text/rtf, image/tif, image/heic-sequence, application/eps, application/x-jpg, application/vnd.oasis.opendocument.presentation, image/webp, application/tiff, text/x-comma-separated-values, image/x-dxf, application/msword, application/dwg, application/acad, image/vnd.dwg, application/x-zip-compressed, image/jpeg, image/heic, application/x-tar, application/x-dxf, application/x-rar, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-pdf, application/acrobat, image/svg+xml, image/x-dwg, application/tif, drawing/x-dwf, application/zip, image/x-tif, application/vnd.pdf, application/x-acad, image/bmp, text/comma-separated-values, text/svg, image/heif, application/gzipped, application/gzip-compressed, image/heif-sequence, image/gif, image/tiff, text/x-csv, application/postscript, application/vnd.oasis.opendocument.text, application/svg+xml, pplication/vnd.rar, application/vnd.ms-excel, application/x-tif, application/rtf, application/dxf, application/pdf, drawing/x-dwg, text/plain.
12200
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/pdf, application/excel, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.presentation, application/x-tiff, image/heic-sequence, application/vnd.oasis.opendocument.spreadsheet, image/jpg, image/png, image/heic, application/dwg, text/svg-xml, application/x-tif, image/webp, image/jpeg, drawing/x-dwg, application/x-gzip, application/x-rar-compressed, application/x-dxf, application/x-zip-compressed, application/acad, application/x-eps, application/gzip, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/dxf, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/jpg, application/svg+xml, application/zip, application/x-tar, text/x-pdf, application/vnd.oasis.opendocument.text, application/gzipped, application/x-autocad, application/vnd.ms-excel, application/vnd.pdf, application/tif, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/tiff, application/tiff, text/x-csv, image/svg, application/x-csv, text/rtf, image/heif-sequence, drawing/x-dwf, image/gif, application/rtf, image/x-dxf, text/csv, image/tif, image/eps, image/x-dwg, image/svg+xml, image/x-bmp, application/vnd.ms-word, application/x-rtf, application/x-rar, text/plain, text/svg, application/gzip-compressed, application/x-pdf, image/x-tiff, drawing/dwg, application/acrobat, text/x-comma-separated-values, image/heif, application/dxf, application/csv, application/msword, application/eps, pplication/vnd.rar, image/x-eps, image/x-tif, application/pdf, image/vnd.dwg, image/bmp, application/vnd.ms-powerpoint, application/x-jpg, text/comma-separated-values, image/x-ms-bmp, application/x-acad.
12201
12201
  """
12202
12202
  file: Upload!
12203
12203
 
@@ -17789,6 +17789,7 @@ enum ProductErrorCode {
17789
17789
  ATTRIBUTE_ALREADY_ASSIGNED
17790
17790
  ATTRIBUTE_CANNOT_BE_ASSIGNED
17791
17791
  ATTRIBUTE_VARIANTS_DISABLED
17792
+ ATTRIBUTE_VALUE_CANNOT_BE_CREATED
17792
17793
  DUPLICATED_INPUT_ITEM
17793
17794
  GRAPHQL_ERROR
17794
17795
  INVALID
@@ -21476,33 +21477,33 @@ input AttributeValueCreateInput {
21476
21477
  value: String
21477
21478
 
21478
21479
  """Date and time representation of attribute value."""
21479
- dateTime: DateTime
21480
+ dateTime: DateTime @deprecated(reason: "This will be removed on September 4, 2025.")
21480
21481
 
21481
21482
  """Supports attribute values with long text (plain text)."""
21482
- plainText: String
21483
+ plainText: String @deprecated(reason: "This will be removed on September 4, 2025.")
21483
21484
 
21484
21485
  """Supports attribute values with long text (html)."""
21485
- richText: String
21486
+ richText: String @deprecated(reason: "This will be removed on September 4, 2025.")
21486
21487
 
21487
21488
  """Numeric value to support money or numeric attribute values."""
21488
- amount: Decimal
21489
+ amount: Decimal @deprecated(reason: "This will be removed on September 4, 2025.")
21489
21490
 
21490
21491
  """Currency to support money attribute values."""
21491
- currency: String
21492
+ currency: String @deprecated(reason: "This will be removed on September 4, 2025.")
21492
21493
 
21493
21494
  """
21494
21495
  Supports attribute values to reference any other nautical object (should be base64 ID)
21495
21496
  """
21496
- reference: String
21497
+ reference: String @deprecated(reason: "This will be removed on September 4, 2025.")
21497
21498
 
21498
21499
  """Supports boolean attribute values."""
21499
- boolean: Boolean
21500
+ boolean: Boolean @deprecated(reason: "This will be removed on September 4, 2025.")
21500
21501
 
21501
21502
  """Supports file type attribute values."""
21502
- file: Upload
21503
+ file: Upload @deprecated(reason: "This will be removed on September 4, 2025.")
21503
21504
 
21504
21505
  """URL type to support external links as attribute values."""
21505
- fileUrl: String
21506
+ fileUrl: String @deprecated(reason: "This will be removed on September 4, 2025.")
21506
21507
  }
21507
21508
 
21508
21509
  """Deletes an attribute."""
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.85.0-21-g6f9f99677",
3
+ "version": "v1.85.0-23-g3c7d3334d",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {