@nautical-commerce/graphql-schema 1.81.0-46-g84c299037 → 1.81.0-48-g73ccd6201
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 +11 -11
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -4097,22 +4097,22 @@ type VendorPayout implements Node & ObjectWithMetadata {
|
|
4097
4097
|
payout: Payout!
|
4098
4098
|
seller: Seller!
|
4099
4099
|
currency: String!
|
4100
|
-
average: Decimal!
|
4101
|
-
discounts: Decimal!
|
4102
|
-
net: Decimal!
|
4103
|
-
shipping: Decimal!
|
4104
|
-
volumeDiscounts: Decimal!
|
4105
|
-
commission: Decimal!
|
4106
|
-
feeAmount: Decimal!
|
4100
|
+
average: Decimal! @deprecated(reason: "This will be removed on August 6, 2025.")
|
4101
|
+
discounts: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the discountsMoney field instead.")
|
4102
|
+
net: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the netSales field instead.")
|
4103
|
+
shipping: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the shippingMoney field instead.")
|
4104
|
+
volumeDiscounts: Decimal! @deprecated(reason: "This will be removed on August 6, 2025.")
|
4105
|
+
commission: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the commissionMoney field instead.")
|
4106
|
+
feeAmount: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the fees field instead.")
|
4107
4107
|
fees: Money!
|
4108
|
-
payoutAmount: Decimal!
|
4108
|
+
payoutAmount: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the payable field instead.")
|
4109
4109
|
payable: Money!
|
4110
4110
|
included: Boolean!
|
4111
4111
|
status: VendorPayoutStatus!
|
4112
4112
|
statusMessage: String
|
4113
|
-
adjustmentAmount: Decimal!
|
4113
|
+
adjustmentAmount: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the adjustment field instead.")
|
4114
4114
|
adjustment: Money!
|
4115
|
-
refundAmount: Decimal!
|
4115
|
+
refundAmount: Decimal! @deprecated(reason: "This will be removed on August 6, 2025. Use the refund field instead.")
|
4116
4116
|
refund: Money!
|
4117
4117
|
|
4118
4118
|
""""""
|
@@ -12195,7 +12195,7 @@ type Mutation {
|
|
12195
12195
|
description: String
|
12196
12196
|
|
12197
12197
|
"""
|
12198
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12198
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.spreadsheet, image/eps, drawing/x-dwf, image/x-ms-bmp, application/x-acad, application/jpg, text/rtf, image/tif, application/zip, image/gif, image/svg+xml, pplication/vnd.rar, image/x-dwg, application/x-gzip, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-tif, application/tiff, image/tiff, application/postscript, image/x-dxf, drawing/dwg, text/svg-xml, application/eps, image/svg, text/x-comma-separated-values, application/vnd.ms-excel, text/x-csv, application/x-eps, image/vnd.dwg, application/vnd.ms-word, image/jpeg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/gzip-compressed, application/vnd.pdf, application/dwg, application/x-dwg, image/webp, image/x-eps, text/x-pdf, application/x-jpg, application/acad, application/vnd.oasis.opendocument.text, text/csv, image/jpg, application/x-rar, application/x-pdf, text/plain, application/dxf, image/heic, application/vnd.oasis.opendocument.presentation, application/svg+xml, drawing/x-dwg, text/svg, application/acrobat, application/x-csv, application/x-tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/csv, application/x-dxf, image/x-bmp, application/gzip, application/vnd.ms-powerpoint, application/msword, application/x-rar-compressed, application/x-zip-compressed, text/pdf, text/comma-separated-values, application/x-autocad, application/excel, application/x-rtf, application/pdf, image/png, application/x-tiff, image/bmp, image/heif-sequence, application/tif, image/x-tiff, application/gzipped, application/rtf, image/heif, image/dxf, image/heic-sequence.
|
12199
12199
|
"""
|
12200
12200
|
file: Upload!
|
12201
12201
|
|