@nautical-commerce/graphql-schema 1.78.0-5-g317db159c → 1.78.0-51-gd3ca99fb2
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 +192 -676
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -480,19 +480,6 @@ type Query {
|
|
480
480
|
"""Return the last n elements from the list."""
|
481
481
|
last: Int
|
482
482
|
): AgreementCountableConnection @deprecated(reason: "This will be removed on April 29, 2025.")
|
483
|
-
sellerListCards(period: ReportingPeriod!, identifier: ID): SellerCards @deprecated(reason: "This will be removed on April 16, 2025")
|
484
|
-
sellerDetailCards(period: ReportingPeriod!, identifier: ID!): SellerDetailCards @deprecated(reason: "This will be removed on April 16, 2025")
|
485
|
-
|
486
|
-
"""Number of new sellers created in given period."""
|
487
|
-
newSellers(period: ReportingPeriod!): Int @deprecated(reason: "This will be removed on April 16, 2025")
|
488
|
-
|
489
|
-
"""Number of orders placed by sellers in given period."""
|
490
|
-
sellerOrders(period: ReportingPeriod!, identifier: ID): Int @deprecated(reason: "This will be removed on April 16, 2025")
|
491
|
-
|
492
|
-
"""
|
493
|
-
Return the total commissions earned across all sellers for the given period.
|
494
|
-
"""
|
495
|
-
sellerCommissions(period: ReportingPeriod!, identifier: ID): Money @deprecated(reason: "This will be removed on April 16, 2025")
|
496
483
|
|
497
484
|
"""Look up an refund by ID."""
|
498
485
|
refund(
|
@@ -1576,61 +1563,6 @@ type Query {
|
|
1576
1563
|
"""Return the last n elements from the list."""
|
1577
1564
|
last: Int
|
1578
1565
|
): EmailEventCountableConnection
|
1579
|
-
insightsOrdersCustomerSummary(
|
1580
|
-
"""Beginning of the period to filter results"""
|
1581
|
-
startDate: Date!
|
1582
|
-
|
1583
|
-
"""End of the period to filter results"""
|
1584
|
-
endDate: Date!
|
1585
|
-
): InReportOrderCustomerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1586
|
-
insightsOrdersSellerSummary(
|
1587
|
-
"""Beginning of the period to filter results"""
|
1588
|
-
startDate: Date!
|
1589
|
-
|
1590
|
-
"""End of the period to filter results"""
|
1591
|
-
endDate: Date!
|
1592
|
-
): InReportOrderSellerSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1593
|
-
insightsOrdersMarketplaceSummary(
|
1594
|
-
"""Beginning of the period to filter results"""
|
1595
|
-
startDate: Date!
|
1596
|
-
|
1597
|
-
"""End of the period to filter results"""
|
1598
|
-
endDate: Date!
|
1599
|
-
|
1600
|
-
"""Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
|
1601
|
-
dimension: InsightDimensionEnum = MONTH
|
1602
|
-
): InReportOrderMarketplaceSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1603
|
-
insightsMarketplacePayoutsSummary(
|
1604
|
-
"""Beginning of the period to filter results"""
|
1605
|
-
startDate: Date!
|
1606
|
-
|
1607
|
-
"""End of the period to filter results"""
|
1608
|
-
endDate: Date!
|
1609
|
-
): InReportMarketplacePayoutsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1610
|
-
insightsMarketplaceTaxSummary(
|
1611
|
-
"""Beginning of the period to filter results"""
|
1612
|
-
startDate: Date!
|
1613
|
-
|
1614
|
-
"""End of the period to filter results"""
|
1615
|
-
endDate: Date!
|
1616
|
-
|
1617
|
-
"""Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
|
1618
|
-
dimension: InsightDimensionEnum = YEAR
|
1619
|
-
): InReportMarketplaceTaxSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1620
|
-
insightsMarketplaceTaxesByCountry(
|
1621
|
-
"""Beginning of the period to filter results"""
|
1622
|
-
startDate: Date!
|
1623
|
-
|
1624
|
-
"""End of the period to filter results"""
|
1625
|
-
endDate: Date!
|
1626
|
-
): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1627
|
-
insightsMarketplaceTaxesByCountryArea(
|
1628
|
-
"""Beginning of the period to filter results"""
|
1629
|
-
startDate: Date!
|
1630
|
-
|
1631
|
-
"""End of the period to filter results"""
|
1632
|
-
endDate: Date!
|
1633
|
-
): InReportMarketplaceTaxesByCountryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1634
1566
|
insightsTopPerformingProducts(
|
1635
1567
|
"""Beginning of the period to filter results"""
|
1636
1568
|
startDate: Date!
|
@@ -1663,19 +1595,6 @@ type Query {
|
|
1663
1595
|
"""Top or worst performing"""
|
1664
1596
|
perspective: PerformancePerspective!
|
1665
1597
|
): InReportTopPerformingCategoriesType
|
1666
|
-
insightsMarketplacePaymentsSummary(
|
1667
|
-
"""Beginning of the period to filter results"""
|
1668
|
-
startDate: Date!
|
1669
|
-
|
1670
|
-
"""End of the period to filter results"""
|
1671
|
-
endDate: Date!
|
1672
|
-
|
1673
|
-
"""Total number of products to list"""
|
1674
|
-
limit: Int = 25
|
1675
|
-
|
1676
|
-
"""Period dimension such as DAY, WEEK, MONTH, QUARTER, YEAR"""
|
1677
|
-
dimension: InsightDimensionEnum = DAY
|
1678
|
-
): InReportMarketplacePaymentsSummaryType @deprecated(reason: "This will be removed on April 13, 2025.")
|
1679
1598
|
dashboardOrdersSummary(
|
1680
1599
|
"""ID of seller for filtering"""
|
1681
1600
|
identifier: ID
|
@@ -3074,18 +2993,6 @@ type Product implements Node & ObjectWithMetadata {
|
|
3074
2993
|
externalId: String
|
3075
2994
|
externalSource: String
|
3076
2995
|
seller: Seller
|
3077
|
-
|
3078
|
-
"""Manufacturer Product Number"""
|
3079
|
-
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3080
|
-
|
3081
|
-
"""Brand of the product"""
|
3082
|
-
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3083
|
-
|
3084
|
-
"""Manufacturer of the product"""
|
3085
|
-
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3086
|
-
|
3087
|
-
"""Product model code"""
|
3088
|
-
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3089
2996
|
seoTitle: String
|
3090
2997
|
seoDescription: String
|
3091
2998
|
productType: ProductType
|
@@ -3211,14 +3118,12 @@ type Product implements Node & ObjectWithMetadata {
|
|
3211
3118
|
"""List of sales associated with the product."""
|
3212
3119
|
sales: [Sale!]!
|
3213
3120
|
|
3121
|
+
"""List of sale messages for the storefront."""
|
3122
|
+
saleMessages: [String!]
|
3123
|
+
|
3214
3124
|
"""List of vouchers associated with the product."""
|
3215
3125
|
vouchers: [Voucher!]!
|
3216
3126
|
|
3217
|
-
"""
|
3218
|
-
The product's sorting priority weight in query results. A larger value indicates a higher priority. This field can be used in both ascending and descending sorting methods.
|
3219
|
-
"""
|
3220
|
-
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
3221
|
-
|
3222
3127
|
"""List of logs for product status changes."""
|
3223
3128
|
productStatusLogs: [ProductStatusLog!]
|
3224
3129
|
|
@@ -3325,7 +3230,6 @@ type Seller implements Node & ObjectWithMetadata {
|
|
3325
3230
|
if no order has been created
|
3326
3231
|
"""
|
3327
3232
|
firstOrderPlacedDate: DateTime
|
3328
|
-
fullfilledByMarketplace: Boolean!
|
3329
3233
|
created: DateTime!
|
3330
3234
|
updated: DateTime!
|
3331
3235
|
accountSetupTasksAreDone: Boolean
|
@@ -3694,9 +3598,11 @@ type Payout implements Node & ObjectWithMetadata {
|
|
3694
3598
|
tenant: Tenant!
|
3695
3599
|
created: String!
|
3696
3600
|
updated: DateTime!
|
3697
|
-
startDate: Date
|
3601
|
+
startDate: Date @deprecated(reason: "This will be removed on July 16, 2025.")
|
3698
3602
|
endDate: String!
|
3699
|
-
|
3603
|
+
|
3604
|
+
"""Status of the payout"""
|
3605
|
+
status: PayoutStatusEnum!
|
3700
3606
|
name: String
|
3701
3607
|
currency: String!
|
3702
3608
|
vendorPayouts(offset: Int, before: String, after: String, first: Int, last: Int): VendorPayoutCountableConnection!
|
@@ -3711,8 +3617,7 @@ type Payout implements Node & ObjectWithMetadata {
|
|
3711
3617
|
payout: Money!
|
3712
3618
|
}
|
3713
3619
|
|
3714
|
-
|
3715
|
-
enum PayoutStatus {
|
3620
|
+
enum PayoutStatusEnum {
|
3716
3621
|
"""Draft"""
|
3717
3622
|
DRAFT
|
3718
3623
|
|
@@ -3727,6 +3632,12 @@ enum PayoutStatus {
|
|
3727
3632
|
|
3728
3633
|
"""Error"""
|
3729
3634
|
ERROR
|
3635
|
+
|
3636
|
+
"""Creating"""
|
3637
|
+
CREATING
|
3638
|
+
|
3639
|
+
"""Processing"""
|
3640
|
+
PROCESSING
|
3730
3641
|
}
|
3731
3642
|
|
3732
3643
|
"""An enumeration."""
|
@@ -3778,7 +3689,7 @@ enum VendorPayoutEventsEnum {
|
|
3778
3689
|
"""Vendor payout status was updated."""
|
3779
3690
|
VENDOR_PAYOUT_STATUS_UPDATED
|
3780
3691
|
|
3781
|
-
"""A note was added to the vendor payout"""
|
3692
|
+
"""A note was added to the vendor payout."""
|
3782
3693
|
NOTE_ADDED
|
3783
3694
|
|
3784
3695
|
"""The vendor payout email was sent."""
|
@@ -4251,7 +4162,6 @@ input ProductFilterInput {
|
|
4251
4162
|
sellers: [ID]
|
4252
4163
|
subStatus: ProductSubStatusEnum
|
4253
4164
|
slug: [String!]
|
4254
|
-
brand: [String!]
|
4255
4165
|
features: FeatureFilterInput
|
4256
4166
|
price: PriceRangeInput
|
4257
4167
|
minimalPrice: PriceRangeInput
|
@@ -4262,7 +4172,6 @@ input ProductFilterInput {
|
|
4262
4172
|
advancedSearch: ProductSearchInput
|
4263
4173
|
ids: [ID]
|
4264
4174
|
isStaff: Boolean
|
4265
|
-
mpn: String
|
4266
4175
|
metadata: MetadataFilterInput
|
4267
4176
|
privateMetadata: MetadataFilterInput
|
4268
4177
|
}
|
@@ -4391,10 +4300,6 @@ input ProductSearchInput {
|
|
4391
4300
|
|
4392
4301
|
enum ProductSearchFieldEnum {
|
4393
4302
|
NAME
|
4394
|
-
BRAND
|
4395
|
-
MANUFACTURER
|
4396
|
-
MPN
|
4397
|
-
MODEL
|
4398
4303
|
SELLER_NAME
|
4399
4304
|
CATEGORY_NAME
|
4400
4305
|
NSN
|
@@ -4468,15 +4373,6 @@ enum ProductOrderField {
|
|
4468
4373
|
"""Sort products by sub status."""
|
4469
4374
|
SUB_STATUS
|
4470
4375
|
|
4471
|
-
"""Sort products by sort priority weight."""
|
4472
|
-
SORT_PRIORITY_WEIGHT
|
4473
|
-
|
4474
|
-
"""Sort products by brand."""
|
4475
|
-
BRAND
|
4476
|
-
|
4477
|
-
"""Sort products by manufacturer."""
|
4478
|
-
MANUFACTURER
|
4479
|
-
|
4480
4376
|
"""Sort products by external id."""
|
4481
4377
|
EXTERNAL_ID
|
4482
4378
|
|
@@ -5436,12 +5332,6 @@ enum VariantSortField {
|
|
5436
5332
|
"""Sort variants by category."""
|
5437
5333
|
CATEGORY
|
5438
5334
|
|
5439
|
-
"""Sort variants by brand."""
|
5440
|
-
BRAND
|
5441
|
-
|
5442
|
-
"""Sort variants by manufacturer."""
|
5443
|
-
MANUFACTURER
|
5444
|
-
|
5445
5335
|
"""Sort variants by external id."""
|
5446
5336
|
EXTERNAL_ID
|
5447
5337
|
|
@@ -7098,9 +6988,6 @@ enum OrderPayoutStatusEnum {
|
|
7098
6988
|
"""Ready for payout"""
|
7099
6989
|
READY_FOR_PAYOUT
|
7100
6990
|
|
7101
|
-
"""Pending final payout"""
|
7102
|
-
PENDING_FINAL_PAYOUT @deprecated(reason: "This will be removed on February 26, 2025")
|
7103
|
-
|
7104
6991
|
"""Paid out"""
|
7105
6992
|
PAID_OUT
|
7106
6993
|
|
@@ -7140,23 +7027,6 @@ type OrderPayoutSummary {
|
|
7140
7027
|
vendorPayout: VendorPayout!
|
7141
7028
|
}
|
7142
7029
|
|
7143
|
-
enum PayoutStatusEnum {
|
7144
|
-
"""Draft"""
|
7145
|
-
DRAFT
|
7146
|
-
|
7147
|
-
"""Paid"""
|
7148
|
-
PAID
|
7149
|
-
|
7150
|
-
"""Archived"""
|
7151
|
-
ARCHIVED
|
7152
|
-
|
7153
|
-
"""Locked"""
|
7154
|
-
LOCKED
|
7155
|
-
|
7156
|
-
"""Error"""
|
7157
|
-
ERROR
|
7158
|
-
}
|
7159
|
-
|
7160
7030
|
type AgreementSellersCountableConnection {
|
7161
7031
|
"""Pagination data for this connection."""
|
7162
7032
|
pageInfo: PageInfo!
|
@@ -8621,11 +8491,6 @@ type Shop {
|
|
8621
8491
|
"""Gets active plugins."""
|
8622
8492
|
activePlugins: [Plugin!]!
|
8623
8493
|
|
8624
|
-
"""
|
8625
|
-
None if shop does not use Crisp, otherwise this contains Crisp Website ID.
|
8626
|
-
"""
|
8627
|
-
crispWebsiteId: String @deprecated(reason: "This will be removed on April 7, 2025.")
|
8628
|
-
|
8629
8494
|
"""Storefront integrations for the given contexts"""
|
8630
8495
|
storefrontUiIntegrations(
|
8631
8496
|
"""
|
@@ -9027,23 +8892,6 @@ type AgreementCountableEdge {
|
|
9027
8892
|
cursor: String!
|
9028
8893
|
}
|
9029
8894
|
|
9030
|
-
type SellerCards {
|
9031
|
-
newSellers: Int
|
9032
|
-
sellerOrders: Int
|
9033
|
-
sellerCommissions: Money
|
9034
|
-
}
|
9035
|
-
|
9036
|
-
enum ReportingPeriod {
|
9037
|
-
TODAY
|
9038
|
-
THIS_MONTH
|
9039
|
-
}
|
9040
|
-
|
9041
|
-
type SellerDetailCards {
|
9042
|
-
sellerOrders: Int
|
9043
|
-
sellerCommissions: Money
|
9044
|
-
sellerSales: TaxedMoney
|
9045
|
-
}
|
9046
|
-
|
9047
8895
|
type RefundCountableConnection {
|
9048
8896
|
"""Pagination data for this connection."""
|
9049
8897
|
pageInfo: PageInfo!
|
@@ -9333,6 +9181,11 @@ enum ProductTypeSortField {
|
|
9333
9181
|
EXTERNAL_SOURCE
|
9334
9182
|
}
|
9335
9183
|
|
9184
|
+
enum ReportingPeriod {
|
9185
|
+
TODAY
|
9186
|
+
THIS_MONTH
|
9187
|
+
}
|
9188
|
+
|
9336
9189
|
type PriceBookCountableConnection {
|
9337
9190
|
"""Pagination data for this connection."""
|
9338
9191
|
pageInfo: PageInfo!
|
@@ -10940,9 +10793,6 @@ type MarketplaceConfiguration {
|
|
10940
10793
|
marketplaceName: String!
|
10941
10794
|
requireProductApproval: Boolean!
|
10942
10795
|
|
10943
|
-
"""True if products require product types to be created"""
|
10944
|
-
requireProductTypes: Boolean @deprecated(reason: "This will be removed on April 15, 2025.")
|
10945
|
-
|
10946
10796
|
"""Determines payout status transformation strategy"""
|
10947
10797
|
payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum
|
10948
10798
|
|
@@ -11499,6 +11349,9 @@ enum MarketplaceConfigurationCurrencyEnum {
|
|
11499
11349
|
"""Venezuelan Bolívar Fuerte"""
|
11500
11350
|
VEF
|
11501
11351
|
|
11352
|
+
"""Venezuelan Bolívar Soberano"""
|
11353
|
+
VES
|
11354
|
+
|
11502
11355
|
"""Vietnamese Dong"""
|
11503
11356
|
VND
|
11504
11357
|
|
@@ -11890,292 +11743,21 @@ enum NotifyEventTypeEnum {
|
|
11890
11743
|
"""Pending Customer"""
|
11891
11744
|
PENDING_CUSTOMER
|
11892
11745
|
|
11893
|
-
"""Quote Requested"""
|
11894
|
-
QUOTE_REQUESTED
|
11895
|
-
}
|
11896
|
-
|
11897
|
-
input EmailEventSortingInput {
|
11898
|
-
"""Specifies the direction in which to sort products."""
|
11899
|
-
direction: OrderDirection!
|
11900
|
-
|
11901
|
-
"""Sort email_logs by the selected field."""
|
11902
|
-
field: EmailEventSortField!
|
11903
|
-
}
|
11904
|
-
|
11905
|
-
enum EmailEventSortField {
|
11906
|
-
"""Sort return email_logs by date."""
|
11907
|
-
DATE
|
11908
|
-
}
|
11909
|
-
|
11910
|
-
type InReportOrderCustomerSummaryType {
|
11911
|
-
"""Category of the metric."""
|
11912
|
-
category: String!
|
11913
|
-
|
11914
|
-
"""Title of the metric."""
|
11915
|
-
title: String!
|
11916
|
-
|
11917
|
-
"""
|
11918
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
11919
|
-
"""
|
11920
|
-
columns: [ColumnObjectType!]
|
11921
|
-
|
11922
|
-
"""Info about applied filters."""
|
11923
|
-
filters: [FilterObjectType!]
|
11924
|
-
|
11925
|
-
"""Total summary for selected period."""
|
11926
|
-
summary: OrderSellerSummaryType!
|
11927
|
-
|
11928
|
-
"""
|
11929
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
11930
|
-
"""
|
11931
|
-
report: [OrderCustomerReportType!]
|
11932
|
-
}
|
11933
|
-
|
11934
|
-
type OrderSellerSummaryType {
|
11935
|
-
gross: Float
|
11936
|
-
orders: Int
|
11937
|
-
net: Float
|
11938
|
-
shipping: Float
|
11939
|
-
average: Float
|
11940
|
-
taxes: Float
|
11941
|
-
discounts: Float
|
11942
|
-
revenue: Float
|
11943
|
-
totals: Int
|
11944
|
-
commission: Float
|
11945
|
-
payout: Float
|
11946
|
-
sellers: Float
|
11947
|
-
}
|
11948
|
-
|
11949
|
-
type OrderCustomerReportType {
|
11950
|
-
gross: Float
|
11951
|
-
orders: Int
|
11952
|
-
net: Float
|
11953
|
-
shipping: Float
|
11954
|
-
average: Float
|
11955
|
-
taxes: Float
|
11956
|
-
discounts: Float
|
11957
|
-
revenue: Float
|
11958
|
-
totals: Int
|
11959
|
-
commission: Float
|
11960
|
-
payout: Float
|
11961
|
-
userId: Int
|
11962
|
-
user: User
|
11963
|
-
}
|
11964
|
-
|
11965
|
-
type InReportOrderSellerSummaryType {
|
11966
|
-
"""Category of the metric."""
|
11967
|
-
category: String!
|
11968
|
-
|
11969
|
-
"""Title of the metric."""
|
11970
|
-
title: String!
|
11971
|
-
|
11972
|
-
"""
|
11973
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
11974
|
-
"""
|
11975
|
-
columns: [ColumnObjectType!]
|
11976
|
-
|
11977
|
-
"""Info about applied filters."""
|
11978
|
-
filters: [FilterObjectType!]
|
11979
|
-
|
11980
|
-
"""Total summary for selected period."""
|
11981
|
-
summary: OrderSellerSummaryType!
|
11982
|
-
|
11983
|
-
"""
|
11984
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
11985
|
-
"""
|
11986
|
-
report: [OrderSellerReportType!]
|
11987
|
-
}
|
11988
|
-
|
11989
|
-
type OrderSellerReportType {
|
11990
|
-
gross: Float
|
11991
|
-
orders: Int
|
11992
|
-
net: Float
|
11993
|
-
shipping: Float
|
11994
|
-
average: Float
|
11995
|
-
taxes: Float
|
11996
|
-
discounts: Float
|
11997
|
-
revenue: Float
|
11998
|
-
totals: Int
|
11999
|
-
commission: Float
|
12000
|
-
payout: Float
|
12001
|
-
sellerId: Int
|
12002
|
-
seller: Seller
|
12003
|
-
}
|
12004
|
-
|
12005
|
-
type InReportOrderMarketplaceSummaryType {
|
12006
|
-
"""Category of the metric."""
|
12007
|
-
category: String!
|
12008
|
-
|
12009
|
-
"""Title of the metric."""
|
12010
|
-
title: String!
|
12011
|
-
|
12012
|
-
"""
|
12013
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12014
|
-
"""
|
12015
|
-
columns: [ColumnObjectType!]
|
12016
|
-
|
12017
|
-
"""Info about applied filters."""
|
12018
|
-
filters: [FilterObjectType!]
|
12019
|
-
|
12020
|
-
"""Total summary for selected period."""
|
12021
|
-
summary: OrderSellerSummaryType!
|
12022
|
-
|
12023
|
-
"""
|
12024
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12025
|
-
"""
|
12026
|
-
report: [OrderMarketplaceReportType!]
|
12027
|
-
}
|
12028
|
-
|
12029
|
-
type OrderMarketplaceReportType {
|
12030
|
-
gross: Float
|
12031
|
-
orders: Int
|
12032
|
-
net: Float
|
12033
|
-
shipping: Float
|
12034
|
-
average: Float
|
12035
|
-
taxes: Float
|
12036
|
-
discounts: Float
|
12037
|
-
revenue: Float
|
12038
|
-
totals: Int
|
12039
|
-
commission: Float
|
12040
|
-
payout: Float
|
12041
|
-
dimension: Date
|
12042
|
-
}
|
12043
|
-
|
12044
|
-
enum InsightDimensionEnum {
|
12045
|
-
DAY
|
12046
|
-
WEEK
|
12047
|
-
MONTH
|
12048
|
-
QUARTER
|
12049
|
-
YEAR
|
12050
|
-
}
|
12051
|
-
|
12052
|
-
type InReportMarketplacePayoutsSummaryType {
|
12053
|
-
"""Category of the metric."""
|
12054
|
-
category: String!
|
12055
|
-
|
12056
|
-
"""Title of the metric."""
|
12057
|
-
title: String!
|
12058
|
-
|
12059
|
-
"""
|
12060
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12061
|
-
"""
|
12062
|
-
columns: [ColumnObjectType!]
|
12063
|
-
|
12064
|
-
"""Info about applied filters."""
|
12065
|
-
filters: [FilterObjectType!]
|
12066
|
-
|
12067
|
-
"""Total summary for selected period."""
|
12068
|
-
summary: OrderSellerSummaryType!
|
12069
|
-
|
12070
|
-
"""
|
12071
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12072
|
-
"""
|
12073
|
-
report: [OrderSellerReportType!]
|
12074
|
-
}
|
12075
|
-
|
12076
|
-
type InReportMarketplaceTaxSummaryType {
|
12077
|
-
"""Category of the metric."""
|
12078
|
-
category: String!
|
12079
|
-
|
12080
|
-
"""Title of the metric."""
|
12081
|
-
title: String!
|
12082
|
-
|
12083
|
-
"""
|
12084
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12085
|
-
"""
|
12086
|
-
columns: [ColumnObjectType!]
|
12087
|
-
|
12088
|
-
"""Info about applied filters."""
|
12089
|
-
filters: [FilterObjectType!]
|
12090
|
-
|
12091
|
-
"""Total summary for selected period."""
|
12092
|
-
summary: AbstractOrderSellerReportType!
|
12093
|
-
|
12094
|
-
"""
|
12095
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12096
|
-
"""
|
12097
|
-
report: [MarketplaceTaxReportType!]
|
12098
|
-
}
|
12099
|
-
|
12100
|
-
type AbstractOrderSellerReportType {
|
12101
|
-
gross: Float
|
12102
|
-
orders: Int
|
12103
|
-
net: Float
|
12104
|
-
shipping: Float
|
12105
|
-
average: Float
|
12106
|
-
taxes: Float
|
12107
|
-
discounts: Float
|
12108
|
-
revenue: Float
|
12109
|
-
totals: Int
|
12110
|
-
commission: Float
|
12111
|
-
payout: Float
|
12112
|
-
}
|
12113
|
-
|
12114
|
-
type MarketplaceTaxReportType {
|
12115
|
-
gross: Float
|
12116
|
-
orders: Int
|
12117
|
-
net: Float
|
12118
|
-
shipping: Float
|
12119
|
-
average: Float
|
12120
|
-
taxes: Float
|
12121
|
-
discounts: Float
|
12122
|
-
revenue: Float
|
12123
|
-
totals: Int
|
12124
|
-
commission: Float
|
12125
|
-
payout: Float
|
12126
|
-
dimension: Date
|
12127
|
-
}
|
12128
|
-
|
12129
|
-
type InReportMarketplaceTaxesByCountryType {
|
12130
|
-
"""Category of the metric."""
|
12131
|
-
category: String!
|
12132
|
-
|
12133
|
-
"""Title of the metric."""
|
12134
|
-
title: String!
|
12135
|
-
|
12136
|
-
"""
|
12137
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12138
|
-
"""
|
12139
|
-
columns: [ColumnObjectType!]
|
12140
|
-
|
12141
|
-
"""Info about applied filters."""
|
12142
|
-
filters: [FilterObjectType!]
|
12143
|
-
|
12144
|
-
"""Total summary for selected period."""
|
12145
|
-
summary: AbstractOrderSellerReportType!
|
12146
|
-
|
12147
|
-
"""
|
12148
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12149
|
-
"""
|
12150
|
-
report: [MarketplaceTaxReportByLocaleType!]
|
11746
|
+
"""Quote Requested"""
|
11747
|
+
QUOTE_REQUESTED
|
12151
11748
|
}
|
12152
11749
|
|
12153
|
-
|
12154
|
-
|
12155
|
-
|
12156
|
-
|
12157
|
-
|
12158
|
-
|
12159
|
-
taxes: Float
|
12160
|
-
discounts: Float
|
12161
|
-
revenue: Float
|
12162
|
-
totals: Int
|
12163
|
-
commission: Float
|
12164
|
-
payout: Float
|
12165
|
-
billingAddress_Country: String
|
12166
|
-
billingAddress_CountryArea: String
|
12167
|
-
countryArea: String
|
12168
|
-
country: String
|
12169
|
-
countryName: String
|
12170
|
-
countryAreaName: String
|
12171
|
-
countryState: CountryState
|
11750
|
+
input EmailEventSortingInput {
|
11751
|
+
"""Specifies the direction in which to sort products."""
|
11752
|
+
direction: OrderDirection!
|
11753
|
+
|
11754
|
+
"""Sort email_logs by the selected field."""
|
11755
|
+
field: EmailEventSortField!
|
12172
11756
|
}
|
12173
11757
|
|
12174
|
-
|
12175
|
-
|
12176
|
-
|
12177
|
-
country: String
|
12178
|
-
countryName: String
|
11758
|
+
enum EmailEventSortField {
|
11759
|
+
"""Sort return email_logs by date."""
|
11760
|
+
DATE
|
12179
11761
|
}
|
12180
11762
|
|
12181
11763
|
type InReportTopPerformingProductsType {
|
@@ -12284,46 +11866,6 @@ type ProductCategoryReportType {
|
|
12284
11866
|
category: Category
|
12285
11867
|
}
|
12286
11868
|
|
12287
|
-
type InReportMarketplacePaymentsSummaryType {
|
12288
|
-
"""Category of the metric."""
|
12289
|
-
category: String!
|
12290
|
-
|
12291
|
-
"""Title of the metric."""
|
12292
|
-
title: String!
|
12293
|
-
|
12294
|
-
"""
|
12295
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12296
|
-
"""
|
12297
|
-
columns: [ColumnObjectType!]
|
12298
|
-
|
12299
|
-
"""Info about applied filters."""
|
12300
|
-
filters: [FilterObjectType!]
|
12301
|
-
|
12302
|
-
"""Total summary for selected period."""
|
12303
|
-
summary: AbstractPaymentsType!
|
12304
|
-
|
12305
|
-
"""
|
12306
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12307
|
-
"""
|
12308
|
-
report: [PaymentsDayReportType!]
|
12309
|
-
}
|
12310
|
-
|
12311
|
-
type AbstractPaymentsType {
|
12312
|
-
payments: Int
|
12313
|
-
totalAuthorized: Float
|
12314
|
-
captured: Float
|
12315
|
-
average: Float
|
12316
|
-
}
|
12317
|
-
|
12318
|
-
type PaymentsDayReportType {
|
12319
|
-
payments: Int
|
12320
|
-
totalAuthorized: Float
|
12321
|
-
captured: Float
|
12322
|
-
average: Float
|
12323
|
-
dimension: Date
|
12324
|
-
chargeStatus: String
|
12325
|
-
}
|
12326
|
-
|
12327
11869
|
type DashboardOrdersSummaryType {
|
12328
11870
|
filters: [FilterObjectType!]
|
12329
11871
|
current: AbstractOrderSellerReportType
|
@@ -12336,6 +11878,20 @@ type DashboardOrdersSummaryType {
|
|
12336
11878
|
pendingPayouts: Int
|
12337
11879
|
}
|
12338
11880
|
|
11881
|
+
type AbstractOrderSellerReportType {
|
11882
|
+
gross: Float
|
11883
|
+
orders: Int
|
11884
|
+
net: Float
|
11885
|
+
shipping: Float
|
11886
|
+
average: Float
|
11887
|
+
taxes: Float
|
11888
|
+
discounts: Float
|
11889
|
+
revenue: Float
|
11890
|
+
totals: Int
|
11891
|
+
commission: Float
|
11892
|
+
payout: Float
|
11893
|
+
}
|
11894
|
+
|
12339
11895
|
type OrderSummaryDeltaDataType {
|
12340
11896
|
percent: AbstractPercentReportType
|
12341
11897
|
values: AbstractOrderSellerReportType
|
@@ -13161,7 +12717,7 @@ type Mutation {
|
|
13161
12717
|
description: String
|
13162
12718
|
|
13163
12719
|
"""
|
13164
|
-
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.openxmlformats-officedocument.presentationml.
|
12720
|
+
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-tiff, image/x-bmp, image/jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heic, image/bmp, application/gzipped, application/tiff, application/eps, application/x-rtf, application/vnd.pdf, image/x-ms-bmp, application/rtf, application/vnd.oasis.opendocument.spreadsheet, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/excel, image/x-dxf, application/gzip-compressed, application/csv, text/pdf, image/x-dwg, application/pdf, application/x-tif, image/heif-sequence, application/dwg, application/x-rar-compressed, text/comma-separated-values, application/x-eps, application/vnd.ms-excel, image/tiff, application/x-gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/x-pdf, application/acad, application/acrobat, image/svg+xml, image/gif, drawing/x-dwf, application/x-csv, pplication/vnd.rar, image/x-tiff, image/tif, application/svg+xml, text/rtf, application/x-jpg, image/heif, text/csv, image/eps, application/x-pdf, image/dxf, application/msword, image/jpeg, application/gzip, image/vnd.dwg, application/dxf, application/zip, image/webp, application/x-autocad, image/x-tif, text/svg-xml, application/x-dxf, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tar, text/x-csv, text/plain, drawing/dwg, text/svg, application/x-rar, image/svg, application/x-dwg, drawing/x-dwg, image/x-eps, application/x-acad, text/x-comma-separated-values, application/postscript, application/jpg, application/vnd.ms-word, application/tif, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.text, application/x-zip-compressed, image/heic-sequence, image/png, application/vnd.oasis.opendocument.presentation.
|
13165
12721
|
"""
|
13166
12722
|
file: Upload!
|
13167
12723
|
|
@@ -13224,7 +12780,15 @@ type Mutation {
|
|
13224
12780
|
payoutCreate(
|
13225
12781
|
"""Fields required to create a payout."""
|
13226
12782
|
input: PayoutCreateInput!
|
13227
|
-
): PayoutCreate
|
12783
|
+
): PayoutCreate @deprecated(reason: "This will be removed on July 15, 2025. Use payoutCreateAsync instead.")
|
12784
|
+
|
12785
|
+
"""
|
12786
|
+
Creates a new payout asynchronously. The payout will be created in CREATING state and then transition to DRAFT once the vendor payouts are created.
|
12787
|
+
"""
|
12788
|
+
payoutCreateAsync(
|
12789
|
+
"""Fields required to create a payout."""
|
12790
|
+
input: PayoutCreateInput!
|
12791
|
+
): PayoutCreateAsync
|
13228
12792
|
|
13229
12793
|
"""
|
13230
12794
|
Update vendor payouts connected to the given payout with adjustments and penalties
|
@@ -13258,6 +12822,9 @@ type Mutation {
|
|
13258
12822
|
input: PayoutDatesInput!
|
13259
12823
|
): PayoutDatesUpdate @deprecated(reason: "This will be removed on April 29, 2025.")
|
13260
12824
|
|
12825
|
+
"""Process a payout asynchronously."""
|
12826
|
+
payoutProcess(input: PayoutProcessInput!): PayoutProcess
|
12827
|
+
|
13261
12828
|
"""Archive payouts."""
|
13262
12829
|
payoutBulkArchive(
|
13263
12830
|
"""List of payout IDs to archive."""
|
@@ -13303,7 +12870,7 @@ type Mutation {
|
|
13303
12870
|
|
13304
12871
|
"""List of vendor payout IDs to process."""
|
13305
12872
|
ids: [ID]!
|
13306
|
-
): VendorPayoutsBulkProcess
|
12873
|
+
): VendorPayoutsBulkProcess @deprecated(reason: "This will be removed on July 15, 2025. Use payoutProcess instead.")
|
13307
12874
|
|
13308
12875
|
"""Adds note to the vendor payout."""
|
13309
12876
|
vendorPayoutNoteAdd(
|
@@ -14305,6 +13872,17 @@ type Mutation {
|
|
14305
13872
|
input: ProductImageCreateInput!
|
14306
13873
|
): ProductImageCreate
|
14307
13874
|
|
13875
|
+
"""
|
13876
|
+
Create one or more product images. For each image, if URL is present, image will be taken from provided URL. If any image has no URL provided, then this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
13877
|
+
"""
|
13878
|
+
productImageBulkCreate(
|
13879
|
+
"""Fields required to create one or more product images"""
|
13880
|
+
input: [ProductImageBulkCreateInput!]!
|
13881
|
+
|
13882
|
+
"""ID of a product."""
|
13883
|
+
product: ID!
|
13884
|
+
): ProductImageBulkCreate
|
13885
|
+
|
14308
13886
|
"""
|
14309
13887
|
Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
|
14310
13888
|
"""
|
@@ -14512,6 +14090,15 @@ type Mutation {
|
|
14512
14090
|
variantId: ID!
|
14513
14091
|
): ProductVariantImageUnassign
|
14514
14092
|
|
14093
|
+
"""Assign one or more images to a product variant."""
|
14094
|
+
productVariantImageBulkAssign(
|
14095
|
+
"""List of product images to assign to a variant."""
|
14096
|
+
input: [ProductVariantImageBulkAssignInput!]!
|
14097
|
+
|
14098
|
+
"""ID of a product variant."""
|
14099
|
+
variantId: ID!
|
14100
|
+
): ProductVariantImageBulkAssign
|
14101
|
+
|
14515
14102
|
"""Creates a new feature for either a product or a variant."""
|
14516
14103
|
featureCreate(
|
14517
14104
|
"""Fields required to create a feature"""
|
@@ -14689,12 +14276,6 @@ type Mutation {
|
|
14689
14276
|
input: NauticalDraftOrderCreateInput!
|
14690
14277
|
): NauticalDraftOrderCreate
|
14691
14278
|
|
14692
|
-
"""Creates a new Nautical historical order."""
|
14693
|
-
nauticalHistoricalOrderCreate(
|
14694
|
-
"""Fields required to create an historical order."""
|
14695
|
-
input: NauticalHistoricalOrderInput!
|
14696
|
-
): NauticalHistoricalOrderCreate @deprecated(reason: "This mutation will be removed on February 18, 2025")
|
14697
|
-
|
14698
14279
|
"""Deletes a draft order."""
|
14699
14280
|
draftOrderDelete(
|
14700
14281
|
"""ID of a draft or quote order to delete."""
|
@@ -15040,13 +14621,6 @@ type Mutation {
|
|
15040
14621
|
input: NauticalOrderUpdateInput!
|
15041
14622
|
): NauticalOrderUpdate
|
15042
14623
|
|
15043
|
-
"""Modifies the payout status of an order"""
|
15044
|
-
orderPayoutStatusUpdate(
|
15045
|
-
"""Target order id."""
|
15046
|
-
id: ID!
|
15047
|
-
input: OrderPayoutStatusUpdateInput!
|
15048
|
-
): OrderPayoutStatusUpdate @deprecated(reason: "This will be removed on February 26, 2025.")
|
15049
|
-
|
15050
14624
|
"""Updates a shipping method of the order."""
|
15051
14625
|
orderUpdateShipping(
|
15052
14626
|
"""ID of the order to update a shipping method."""
|
@@ -15114,22 +14688,18 @@ type Mutation {
|
|
15114
14688
|
|
15115
14689
|
"""Sends a quote order to a customer."""
|
15116
14690
|
nauticalQuoteOrderSendToCustomer(
|
15117
|
-
"""
|
15118
|
-
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
15119
|
-
"""
|
14691
|
+
"""ID of the nautical order (with Quote status) to send to the customer."""
|
15120
14692
|
id: ID!
|
15121
14693
|
|
15122
14694
|
"""
|
15123
14695
|
URL to send customer to for quote confirmation. Whatever URL is sent will have `token` added to the search parameters of the URL, e.g. if you send http://localhost/quote, the generated URL will be http://localhost/quote?token=...
|
15124
14696
|
"""
|
15125
14697
|
storefrontUrl: String!
|
15126
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "
|
14698
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on June 11, 2025.")
|
15127
14699
|
|
15128
14700
|
"""Sends a quote order to a customer."""
|
15129
14701
|
nauticalDraftOrderSendToCustomer(
|
15130
|
-
"""
|
15131
|
-
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
15132
|
-
"""
|
14702
|
+
"""ID of the nautical order (with Quote status) to send to the customer."""
|
15133
14703
|
id: ID!
|
15134
14704
|
|
15135
14705
|
"""
|
@@ -16295,12 +15865,6 @@ type Mutation {
|
|
16295
15865
|
isActive: Boolean!
|
16296
15866
|
): UserBulkSetActive
|
16297
15867
|
|
16298
|
-
"""Create new permission group."""
|
16299
|
-
permissionGroupCreate(
|
16300
|
-
"""Input fields to create permission group."""
|
16301
|
-
input: PermissionGroupCreateInput!
|
16302
|
-
): PermissionGroupCreate @deprecated(reason: "This will be removed on April 14, 2025")
|
16303
|
-
|
16304
15868
|
"""Update permission group."""
|
16305
15869
|
permissionGroupUpdate(
|
16306
15870
|
"""ID of the group to update."""
|
@@ -16309,12 +15873,6 @@ type Mutation {
|
|
16309
15873
|
"""Input fields to create permission group."""
|
16310
15874
|
input: PermissionGroupUpdateInput!
|
16311
15875
|
): PermissionGroupUpdate
|
16312
|
-
|
16313
|
-
"""Delete permission group."""
|
16314
|
-
permissionGroupDelete(
|
16315
|
-
"""ID of the group to delete."""
|
16316
|
-
id: ID!
|
16317
|
-
): PermissionGroupDelete @deprecated(reason: "This will be removed on April 14, 2025")
|
16318
15876
|
}
|
16319
15877
|
|
16320
15878
|
"""EmailTemplate update mutation."""
|
@@ -16549,9 +16107,6 @@ input MarketplaceConfigurationInput {
|
|
16549
16107
|
"""True if seller products require approval"""
|
16550
16108
|
requireProductApproval: Boolean
|
16551
16109
|
|
16552
|
-
"""True if products require product types to be created"""
|
16553
|
-
requireProductTypes: Boolean @deprecated(reason: "This will be removed on April 15, 2025.")
|
16554
|
-
|
16555
16110
|
"""Updates status transformation strategy for payout."""
|
16556
16111
|
payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
|
16557
16112
|
|
@@ -16701,6 +16256,14 @@ input PayoutCreateInput {
|
|
16701
16256
|
endDate: Date!
|
16702
16257
|
}
|
16703
16258
|
|
16259
|
+
"""
|
16260
|
+
Creates a new payout asynchronously. The payout will be created in CREATING state and then transition to DRAFT once the vendor payouts are created.
|
16261
|
+
"""
|
16262
|
+
type PayoutCreateAsync {
|
16263
|
+
payoutErrors: [PayoutError!]!
|
16264
|
+
payout: Payout
|
16265
|
+
}
|
16266
|
+
|
16704
16267
|
"""
|
16705
16268
|
Update vendor payouts connected to the given payout with adjustments and penalties
|
16706
16269
|
"""
|
@@ -16763,6 +16326,22 @@ input PayoutDatesInput {
|
|
16763
16326
|
endDate: Date!
|
16764
16327
|
}
|
16765
16328
|
|
16329
|
+
"""Process a payout asynchronously."""
|
16330
|
+
type PayoutProcess {
|
16331
|
+
payout: Payout
|
16332
|
+
payoutErrors: [PayoutError!]!
|
16333
|
+
}
|
16334
|
+
|
16335
|
+
input PayoutProcessInput {
|
16336
|
+
"""ID of the payout to process."""
|
16337
|
+
id: ID!
|
16338
|
+
|
16339
|
+
"""
|
16340
|
+
If true, the payout will be processed manually without using a gateway.
|
16341
|
+
"""
|
16342
|
+
isManual: Boolean!
|
16343
|
+
}
|
16344
|
+
|
16766
16345
|
"""Archive payouts."""
|
16767
16346
|
type PayoutBulkArchive {
|
16768
16347
|
"""Returns how many objects were affected."""
|
@@ -19199,18 +18778,6 @@ input ProductCreateInput {
|
|
19199
18778
|
"""
|
19200
18779
|
visibleInListings: Boolean
|
19201
18780
|
|
19202
|
-
"""Manufacturer product number"""
|
19203
|
-
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19204
|
-
|
19205
|
-
"""Product brand"""
|
19206
|
-
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19207
|
-
|
19208
|
-
"""Manufacturer of the product"""
|
19209
|
-
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19210
|
-
|
19211
|
-
"""Product model code"""
|
19212
|
-
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19213
|
-
|
19214
18781
|
"""Override price for grouped products"""
|
19215
18782
|
overridePrice: Boolean
|
19216
18783
|
|
@@ -19225,9 +18792,6 @@ input ProductCreateInput {
|
|
19225
18792
|
"""
|
19226
18793
|
subStatusReason: String
|
19227
18794
|
|
19228
|
-
"""Sort priority for product"""
|
19229
|
-
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19230
|
-
|
19231
18795
|
"""
|
19232
18796
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
19233
18797
|
"""
|
@@ -19430,18 +18994,6 @@ input ProductInput {
|
|
19430
18994
|
"""
|
19431
18995
|
visibleInListings: Boolean
|
19432
18996
|
|
19433
|
-
"""Manufacturer product number"""
|
19434
|
-
mpn: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19435
|
-
|
19436
|
-
"""Product brand"""
|
19437
|
-
brand: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19438
|
-
|
19439
|
-
"""Manufacturer of the product"""
|
19440
|
-
manufacturer: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19441
|
-
|
19442
|
-
"""Product model code"""
|
19443
|
-
model: String @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19444
|
-
|
19445
18997
|
"""Override price for grouped products"""
|
19446
18998
|
overridePrice: Boolean
|
19447
18999
|
|
@@ -19456,9 +19008,6 @@ input ProductInput {
|
|
19456
19008
|
"""
|
19457
19009
|
subStatusReason: String
|
19458
19010
|
|
19459
|
-
"""Sort priority for product"""
|
19460
|
-
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19461
|
-
|
19462
19011
|
"""
|
19463
19012
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
19464
19013
|
"""
|
@@ -19497,10 +19046,12 @@ input ProductImageCreateInput {
|
|
19497
19046
|
"""Alt text for an image."""
|
19498
19047
|
alt: String
|
19499
19048
|
|
19500
|
-
"""
|
19049
|
+
"""
|
19050
|
+
Represents an image file in a multipart request. Either an image or a url must be provided.
|
19051
|
+
"""
|
19501
19052
|
image: Upload
|
19502
19053
|
|
19503
|
-
"""URL of image to upload"""
|
19054
|
+
"""URL of image to upload. Either an image or a url must be provided."""
|
19504
19055
|
url: String
|
19505
19056
|
|
19506
19057
|
"""ID of an product."""
|
@@ -19522,6 +19073,64 @@ input ProductImageCreateInput {
|
|
19522
19073
|
externalSource: String
|
19523
19074
|
}
|
19524
19075
|
|
19076
|
+
"""
|
19077
|
+
Create one or more product images. For each image, if URL is present, image will be taken from provided URL. If any image has no URL provided, then this mutation must be sent as a `multipart` request. More detailed specs of the upload format can be found here: https://github.com/jaydenseric/graphql-multipart-request-spec
|
19078
|
+
"""
|
19079
|
+
type ProductImageBulkCreate {
|
19080
|
+
product: Product
|
19081
|
+
|
19082
|
+
"""List of the created images."""
|
19083
|
+
images: [ProductImage!]!
|
19084
|
+
bulkProductImageErrors: [BulkProductImageError!]!
|
19085
|
+
}
|
19086
|
+
|
19087
|
+
type BulkProductImageError {
|
19088
|
+
"""
|
19089
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
19090
|
+
"""
|
19091
|
+
field: String
|
19092
|
+
|
19093
|
+
"""The error message."""
|
19094
|
+
message: String!
|
19095
|
+
|
19096
|
+
"""The error code."""
|
19097
|
+
code: ProductErrorCode!
|
19098
|
+
|
19099
|
+
"""List of attributes IDs which causes the error."""
|
19100
|
+
attributes: [ID!]
|
19101
|
+
|
19102
|
+
"""Index of an input list item that caused the error."""
|
19103
|
+
index: Int
|
19104
|
+
}
|
19105
|
+
|
19106
|
+
input ProductImageBulkCreateInput {
|
19107
|
+
"""Alt text for an image."""
|
19108
|
+
alt: String
|
19109
|
+
|
19110
|
+
"""
|
19111
|
+
Represents an image file in a multipart request. Either an image or a url must be provided.
|
19112
|
+
"""
|
19113
|
+
image: Upload
|
19114
|
+
|
19115
|
+
"""URL of image to upload. Either an image or a url must be provided."""
|
19116
|
+
url: String
|
19117
|
+
|
19118
|
+
"""
|
19119
|
+
Only for use by Marketplace Operator, if true then the image ownership will transfer to the seller that owns the product it is being assigned to, if false or not provided then image ownership will not transfer.
|
19120
|
+
"""
|
19121
|
+
transferImageOwnership: Boolean = false
|
19122
|
+
|
19123
|
+
"""
|
19124
|
+
External ID of the product image if originating from outside the system.
|
19125
|
+
"""
|
19126
|
+
externalId: String
|
19127
|
+
|
19128
|
+
"""
|
19129
|
+
External source of the product image if originating from outside the system.
|
19130
|
+
"""
|
19131
|
+
externalSource: String
|
19132
|
+
}
|
19133
|
+
|
19525
19134
|
"""
|
19526
19135
|
Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
|
19527
19136
|
"""
|
@@ -20171,6 +19780,25 @@ type ProductVariantImageUnassign {
|
|
20171
19780
|
productErrors: [ProductError!]!
|
20172
19781
|
}
|
20173
19782
|
|
19783
|
+
"""Assign one or more images to a product variant."""
|
19784
|
+
type ProductVariantImageBulkAssign {
|
19785
|
+
productVariant: ProductVariant
|
19786
|
+
|
19787
|
+
"""List of assigned images."""
|
19788
|
+
images: [ProductImage!]!
|
19789
|
+
bulkProductImageErrors: [BulkProductImageError!]!
|
19790
|
+
}
|
19791
|
+
|
19792
|
+
input ProductVariantImageBulkAssignInput {
|
19793
|
+
"""ID of a product image to assign to a variant."""
|
19794
|
+
imageId: ID!
|
19795
|
+
|
19796
|
+
"""
|
19797
|
+
Only for use by Marketplace Operator, if true then the image ownership will transfer to the seller that owns the variant it is being assigned to, if false or not provided then image ownership will not transfer.
|
19798
|
+
"""
|
19799
|
+
transferImageOwnership: Boolean
|
19800
|
+
}
|
19801
|
+
|
20174
19802
|
"""Creates a new feature for either a product or a variant."""
|
20175
19803
|
type FeatureCreate {
|
20176
19804
|
feature: Feature
|
@@ -20613,78 +20241,6 @@ input NauticalDraftOrderCreateInput {
|
|
20613
20241
|
transactionCurrency: String
|
20614
20242
|
}
|
20615
20243
|
|
20616
|
-
"""Creates a new Nautical historical order."""
|
20617
|
-
type NauticalHistoricalOrderCreate {
|
20618
|
-
orderErrors: [OrderError!]!
|
20619
|
-
nauticalOrder: NauticalOrder
|
20620
|
-
}
|
20621
|
-
|
20622
|
-
input NauticalHistoricalOrderInput {
|
20623
|
-
"""Billing address of the customer."""
|
20624
|
-
billingAddress: AddressInput
|
20625
|
-
|
20626
|
-
"""Shipping address of the customer."""
|
20627
|
-
shippingAddress: AddressInput
|
20628
|
-
|
20629
|
-
"""Customer associated with the draft order."""
|
20630
|
-
user: ID
|
20631
|
-
|
20632
|
-
"""Email address of the customer."""
|
20633
|
-
userEmail: String
|
20634
|
-
|
20635
|
-
"""Discount amount for the order."""
|
20636
|
-
discount: PositiveDecimal
|
20637
|
-
|
20638
|
-
"""Shipping price without taxes."""
|
20639
|
-
shippingPriceNetAmount: PositiveDecimal
|
20640
|
-
|
20641
|
-
"""Shipping price with taxes."""
|
20642
|
-
shippingPriceGrossAmount: PositiveDecimal
|
20643
|
-
|
20644
|
-
"""Total price without taxes."""
|
20645
|
-
totalNetAmount: PositiveDecimal
|
20646
|
-
|
20647
|
-
"""Total price with taxes."""
|
20648
|
-
totalGrossAmount: PositiveDecimal
|
20649
|
-
|
20650
|
-
"""Currency code."""
|
20651
|
-
currency: String
|
20652
|
-
|
20653
|
-
"""A note from a customer. Visible by customers in the order summary."""
|
20654
|
-
customerNote: String
|
20655
|
-
|
20656
|
-
"""Variant line input consisting of variant ID and quantity of products."""
|
20657
|
-
lines: [HistoricalOrderLineInput!]
|
20658
|
-
seller: ID
|
20659
|
-
|
20660
|
-
"""Created date time of historical order in ISO 8601 format."""
|
20661
|
-
created: DateTime
|
20662
|
-
|
20663
|
-
"""Order ID in the external source."""
|
20664
|
-
externalId: String
|
20665
|
-
externalInventoryId: String
|
20666
|
-
|
20667
|
-
"""External source name."""
|
20668
|
-
externalSource: String
|
20669
|
-
}
|
20670
|
-
|
20671
|
-
input HistoricalOrderLineInput {
|
20672
|
-
"""Number of variant items ordered."""
|
20673
|
-
quantity: Int!
|
20674
|
-
|
20675
|
-
"""Product variant ID."""
|
20676
|
-
variantId: ID!
|
20677
|
-
|
20678
|
-
"""Total price without taxes."""
|
20679
|
-
unitPriceNetAmount: PositiveDecimal
|
20680
|
-
|
20681
|
-
"""Total price with taxes."""
|
20682
|
-
unitPriceGrossAmount: PositiveDecimal
|
20683
|
-
|
20684
|
-
"""Order ID in the external source."""
|
20685
|
-
externalId: String
|
20686
|
-
}
|
20687
|
-
|
20688
20244
|
"""Deletes a draft order."""
|
20689
20245
|
type DraftOrderDelete {
|
20690
20246
|
orderErrors: [OrderError!]!
|
@@ -21273,17 +20829,6 @@ input NauticalOrderUpdateInput {
|
|
21273
20829
|
poNumbers: [String!]
|
21274
20830
|
}
|
21275
20831
|
|
21276
|
-
"""Modifies the payout status of an order"""
|
21277
|
-
type OrderPayoutStatusUpdate {
|
21278
|
-
"""Order that was updated."""
|
21279
|
-
order: Order
|
21280
|
-
orderErrors: [OrderError!]!
|
21281
|
-
}
|
21282
|
-
|
21283
|
-
input OrderPayoutStatusUpdateInput {
|
21284
|
-
payoutStatus: OrderPayoutStatusEnum!
|
21285
|
-
}
|
21286
|
-
|
21287
20832
|
"""Updates a shipping method of the order."""
|
21288
20833
|
type OrderUpdateShipping {
|
21289
20834
|
"""Order with updated shipping method."""
|
@@ -23732,8 +23277,8 @@ type UserBulkSetActive {
|
|
23732
23277
|
accountErrors: [AccountError!]!
|
23733
23278
|
}
|
23734
23279
|
|
23735
|
-
"""
|
23736
|
-
type
|
23280
|
+
"""Update permission group."""
|
23281
|
+
type PermissionGroupUpdate {
|
23737
23282
|
permissionGroupErrors: [PermissionGroupError!]!
|
23738
23283
|
group: Group
|
23739
23284
|
}
|
@@ -23769,46 +23314,17 @@ enum PermissionGroupErrorCode {
|
|
23769
23314
|
UNIQUE
|
23770
23315
|
}
|
23771
23316
|
|
23772
|
-
input PermissionGroupCreateInput {
|
23773
|
-
"""List of permission code names to assign to this group."""
|
23774
|
-
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23775
|
-
|
23776
|
-
"""List of users to assign to this group."""
|
23777
|
-
addUsers: [ID!]
|
23778
|
-
|
23779
|
-
"""Group name."""
|
23780
|
-
name: String!
|
23781
|
-
}
|
23782
|
-
|
23783
|
-
"""Update permission group."""
|
23784
|
-
type PermissionGroupUpdate {
|
23785
|
-
permissionGroupErrors: [PermissionGroupError!]!
|
23786
|
-
group: Group
|
23787
|
-
}
|
23788
|
-
|
23789
23317
|
input PermissionGroupUpdateInput {
|
23790
|
-
"""List of permission code names to assign to this group."""
|
23791
|
-
addPermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23792
|
-
|
23793
23318
|
"""List of users to assign to this group."""
|
23794
23319
|
addUsers: [ID!]
|
23795
23320
|
|
23796
23321
|
"""Group name."""
|
23797
23322
|
name: String
|
23798
23323
|
|
23799
|
-
"""List of permission code names to unassign from this group."""
|
23800
|
-
removePermissions: [PermissionEnum!] @deprecated(reason: "This will be removed on April 14, 2025")
|
23801
|
-
|
23802
23324
|
"""List of users to unassign from this group."""
|
23803
23325
|
removeUsers: [ID!]
|
23804
23326
|
}
|
23805
23327
|
|
23806
|
-
"""Delete permission group."""
|
23807
|
-
type PermissionGroupDelete {
|
23808
|
-
permissionGroupErrors: [PermissionGroupError!]!
|
23809
|
-
group: Group
|
23810
|
-
}
|
23811
|
-
|
23812
23328
|
"""
|
23813
23329
|
A string-serialized scalar represents a set of fields that's passed to a federated directive, such as @key, @requires, or @provides
|
23814
23330
|
"""
|