@nautical-commerce/graphql-schema 1.72.0 → 1.73.0-10-g0814ed784
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 +25 -9
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3243,6 +3243,7 @@ type Seller implements Node & ObjectWithMetadata {
|
|
3243
3243
|
if no order has been created
|
3244
3244
|
"""
|
3245
3245
|
firstOrderPlacedDate: DateTime
|
3246
|
+
fullfilledByMarketplace: Boolean!
|
3246
3247
|
created: DateTime!
|
3247
3248
|
updated: DateTime!
|
3248
3249
|
accountSetupTasksAreDone: Boolean
|
@@ -3755,6 +3756,11 @@ type Order implements Node & ObjectWithMetadata {
|
|
3755
3756
|
Indicates that the shipping price is set manually by user rather than taken from a related shipping method.
|
3756
3757
|
"""
|
3757
3758
|
isShippingPriceOverridden: Boolean!
|
3759
|
+
|
3760
|
+
"""
|
3761
|
+
Indicates that the order is being fulfilled by the marketplace and the seller is not responsible for shipping.
|
3762
|
+
"""
|
3763
|
+
fulfilledByMarketplace: Boolean!
|
3758
3764
|
token: String!
|
3759
3765
|
voucher: Voucher
|
3760
3766
|
discount: Money
|
@@ -4567,6 +4573,9 @@ type ProductType implements Node & ObjectWithMetadata {
|
|
4567
4573
|
|
4568
4574
|
"""Brand of the product"""
|
4569
4575
|
model: String
|
4576
|
+
|
4577
|
+
"""Whether this product type allows creating variants."""
|
4578
|
+
hasVariantOptions: Boolean!
|
4570
4579
|
}
|
4571
4580
|
|
4572
4581
|
"""Representation of tax types fetched from tax gateway."""
|
@@ -4920,6 +4929,7 @@ enum WebhookEventTypeEnum {
|
|
4920
4929
|
CUSTOMER_UPDATED
|
4921
4930
|
CUSTOMER_DELETED
|
4922
4931
|
FULFILLMENT_CREATED
|
4932
|
+
FULFILLMENT_UPDATED
|
4923
4933
|
INVOICE_DELETED
|
4924
4934
|
INVOICE_REQUESTED
|
4925
4935
|
INVOICE_SENT
|
@@ -8045,6 +8055,7 @@ enum WebhookSampleEventTypeEnum {
|
|
8045
8055
|
CUSTOMER_UPDATED
|
8046
8056
|
CUSTOMER_DELETED
|
8047
8057
|
FULFILLMENT_CREATED
|
8058
|
+
FULFILLMENT_UPDATED
|
8048
8059
|
INVOICE_DELETED
|
8049
8060
|
INVOICE_REQUESTED
|
8050
8061
|
INVOICE_SENT
|
@@ -8832,10 +8843,10 @@ type SellerOnboardingSettings implements Node {
|
|
8832
8843
|
welcomeMessage: String
|
8833
8844
|
|
8834
8845
|
"""The fulfillment model used by the MP."""
|
8835
|
-
fulfillmentModel: String
|
8846
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025")
|
8836
8847
|
|
8837
8848
|
"""A summary of required documents from sellers."""
|
8838
|
-
requiredDocuments: String
|
8849
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025")
|
8839
8850
|
|
8840
8851
|
"""Text displayed when the MP is not accepting new sellers."""
|
8841
8852
|
notAcceptingSellersMessage: String
|
@@ -13153,7 +13164,7 @@ type Mutation {
|
|
13153
13164
|
description: String
|
13154
13165
|
|
13155
13166
|
"""
|
13156
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13167
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/postscript, application/tiff, application/x-dwg, image/png, application/eps, image/x-eps, application/x-eps, image/svg+xml, image/heif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heic-sequence, application/msword, application/acad, application/x-zip-compressed, image/x-ms-bmp, application/x-pdf, application/x-csv, image/gif, application/csv, application/dxf, application/x-tif, application/acrobat, application/x-tar, image/tiff, application/vnd.pdf, image/eps, text/pdf, application/x-autocad, application/x-acad, application/tif, application/x-rtf, application/gzipped, image/heif-sequence, application/x-rar-compressed, application/x-gzip, text/svg, application/x-dxf, image/bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, application/vnd.ms-word, application/excel, image/dxf, text/rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-tiff, application/vnd.oasis.opendocument.presentation, image/webp, drawing/x-dwf, image/x-dwg, text/x-csv, image/heic, application/vnd.oasis.opendocument.text, application/gzip, image/x-tif, text/x-comma-separated-values, application/pdf, drawing/x-dwg, application/vnd.ms-excel, pplication/vnd.rar, text/comma-separated-values, application/zip, image/vnd.dwg, application/jpg, text/x-pdf, image/x-bmp, application/x-tiff, application/vnd.ms-powerpoint, image/tif, application/gzip-compressed, image/x-dxf, image/svg, image/jpeg, application/vnd.oasis.opendocument.spreadsheet, text/svg-xml, text/csv, text/plain, application/x-jpg, image/jpg, application/svg+xml, drawing/dwg, application/x-rar, application/dwg.
|
13157
13168
|
"""
|
13158
13169
|
file: Upload!
|
13159
13170
|
|
@@ -16520,9 +16531,8 @@ input NauticalConfigurationInputItem {
|
|
16520
16531
|
|
16521
16532
|
"""Updates marketplace configuration."""
|
16522
16533
|
type MarketplaceConfigurationUpdate {
|
16523
|
-
"""Updated marketplace configuration."""
|
16524
|
-
marketplaceConfiguration: MarketplaceConfiguration
|
16525
16534
|
marketplaceConfigurationErrors: [MarketplaceConfigurationError!]!
|
16535
|
+
marketplaceConfiguration: MarketplaceConfiguration
|
16526
16536
|
}
|
16527
16537
|
|
16528
16538
|
type MarketplaceConfigurationError {
|
@@ -18053,10 +18063,10 @@ input SellerOnboardingSettingsCreateInput {
|
|
18053
18063
|
welcomeMessage: String
|
18054
18064
|
|
18055
18065
|
"""The fulfillment model used by the MP."""
|
18056
|
-
fulfillmentModel: String
|
18066
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18057
18067
|
|
18058
18068
|
"""A summary of required documents from sellers."""
|
18059
|
-
requiredDocuments: String
|
18069
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18060
18070
|
|
18061
18071
|
"""Text displayed when the MP is not accepting new sellers."""
|
18062
18072
|
notAcceptingSellersMessage: String
|
@@ -18080,10 +18090,10 @@ input SellerOnboardingSettingsUpdateInput {
|
|
18080
18090
|
welcomeMessage: String
|
18081
18091
|
|
18082
18092
|
"""The fulfillment model used by the MP."""
|
18083
|
-
fulfillmentModel: String
|
18093
|
+
fulfillmentModel: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18084
18094
|
|
18085
18095
|
"""A summary of required documents from sellers."""
|
18086
|
-
requiredDocuments: String
|
18096
|
+
requiredDocuments: String @deprecated(reason: "This will be removed on June 7, 2025.")
|
18087
18097
|
|
18088
18098
|
"""Text displayed when the MP is not accepting new sellers."""
|
18089
18099
|
notAcceptingSellersMessage: String
|
@@ -19128,6 +19138,9 @@ input ProductCreateInput {
|
|
19128
19138
|
"""List of attributes."""
|
19129
19139
|
attributes: [AttributeValueInput!]
|
19130
19140
|
|
19141
|
+
"""List of attributes to assign as variant attributes to this product."""
|
19142
|
+
variantAttributes: [ID!]
|
19143
|
+
|
19131
19144
|
"""ID of the type that product belongs to."""
|
19132
19145
|
productType: ID
|
19133
19146
|
|
@@ -19356,6 +19369,9 @@ input ProductInput {
|
|
19356
19369
|
"""List of attributes."""
|
19357
19370
|
attributes: [AttributeValueInput!]
|
19358
19371
|
|
19372
|
+
"""List of attributes to assign as variant attributes to this product."""
|
19373
|
+
variantAttributes: [ID!]
|
19374
|
+
|
19359
19375
|
"""ID of the type that product belongs to."""
|
19360
19376
|
productType: ID
|
19361
19377
|
|