@nautical-commerce/graphql-schema 1.78.0-32-g853a050b9 → 1.78.0-33-g571908248
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 +20 -1
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -12749,7 +12749,7 @@ type Mutation {
|
|
12749
12749
|
description: String
|
12750
12750
|
|
12751
12751
|
"""
|
12752
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/x-
|
12752
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/rtf, application/tif, text/svg-xml, application/x-acad, text/svg, application/vnd.ms-excel, application/x-tif, application/x-tar, application/excel, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tif, application/vnd.oasis.opendocument.presentation, application/x-rar, pplication/vnd.rar, image/png, application/x-dwg, image/heif, image/webp, text/csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-pdf, application/acrobat, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/eps, image/svg+xml, image/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/dxf, drawing/dwg, application/x-rar-compressed, image/gif, application/pdf, image/jpg, image/x-ms-bmp, drawing/x-dwg, drawing/x-dwf, image/svg, application/x-rtf, application/vnd.pdf, application/vnd.oasis.opendocument.spreadsheet, application/gzip-compressed, image/x-tiff, application/zip, application/csv, application/gzip, image/tiff, text/x-pdf, application/x-gzip, application/x-csv, application/eps, image/x-eps, application/vnd.oasis.opendocument.text, image/heic, application/svg+xml, text/x-comma-separated-values, application/vnd.ms-powerpoint, application/gzipped, text/pdf, application/x-autocad, application/vnd.ms-word, image/vnd.dwg, image/tif, text/rtf, text/comma-separated-values, image/dxf, image/heif-sequence, text/plain, application/postscript, application/tiff, text/x-csv, image/heic-sequence, application/x-dxf, application/x-eps, application/dwg, application/x-jpg, image/jpeg, application/x-zip-compressed, application/acad, application/msword, application/jpg, application/x-tiff, image/bmp, image/x-bmp, image/x-dxf.
|
12753
12753
|
"""
|
12754
12754
|
file: Upload!
|
12755
12755
|
|
@@ -12854,6 +12854,9 @@ type Mutation {
|
|
12854
12854
|
input: PayoutDatesInput!
|
12855
12855
|
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
12856
12856
|
|
12857
|
+
"""Process a payout asynchronously."""
|
12858
|
+
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12859
|
+
|
12857
12860
|
"""Archive payouts."""
|
12858
12861
|
payoutBulkArchive(
|
12859
12862
|
"""List of payout IDs to archive."""
|
@@ -16346,6 +16349,22 @@ input PayoutDatesInput {
|
|
16346
16349
|
endDate: Date!
|
16347
16350
|
}
|
16348
16351
|
|
16352
|
+
"""Process a payout asynchronously."""
|
16353
|
+
type PayoutProcess {
|
16354
|
+
payout: Payout
|
16355
|
+
payoutErrors: [PayoutError!]!
|
16356
|
+
}
|
16357
|
+
|
16358
|
+
input PayoutProcessInput {
|
16359
|
+
"""ID of the payout to process."""
|
16360
|
+
id: ID!
|
16361
|
+
|
16362
|
+
"""
|
16363
|
+
If true, the payout will be processed manually without using a gateway.
|
16364
|
+
"""
|
16365
|
+
isManual: Boolean!
|
16366
|
+
}
|
16367
|
+
|
16349
16368
|
"""Archive payouts."""
|
16350
16369
|
type PayoutBulkArchive {
|
16351
16370
|
"""Returns how many objects were affected."""
|