@nautical-commerce/graphql-schema 1.78.0-50-g6d59deaf6 → 1.78.0-52-gf8faba1cf
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 -29
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2890,15 +2890,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2890
2890
|
"""
|
2891
2891
|
pricing: VariantPricingInfo
|
2892
2892
|
|
2893
|
-
"""Whether this variant is visible on the buyer side or not"""
|
2894
|
-
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2895
|
-
|
2896
|
-
"""Product description"""
|
2897
|
-
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2898
|
-
|
2899
|
-
"""Product description HTML"""
|
2900
|
-
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2901
|
-
|
2902
2893
|
"""Product variant size info."""
|
2903
2894
|
size: VariantSize @deprecated(reason: "This will be removed on April 17, 2025.")
|
2904
2895
|
|
@@ -5273,7 +5264,6 @@ enum ProductVariantSearchFieldEnum {
|
|
5273
5264
|
VARIANT_ATTRIBUTE_NAME
|
5274
5265
|
VARIANT_ATTRIBUTE_VALUE_NAME
|
5275
5266
|
VARIANT_ATTRIBUTE_VALUE_VALUE
|
5276
|
-
DESCRIPTION
|
5277
5267
|
}
|
5278
5268
|
|
5279
5269
|
input VariantSortingInput {
|
@@ -12717,7 +12707,7 @@ type Mutation {
|
|
12717
12707
|
description: String
|
12718
12708
|
|
12719
12709
|
"""
|
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/vnd.
|
12710
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/jpg, image/heif, image/dxf, image/vnd.dwg, application/x-eps, text/csv, drawing/x-dwg, application/x-tar, application/vnd.oasis.opendocument.presentation, application/x-jpg, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/plain, image/x-tiff, image/tiff, drawing/x-dwf, application/gzip-compressed, image/gif, text/comma-separated-values, application/tif, pplication/vnd.rar, application/x-rar, application/rtf, application/x-rar-compressed, drawing/dwg, application/acrobat, image/jpg, application/eps, text/x-csv, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tif, application/x-gzip, image/x-eps, text/svg, application/x-csv, application/dxf, text/pdf, application/vnd.oasis.opendocument.text, image/svg, image/jpeg, image/x-bmp, application/gzipped, image/heif-sequence, application/svg+xml, application/excel, application/gzip, application/x-zip-compressed, application/dwg, application/acad, image/eps, application/vnd.oasis.opendocument.spreadsheet, image/heic-sequence, application/msword, image/png, application/csv, image/heic, image/svg+xml, application/vnd.pdf, image/tif, application/x-rtf, application/pdf, text/x-comma-separated-values, text/x-pdf, image/x-dxf, application/postscript, application/tiff, image/x-tif, application/x-pdf, application/x-dwg, application/vnd.ms-excel, text/rtf, text/svg-xml, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-word, application/x-tiff, image/webp, application/x-dxf, application/x-autocad, application/zip, application/x-acad, image/bmp.
|
12721
12711
|
"""
|
12722
12712
|
file: Upload!
|
12723
12713
|
|
@@ -14090,6 +14080,15 @@ type Mutation {
|
|
14090
14080
|
variantId: ID!
|
14091
14081
|
): ProductVariantImageUnassign
|
14092
14082
|
|
14083
|
+
"""Assign one or more images to a product variant."""
|
14084
|
+
productVariantImageBulkAssign(
|
14085
|
+
"""List of product images to assign to a variant."""
|
14086
|
+
input: [ProductVariantImageBulkAssignInput!]!
|
14087
|
+
|
14088
|
+
"""ID of a product variant."""
|
14089
|
+
variantId: ID!
|
14090
|
+
): ProductVariantImageBulkAssign
|
14091
|
+
|
14093
14092
|
"""Creates a new feature for either a product or a variant."""
|
14094
14093
|
featureCreate(
|
14095
14094
|
"""Fields required to create a feature"""
|
@@ -19340,12 +19339,6 @@ input ProductVariantCreateInput {
|
|
19340
19339
|
"""Cost price of the variant."""
|
19341
19340
|
costPrice: PositiveDecimal
|
19342
19341
|
|
19343
|
-
"""Description of the product variant."""
|
19344
|
-
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19345
|
-
|
19346
|
-
"""Product variant description (HTML)."""
|
19347
|
-
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19348
|
-
|
19349
19342
|
"""Price of the particular variant."""
|
19350
19343
|
price: PositiveDecimal
|
19351
19344
|
|
@@ -19487,12 +19480,6 @@ input ProductVariantBulkCreateInput {
|
|
19487
19480
|
"""Cost price of the variant."""
|
19488
19481
|
costPrice: PositiveDecimal
|
19489
19482
|
|
19490
|
-
"""Description of the product variant."""
|
19491
|
-
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19492
|
-
|
19493
|
-
"""Product variant description (HTML)."""
|
19494
|
-
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19495
|
-
|
19496
19483
|
"""Price of the particular variant."""
|
19497
19484
|
price: PositiveDecimal
|
19498
19485
|
|
@@ -19669,12 +19656,6 @@ input ProductVariantInput {
|
|
19669
19656
|
"""Cost price of the variant."""
|
19670
19657
|
costPrice: PositiveDecimal
|
19671
19658
|
|
19672
|
-
"""Description of the product variant."""
|
19673
|
-
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19674
|
-
|
19675
|
-
"""Product variant description (HTML)."""
|
19676
|
-
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19677
|
-
|
19678
19659
|
"""Price of the particular variant."""
|
19679
19660
|
price: PositiveDecimal
|
19680
19661
|
|
@@ -19771,6 +19752,25 @@ type ProductVariantImageUnassign {
|
|
19771
19752
|
productErrors: [ProductError!]!
|
19772
19753
|
}
|
19773
19754
|
|
19755
|
+
"""Assign one or more images to a product variant."""
|
19756
|
+
type ProductVariantImageBulkAssign {
|
19757
|
+
productVariant: ProductVariant
|
19758
|
+
|
19759
|
+
"""List of assigned images."""
|
19760
|
+
images: [ProductImage!]!
|
19761
|
+
bulkProductImageErrors: [BulkProductImageError!]!
|
19762
|
+
}
|
19763
|
+
|
19764
|
+
input ProductVariantImageBulkAssignInput {
|
19765
|
+
"""ID of a product image to assign to a variant."""
|
19766
|
+
imageId: ID!
|
19767
|
+
|
19768
|
+
"""
|
19769
|
+
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.
|
19770
|
+
"""
|
19771
|
+
transferImageOwnership: Boolean
|
19772
|
+
}
|
19773
|
+
|
19774
19774
|
"""Creates a new feature for either a product or a variant."""
|
19775
19775
|
type FeatureCreate {
|
19776
19776
|
feature: Feature
|