@nautical-commerce/graphql-schema 1.58.4 → 1.59.0
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 +38 -43
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -28,6 +28,9 @@ type Query {
|
|
|
28
28
|
"""Filtering options for email templates."""
|
|
29
29
|
filter: EmailTemplateFilterInput
|
|
30
30
|
|
|
31
|
+
"""Sort email templates."""
|
|
32
|
+
sortBy: EmailTemplateSortingInput
|
|
33
|
+
|
|
31
34
|
"""Return the elements in the list that come before the specified cursor."""
|
|
32
35
|
before: String
|
|
33
36
|
|
|
@@ -80,7 +83,7 @@ type Query {
|
|
|
80
83
|
webhookSamplePayload(
|
|
81
84
|
"""Name of the requested event type."""
|
|
82
85
|
eventType: WebhookSampleEventTypeEnum!
|
|
83
|
-
): JSONString
|
|
86
|
+
): JSONString @deprecated(reason: "This will be removed on February 6, 2025.")
|
|
84
87
|
|
|
85
88
|
"""List of webhook event logs."""
|
|
86
89
|
webhookEventLogs(
|
|
@@ -2224,6 +2227,33 @@ input EmailTemplateFilterInput {
|
|
|
2224
2227
|
eventType: EventTypeEnum
|
|
2225
2228
|
}
|
|
2226
2229
|
|
|
2230
|
+
input EmailTemplateSortingInput {
|
|
2231
|
+
"""Specifies the direction in which to sort products."""
|
|
2232
|
+
direction: OrderDirection!
|
|
2233
|
+
|
|
2234
|
+
"""Sort email templates by the selected field."""
|
|
2235
|
+
field: EmailTemplateSortField!
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
enum OrderDirection {
|
|
2239
|
+
"""Specifies an ascending sort order."""
|
|
2240
|
+
ASC
|
|
2241
|
+
|
|
2242
|
+
"""Specifies a descending sort order."""
|
|
2243
|
+
DESC
|
|
2244
|
+
}
|
|
2245
|
+
|
|
2246
|
+
enum EmailTemplateSortField {
|
|
2247
|
+
"""Sort email template by title."""
|
|
2248
|
+
TITLE
|
|
2249
|
+
|
|
2250
|
+
"""Sort email template by subject."""
|
|
2251
|
+
SUBJECT
|
|
2252
|
+
|
|
2253
|
+
"""Sort email template by recipient type."""
|
|
2254
|
+
RECIPIENT_TYPE
|
|
2255
|
+
}
|
|
2256
|
+
|
|
2227
2257
|
type WishlistItemCountableConnection {
|
|
2228
2258
|
"""Pagination data for this connection."""
|
|
2229
2259
|
pageInfo: PageInfo!
|
|
@@ -3764,11 +3794,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
|
3764
3794
|
"""List of order lines."""
|
|
3765
3795
|
lines: [OrderLine!]!
|
|
3766
3796
|
|
|
3767
|
-
"""
|
|
3768
|
-
List of actions that can be performed in the current state of an order.
|
|
3769
|
-
"""
|
|
3770
|
-
actions: [OrderAction!]! @deprecated(reason: "This field should not be used as Orders will be changed to have no actions.All actions should be performed against the NauticalOrder. This will be removed on November 1, 2024.")
|
|
3771
|
-
|
|
3772
3797
|
"""
|
|
3773
3798
|
List of sub-statuses that can be changed to based on current state of the order
|
|
3774
3799
|
"""
|
|
@@ -4389,14 +4414,6 @@ input ProductOrder {
|
|
|
4389
4414
|
field: ProductOrderField
|
|
4390
4415
|
}
|
|
4391
4416
|
|
|
4392
|
-
enum OrderDirection {
|
|
4393
|
-
"""Specifies an ascending sort order."""
|
|
4394
|
-
ASC
|
|
4395
|
-
|
|
4396
|
-
"""Specifies a descending sort order."""
|
|
4397
|
-
DESC
|
|
4398
|
-
}
|
|
4399
|
-
|
|
4400
4417
|
enum ProductOrderField {
|
|
4401
4418
|
"""Sort products by name."""
|
|
4402
4419
|
NAME
|
|
@@ -5827,9 +5844,6 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
|
5827
5844
|
"""The pricebook, if any, that changed the price of this line."""
|
|
5828
5845
|
priceBook: PriceBook
|
|
5829
5846
|
|
|
5830
|
-
"""DEPRECATED: The number of items ordered on this order line."""
|
|
5831
|
-
quantity: Int! @deprecated(reason: "Use the more explicit quantityOrdered instead. This will be removed on November 1, 2024")
|
|
5832
|
-
|
|
5833
5847
|
"""The number of items ordered on this order line."""
|
|
5834
5848
|
quantityOrdered: Int!
|
|
5835
5849
|
|
|
@@ -5932,9 +5946,6 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
|
|
|
5932
5946
|
"""The related orderline attached to the connected seller order"""
|
|
5933
5947
|
sellerOrderline: OrderLine
|
|
5934
5948
|
|
|
5935
|
-
"""The number of items ordered on this order line"""
|
|
5936
|
-
quantity: Int! @deprecated(reason: "Use the more explicit quantityOrdered instead. This will be removed on November 1, 2024.")
|
|
5937
|
-
|
|
5938
5949
|
"""The number of items ordered on this order line"""
|
|
5939
5950
|
quantityOrdered: Int!
|
|
5940
5951
|
|
|
@@ -6808,11 +6819,6 @@ type RefundLine implements Node {
|
|
|
6808
6819
|
"""
|
|
6809
6820
|
percentage: Float!
|
|
6810
6821
|
|
|
6811
|
-
"""
|
|
6812
|
-
If configured as a quantity based refund, this is the number of units refunded.
|
|
6813
|
-
"""
|
|
6814
|
-
quantity: Int! @deprecated(reason: "This value was split into quantityFulfilled and quantityUnfulfilled and will be removed on November 1, 2024")
|
|
6815
|
-
|
|
6816
6822
|
"""
|
|
6817
6823
|
If configured as a quantity based refund, this is the number of fulfilled units refunded.
|
|
6818
6824
|
"""
|
|
@@ -8040,7 +8046,7 @@ input CustomerOrderFilterInput {
|
|
|
8040
8046
|
search: String
|
|
8041
8047
|
source: [OrderSourceFilter!]
|
|
8042
8048
|
isHistorical: Boolean
|
|
8043
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
|
8049
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
|
8044
8050
|
payoutStatus: [OrderPayoutStatusEnum!]
|
|
8045
8051
|
vendorPayouts: [ID]
|
|
8046
8052
|
payouts: [ID]
|
|
@@ -8145,7 +8151,7 @@ input CustomerNauticalOrderFilterInput {
|
|
|
8145
8151
|
search: String
|
|
8146
8152
|
source: [OrderSourceFilter!]
|
|
8147
8153
|
isHistorical: Boolean
|
|
8148
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
|
8154
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
|
8149
8155
|
}
|
|
8150
8156
|
|
|
8151
8157
|
type UserPermission {
|
|
@@ -8846,12 +8852,6 @@ type Shop {
|
|
|
8846
8852
|
languageCode: LanguageCodeEnum
|
|
8847
8853
|
): [CountryDisplay!]!
|
|
8848
8854
|
|
|
8849
|
-
"""List of available currencies."""
|
|
8850
|
-
currencies: [String!]! @deprecated(reason: "This field will be removed on November 1, 2024.")
|
|
8851
|
-
|
|
8852
|
-
"""Shop's default currency."""
|
|
8853
|
-
defaultCurrency: String! @deprecated(reason: "This field will be removed on November 1, 2024.")
|
|
8854
|
-
|
|
8855
8855
|
"""List of supported currencies."""
|
|
8856
8856
|
supportedCurrencies: [NauticalCurrency!]!
|
|
8857
8857
|
|
|
@@ -10854,7 +10854,7 @@ input OrderFilterInput {
|
|
|
10854
10854
|
search: String
|
|
10855
10855
|
source: [OrderSourceFilter!]
|
|
10856
10856
|
isHistorical: Boolean
|
|
10857
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
|
10857
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
|
10858
10858
|
payoutStatus: [OrderPayoutStatusEnum!]
|
|
10859
10859
|
vendorPayouts: [ID]
|
|
10860
10860
|
payouts: [ID]
|
|
@@ -10871,7 +10871,7 @@ input NauticalOrderFilterInput {
|
|
|
10871
10871
|
search: String
|
|
10872
10872
|
source: [OrderSourceFilter!]
|
|
10873
10873
|
isHistorical: Boolean
|
|
10874
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
|
10874
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
|
10875
10875
|
}
|
|
10876
10876
|
|
|
10877
10877
|
input OrderDraftFilterInput {
|
|
@@ -10883,7 +10883,7 @@ input OrderDraftFilterInput {
|
|
|
10883
10883
|
search: String
|
|
10884
10884
|
isHistorical: Boolean
|
|
10885
10885
|
source: [OrderSourceFilter!]
|
|
10886
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
|
10886
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
|
10887
10887
|
}
|
|
10888
10888
|
|
|
10889
10889
|
input NauticalOrderDraftFilterInput {
|
|
@@ -10895,7 +10895,7 @@ input NauticalOrderDraftFilterInput {
|
|
|
10895
10895
|
search: String
|
|
10896
10896
|
isHistorical: Boolean
|
|
10897
10897
|
source: [OrderSourceFilter!]
|
|
10898
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
|
10898
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
|
10899
10899
|
}
|
|
10900
10900
|
|
|
10901
10901
|
input NauticalOrderQuoteFilterInput {
|
|
@@ -11256,11 +11256,6 @@ type MarketplaceConfiguration {
|
|
|
11256
11256
|
customerSetPasswordUrl: String
|
|
11257
11257
|
includeTaxesInPrices: Boolean!
|
|
11258
11258
|
chargeTaxesOnShipping: Boolean!
|
|
11259
|
-
|
|
11260
|
-
"""
|
|
11261
|
-
Deprecated: This field will always be overridden as True and will be removed on Nov 1, 2024.
|
|
11262
|
-
"""
|
|
11263
|
-
isSellerShippingZoneCreationAllowed: Boolean @deprecated(reason: "This field will always be overridden as True and will be removed on November 1, 2024.")
|
|
11264
11259
|
}
|
|
11265
11260
|
|
|
11266
11261
|
enum MarketplaceConfigurationPayoutAutomationStrategyEnum {
|
|
@@ -13479,7 +13474,7 @@ type Mutation {
|
|
|
13479
13474
|
description: String
|
|
13480
13475
|
|
|
13481
13476
|
"""
|
|
13482
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
|
13477
|
+
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, image/png, image/x-bmp, text/comma-separated-values, image/webp, application/x-pdf, application/x-jpg, image/svg, application/vnd.pdf, image/x-tiff, image/jpeg, image/svg+xml, application/eps, image/heic, image/x-ms-bmp, image/eps, text/svg, image/heic-sequence, text/x-pdf, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar, application/x-rar-compressed, application/x-rtf, application/x-tif, text/pdf, application/pdf, application/gzip-compressed, application/tif, application/msword, text/csv, application/csv, drawing/x-dwf, image/dxf, image/vnd.dwg, application/x-acad, application/rtf, application/x-tiff, text/svg-xml, image/heif-sequence, drawing/dwg, text/x-csv, image/x-dwg, image/x-eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/excel, application/gzipped, image/jpg, application/acrobat, application/zip, image/tif, application/x-tar, application/vnd.oasis.opendocument.text, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/rtf, application/x-dwg, application/x-dxf, application/jpg, application/vnd.oasis.opendocument.presentation, application/x-gzip, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-powerpoint, image/x-tif, image/heif, text/x-comma-separated-values, application/x-autocad, application/vnd.ms-word, pplication/vnd.rar, drawing/x-dwg, application/gzip, text/plain, application/dwg, image/x-dxf, application/x-csv, image/tiff, application/tiff, application/acad, application/dxf, image/gif, image/bmp, application/x-eps, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/svg+xml.
|
|
13483
13478
|
"""
|
|
13484
13479
|
file: Upload!
|
|
13485
13480
|
|