@nautical-commerce/graphql-schema 1.58.0 → 1.58.1-10-g6a0a7ea42

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
@@ -3761,11 +3764,6 @@ type Order implements Node & ObjectWithMetadata {
3761
3764
  """List of order lines."""
3762
3765
  lines: [OrderLine!]!
3763
3766
 
3764
- """
3765
- List of actions that can be performed in the current state of an order.
3766
- """
3767
- actions: [OrderAction!]! @deprecated(reason: "This field should not be used as Orders will be changed to have no actions.All actions should be performed against the NauticalOrder. This will be removed on November 1, 2024.")
3768
-
3769
3767
  """
3770
3768
  List of sub-statuses that can be changed to based on current state of the order
3771
3769
  """
@@ -3830,6 +3828,9 @@ type Order implements Node & ObjectWithMetadata {
3830
3828
  """Seller commission for the order"""
3831
3829
  sellerCommission: Money
3832
3830
 
3831
+ """Volume discount for the order"""
3832
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
3833
+
3833
3834
  """Validation status for the order"""
3834
3835
  validationStatus: [ValidationStatus!]
3835
3836
 
@@ -5633,6 +5634,9 @@ type NauticalOrder implements Node & ObjectWithMetadata {
5633
5634
 
5634
5635
  """Returns True, if order requires shipping."""
5635
5636
  isShippingRequired: Boolean!
5637
+
5638
+ """Volume discount for the nautical order"""
5639
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
5636
5640
  shippingMethodName: String!
5637
5641
 
5638
5642
  """Latest bid made against the order."""
@@ -5818,9 +5822,6 @@ type OrderLine implements Node & ObjectWithMetadata {
5818
5822
  """The pricebook, if any, that changed the price of this line."""
5819
5823
  priceBook: PriceBook
5820
5824
 
5821
- """DEPRECATED: The number of items ordered on this order line."""
5822
- quantity: Int! @deprecated(reason: "Use the more explicit quantityOrdered instead. This will be removed on November 1, 2024")
5823
-
5824
5825
  """The number of items ordered on this order line."""
5825
5826
  quantityOrdered: Int!
5826
5827
 
@@ -5923,9 +5924,6 @@ type NauticalOrderLine implements Node & ObjectWithMetadata {
5923
5924
  """The related orderline attached to the connected seller order"""
5924
5925
  sellerOrderline: OrderLine
5925
5926
 
5926
- """The number of items ordered on this order line"""
5927
- quantity: Int! @deprecated(reason: "Use the more explicit quantityOrdered instead. This will be removed on November 1, 2024.")
5928
-
5929
5927
  """The number of items ordered on this order line"""
5930
5928
  quantityOrdered: Int!
5931
5929
 
@@ -6799,11 +6797,6 @@ type RefundLine implements Node {
6799
6797
  """
6800
6798
  percentage: Float!
6801
6799
 
6802
- """
6803
- If configured as a quantity based refund, this is the number of units refunded.
6804
- """
6805
- quantity: Int! @deprecated(reason: "This value was split into quantityFulfilled and quantityUnfulfilled and will be removed on November 1, 2024")
6806
-
6807
6800
  """
6808
6801
  If configured as a quantity based refund, this is the number of fulfilled units refunded.
6809
6802
  """
@@ -8031,7 +8024,7 @@ input CustomerOrderFilterInput {
8031
8024
  search: String
8032
8025
  source: [OrderSourceFilter!]
8033
8026
  isHistorical: Boolean
8034
- subStatus: [OfferOrderSubStatusFilter!]
8027
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
8035
8028
  payoutStatus: [OrderPayoutStatusEnum!]
8036
8029
  vendorPayouts: [ID]
8037
8030
  payouts: [ID]
@@ -8136,7 +8129,7 @@ input CustomerNauticalOrderFilterInput {
8136
8129
  search: String
8137
8130
  source: [OrderSourceFilter!]
8138
8131
  isHistorical: Boolean
8139
- subStatus: [OfferOrderSubStatusFilter!]
8132
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
8140
8133
  }
8141
8134
 
8142
8135
  type UserPermission {
@@ -8837,12 +8830,6 @@ type Shop {
8837
8830
  languageCode: LanguageCodeEnum
8838
8831
  ): [CountryDisplay!]!
8839
8832
 
8840
- """List of available currencies."""
8841
- currencies: [String!]! @deprecated(reason: "This field will be removed on November 1, 2024.")
8842
-
8843
- """Shop's default currency."""
8844
- defaultCurrency: String! @deprecated(reason: "This field will be removed on November 1, 2024.")
8845
-
8846
8833
  """List of supported currencies."""
8847
8834
  supportedCurrencies: [NauticalCurrency!]!
8848
8835
 
@@ -10625,6 +10612,7 @@ type OrderVendorSummaryType {
10625
10612
  average: Float
10626
10613
  taxes: Float
10627
10614
  discounts: Float
10615
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10628
10616
  revenue: Float
10629
10617
  totals: Int
10630
10618
  commission: Float
@@ -10644,6 +10632,7 @@ type OrderVendorReportType {
10644
10632
  average: Float
10645
10633
  taxes: Float
10646
10634
  discounts: Float
10635
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10647
10636
  revenue: Float
10648
10637
  totals: Int
10649
10638
  commission: Float
@@ -10672,6 +10661,7 @@ type SingleVendorReportType {
10672
10661
  average: Float
10673
10662
  taxes: Float
10674
10663
  discounts: Float
10664
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10675
10665
  revenue: Float
10676
10666
  totals: Int
10677
10667
  commission: Float
@@ -10695,6 +10685,7 @@ type SingleVendorSummaryType {
10695
10685
  average: Float
10696
10686
  taxes: Float
10697
10687
  discounts: Float
10688
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10698
10689
  revenue: Float
10699
10690
  totals: Int
10700
10691
  commission: Float
@@ -10841,7 +10832,7 @@ input OrderFilterInput {
10841
10832
  search: String
10842
10833
  source: [OrderSourceFilter!]
10843
10834
  isHistorical: Boolean
10844
- subStatus: [OfferOrderSubStatusFilter!]
10835
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10845
10836
  payoutStatus: [OrderPayoutStatusEnum!]
10846
10837
  vendorPayouts: [ID]
10847
10838
  payouts: [ID]
@@ -10858,7 +10849,7 @@ input NauticalOrderFilterInput {
10858
10849
  search: String
10859
10850
  source: [OrderSourceFilter!]
10860
10851
  isHistorical: Boolean
10861
- subStatus: [OfferOrderSubStatusFilter!]
10852
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10862
10853
  }
10863
10854
 
10864
10855
  input OrderDraftFilterInput {
@@ -10870,7 +10861,7 @@ input OrderDraftFilterInput {
10870
10861
  search: String
10871
10862
  isHistorical: Boolean
10872
10863
  source: [OrderSourceFilter!]
10873
- subStatus: [OfferOrderSubStatusFilter!]
10864
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10874
10865
  }
10875
10866
 
10876
10867
  input NauticalOrderDraftFilterInput {
@@ -10882,7 +10873,7 @@ input NauticalOrderDraftFilterInput {
10882
10873
  search: String
10883
10874
  isHistorical: Boolean
10884
10875
  source: [OrderSourceFilter!]
10885
- subStatus: [OfferOrderSubStatusFilter!]
10876
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10886
10877
  }
10887
10878
 
10888
10879
  input NauticalOrderQuoteFilterInput {
@@ -11243,11 +11234,6 @@ type MarketplaceConfiguration {
11243
11234
  customerSetPasswordUrl: String
11244
11235
  includeTaxesInPrices: Boolean!
11245
11236
  chargeTaxesOnShipping: Boolean!
11246
-
11247
- """
11248
- Deprecated: This field will always be overridden as True and will be removed on Nov 1, 2024.
11249
- """
11250
- isSellerShippingZoneCreationAllowed: Boolean @deprecated(reason: "This field will always be overridden as True and will be removed on November 1, 2024.")
11251
11237
  }
11252
11238
 
11253
11239
  enum MarketplaceConfigurationPayoutAutomationStrategyEnum {
@@ -12219,6 +12205,7 @@ type OrderSellerSummaryType {
12219
12205
  average: Float
12220
12206
  taxes: Float
12221
12207
  discounts: Float
12208
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12222
12209
  revenue: Float
12223
12210
  totals: Int
12224
12211
  commission: Float
@@ -12234,6 +12221,7 @@ type OrderCustomerReportType {
12234
12221
  average: Float
12235
12222
  taxes: Float
12236
12223
  discounts: Float
12224
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12237
12225
  revenue: Float
12238
12226
  totals: Int
12239
12227
  commission: Float
@@ -12274,6 +12262,7 @@ type OrderSellerReportType {
12274
12262
  average: Float
12275
12263
  taxes: Float
12276
12264
  discounts: Float
12265
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12277
12266
  revenue: Float
12278
12267
  totals: Int
12279
12268
  commission: Float
@@ -12314,6 +12303,7 @@ type OrderMarketplaceReportType {
12314
12303
  average: Float
12315
12304
  taxes: Float
12316
12305
  discounts: Float
12306
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12317
12307
  revenue: Float
12318
12308
  totals: Int
12319
12309
  commission: Float
@@ -12385,6 +12375,7 @@ type AbstractOrderSellerReportType {
12385
12375
  average: Float
12386
12376
  taxes: Float
12387
12377
  discounts: Float
12378
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12388
12379
  revenue: Float
12389
12380
  totals: Int
12390
12381
  commission: Float
@@ -12399,6 +12390,7 @@ type MarketplaceTaxReportType {
12399
12390
  average: Float
12400
12391
  taxes: Float
12401
12392
  discounts: Float
12393
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12402
12394
  revenue: Float
12403
12395
  totals: Int
12404
12396
  commission: Float
@@ -12438,6 +12430,7 @@ type MarketplaceTaxReportByLocaleType {
12438
12430
  average: Float
12439
12431
  taxes: Float
12440
12432
  discounts: Float
12433
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12441
12434
  revenue: Float
12442
12435
  totals: Int
12443
12436
  commission: Float
@@ -12629,6 +12622,7 @@ type AbstractPercentReportType {
12629
12622
  average: Float
12630
12623
  taxes: Float
12631
12624
  discounts: Float
12625
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12632
12626
  revenue: Float
12633
12627
  totals: Float
12634
12628
  }
@@ -12647,6 +12641,7 @@ type DashboardSellerOrderPerformanceType {
12647
12641
  average: Float
12648
12642
  taxes: Float
12649
12643
  discounts: Float
12644
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12650
12645
  revenue: Float
12651
12646
  totals: Int
12652
12647
  commission: Float
@@ -12668,6 +12663,7 @@ type GraphDataType {
12668
12663
  average: Float
12669
12664
  taxes: Float
12670
12665
  discounts: Float
12666
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12671
12667
  revenue: Float
12672
12668
  totals: Int
12673
12669
  commission: Float
@@ -13456,7 +13452,7 @@ type Mutation {
13456
13452
  description: String
13457
13453
 
13458
13454
  """
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-dwg, image/svg+xml, image/x-bmp, application/pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.oasis.opendocument.text, text/comma-separated-values, text/plain, image/vnd.dwg, application/csv, image/jpg, application/svg+xml, image/x-tiff, application/x-zip-compressed, application/vnd.pdf, application/x-tif, drawing/dwg, application/x-tiff, application/vnd.ms-excel, application/acrobat, application/acad, image/heic, image/svg, pplication/vnd.rar, application/x-autocad, image/x-ms-bmp, application/vnd.oasis.opendocument.spreadsheet, text/rtf, image/x-dwg, image/x-dxf, application/msword, application/x-pdf, application/tif, application/eps, text/csv, application/dwg, drawing/x-dwf, application/postscript, application/gzipped, image/dxf, application/dxf, text/pdf, text/svg-xml, image/png, application/excel, image/tif, application/x-jpg, image/heic-sequence, application/x-csv, application/x-gzip, application/x-tar, application/x-acad, application/jpg, application/x-rar, application/zip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/webp, image/x-tif, text/svg, drawing/x-dwg, image/bmp, application/x-rar-compressed, application/vnd.oasis.opendocument.presentation, image/x-eps, application/vnd.ms-word, image/heif-sequence, text/x-comma-separated-values, application/x-eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/eps, application/x-rtf, application/x-dxf, application/gzip, image/gif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/x-csv, image/jpeg, application/tiff, image/tiff, application/rtf, text/x-pdf, application/gzip-compressed, application/vnd.ms-powerpoint, image/heif.
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/vnd.pdf, image/heic, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.presentation, image/heif-sequence, image/x-dxf, application/x-gzip, drawing/x-dwf, text/comma-separated-values, image/x-eps, application/x-jpg, image/gif, application/x-autocad, application/tiff, application/x-rar-compressed, drawing/dwg, text/plain, application/x-eps, text/pdf, image/webp, image/x-ms-bmp, text/rtf, image/tiff, text/x-csv, application/x-pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/acad, application/postscript, image/x-tif, application/excel, application/dxf, image/bmp, image/jpg, application/gzipped, image/heic-sequence, application/acrobat, application/vnd.oasis.opendocument.spreadsheet, application/x-dwg, application/vnd.openxmlformats-officedocument.wordprocessingml.document, drawing/x-dwg, image/x-bmp, application/vnd.ms-word, image/png, image/eps, application/x-csv, application/x-tar, application/x-dxf, application/zip, application/rtf, application/tif, image/tif, application/x-rtf, application/pdf, image/jpeg, application/msword, image/dxf, text/svg, text/csv, application/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/vnd.ms-excel, text/x-comma-separated-values, application/csv, text/svg-xml, image/x-dwg, application/eps, application/svg+xml, application/jpg, application/x-tiff, image/x-tiff, application/x-tif, image/svg, image/heif, pplication/vnd.rar, image/svg+xml, application/gzip, application/vnd.ms-powerpoint, text/x-pdf, application/gzip-compressed, image/vnd.dwg, application/x-acad, application/x-rar, application/x-zip-compressed.
13460
13456
  """
13461
13457
  file: Upload!
13462
13458
 
@@ -16004,6 +16000,7 @@ type Mutation {
16004
16000
  Determines whether the email sent out is catered to carriers instead of customers
16005
16001
  """
16006
16002
  vehicles: Boolean = false
16003
+ volumeDiscount: Float @deprecated(reason: "This will be removed on February 1, 2025.")
16007
16004
  ): CheckoutComplete
16008
16005
 
16009
16006
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.58.0",
3
+ "version": "v1.58.1-10-g6a0a7ea42",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {