@nautical-commerce/graphql-schema 1.60.0-3-g2c558a772 → 1.60.0-31-gdcecd4632
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +28 -2
- 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!
|
@@ -9118,6 +9138,9 @@ type StorefrontTheme implements Node {
|
|
9118
9138
|
|
9119
9139
|
"""Font to be used on the storefront"""
|
9120
9140
|
font: Font
|
9141
|
+
|
9142
|
+
"""Font color in hex."""
|
9143
|
+
fontColor: String
|
9121
9144
|
}
|
9122
9145
|
|
9123
9146
|
"""Font for a storefront."""
|
@@ -13466,7 +13489,7 @@ type Mutation {
|
|
13466
13489
|
description: String
|
13467
13490
|
|
13468
13491
|
"""
|
13469
|
-
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: application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/pdf, drawing/dwg, application/x-tif, text/csv, application/csv, application/vnd.pdf, image/bmp, application/tiff, application/x-eps, image/png, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-eps, image/jpg, application/zip, application/x-tiff, image/x-dxf, application/svg+xml, image/x-ms-bmp, image/heif, image/x-tiff, text/plain, image/x-bmp, pplication/vnd.rar, image/svg, application/msword, drawing/x-dwg, application/x-pdf, application/excel, image/tif, application/vnd.ms-powerpoint, application/dxf, application/x-jpg, application/vnd.ms-excel, image/x-tif, application/x-csv, text/comma-separated-values, image/x-dwg, application/x-gzip, application/acrobat, image/gif, text/x-csv, application/vnd.ms-word, application/jpg, application/tif, image/svg+xml, application/x-rar-compressed, image/webp, application/x-dxf, application/gzip, image/dxf, drawing/x-dwf, application/x-rtf, image/jpeg, application/eps, application/dwg, application/rtf, image/heic-sequence, application/vnd.oasis.opendocument.text, image/tiff, image/eps, application/x-tar, application/vnd.oasis.opendocument.spreadsheet, application/x-acad, image/heic, text/svg-xml, application/gzipped, application/x-rar, image/heif-sequence, application/gzip-compressed, application/x-autocad, text/rtf, text/x-comma-separated-values, image/vnd.dwg, text/svg, application/x-zip-compressed, text/x-pdf, application/vnd.oasis.opendocument.presentation, text/pdf, application/x-dwg, application/acad.
|
13470
13493
|
"""
|
13471
13494
|
file: Upload!
|
13472
13495
|
|
@@ -18737,6 +18760,9 @@ input StorefrontThemeInput {
|
|
18737
18760
|
|
18738
18761
|
"""ID of of the selected font."""
|
18739
18762
|
font: String
|
18763
|
+
|
18764
|
+
"""Font color in hex."""
|
18765
|
+
fontColor: String
|
18740
18766
|
}
|
18741
18767
|
|
18742
18768
|
"""Update a storefront theme."""
|