@nautical-commerce/graphql-schema 1.60.0-4-g12a4ba9b7 → 1.60.0-41-gf11b9f2c7
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +23 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3891,7 +3891,10 @@ type Order implements Node & ObjectWithMetadata {
|
|
3891
3891
|
payoutStatus: OrderPayoutStatusEnum
|
3892
3892
|
|
3893
3893
|
"""Summary of all payouts of this order"""
|
3894
|
-
payoutsSummary
|
3894
|
+
payoutsSummary(
|
3895
|
+
"""Order payout status."""
|
3896
|
+
payoutStatus: PayoutStatusEnum
|
3897
|
+
): [OrderPayoutSummary!]!
|
3895
3898
|
|
3896
3899
|
"""Remaining available balance to be paid out."""
|
3897
3900
|
availablePayoutBalance: Money
|
@@ -7192,6 +7195,23 @@ type OrderPayoutSummary {
|
|
7192
7195
|
vendorPayout: VendorPayout!
|
7193
7196
|
}
|
7194
7197
|
|
7198
|
+
enum PayoutStatusEnum {
|
7199
|
+
"""Draft"""
|
7200
|
+
DRAFT
|
7201
|
+
|
7202
|
+
"""Paid"""
|
7203
|
+
PAID
|
7204
|
+
|
7205
|
+
"""Archived"""
|
7206
|
+
ARCHIVED
|
7207
|
+
|
7208
|
+
"""Locked"""
|
7209
|
+
LOCKED
|
7210
|
+
|
7211
|
+
"""Error"""
|
7212
|
+
ERROR
|
7213
|
+
}
|
7214
|
+
|
7195
7215
|
type AgreementSellersCountableConnection {
|
7196
7216
|
"""Pagination data for this connection."""
|
7197
7217
|
pageInfo: PageInfo!
|
@@ -13469,7 +13489,7 @@ type Mutation {
|
|
13469
13489
|
description: String
|
13470
13490
|
|
13471
13491
|
"""
|
13472
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
13492
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-dxf, application/x-acad, image/x-dwg, text/svg-xml, application/vnd.oasis.opendocument.text, application/x-rar-compressed, image/x-eps, application/rtf, application/x-rar, image/heif, image/x-bmp, drawing/dwg, text/pdf, image/gif, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.presentationml.presentation, drawing/x-dwf, application/postscript, application/gzip, image/bmp, application/x-csv, application/x-dwg, text/rtf, text/x-pdf, application/x-rtf, application/x-autocad, application/vnd.oasis.opendocument.presentation, image/eps, application/gzip-compressed, application/x-tiff, image/vnd.dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.pdf, text/plain, application/dwg, text/x-csv, application/x-tif, image/jpg, image/svg+xml, application/tiff, application/acad, application/x-zip-compressed, application/dxf, image/jpeg, image/dxf, application/pdf, application/x-dxf, application/excel, text/comma-separated-values, application/x-tar, image/x-tiff, application/vnd.ms-powerpoint, image/heic-sequence, image/heif-sequence, image/webp, image/tiff, application/csv, application/x-jpg, application/vnd.oasis.opendocument.spreadsheet, application/zip, image/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/msword, application/x-pdf, text/csv, application/jpg, image/png, pplication/vnd.rar, application/x-eps, application/x-gzip, image/svg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, drawing/x-dwg, application/eps, image/heic, application/vnd.ms-excel, application/svg+xml, application/gzipped, application/acrobat, image/tif, text/svg, application/vnd.ms-word, text/x-comma-separated-values, application/tif.
|
13473
13493
|
"""
|
13474
13494
|
file: Upload!
|
13475
13495
|
|
@@ -15098,7 +15118,7 @@ type Mutation {
|
|
15098
15118
|
nauticalHistoricalOrderCreate(
|
15099
15119
|
"""Fields required to create an historical order."""
|
15100
15120
|
input: NauticalHistoricalOrderInput!
|
15101
|
-
): NauticalHistoricalOrderCreate
|
15121
|
+
): NauticalHistoricalOrderCreate @deprecated(reason: "This mutation will be removed on February 18, 2025")
|
15102
15122
|
|
15103
15123
|
"""Deletes a draft order."""
|
15104
15124
|
draftOrderDelete(
|