@nautical-commerce/graphql-schema 1.94.0-1-gc481f36a6 → 1.94.0-11-gc20c3b481
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 +104 -16
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1135,44 +1135,128 @@ type Query {
|
|
1135
1135
|
|
1136
1136
|
"""Get orders for tenant with optional date filtering"""
|
1137
1137
|
bigqueryTenantOrders(
|
1138
|
-
"""Tenant ID to filter orders"""
|
1139
|
-
tenantId: String!
|
1140
|
-
|
1141
1138
|
"""Start date for filtering orders"""
|
1142
1139
|
startDate: Date
|
1143
1140
|
|
1144
1141
|
"""End date for filtering orders"""
|
1145
1142
|
endDate: Date
|
1143
|
+
|
1144
|
+
"""Grouping for the report, e.g., DAILY, WEEKLY, MONTHLY"""
|
1145
|
+
grouping: String = "MONTHLY"
|
1146
1146
|
): BigQueryDailyOrderCountsReportType
|
1147
|
-
bigquerySalesPerDay(
|
1148
|
-
|
1147
|
+
bigquerySalesPerDay(
|
1148
|
+
startDate: Date
|
1149
|
+
endDate: Date
|
1150
|
+
|
1151
|
+
"""Grouping for the report, e.g., DAILY, WEEKLY, MONTHLY"""
|
1152
|
+
grouping: String = "MONTHLY"
|
1153
|
+
): BigQuerySalesPerDayReportType
|
1154
|
+
bigqueryOrdersByStatus(startDate: Date, endDate: Date): BigQueryOrdersByStatusReportType
|
1149
1155
|
|
1150
1156
|
"""Returns a table of all customers for a given tenant"""
|
1151
|
-
bigqueryCustomers(
|
1157
|
+
bigqueryCustomers(
|
1158
|
+
"""The number of rows to return, at most 100."""
|
1159
|
+
first: Int = 100
|
1160
|
+
|
1161
|
+
"""The number of rows to skip."""
|
1162
|
+
offset: Int = 0
|
1163
|
+
|
1164
|
+
"""Column to sort by"""
|
1165
|
+
sortby: String
|
1166
|
+
): BigQueryCustomerReportType
|
1152
1167
|
|
1153
1168
|
"""Returns a list of payouts for a tenant"""
|
1154
|
-
bigqueryPayouts(
|
1169
|
+
bigqueryPayouts(
|
1170
|
+
startDate: Date
|
1171
|
+
endDate: Date
|
1172
|
+
|
1173
|
+
"""The number of rows to return, at most 100."""
|
1174
|
+
first: Int = 100
|
1175
|
+
|
1176
|
+
"""The number of rows to skip."""
|
1177
|
+
offset: Int = 0
|
1178
|
+
|
1179
|
+
"""Column to sort by"""
|
1180
|
+
sortby: String
|
1181
|
+
): BigQueryPayoutReportType
|
1155
1182
|
|
1156
1183
|
"""Returns a list of order line items for a tenant"""
|
1157
|
-
bigqueryOrderLineItems(
|
1184
|
+
bigqueryOrderLineItems(
|
1185
|
+
sellerId: Int
|
1186
|
+
startDate: Date
|
1187
|
+
endDate: Date
|
1188
|
+
|
1189
|
+
"""The number of rows to return, at most 100."""
|
1190
|
+
first: Int = 100
|
1191
|
+
|
1192
|
+
"""The number of rows to skip."""
|
1193
|
+
offset: Int = 0
|
1194
|
+
|
1195
|
+
"""Column to sort by"""
|
1196
|
+
sortby: String
|
1197
|
+
): BigQueryOrdersBySellerReportType
|
1158
1198
|
|
1159
1199
|
"""Returns net sales by seller for a tenant"""
|
1160
|
-
bigqueryNetSalesBySeller(
|
1200
|
+
bigqueryNetSalesBySeller(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesBySellerReportType
|
1161
1201
|
|
1162
1202
|
"""Returns net sales by category for a tenant"""
|
1163
|
-
bigqueryNetSalesByCategory(
|
1203
|
+
bigqueryNetSalesByCategory(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesByCategoryReportType
|
1164
1204
|
|
1165
1205
|
"""Returns a list of seller orders for a given tenant and seller"""
|
1166
|
-
bigquerySellerOrders(
|
1206
|
+
bigquerySellerOrders(
|
1207
|
+
sellerId: Int!
|
1208
|
+
startDate: Date
|
1209
|
+
endDate: Date
|
1210
|
+
|
1211
|
+
"""The number of rows to return, at most 100."""
|
1212
|
+
first: Int = 100
|
1213
|
+
|
1214
|
+
"""The number of rows to skip."""
|
1215
|
+
offset: Int = 0
|
1216
|
+
|
1217
|
+
"""Column to sort by"""
|
1218
|
+
sortby: String
|
1219
|
+
): BigQuerySellerOrdersReportType
|
1167
1220
|
|
1168
1221
|
"""Returns seller 30-60-90 day sales"""
|
1169
|
-
bigqueryThirtySixtyNinety(
|
1222
|
+
bigqueryThirtySixtyNinety(
|
1223
|
+
sellerId: Int
|
1224
|
+
|
1225
|
+
"""The number of rows to return, at most 100."""
|
1226
|
+
first: Int = 100
|
1227
|
+
|
1228
|
+
"""The number of rows to skip."""
|
1229
|
+
offset: Int = 0
|
1230
|
+
|
1231
|
+
"""Column to sort by"""
|
1232
|
+
sortby: String
|
1233
|
+
): BigQueryThirtySixtyNinetyReportType
|
1170
1234
|
|
1171
1235
|
"""Returns a list of seller payouts for a given tenant and seller"""
|
1172
|
-
bigquerySellerPayouts(
|
1236
|
+
bigquerySellerPayouts(
|
1237
|
+
"""The number of rows to return, at most 100."""
|
1238
|
+
first: Int = 100
|
1239
|
+
|
1240
|
+
"""The number of rows to skip."""
|
1241
|
+
offset: Int = 0
|
1242
|
+
|
1243
|
+
"""Column to sort by"""
|
1244
|
+
sortby: String
|
1245
|
+
): BigQuerySellerPayoutReportType
|
1173
1246
|
|
1174
1247
|
"""Returns a list of product variants for a given tenant"""
|
1175
|
-
bigqueryVariantList(
|
1248
|
+
bigqueryVariantList(
|
1249
|
+
sellerId: Int
|
1250
|
+
|
1251
|
+
"""The number of rows to return, at most 100."""
|
1252
|
+
first: Int = 100
|
1253
|
+
|
1254
|
+
"""The number of rows to skip."""
|
1255
|
+
offset: Int = 0
|
1256
|
+
|
1257
|
+
"""Column to sort by"""
|
1258
|
+
sortby: String
|
1259
|
+
): BigQueryVariantListReportType
|
1176
1260
|
insightsTopPerformingProducts(
|
1177
1261
|
"""Beginning of the period to filter results"""
|
1178
1262
|
startDate: Date!
|
@@ -8820,6 +8904,7 @@ input SellerFilterInput {
|
|
8820
8904
|
metadata: MetadataFilterInput
|
8821
8905
|
privateMetadata: MetadataFilterInput
|
8822
8906
|
isMarketplaceSeller: Boolean
|
8907
|
+
ids: [ID]
|
8823
8908
|
}
|
8824
8909
|
|
8825
8910
|
enum SellerStatusFilter {
|
@@ -11741,7 +11826,7 @@ type Mutation {
|
|
11741
11826
|
description: String
|
11742
11827
|
|
11743
11828
|
"""
|
11744
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11829
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: drawing/dwg, text/svg, image/x-dwg, application/tiff, application/x-zip-compressed, application/vnd.openxmlformats-officedocument.presentationml.presentation, image/heif, application/x-tiff, application/acad, text/x-csv, image/tif, application/vnd.ms-powerpoint, application/excel, image/x-ms-bmp, application/vnd.ms-excel, image/webp, image/svg+xml, image/x-tiff, application/x-eps, application/gzip, application/vnd.oasis.opendocument.text, text/plain, image/jpeg, application/x-autocad, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, pplication/vnd.rar, application/vnd.pdf, image/dxf, application/rtf, image/png, application/vnd.oasis.opendocument.presentation, application/x-pdf, application/x-rar, application/gzipped, text/rtf, application/msword, image/x-tif, image/bmp, text/pdf, application/x-tar, application/dwg, application/x-jpg, image/svg, image/x-dxf, application/postscript, application/x-dwg, text/comma-separated-values, image/gif, image/x-bmp, application/x-csv, image/tiff, application/gzip-compressed, application/pdf, text/x-comma-separated-values, application/x-rtf, drawing/x-dwf, application/eps, text/x-pdf, text/csv, application/tif, image/heic, image/x-eps, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/vnd.dwg, drawing/x-dwg, application/dxf, application/x-gzip, application/x-dxf, application/acrobat, application/x-tif, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/x-acad, image/jpg, application/zip, application/csv, application/vnd.oasis.opendocument.spreadsheet, image/eps, application/svg+xml, application/x-rar-compressed, image/heic-sequence, text/svg-xml, image/heif-sequence, application/jpg.
|
11745
11830
|
"""
|
11746
11831
|
file: Upload!
|
11747
11832
|
|
@@ -20062,7 +20147,10 @@ input ExportProductsInput {
|
|
20062
20147
|
ids: [ID!]
|
20063
20148
|
|
20064
20149
|
"""Input with info about fields which should be exported."""
|
20065
|
-
exportInfo: ExportInfoInput
|
20150
|
+
exportInfo: ExportInfoInput @deprecated(reason: "This will be removed on October 8, 2025.")
|
20151
|
+
|
20152
|
+
"""List of product fields witch should be exported."""
|
20153
|
+
fields: [ProductFieldEnum!]
|
20066
20154
|
|
20067
20155
|
"""Type of exported file."""
|
20068
20156
|
fileType: FileTypesEnum!
|