@nautical-commerce/graphql-schema 1.70.0-13-gfcf3b9613 → 1.70.0-14-g0610b7fc1
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 +8 -2
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -13125,7 +13125,7 @@ type Mutation {
|
|
13125
13125
|
description: String
|
13126
13126
|
|
13127
13127
|
"""
|
13128
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13128
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/acrobat, application/excel, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tar, application/gzip-compressed, text/comma-separated-values, image/tiff, image/svg, application/x-jpg, image/vnd.dwg, application/postscript, application/tiff, image/heif, application/x-zip-compressed, image/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, image/heic-sequence, image/jpg, application/vnd.oasis.opendocument.presentation, image/heic, application/x-csv, image/x-dwg, application/x-tiff, application/x-pdf, application/x-tif, text/svg-xml, text/rtf, text/pdf, application/svg+xml, image/eps, image/svg+xml, application/x-dwg, application/x-rar, text/plain, image/x-bmp, application/csv, drawing/dwg, image/heif-sequence, text/x-pdf, application/dxf, application/x-acad, pplication/vnd.rar, application/x-autocad, application/vnd.ms-powerpoint, image/jpeg, application/vnd.ms-word, application/x-gzip, application/vnd.oasis.opendocument.spreadsheet, image/png, application/jpg, text/csv, application/gzip, application/x-eps, application/vnd.ms-excel, text/x-comma-separated-values, application/eps, image/bmp, image/x-tif, image/tif, application/zip, application/vnd.pdf, image/x-dxf, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dxf, drawing/x-dwg, image/gif, drawing/x-dwf, application/vnd.oasis.opendocument.text, text/x-csv, application/x-rtf, image/x-ms-bmp, application/dwg, image/webp, text/svg, application/gzipped, application/acad, application/tif, application/msword, image/dxf.
|
13129
13129
|
"""
|
13130
13130
|
file: Upload!
|
13131
13131
|
|
@@ -15778,8 +15778,11 @@ type Mutation {
|
|
15778
15778
|
"""The IDs of the attributes to assign."""
|
15779
15779
|
attributeIds: [ID!]!
|
15780
15780
|
|
15781
|
+
"""ID of the product to which the attribute will be assigned."""
|
15782
|
+
productId: ID
|
15783
|
+
|
15781
15784
|
"""ID of the product type to assign the attributes into."""
|
15782
|
-
productTypeId: ID
|
15785
|
+
productTypeId: ID
|
15783
15786
|
): AttributeUnassign
|
15784
15787
|
|
15785
15788
|
"""Updates attribute."""
|
@@ -22747,6 +22750,9 @@ input AttributeAssignInput {
|
|
22747
22750
|
type AttributeUnassign {
|
22748
22751
|
"""The updated product type."""
|
22749
22752
|
productType: ProductType
|
22753
|
+
|
22754
|
+
"""The product to which the attribute was assigned."""
|
22755
|
+
product: Product
|
22750
22756
|
productErrors: [ProductError!]!
|
22751
22757
|
}
|
22752
22758
|
|