@nautical-commerce/graphql-schema 1.67.0-12-gd3c8b4806 → 1.67.0-14-g5e3e5a083
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 +6 -9
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -458,19 +458,19 @@ type Query {
|
|
458
458
|
"""Return the last n elements from the list."""
|
459
459
|
last: Int
|
460
460
|
): AgreementCountableConnection
|
461
|
-
sellerListCards(period: ReportingPeriod!, identifier: ID): SellerCards
|
462
|
-
sellerDetailCards(period: ReportingPeriod!, identifier: ID!): SellerDetailCards
|
461
|
+
sellerListCards(period: ReportingPeriod!, identifier: ID): SellerCards @deprecated(reason: "This will be removed on April 16, 2025")
|
462
|
+
sellerDetailCards(period: ReportingPeriod!, identifier: ID!): SellerDetailCards @deprecated(reason: "This will be removed on April 16, 2025")
|
463
463
|
|
464
464
|
"""Number of new sellers created in given period."""
|
465
|
-
newSellers(period: ReportingPeriod!): Int
|
465
|
+
newSellers(period: ReportingPeriod!): Int @deprecated(reason: "This will be removed on April 16, 2025")
|
466
466
|
|
467
467
|
"""Number of orders placed by sellers in given period."""
|
468
|
-
sellerOrders(period: ReportingPeriod!, identifier: ID): Int
|
468
|
+
sellerOrders(period: ReportingPeriod!, identifier: ID): Int @deprecated(reason: "This will be removed on April 16, 2025")
|
469
469
|
|
470
470
|
"""
|
471
471
|
Return the total commissions earned across all sellers for the given period.
|
472
472
|
"""
|
473
|
-
sellerCommissions(period: ReportingPeriod!, identifier: ID): Money
|
473
|
+
sellerCommissions(period: ReportingPeriod!, identifier: ID): Money @deprecated(reason: "This will be removed on April 16, 2025")
|
474
474
|
|
475
475
|
"""Look up an refund by ID."""
|
476
476
|
refund(
|
@@ -3833,9 +3833,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3833
3833
|
"""Marketplace order that this seller order belongs to."""
|
3834
3834
|
marketplaceOrder: NauticalOrder
|
3835
3835
|
|
3836
|
-
"""Latest vendor payout this order is in"""
|
3837
|
-
vendorPayout: VendorPayout @deprecated(reason: "This will be removed on January 15, 2025. Use the more accurate vendorPayouts field instead.")
|
3838
|
-
|
3839
3836
|
"""All vendor payouts that contain this order"""
|
3840
3837
|
vendorPayouts: [VendorPayout!]
|
3841
3838
|
|
@@ -13205,7 +13202,7 @@ type Mutation {
|
|
13205
13202
|
description: String
|
13206
13203
|
|
13207
13204
|
"""
|
13208
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
13205
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/jpg, image/dxf, image/x-bmp, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dxf, image/gif, image/heic-sequence, application/svg+xml, drawing/x-dwf, text/csv, application/x-jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/pdf, application/msword, application/dwg, text/x-csv, image/jpeg, pplication/vnd.rar, text/x-pdf, image/svg, image/x-eps, application/csv, application/excel, application/vnd.pdf, image/x-dwg, drawing/x-dwg, application/vnd.oasis.opendocument.text, image/x-dxf, image/heif, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.ms-powerpoint, application/x-rar-compressed, application/postscript, text/svg-xml, application/x-gzip, application/tiff, image/eps, image/heic, application/x-pdf, application/zip, application/acad, image/tiff, text/comma-separated-values, application/gzip, text/svg, application/vnd.oasis.opendocument.presentation, application/rtf, image/x-tif, application/gzip-compressed, application/x-rtf, image/x-tiff, application/vnd.oasis.opendocument.spreadsheet, application/x-tiff, image/vnd.dwg, application/x-autocad, text/x-comma-separated-values, application/x-dxf, application/x-zip-compressed, application/tif, application/x-tif, application/vnd.ms-excel, image/webp, application/x-acad, text/plain, application/x-eps, image/tif, application/jpg, application/vnd.ms-word, image/x-ms-bmp, image/heif-sequence, application/pdf, drawing/dwg, image/bmp, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/gzipped, application/eps, application/x-csv, image/svg+xml, application/x-tar, image/png, application/acrobat, application/x-rar, text/rtf.
|
13209
13206
|
"""
|
13210
13207
|
file: Upload!
|
13211
13208
|
|