@nautical-commerce/graphql-schema 1.68.0-16-g25cadda76 → 1.68.0-18-gcb1c77a71
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 +43 -18
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3133,6 +3133,9 @@ type Product implements Node & ObjectWithMetadata {
|
|
3133
3133
|
|
3134
3134
|
"""List of logs for product status changes."""
|
3135
3135
|
productStatusLogs: [ProductStatusLog!]
|
3136
|
+
|
3137
|
+
"""Product dimensions."""
|
3138
|
+
dimensions: ProductDimensions
|
3136
3139
|
}
|
3137
3140
|
|
3138
3141
|
"""
|
@@ -7331,6 +7334,33 @@ type ProductStatusLog implements Node & ObjectWithMetadata {
|
|
7331
7334
|
metadata: [MetadataItem!]!
|
7332
7335
|
}
|
7333
7336
|
|
7337
|
+
"""Product or Variant dimensions."""
|
7338
|
+
type ProductDimensions {
|
7339
|
+
length: PositiveDecimal
|
7340
|
+
width: PositiveDecimal
|
7341
|
+
height: PositiveDecimal
|
7342
|
+
|
7343
|
+
"""measurement unit for length, width and height."""
|
7344
|
+
unit: LengthUnitsStrEnum
|
7345
|
+
}
|
7346
|
+
|
7347
|
+
"""
|
7348
|
+
Positive Decimal scalar implementation.
|
7349
|
+
|
7350
|
+
Should be used in places where value must be positive.
|
7351
|
+
"""
|
7352
|
+
scalar PositiveDecimal
|
7353
|
+
|
7354
|
+
"\n String enum counterpart of the LengthUnits.\n "
|
7355
|
+
enum LengthUnitsStrEnum {
|
7356
|
+
IN
|
7357
|
+
FT
|
7358
|
+
YD
|
7359
|
+
MM
|
7360
|
+
CM
|
7361
|
+
M
|
7362
|
+
}
|
7363
|
+
|
7334
7364
|
"""Represents availability of a variant in the storefront."""
|
7335
7365
|
type VariantPricingInfo {
|
7336
7366
|
"""Whether it is in sale or not."""
|
@@ -10175,13 +10205,6 @@ input StripeClientPaymentData {
|
|
10175
10205
|
paymentMethodToken: String
|
10176
10206
|
}
|
10177
10207
|
|
10178
|
-
"""
|
10179
|
-
Positive Decimal scalar implementation.
|
10180
|
-
|
10181
|
-
Should be used in places where value must be positive.
|
10182
|
-
"""
|
10183
|
-
scalar PositiveDecimal
|
10184
|
-
|
10185
10208
|
input AddressInput {
|
10186
10209
|
"""Given name."""
|
10187
10210
|
firstName: String
|
@@ -11609,16 +11632,6 @@ enum FulfillmentModelEnum {
|
|
11609
11632
|
HYBRID
|
11610
11633
|
}
|
11611
11634
|
|
11612
|
-
"\n String enum counterpart of the LengthUnits.\n "
|
11613
|
-
enum LengthUnitsStrEnum {
|
11614
|
-
IN
|
11615
|
-
FT
|
11616
|
-
YD
|
11617
|
-
MM
|
11618
|
-
CM
|
11619
|
-
M
|
11620
|
-
}
|
11621
|
-
|
11622
11635
|
type EmailEventCountableConnection {
|
11623
11636
|
"""Pagination data for this connection."""
|
11624
11637
|
pageInfo: PageInfo!
|
@@ -13191,7 +13204,7 @@ type Mutation {
|
|
13191
13204
|
description: String
|
13192
13205
|
|
13193
13206
|
"""
|
13194
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13207
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/rtf, image/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-powerpoint, image/heic-sequence, application/excel, application/dwg, application/x-csv, application/csv, application/acad, image/x-dwg, image/x-eps, application/x-eps, application/x-rtf, application/x-tar, drawing/x-dwf, image/jpeg, application/x-zip-compressed, application/x-pdf, image/x-ms-bmp, image/png, application/pdf, application/dxf, text/plain, pplication/vnd.rar, image/x-tiff, application/eps, image/eps, application/vnd.pdf, application/msword, application/vnd.oasis.opendocument.text, text/pdf, image/svg, application/x-dxf, image/tiff, application/x-rar-compressed, application/x-acad, application/x-tif, text/x-csv, application/jpg, application/x-jpg, image/gif, application/x-gzip, text/svg, text/rtf, application/gzip-compressed, image/x-tif, application/gzip, text/csv, application/x-tiff, application/tif, image/heic, application/vnd.oasis.opendocument.spreadsheet, application/zip, application/acrobat, text/x-comma-separated-values, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, image/x-dxf, image/tif, text/comma-separated-values, image/webp, image/x-bmp, text/x-pdf, application/gzipped, image/dxf, drawing/dwg, application/x-autocad, application/x-dwg, application/vnd.ms-word, image/bmp, image/heif-sequence, image/vnd.dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpg, application/tiff, application/vnd.oasis.opendocument.presentation, application/postscript, image/heif, application/x-rar, drawing/x-dwg, text/svg-xml.
|
13195
13208
|
"""
|
13196
13209
|
file: Upload!
|
13197
13210
|
|
@@ -19277,6 +19290,9 @@ input ProductCreateInput {
|
|
19277
19290
|
"""
|
19278
19291
|
isPriceOverrideAllowed: Boolean
|
19279
19292
|
|
19293
|
+
"""Product dimensions."""
|
19294
|
+
dimensions: ProductDimensionsInput
|
19295
|
+
|
19280
19296
|
"""ID of the seller that product belongs to."""
|
19281
19297
|
seller: ID!
|
19282
19298
|
|
@@ -19319,6 +19335,12 @@ input VariantSizeInput {
|
|
19319
19335
|
sizeUnits: DistanceUnitsEnum
|
19320
19336
|
}
|
19321
19337
|
|
19338
|
+
input ProductDimensionsInput {
|
19339
|
+
length: PositiveDecimal
|
19340
|
+
width: PositiveDecimal
|
19341
|
+
height: PositiveDecimal
|
19342
|
+
}
|
19343
|
+
|
19322
19344
|
input StockInput {
|
19323
19345
|
"""Warehouse in which the stock is located."""
|
19324
19346
|
warehouse: ID!
|
@@ -19492,6 +19514,9 @@ input ProductInput {
|
|
19492
19514
|
Set whether this product allows price overrides by default, will be controlled by product type if provided
|
19493
19515
|
"""
|
19494
19516
|
isPriceOverrideAllowed: Boolean
|
19517
|
+
|
19518
|
+
"""Product dimensions."""
|
19519
|
+
dimensions: ProductDimensionsInput
|
19495
19520
|
}
|
19496
19521
|
|
19497
19522
|
"""Set product availability for purchase date."""
|