@nautical-commerce/graphql-schema 1.69.0-5-g16db64d5a → 1.69.0-7-ge8b8634cf
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.
- package/nautical/schema.graphql +3 -40
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1143,9 +1143,6 @@ 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
|
-
|
1149
1146
|
"""Vendor ID"""
|
1150
1147
|
vendorId: ID
|
1151
1148
|
): SingleVendorPayoutReport
|
@@ -3827,9 +3824,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3827
3824
|
"""Seller commission for the order"""
|
3828
3825
|
sellerCommission: Money
|
3829
3826
|
|
3830
|
-
"""Volume discount for the order"""
|
3831
|
-
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
3832
|
-
|
3833
3827
|
"""Validation status for the order"""
|
3834
3828
|
validationStatus: [ValidationStatus!]
|
3835
3829
|
|
@@ -5619,9 +5613,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5619
5613
|
|
5620
5614
|
"""Returns True, if order requires shipping."""
|
5621
5615
|
isShippingRequired: Boolean!
|
5622
|
-
|
5623
|
-
"""Volume discount for the nautical order"""
|
5624
|
-
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
5625
5616
|
shippingMethodName: String!
|
5626
5617
|
|
5627
5618
|
"""List of all the vendor orders connected to this marketplace order."""
|
@@ -7762,7 +7753,6 @@ input CustomerOrderFilterInput {
|
|
7762
7753
|
search: String
|
7763
7754
|
source: [OrderSourceFilter!]
|
7764
7755
|
isHistorical: Boolean
|
7765
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
7766
7756
|
payoutStatus: [OrderPayoutStatusEnum!]
|
7767
7757
|
vendorPayouts: [ID]
|
7768
7758
|
payouts: [ID]
|
@@ -7786,15 +7776,6 @@ enum OrderSourceFilter {
|
|
7786
7776
|
EXTERNAL
|
7787
7777
|
}
|
7788
7778
|
|
7789
|
-
enum OfferOrderSubStatusFilter {
|
7790
|
-
OFFER_APPROVED
|
7791
|
-
OFFER_CANCELLED
|
7792
|
-
OFFER_CREATED
|
7793
|
-
OFFER_EXPIRED
|
7794
|
-
OFFER_NEGOTIATING
|
7795
|
-
OFFER_REJECTED
|
7796
|
-
}
|
7797
|
-
|
7798
7779
|
input OrderSortingInput {
|
7799
7780
|
"""Specifies the direction in which to sort products."""
|
7800
7781
|
direction: OrderDirection!
|
@@ -7866,7 +7847,6 @@ input CustomerNauticalOrderFilterInput {
|
|
7866
7847
|
search: String
|
7867
7848
|
source: [OrderSourceFilter!]
|
7868
7849
|
isHistorical: Boolean
|
7869
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
7870
7850
|
}
|
7871
7851
|
|
7872
7852
|
type UserPermission {
|
@@ -10399,7 +10379,6 @@ type OrderVendorSummaryType {
|
|
10399
10379
|
average: Float
|
10400
10380
|
taxes: Float
|
10401
10381
|
discounts: Float
|
10402
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10403
10382
|
revenue: Float
|
10404
10383
|
totals: Int
|
10405
10384
|
commission: Float
|
@@ -10419,7 +10398,6 @@ type OrderVendorReportType {
|
|
10419
10398
|
average: Float
|
10420
10399
|
taxes: Float
|
10421
10400
|
discounts: Float
|
10422
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10423
10401
|
revenue: Float
|
10424
10402
|
totals: Int
|
10425
10403
|
commission: Float
|
@@ -10448,7 +10426,6 @@ type SingleVendorReportType {
|
|
10448
10426
|
average: Float
|
10449
10427
|
taxes: Float
|
10450
10428
|
discounts: Float
|
10451
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10452
10429
|
revenue: Float
|
10453
10430
|
totals: Int
|
10454
10431
|
commission: Float
|
@@ -10472,7 +10449,6 @@ type SingleVendorSummaryType {
|
|
10472
10449
|
average: Float
|
10473
10450
|
taxes: Float
|
10474
10451
|
discounts: Float
|
10475
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10476
10452
|
revenue: Float
|
10477
10453
|
totals: Int
|
10478
10454
|
commission: Float
|
@@ -10621,7 +10597,6 @@ input OrderFilterInput {
|
|
10621
10597
|
search: String
|
10622
10598
|
source: [OrderSourceFilter!]
|
10623
10599
|
isHistorical: Boolean
|
10624
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10625
10600
|
payoutStatus: [OrderPayoutStatusEnum!]
|
10626
10601
|
vendorPayouts: [ID]
|
10627
10602
|
payouts: [ID]
|
@@ -10638,7 +10613,6 @@ input NauticalOrderFilterInput {
|
|
10638
10613
|
search: String
|
10639
10614
|
source: [OrderSourceFilter!]
|
10640
10615
|
isHistorical: Boolean
|
10641
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10642
10616
|
}
|
10643
10617
|
|
10644
10618
|
input OrderDraftFilterInput {
|
@@ -10650,7 +10624,7 @@ input OrderDraftFilterInput {
|
|
10650
10624
|
search: String
|
10651
10625
|
isHistorical: Boolean
|
10652
10626
|
source: [OrderSourceFilter!]
|
10653
|
-
subStatus:
|
10627
|
+
subStatus: String
|
10654
10628
|
}
|
10655
10629
|
|
10656
10630
|
input NauticalOrderDraftFilterInput {
|
@@ -10662,7 +10636,7 @@ input NauticalOrderDraftFilterInput {
|
|
10662
10636
|
search: String
|
10663
10637
|
isHistorical: Boolean
|
10664
10638
|
source: [OrderSourceFilter!]
|
10665
|
-
subStatus:
|
10639
|
+
subStatus: String
|
10666
10640
|
}
|
10667
10641
|
|
10668
10642
|
input NauticalOrderQuoteFilterInput {
|
@@ -11908,7 +11882,6 @@ type OrderSellerSummaryType {
|
|
11908
11882
|
average: Float
|
11909
11883
|
taxes: Float
|
11910
11884
|
discounts: Float
|
11911
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11912
11885
|
revenue: Float
|
11913
11886
|
totals: Int
|
11914
11887
|
commission: Float
|
@@ -11924,7 +11897,6 @@ type OrderCustomerReportType {
|
|
11924
11897
|
average: Float
|
11925
11898
|
taxes: Float
|
11926
11899
|
discounts: Float
|
11927
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11928
11900
|
revenue: Float
|
11929
11901
|
totals: Int
|
11930
11902
|
commission: Float
|
@@ -11965,7 +11937,6 @@ type OrderSellerReportType {
|
|
11965
11937
|
average: Float
|
11966
11938
|
taxes: Float
|
11967
11939
|
discounts: Float
|
11968
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11969
11940
|
revenue: Float
|
11970
11941
|
totals: Int
|
11971
11942
|
commission: Float
|
@@ -12006,7 +11977,6 @@ type OrderMarketplaceReportType {
|
|
12006
11977
|
average: Float
|
12007
11978
|
taxes: Float
|
12008
11979
|
discounts: Float
|
12009
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12010
11980
|
revenue: Float
|
12011
11981
|
totals: Int
|
12012
11982
|
commission: Float
|
@@ -12078,7 +12048,6 @@ type AbstractOrderSellerReportType {
|
|
12078
12048
|
average: Float
|
12079
12049
|
taxes: Float
|
12080
12050
|
discounts: Float
|
12081
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12082
12051
|
revenue: Float
|
12083
12052
|
totals: Int
|
12084
12053
|
commission: Float
|
@@ -12093,7 +12062,6 @@ type MarketplaceTaxReportType {
|
|
12093
12062
|
average: Float
|
12094
12063
|
taxes: Float
|
12095
12064
|
discounts: Float
|
12096
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12097
12065
|
revenue: Float
|
12098
12066
|
totals: Int
|
12099
12067
|
commission: Float
|
@@ -12133,7 +12101,6 @@ type MarketplaceTaxReportByLocaleType {
|
|
12133
12101
|
average: Float
|
12134
12102
|
taxes: Float
|
12135
12103
|
discounts: Float
|
12136
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12137
12104
|
revenue: Float
|
12138
12105
|
totals: Int
|
12139
12106
|
commission: Float
|
@@ -12325,7 +12292,6 @@ type AbstractPercentReportType {
|
|
12325
12292
|
average: Float
|
12326
12293
|
taxes: Float
|
12327
12294
|
discounts: Float
|
12328
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12329
12295
|
revenue: Float
|
12330
12296
|
totals: Float
|
12331
12297
|
}
|
@@ -12344,7 +12310,6 @@ type DashboardSellerOrderPerformanceType {
|
|
12344
12310
|
average: Float
|
12345
12311
|
taxes: Float
|
12346
12312
|
discounts: Float
|
12347
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12348
12313
|
revenue: Float
|
12349
12314
|
totals: Int
|
12350
12315
|
commission: Float
|
@@ -12366,7 +12331,6 @@ type GraphDataType {
|
|
12366
12331
|
average: Float
|
12367
12332
|
taxes: Float
|
12368
12333
|
discounts: Float
|
12369
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12370
12334
|
revenue: Float
|
12371
12335
|
totals: Int
|
12372
12336
|
commission: Float
|
@@ -13155,7 +13119,7 @@ type Mutation {
|
|
13155
13119
|
description: String
|
13156
13120
|
|
13157
13121
|
"""
|
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/
|
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-pdf, application/svg+xml, application/x-rar-compressed, application/excel, image/heic, application/vnd.ms-powerpoint, image/bmp, application/gzipped, application/x-rtf, application/x-tar, application/x-dxf, drawing/dwg, image/tiff, image/svg, application/x-acad, application/x-autocad, image/heic-sequence, image/tif, application/dxf, application/acad, text/x-csv, application/vnd.pdf, text/x-comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/vnd.ms-excel, text/plain, drawing/x-dwf, image/vnd.dwg, image/dxf, application/vnd.oasis.opendocument.spreadsheet, application/x-rar, application/csv, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/jpg, image/svg+xml, image/x-tif, application/gzip, text/svg-xml, application/dwg, application/tif, application/rtf, text/svg, image/webp, application/jpg, application/pdf, application/zip, application/x-dwg, application/vnd.oasis.opendocument.presentation, application/x-tiff, image/x-bmp, image/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, pplication/vnd.rar, text/x-pdf, text/comma-separated-values, application/tiff, image/heif, image/gif, image/heif-sequence, text/rtf, application/msword, text/csv, application/x-gzip, application/x-csv, application/postscript, application/x-tif, image/png, application/gzip-compressed, application/vnd.oasis.opendocument.text, image/x-ms-bmp, application/x-jpg, text/pdf, drawing/x-dwg, image/x-tiff, application/x-zip-compressed, image/x-dwg, application/eps, image/x-eps, image/jpeg, application/x-eps, application/acrobat, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-dxf.
|
13159
13123
|
"""
|
13160
13124
|
file: Upload!
|
13161
13125
|
|
@@ -15590,7 +15554,6 @@ type Mutation {
|
|
15590
15554
|
Determines whether the email sent out is catered to carriers instead of customers
|
15591
15555
|
"""
|
15592
15556
|
vehicles: Boolean = false
|
15593
|
-
volumeDiscount: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
15594
15557
|
): CheckoutComplete
|
15595
15558
|
|
15596
15559
|
"""
|