@nautical-commerce/graphql-schema 1.80.0-23-gd78d93441 → 1.80.0-24-g71f536158
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nautical/schema.graphql +1 -23
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12457,7 +12457,7 @@ type Mutation {
|
|
12457
12457
|
description: String
|
12458
12458
|
|
12459
12459
|
"""
|
12460
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12460
|
+
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-tif, image/vnd.dwg, application/x-tar, application/x-rtf, application/excel, image/x-dxf, image/heif, application/pdf, image/jpg, application/x-gzip, image/tif, image/x-dwg, application/x-dxf, text/svg, image/x-tiff, text/x-csv, application/tif, application/svg+xml, application/rtf, application/acad, application/x-pdf, pplication/vnd.rar, application/vnd.ms-word, application/x-autocad, image/x-ms-bmp, text/x-pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/heic-sequence, application/vnd.pdf, application/eps, application/tiff, application/vnd.ms-excel, text/svg-xml, application/x-zip-compressed, image/svg, text/comma-separated-values, image/heic, application/csv, application/dwg, application/x-jpg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/dxf, application/acrobat, application/vnd.ms-powerpoint, application/x-rar, application/vnd.oasis.opendocument.text, application/x-rar-compressed, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-csv, application/x-tiff, image/svg+xml, application/jpg, image/gif, image/x-eps, drawing/x-dwg, application/msword, image/jpeg, application/gzip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.presentation, application/gzipped, drawing/dwg, application/x-acad, application/postscript, text/plain, text/csv, image/webp, application/dxf, image/x-bmp, application/x-tif, image/eps, application/gzip, application/vnd.oasis.opendocument.spreadsheet, text/x-comma-separated-values, text/rtf, image/png, image/tiff, text/pdf, application/x-dwg, application/x-eps, image/bmp, image/heif-sequence, drawing/x-dwf, application/zip.
|
12461
12461
|
"""
|
12462
12462
|
file: Upload!
|
12463
12463
|
|
@@ -12553,15 +12553,6 @@ type Mutation {
|
|
12553
12553
|
input: PayoutStatusInput
|
12554
12554
|
): PayoutStatusUpdate
|
12555
12555
|
|
12556
|
-
"""Modifies the dates of a payout"""
|
12557
|
-
payoutDatesUpdate(
|
12558
|
-
"""ID of the payout to update."""
|
12559
|
-
id: ID!
|
12560
|
-
|
12561
|
-
"""Fields required to update a payout date range."""
|
12562
|
-
input: PayoutDatesInput!
|
12563
|
-
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
12564
|
-
|
12565
12556
|
"""Process a payout asynchronously."""
|
12566
12557
|
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12567
12558
|
|
@@ -16020,19 +16011,6 @@ input VendorPayoutDetails {
|
|
16020
16011
|
payout: String
|
16021
16012
|
}
|
16022
16013
|
|
16023
|
-
"""Modifies the dates of a payout"""
|
16024
|
-
type PayoutDatesUpdate {
|
16025
|
-
payoutErrors: [PayoutError!]!
|
16026
|
-
payout: Payout
|
16027
|
-
}
|
16028
|
-
|
16029
|
-
input PayoutDatesInput {
|
16030
|
-
"""
|
16031
|
-
Payout end date. ISO 8601 standard. Can not be greater than current date.
|
16032
|
-
"""
|
16033
|
-
endDate: Date!
|
16034
|
-
}
|
16035
|
-
|
16036
16014
|
"""Process a payout asynchronously."""
|
16037
16015
|
type PayoutProcess {
|
16038
16016
|
payout: Payout
|