@nautical-commerce/graphql-schema 1.94.0-1-gc481f36a6 → 1.94.0-2-g43b1c3b27
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 +14 -3
- package/package.json +1 -1
package/nautical/schema.graphql
CHANGED
@@ -1148,7 +1148,18 @@ type Query {
|
|
1148
1148
|
bigqueryOrdersByStatus(tenantId: String!, startDate: Date, endDate: Date): BigQueryOrdersByStatusReportType
|
1149
1149
|
|
1150
1150
|
"""Returns a table of all customers for a given tenant"""
|
1151
|
-
bigqueryCustomers(
|
1151
|
+
bigqueryCustomers(
|
1152
|
+
tenantId: String!
|
1153
|
+
|
1154
|
+
"""The number of rows to return, at most 100."""
|
1155
|
+
first: Int
|
1156
|
+
|
1157
|
+
"""The number of rows to skip."""
|
1158
|
+
offset: Int
|
1159
|
+
|
1160
|
+
"""Column to sort by when querying database"""
|
1161
|
+
sortby: String
|
1162
|
+
): BigQueryCustomerReportType
|
1152
1163
|
|
1153
1164
|
"""Returns a list of payouts for a tenant"""
|
1154
1165
|
bigqueryPayouts(tenantId: String!, startDate: Date, endDate: Date): BigQueryPayoutReportType
|
@@ -1172,7 +1183,7 @@ type Query {
|
|
1172
1183
|
bigquerySellerPayouts(tenantId: String!): BigQuerySellerPayoutReportType
|
1173
1184
|
|
1174
1185
|
"""Returns a list of product variants for a given tenant"""
|
1175
|
-
bigqueryVariantList(tenantId: String
|
1186
|
+
bigqueryVariantList(tenantId: String!, sellerId: String): BigQueryVariantListReportType
|
1176
1187
|
insightsTopPerformingProducts(
|
1177
1188
|
"""Beginning of the period to filter results"""
|
1178
1189
|
startDate: Date!
|
@@ -11741,7 +11752,7 @@ type Mutation {
|
|
11741
11752
|
description: String
|
11742
11753
|
|
11743
11754
|
"""
|
11744
|
-
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types:
|
11755
|
+
Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/jpg, image/gif, pplication/vnd.rar, application/x-jpg, text/x-comma-separated-values, text/x-csv, text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, text/rtf, text/comma-separated-values, text/svg-xml, image/vnd.dwg, image/x-dwg, application/x-zip-compressed, application/gzip, application/eps, application/svg+xml, image/eps, application/vnd.ms-powerpoint, image/jpg, image/jpeg, image/tif, application/tiff, text/pdf, application/zip, application/x-tar, application/postscript, application/msword, image/svg, application/vnd.oasis.opendocument.spreadsheet, application/x-csv, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-eps, application/x-dxf, drawing/x-dwf, application/gzip-compressed, image/png, application/x-tif, text/plain, image/heif-sequence, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/dwg, image/webp, application/vnd.oasis.opendocument.presentation, image/x-tif, application/x-rtf, application/gzipped, image/x-tiff, application/x-pdf, application/acad, drawing/dwg, text/x-pdf, image/svg+xml, image/x-ms-bmp, image/bmp, application/dxf, image/dxf, application/x-rar-compressed, image/heic, drawing/x-dwg, image/tiff, application/vnd.ms-excel, image/heic-sequence, application/x-acad, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-dwg, image/heif, application/acrobat, application/vnd.oasis.opendocument.text, application/rtf, application/x-gzip, application/csv, image/x-eps, application/x-rar, application/excel, application/tif, text/svg, application/x-autocad, application/pdf, image/x-bmp, image/x-dxf, application/x-tiff, application/vnd.pdf.
|
11745
11756
|
"""
|
11746
11757
|
file: Upload!
|
11747
11758
|
|