@nautical-commerce/graphql-schema 1.85.0-22-g03d3ea050 → 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.
- package/nautical/schema.graphql +10 -10
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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:
|
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
|
|
@@ -21477,33 +21477,33 @@ input AttributeValueCreateInput {
|
|
21477
21477
|
value: String
|
21478
21478
|
|
21479
21479
|
"""Date and time representation of attribute value."""
|
21480
|
-
dateTime: DateTime
|
21480
|
+
dateTime: DateTime @deprecated(reason: "This will be removed on September 4, 2025.")
|
21481
21481
|
|
21482
21482
|
"""Supports attribute values with long text (plain text)."""
|
21483
|
-
plainText: String
|
21483
|
+
plainText: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21484
21484
|
|
21485
21485
|
"""Supports attribute values with long text (html)."""
|
21486
|
-
richText: String
|
21486
|
+
richText: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21487
21487
|
|
21488
21488
|
"""Numeric value to support money or numeric attribute values."""
|
21489
|
-
amount: Decimal
|
21489
|
+
amount: Decimal @deprecated(reason: "This will be removed on September 4, 2025.")
|
21490
21490
|
|
21491
21491
|
"""Currency to support money attribute values."""
|
21492
|
-
currency: String
|
21492
|
+
currency: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21493
21493
|
|
21494
21494
|
"""
|
21495
21495
|
Supports attribute values to reference any other nautical object (should be base64 ID)
|
21496
21496
|
"""
|
21497
|
-
reference: String
|
21497
|
+
reference: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21498
21498
|
|
21499
21499
|
"""Supports boolean attribute values."""
|
21500
|
-
boolean: Boolean
|
21500
|
+
boolean: Boolean @deprecated(reason: "This will be removed on September 4, 2025.")
|
21501
21501
|
|
21502
21502
|
"""Supports file type attribute values."""
|
21503
|
-
file: Upload
|
21503
|
+
file: Upload @deprecated(reason: "This will be removed on September 4, 2025.")
|
21504
21504
|
|
21505
21505
|
"""URL type to support external links as attribute values."""
|
21506
|
-
fileUrl: String
|
21506
|
+
fileUrl: String @deprecated(reason: "This will be removed on September 4, 2025.")
|
21507
21507
|
}
|
21508
21508
|
|
21509
21509
|
"""Deletes an attribute."""
|