@nautical-commerce/graphql-schema 1.58.1-41-gd7473e2e4 → 1.58.1-43-gb33f66b89
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +31 -9
- 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
|
|
@@ -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
|
@@ -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: image/heic-sequence, text/csv, text/pdf, application/vnd.ms-word, drawing/dwg, image/tif, application/gzip-compressed, application/gzipped, application/msword, application/x-dwg, text/rtf, drawing/x-dwf, application/x-dxf, image/x-tiff, application/x-autocad, application/x-csv, application/vnd.oasis.opendocument.presentation, image/x-eps, application/x-zip-compressed, application/vnd.oasis.opendocument.text, image/x-tif, text/svg-xml, application/x-rar, application/x-jpg, image/dxf, image/heif-sequence, text/x-csv, application/vnd.oasis.opendocument.spreadsheet, image/x-bmp, application/eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heif, application/x-tiff, application/pdf, image/jpg, application/gzip, text/x-pdf, application/dwg, text/plain, pplication/vnd.rar, application/vnd.ms-powerpoint, image/png, text/x-comma-separated-values, application/excel, application/x-eps, image/gif, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, application/acad, application/acrobat, application/tiff, drawing/x-dwg, image/tiff, application/x-gzip, application/svg+xml, image/eps, text/comma-separated-values, application/jpg, application/x-pdf, image/bmp, image/heic, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tar, image/vnd.dwg, image/webp, application/tif, image/svg, image/x-dxf, image/x-ms-bmp, image/jpeg, text/svg, image/x-dwg, application/csv, application/zip, application/dxf, application/vnd.ms-excel, application/postscript, application/vnd.pdf, application/x-tif, application/x-acad.
|
13456
13478
|
"""
|
13457
13479
|
file: Upload!
|
13458
13480
|
|