@nautical-commerce/graphql-schema 1.58.1-2-g56c92d453 → 1.58.1-20-g016ca2495

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
@@ -3825,6 +3828,9 @@ type Order implements Node & ObjectWithMetadata {
3825
3828
  """Seller commission for the order"""
3826
3829
  sellerCommission: Money
3827
3830
 
3831
+ """Volume discount for the order"""
3832
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
3833
+
3828
3834
  """Validation status for the order"""
3829
3835
  validationStatus: [ValidationStatus!]
3830
3836
 
@@ -5628,6 +5634,9 @@ type NauticalOrder implements Node & ObjectWithMetadata {
5628
5634
 
5629
5635
  """Returns True, if order requires shipping."""
5630
5636
  isShippingRequired: Boolean!
5637
+
5638
+ """Volume discount for the nautical order"""
5639
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
5631
5640
  shippingMethodName: String!
5632
5641
 
5633
5642
  """Latest bid made against the order."""
@@ -8015,7 +8024,7 @@ input CustomerOrderFilterInput {
8015
8024
  search: String
8016
8025
  source: [OrderSourceFilter!]
8017
8026
  isHistorical: Boolean
8018
- subStatus: [OfferOrderSubStatusFilter!]
8027
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
8019
8028
  payoutStatus: [OrderPayoutStatusEnum!]
8020
8029
  vendorPayouts: [ID]
8021
8030
  payouts: [ID]
@@ -8120,7 +8129,7 @@ input CustomerNauticalOrderFilterInput {
8120
8129
  search: String
8121
8130
  source: [OrderSourceFilter!]
8122
8131
  isHistorical: Boolean
8123
- subStatus: [OfferOrderSubStatusFilter!]
8132
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
8124
8133
  }
8125
8134
 
8126
8135
  type UserPermission {
@@ -10603,6 +10612,7 @@ type OrderVendorSummaryType {
10603
10612
  average: Float
10604
10613
  taxes: Float
10605
10614
  discounts: Float
10615
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10606
10616
  revenue: Float
10607
10617
  totals: Int
10608
10618
  commission: Float
@@ -10622,6 +10632,7 @@ type OrderVendorReportType {
10622
10632
  average: Float
10623
10633
  taxes: Float
10624
10634
  discounts: Float
10635
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10625
10636
  revenue: Float
10626
10637
  totals: Int
10627
10638
  commission: Float
@@ -10650,6 +10661,7 @@ type SingleVendorReportType {
10650
10661
  average: Float
10651
10662
  taxes: Float
10652
10663
  discounts: Float
10664
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10653
10665
  revenue: Float
10654
10666
  totals: Int
10655
10667
  commission: Float
@@ -10673,6 +10685,7 @@ type SingleVendorSummaryType {
10673
10685
  average: Float
10674
10686
  taxes: Float
10675
10687
  discounts: Float
10688
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10676
10689
  revenue: Float
10677
10690
  totals: Int
10678
10691
  commission: Float
@@ -10819,7 +10832,7 @@ input OrderFilterInput {
10819
10832
  search: String
10820
10833
  source: [OrderSourceFilter!]
10821
10834
  isHistorical: Boolean
10822
- subStatus: [OfferOrderSubStatusFilter!]
10835
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10823
10836
  payoutStatus: [OrderPayoutStatusEnum!]
10824
10837
  vendorPayouts: [ID]
10825
10838
  payouts: [ID]
@@ -10836,7 +10849,7 @@ input NauticalOrderFilterInput {
10836
10849
  search: String
10837
10850
  source: [OrderSourceFilter!]
10838
10851
  isHistorical: Boolean
10839
- subStatus: [OfferOrderSubStatusFilter!]
10852
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10840
10853
  }
10841
10854
 
10842
10855
  input OrderDraftFilterInput {
@@ -10848,7 +10861,7 @@ input OrderDraftFilterInput {
10848
10861
  search: String
10849
10862
  isHistorical: Boolean
10850
10863
  source: [OrderSourceFilter!]
10851
- subStatus: [OfferOrderSubStatusFilter!]
10864
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10852
10865
  }
10853
10866
 
10854
10867
  input NauticalOrderDraftFilterInput {
@@ -10860,7 +10873,7 @@ input NauticalOrderDraftFilterInput {
10860
10873
  search: String
10861
10874
  isHistorical: Boolean
10862
10875
  source: [OrderSourceFilter!]
10863
- subStatus: [OfferOrderSubStatusFilter!]
10876
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10864
10877
  }
10865
10878
 
10866
10879
  input NauticalOrderQuoteFilterInput {
@@ -12192,6 +12205,7 @@ type OrderSellerSummaryType {
12192
12205
  average: Float
12193
12206
  taxes: Float
12194
12207
  discounts: Float
12208
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12195
12209
  revenue: Float
12196
12210
  totals: Int
12197
12211
  commission: Float
@@ -12207,6 +12221,7 @@ type OrderCustomerReportType {
12207
12221
  average: Float
12208
12222
  taxes: Float
12209
12223
  discounts: Float
12224
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12210
12225
  revenue: Float
12211
12226
  totals: Int
12212
12227
  commission: Float
@@ -12247,6 +12262,7 @@ type OrderSellerReportType {
12247
12262
  average: Float
12248
12263
  taxes: Float
12249
12264
  discounts: Float
12265
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12250
12266
  revenue: Float
12251
12267
  totals: Int
12252
12268
  commission: Float
@@ -12287,6 +12303,7 @@ type OrderMarketplaceReportType {
12287
12303
  average: Float
12288
12304
  taxes: Float
12289
12305
  discounts: Float
12306
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12290
12307
  revenue: Float
12291
12308
  totals: Int
12292
12309
  commission: Float
@@ -12358,6 +12375,7 @@ type AbstractOrderSellerReportType {
12358
12375
  average: Float
12359
12376
  taxes: Float
12360
12377
  discounts: Float
12378
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12361
12379
  revenue: Float
12362
12380
  totals: Int
12363
12381
  commission: Float
@@ -12372,6 +12390,7 @@ type MarketplaceTaxReportType {
12372
12390
  average: Float
12373
12391
  taxes: Float
12374
12392
  discounts: Float
12393
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12375
12394
  revenue: Float
12376
12395
  totals: Int
12377
12396
  commission: Float
@@ -12411,6 +12430,7 @@ type MarketplaceTaxReportByLocaleType {
12411
12430
  average: Float
12412
12431
  taxes: Float
12413
12432
  discounts: Float
12433
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12414
12434
  revenue: Float
12415
12435
  totals: Int
12416
12436
  commission: Float
@@ -12602,6 +12622,7 @@ type AbstractPercentReportType {
12602
12622
  average: Float
12603
12623
  taxes: Float
12604
12624
  discounts: Float
12625
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12605
12626
  revenue: Float
12606
12627
  totals: Float
12607
12628
  }
@@ -12620,6 +12641,7 @@ type DashboardSellerOrderPerformanceType {
12620
12641
  average: Float
12621
12642
  taxes: Float
12622
12643
  discounts: Float
12644
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12623
12645
  revenue: Float
12624
12646
  totals: Int
12625
12647
  commission: Float
@@ -12641,6 +12663,7 @@ type GraphDataType {
12641
12663
  average: Float
12642
12664
  taxes: Float
12643
12665
  discounts: Float
12666
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12644
12667
  revenue: Float
12645
12668
  totals: Int
12646
12669
  commission: Float
@@ -13429,7 +13452,7 @@ type Mutation {
13429
13452
  description: String
13430
13453
 
13431
13454
  """
13432
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/jpg, application/x-eps, application/x-dwg, application/x-autocad, image/x-dxf, text/pdf, image/heif-sequence, image/x-eps, application/vnd.pdf, application/tiff, application/x-rar-compressed, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/vnd.dwg, text/csv, application/x-tar, drawing/x-dwg, application/x-rar, application/msword, text/x-comma-separated-values, image/tiff, pplication/vnd.rar, image/dxf, application/gzip-compressed, text/plain, application/vnd.oasis.opendocument.presentation, application/csv, image/x-ms-bmp, application/gzip, image/x-dwg, text/svg, application/x-acad, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/zip, application/vnd.oasis.opendocument.text, image/svg, application/x-gzip, application/rtf, text/svg-xml, image/heic, application/x-csv, application/postscript, drawing/dwg, image/bmp, drawing/x-dwf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, application/x-jpg, application/dwg, text/comma-separated-values, image/eps, image/jpg, image/x-tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/webp, application/excel, application/vnd.oasis.opendocument.spreadsheet, image/gif, application/tif, text/x-csv, text/x-pdf, application/acrobat, text/rtf, application/x-rtf, application/gzipped, image/heic-sequence, application/x-tiff, image/heif, application/svg+xml, application/eps, application/pdf, image/png, application/x-zip-compressed, application/acad, application/vnd.ms-word, application/dxf, application/x-tif, image/x-tiff, image/tif, image/svg+xml, application/x-dxf, image/jpeg, image/x-bmp.
13455
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/dxf, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/excel, application/pdf, image/heic, pplication/vnd.rar, application/vnd.ms-word, application/tiff, image/webp, image/dxf, application/x-rtf, image/heif, text/rtf, application/x-rar, application/x-pdf, text/svg-xml, text/plain, image/jpg, application/x-rar-compressed, application/csv, application/gzip, image/x-ms-bmp, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/x-tiff, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.slideshow, drawing/dwg, image/eps, application/jpg, application/x-dwg, image/heif-sequence, application/postscript, drawing/x-dwg, image/x-eps, image/x-dwg, image/tif, image/x-tif, drawing/x-dwf, application/vnd.ms-excel, image/gif, application/dwg, application/acrobat, text/svg, application/eps, text/csv, image/tiff, image/x-bmp, application/x-autocad, text/x-pdf, application/gzip-compressed, application/x-jpg, application/x-tif, application/gzipped, application/x-zip-compressed, text/comma-separated-values, application/x-acad, image/bmp, application/acad, image/vnd.dwg, application/rtf, image/heic-sequence, application/vnd.oasis.opendocument.presentation, text/x-csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/svg+xml, image/png, image/x-dxf, text/pdf, application/zip, application/x-tar, application/vnd.pdf, application/x-eps, application/x-csv, application/vnd.oasis.opendocument.text, image/svg, application/vnd.ms-powerpoint, application/tif, application/x-gzip, application/x-dxf, image/svg+xml, text/x-comma-separated-values, application/x-tiff, application/msword, image/jpeg.
13433
13456
  """
13434
13457
  file: Upload!
13435
13458
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.58.1-2-g56c92d453",
3
+ "version": "v1.58.1-20-g016ca2495",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {