@nautical-commerce/graphql-schema 1.69.0-38-ge005a6480 → 1.69.0-5-g16db64d5a

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.
@@ -1143,6 +1143,9 @@ type Query {
1143
1143
  payoutId: ID
1144
1144
  ): VendorPayoutReport
1145
1145
  vendorPayoutList(
1146
+ """Vendor type of the payout"""
1147
+ vendorType: String @deprecated(reason: "This will be removed on February 1, 2025.")
1148
+
1146
1149
  """Vendor ID"""
1147
1150
  vendorId: ID
1148
1151
  ): SingleVendorPayoutReport
@@ -1880,7 +1883,7 @@ type Query {
1880
1883
  checkoutLine(
1881
1884
  """ID of the checkout line."""
1882
1885
  id: ID
1883
- ): CheckoutLine @deprecated(reason: "This will be removed on April 30, 2025.")
1886
+ ): CheckoutLine
1884
1887
 
1885
1888
  """List of checkout lines."""
1886
1889
  checkoutLines(
@@ -3824,6 +3827,9 @@ type Order implements Node & ObjectWithMetadata {
3824
3827
  """Seller commission for the order"""
3825
3828
  sellerCommission: Money
3826
3829
 
3830
+ """Volume discount for the order"""
3831
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
3832
+
3827
3833
  """Validation status for the order"""
3828
3834
  validationStatus: [ValidationStatus!]
3829
3835
 
@@ -4694,7 +4700,7 @@ type App implements Node & ObjectWithMetadata {
4694
4700
  metadata: [MetadataItem!]!
4695
4701
 
4696
4702
  """Type of the app."""
4697
- type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
4703
+ type: AppTypeEnum
4698
4704
 
4699
4705
  """List of dashboard integrations for this app"""
4700
4706
  dashboardIntegrations: [AppDashboardIntegration!]
@@ -4706,25 +4712,25 @@ type App implements Node & ObjectWithMetadata {
4706
4712
  webhooks: [Webhook!]
4707
4713
 
4708
4714
  """Description of this app."""
4709
- aboutApp: String @deprecated(reason: "This will be removed on April 30, 2025.")
4715
+ aboutApp: String
4710
4716
 
4711
4717
  """Description of the data privacy defined for this app."""
4712
- dataPrivacy: String @deprecated(reason: "This will be removed on April 30, 2025.")
4718
+ dataPrivacy: String
4713
4719
 
4714
4720
  """Url to details about the privacy policy on the app owner page."""
4715
- dataPrivacyUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
4721
+ dataPrivacyUrl: String
4716
4722
 
4717
4723
  """Homepage of the app."""
4718
- homepageUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
4724
+ homepageUrl: String
4719
4725
 
4720
4726
  """Support page for the app."""
4721
- supportUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
4727
+ supportUrl: String
4722
4728
 
4723
4729
  """Url to iframe with the configuration for the app."""
4724
- configurationUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
4730
+ configurationUrl: String
4725
4731
 
4726
4732
  """Url to iframe with the app."""
4727
- appUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
4733
+ appUrl: String
4728
4734
 
4729
4735
  """Version number of the app."""
4730
4736
  version: String
@@ -5613,6 +5619,9 @@ type NauticalOrder implements Node & ObjectWithMetadata {
5613
5619
 
5614
5620
  """Returns True, if order requires shipping."""
5615
5621
  isShippingRequired: Boolean!
5622
+
5623
+ """Volume discount for the nautical order"""
5624
+ volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
5616
5625
  shippingMethodName: String!
5617
5626
 
5618
5627
  """List of all the vendor orders connected to this marketplace order."""
@@ -7753,6 +7762,7 @@ input CustomerOrderFilterInput {
7753
7762
  search: String
7754
7763
  source: [OrderSourceFilter!]
7755
7764
  isHistorical: Boolean
7765
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
7756
7766
  payoutStatus: [OrderPayoutStatusEnum!]
7757
7767
  vendorPayouts: [ID]
7758
7768
  payouts: [ID]
@@ -7776,6 +7786,15 @@ enum OrderSourceFilter {
7776
7786
  EXTERNAL
7777
7787
  }
7778
7788
 
7789
+ enum OfferOrderSubStatusFilter {
7790
+ OFFER_APPROVED
7791
+ OFFER_CANCELLED
7792
+ OFFER_CREATED
7793
+ OFFER_EXPIRED
7794
+ OFFER_NEGOTIATING
7795
+ OFFER_REJECTED
7796
+ }
7797
+
7779
7798
  input OrderSortingInput {
7780
7799
  """Specifies the direction in which to sort products."""
7781
7800
  direction: OrderDirection!
@@ -7847,6 +7866,7 @@ input CustomerNauticalOrderFilterInput {
7847
7866
  search: String
7848
7867
  source: [OrderSourceFilter!]
7849
7868
  isHistorical: Boolean
7869
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
7850
7870
  }
7851
7871
 
7852
7872
  type UserPermission {
@@ -10379,6 +10399,7 @@ type OrderVendorSummaryType {
10379
10399
  average: Float
10380
10400
  taxes: Float
10381
10401
  discounts: Float
10402
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10382
10403
  revenue: Float
10383
10404
  totals: Int
10384
10405
  commission: Float
@@ -10398,6 +10419,7 @@ type OrderVendorReportType {
10398
10419
  average: Float
10399
10420
  taxes: Float
10400
10421
  discounts: Float
10422
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10401
10423
  revenue: Float
10402
10424
  totals: Int
10403
10425
  commission: Float
@@ -10426,6 +10448,7 @@ type SingleVendorReportType {
10426
10448
  average: Float
10427
10449
  taxes: Float
10428
10450
  discounts: Float
10451
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10429
10452
  revenue: Float
10430
10453
  totals: Int
10431
10454
  commission: Float
@@ -10449,6 +10472,7 @@ type SingleVendorSummaryType {
10449
10472
  average: Float
10450
10473
  taxes: Float
10451
10474
  discounts: Float
10475
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
10452
10476
  revenue: Float
10453
10477
  totals: Int
10454
10478
  commission: Float
@@ -10597,6 +10621,7 @@ input OrderFilterInput {
10597
10621
  search: String
10598
10622
  source: [OrderSourceFilter!]
10599
10623
  isHistorical: Boolean
10624
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10600
10625
  payoutStatus: [OrderPayoutStatusEnum!]
10601
10626
  vendorPayouts: [ID]
10602
10627
  payouts: [ID]
@@ -10613,6 +10638,7 @@ input NauticalOrderFilterInput {
10613
10638
  search: String
10614
10639
  source: [OrderSourceFilter!]
10615
10640
  isHistorical: Boolean
10641
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10616
10642
  }
10617
10643
 
10618
10644
  input OrderDraftFilterInput {
@@ -10624,7 +10650,7 @@ input OrderDraftFilterInput {
10624
10650
  search: String
10625
10651
  isHistorical: Boolean
10626
10652
  source: [OrderSourceFilter!]
10627
- subStatus: String
10653
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10628
10654
  }
10629
10655
 
10630
10656
  input NauticalOrderDraftFilterInput {
@@ -10636,7 +10662,7 @@ input NauticalOrderDraftFilterInput {
10636
10662
  search: String
10637
10663
  isHistorical: Boolean
10638
10664
  source: [OrderSourceFilter!]
10639
- subStatus: String
10665
+ subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
10640
10666
  }
10641
10667
 
10642
10668
  input NauticalOrderQuoteFilterInput {
@@ -11882,6 +11908,7 @@ type OrderSellerSummaryType {
11882
11908
  average: Float
11883
11909
  taxes: Float
11884
11910
  discounts: Float
11911
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
11885
11912
  revenue: Float
11886
11913
  totals: Int
11887
11914
  commission: Float
@@ -11897,6 +11924,7 @@ type OrderCustomerReportType {
11897
11924
  average: Float
11898
11925
  taxes: Float
11899
11926
  discounts: Float
11927
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
11900
11928
  revenue: Float
11901
11929
  totals: Int
11902
11930
  commission: Float
@@ -11937,6 +11965,7 @@ type OrderSellerReportType {
11937
11965
  average: Float
11938
11966
  taxes: Float
11939
11967
  discounts: Float
11968
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
11940
11969
  revenue: Float
11941
11970
  totals: Int
11942
11971
  commission: Float
@@ -11977,6 +12006,7 @@ type OrderMarketplaceReportType {
11977
12006
  average: Float
11978
12007
  taxes: Float
11979
12008
  discounts: Float
12009
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
11980
12010
  revenue: Float
11981
12011
  totals: Int
11982
12012
  commission: Float
@@ -12048,6 +12078,7 @@ type AbstractOrderSellerReportType {
12048
12078
  average: Float
12049
12079
  taxes: Float
12050
12080
  discounts: Float
12081
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12051
12082
  revenue: Float
12052
12083
  totals: Int
12053
12084
  commission: Float
@@ -12062,6 +12093,7 @@ type MarketplaceTaxReportType {
12062
12093
  average: Float
12063
12094
  taxes: Float
12064
12095
  discounts: Float
12096
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12065
12097
  revenue: Float
12066
12098
  totals: Int
12067
12099
  commission: Float
@@ -12101,6 +12133,7 @@ type MarketplaceTaxReportByLocaleType {
12101
12133
  average: Float
12102
12134
  taxes: Float
12103
12135
  discounts: Float
12136
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12104
12137
  revenue: Float
12105
12138
  totals: Int
12106
12139
  commission: Float
@@ -12292,6 +12325,7 @@ type AbstractPercentReportType {
12292
12325
  average: Float
12293
12326
  taxes: Float
12294
12327
  discounts: Float
12328
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12295
12329
  revenue: Float
12296
12330
  totals: Float
12297
12331
  }
@@ -12310,6 +12344,7 @@ type DashboardSellerOrderPerformanceType {
12310
12344
  average: Float
12311
12345
  taxes: Float
12312
12346
  discounts: Float
12347
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12313
12348
  revenue: Float
12314
12349
  totals: Int
12315
12350
  commission: Float
@@ -12331,6 +12366,7 @@ type GraphDataType {
12331
12366
  average: Float
12332
12367
  taxes: Float
12333
12368
  discounts: Float
12369
+ volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
12334
12370
  revenue: Float
12335
12371
  totals: Int
12336
12372
  commission: Float
@@ -13119,7 +13155,7 @@ type Mutation {
13119
13155
  description: String
13120
13156
 
13121
13157
  """
13122
- 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-word, application/x-rtf, application/csv, image/svg, application/x-dwg, image/jpg, image/heic, application/acad, application/vnd.oasis.opendocument.spreadsheet, image/webp, application/dwg, image/tiff, text/svg-xml, pplication/vnd.rar, image/x-bmp, image/x-ms-bmp, application/tiff, image/x-dwg, application/vnd.ms-excel, image/dxf, image/heif-sequence, text/pdf, image/x-dxf, application/gzip-compressed, application/x-rar-compressed, drawing/x-dwf, drawing/x-dwg, application/acrobat, application/dxf, application/x-rar, image/gif, text/x-comma-separated-values, image/png, application/zip, image/jpeg, text/rtf, application/svg+xml, application/x-zip-compressed, image/x-tiff, application/gzipped, application/jpg, text/x-csv, application/gzip, application/vnd.openxmlformats-officedocument.presentationml.slideshow, drawing/dwg, image/tif, image/x-eps, application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/bmp, application/excel, text/csv, application/x-tif, image/heif, application/postscript, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/tif, text/svg, application/x-autocad, image/vnd.dwg, application/x-dxf, application/x-csv, text/x-pdf, image/heic-sequence, application/vnd.pdf, application/x-acad, application/x-jpg, application/vnd.ms-powerpoint, image/x-tif, application/x-tiff, application/vnd.oasis.opendocument.text, text/plain, application/x-pdf, image/eps, application/rtf, text/comma-separated-values, application/eps, application/x-gzip, application/msword, application/pdf, image/svg+xml, application/vnd.oasis.opendocument.presentation, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-eps.
13158
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/acrobat, application/pdf, application/vnd.oasis.opendocument.presentation, text/svg-xml, image/x-eps, text/rtf, image/x-bmp, image/x-tiff, image/x-tif, application/x-tar, application/x-rar-compressed, text/x-csv, image/dxf, image/webp, application/vnd.ms-excel, application/tiff, drawing/x-dwf, application/gzip-compressed, application/zip, application/svg+xml, application/excel, image/jpg, application/eps, application/vnd.oasis.opendocument.spreadsheet, application/x-dwg, text/x-comma-separated-values, drawing/x-dwg, application/x-tif, pplication/vnd.rar, image/bmp, text/svg, application/vnd.ms-powerpoint, application/tif, application/dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/vnd.dwg, application/x-pdf, image/heif-sequence, application/x-dxf, text/pdf, image/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.ms-word, application/postscript, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-rar, application/dwg, application/x-tiff, application/acad, image/heic, application/vnd.pdf, application/rtf, application/x-jpg, application/x-acad, drawing/dwg, image/jpeg, text/plain, application/x-autocad, image/x-dwg, image/svg, image/tif, image/png, application/x-csv, image/heic-sequence, image/eps, application/x-rtf, text/x-pdf, image/x-ms-bmp, application/vnd.oasis.opendocument.text, application/csv, image/heif, application/msword, image/tiff, application/x-zip-compressed, application/gzip, image/gif, application/jpg, image/x-dxf, text/comma-separated-values, application/x-eps, application/gzipped, text/csv, application/x-gzip.
13123
13159
  """
13124
13160
  file: Upload!
13125
13161
 
@@ -15554,6 +15590,7 @@ type Mutation {
15554
15590
  Determines whether the email sent out is catered to carriers instead of customers
15555
15591
  """
15556
15592
  vehicles: Boolean = false
15593
+ volumeDiscount: Float @deprecated(reason: "This will be removed on February 1, 2025.")
15557
15594
  ): CheckoutComplete
15558
15595
 
15559
15596
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.69.0-38-ge005a6480",
3
+ "version": "v1.69.0-5-g16db64d5a",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {