@nautical-commerce/graphql-schema 1.69.0-19-ga16e4fd92 → 1.69.0-2-g78735acf3
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 +81 -25
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -442,7 +442,7 @@ type Query {
|
|
442
442
|
|
443
443
|
"""Return the last n elements from the list."""
|
444
444
|
last: Int
|
445
|
-
): UserCountableConnection
|
445
|
+
): UserCountableConnection
|
446
446
|
availablePlans(
|
447
447
|
query: String
|
448
448
|
|
@@ -457,7 +457,7 @@ type Query {
|
|
457
457
|
|
458
458
|
"""Return the last n elements from the list."""
|
459
459
|
last: Int
|
460
|
-
): AgreementCountableConnection
|
460
|
+
): AgreementCountableConnection
|
461
461
|
sellerListCards(period: ReportingPeriod!, identifier: ID): SellerCards @deprecated(reason: "This will be removed on April 16, 2025")
|
462
462
|
sellerDetailCards(period: ReportingPeriod!, identifier: ID!): SellerDetailCards @deprecated(reason: "This will be removed on April 16, 2025")
|
463
463
|
|
@@ -733,7 +733,7 @@ type Query {
|
|
733
733
|
|
734
734
|
"""Return the last n elements from the list."""
|
735
735
|
last: Int
|
736
|
-
): ProductVariantCountableConnection
|
736
|
+
): ProductVariantCountableConnection
|
737
737
|
|
738
738
|
"""Look up a price book by ID."""
|
739
739
|
priceBook(
|
@@ -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
|
@@ -1216,7 +1219,7 @@ type Query {
|
|
1216
1219
|
|
1217
1220
|
"""Return the last n elements from the list."""
|
1218
1221
|
last: Int
|
1219
|
-
): OrderEventCountableConnection
|
1222
|
+
): OrderEventCountableConnection
|
1220
1223
|
|
1221
1224
|
"""
|
1222
1225
|
List of activity events to display on homepage (at the moment it only contains nautical-order-events).
|
@@ -1233,7 +1236,7 @@ type Query {
|
|
1233
1236
|
|
1234
1237
|
"""Return the last n elements from the list."""
|
1235
1238
|
last: Int
|
1236
|
-
): NauticalOrderEventCountableConnection
|
1239
|
+
): NauticalOrderEventCountableConnection
|
1237
1240
|
|
1238
1241
|
"""Look up an order by ID."""
|
1239
1242
|
order(
|
@@ -1454,7 +1457,7 @@ type Query {
|
|
1454
1457
|
|
1455
1458
|
"""End date to filter cards and order data"""
|
1456
1459
|
endDate: Date!
|
1457
|
-
): OptimizedHome
|
1460
|
+
): OptimizedHome
|
1458
1461
|
|
1459
1462
|
"""Return requested nautical configuration item"""
|
1460
1463
|
nauticalConfiguration(
|
@@ -2029,7 +2032,7 @@ type Query {
|
|
2029
2032
|
|
2030
2033
|
"""Sublocality like a district."""
|
2031
2034
|
cityArea: String
|
2032
|
-
): AddressValidationData!
|
2035
|
+
): AddressValidationData!
|
2033
2036
|
|
2034
2037
|
"""Look up an address by ID."""
|
2035
2038
|
address(
|
@@ -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:
|
13158
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: text/x-pdf, application/vnd.oasis.opendocument.spreadsheet, application/gzip, text/svg-xml, image/webp, image/x-eps, application/dxf, application/vnd.pdf, image/heic, text/x-csv, image/x-dwg, application/jpg, image/x-bmp, application/x-gzip, application/pdf, image/heif, application/x-tiff, image/vnd.dwg, text/x-comma-separated-values, text/pdf, application/x-tif, text/rtf, image/jpeg, application/vnd.oasis.opendocument.presentation, application/acrobat, image/tiff, application/rtf, image/png, image/x-dxf, application/dwg, text/plain, image/bmp, application/x-dwg, application/vnd.ms-excel, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzip-compressed, image/jpg, image/tif, application/excel, drawing/x-dwf, application/vnd.ms-word, image/eps, application/x-tar, application/tiff, application/csv, image/x-ms-bmp, application/gzipped, text/svg, application/zip, application/x-autocad, application/acad, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-rar, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/x-tif, application/x-eps, text/csv, pplication/vnd.rar, drawing/x-dwg, application/x-rar-compressed, image/gif, application/postscript, image/svg, text/comma-separated-values, image/heif-sequence, application/x-dxf, application/eps, image/dxf, image/heic-sequence, application/msword, application/x-csv, application/x-rtf, application/x-pdf, application/x-acad, image/x-tiff, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.text, application/svg+xml, application/tif, image/svg+xml, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/dwg.
|
13123
13159
|
"""
|
13124
13160
|
file: Upload!
|
13125
13161
|
|
@@ -13214,7 +13250,7 @@ type Mutation {
|
|
13214
13250
|
|
13215
13251
|
"""Fields required to update a payout date range."""
|
13216
13252
|
input: PayoutDatesInput!
|
13217
|
-
): PayoutDatesUpdate
|
13253
|
+
): PayoutDatesUpdate
|
13218
13254
|
|
13219
13255
|
"""Archive payouts."""
|
13220
13256
|
payoutBulkArchive(
|
@@ -14821,7 +14857,7 @@ type Mutation {
|
|
14821
14857
|
|
14822
14858
|
"""Fields required to create a return notification for the order."""
|
14823
14859
|
input: OrderReturnNotificationInput!
|
14824
|
-
): OrderReturnNotification
|
14860
|
+
): OrderReturnNotification
|
14825
14861
|
|
14826
14862
|
"""
|
14827
14863
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
@@ -14853,7 +14889,7 @@ type Mutation {
|
|
14853
14889
|
|
14854
14890
|
"""Fields required to create a return notification for the order."""
|
14855
14891
|
input: OrderReturnNotificationInput!
|
14856
|
-
): NauticalOrderReturnNotification
|
14892
|
+
): NauticalOrderReturnNotification
|
14857
14893
|
|
14858
14894
|
"""Adds return notification note to the order."""
|
14859
14895
|
nauticalOrderReturnFromStorefrontNotification(
|
@@ -14862,7 +14898,16 @@ type Mutation {
|
|
14862
14898
|
|
14863
14899
|
"""Fields required to create a return notification for the order."""
|
14864
14900
|
input: OrderReturnNotificationInput!
|
14865
|
-
): NauticalOrderReturnFromStorefrontNotification
|
14901
|
+
): NauticalOrderReturnFromStorefrontNotification
|
14902
|
+
|
14903
|
+
"""Adds return notification note to the order."""
|
14904
|
+
vendorOrderReturnFromStorefrontNotification(
|
14905
|
+
"""ID of the order to add a note for."""
|
14906
|
+
order: ID!
|
14907
|
+
|
14908
|
+
"""Fields required to create a return notification for the order."""
|
14909
|
+
input: OrderReturnNotificationInput!
|
14910
|
+
): VendorOrderReturnFromStorefrontNotification
|
14866
14911
|
|
14867
14912
|
"""Cancel an order."""
|
14868
14913
|
orderCancel(
|
@@ -15338,7 +15383,7 @@ type Mutation {
|
|
15338
15383
|
|
15339
15384
|
"""Seller ID"""
|
15340
15385
|
sellerId: ID
|
15341
|
-
): CustomersExport
|
15386
|
+
): CustomersExport
|
15342
15387
|
|
15343
15388
|
"""Update plugin flow."""
|
15344
15389
|
pluginFlowUpdate(
|
@@ -15502,7 +15547,7 @@ type Mutation {
|
|
15502
15547
|
productsImport(
|
15503
15548
|
"""Represents a file in a multipart request."""
|
15504
15549
|
file: Upload!
|
15505
|
-
): ProductsImport
|
15550
|
+
): ProductsImport
|
15506
15551
|
|
15507
15552
|
"""Adds a gift card or a voucher to a checkout."""
|
15508
15553
|
checkoutAddPromoCode(
|
@@ -15554,6 +15599,7 @@ type Mutation {
|
|
15554
15599
|
Determines whether the email sent out is catered to carriers instead of customers
|
15555
15600
|
"""
|
15556
15601
|
vehicles: Boolean = false
|
15602
|
+
volumeDiscount: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
15557
15603
|
): CheckoutComplete
|
15558
15604
|
|
15559
15605
|
"""
|
@@ -20925,6 +20971,16 @@ type NauticalOrderReturnFromStorefrontNotification {
|
|
20925
20971
|
orderErrors: [OrderError!]!
|
20926
20972
|
}
|
20927
20973
|
|
20974
|
+
"""Adds return notification note to the order."""
|
20975
|
+
type VendorOrderReturnFromStorefrontNotification {
|
20976
|
+
"""Order with return notification note added."""
|
20977
|
+
order: Order
|
20978
|
+
|
20979
|
+
"""Order return notification created."""
|
20980
|
+
event: [OrderEvent!]
|
20981
|
+
orderErrors: [OrderError!]!
|
20982
|
+
}
|
20983
|
+
|
20928
20984
|
"""Cancel an order."""
|
20929
20985
|
type OrderCancel {
|
20930
20986
|
"""Canceled order."""
|
@@ -23233,7 +23289,7 @@ type VerifyToken {
|
|
23233
23289
|
isValid: Boolean!
|
23234
23290
|
|
23235
23291
|
"""JWT payload."""
|
23236
|
-
payload: GenericScalar
|
23292
|
+
payload: GenericScalar
|
23237
23293
|
accountErrors: [AccountError!]!
|
23238
23294
|
}
|
23239
23295
|
|