@nautical-commerce/graphql-schema 1.60.0-1-g359238032 → 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 +28 -5
- 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!
|
@@ -8996,9 +9016,6 @@ type Domain {
|
|
8996
9016
|
"""The host name of the domain."""
|
8997
9017
|
host: String!
|
8998
9018
|
|
8999
|
-
"""Inform if SSL is enabled."""
|
9000
|
-
sslEnabled: Boolean! @deprecated(reason: "This will be removed on November 14, 2024")
|
9001
|
-
|
9002
9019
|
"""Shop's absolute URL."""
|
9003
9020
|
url: String!
|
9004
9021
|
}
|
@@ -9121,6 +9138,9 @@ type StorefrontTheme implements Node {
|
|
9121
9138
|
|
9122
9139
|
"""Font to be used on the storefront"""
|
9123
9140
|
font: Font
|
9141
|
+
|
9142
|
+
"""Font color in hex."""
|
9143
|
+
fontColor: String
|
9124
9144
|
}
|
9125
9145
|
|
9126
9146
|
"""Font for a storefront."""
|
@@ -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:
|
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.
|
13473
13493
|
"""
|
13474
13494
|
file: Upload!
|
13475
13495
|
|
@@ -18740,6 +18760,9 @@ input StorefrontThemeInput {
|
|
18740
18760
|
|
18741
18761
|
"""ID of of the selected font."""
|
18742
18762
|
font: String
|
18763
|
+
|
18764
|
+
"""Font color in hex."""
|
18765
|
+
fontColor: String
|
18743
18766
|
}
|
18744
18767
|
|
18745
18768
|
"""Update a storefront theme."""
|