@nautical-commerce/graphql-schema 1.60.0-10-g53d6fb43a → 1.60.0-11-g392353ea7
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: 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: drawing/x-dwg, application/gzip-compressed, image/heif-sequence, application/postscript, application/vnd.oasis.opendocument.spreadsheet, image/png, application/tiff, application/x-csv, application/x-dxf, image/x-tif, image/bmp, application/x-rar-compressed, text/rtf, text/svg, application/x-rtf, image/x-dxf, image/vnd.dwg, application/vnd.oasis.opendocument.presentation, image/x-eps, application/jpg, application/x-acad, application/vnd.oasis.opendocument.text, text/svg-xml, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-ms-bmp, application/pdf, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-gzip, image/x-dwg, application/x-tiff, application/x-pdf, application/dxf, application/x-jpg, image/heic, text/plain, application/rtf, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/pdf, text/x-comma-separated-values, application/csv, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-bmp, image/svg+xml, image/gif, application/x-autocad, application/vnd.ms-word, text/csv, application/gzip, image/dxf, pplication/vnd.rar, application/svg+xml, application/acad, application/vnd.pdf, application/x-tar, application/excel, drawing/dwg, application/x-zip-compressed, image/svg, drawing/x-dwf, application/zip, application/gzipped, application/vnd.ms-excel, application/dwg, image/tif, application/eps, application/vnd.ms-powerpoint, application/x-dwg, image/heic-sequence, image/tiff, text/comma-separated-values, image/heif, text/x-pdf, application/acrobat, application/msword, image/webp, image/eps, application/x-eps, application/x-rar, text/x-csv, image/jpeg, application/x-tif, application/tif.
|
13476
13493
|
"""
|
13477
13494
|
file: Upload!
|
13478
13495
|
|