@nautical-commerce/graphql-schema 1.67.0-17-g9106f45e2 → 1.67.0-19-g9344ea07b
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 +26 -8
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -2840,10 +2840,6 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2840
2840
|
id: ID!
|
2841
2841
|
createdAt: DateTime!
|
2842
2842
|
updatedAt: DateTime!
|
2843
|
-
|
2844
|
-
"""Product model code"""
|
2845
|
-
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
2846
|
-
descriptionHtml: String!
|
2847
2843
|
externalId: String
|
2848
2844
|
externalSource: String
|
2849
2845
|
seoTitle: String
|
@@ -2897,6 +2893,12 @@ type ProductVariant implements Node & ObjectWithMetadata {
|
|
2897
2893
|
"""Whether this variant is visible on the buyer side or not"""
|
2898
2894
|
isVisible: Boolean! @deprecated(reason: "This will be removed on April 15, 2025.")
|
2899
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
|
+
|
2900
2902
|
"""Product variant size info."""
|
2901
2903
|
size: VariantSize @deprecated(reason: "This will be removed on April 17, 2025.")
|
2902
2904
|
|
@@ -11001,6 +11003,9 @@ type MarketplaceConfiguration {
|
|
11001
11003
|
|
11002
11004
|
"""Default weight unit."""
|
11003
11005
|
defaultWeightUnit: WeightUnitsEnum
|
11006
|
+
|
11007
|
+
"""Default length unit."""
|
11008
|
+
defaultLengthUnit: LengthUnitsStrEnum
|
11004
11009
|
automaticFulfillmentDigitalProducts: Boolean!
|
11005
11010
|
defaultDigitalMaxDownloads: Int
|
11006
11011
|
defaultDigitalUrlValidDays: Int
|
@@ -11630,6 +11635,16 @@ enum FulfillmentModelEnum {
|
|
11630
11635
|
HYBRID
|
11631
11636
|
}
|
11632
11637
|
|
11638
|
+
"\n String enum counterpart of the LengthUnits.\n "
|
11639
|
+
enum LengthUnitsStrEnum {
|
11640
|
+
IN
|
11641
|
+
FT
|
11642
|
+
YD
|
11643
|
+
MM
|
11644
|
+
CM
|
11645
|
+
M
|
11646
|
+
}
|
11647
|
+
|
11633
11648
|
type EmailEventCountableConnection {
|
11634
11649
|
"""Pagination data for this connection."""
|
11635
11650
|
pageInfo: PageInfo!
|
@@ -13202,7 +13217,7 @@ type Mutation {
|
|
13202
13217
|
description: String
|
13203
13218
|
|
13204
13219
|
"""
|
13205
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13220
|
+
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-tif, image/eps, application/vnd.ms-word, application/tiff, image/svg+xml, text/csv, image/heic-sequence, application/svg+xml, image/x-eps, application/x-pdf, application/x-csv, image/x-tif, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/gif, image/vnd.dwg, application/x-rar-compressed, image/x-ms-bmp, application/x-autocad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-acad, text/comma-separated-values, image/webp, drawing/dwg, application/x-gzip, application/gzip-compressed, application/eps, application/vnd.oasis.opendocument.presentation, text/rtf, application/gzipped, image/heif-sequence, text/svg, image/jpg, drawing/x-dwf, image/tiff, application/acad, text/x-comma-separated-values, image/x-bmp, image/heic, application/acrobat, application/x-rar, image/dxf, image/x-tiff, image/tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/pdf, application/vnd.oasis.opendocument.spreadsheet, application/tif, image/heif, application/excel, image/x-dxf, application/x-jpg, application/postscript, application/vnd.pdf, application/x-zip-compressed, application/vnd.ms-excel, image/x-dwg, application/x-eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/pdf, application/x-tiff, application/msword, application/dxf, image/png, text/x-csv, application/vnd.ms-powerpoint, drawing/x-dwg, application/vnd.oasis.opendocument.text, application/rtf, application/zip, image/svg, text/svg-xml, application/x-tar, image/jpeg, application/x-dwg, application/dwg, application/gzip, application/jpg, application/x-dxf, image/bmp, application/x-rtf, application/csv, text/x-pdf, text/plain.
|
13206
13221
|
"""
|
13207
13222
|
file: Upload!
|
13208
13223
|
|
@@ -16665,6 +16680,9 @@ input MarketplaceConfigurationInput {
|
|
16665
16680
|
"""Default weight unit."""
|
16666
16681
|
defaultWeightUnit: WeightUnitsEnum = null
|
16667
16682
|
|
16683
|
+
"""Default length unit."""
|
16684
|
+
defaultLengthUnit: LengthUnitsStrEnum = null
|
16685
|
+
|
16668
16686
|
"""Enable automatic fulfillment for all digital products."""
|
16669
16687
|
automaticFulfillmentDigitalProducts: Boolean
|
16670
16688
|
|
@@ -19763,7 +19781,7 @@ input ProductVariantCreateInput {
|
|
19763
19781
|
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19764
19782
|
|
19765
19783
|
"""Product variant description (HTML)."""
|
19766
|
-
descriptionHtml: String
|
19784
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19767
19785
|
|
19768
19786
|
"""Price of the particular variant."""
|
19769
19787
|
price: PositiveDecimal
|
@@ -19904,7 +19922,7 @@ input ProductVariantBulkCreateInput {
|
|
19904
19922
|
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19905
19923
|
|
19906
19924
|
"""Product variant description (HTML)."""
|
19907
|
-
descriptionHtml: String
|
19925
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
19908
19926
|
|
19909
19927
|
"""Price of the particular variant."""
|
19910
19928
|
price: PositiveDecimal
|
@@ -20083,7 +20101,7 @@ input ProductVariantInput {
|
|
20083
20101
|
description: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20084
20102
|
|
20085
20103
|
"""Product variant description (HTML)."""
|
20086
|
-
descriptionHtml: String
|
20104
|
+
descriptionHtml: String @deprecated(reason: "This will be removed on April 15, 2025.")
|
20087
20105
|
|
20088
20106
|
"""Price of the particular variant."""
|
20089
20107
|
price: PositiveDecimal
|