@nautical-commerce/graphql-schema 1.78.0-5-g317db159c → 1.78.0-50-g6d59deaf6
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 +171 -683
- 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
|
|
@@ -11881,301 +11734,30 @@ enum NotifyEventTypeEnum {
|
|
11881
11734
|
"""Account Activated"""
|
11882
11735
|
ACCOUNT_ACTIVATED
|
11883
11736
|
|
11884
|
-
"""Account Deactivated"""
|
11885
|
-
ACCOUNT_DEACTIVATED
|
11886
|
-
|
11887
|
-
"""Pending Order"""
|
11888
|
-
PENDING_ORDER
|
11889
|
-
|
11890
|
-
"""Pending Customer"""
|
11891
|
-
PENDING_CUSTOMER
|
11892
|
-
|
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!]
|
11737
|
+
"""Account Deactivated"""
|
11738
|
+
ACCOUNT_DEACTIVATED
|
12143
11739
|
|
12144
|
-
"""
|
12145
|
-
|
11740
|
+
"""Pending Order"""
|
11741
|
+
PENDING_ORDER
|
12146
11742
|
|
12147
|
-
"""
|
12148
|
-
|
12149
|
-
|
12150
|
-
|
11743
|
+
"""Pending Customer"""
|
11744
|
+
PENDING_CUSTOMER
|
11745
|
+
|
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.
|
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/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-gzip, application/eps, application/jpg, image/png, image/x-eps, application/x-eps, image/heic, image/eps, text/x-csv, drawing/dwg, application/vnd.oasis.opendocument.text, application/acrobat, application/x-rar-compressed, image/heic-sequence, application/csv, image/vnd.dwg, application/x-rtf, application/gzip-compressed, image/tiff, image/webp, application/x-acad, application/svg+xml, image/heif, application/gzip, image/x-dxf, application/pdf, image/gif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/jpeg, text/pdf, application/vnd.oasis.opendocument.spreadsheet, application/tif, image/x-bmp, application/postscript, application/vnd.ms-word, application/tiff, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-tar, application/x-rar, image/x-dwg, application/x-dwg, application/x-pdf, application/zip, application/excel, image/x-tif, drawing/x-dwg, application/gzipped, text/rtf, application/x-tiff, image/tif, image/x-ms-bmp, text/x-pdf, application/msword, application/dxf, pplication/vnd.rar, image/bmp, drawing/x-dwf, image/jpg, image/heif-sequence, application/x-tif, application/vnd.ms-powerpoint, application/vnd.oasis.opendocument.presentation, image/svg+xml, application/rtf, application/acad, text/x-comma-separated-values, image/svg, text/comma-separated-values, image/x-tiff, application/x-zip-compressed, text/svg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-jpg, text/plain, application/x-autocad, application/vnd.ms-excel, application/dwg, image/dxf, application/x-csv, application/vnd.pdf, text/csv, text/svg-xml, application/x-dxf.
|
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
|
"""
|
@@ -14689,12 +14267,6 @@ type Mutation {
|
|
14689
14267
|
input: NauticalDraftOrderCreateInput!
|
14690
14268
|
): NauticalDraftOrderCreate
|
14691
14269
|
|
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
14270
|
"""Deletes a draft order."""
|
14699
14271
|
draftOrderDelete(
|
14700
14272
|
"""ID of a draft or quote order to delete."""
|
@@ -15040,13 +14612,6 @@ type Mutation {
|
|
15040
14612
|
input: NauticalOrderUpdateInput!
|
15041
14613
|
): NauticalOrderUpdate
|
15042
14614
|
|
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
14615
|
"""Updates a shipping method of the order."""
|
15051
14616
|
orderUpdateShipping(
|
15052
14617
|
"""ID of the order to update a shipping method."""
|
@@ -15114,22 +14679,18 @@ type Mutation {
|
|
15114
14679
|
|
15115
14680
|
"""Sends a quote order to a customer."""
|
15116
14681
|
nauticalQuoteOrderSendToCustomer(
|
15117
|
-
"""
|
15118
|
-
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
15119
|
-
"""
|
14682
|
+
"""ID of the nautical order (with Quote status) to send to the customer."""
|
15120
14683
|
id: ID!
|
15121
14684
|
|
15122
14685
|
"""
|
15123
14686
|
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
14687
|
"""
|
15125
14688
|
storefrontUrl: String!
|
15126
|
-
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "
|
14689
|
+
): NauticalQuoteOrderSendToCustomer @deprecated(reason: "This will be removed on June 11, 2025.")
|
15127
14690
|
|
15128
14691
|
"""Sends a quote order to a customer."""
|
15129
14692
|
nauticalDraftOrderSendToCustomer(
|
15130
|
-
"""
|
15131
|
-
ID of the order (nautical or seller order, with Quote status) to send to the customer.
|
15132
|
-
"""
|
14693
|
+
"""ID of the nautical order (with Quote status) to send to the customer."""
|
15133
14694
|
id: ID!
|
15134
14695
|
|
15135
14696
|
"""
|
@@ -16295,12 +15856,6 @@ type Mutation {
|
|
16295
15856
|
isActive: Boolean!
|
16296
15857
|
): UserBulkSetActive
|
16297
15858
|
|
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
15859
|
"""Update permission group."""
|
16305
15860
|
permissionGroupUpdate(
|
16306
15861
|
"""ID of the group to update."""
|
@@ -16309,12 +15864,6 @@ type Mutation {
|
|
16309
15864
|
"""Input fields to create permission group."""
|
16310
15865
|
input: PermissionGroupUpdateInput!
|
16311
15866
|
): 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
15867
|
}
|
16319
15868
|
|
16320
15869
|
"""EmailTemplate update mutation."""
|
@@ -16549,9 +16098,6 @@ input MarketplaceConfigurationInput {
|
|
16549
16098
|
"""True if seller products require approval"""
|
16550
16099
|
requireProductApproval: Boolean
|
16551
16100
|
|
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
16101
|
"""Updates status transformation strategy for payout."""
|
16556
16102
|
payoutAutomationStrategy: MarketplaceConfigurationPayoutAutomationStrategyEnum = null
|
16557
16103
|
|
@@ -16701,6 +16247,14 @@ input PayoutCreateInput {
|
|
16701
16247
|
endDate: Date!
|
16702
16248
|
}
|
16703
16249
|
|
16250
|
+
"""
|
16251
|
+
Creates a new payout asynchronously. The payout will be created in CREATING state and then transition to DRAFT once the vendor payouts are created.
|
16252
|
+
"""
|
16253
|
+
type PayoutCreateAsync {
|
16254
|
+
payoutErrors: [PayoutError!]!
|
16255
|
+
payout: Payout
|
16256
|
+
}
|
16257
|
+
|
16704
16258
|
"""
|
16705
16259
|
Update vendor payouts connected to the given payout with adjustments and penalties
|
16706
16260
|
"""
|
@@ -16763,6 +16317,22 @@ input PayoutDatesInput {
|
|
16763
16317
|
endDate: Date!
|
16764
16318
|
}
|
16765
16319
|
|
16320
|
+
"""Process a payout asynchronously."""
|
16321
|
+
type PayoutProcess {
|
16322
|
+
payout: Payout
|
16323
|
+
payoutErrors: [PayoutError!]!
|
16324
|
+
}
|
16325
|
+
|
16326
|
+
input PayoutProcessInput {
|
16327
|
+
"""ID of the payout to process."""
|
16328
|
+
id: ID!
|
16329
|
+
|
16330
|
+
"""
|
16331
|
+
If true, the payout will be processed manually without using a gateway.
|
16332
|
+
"""
|
16333
|
+
isManual: Boolean!
|
16334
|
+
}
|
16335
|
+
|
16766
16336
|
"""Archive payouts."""
|
16767
16337
|
type PayoutBulkArchive {
|
16768
16338
|
"""Returns how many objects were affected."""
|
@@ -19199,18 +18769,6 @@ input ProductCreateInput {
|
|
19199
18769
|
"""
|
19200
18770
|
visibleInListings: Boolean
|
19201
18771
|
|
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
18772
|
"""Override price for grouped products"""
|
19215
18773
|
overridePrice: Boolean
|
19216
18774
|
|
@@ -19225,9 +18783,6 @@ input ProductCreateInput {
|
|
19225
18783
|
"""
|
19226
18784
|
subStatusReason: String
|
19227
18785
|
|
19228
|
-
"""Sort priority for product"""
|
19229
|
-
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19230
|
-
|
19231
18786
|
"""
|
19232
18787
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
19233
18788
|
"""
|
@@ -19430,18 +18985,6 @@ input ProductInput {
|
|
19430
18985
|
"""
|
19431
18986
|
visibleInListings: Boolean
|
19432
18987
|
|
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
18988
|
"""Override price for grouped products"""
|
19446
18989
|
overridePrice: Boolean
|
19447
18990
|
|
@@ -19456,9 +18999,6 @@ input ProductInput {
|
|
19456
18999
|
"""
|
19457
19000
|
subStatusReason: String
|
19458
19001
|
|
19459
|
-
"""Sort priority for product"""
|
19460
|
-
sortPriorityWeight: Decimal @deprecated(reason: "This field will be removed on April 15, 2025.")
|
19461
|
-
|
19462
19002
|
"""
|
19463
19003
|
Set whether this product requires shipping by default, will be overridden by product type if provided
|
19464
19004
|
"""
|
@@ -19497,10 +19037,12 @@ input ProductImageCreateInput {
|
|
19497
19037
|
"""Alt text for an image."""
|
19498
19038
|
alt: String
|
19499
19039
|
|
19500
|
-
"""
|
19040
|
+
"""
|
19041
|
+
Represents an image file in a multipart request. Either an image or a url must be provided.
|
19042
|
+
"""
|
19501
19043
|
image: Upload
|
19502
19044
|
|
19503
|
-
"""URL of image to upload"""
|
19045
|
+
"""URL of image to upload. Either an image or a url must be provided."""
|
19504
19046
|
url: String
|
19505
19047
|
|
19506
19048
|
"""ID of an product."""
|
@@ -19522,6 +19064,64 @@ input ProductImageCreateInput {
|
|
19522
19064
|
externalSource: String
|
19523
19065
|
}
|
19524
19066
|
|
19067
|
+
"""
|
19068
|
+
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
|
19069
|
+
"""
|
19070
|
+
type ProductImageBulkCreate {
|
19071
|
+
product: Product
|
19072
|
+
|
19073
|
+
"""List of the created images."""
|
19074
|
+
images: [ProductImage!]!
|
19075
|
+
bulkProductImageErrors: [BulkProductImageError!]!
|
19076
|
+
}
|
19077
|
+
|
19078
|
+
type BulkProductImageError {
|
19079
|
+
"""
|
19080
|
+
Name of a field that caused the error. A value of `null` indicates that the error isn't associated with a particular field.
|
19081
|
+
"""
|
19082
|
+
field: String
|
19083
|
+
|
19084
|
+
"""The error message."""
|
19085
|
+
message: String!
|
19086
|
+
|
19087
|
+
"""The error code."""
|
19088
|
+
code: ProductErrorCode!
|
19089
|
+
|
19090
|
+
"""List of attributes IDs which causes the error."""
|
19091
|
+
attributes: [ID!]
|
19092
|
+
|
19093
|
+
"""Index of an input list item that caused the error."""
|
19094
|
+
index: Int
|
19095
|
+
}
|
19096
|
+
|
19097
|
+
input ProductImageBulkCreateInput {
|
19098
|
+
"""Alt text for an image."""
|
19099
|
+
alt: String
|
19100
|
+
|
19101
|
+
"""
|
19102
|
+
Represents an image file in a multipart request. Either an image or a url must be provided.
|
19103
|
+
"""
|
19104
|
+
image: Upload
|
19105
|
+
|
19106
|
+
"""URL of image to upload. Either an image or a url must be provided."""
|
19107
|
+
url: String
|
19108
|
+
|
19109
|
+
"""
|
19110
|
+
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.
|
19111
|
+
"""
|
19112
|
+
transferImageOwnership: Boolean = false
|
19113
|
+
|
19114
|
+
"""
|
19115
|
+
External ID of the product image if originating from outside the system.
|
19116
|
+
"""
|
19117
|
+
externalId: String
|
19118
|
+
|
19119
|
+
"""
|
19120
|
+
External source of the product image if originating from outside the system.
|
19121
|
+
"""
|
19122
|
+
externalSource: String
|
19123
|
+
}
|
19124
|
+
|
19525
19125
|
"""
|
19526
19126
|
Reorder the variants of a product. Mutation updates updated_at on product and triggers PRODUCT_UPDATED webhook.
|
19527
19127
|
"""
|
@@ -20613,78 +20213,6 @@ input NauticalDraftOrderCreateInput {
|
|
20613
20213
|
transactionCurrency: String
|
20614
20214
|
}
|
20615
20215
|
|
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
20216
|
"""Deletes a draft order."""
|
20689
20217
|
type DraftOrderDelete {
|
20690
20218
|
orderErrors: [OrderError!]!
|
@@ -21273,17 +20801,6 @@ input NauticalOrderUpdateInput {
|
|
21273
20801
|
poNumbers: [String!]
|
21274
20802
|
}
|
21275
20803
|
|
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
20804
|
"""Updates a shipping method of the order."""
|
21288
20805
|
type OrderUpdateShipping {
|
21289
20806
|
"""Order with updated shipping method."""
|
@@ -23732,8 +23249,8 @@ type UserBulkSetActive {
|
|
23732
23249
|
accountErrors: [AccountError!]!
|
23733
23250
|
}
|
23734
23251
|
|
23735
|
-
"""
|
23736
|
-
type
|
23252
|
+
"""Update permission group."""
|
23253
|
+
type PermissionGroupUpdate {
|
23737
23254
|
permissionGroupErrors: [PermissionGroupError!]!
|
23738
23255
|
group: Group
|
23739
23256
|
}
|
@@ -23769,46 +23286,17 @@ enum PermissionGroupErrorCode {
|
|
23769
23286
|
UNIQUE
|
23770
23287
|
}
|
23771
23288
|
|
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
23289
|
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
23290
|
"""List of users to assign to this group."""
|
23794
23291
|
addUsers: [ID!]
|
23795
23292
|
|
23796
23293
|
"""Group name."""
|
23797
23294
|
name: String
|
23798
23295
|
|
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
23296
|
"""List of users to unassign from this group."""
|
23803
23297
|
removeUsers: [ID!]
|
23804
23298
|
}
|
23805
23299
|
|
23806
|
-
"""Delete permission group."""
|
23807
|
-
type PermissionGroupDelete {
|
23808
|
-
permissionGroupErrors: [PermissionGroupError!]!
|
23809
|
-
group: Group
|
23810
|
-
}
|
23811
|
-
|
23812
23300
|
"""
|
23813
23301
|
A string-serialized scalar represents a set of fields that's passed to a federated directive, such as @key, @requires, or @provides
|
23814
23302
|
"""
|