@nautical-commerce/graphql-schema 1.80.0-21-ga908aef7b → 1.80.0-23-gd78d93441
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 +1 -58
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1427,19 +1427,6 @@ type Query {
|
|
1427
1427
|
"""Return the last n elements from the list."""
|
1428
1428
|
last: Int
|
1429
1429
|
): FulfillmentCountableConnection
|
1430
|
-
optimizedHome(
|
1431
|
-
"""True if getting marketplace view"""
|
1432
|
-
isMarketplace: Boolean!
|
1433
|
-
|
1434
|
-
"""Vendor identifier to scope data to"""
|
1435
|
-
identifier: ID
|
1436
|
-
|
1437
|
-
"""Start date to filter cards and order data"""
|
1438
|
-
startDate: Date!
|
1439
|
-
|
1440
|
-
"""End date to filter cards and order data"""
|
1441
|
-
endDate: Date!
|
1442
|
-
): OptimizedHome @deprecated(reason: "This will be removed on April 29, 2025.")
|
1443
1430
|
|
1444
1431
|
"""Return requested nautical configuration item"""
|
1445
1432
|
nauticalConfiguration(
|
@@ -11125,17 +11112,6 @@ enum ReturnFulfillmentSortField {
|
|
11125
11112
|
RETURN_STATUS
|
11126
11113
|
}
|
11127
11114
|
|
11128
|
-
type OptimizedHome {
|
11129
|
-
sales: TaxedMoney
|
11130
|
-
orders: Int
|
11131
|
-
toFulfill: Int
|
11132
|
-
toCapture: Int
|
11133
|
-
outOfStock: Int
|
11134
|
-
topProducts: [ProductVariant!]!
|
11135
|
-
sellerActivities: [OrderEvent!]!
|
11136
|
-
marketplaceActivities: [NauticalOrderEvent!]!
|
11137
|
-
}
|
11138
|
-
|
11139
11115
|
"""Represents a nautical configuration resource."""
|
11140
11116
|
type NauticalConfiguration {
|
11141
11117
|
"""Primary key name of the configuration item"""
|
@@ -12481,7 +12457,7 @@ type Mutation {
|
|
12481
12457
|
description: String
|
12482
12458
|
|
12483
12459
|
"""
|
12484
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12460
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/dwg, application/x-dwg, application/x-rar-compressed, text/pdf, image/eps, text/svg, application/gzipped, application/vnd.ms-excel, image/x-eps, application/vnd.oasis.opendocument.text, application/acad, application/vnd.oasis.opendocument.spreadsheet, text/x-pdf, application/vnd.pdf, image/x-tif, application/dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-tiff, image/heic-sequence, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/svg+xml, application/x-rtf, image/tif, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/dxf, application/x-jpg, application/excel, application/zip, image/webp, image/svg, application/x-autocad, application/x-zip-compressed, application/acrobat, image/x-bmp, application/x-rar, image/vnd.dwg, application/x-tif, application/vnd.ms-word, image/heif, application/msword, text/x-comma-separated-values, image/x-tiff, application/x-eps, text/csv, pplication/vnd.rar, application/jpg, image/bmp, application/tiff, drawing/x-dwf, text/comma-separated-values, image/heif-sequence, image/x-ms-bmp, application/dxf, text/x-csv, application/gzip, application/x-csv, application/rtf, text/rtf, application/x-dxf, application/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-powerpoint, image/heic, text/svg-xml, application/postscript, application/vnd.oasis.opendocument.presentation, image/png, image/tiff, image/jpeg, drawing/x-dwg, text/plain, image/jpg, image/gif, application/tif, image/svg+xml, application/eps, image/x-dxf, application/gzip-compressed, application/x-gzip, application/x-acad, application/x-pdf, image/x-dwg, application/x-tar.
|
12485
12461
|
"""
|
12486
12462
|
file: Upload!
|
12487
12463
|
|
@@ -14872,12 +14848,6 @@ type Mutation {
|
|
14872
14848
|
input: ExportProductsInput!
|
14873
14849
|
): ProductsExport
|
14874
14850
|
|
14875
|
-
"""Import products with csv file."""
|
14876
|
-
productsImport(
|
14877
|
-
"""Represents a file in a multipart request."""
|
14878
|
-
file: Upload!
|
14879
|
-
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
14880
|
-
|
14881
14851
|
"""Adds a gift card or a voucher to a checkout."""
|
14882
14852
|
checkoutAddPromoCode(
|
14883
14853
|
"""Checkout ID."""
|
@@ -21558,33 +21528,6 @@ enum FileTypesEnum {
|
|
21558
21528
|
XLSX
|
21559
21529
|
}
|
21560
21530
|
|
21561
|
-
"""Import products with csv file."""
|
21562
|
-
type ProductsImport {
|
21563
|
-
"""The newly created import file which is responsible for import data."""
|
21564
|
-
importFile: ImportFile
|
21565
|
-
importErrors: [ImportError!]!
|
21566
|
-
}
|
21567
|
-
|
21568
|
-
type ImportError {
|
21569
|
-
"""
|
21570
|
-
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
21571
|
-
"""
|
21572
|
-
field: String
|
21573
|
-
|
21574
|
-
"""The error message."""
|
21575
|
-
message: String!
|
21576
|
-
|
21577
|
-
"""The error code."""
|
21578
|
-
code: ImportErrorCode!
|
21579
|
-
}
|
21580
|
-
|
21581
|
-
"""An enumeration."""
|
21582
|
-
enum ImportErrorCode {
|
21583
|
-
INVALID
|
21584
|
-
NOT_FOUND
|
21585
|
-
REQUIRED
|
21586
|
-
}
|
21587
|
-
|
21588
21531
|
"""Adds a gift card or a voucher to a checkout."""
|
21589
21532
|
type CheckoutAddPromoCode {
|
21590
21533
|
"""The checkout with the added gift card or voucher."""
|