@nautical-commerce/graphql-schema 1.69.0 → 1.70.0-10-g5851b81b9
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 +35 -88
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -317,6 +317,9 @@ type Query {
|
|
317
317
|
last: Int
|
318
318
|
): TenantCountableConnection
|
319
319
|
|
320
|
+
"""Return the tenant for the currently authenticated user."""
|
321
|
+
currentTenant: Tenant
|
322
|
+
|
320
323
|
"""Return information about the shop."""
|
321
324
|
shop: Shop!
|
322
325
|
|
@@ -442,7 +445,7 @@ type Query {
|
|
442
445
|
|
443
446
|
"""Return the last n elements from the list."""
|
444
447
|
last: Int
|
445
|
-
): UserCountableConnection
|
448
|
+
): UserCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
446
449
|
availablePlans(
|
447
450
|
query: String
|
448
451
|
|
@@ -457,7 +460,7 @@ type Query {
|
|
457
460
|
|
458
461
|
"""Return the last n elements from the list."""
|
459
462
|
last: Int
|
460
|
-
): AgreementCountableConnection
|
463
|
+
): AgreementCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
461
464
|
sellerListCards(period: ReportingPeriod!, identifier: ID): SellerCards @deprecated(reason: "This will be removed on April 16, 2025")
|
462
465
|
sellerDetailCards(period: ReportingPeriod!, identifier: ID!): SellerDetailCards @deprecated(reason: "This will be removed on April 16, 2025")
|
463
466
|
|
@@ -733,7 +736,7 @@ type Query {
|
|
733
736
|
|
734
737
|
"""Return the last n elements from the list."""
|
735
738
|
last: Int
|
736
|
-
): ProductVariantCountableConnection
|
739
|
+
): ProductVariantCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
737
740
|
|
738
741
|
"""Look up a price book by ID."""
|
739
742
|
priceBook(
|
@@ -985,7 +988,7 @@ type Query {
|
|
985
988
|
thirdPartyProducts(
|
986
989
|
"""Third-party source name"""
|
987
990
|
source: String!
|
988
|
-
): GenericScalar
|
991
|
+
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
989
992
|
|
990
993
|
"""Get third party product in form we can use for import"""
|
991
994
|
importThirdPartyProduct(
|
@@ -994,16 +997,16 @@ type Query {
|
|
994
997
|
|
995
998
|
"""ID of the third party product to import"""
|
996
999
|
id: ID!
|
997
|
-
): GenericScalar
|
1000
|
+
): GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
998
1001
|
|
999
1002
|
"""List of plugins that are available as product import sources"""
|
1000
|
-
availableImportSources: [Plugin!]
|
1003
|
+
availableImportSources: [Plugin!] @deprecated(reason: "This will be removed on April 29, 2025")
|
1001
1004
|
|
1002
1005
|
"""Look up a catalog import process by ID."""
|
1003
1006
|
catalogImportProcess(
|
1004
1007
|
"""ID of the catalog import process."""
|
1005
1008
|
id: ID!
|
1006
|
-
): CatalogImportProcess
|
1009
|
+
): CatalogImportProcess @deprecated(reason: "This will be removed on April 29, 2025")
|
1007
1010
|
|
1008
1011
|
"""List of catalog import processes."""
|
1009
1012
|
catalogImportProcesses(
|
@@ -1024,7 +1027,7 @@ type Query {
|
|
1024
1027
|
|
1025
1028
|
"""Return the last n elements from the list."""
|
1026
1029
|
last: Int
|
1027
|
-
): CatalogImportProcessCountableConnection
|
1030
|
+
): CatalogImportProcessCountableConnection @deprecated(reason: "This will be removed on April 29, 2025")
|
1028
1031
|
|
1029
1032
|
"""
|
1030
1033
|
List of tax exempt code supported by Avalara. Required permission: MANAGE_MARKETPLACE. Note: doesn't support app auth.
|
@@ -1143,9 +1146,6 @@ type Query {
|
|
1143
1146
|
payoutId: ID
|
1144
1147
|
): VendorPayoutReport
|
1145
1148
|
vendorPayoutList(
|
1146
|
-
"""Vendor type of the payout"""
|
1147
|
-
vendorType: String @deprecated(reason: "This will be removed on February 1, 2025.")
|
1148
|
-
|
1149
1149
|
"""Vendor ID"""
|
1150
1150
|
vendorId: ID
|
1151
1151
|
): SingleVendorPayoutReport
|
@@ -1219,7 +1219,7 @@ type Query {
|
|
1219
1219
|
|
1220
1220
|
"""Return the last n elements from the list."""
|
1221
1221
|
last: Int
|
1222
|
-
): OrderEventCountableConnection
|
1222
|
+
): OrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1223
1223
|
|
1224
1224
|
"""
|
1225
1225
|
List of activity events to display on homepage (at the moment it only contains nautical-order-events).
|
@@ -1236,7 +1236,7 @@ type Query {
|
|
1236
1236
|
|
1237
1237
|
"""Return the last n elements from the list."""
|
1238
1238
|
last: Int
|
1239
|
-
): NauticalOrderEventCountableConnection
|
1239
|
+
): NauticalOrderEventCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
1240
1240
|
|
1241
1241
|
"""Look up an order by ID."""
|
1242
1242
|
order(
|
@@ -1457,7 +1457,7 @@ type Query {
|
|
1457
1457
|
|
1458
1458
|
"""End date to filter cards and order data"""
|
1459
1459
|
endDate: Date!
|
1460
|
-
): OptimizedHome
|
1460
|
+
): OptimizedHome @deprecated(reason: "This will be removed on April 29, 2025.")
|
1461
1461
|
|
1462
1462
|
"""Return requested nautical configuration item"""
|
1463
1463
|
nauticalConfiguration(
|
@@ -1883,7 +1883,7 @@ type Query {
|
|
1883
1883
|
checkoutLine(
|
1884
1884
|
"""ID of the checkout line."""
|
1885
1885
|
id: ID
|
1886
|
-
): CheckoutLine
|
1886
|
+
): CheckoutLine @deprecated(reason: "This will be removed on April 30, 2025.")
|
1887
1887
|
|
1888
1888
|
"""List of checkout lines."""
|
1889
1889
|
checkoutLines(
|
@@ -2032,7 +2032,7 @@ type Query {
|
|
2032
2032
|
|
2033
2033
|
"""Sublocality like a district."""
|
2034
2034
|
cityArea: String
|
2035
|
-
): AddressValidationData!
|
2035
|
+
): AddressValidationData! @deprecated(reason: "This will be removed on April 29, 2025.")
|
2036
2036
|
|
2037
2037
|
"""Look up an address by ID."""
|
2038
2038
|
address(
|
@@ -3827,9 +3827,6 @@ type Order implements Node & ObjectWithMetadata {
|
|
3827
3827
|
"""Seller commission for the order"""
|
3828
3828
|
sellerCommission: Money
|
3829
3829
|
|
3830
|
-
"""Volume discount for the order"""
|
3831
|
-
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
3832
|
-
|
3833
3830
|
"""Validation status for the order"""
|
3834
3831
|
validationStatus: [ValidationStatus!]
|
3835
3832
|
|
@@ -4700,7 +4697,7 @@ type App implements Node & ObjectWithMetadata {
|
|
4700
4697
|
metadata: [MetadataItem!]!
|
4701
4698
|
|
4702
4699
|
"""Type of the app."""
|
4703
|
-
type: AppTypeEnum
|
4700
|
+
type: AppTypeEnum @deprecated(reason: "This will be removed on April 30, 2025.")
|
4704
4701
|
|
4705
4702
|
"""List of dashboard integrations for this app"""
|
4706
4703
|
dashboardIntegrations: [AppDashboardIntegration!]
|
@@ -4712,25 +4709,25 @@ type App implements Node & ObjectWithMetadata {
|
|
4712
4709
|
webhooks: [Webhook!]
|
4713
4710
|
|
4714
4711
|
"""Description of this app."""
|
4715
|
-
aboutApp: String
|
4712
|
+
aboutApp: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4716
4713
|
|
4717
4714
|
"""Description of the data privacy defined for this app."""
|
4718
|
-
dataPrivacy: String
|
4715
|
+
dataPrivacy: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4719
4716
|
|
4720
4717
|
"""Url to details about the privacy policy on the app owner page."""
|
4721
|
-
dataPrivacyUrl: String
|
4718
|
+
dataPrivacyUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4722
4719
|
|
4723
4720
|
"""Homepage of the app."""
|
4724
|
-
homepageUrl: String
|
4721
|
+
homepageUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4725
4722
|
|
4726
4723
|
"""Support page for the app."""
|
4727
|
-
supportUrl: String
|
4724
|
+
supportUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4728
4725
|
|
4729
4726
|
"""Url to iframe with the configuration for the app."""
|
4730
|
-
configurationUrl: String
|
4727
|
+
configurationUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4731
4728
|
|
4732
4729
|
"""Url to iframe with the app."""
|
4733
|
-
appUrl: String
|
4730
|
+
appUrl: String @deprecated(reason: "This will be removed on April 30, 2025.")
|
4734
4731
|
|
4735
4732
|
"""Version number of the app."""
|
4736
4733
|
version: String
|
@@ -5619,9 +5616,6 @@ type NauticalOrder implements Node & ObjectWithMetadata {
|
|
5619
5616
|
|
5620
5617
|
"""Returns True, if order requires shipping."""
|
5621
5618
|
isShippingRequired: Boolean!
|
5622
|
-
|
5623
|
-
"""Volume discount for the nautical order"""
|
5624
|
-
volumeDiscount: TaxedMoney @deprecated(reason: "This will be removed on February 1, 2025.")
|
5625
5619
|
shippingMethodName: String!
|
5626
5620
|
|
5627
5621
|
"""List of all the vendor orders connected to this marketplace order."""
|
@@ -7762,7 +7756,6 @@ input CustomerOrderFilterInput {
|
|
7762
7756
|
search: String
|
7763
7757
|
source: [OrderSourceFilter!]
|
7764
7758
|
isHistorical: Boolean
|
7765
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
7766
7759
|
payoutStatus: [OrderPayoutStatusEnum!]
|
7767
7760
|
vendorPayouts: [ID]
|
7768
7761
|
payouts: [ID]
|
@@ -7786,15 +7779,6 @@ enum OrderSourceFilter {
|
|
7786
7779
|
EXTERNAL
|
7787
7780
|
}
|
7788
7781
|
|
7789
|
-
enum OfferOrderSubStatusFilter {
|
7790
|
-
OFFER_APPROVED
|
7791
|
-
OFFER_CANCELLED
|
7792
|
-
OFFER_CREATED
|
7793
|
-
OFFER_EXPIRED
|
7794
|
-
OFFER_NEGOTIATING
|
7795
|
-
OFFER_REJECTED
|
7796
|
-
}
|
7797
|
-
|
7798
7782
|
input OrderSortingInput {
|
7799
7783
|
"""Specifies the direction in which to sort products."""
|
7800
7784
|
direction: OrderDirection!
|
@@ -7866,7 +7850,6 @@ input CustomerNauticalOrderFilterInput {
|
|
7866
7850
|
search: String
|
7867
7851
|
source: [OrderSourceFilter!]
|
7868
7852
|
isHistorical: Boolean
|
7869
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
7870
7853
|
}
|
7871
7854
|
|
7872
7855
|
type UserPermission {
|
@@ -10399,7 +10382,6 @@ type OrderVendorSummaryType {
|
|
10399
10382
|
average: Float
|
10400
10383
|
taxes: Float
|
10401
10384
|
discounts: Float
|
10402
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10403
10385
|
revenue: Float
|
10404
10386
|
totals: Int
|
10405
10387
|
commission: Float
|
@@ -10419,7 +10401,6 @@ type OrderVendorReportType {
|
|
10419
10401
|
average: Float
|
10420
10402
|
taxes: Float
|
10421
10403
|
discounts: Float
|
10422
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10423
10404
|
revenue: Float
|
10424
10405
|
totals: Int
|
10425
10406
|
commission: Float
|
@@ -10448,7 +10429,6 @@ type SingleVendorReportType {
|
|
10448
10429
|
average: Float
|
10449
10430
|
taxes: Float
|
10450
10431
|
discounts: Float
|
10451
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10452
10432
|
revenue: Float
|
10453
10433
|
totals: Int
|
10454
10434
|
commission: Float
|
@@ -10472,7 +10452,6 @@ type SingleVendorSummaryType {
|
|
10472
10452
|
average: Float
|
10473
10453
|
taxes: Float
|
10474
10454
|
discounts: Float
|
10475
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
10476
10455
|
revenue: Float
|
10477
10456
|
totals: Int
|
10478
10457
|
commission: Float
|
@@ -10621,7 +10600,6 @@ input OrderFilterInput {
|
|
10621
10600
|
search: String
|
10622
10601
|
source: [OrderSourceFilter!]
|
10623
10602
|
isHistorical: Boolean
|
10624
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10625
10603
|
payoutStatus: [OrderPayoutStatusEnum!]
|
10626
10604
|
vendorPayouts: [ID]
|
10627
10605
|
payouts: [ID]
|
@@ -10638,7 +10616,6 @@ input NauticalOrderFilterInput {
|
|
10638
10616
|
search: String
|
10639
10617
|
source: [OrderSourceFilter!]
|
10640
10618
|
isHistorical: Boolean
|
10641
|
-
subStatus: [OfferOrderSubStatusFilter!] @deprecated(reason: "This will be removed on Feb 1, 2025")
|
10642
10619
|
}
|
10643
10620
|
|
10644
10621
|
input OrderDraftFilterInput {
|
@@ -10650,7 +10627,7 @@ input OrderDraftFilterInput {
|
|
10650
10627
|
search: String
|
10651
10628
|
isHistorical: Boolean
|
10652
10629
|
source: [OrderSourceFilter!]
|
10653
|
-
subStatus:
|
10630
|
+
subStatus: String
|
10654
10631
|
}
|
10655
10632
|
|
10656
10633
|
input NauticalOrderDraftFilterInput {
|
@@ -10662,7 +10639,7 @@ input NauticalOrderDraftFilterInput {
|
|
10662
10639
|
search: String
|
10663
10640
|
isHistorical: Boolean
|
10664
10641
|
source: [OrderSourceFilter!]
|
10665
|
-
subStatus:
|
10642
|
+
subStatus: String
|
10666
10643
|
}
|
10667
10644
|
|
10668
10645
|
input NauticalOrderQuoteFilterInput {
|
@@ -11908,7 +11885,6 @@ type OrderSellerSummaryType {
|
|
11908
11885
|
average: Float
|
11909
11886
|
taxes: Float
|
11910
11887
|
discounts: Float
|
11911
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11912
11888
|
revenue: Float
|
11913
11889
|
totals: Int
|
11914
11890
|
commission: Float
|
@@ -11924,7 +11900,6 @@ type OrderCustomerReportType {
|
|
11924
11900
|
average: Float
|
11925
11901
|
taxes: Float
|
11926
11902
|
discounts: Float
|
11927
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11928
11903
|
revenue: Float
|
11929
11904
|
totals: Int
|
11930
11905
|
commission: Float
|
@@ -11965,7 +11940,6 @@ type OrderSellerReportType {
|
|
11965
11940
|
average: Float
|
11966
11941
|
taxes: Float
|
11967
11942
|
discounts: Float
|
11968
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
11969
11943
|
revenue: Float
|
11970
11944
|
totals: Int
|
11971
11945
|
commission: Float
|
@@ -12006,7 +11980,6 @@ type OrderMarketplaceReportType {
|
|
12006
11980
|
average: Float
|
12007
11981
|
taxes: Float
|
12008
11982
|
discounts: Float
|
12009
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12010
11983
|
revenue: Float
|
12011
11984
|
totals: Int
|
12012
11985
|
commission: Float
|
@@ -12078,7 +12051,6 @@ type AbstractOrderSellerReportType {
|
|
12078
12051
|
average: Float
|
12079
12052
|
taxes: Float
|
12080
12053
|
discounts: Float
|
12081
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12082
12054
|
revenue: Float
|
12083
12055
|
totals: Int
|
12084
12056
|
commission: Float
|
@@ -12093,7 +12065,6 @@ type MarketplaceTaxReportType {
|
|
12093
12065
|
average: Float
|
12094
12066
|
taxes: Float
|
12095
12067
|
discounts: Float
|
12096
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12097
12068
|
revenue: Float
|
12098
12069
|
totals: Int
|
12099
12070
|
commission: Float
|
@@ -12133,7 +12104,6 @@ type MarketplaceTaxReportByLocaleType {
|
|
12133
12104
|
average: Float
|
12134
12105
|
taxes: Float
|
12135
12106
|
discounts: Float
|
12136
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12137
12107
|
revenue: Float
|
12138
12108
|
totals: Int
|
12139
12109
|
commission: Float
|
@@ -12325,7 +12295,6 @@ type AbstractPercentReportType {
|
|
12325
12295
|
average: Float
|
12326
12296
|
taxes: Float
|
12327
12297
|
discounts: Float
|
12328
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12329
12298
|
revenue: Float
|
12330
12299
|
totals: Float
|
12331
12300
|
}
|
@@ -12344,7 +12313,6 @@ type DashboardSellerOrderPerformanceType {
|
|
12344
12313
|
average: Float
|
12345
12314
|
taxes: Float
|
12346
12315
|
discounts: Float
|
12347
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12348
12316
|
revenue: Float
|
12349
12317
|
totals: Int
|
12350
12318
|
commission: Float
|
@@ -12366,7 +12334,6 @@ type GraphDataType {
|
|
12366
12334
|
average: Float
|
12367
12335
|
taxes: Float
|
12368
12336
|
discounts: Float
|
12369
|
-
volumeDiscounts: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
12370
12337
|
revenue: Float
|
12371
12338
|
totals: Int
|
12372
12339
|
commission: Float
|
@@ -13155,7 +13122,7 @@ type Mutation {
|
|
13155
13122
|
description: String
|
13156
13123
|
|
13157
13124
|
"""
|
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/
|
13125
|
+
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-autocad, application/x-gzip, image/png, application/vnd.oasis.opendocument.presentation, image/gif, image/x-eps, image/svg+xml, application/csv, application/x-dxf, application/excel, application/pdf, image/heif-sequence, application/vnd.ms-excel, application/x-eps, image/x-dwg, application/x-rar, text/rtf, application/msword, image/dxf, application/svg+xml, application/vnd.oasis.opendocument.spreadsheet, image/heic-sequence, application/gzip, application/acrobat, text/x-pdf, application/vnd.oasis.opendocument.text, image/jpg, application/tiff, application/gzip-compressed, application/vnd.pdf, image/vnd.dwg, application/tif, application/x-tiff, text/plain, image/x-tif, application/x-rar-compressed, application/vnd.ms-powerpoint, text/svg, application/dwg, image/eps, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/x-bmp, image/tiff, application/x-jpg, image/heic, application/dxf, application/x-zip-compressed, text/x-csv, image/x-tiff, application/gzipped, application/x-tar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/acad, image/bmp, application/x-tif, image/webp, image/heif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/rtf, image/tif, drawing/dwg, application/eps, application/x-pdf, text/x-comma-separated-values, application/postscript, image/x-dxf, pplication/vnd.rar, text/svg-xml, drawing/x-dwg, text/csv, application/x-acad, application/x-csv, image/x-ms-bmp, image/svg, image/jpeg, text/pdf, application/jpg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, drawing/x-dwf, application/vnd.ms-word, application/x-rtf, application/zip, text/comma-separated-values, application/x-dwg.
|
13159
13126
|
"""
|
13160
13127
|
file: Upload!
|
13161
13128
|
|
@@ -13250,7 +13217,7 @@ type Mutation {
|
|
13250
13217
|
|
13251
13218
|
"""Fields required to update a payout date range."""
|
13252
13219
|
input: PayoutDatesInput!
|
13253
|
-
): PayoutDatesUpdate
|
13220
|
+
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
13254
13221
|
|
13255
13222
|
"""Archive payouts."""
|
13256
13223
|
payoutBulkArchive(
|
@@ -14857,7 +14824,7 @@ type Mutation {
|
|
14857
14824
|
|
14858
14825
|
"""Fields required to create a return notification for the order."""
|
14859
14826
|
input: OrderReturnNotificationInput!
|
14860
|
-
): OrderReturnNotification
|
14827
|
+
): OrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14861
14828
|
|
14862
14829
|
"""
|
14863
14830
|
Attempts to force a refresh of the existing taxes on a non-placed nautical order.
|
@@ -14889,7 +14856,7 @@ type Mutation {
|
|
14889
14856
|
|
14890
14857
|
"""Fields required to create a return notification for the order."""
|
14891
14858
|
input: OrderReturnNotificationInput!
|
14892
|
-
): NauticalOrderReturnNotification
|
14859
|
+
): NauticalOrderReturnNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14893
14860
|
|
14894
14861
|
"""Adds return notification note to the order."""
|
14895
14862
|
nauticalOrderReturnFromStorefrontNotification(
|
@@ -14898,16 +14865,7 @@ type Mutation {
|
|
14898
14865
|
|
14899
14866
|
"""Fields required to create a return notification for the order."""
|
14900
14867
|
input: OrderReturnNotificationInput!
|
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
|
14868
|
+
): NauticalOrderReturnFromStorefrontNotification @deprecated(reason: "This will be removed on April 29, 2025.")
|
14911
14869
|
|
14912
14870
|
"""Cancel an order."""
|
14913
14871
|
orderCancel(
|
@@ -15365,7 +15323,7 @@ type Mutation {
|
|
15365
15323
|
|
15366
15324
|
"""Seller ID"""
|
15367
15325
|
sellerId: ID
|
15368
|
-
): CatalogImport
|
15326
|
+
): CatalogImport @deprecated(reason: "This will be removed on April 29, 2025")
|
15369
15327
|
|
15370
15328
|
"""Export catalog."""
|
15371
15329
|
catalogExport(
|
@@ -15383,7 +15341,7 @@ type Mutation {
|
|
15383
15341
|
|
15384
15342
|
"""Seller ID"""
|
15385
15343
|
sellerId: ID
|
15386
|
-
): CustomersExport
|
15344
|
+
): CustomersExport @deprecated(reason: "This will be removed on April 29, 2025")
|
15387
15345
|
|
15388
15346
|
"""Update plugin flow."""
|
15389
15347
|
pluginFlowUpdate(
|
@@ -15547,7 +15505,7 @@ type Mutation {
|
|
15547
15505
|
productsImport(
|
15548
15506
|
"""Represents a file in a multipart request."""
|
15549
15507
|
file: Upload!
|
15550
|
-
): ProductsImport
|
15508
|
+
): ProductsImport @deprecated(reason: "This will be removed on April 29, 2025.")
|
15551
15509
|
|
15552
15510
|
"""Adds a gift card or a voucher to a checkout."""
|
15553
15511
|
checkoutAddPromoCode(
|
@@ -15599,7 +15557,6 @@ type Mutation {
|
|
15599
15557
|
Determines whether the email sent out is catered to carriers instead of customers
|
15600
15558
|
"""
|
15601
15559
|
vehicles: Boolean = false
|
15602
|
-
volumeDiscount: Float @deprecated(reason: "This will be removed on February 1, 2025.")
|
15603
15560
|
): CheckoutComplete
|
15604
15561
|
|
15605
15562
|
"""
|
@@ -20971,16 +20928,6 @@ type NauticalOrderReturnFromStorefrontNotification {
|
|
20971
20928
|
orderErrors: [OrderError!]!
|
20972
20929
|
}
|
20973
20930
|
|
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
|
-
|
20984
20931
|
"""Cancel an order."""
|
20985
20932
|
type OrderCancel {
|
20986
20933
|
"""Canceled order."""
|
@@ -23289,7 +23236,7 @@ type VerifyToken {
|
|
23289
23236
|
isValid: Boolean!
|
23290
23237
|
|
23291
23238
|
"""JWT payload."""
|
23292
|
-
payload: GenericScalar
|
23239
|
+
payload: GenericScalar @deprecated(reason: "This will be removed on April 29, 2025")
|
23293
23240
|
accountErrors: [AccountError!]!
|
23294
23241
|
}
|
23295
23242
|
|