@nautical-commerce/graphql-schema 2.21.0 → 2.22.0
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 +19 -7
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
|
@@ -12528,7 +12528,7 @@ type Mutation {
|
|
|
12528
12528
|
description: String
|
|
12529
12529
|
|
|
12530
12530
|
"""
|
|
12531
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
|
12531
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzipped, image/svg, application/csv, application/excel, application/tif, text/x-csv, application/dwg, image/tiff, text/comma-separated-values, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/heic, text/rtf, image/jpeg, application/x-eps, image/heic-sequence, application/acad, application/postscript, text/pdf, application/dxf, application/zip, image/png, application/msword, application/x-tar, application/vnd.oasis.opendocument.text, application/svg+xml, text/plain, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/vnd.dwg, application/eps, application/vnd.ms-excel, image/eps, image/heif-sequence, application/vnd.ms-powerpoint, image/bmp, image/x-dwg, application/x-rtf, application/rtf, application/vnd.oasis.opendocument.spreadsheet, application/x-rar-compressed, image/x-eps, application/x-rar, application/x-autocad, application/x-csv, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/dxf, image/x-bmp, application/vnd.oasis.opendocument.presentation, image/gif, image/x-tiff, application/pdf, application/x-gzip, image/webp, application/vnd.ms-word, text/svg-xml, application/x-dwg, text/x-comma-separated-values, application/acrobat, application/x-tif, application/x-pdf, image/svg+xml, application/x-zip-compressed, application/gzip-compressed, image/heif, text/x-pdf, application/x-jpg, application/tiff, image/x-ms-bmp, application/vnd.pdf, image/jpg, drawing/x-dwf, image/tif, application/gzip, image/x-tif, application/x-tiff, text/svg, image/x-dxf, text/csv, drawing/dwg, pplication/vnd.rar, application/x-dxf, drawing/x-dwg, application/jpg.
|
|
12532
12532
|
"""
|
|
12533
12533
|
file: Upload!
|
|
12534
12534
|
|
|
@@ -12617,7 +12617,9 @@ type Mutation {
|
|
|
12617
12617
|
id: ID!
|
|
12618
12618
|
): PayoutDelete
|
|
12619
12619
|
|
|
12620
|
-
"""
|
|
12620
|
+
"""
|
|
12621
|
+
Modifies the status of a payout. Valid transitions: DRAFT→LOCKED, LOCKED→DRAFT, LOCKED→PAID, PAID→ARCHIVED, ERROR→DRAFT. Use ERROR→DRAFT to recover payouts that failed during processing.
|
|
12622
|
+
"""
|
|
12621
12623
|
payoutStatusUpdate(
|
|
12622
12624
|
"""Fields required to update a payout status."""
|
|
12623
12625
|
id: ID!
|
|
@@ -12653,13 +12655,17 @@ type Mutation {
|
|
|
12653
12655
|
input: VendorPayoutStatusInput!
|
|
12654
12656
|
): VendorPayoutStatusUpdate
|
|
12655
12657
|
|
|
12656
|
-
"""
|
|
12658
|
+
"""
|
|
12659
|
+
Include vendor payouts. Only operates on vendor payouts where the parent payout is in DRAFT or ERROR state.
|
|
12660
|
+
"""
|
|
12657
12661
|
vendorPayoutsBulkInclude(
|
|
12658
12662
|
"""List of vendor payout IDs to include."""
|
|
12659
12663
|
ids: [ID!]!
|
|
12660
12664
|
): VendorPayoutsBulkInclude
|
|
12661
12665
|
|
|
12662
|
-
"""
|
|
12666
|
+
"""
|
|
12667
|
+
Exclude vendor payouts. Only operates on vendor payouts where the parent payout is in DRAFT or ERROR state.
|
|
12668
|
+
"""
|
|
12663
12669
|
vendorPayoutsBulkExclude(
|
|
12664
12670
|
"""List of vendor payout IDs to exclude."""
|
|
12665
12671
|
ids: [ID!]!
|
|
@@ -15954,7 +15960,9 @@ type PayoutDelete {
|
|
|
15954
15960
|
payout: Payout
|
|
15955
15961
|
}
|
|
15956
15962
|
|
|
15957
|
-
"""
|
|
15963
|
+
"""
|
|
15964
|
+
Modifies the status of a payout. Valid transitions: DRAFT→LOCKED, LOCKED→DRAFT, LOCKED→PAID, PAID→ARCHIVED, ERROR→DRAFT. Use ERROR→DRAFT to recover payouts that failed during processing.
|
|
15965
|
+
"""
|
|
15958
15966
|
type PayoutStatusUpdate {
|
|
15959
15967
|
"""Payout that was updated."""
|
|
15960
15968
|
payout: Payout
|
|
@@ -16015,14 +16023,18 @@ input VendorPayoutStatusInput {
|
|
|
16015
16023
|
payoutAmount: String!
|
|
16016
16024
|
}
|
|
16017
16025
|
|
|
16018
|
-
"""
|
|
16026
|
+
"""
|
|
16027
|
+
Include vendor payouts. Only operates on vendor payouts where the parent payout is in DRAFT or ERROR state.
|
|
16028
|
+
"""
|
|
16019
16029
|
type VendorPayoutsBulkInclude {
|
|
16020
16030
|
"""Returns how many objects were affected."""
|
|
16021
16031
|
count: Int!
|
|
16022
16032
|
payoutErrors: [PayoutError!]!
|
|
16023
16033
|
}
|
|
16024
16034
|
|
|
16025
|
-
"""
|
|
16035
|
+
"""
|
|
16036
|
+
Exclude vendor payouts. Only operates on vendor payouts where the parent payout is in DRAFT or ERROR state.
|
|
16037
|
+
"""
|
|
16026
16038
|
type VendorPayoutsBulkExclude {
|
|
16027
16039
|
"""Returns how many objects were affected."""
|
|
16028
16040
|
count: Int!
|