@nautical-commerce/graphql-schema 1.86.0-18-g3cf3596fd → 1.86.0-19-g0d693626b
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 +12 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -11486,7 +11486,7 @@ type Mutation {
|
|
11486
11486
|
description: String
|
11487
11487
|
|
11488
11488
|
"""
|
11489
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11489
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/csv, text/x-pdf, application/x-autocad, application/dwg, image/svg+xml, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/zip, application/x-rar-compressed, application/x-rtf, application/x-tiff, image/heic, application/rtf, application/tif, image/heif-sequence, image/tif, application/x-pdf, application/gzip, text/svg-xml, text/plain, application/excel, application/x-rar, application/svg+xml, application/x-tar, application/msword, image/tiff, application/gzip-compressed, image/x-tif, application/csv, application/vnd.ms-excel, image/eps, image/x-bmp, image/svg, text/comma-separated-values, drawing/dwg, image/jpeg, image/x-eps, application/vnd.oasis.opendocument.text, application/pdf, application/x-eps, image/bmp, application/tiff, application/vnd.ms-word, text/x-csv, application/vnd.pdf, application/x-zip-compressed, text/rtf, image/dxf, image/heif, application/x-dxf, image/x-dwg, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/jpg, drawing/x-dwg, application/acrobat, application/eps, application/gzipped, application/x-tif, image/heic-sequence, application/x-dwg, application/x-csv, image/x-dxf, application/x-jpg, image/gif, image/webp, image/png, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.spreadsheet, text/svg, image/x-ms-bmp, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-gzip, application/dxf, application/acad, text/pdf, application/vnd.oasis.opendocument.presentation, application/vnd.ms-powerpoint, image/vnd.dwg, application/postscript, drawing/x-dwf, pplication/vnd.rar.
|
11490
11490
|
"""
|
11491
11491
|
file: Upload!
|
11492
11492
|
|
@@ -20416,6 +20416,9 @@ input AttributeUpdateInput {
|
|
20416
20416
|
"""Internal representation of an attribute name."""
|
20417
20417
|
slug: String
|
20418
20418
|
|
20419
|
+
"""Existing values to be updated for this attribute."""
|
20420
|
+
updateValues: [AttributeValueUpdateInput!]
|
20421
|
+
|
20419
20422
|
"""IDs of values to be removed from this attribute."""
|
20420
20423
|
removeValues: [ID!]
|
20421
20424
|
|
@@ -20454,6 +20457,14 @@ input AttributeUpdateInput {
|
|
20454
20457
|
isLocked: Boolean
|
20455
20458
|
}
|
20456
20459
|
|
20460
|
+
input AttributeValueUpdateInput {
|
20461
|
+
"""The ID of the attribute value to update."""
|
20462
|
+
id: ID!
|
20463
|
+
|
20464
|
+
"""Fields to update the attribute value with."""
|
20465
|
+
value: AttributeValueCreateInput!
|
20466
|
+
}
|
20467
|
+
|
20457
20468
|
"""Assign attributes to a given custom field template."""
|
20458
20469
|
type CustomAttributeAssign {
|
20459
20470
|
"""The updated custom field template."""
|