@nautical-commerce/graphql-schema 1.55.2-9-gf910cf3f7 → 1.56.0-1-g5c49ad4a0
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +19 -34
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -3861,7 +3861,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3861
3861
|
|
3862
3862
|
"""Data time when the order was imported from another platform."""
|
3863
3863
|
importedAt: DateTime
|
3864
|
-
vendorPayout: VendorPayout
|
3865
3864
|
|
3866
3865
|
"""
|
3867
3866
|
List of private metadata items.Requires proper staff permissions to access.
|
@@ -3972,6 +3971,12 @@ type Order implements Node & ObjectWithMetadata {
|
|
3972
3971
|
|
3973
3972
|
"""Marketplace order that this seller order belongs to."""
|
3974
3973
|
marketplaceOrder: NauticalOrder
|
3974
|
+
|
3975
|
+
"""Latest vendor payout this order is in"""
|
3976
|
+
vendorPayout: VendorPayout @deprecated(reason: "This will be removed on January 15, 2025. Use the more accurate vendorPayouts field instead.")
|
3977
|
+
|
3978
|
+
"""All vendor payouts that contain this order"""
|
3979
|
+
vendorPayouts: [VendorPayout!]
|
3975
3980
|
}
|
3976
3981
|
|
3977
3982
|
"""An enumeration."""
|
@@ -6041,6 +6046,12 @@ type OrderLine implements Node & ObjectWithMetadata {
|
|
6041
6046
|
|
6042
6047
|
"""The number of items ordered on this order line."""
|
6043
6048
|
quantityOrdered: Int!
|
6049
|
+
|
6050
|
+
"""The number of unfulfilled items refunded on this order line."""
|
6051
|
+
unfulfilledQuantityRefunded: Int!
|
6052
|
+
|
6053
|
+
"""The number of fulfilled items refunded on this order line."""
|
6054
|
+
fulfilledQuantityRefunded: Int!
|
6044
6055
|
}
|
6045
6056
|
|
6046
6057
|
type DigitalContentUrl implements Node {
|
@@ -9391,29 +9402,15 @@ type ConfigurationItem {
|
|
9391
9402
|
options: [String!]
|
9392
9403
|
}
|
9393
9404
|
|
9405
|
+
"""An enumeration."""
|
9394
9406
|
enum ConfigurationTypeFieldEnum {
|
9395
|
-
"""Field is a String"""
|
9396
9407
|
STRING
|
9397
|
-
|
9398
|
-
"""Field is a Multiline"""
|
9399
9408
|
MULTILINE
|
9400
|
-
|
9401
|
-
"""Field is a Boolean"""
|
9402
9409
|
BOOLEAN
|
9403
|
-
|
9404
|
-
"""Field is a Secret"""
|
9405
9410
|
SECRET
|
9406
|
-
|
9407
|
-
"""Field is a Password"""
|
9411
|
+
SECRET_MULTILINE
|
9408
9412
|
PASSWORD
|
9409
|
-
|
9410
|
-
"""Field is a Secret multiline"""
|
9411
|
-
SECRETMULTILINE
|
9412
|
-
|
9413
|
-
"""Field is a single select"""
|
9414
|
-
SINGLESELECT
|
9415
|
-
|
9416
|
-
"""Field is a read only"""
|
9413
|
+
SINGLE_SELECT
|
9417
9414
|
OUTPUT
|
9418
9415
|
}
|
9419
9416
|
|
@@ -13915,7 +13912,7 @@ type Mutation {
|
|
13915
13912
|
description: String
|
13916
13913
|
|
13917
13914
|
"""
|
13918
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13915
|
+
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-dwg, text/x-comma-separated-values, image/tif, application/vnd.oasis.opendocument.presentation, image/x-bmp, text/x-csv, text/csv, image/heif-sequence, application/acad, drawing/dwg, application/msword, application/vnd.ms-powerpoint, image/svg, application/vnd.pdf, application/vnd.ms-word, application/svg+xml, pplication/vnd.rar, application/x-zip-compressed, image/x-ms-bmp, image/x-eps, application/vnd.oasis.opendocument.text, text/svg, image/jpg, application/gzip-compressed, application/zip, image/jpeg, application/pdf, application/tif, text/svg-xml, application/x-rtf, image/heic-sequence, image/dxf, application/x-jpg, image/tiff, image/eps, application/x-eps, application/jpg, application/postscript, application/vnd.oasis.opendocument.spreadsheet, application/rtf, image/heic, application/x-tiff, application/x-gzip, application/acrobat, image/svg+xml, application/dwg, application/x-csv, text/rtf, application/dxf, application/x-autocad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-dxf, image/heif, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/pdf, application/x-pdf, application/gzipped, application/x-rar, drawing/x-dwg, text/x-pdf, image/png, application/x-tif, image/webp, application/vnd.ms-excel, application/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tiff, application/csv, application/x-rar-compressed, image/bmp, application/x-acad, image/vnd.dwg, application/excel, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzip, application/x-dxf, image/gif, application/x-tar, image/x-tif, drawing/x-dwf, text/comma-separated-values, text/plain, application/eps.
|
13919
13916
|
"""
|
13920
13917
|
file: Upload!
|
13921
13918
|
|
@@ -16434,11 +16431,6 @@ type Mutation {
|
|
16434
16431
|
type: CheckoutEventType!
|
16435
16432
|
): CheckoutEventTriggered
|
16436
16433
|
|
16437
|
-
"""
|
16438
|
-
Backfill all orders and refunds that are not connected to a VendorPayout into the ledger system. The actual backfill will run asynchronously in a task.
|
16439
|
-
"""
|
16440
|
-
journalEntryBackfill: JournalEntryBackfill
|
16441
|
-
|
16442
16434
|
"""Correct a previous journal entry by supplying """
|
16443
16435
|
journalEntryCorrect(
|
16444
16436
|
"""Fields required to create a correction journal entry."""
|
@@ -23610,11 +23602,10 @@ type CheckoutEventTriggered {
|
|
23610
23602
|
pluginsErrors: [PluginError!]!
|
23611
23603
|
}
|
23612
23604
|
|
23613
|
-
"""
|
23614
|
-
|
23615
|
-
"""
|
23616
|
-
type JournalEntryBackfill {
|
23605
|
+
"""Correct a previous journal entry by supplying """
|
23606
|
+
type JournalEntryCorrect {
|
23617
23607
|
financialErrors: [FinancialError!]!
|
23608
|
+
journalEntry: JournalEntry
|
23618
23609
|
}
|
23619
23610
|
|
23620
23611
|
type FinancialError {
|
@@ -23638,12 +23629,6 @@ enum FinancialErrorCode {
|
|
23638
23629
|
REQUIRED
|
23639
23630
|
}
|
23640
23631
|
|
23641
|
-
"""Correct a previous journal entry by supplying """
|
23642
|
-
type JournalEntryCorrect {
|
23643
|
-
financialErrors: [FinancialError!]!
|
23644
|
-
journalEntry: JournalEntry
|
23645
|
-
}
|
23646
|
-
|
23647
23632
|
input JournalEntryCorrectInput {
|
23648
23633
|
"""ID of the journal entry to be corrected"""
|
23649
23634
|
correctingJournalEntry: ID!
|