@nautical-commerce/graphql-schema 1.60.0-11-g392353ea7 → 1.60.0-2-g937a95b9e
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +5 -28
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3891,10 +3891,7 @@ type Order implements Node & ObjectWithMetadata {
|
|
3891
3891
|
payoutStatus: OrderPayoutStatusEnum
|
3892
3892
|
|
3893
3893
|
"""Summary of all payouts of this order"""
|
3894
|
-
payoutsSummary
|
3895
|
-
"""Order payout status."""
|
3896
|
-
payoutStatus: PayoutStatusEnum
|
3897
|
-
): [OrderPayoutSummary!]!
|
3894
|
+
payoutsSummary: [OrderPayoutSummary!]!
|
3898
3895
|
|
3899
3896
|
"""Remaining available balance to be paid out."""
|
3900
3897
|
availablePayoutBalance: Money
|
@@ -7195,23 +7192,6 @@ type OrderPayoutSummary {
|
|
7195
7192
|
vendorPayout: VendorPayout!
|
7196
7193
|
}
|
7197
7194
|
|
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
|
-
|
7215
7195
|
type AgreementSellersCountableConnection {
|
7216
7196
|
"""Pagination data for this connection."""
|
7217
7197
|
pageInfo: PageInfo!
|
@@ -9016,6 +8996,9 @@ type Domain {
|
|
9016
8996
|
"""The host name of the domain."""
|
9017
8997
|
host: String!
|
9018
8998
|
|
8999
|
+
"""Inform if SSL is enabled."""
|
9000
|
+
sslEnabled: Boolean! @deprecated(reason: "This will be removed on November 14, 2024")
|
9001
|
+
|
9019
9002
|
"""Shop's absolute URL."""
|
9020
9003
|
url: String!
|
9021
9004
|
}
|
@@ -9138,9 +9121,6 @@ type StorefrontTheme implements Node {
|
|
9138
9121
|
|
9139
9122
|
"""Font to be used on the storefront"""
|
9140
9123
|
font: Font
|
9141
|
-
|
9142
|
-
"""Font color in hex."""
|
9143
|
-
fontColor: String
|
9144
9124
|
}
|
9145
9125
|
|
9146
9126
|
"""Font for a storefront."""
|
@@ -13489,7 +13469,7 @@ type Mutation {
|
|
13489
13469
|
description: String
|
13490
13470
|
|
13491
13471
|
"""
|
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,
|
13472
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-eps, drawing/x-dwg, application/gzip-compressed, application/acad, text/svg, application/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpeg, text/x-csv, application/vnd.pdf, application/dwg, application/x-tiff, application/x-gzip, image/svg+xml, text/pdf, application/svg+xml, text/svg-xml, image/eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heic, application/x-autocad, application/x-rar-compressed, application/acrobat, text/rtf, image/jpg, image/heic-sequence, application/x-jpg, application/x-csv, image/heif-sequence, application/excel, drawing/x-dwf, image/tiff, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-tiff, application/x-dxf, image/x-bmp, application/x-tar, image/vnd.dwg, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, application/x-tif, application/msword, application/eps, application/vnd.ms-word, text/x-comma-separated-values, image/tif, image/x-ms-bmp, image/bmp, image/png, application/vnd.oasis.opendocument.presentation, image/x-dwg, drawing/dwg, application/x-rtf, application/csv, image/heif, application/x-zip-compressed, application/jpg, image/dxf, image/svg, image/x-dxf, application/vnd.oasis.opendocument.spreadsheet, text/x-pdf, application/vnd.ms-powerpoint, application/x-dwg, text/plain, image/gif, image/webp, application/postscript, text/comma-separated-values, application/vnd.oasis.opendocument.text, application/rtf, application/x-acad, application/tiff, image/x-eps, text/csv, application/gzipped, application/vnd.ms-excel, application/dxf, pplication/vnd.rar, application/gzip, application/zip, application/pdf, application/tif.
|
13493
13473
|
"""
|
13494
13474
|
file: Upload!
|
13495
13475
|
|
@@ -18760,9 +18740,6 @@ input StorefrontThemeInput {
|
|
18760
18740
|
|
18761
18741
|
"""ID of of the selected font."""
|
18762
18742
|
font: String
|
18763
|
-
|
18764
|
-
"""Font color in hex."""
|
18765
|
-
fontColor: String
|
18766
18743
|
}
|
18767
18744
|
|
18768
18745
|
"""Update a storefront theme."""
|