@nautical-commerce/graphql-schema 1.60.0-1-g359238032 → 1.60.0-10-g53d6fb43a
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +11 -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: OrderPayoutStatusEnum
|
3897
|
+
): [OrderPayoutSummary!]!
|
3895
3898
|
|
3896
3899
|
"""Remaining available balance to be paid out."""
|
3897
3900
|
availablePayoutBalance: Money
|
@@ -8996,9 +8999,6 @@ type Domain {
|
|
8996
8999
|
"""The host name of the domain."""
|
8997
9000
|
host: String!
|
8998
9001
|
|
8999
|
-
"""Inform if SSL is enabled."""
|
9000
|
-
sslEnabled: Boolean! @deprecated(reason: "This will be removed on November 14, 2024")
|
9001
|
-
|
9002
9002
|
"""Shop's absolute URL."""
|
9003
9003
|
url: String!
|
9004
9004
|
}
|
@@ -9121,6 +9121,9 @@ type StorefrontTheme implements Node {
|
|
9121
9121
|
|
9122
9122
|
"""Font to be used on the storefront"""
|
9123
9123
|
font: Font
|
9124
|
+
|
9125
|
+
"""Font color in hex."""
|
9126
|
+
fontColor: String
|
9124
9127
|
}
|
9125
9128
|
|
9126
9129
|
"""Font for a storefront."""
|
@@ -13469,7 +13472,7 @@ type Mutation {
|
|
13469
13472
|
description: String
|
13470
13473
|
|
13471
13474
|
"""
|
13472
|
-
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-
|
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/acrobat, image/x-ms-bmp, drawing/dwg, application/x-jpg, image/x-eps, image/heic-sequence, image/heic, application/x-autocad, image/x-tiff, text/plain, application/x-tif, application/gzip-compressed, text/x-csv, application/vnd.oasis.opendocument.presentation, application/x-rar, application/msword, application/x-tar, text/x-comma-separated-values, application/svg+xml, application/dxf, application/jpg, application/x-dxf, application/tiff, image/svg+xml, image/jpg, application/gzipped, drawing/x-dwg, image/jpeg, application/x-rar-compressed, application/vnd.ms-excel, application/x-tiff, application/x-zip-compressed, application/x-eps, image/heif, application/x-csv, application/x-pdf, image/x-tif, application/vnd.oasis.opendocument.spreadsheet, image/vnd.dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, pplication/vnd.rar, application/vnd.oasis.opendocument.text, image/tif, text/rtf, application/x-dwg, image/heif-sequence, image/x-bmp, image/webp, application/gzip, text/pdf, text/comma-separated-values, text/x-pdf, application/postscript, image/bmp, application/zip, application/vnd.pdf, image/tiff, application/vnd.ms-powerpoint, image/x-dwg, application/tif, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-acad, text/csv, application/csv, image/svg, application/x-gzip, application/excel, drawing/x-dwf, text/svg, application/eps, application/x-rtf, text/svg-xml, image/png, application/acad, image/dxf, application/pdf, image/x-dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/rtf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/eps, application/dwg, image/gif.
|
13473
13476
|
"""
|
13474
13477
|
file: Upload!
|
13475
13478
|
|
@@ -18740,6 +18743,9 @@ input StorefrontThemeInput {
|
|
18740
18743
|
|
18741
18744
|
"""ID of of the selected font."""
|
18742
18745
|
font: String
|
18746
|
+
|
18747
|
+
"""Font color in hex."""
|
18748
|
+
fontColor: String
|
18743
18749
|
}
|
18744
18750
|
|
18745
18751
|
"""Update a storefront theme."""
|