@nautical-commerce/graphql-schema 1.58.1 → 1.58.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -1055,6 +1055,9 @@ type Query {
1055
1055
  payoutId: ID
1056
1056
  ): VendorPayoutReport
1057
1057
  vendorPayoutList(
1058
+ """Vendor type of the payout"""
1059
+ vendorType: String @deprecated(reason: "This will be removed on February 1, 2025.")
1060
+
1058
1061
  """Vendor ID"""
1059
1062
  vendorId: ID
1060
1063
  ): SingleVendorPayoutReport
@@ -3830,6 +3833,9 @@ type Order implements Node & ObjectWithMetadata {
3830
3833
  """Seller commission for the order"""
3831
3834
  sellerCommission: Money
3832
3835
 
3836
+ """Volume discount for the order"""
3837
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
3838
+
3833
3839
  """Validation status for the order"""
3834
3840
  validationStatus: [ValidationStatus!]
3835
3841
 
@@ -5633,6 +5639,9 @@ type NauticalOrder implements Node & ObjectWithMetadata {
5633
5639
 
5634
5640
  """Returns True, if order requires shipping."""
5635
5641
  isShippingRequired: Boolean!
5642
+
5643
+ """Volume discount for the nautical order"""
5644
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
5636
5645
  shippingMethodName: String!
5637
5646
 
5638
5647
  """Latest bid made against the order."""
@@ -10625,6 +10634,7 @@ type OrderVendorSummaryType {
10625
10634
  average: Float
10626
10635
  taxes: Float
10627
10636
  discounts: Float
10637
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10628
10638
  revenue: Float
10629
10639
  totals: Int
10630
10640
  commission: Float
@@ -10644,6 +10654,7 @@ type OrderVendorReportType {
10644
10654
  average: Float
10645
10655
  taxes: Float
10646
10656
  discounts: Float
10657
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10647
10658
  revenue: Float
10648
10659
  totals: Int
10649
10660
  commission: Float
@@ -10672,6 +10683,7 @@ type SingleVendorReportType {
10672
10683
  average: Float
10673
10684
  taxes: Float
10674
10685
  discounts: Float
10686
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10675
10687
  revenue: Float
10676
10688
  totals: Int
10677
10689
  commission: Float
@@ -10695,6 +10707,7 @@ type SingleVendorSummaryType {
10695
10707
  average: Float
10696
10708
  taxes: Float
10697
10709
  discounts: Float
10710
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10698
10711
  revenue: Float
10699
10712
  totals: Int
10700
10713
  commission: Float
@@ -12219,6 +12232,7 @@ type OrderSellerSummaryType {
12219
12232
  average: Float
12220
12233
  taxes: Float
12221
12234
  discounts: Float
12235
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12222
12236
  revenue: Float
12223
12237
  totals: Int
12224
12238
  commission: Float
@@ -12234,6 +12248,7 @@ type OrderCustomerReportType {
12234
12248
  average: Float
12235
12249
  taxes: Float
12236
12250
  discounts: Float
12251
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12237
12252
  revenue: Float
12238
12253
  totals: Int
12239
12254
  commission: Float
@@ -12274,6 +12289,7 @@ type OrderSellerReportType {
12274
12289
  average: Float
12275
12290
  taxes: Float
12276
12291
  discounts: Float
12292
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12277
12293
  revenue: Float
12278
12294
  totals: Int
12279
12295
  commission: Float
@@ -12314,6 +12330,7 @@ type OrderMarketplaceReportType {
12314
12330
  average: Float
12315
12331
  taxes: Float
12316
12332
  discounts: Float
12333
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12317
12334
  revenue: Float
12318
12335
  totals: Int
12319
12336
  commission: Float
@@ -12385,6 +12402,7 @@ type AbstractOrderSellerReportType {
12385
12402
  average: Float
12386
12403
  taxes: Float
12387
12404
  discounts: Float
12405
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12388
12406
  revenue: Float
12389
12407
  totals: Int
12390
12408
  commission: Float
@@ -12399,6 +12417,7 @@ type MarketplaceTaxReportType {
12399
12417
  average: Float
12400
12418
  taxes: Float
12401
12419
  discounts: Float
12420
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12402
12421
  revenue: Float
12403
12422
  totals: Int
12404
12423
  commission: Float
@@ -12438,6 +12457,7 @@ type MarketplaceTaxReportByLocaleType {
12438
12457
  average: Float
12439
12458
  taxes: Float
12440
12459
  discounts: Float
12460
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12441
12461
  revenue: Float
12442
12462
  totals: Int
12443
12463
  commission: Float
@@ -12629,6 +12649,7 @@ type AbstractPercentReportType {
12629
12649
  average: Float
12630
12650
  taxes: Float
12631
12651
  discounts: Float
12652
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12632
12653
  revenue: Float
12633
12654
  totals: Float
12634
12655
  }
@@ -12647,6 +12668,7 @@ type DashboardSellerOrderPerformanceType {
12647
12668
  average: Float
12648
12669
  taxes: Float
12649
12670
  discounts: Float
12671
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12650
12672
  revenue: Float
12651
12673
  totals: Int
12652
12674
  commission: Float
@@ -12668,6 +12690,7 @@ type GraphDataType {
12668
12690
  average: Float
12669
12691
  taxes: Float
12670
12692
  discounts: Float
12693
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12671
12694
  revenue: Float
12672
12695
  totals: Int
12673
12696
  commission: Float
@@ -13456,7 +13479,7 @@ type Mutation {
13456
13479
  description: String
13457
13480
 
13458
13481
  """
13459
- 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-tif, application/vnd.ms-word, text/rtf, drawing/dwg, image/vnd.dwg, image/png, application/gzipped, image/x-dxf, application/rtf, application/msword, image/svg, application/jpg, image/x-bmp, drawing/x-dwf, application/x-dwg, application/vnd.pdf, image/bmp, drawing/x-dwg, image/jpg, application/acrobat, application/eps, text/x-pdf, application/vnd.ms-excel, image/x-ms-bmp, text/x-comma-separated-values, text/comma-separated-values, application/x-rtf, image/heif, application/pdf, image/svg+xml, application/x-tar, image/tiff, application/gzip-compressed, image/dxf, application/gzip, image/jpeg, application/x-jpg, text/x-csv, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dwg, application/x-rar, application/tiff, application/tif, application/x-acad, application/vnd.oasis.opendocument.text, pplication/vnd.rar, text/svg, image/webp, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/excel, text/pdf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.oasis.opendocument.presentation, application/postscript, image/heic-sequence, text/svg-xml, application/acad, image/gif, application/x-eps, image/x-eps, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/zip, application/x-pdf, application/x-zip-compressed, application/x-autocad, image/eps, text/csv, application/x-csv, text/plain, image/x-tiff, application/x-gzip, application/dxf, image/heif-sequence, image/x-tif, application/csv, application/dwg, image/tif, application/x-rar-compressed, image/heic, application/svg+xml, application/vnd.oasis.opendocument.spreadsheet, application/x-dxf, application/x-tiff.
13482
+ 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.ms-powerpoint, image/tif, application/dxf, application/csv, image/heic, image/eps, application/x-acad, application/x-csv, application/gzip-compressed, image/bmp, application/x-rtf, image/svg+xml, application/msword, application/x-zip-compressed, application/gzipped, image/heic-sequence, pplication/vnd.rar, application/rtf, image/jpeg, application/vnd.oasis.opendocument.text, drawing/dwg, image/jpg, application/dwg, application/x-tiff, image/x-dxf, application/x-jpg, application/pdf, drawing/x-dwf, application/x-rar-compressed, drawing/x-dwg, application/vnd.pdf, text/plain, image/heif-sequence, text/rtf, text/x-pdf, image/png, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-dxf, application/x-tar, image/x-bmp, application/vnd.ms-word, application/tiff, image/tiff, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/acrobat, image/gif, text/svg-xml, application/jpg, application/x-autocad, application/x-dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/x-csv, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, application/x-tif, application/x-gzip, application/x-rar, image/x-tiff, application/eps, text/pdf, application/gzip, application/acad, image/x-tif, image/vnd.dwg, application/zip, application/vnd.oasis.opendocument.spreadsheet, application/x-pdf, image/webp, text/svg, image/x-dwg, image/dxf, text/x-comma-separated-values, text/csv, application/excel, application/vnd.oasis.opendocument.presentation, image/svg, image/heif, image/x-eps, text/comma-separated-values, application/tif, application/svg+xml, application/vnd.ms-excel, application/x-eps, image/x-ms-bmp.
13460
13483
  """
13461
13484
  file: Upload!
13462
13485
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.58.1",
3
+ "version": "v1.58.3",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {