@nautical-commerce/graphql-schema 1.60.0-10-g53d6fb43a → 1.60.0-12-gbf320c055
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +19 -2
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3893,7 +3893,7 @@ type Order implements Node & ObjectWithMetadata {
|
|
3893
3893
|
"""Summary of all payouts of this order"""
|
3894
3894
|
payoutsSummary(
|
3895
3895
|
"""Order payout status."""
|
3896
|
-
payoutStatus:
|
3896
|
+
payoutStatus: PayoutStatusEnum
|
3897
3897
|
): [OrderPayoutSummary!]!
|
3898
3898
|
|
3899
3899
|
"""Remaining available balance to be paid out."""
|
@@ -7195,6 +7195,23 @@ type OrderPayoutSummary {
|
|
7195
7195
|
vendorPayout: VendorPayout!
|
7196
7196
|
}
|
7197
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
|
+
|
7198
7215
|
type AgreementSellersCountableConnection {
|
7199
7216
|
"""Pagination data for this connection."""
|
7200
7217
|
pageInfo: PageInfo!
|
@@ -13472,7 +13489,7 @@ type Mutation {
|
|
13472
13489
|
description: String
|
13473
13490
|
|
13474
13491
|
"""
|
13475
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
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-ms-bmp, application/gzip, application/x-dwg, image/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/eps, application/zip, application/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/dwg, image/svg, application/vnd.oasis.opendocument.presentation, drawing/x-dwf, application/x-rar, application/acrobat, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar-compressed, image/x-eps, application/x-dxf, image/x-dxf, application/csv, image/gif, application/jpg, image/bmp, image/jpeg, pplication/vnd.rar, image/tiff, text/plain, application/vnd.ms-word, application/postscript, application/tif, application/vnd.ms-powerpoint, text/comma-separated-values, application/gzip-compressed, application/gzipped, text/svg-xml, image/dxf, image/x-dwg, application/dxf, text/x-pdf, text/pdf, application/x-csv, image/png, image/jpg, application/vnd.ms-excel, image/heic, application/tiff, application/x-tiff, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/rtf, application/x-rtf, application/msword, image/x-tif, image/vnd.dwg, text/x-comma-separated-values, image/webp, image/tif, image/x-tiff, application/excel, application/x-autocad, text/csv, application/x-acad, image/eps, application/svg+xml, application/x-tar, application/pdf, application/x-tif, image/heif-sequence, application/rtf, drawing/x-dwg, application/x-gzip, image/x-bmp, application/x-jpg, application/vnd.oasis.opendocument.text, application/acad, application/vnd.oasis.opendocument.spreadsheet, application/vnd.pdf, drawing/dwg, text/x-csv, image/heic-sequence, application/x-eps, text/svg, image/heif.
|
13476
13493
|
"""
|
13477
13494
|
file: Upload!
|
13478
13495
|
|