@nautical-commerce/graphql-schema 1.60.0-5-g9ccba40b2 → 1.60.0-51-ge4cc46847
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +33 -3
- 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!
|
@@ -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: application/dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/bmp, application/x-rtf, image/svg, application/postscript, application/vnd.oasis.opendocument.spreadsheet, image/tif, application/vnd.oasis.opendocument.presentation, image/x-dwg, application/jpg, application/gzipped, text/csv, image/eps, application/x-tif, image/x-ms-bmp, pplication/vnd.rar, application/eps, application/vnd.ms-excel, application/svg+xml, text/svg-xml, drawing/x-dwf, application/vnd.ms-word, application/tiff, image/webp, application/gzip-compressed, application/x-rar, drawing/x-dwg, image/x-bmp, application/x-tar, image/jpeg, application/x-jpg, application/x-rar-compressed, application/msword, application/x-pdf, image/x-tiff, image/jpg, image/heic, image/heif-sequence, application/x-csv, image/svg+xml, application/zip, application/acrobat, application/x-autocad, image/x-tif, text/x-pdf, application/vnd.pdf, image/heic-sequence, image/gif, application/x-acad, application/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/comma-separated-values, text/rtf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg, application/pdf, application/csv, application/x-gzip, application/x-dxf, application/x-eps, application/vnd.oasis.opendocument.text, image/heif, image/png, image/x-eps, application/rtf, application/tif, application/dxf, application/gzip, text/pdf, text/x-comma-separated-values, drawing/dwg, image/tiff, text/x-csv, image/dxf, application/x-dwg, application/vnd.ms-powerpoint, application/excel, application/acad, text/plain, image/vnd.dwg.
|
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(
|
@@ -24086,6 +24106,11 @@ input UserCreateInput {
|
|
24086
24106
|
"""Marketplace VAT identification number"""
|
24087
24107
|
vatIdentificationNumber: String
|
24088
24108
|
|
24109
|
+
"""
|
24110
|
+
Indicates whether a 'set password' email should be sent to the customer.
|
24111
|
+
"""
|
24112
|
+
sendCustomerSetPasswordEmail: Boolean
|
24113
|
+
|
24089
24114
|
"""
|
24090
24115
|
URL of a view where users should be redirected to set the password. URL in RFC 1808 format.
|
24091
24116
|
"""
|
@@ -24140,6 +24165,11 @@ input CustomerInput {
|
|
24140
24165
|
|
24141
24166
|
"""Marketplace VAT identification number"""
|
24142
24167
|
vatIdentificationNumber: String
|
24168
|
+
|
24169
|
+
"""
|
24170
|
+
Indicates whether a 'set password' email should be sent to the customer.
|
24171
|
+
"""
|
24172
|
+
sendCustomerSetPasswordEmail: Boolean
|
24143
24173
|
}
|
24144
24174
|
|
24145
24175
|
"""Deletes a customer."""
|