@nautical-commerce/graphql-schema 1.58.1-5-ga75ba72cd → 1.58.1-51-g078f4f659
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +38 -16
- 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!
|
@@ -4384,14 +4414,6 @@ input ProductOrder {
|
|
4384
4414
|
field: ProductOrderField
|
4385
4415
|
}
|
4386
4416
|
|
4387
|
-
enum OrderDirection {
|
4388
|
-
"""Specifies an ascending sort order."""
|
4389
|
-
ASC
|
4390
|
-
|
4391
|
-
"""Specifies a descending sort order."""
|
4392
|
-
DESC
|
4393
|
-
}
|
4394
|
-
|
4395
4417
|
enum ProductOrderField {
|
4396
4418
|
"""Sort products by name."""
|
4397
4419
|
NAME
|
@@ -8024,7 +8046,7 @@ input CustomerOrderFilterInput {
|
|
8024
8046
|
search: String
|
8025
8047
|
source: [OrderSourceFilter!]
|
8026
8048
|
isHistorical: Boolean
|
8027
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
8049
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
8028
8050
|
payoutStatus: [OrderPayoutStatusEnum!]
|
8029
8051
|
vendorPayouts: [ID]
|
8030
8052
|
payouts: [ID]
|
@@ -8129,7 +8151,7 @@ input CustomerNauticalOrderFilterInput {
|
|
8129
8151
|
search: String
|
8130
8152
|
source: [OrderSourceFilter!]
|
8131
8153
|
isHistorical: Boolean
|
8132
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
8154
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
8133
8155
|
}
|
8134
8156
|
|
8135
8157
|
type UserPermission {
|
@@ -10832,7 +10854,7 @@ input OrderFilterInput {
|
|
10832
10854
|
search: String
|
10833
10855
|
source: [OrderSourceFilter!]
|
10834
10856
|
isHistorical: Boolean
|
10835
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
10857
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10836
10858
|
payoutStatus: [OrderPayoutStatusEnum!]
|
10837
10859
|
vendorPayouts: [ID]
|
10838
10860
|
payouts: [ID]
|
@@ -10849,7 +10871,7 @@ input NauticalOrderFilterInput {
|
|
10849
10871
|
search: String
|
10850
10872
|
source: [OrderSourceFilter!]
|
10851
10873
|
isHistorical: Boolean
|
10852
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
10874
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10853
10875
|
}
|
10854
10876
|
|
10855
10877
|
input OrderDraftFilterInput {
|
@@ -10861,7 +10883,7 @@ input OrderDraftFilterInput {
|
|
10861
10883
|
search: String
|
10862
10884
|
isHistorical: Boolean
|
10863
10885
|
source: [OrderSourceFilter!]
|
10864
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
10886
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10865
10887
|
}
|
10866
10888
|
|
10867
10889
|
input NauticalOrderDraftFilterInput {
|
@@ -10873,7 +10895,7 @@ input NauticalOrderDraftFilterInput {
|
|
10873
10895
|
search: String
|
10874
10896
|
isHistorical: Boolean
|
10875
10897
|
source: [OrderSourceFilter!]
|
10876
|
-
subStatus: [OfferOrderSubStatusFilter!]
|
10898
|
+
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10877
10899
|
}
|
10878
10900
|
|
10879
10901
|
input NauticalOrderQuoteFilterInput {
|
@@ -13452,7 +13474,7 @@ type Mutation {
|
|
13452
13474
|
description: String
|
13453
13475
|
|
13454
13476
|
"""
|
13455
|
-
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/vnd.pdf, application/acad, application/gzipped, application/pdf, application/x-autocad, image/svg, application/x-csv, application/postscript, drawing/dwg, image/heic, text/comma-separated-values, application/tif, image/webp, image/x-eps, image/png, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/dxf, image/eps, application/svg+xml, application/csv, image/x-dxf, application/vnd.ms-word, application/dwg, application/x-tar, image/jpg, image/bmp, image/heif-sequence, application/x-tif, text/rtf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.text, image/x-bmp, application/x-acad, text/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-eps, application/vnd.oasis.opendocument.presentation, image/x-dwg, image/tiff, image/svg+xml, application/x-zip-compressed, image/x-ms-bmp, application/x-tiff, drawing/x-dwg, application/rtf, application/excel, application/x-rar, application/vnd.ms-excel, image/x-tiff, drawing/x-dwf, application/x-pdf, image/jpeg, image/x-tif, application/msword, image/heif, text/x-pdf, image/heic-sequence, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg, pplication/vnd.rar, text/svg-xml, application/vnd.ms-powerpoint, application/x-dxf, application/x-dwg, application/x-gzip, image/gif, image/vnd.dwg, application/vnd.oasis.opendocument.spreadsheet, text/plain, text/x-comma-separated-values, text/pdf, application/gzip-compressed, application/x-rtf, application/jpg, application/zip, image/tif, application/x-jpg, application/acrobat, application/eps, text/x-csv, application/dxf, application/tiff.
|
13456
13478
|
"""
|
13457
13479
|
file: Upload!
|
13458
13480
|
|