@nautical-commerce/graphql-schema 1.78.0-28-ge0dc65125 → 1.78.0-29-g5658b50ec
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 +27 -21
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3614,7 +3614,9 @@ type Payout implements Node & ObjectWithMetadata {
|
|
3614
3614
|
updated: DateTime!
|
3615
3615
|
startDate: Date
|
3616
3616
|
endDate: String!
|
3617
|
-
|
3617
|
+
|
3618
|
+
"""Status of the payout"""
|
3619
|
+
status: PayoutStatusEnum!
|
3618
3620
|
name: String
|
3619
3621
|
currency: String!
|
3620
3622
|
vendorPayouts(offset: Int, before: String, after: String, first: Int, last: Int): VendorPayoutCountableConnection!
|
@@ -3629,8 +3631,7 @@ type Payout implements Node & ObjectWithMetadata {
|
|
3629
3631
|
payout: Money!
|
3630
3632
|
}
|
3631
3633
|
|
3632
|
-
|
3633
|
-
enum PayoutStatus {
|
3634
|
+
enum PayoutStatusEnum {
|
3634
3635
|
"""Draft"""
|
3635
3636
|
DRAFT
|
3636
3637
|
|
@@ -3645,6 +3646,12 @@ enum PayoutStatus {
|
|
3645
3646
|
|
3646
3647
|
"""Error"""
|
3647
3648
|
ERROR
|
3649
|
+
|
3650
|
+
"""Creating"""
|
3651
|
+
CREATING
|
3652
|
+
|
3653
|
+
"""Processing"""
|
3654
|
+
PROCESSING
|
3648
3655
|
}
|
3649
3656
|
|
3650
3657
|
"""An enumeration."""
|
@@ -7055,23 +7062,6 @@ type OrderPayoutSummary {
|
|
7055
7062
|
vendorPayout: VendorPayout!
|
7056
7063
|
}
|
7057
7064
|
|
7058
|
-
enum PayoutStatusEnum {
|
7059
|
-
"""Draft"""
|
7060
|
-
DRAFT
|
7061
|
-
|
7062
|
-
"""Paid"""
|
7063
|
-
PAID
|
7064
|
-
|
7065
|
-
"""Archived"""
|
7066
|
-
ARCHIVED
|
7067
|
-
|
7068
|
-
"""Locked"""
|
7069
|
-
LOCKED
|
7070
|
-
|
7071
|
-
"""Error"""
|
7072
|
-
ERROR
|
7073
|
-
}
|
7074
|
-
|
7075
7065
|
type AgreementSellersCountableConnection {
|
7076
7066
|
"""Pagination data for this connection."""
|
7077
7067
|
pageInfo: PageInfo!
|
@@ -12759,7 +12749,7 @@ type Mutation {
|
|
12759
12749
|
description: String
|
12760
12750
|
|
12761
12751
|
"""
|
12762
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/
|
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/vnd.oasis.opendocument.presentation, image/tiff, text/svg-xml, image/x-dxf, application/x-dwg, drawing/x-dwf, application/tiff, drawing/x-dwg, pplication/vnd.rar, application/x-tar, application/x-tif, application/dwg, text/x-pdf, image/vnd.dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rtf, application/postscript, image/webp, application/x-jpg, image/jpg, application/pdf, image/heif, application/rtf, application/x-dxf, application/svg+xml, image/x-bmp, application/dxf, drawing/dwg, application/x-gzip, application/x-csv, application/gzip, application/x-eps, image/tif, application/gzip-compressed, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-csv, application/x-rar, text/pdf, image/svg, image/eps, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/bmp, application/x-autocad, application/x-zip-compressed, application/gzipped, image/heic-sequence, application/vnd.ms-powerpoint, image/x-ms-bmp, application/acrobat, image/x-dwg, image/png, image/x-eps, image/heic, application/eps, application/jpg, text/csv, text/x-comma-separated-values, application/csv, application/vnd.pdf, application/vnd.ms-word, image/heif-sequence, application/x-tiff, text/svg, application/vnd.ms-excel, text/comma-separated-values, image/dxf, application/acad, image/x-tif, application/x-rar-compressed, text/rtf, application/tif, image/x-tiff, application/x-pdf, application/vnd.oasis.opendocument.text, image/svg+xml, application/excel, image/jpeg, application/zip, application/vnd.oasis.opendocument.spreadsheet, image/gif, application/msword, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/plain.
|
12763
12753
|
"""
|
12764
12754
|
file: Upload!
|
12765
12755
|
|
@@ -12824,6 +12814,14 @@ type Mutation {
|
|
12824
12814
|
input: PayoutCreateInput!
|
12825
12815
|
): PayoutCreate
|
12826
12816
|
|
12817
|
+
"""
|
12818
|
+
Creates a new payout asynchronously. The payout will be created in CREATING state and then transition to DRAFT once the vendor payouts are created.
|
12819
|
+
"""
|
12820
|
+
payoutCreateAsync(
|
12821
|
+
"""Fields required to create a payout."""
|
12822
|
+
input: PayoutCreateInput!
|
12823
|
+
): PayoutCreateAsync
|
12824
|
+
|
12827
12825
|
"""
|
12828
12826
|
Update vendor payouts connected to the given payout with adjustments and penalties
|
12829
12827
|
"""
|
@@ -16278,6 +16276,14 @@ input PayoutCreateInput {
|
|
16278
16276
|
endDate: Date!
|
16279
16277
|
}
|
16280
16278
|
|
16279
|
+
"""
|
16280
|
+
Creates a new payout asynchronously. The payout will be created in CREATING state and then transition to DRAFT once the vendor payouts are created.
|
16281
|
+
"""
|
16282
|
+
type PayoutCreateAsync {
|
16283
|
+
payoutErrors: [PayoutError!]!
|
16284
|
+
payout: Payout
|
16285
|
+
}
|
16286
|
+
|
16281
16287
|
"""
|
16282
16288
|
Update vendor payouts connected to the given payout with adjustments and penalties
|
16283
16289
|
"""
|