@nautical-commerce/graphql-schema 1.66.0-13-g315365dcc → 1.66.0-15-g548fdd439
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 +23 -21
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2840,7 +2840,9 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2840
2840
|
id: ID!
|
2841
2841
|
createdAt: DateTime!
|
2842
2842
|
updatedAt: DateTime!
|
2843
|
-
|
2843
|
+
|
2844
|
+
"""Product model code"""
|
2845
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2844
2846
|
descriptionHtml: String!
|
2845
2847
|
externalId: String
|
2846
2848
|
externalSource: String
|
@@ -2894,7 +2896,7 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2894
2896
|
pricing: VariantPricingInfo
|
2895
2897
|
|
2896
2898
|
"""Whether this variant is visible on the buyer side or not"""
|
2897
|
-
isVisible: Boolean!
|
2899
|
+
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2898
2900
|
|
2899
2901
|
"""Product variant size info."""
|
2900
2902
|
size: VariantSize
|
@@ -2995,16 +2997,16 @@ type Product implements Node & ObjectWithMetadata {
|
|
2995
2997
|
seller: Seller
|
2996
2998
|
|
2997
2999
|
"""Manufacturer Product Number"""
|
2998
|
-
mpn: String
|
3000
|
+
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
2999
3001
|
|
3000
3002
|
"""Brand of the product"""
|
3001
|
-
brand: String
|
3003
|
+
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3002
3004
|
|
3003
3005
|
"""Manufacturer of the product"""
|
3004
|
-
manufacturer: String
|
3006
|
+
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3005
3007
|
|
3006
3008
|
"""Product model code"""
|
3007
|
-
model: String
|
3009
|
+
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3008
3010
|
seoTitle: String
|
3009
3011
|
seoDescription: String
|
3010
3012
|
productType: ProductType
|
@@ -3133,7 +3135,7 @@ type Product implements Node & ObjectWithMetadata {
|
|
3133
3135
|
"""
|
3134
3136
|
The product's sorting priority weight in query results. A larger value indicates a higher priority. This field can be used in both ascending and descending sorting methods.
|
3135
3137
|
"""
|
3136
|
-
sortPriorityWeight: Decimal
|
3138
|
+
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3137
3139
|
|
3138
3140
|
"""List of logs for product status changes."""
|
3139
3141
|
productStatusLogs: [ProductStatusLog!]
|
@@ -13209,7 +13211,7 @@ type Mutation {
|
|
13209
13211
|
description: String
|
13210
13212
|
|
13211
13213
|
"""
|
13212
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13214
|
+
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.oasis.opendocument.presentation, application/vnd.ms-excel, application/pdf, text/x-pdf, application/x-gzip, drawing/dwg, application/zip, image/vnd.dwg, application/postscript, image/bmp, image/dxf, application/msword, application/x-tar, image/tiff, application/x-rar-compressed, application/vnd.oasis.opendocument.spreadsheet, text/pdf, image/x-bmp, drawing/x-dwg, image/svg, application/vnd.oasis.opendocument.text, application/vnd.pdf, application/jpg, application/x-tif, image/svg+xml, image/webp, application/svg+xml, image/heif, text/x-csv, image/eps, text/svg-xml, application/x-zip-compressed, application/dwg, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, drawing/x-dwf, text/plain, image/png, application/x-tiff, image/x-tif, application/gzipped, application/dxf, application/gzip, application/vnd.ms-word, application/rtf, application/acrobat, text/comma-separated-values, application/tiff, application/x-dwg, application/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, application/x-acad, text/x-comma-separated-values, image/x-eps, application/excel, application/x-csv, text/svg, image/heic-sequence, application/gzip-compressed, application/tif, image/jpeg, application/x-dxf, application/eps, image/x-dwg, image/x-tiff, text/rtf, application/vnd.ms-powerpoint, image/heic, application/x-autocad, image/x-dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-eps, application/x-jpg, application/acad, image/x-ms-bmp, text/csv, pplication/vnd.rar, image/gif, image/tif, application/x-pdf, image/jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar.
|
13213
13215
|
"""
|
13214
13216
|
file: Upload!
|
13215
13217
|
|
@@ -19244,16 +19246,16 @@ input ProductCreateInput {
|
|
19244
19246
|
visibleInListings: Boolean
|
19245
19247
|
|
19246
19248
|
"""Manufacturer product number"""
|
19247
|
-
mpn: String
|
19249
|
+
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19248
19250
|
|
19249
19251
|
"""Product brand"""
|
19250
|
-
brand: String
|
19252
|
+
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19251
19253
|
|
19252
19254
|
"""Manufacturer of the product"""
|
19253
|
-
manufacturer: String
|
19255
|
+
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19254
19256
|
|
19255
19257
|
"""Product model code"""
|
19256
|
-
model: String
|
19258
|
+
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19257
19259
|
|
19258
19260
|
"""Override price for grouped products"""
|
19259
19261
|
overridePrice: Boolean
|
@@ -19270,7 +19272,7 @@ input ProductCreateInput {
|
|
19270
19272
|
subStatusReason: String
|
19271
19273
|
|
19272
19274
|
"""Sort priority for product"""
|
19273
|
-
sortPriorityWeight: Decimal
|
19275
|
+
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19274
19276
|
|
19275
19277
|
"""
|
19276
19278
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
@@ -19460,16 +19462,16 @@ input ProductInput {
|
|
19460
19462
|
visibleInListings: Boolean
|
19461
19463
|
|
19462
19464
|
"""Manufacturer product number"""
|
19463
|
-
mpn: String
|
19465
|
+
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19464
19466
|
|
19465
19467
|
"""Product brand"""
|
19466
|
-
brand: String
|
19468
|
+
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19467
19469
|
|
19468
19470
|
"""Manufacturer of the product"""
|
19469
|
-
manufacturer: String
|
19471
|
+
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19470
19472
|
|
19471
19473
|
"""Product model code"""
|
19472
|
-
model: String
|
19474
|
+
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19473
19475
|
|
19474
19476
|
"""Override price for grouped products"""
|
19475
19477
|
overridePrice: Boolean
|
@@ -19486,7 +19488,7 @@ input ProductInput {
|
|
19486
19488
|
subStatusReason: String
|
19487
19489
|
|
19488
19490
|
"""Sort priority for product"""
|
19489
|
-
sortPriorityWeight: Decimal
|
19491
|
+
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19490
19492
|
|
19491
19493
|
"""
|
19492
19494
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
@@ -19767,7 +19769,7 @@ input ProductVariantCreateInput {
|
|
19767
19769
|
costPrice: PositiveDecimal
|
19768
19770
|
|
19769
19771
|
"""Description of the product variant."""
|
19770
|
-
description: String
|
19772
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19771
19773
|
|
19772
19774
|
"""Product variant description (HTML)."""
|
19773
19775
|
descriptionHtml: String
|
@@ -19908,7 +19910,7 @@ input ProductVariantBulkCreateInput {
|
|
19908
19910
|
costPrice: PositiveDecimal
|
19909
19911
|
|
19910
19912
|
"""Description of the product variant."""
|
19911
|
-
description: String
|
19913
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19912
19914
|
|
19913
19915
|
"""Product variant description (HTML)."""
|
19914
19916
|
descriptionHtml: String
|
@@ -20087,7 +20089,7 @@ input ProductVariantInput {
|
|
20087
20089
|
costPrice: PositiveDecimal
|
20088
20090
|
|
20089
20091
|
"""Description of the product variant."""
|
20090
|
-
description: String
|
20092
|
+
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20091
20093
|
|
20092
20094
|
"""Product variant description (HTML)."""
|
20093
20095
|
descriptionHtml: String
|