@nautical-commerce/graphql-schema 1.60.0 → 1.61.0-1-gda19ec096
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +39 -6
- 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: image/webp, drawing/x-dwg, application/dxf, image/tif, application/x-autocad, application/msword, application/vnd.ms-powerpoint, image/x-tiff, application/vnd.oasis.opendocument.presentation, image/vnd.dwg, text/csv, application/tiff, application/tif, application/postscript, text/x-csv, application/zip, application/gzip-compressed, application/gzip, application/x-gzip, application/rtf, image/heif, image/heif-sequence, image/dxf, application/x-rar-compressed, application/x-tar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/dwg, application/x-tif, application/vnd.ms-excel, application/x-rtf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/eps, application/vnd.pdf, text/plain, application/pdf, application/eps, application/excel, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/svg+xml, image/bmp, application/csv, application/x-rar, text/rtf, application/svg+xml, application/gzipped, image/png, application/x-acad, application/acrobat, drawing/x-dwf, application/x-dxf, image/x-ms-bmp, application/acad, image/heic-sequence, application/vnd.oasis.opendocument.spreadsheet, application/x-jpg, application/x-dwg, application/jpg, image/jpeg, application/vnd.oasis.opendocument.text, text/x-pdf, image/x-dxf, text/x-comma-separated-values, application/x-csv, image/x-tif, application/vnd.ms-word, application/x-zip-compressed, image/gif, application/x-tiff, pplication/vnd.rar, text/comma-separated-values, image/x-dwg, text/svg, image/jpg, image/svg, application/x-eps, application/dwg, image/tiff, text/svg-xml, image/x-bmp, text/pdf, image/heic, image/x-eps, application/x-pdf.
|
13473
13493
|
"""
|
13474
13494
|
file: Upload!
|
13475
13495
|
|
@@ -15098,7 +15118,7 @@ type Mutation {
|
|
15098
15118
|
nauticalHistoricalOrderCreate(
|
15099
15119
|
"""Fields required to create an historical order."""
|
15100
15120
|
input: NauticalHistoricalOrderInput!
|
15101
|
-
): NauticalHistoricalOrderCreate
|
15121
|
+
): NauticalHistoricalOrderCreate @deprecated(reason: "This mutation will be removed on February 18, 2025")
|
15102
15122
|
|
15103
15123
|
"""Deletes a draft order."""
|
15104
15124
|
draftOrderDelete(
|
@@ -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."""
|
@@ -24083,6 +24106,11 @@ input UserCreateInput {
|
|
24083
24106
|
"""Marketplace VAT identification number"""
|
24084
24107
|
vatIdentificationNumber: String
|
24085
24108
|
|
24109
|
+
"""
|
24110
|
+
Indicates whether a 'set password' email should be sent to the customer.
|
24111
|
+
"""
|
24112
|
+
sendCustomerSetPasswordEmail: Boolean
|
24113
|
+
|
24086
24114
|
"""
|
24087
24115
|
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
24088
24116
|
"""
|
@@ -24137,6 +24165,11 @@ input CustomerInput {
|
|
24137
24165
|
|
24138
24166
|
"""Marketplace VAT identification number"""
|
24139
24167
|
vatIdentificationNumber: String
|
24168
|
+
|
24169
|
+
"""
|
24170
|
+
Indicates whether a 'set password' email should be sent to the customer.
|
24171
|
+
"""
|
24172
|
+
sendCustomerSetPasswordEmail: Boolean
|
24140
24173
|
}
|
24141
24174
|
|
24142
24175
|
"""Deletes a customer."""
|