@nautical-commerce/graphql-schema 1.58.1-1-gdf5b7bb88 → 1.58.1-11-g277773ef3
Sign up to get free protection for your applications and to get access to all the features.
- package/nautical/schema.graphql +30 -7
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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:
|
13455
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, application/x-tif, application/x-tiff, application/vnd.oasis.opendocument.presentation, image/heif-sequence, application/x-dwg, image/heic-sequence, application/vnd.oasis.opendocument.text, application/dxf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/x-acad, text/plain, text/x-csv, application/vnd.ms-excel, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/x-pdf, application/tif, application/x-tar, image/dxf, application/gzip-compressed, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/pdf, application/x-eps, text/comma-separated-values, application/vnd.oasis.opendocument.spreadsheet, application/x-rar-compressed, drawing/dwg, image/heif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/svg, application/x-jpg, application/rtf, application/acad, image/x-tiff, application/msword, application/x-pdf, image/webp, application/x-dxf, drawing/x-dwf, application/x-zip-compressed, application/postscript, application/acrobat, application/x-csv, image/eps, image/x-bmp, text/x-comma-separated-values, text/csv, application/vnd.ms-word, application/x-rtf, image/x-eps, application/svg+xml, drawing/x-dwg, image/gif, image/heic, application/excel, application/dwg, image/png, image/x-dxf, image/x-dwg, application/x-rar, text/svg, image/x-ms-bmp, image/tif, application/x-autocad, application/gzipped, application/zip, text/pdf, image/jpg, application/tiff, image/x-tif, application/vnd.pdf, image/vnd.dwg, image/bmp, application/vnd.ms-powerpoint, application/csv, application/jpg, application/x-gzip, text/rtf, image/jpeg, application/eps, application/gzip, image/svg+xml.
|
13433
13456
|
"""
|
13434
13457
|
file: Upload!
|
13435
13458
|
|