@nautical-commerce/graphql-schema 1.78.0-50-g6d59deaf6 → 1.78.0-51-gd3ca99fb2
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 +29 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12717,7 +12717,7 @@ type Mutation {
|
|
12717
12717
|
description: String
|
12718
12718
|
|
12719
12719
|
"""
|
12720
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
12720
|
+
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-tiff, image/x-bmp, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heic, image/bmp, application/gzipped, application/tiff, application/eps, application/x-rtf, application/vnd.pdf, image/x-ms-bmp, application/rtf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/excel, image/x-dxf, application/gzip-compressed, application/csv, text/pdf, image/x-dwg, application/pdf, application/x-tif, image/heif-sequence, application/dwg, application/x-rar-compressed, text/comma-separated-values, application/x-eps, application/vnd.ms-excel, image/tiff, application/x-gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-pdf, application/acad, application/acrobat, image/svg+xml, image/gif, drawing/x-dwf, application/x-csv, pplication/vnd.rar, image/x-tiff, image/tif, application/svg+xml, text/rtf, application/x-jpg, image/heif, text/csv, image/eps, application/x-pdf, image/dxf, application/msword, image/jpeg, application/gzip, image/vnd.dwg, application/dxf, application/zip, image/webp, application/x-autocad, image/x-tif, text/svg-xml, application/x-dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tar, text/x-csv, text/plain, drawing/dwg, text/svg, application/x-rar, image/svg, application/x-dwg, drawing/x-dwg, image/x-eps, application/x-acad, text/x-comma-separated-values, application/postscript, application/jpg, application/vnd.ms-word, application/tif, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.text, application/x-zip-compressed, image/heic-sequence, image/png, application/vnd.oasis.opendocument.presentation.
|
12721
12721
|
"""
|
12722
12722
|
file: Upload!
|
12723
12723
|
|
@@ -14090,6 +14090,15 @@ type Mutation {
|
|
14090
14090
|
variantId: ID!
|
14091
14091
|
): ProductVariantImageUnassign
|
14092
14092
|
|
14093
|
+
"""Assign one or more images to a product variant."""
|
14094
|
+
productVariantImageBulkAssign(
|
14095
|
+
"""List of product images to assign to a variant."""
|
14096
|
+
input: [ProductVariantImageBulkAssignInput!]!
|
14097
|
+
|
14098
|
+
"""ID of a product variant."""
|
14099
|
+
variantId: ID!
|
14100
|
+
): ProductVariantImageBulkAssign
|
14101
|
+
|
14093
14102
|
"""Creates a new feature for either a product or a variant."""
|
14094
14103
|
featureCreate(
|
14095
14104
|
"""Fields required to create a feature"""
|
@@ -19771,6 +19780,25 @@ type ProductVariantImageUnassign {
|
|
19771
19780
|
productErrors: [ProductError!]!
|
19772
19781
|
}
|
19773
19782
|
|
19783
|
+
"""Assign one or more images to a product variant."""
|
19784
|
+
type ProductVariantImageBulkAssign {
|
19785
|
+
productVariant: ProductVariant
|
19786
|
+
|
19787
|
+
"""List of assigned images."""
|
19788
|
+
images: [ProductImage!]!
|
19789
|
+
bulkProductImageErrors: [BulkProductImageError!]!
|
19790
|
+
}
|
19791
|
+
|
19792
|
+
input ProductVariantImageBulkAssignInput {
|
19793
|
+
"""ID of a product image to assign to a variant."""
|
19794
|
+
imageId: ID!
|
19795
|
+
|
19796
|
+
"""
|
19797
|
+
Only for use by Marketplace Operator, if true then the image ownership will transfer to the seller that owns the variant it is being assigned to, if false or not provided then image ownership will not transfer.
|
19798
|
+
"""
|
19799
|
+
transferImageOwnership: Boolean
|
19800
|
+
}
|
19801
|
+
|
19774
19802
|
"""Creates a new feature for either a product or a variant."""
|
19775
19803
|
type FeatureCreate {
|
19776
19804
|
feature: Feature
|