@nautical-commerce/graphql-schema 1.94.0-1-gc481f36a6 → 1.94.0-10-gb701520e4

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.
@@ -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(tenantId: String!, startDate: Date, endDate: Date): BigQuerySalesPerDayReportType
1148
- bigqueryOrdersByStatus(tenantId: String!, startDate: Date, endDate: Date): BigQueryOrdersByStatusReportType
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(tenantId: String!): BigQueryCustomerReportType
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(tenantId: String!, startDate: Date, endDate: Date): BigQueryPayoutReportType
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(tenantId: String!, sellerId: Int, startDate: Date, endDate: Date): BigQueryOrdersBySellerReportType
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(tenantId: String!, sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesBySellerReportType
1200
+ bigqueryNetSalesBySeller(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesBySellerReportType
1161
1201
 
1162
1202
  """Returns net sales by category for a tenant"""
1163
- bigqueryNetSalesByCategory(tenantId: String!, sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesByCategoryReportType
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(tenantId: String!, sellerId: Int!, startDate: Date, endDate: Date): BigQuerySellerOrdersReportType
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(tenantId: String!): BigQueryThirtySixtyNinetyReportType
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(tenantId: String!): BigQuerySellerPayoutReportType
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(tenantId: String!): BigQueryVariantListReportType
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: text/plain, application/zip, application/svg+xml, application/tif, application/vnd.ms-excel, application/x-tar, application/msword, image/png, application/x-dwg, drawing/x-dwf, image/webp, image/jpg, application/x-eps, application/x-jpg, drawing/x-dwg, application/x-rtf, image/heic, application/excel, text/csv, image/x-tiff, application/x-acad, image/x-bmp, application/vnd.pdf, application/csv, image/heif-sequence, image/dxf, application/acad, image/eps, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tif, application/acrobat, text/svg-xml, application/eps, image/heic-sequence, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/x-rar, text/pdf, image/heif, application/jpg, image/vnd.dwg, application/gzipped, application/tiff, application/rtf, image/x-tif, image/svg+xml, pplication/vnd.rar, image/x-ms-bmp, application/x-gzip, application/vnd.openxmlformats-officedocument.wordprocessingml.document, application/vnd.ms-word, text/svg, text/x-pdf, image/bmp, application/x-dxf, text/rtf, image/svg, application/x-tiff, application/vnd.oasis.opendocument.presentation, application/vnd.ms-powerpoint, image/gif, application/x-autocad, application/vnd.openxmlformats-officedocument.presentationml.presentation, text/x-csv, image/tif, application/gzip-compressed, application/x-csv, image/tiff, application/dwg, application/dxf, application/x-rar-compressed, application/gzip, drawing/dwg, text/comma-separated-values, image/x-dxf, application/x-zip-compressed, image/x-dwg, image/x-eps, application/pdf, image/jpeg, text/x-comma-separated-values, application/x-pdf, application/postscript, application/vnd.oasis.opendocument.text, application/vnd.oasis.opendocument.spreadsheet.
11829
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/tiff, text/csv, image/x-bmp, image/vnd.dwg, application/msword, image/jpeg, application/vnd.oasis.opendocument.presentation, text/comma-separated-values, application/x-jpg, application/dxf, image/x-eps, image/jpg, application/svg+xml, image/x-dxf, application/vnd.oasis.opendocument.text, application/x-rar-compressed, image/svg, application/csv, image/heic-sequence, text/pdf, application/x-csv, application/x-zip-compressed, drawing/x-dwf, image/png, application/tiff, drawing/x-dwg, application/vnd.pdf, application/acrobat, application/acad, application/rtf, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/dxf, application/x-tar, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/gzipped, text/svg, image/x-dwg, image/heif, image/heic, text/x-pdf, application/x-pdf, drawing/dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, image/gif, application/vnd.ms-excel, image/bmp, application/gzip-compressed, application/eps, text/svg-xml, application/x-rtf, image/x-ms-bmp, application/vnd.ms-word, application/x-gzip, application/dwg, application/jpg, text/plain, application/pdf, image/x-tiff, application/x-dxf, text/x-comma-separated-values, image/x-tif, application/x-eps, application/vnd.ms-powerpoint, image/heif-sequence, image/eps, image/tif, application/vnd.openxmlformats-officedocument.presentationml.slideshow, application/postscript, text/x-csv, application/tif, application/excel, application/x-autocad, application/vnd.oasis.opendocument.spreadsheet, application/zip, pplication/vnd.rar, application/x-tiff, image/svg+xml, application/x-dwg, application/gzip, image/webp, application/x-acad, application/x-tif, application/x-rar, text/rtf.
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!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.94.0-1-gc481f36a6",
3
+ "version": "v1.94.0-10-gb701520e4",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {