@nautical-commerce/graphql-schema 1.66.0-20-g3c1367e91 → 1.66.0-22-g842facedc
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 +9 -17
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2852,7 +2852,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2852
2852
|
name: String!
|
2853
2853
|
nauticalStockNumber: String!
|
2854
2854
|
status: ProductVariantStatus!
|
2855
|
-
subStatus: ProductVariantSubStatus!
|
2856
2855
|
currency: String
|
2857
2856
|
product: Product!
|
2858
2857
|
trackInventory: Boolean!
|
@@ -2962,6 +2961,11 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2962
2961
|
|
2963
2962
|
"""List of vouchers associated with the product."""
|
2964
2963
|
vouchers: [Voucher!]!
|
2964
|
+
|
2965
|
+
"""
|
2966
|
+
The sub status of the product variant. This will be the same as product's sub status.
|
2967
|
+
"""
|
2968
|
+
subStatus: ProductSubStatusEnum
|
2965
2969
|
}
|
2966
2970
|
|
2967
2971
|
"""An enumeration."""
|
@@ -2973,18 +2977,6 @@ enum ProductVariantStatus {
|
|
2973
2977
|
ACTIVE
|
2974
2978
|
}
|
2975
2979
|
|
2976
|
-
"""An enumeration."""
|
2977
|
-
enum ProductVariantSubStatus {
|
2978
|
-
"""In review"""
|
2979
|
-
IN_REVIEW
|
2980
|
-
|
2981
|
-
"""Declined"""
|
2982
|
-
DECLINED
|
2983
|
-
|
2984
|
-
"""Approved"""
|
2985
|
-
APPROVED
|
2986
|
-
}
|
2987
|
-
|
2988
2980
|
"""Represents an individual item for sale in the storefront."""
|
2989
2981
|
type Product implements Node & ObjectWithMetadata {
|
2990
2982
|
"""The ID of the object"""
|
@@ -13211,7 +13203,7 @@ type Mutation {
|
|
13211
13203
|
description: String
|
13212
13204
|
|
13213
13205
|
"""
|
13214
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13206
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-ms-bmp, text/x-comma-separated-values, application/x-rar-compressed, text/pdf, text/x-csv, application/gzip, image/svg, application/x-autocad, image/tiff, image/x-eps, application/vnd.ms-excel, image/x-bmp, application/dxf, application/postscript, application/vnd.oasis.opendocument.text, text/svg, image/heif, application/acrobat, text/csv, drawing/x-dwg, text/x-pdf, text/rtf, application/pdf, image/jpg, application/vnd.oasis.opendocument.presentation, application/gzipped, drawing/x-dwf, pplication/vnd.rar, image/png, application/msword, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.oasis.opendocument.spreadsheet, application/x-rtf, image/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/dxf, image/tif, application/acad, image/vnd.dwg, text/svg-xml, image/x-tiff, application/vnd.ms-powerpoint, text/comma-separated-values, application/x-dxf, image/svg+xml, application/dwg, application/rtf, application/svg+xml, application/x-dwg, image/gif, application/x-jpg, application/x-eps, image/bmp, application/x-rar, application/x-pdf, drawing/dwg, application/eps, application/tif, application/gzip-compressed, application/jpg, application/vnd.pdf, application/x-csv, application/tiff, image/heif-sequence, image/heic-sequence, application/excel, application/x-acad, image/webp, image/eps, image/jpeg, application/x-tiff, application/zip, image/x-dxf, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-word, application/x-zip-compressed, application/x-tar, image/heic, application/x-gzip, application/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tif, text/plain.
|
13215
13207
|
"""
|
13216
13208
|
file: Upload!
|
13217
13209
|
|
@@ -19812,7 +19804,7 @@ input ProductVariantCreateInput {
|
|
19812
19804
|
requiresQuote: Boolean
|
19813
19805
|
|
19814
19806
|
"""Substatus the variant is to be changed to."""
|
19815
|
-
subStatus: ProductVariantSubStatusEnum
|
19807
|
+
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
19816
19808
|
|
19817
19809
|
"""
|
19818
19810
|
Informs whether a collection is published. All variants are published by default
|
@@ -19953,7 +19945,7 @@ input ProductVariantBulkCreateInput {
|
|
19953
19945
|
requiresQuote: Boolean
|
19954
19946
|
|
19955
19947
|
"""Substatus the variant is to be changed to."""
|
19956
|
-
subStatus: ProductVariantSubStatusEnum
|
19948
|
+
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
19957
19949
|
|
19958
19950
|
"""
|
19959
19951
|
Informs whether a collection is published. All variants are published by default
|
@@ -20132,7 +20124,7 @@ input ProductVariantInput {
|
|
20132
20124
|
requiresQuote: Boolean
|
20133
20125
|
|
20134
20126
|
"""Substatus the variant is to be changed to."""
|
20135
|
-
subStatus: ProductVariantSubStatusEnum
|
20127
|
+
subStatus: ProductVariantSubStatusEnum @deprecated(reason: "This field will be removed on April 15th, 2025. ProductVariant substatus will be the same as product substatus")
|
20136
20128
|
|
20137
20129
|
"""
|
20138
20130
|
Informs whether a collection is published. All variants are published by default
|