@nautical-commerce/graphql-schema 1.69.0-38-ge005a6480 → 1.69.0-4-g2e9efe541
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 +49 -12
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -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
|
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
|
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
|
4715
|
+
aboutApp: String
|
4710
4716
|
|
4711
4717
|
"""Description of the data privacy defined for this app."""
|
4712
|
-
dataPrivacy: String
|
4718
|
+
dataPrivacy: String
|
4713
4719
|
|
4714
4720
|
"""Url to details about the privacy policy on the app owner page."""
|
4715
|
-
dataPrivacyUrl: String
|
4721
|
+
dataPrivacyUrl: String
|
4716
4722
|
|
4717
4723
|
"""Homepage of the app."""
|
4718
|
-
homepageUrl: String
|
4724
|
+
homepageUrl: String
|
4719
4725
|
|
4720
4726
|
"""Support page for the app."""
|
4721
|
-
supportUrl: String
|
4727
|
+
supportUrl: String
|
4722
4728
|
|
4723
4729
|
"""Url to iframe with the configuration for the app."""
|
4724
|
-
configurationUrl: String
|
4730
|
+
configurationUrl: String
|
4725
4731
|
|
4726
4732
|
"""Url to iframe with the app."""
|
4727
|
-
appUrl: String
|
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:
|
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:
|
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/
|
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/x-dxf, application/x-dwg, drawing/dwg, application/postscript, application/rtf, text/svg-xml, text/svg, application/vnd.ms-powerpoint, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar-compressed, application/zip, application/x-tar, image/x-tif, text/x-csv, application/jpg, application/csv, text/rtf, image/x-bmp, image/heic-sequence, image/jpg, application/acad, application/tif, application/msword, image/eps, application/x-acad, application/x-autocad, pplication/vnd.rar, image/tiff, text/x-pdf, application/x-gzip, application/eps, application/gzip-compressed, application/x-csv, image/heic, application/dwg, image/dxf, application/x-rtf, image/webp, application/x-jpg, image/heif, application/gzip, drawing/x-dwf, text/pdf, text/plain, image/x-dxf, application/svg+xml, application/vnd.pdf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/gif, application/vnd.oasis.opendocument.text, image/svg+xml, image/svg, application/pdf, application/vnd.ms-excel, application/x-rar, image/x-dwg, application/vnd.oasis.opendocument.presentation, application/x-tif, image/x-ms-bmp, application/x-tiff, application/excel, text/csv, application/vnd.oasis.opendocument.spreadsheet, application/vnd.ms-word, image/x-eps, application/x-zip-compressed, image/vnd.dwg, image/x-tiff, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/jpeg, image/heif-sequence, application/dxf, application/x-pdf, application/x-eps, text/comma-separated-values, image/png, text/x-comma-separated-values, image/bmp, application/gzipped, drawing/x-dwg, application/acrobat, image/tif, application/tiff.
|
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
|
"""
|