@nautical-commerce/graphql-schema 1.78.0-19-g304dc8f97 → 1.78.0-20-g242b007a1
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 +15 -380
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1576,61 +1576,6 @@ type Query {
|
|
1576
1576
|
"""Return the last n elements from the list."""
|
1577
1577
|
last: Int
|
1578
1578
|
): 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
1579
|
insightsTopPerformingProducts(
|
1635
1580
|
"""Beginning of the period to filter results"""
|
1636
1581
|
startDate: Date!
|
@@ -1663,19 +1608,6 @@ type Query {
|
|
1663
1608
|
"""Top or worst performing"""
|
1664
1609
|
perspective: PerformancePerspective!
|
1665
1610
|
): 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
1611
|
dashboardOrdersSummary(
|
1680
1612
|
"""ID of seller for filtering"""
|
1681
1613
|
identifier: ID
|
@@ -11906,277 +11838,6 @@ enum EmailEventSortField {
|
|
11906
11838
|
DATE
|
11907
11839
|
}
|
11908
11840
|
|
11909
|
-
type InReportOrderCustomerSummaryType {
|
11910
|
-
"""Category of the metric."""
|
11911
|
-
category: String!
|
11912
|
-
|
11913
|
-
"""Title of the metric."""
|
11914
|
-
title: String!
|
11915
|
-
|
11916
|
-
"""
|
11917
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
11918
|
-
"""
|
11919
|
-
columns: [ColumnObjectType!]
|
11920
|
-
|
11921
|
-
"""Info about applied filters."""
|
11922
|
-
filters: [FilterObjectType!]
|
11923
|
-
|
11924
|
-
"""Total summary for selected period."""
|
11925
|
-
summary: OrderSellerSummaryType!
|
11926
|
-
|
11927
|
-
"""
|
11928
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
11929
|
-
"""
|
11930
|
-
report: [OrderCustomerReportType!]
|
11931
|
-
}
|
11932
|
-
|
11933
|
-
type OrderSellerSummaryType {
|
11934
|
-
gross: Float
|
11935
|
-
orders: Int
|
11936
|
-
net: Float
|
11937
|
-
shipping: Float
|
11938
|
-
average: Float
|
11939
|
-
taxes: Float
|
11940
|
-
discounts: Float
|
11941
|
-
revenue: Float
|
11942
|
-
totals: Int
|
11943
|
-
commission: Float
|
11944
|
-
payout: Float
|
11945
|
-
sellers: Float
|
11946
|
-
}
|
11947
|
-
|
11948
|
-
type OrderCustomerReportType {
|
11949
|
-
gross: Float
|
11950
|
-
orders: Int
|
11951
|
-
net: Float
|
11952
|
-
shipping: Float
|
11953
|
-
average: Float
|
11954
|
-
taxes: Float
|
11955
|
-
discounts: Float
|
11956
|
-
revenue: Float
|
11957
|
-
totals: Int
|
11958
|
-
commission: Float
|
11959
|
-
payout: Float
|
11960
|
-
userId: Int
|
11961
|
-
user: User
|
11962
|
-
}
|
11963
|
-
|
11964
|
-
type InReportOrderSellerSummaryType {
|
11965
|
-
"""Category of the metric."""
|
11966
|
-
category: String!
|
11967
|
-
|
11968
|
-
"""Title of the metric."""
|
11969
|
-
title: String!
|
11970
|
-
|
11971
|
-
"""
|
11972
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
11973
|
-
"""
|
11974
|
-
columns: [ColumnObjectType!]
|
11975
|
-
|
11976
|
-
"""Info about applied filters."""
|
11977
|
-
filters: [FilterObjectType!]
|
11978
|
-
|
11979
|
-
"""Total summary for selected period."""
|
11980
|
-
summary: OrderSellerSummaryType!
|
11981
|
-
|
11982
|
-
"""
|
11983
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
11984
|
-
"""
|
11985
|
-
report: [OrderSellerReportType!]
|
11986
|
-
}
|
11987
|
-
|
11988
|
-
type OrderSellerReportType {
|
11989
|
-
gross: Float
|
11990
|
-
orders: Int
|
11991
|
-
net: Float
|
11992
|
-
shipping: Float
|
11993
|
-
average: Float
|
11994
|
-
taxes: Float
|
11995
|
-
discounts: Float
|
11996
|
-
revenue: Float
|
11997
|
-
totals: Int
|
11998
|
-
commission: Float
|
11999
|
-
payout: Float
|
12000
|
-
sellerId: Int
|
12001
|
-
seller: Seller
|
12002
|
-
}
|
12003
|
-
|
12004
|
-
type InReportOrderMarketplaceSummaryType {
|
12005
|
-
"""Category of the metric."""
|
12006
|
-
category: String!
|
12007
|
-
|
12008
|
-
"""Title of the metric."""
|
12009
|
-
title: String!
|
12010
|
-
|
12011
|
-
"""
|
12012
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12013
|
-
"""
|
12014
|
-
columns: [ColumnObjectType!]
|
12015
|
-
|
12016
|
-
"""Info about applied filters."""
|
12017
|
-
filters: [FilterObjectType!]
|
12018
|
-
|
12019
|
-
"""Total summary for selected period."""
|
12020
|
-
summary: OrderSellerSummaryType!
|
12021
|
-
|
12022
|
-
"""
|
12023
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12024
|
-
"""
|
12025
|
-
report: [OrderMarketplaceReportType!]
|
12026
|
-
}
|
12027
|
-
|
12028
|
-
type OrderMarketplaceReportType {
|
12029
|
-
gross: Float
|
12030
|
-
orders: Int
|
12031
|
-
net: Float
|
12032
|
-
shipping: Float
|
12033
|
-
average: Float
|
12034
|
-
taxes: Float
|
12035
|
-
discounts: Float
|
12036
|
-
revenue: Float
|
12037
|
-
totals: Int
|
12038
|
-
commission: Float
|
12039
|
-
payout: Float
|
12040
|
-
dimension: Date
|
12041
|
-
}
|
12042
|
-
|
12043
|
-
enum InsightDimensionEnum {
|
12044
|
-
DAY
|
12045
|
-
WEEK
|
12046
|
-
MONTH
|
12047
|
-
QUARTER
|
12048
|
-
YEAR
|
12049
|
-
}
|
12050
|
-
|
12051
|
-
type InReportMarketplacePayoutsSummaryType {
|
12052
|
-
"""Category of the metric."""
|
12053
|
-
category: String!
|
12054
|
-
|
12055
|
-
"""Title of the metric."""
|
12056
|
-
title: String!
|
12057
|
-
|
12058
|
-
"""
|
12059
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12060
|
-
"""
|
12061
|
-
columns: [ColumnObjectType!]
|
12062
|
-
|
12063
|
-
"""Info about applied filters."""
|
12064
|
-
filters: [FilterObjectType!]
|
12065
|
-
|
12066
|
-
"""Total summary for selected period."""
|
12067
|
-
summary: OrderSellerSummaryType!
|
12068
|
-
|
12069
|
-
"""
|
12070
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12071
|
-
"""
|
12072
|
-
report: [OrderSellerReportType!]
|
12073
|
-
}
|
12074
|
-
|
12075
|
-
type InReportMarketplaceTaxSummaryType {
|
12076
|
-
"""Category of the metric."""
|
12077
|
-
category: String!
|
12078
|
-
|
12079
|
-
"""Title of the metric."""
|
12080
|
-
title: String!
|
12081
|
-
|
12082
|
-
"""
|
12083
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12084
|
-
"""
|
12085
|
-
columns: [ColumnObjectType!]
|
12086
|
-
|
12087
|
-
"""Info about applied filters."""
|
12088
|
-
filters: [FilterObjectType!]
|
12089
|
-
|
12090
|
-
"""Total summary for selected period."""
|
12091
|
-
summary: AbstractOrderSellerReportType!
|
12092
|
-
|
12093
|
-
"""
|
12094
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12095
|
-
"""
|
12096
|
-
report: [MarketplaceTaxReportType!]
|
12097
|
-
}
|
12098
|
-
|
12099
|
-
type AbstractOrderSellerReportType {
|
12100
|
-
gross: Float
|
12101
|
-
orders: Int
|
12102
|
-
net: Float
|
12103
|
-
shipping: Float
|
12104
|
-
average: Float
|
12105
|
-
taxes: Float
|
12106
|
-
discounts: Float
|
12107
|
-
revenue: Float
|
12108
|
-
totals: Int
|
12109
|
-
commission: Float
|
12110
|
-
payout: Float
|
12111
|
-
}
|
12112
|
-
|
12113
|
-
type MarketplaceTaxReportType {
|
12114
|
-
gross: Float
|
12115
|
-
orders: Int
|
12116
|
-
net: Float
|
12117
|
-
shipping: Float
|
12118
|
-
average: Float
|
12119
|
-
taxes: Float
|
12120
|
-
discounts: Float
|
12121
|
-
revenue: Float
|
12122
|
-
totals: Int
|
12123
|
-
commission: Float
|
12124
|
-
payout: Float
|
12125
|
-
dimension: Date
|
12126
|
-
}
|
12127
|
-
|
12128
|
-
type InReportMarketplaceTaxesByCountryType {
|
12129
|
-
"""Category of the metric."""
|
12130
|
-
category: String!
|
12131
|
-
|
12132
|
-
"""Title of the metric."""
|
12133
|
-
title: String!
|
12134
|
-
|
12135
|
-
"""
|
12136
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12137
|
-
"""
|
12138
|
-
columns: [ColumnObjectType!]
|
12139
|
-
|
12140
|
-
"""Info about applied filters."""
|
12141
|
-
filters: [FilterObjectType!]
|
12142
|
-
|
12143
|
-
"""Total summary for selected period."""
|
12144
|
-
summary: AbstractOrderSellerReportType!
|
12145
|
-
|
12146
|
-
"""
|
12147
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12148
|
-
"""
|
12149
|
-
report: [MarketplaceTaxReportByLocaleType!]
|
12150
|
-
}
|
12151
|
-
|
12152
|
-
type MarketplaceTaxReportByLocaleType {
|
12153
|
-
gross: Float
|
12154
|
-
orders: Int
|
12155
|
-
net: Float
|
12156
|
-
shipping: Float
|
12157
|
-
average: Float
|
12158
|
-
taxes: Float
|
12159
|
-
discounts: Float
|
12160
|
-
revenue: Float
|
12161
|
-
totals: Int
|
12162
|
-
commission: Float
|
12163
|
-
payout: Float
|
12164
|
-
billingAddress_Country: String
|
12165
|
-
billingAddress_CountryArea: String
|
12166
|
-
countryArea: String
|
12167
|
-
country: String
|
12168
|
-
countryName: String
|
12169
|
-
countryAreaName: String
|
12170
|
-
countryState: CountryState
|
12171
|
-
}
|
12172
|
-
|
12173
|
-
type CountryState {
|
12174
|
-
area: String
|
12175
|
-
areaName: String
|
12176
|
-
country: String
|
12177
|
-
countryName: String
|
12178
|
-
}
|
12179
|
-
|
12180
11841
|
type InReportTopPerformingProductsType {
|
12181
11842
|
"""Category of the metric."""
|
12182
11843
|
category: String!
|
@@ -12283,46 +11944,6 @@ type ProductCategoryReportType {
|
|
12283
11944
|
category: Category
|
12284
11945
|
}
|
12285
11946
|
|
12286
|
-
type InReportMarketplacePaymentsSummaryType {
|
12287
|
-
"""Category of the metric."""
|
12288
|
-
category: String!
|
12289
|
-
|
12290
|
-
"""Title of the metric."""
|
12291
|
-
title: String!
|
12292
|
-
|
12293
|
-
"""
|
12294
|
-
Description of main columns in report and summary. Note: report and summary can contain additional columns.
|
12295
|
-
"""
|
12296
|
-
columns: [ColumnObjectType!]
|
12297
|
-
|
12298
|
-
"""Info about applied filters."""
|
12299
|
-
filters: [FilterObjectType!]
|
12300
|
-
|
12301
|
-
"""Total summary for selected period."""
|
12302
|
-
summary: AbstractPaymentsType!
|
12303
|
-
|
12304
|
-
"""
|
12305
|
-
Report where each row represent aggregated, by selected (in filters) dimension, summary.
|
12306
|
-
"""
|
12307
|
-
report: [PaymentsDayReportType!]
|
12308
|
-
}
|
12309
|
-
|
12310
|
-
type AbstractPaymentsType {
|
12311
|
-
payments: Int
|
12312
|
-
totalAuthorized: Float
|
12313
|
-
captured: Float
|
12314
|
-
average: Float
|
12315
|
-
}
|
12316
|
-
|
12317
|
-
type PaymentsDayReportType {
|
12318
|
-
payments: Int
|
12319
|
-
totalAuthorized: Float
|
12320
|
-
captured: Float
|
12321
|
-
average: Float
|
12322
|
-
dimension: Date
|
12323
|
-
chargeStatus: String
|
12324
|
-
}
|
12325
|
-
|
12326
11947
|
type DashboardOrdersSummaryType {
|
12327
11948
|
filters: [FilterObjectType!]
|
12328
11949
|
current: AbstractOrderSellerReportType
|
@@ -12335,6 +11956,20 @@ type DashboardOrdersSummaryType {
|
|
12335
11956
|
pendingPayouts: Int
|
12336
11957
|
}
|
12337
11958
|
|
11959
|
+
type AbstractOrderSellerReportType {
|
11960
|
+
gross: Float
|
11961
|
+
orders: Int
|
11962
|
+
net: Float
|
11963
|
+
shipping: Float
|
11964
|
+
average: Float
|
11965
|
+
taxes: Float
|
11966
|
+
discounts: Float
|
11967
|
+
revenue: Float
|
11968
|
+
totals: Int
|
11969
|
+
commission: Float
|
11970
|
+
payout: Float
|
11971
|
+
}
|
11972
|
+
|
12338
11973
|
type OrderSummaryDeltaDataType {
|
12339
11974
|
percent: AbstractPercentReportType
|
12340
11975
|
values: AbstractOrderSellerReportType
|
@@ -13160,7 +12795,7 @@ type Mutation {
|
|
13160
12795
|
description: String
|
13161
12796
|
|
13162
12797
|
"""
|
13163
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
12798
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/x-tif, text/svg, image/x-dwg, application/x-rtf, drawing/x-dwf, application/x-tiff, application/msword, application/vnd.pdf, text/x-pdf, image/x-eps, application/x-csv, application/x-rar-compressed, image/webp, application/gzip, application/vnd.ms-excel, image/heic-sequence, image/svg, application/x-tar, application/vnd.ms-powerpoint, application/postscript, image/png, application/x-acad, image/heif, application/vnd.openxmlformats-officedocument.wordprocessingml.document, text/svg-xml, application/vnd.oasis.opendocument.presentation, application/acrobat, application/x-pdf, text/x-csv, application/dwg, application/eps, application/gzipped, application/x-autocad, application/x-gzip, application/dxf, application/svg+xml, image/jpeg, image/vnd.dwg, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif-sequence, image/svg+xml, application/vnd.oasis.opendocument.spreadsheet, image/x-ms-bmp, drawing/x-dwg, text/pdf, application/csv, image/heic, application/x-dxf, image/x-dxf, application/zip, text/plain, image/bmp, text/x-comma-separated-values, application/x-jpg, text/comma-separated-values, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-tif, image/jpg, application/tiff, application/jpg, pplication/vnd.rar, application/gzip-compressed, application/excel, application/vnd.oasis.opendocument.text, application/vnd.ms-word, image/eps, application/pdf, image/x-bmp, application/acad, drawing/dwg, image/tiff, image/dxf, application/tif, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/rtf, text/csv, application/x-zip-compressed, image/tif, image/gif, image/x-tiff, application/x-eps, application/x-dwg, text/rtf, application/x-rar.
|
13164
12799
|
"""
|
13165
12800
|
file: Upload!
|
13166
12801
|
|