@nautical-commerce/graphql-schema 1.94.0-9-g350af264e → 1.94.1

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.
@@ -1132,131 +1132,6 @@ type Query {
1132
1132
  """Return the last n elements from the list."""
1133
1133
  last: Int
1134
1134
  ): EmailEventCountableConnection
1135
-
1136
- """Get orders for tenant with optional date filtering"""
1137
- bigqueryTenantOrders(
1138
- """Start date for filtering orders"""
1139
- startDate: Date
1140
-
1141
- """End date for filtering orders"""
1142
- endDate: Date
1143
-
1144
- """Grouping for the report, e.g., DAILY, WEEKLY, MONTHLY"""
1145
- grouping: String = "MONTHLY"
1146
- ): BigQueryDailyOrderCountsReportType
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
1155
-
1156
- """Returns a table of all customers for a given tenant"""
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
1167
-
1168
- """Returns a list of payouts for a tenant"""
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
1182
-
1183
- """Returns a list of order line items for a tenant"""
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
1198
-
1199
- """Returns net sales by seller for a tenant"""
1200
- bigqueryNetSalesBySeller(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesBySellerReportType
1201
-
1202
- """Returns net sales by category for a tenant"""
1203
- bigqueryNetSalesByCategory(sellerId: Int, startDate: Date, endDate: Date): BigQueryNetSalesByCategoryReportType
1204
-
1205
- """Returns a list of seller orders for a given tenant and seller"""
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
1220
-
1221
- """Returns seller 30-60-90 day sales"""
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
1234
-
1235
- """Returns a list of seller payouts for a given tenant and seller"""
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
1246
-
1247
- """Returns a list of product variants for a given tenant"""
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
1260
1135
  insightsTopPerformingProducts(
1261
1136
  """Beginning of the period to filter results"""
1262
1137
  startDate: Date!
@@ -10322,449 +10197,6 @@ enum EmailEventSortField {
10322
10197
  DATE
10323
10198
  }
10324
10199
 
10325
- type BigQueryDailyOrderCountsReportType {
10326
- """Category of the metric."""
10327
- category: String!
10328
-
10329
- """Title of the metric."""
10330
- title: String!
10331
-
10332
- """
10333
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10334
- """
10335
- columns: [ColumnObjectType!]
10336
-
10337
- """Info about applied filters."""
10338
- filters: [FilterObjectType!]
10339
-
10340
- """Summary metrics for the daily order count report"""
10341
- summary: JSONString
10342
-
10343
- """Daily aggregated order counts"""
10344
- report: [DailyOrderCountReportType!]!
10345
- }
10346
-
10347
- type DailyOrderCountReportType {
10348
- """Date of the orders"""
10349
- orderDate: Date!
10350
-
10351
- """Number of orders on that date"""
10352
- orderCount: Int!
10353
- }
10354
-
10355
- type BigQuerySalesPerDayReportType {
10356
- """Category of the metric."""
10357
- category: String!
10358
-
10359
- """Title of the metric."""
10360
- title: String!
10361
-
10362
- """
10363
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10364
- """
10365
- columns: [ColumnObjectType!]
10366
-
10367
- """Info about applied filters."""
10368
- filters: [FilterObjectType!]
10369
-
10370
- """Summary metrics for the sales per day report"""
10371
- summary: JSONString
10372
-
10373
- """Daily aggregated sales data"""
10374
- report: [SalesPerDayType!]!
10375
- }
10376
-
10377
- type SalesPerDayType {
10378
- saleDate: Date
10379
- totalSales: Float
10380
- }
10381
-
10382
- type BigQueryOrdersByStatusReportType {
10383
- """Category of the metric."""
10384
- category: String!
10385
-
10386
- """Title of the metric."""
10387
- title: String!
10388
-
10389
- """
10390
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10391
- """
10392
- columns: [ColumnObjectType!]
10393
-
10394
- """Info about applied filters."""
10395
- filters: [FilterObjectType!]
10396
-
10397
- """Summary metrics for the orders by status report"""
10398
- summary: JSONString
10399
-
10400
- """Aggregated order counts by status"""
10401
- report: [OrdersByStatusType!]!
10402
- }
10403
-
10404
- type OrdersByStatusType {
10405
- status: String
10406
- count: Int
10407
- }
10408
-
10409
- type BigQueryCustomerReportType {
10410
- """Category of the metric."""
10411
- category: String!
10412
-
10413
- """Title of the metric."""
10414
- title: String!
10415
-
10416
- """
10417
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10418
- """
10419
- columns: [ColumnObjectType!]
10420
-
10421
- """Info about applied filters."""
10422
- filters: [FilterObjectType!]
10423
-
10424
- """Summary stats across all customers"""
10425
- summary: JSONString
10426
-
10427
- """All customer records for a tenant"""
10428
- report: [CustomerReportRowType!]
10429
- }
10430
-
10431
- type CustomerReportRowType {
10432
- firstName: String
10433
- lastName: String
10434
- companyName: String
10435
- email: String
10436
- dateJoined: DateTime
10437
- lastLogin: DateTime
10438
- streetAddress1: String
10439
- streetAddress2: String
10440
- city: String
10441
- countryArea: String
10442
- country: String
10443
- postalCode: String
10444
- totalOrderAmount: Float
10445
- totalOrderCount: Int
10446
- }
10447
-
10448
- type BigQueryPayoutReportType {
10449
- """Category of the metric."""
10450
- category: String!
10451
-
10452
- """Title of the metric."""
10453
- title: String!
10454
-
10455
- """
10456
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10457
- """
10458
- columns: [ColumnObjectType!]
10459
-
10460
- """Info about applied filters."""
10461
- filters: [FilterObjectType!]
10462
-
10463
- """Summary metrics across all payouts"""
10464
- summary: JSONString
10465
-
10466
- """List of payout records"""
10467
- report: [PayoutReportRowType!]
10468
- }
10469
-
10470
- type PayoutReportRowType {
10471
- """Payout ID"""
10472
- id: String!
10473
- created: DateTime!
10474
- endDate: Date!
10475
- status: String!
10476
- name: String
10477
- currency: String
10478
- sellerCount: Int
10479
- sales: Float
10480
- discounts: Float
10481
- shipping: Float
10482
- commission: Float
10483
- fees: Float
10484
- refunds: Float
10485
- adjustments: Float
10486
- payout: Float
10487
- }
10488
-
10489
- type BigQueryOrdersBySellerReportType {
10490
- """Category of the metric."""
10491
- category: String!
10492
-
10493
- """Title of the metric."""
10494
- title: String!
10495
-
10496
- """
10497
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10498
- """
10499
- columns: [ColumnObjectType!]
10500
-
10501
- """Info about applied filters."""
10502
- filters: [FilterObjectType!]
10503
-
10504
- """Summary metrics across all orders by seller"""
10505
- summary: JSONString
10506
-
10507
- """List of order line records grouped by seller"""
10508
- report: [OrderLineReportRowType!]
10509
- }
10510
-
10511
- type OrderLineReportRowType {
10512
- tenantId: String!
10513
- mpoOrderId: String!
10514
- created: DateTime!
10515
- updated: DateTime!
10516
- orderLineId: String
10517
- sellerId: String
10518
- sellerName: String
10519
- sellerOrderNumber: Int
10520
- category: String
10521
- variantName: String
10522
- productName: String
10523
- quantity: Int
10524
- quantityFulfilled: Int
10525
- quantityDeclined: Int
10526
- currency: String
10527
- unitPriceNetAmount: Float
10528
- unitPriceGrossAmount: Float
10529
- unitPriceTaxes: Float
10530
- totalPriceGrossAmount: Float
10531
- totalPriceNetAmount: Float
10532
- totalPriceTaxes: Float
10533
- brand: String
10534
- variantSku: String
10535
- }
10536
-
10537
- type BigQueryNetSalesBySellerReportType {
10538
- """Category of the metric."""
10539
- category: String!
10540
-
10541
- """Title of the metric."""
10542
- title: String!
10543
-
10544
- """
10545
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10546
- """
10547
- columns: [ColumnObjectType!]
10548
-
10549
- """Info about applied filters."""
10550
- filters: [FilterObjectType!]
10551
-
10552
- """Summary metrics across all net sales by seller"""
10553
- summary: JSONString
10554
-
10555
- """List of net sales records grouped by seller"""
10556
- report: [NetSalesBySellerType!]
10557
- }
10558
-
10559
- type NetSalesBySellerType {
10560
- sellerId: String
10561
- sellerName: String
10562
- orderCount: Int
10563
- totalSales: Float
10564
- }
10565
-
10566
- type BigQueryNetSalesByCategoryReportType {
10567
- """Category of the metric."""
10568
- category: String!
10569
-
10570
- """Title of the metric."""
10571
- title: String!
10572
-
10573
- """
10574
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10575
- """
10576
- columns: [ColumnObjectType!]
10577
-
10578
- """Info about applied filters."""
10579
- filters: [FilterObjectType!]
10580
-
10581
- """Summary metrics across all net sales by category"""
10582
- summary: JSONString
10583
-
10584
- """List of net sales records grouped by category"""
10585
- report: [NetSalesByCategoryType!]
10586
- }
10587
-
10588
- type NetSalesByCategoryType {
10589
- category: String
10590
- totalSales: Float
10591
- }
10592
-
10593
- type BigQuerySellerOrdersReportType {
10594
- """Category of the metric."""
10595
- category: String!
10596
-
10597
- """Title of the metric."""
10598
- title: String!
10599
-
10600
- """
10601
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10602
- """
10603
- columns: [ColumnObjectType!]
10604
-
10605
- """Info about applied filters."""
10606
- filters: [FilterObjectType!]
10607
- summary: JSONString
10608
-
10609
- """List of seller order records"""
10610
- report: [SellerOrderReportRowType!]
10611
- }
10612
-
10613
- type SellerOrderReportRowType {
10614
- sellerOrderNumber: String!
10615
- sellerName: String!
10616
- mpoOrderNumber: String!
10617
- created: DateTime
10618
- updated: DateTime
10619
- status: String
10620
- subStatus: String
10621
- firstName: String
10622
- lastName: String
10623
- companyName: String
10624
- stateProv: String
10625
- country: String
10626
- totalNetAmount: Float
10627
- totalGrossAmount: Float
10628
- totalTaxes: Float
10629
- shippingGrossAmount: Float
10630
- shippingNetAmount: Float
10631
- shippingTaxes: Float
10632
- currency: String
10633
- }
10634
-
10635
- type BigQueryThirtySixtyNinetyReportType {
10636
- """Category of the metric."""
10637
- category: String!
10638
-
10639
- """Title of the metric."""
10640
- title: String!
10641
-
10642
- """
10643
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10644
- """
10645
- columns: [ColumnObjectType!]
10646
-
10647
- """Info about applied filters."""
10648
- filters: [FilterObjectType!]
10649
- summary: JSONString
10650
-
10651
- """List of Variant 30-60-90 Day Sales"""
10652
- report: [ThirtySixtyNinetySellerReportRowType!]
10653
- }
10654
-
10655
- type ThirtySixtyNinetySellerReportRowType {
10656
- tenantId: String
10657
- variantId: String
10658
- productName: String
10659
- variantName: String
10660
- brand: String
10661
- variantSku: String
10662
- variantStatus: String
10663
- variantSubstatus: String
10664
- sellerName: String
10665
- sellerId: String
10666
- currentquantity: Int
10667
- currentquantityallocated: Int
10668
- currentquantityavailable: Int
10669
- sales0to30quantityordered: Int
10670
- sales0to30quantityfulfilled: Int
10671
- sales0to30quantitydeclined: Int
10672
- sales0to30amount: Float
10673
- sales31to60quantityordered: Int
10674
- sales31to60quantityfulfilled: Int
10675
- sales31to60quantitydeclined: Int
10676
- sales31to60amount: Float
10677
- sales61to90quantityordered: Int
10678
- sales61to90quantityfulfilled: Int
10679
- sales61to90quantitydeclined: Int
10680
- sales61to90amount: Float
10681
- }
10682
-
10683
- type BigQuerySellerPayoutReportType {
10684
- """Category of the metric."""
10685
- category: String!
10686
-
10687
- """Title of the metric."""
10688
- title: String!
10689
-
10690
- """
10691
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10692
- """
10693
- columns: [ColumnObjectType!]
10694
-
10695
- """Info about applied filters."""
10696
- filters: [FilterObjectType!]
10697
- summary: JSONString
10698
-
10699
- """List of seller payout records"""
10700
- report: [SellerPayoutRowType!]
10701
- }
10702
-
10703
- type SellerPayoutRowType {
10704
- tenantId: String!
10705
- sellerId: String!
10706
- id: String!
10707
- payoutId: String!
10708
- created: DateTime!
10709
- included: Boolean
10710
- status: String
10711
- currency: String
10712
- sales: Float
10713
- discounts: Float
10714
- shipping: Float
10715
- commission: Float
10716
- fees: Float
10717
- refunds: Float
10718
- adjustments: Float
10719
- payout: Float
10720
- }
10721
-
10722
- type BigQueryVariantListReportType {
10723
- """Category of the metric."""
10724
- category: String!
10725
-
10726
- """Title of the metric."""
10727
- title: String!
10728
-
10729
- """
10730
- Description of main columns in report and summary. Note: report and summary can contain additional columns.
10731
- """
10732
- columns: [ColumnObjectType!]
10733
-
10734
- """Info about applied filters."""
10735
- filters: [FilterObjectType!]
10736
- summary: JSONString
10737
-
10738
- """List of product variants"""
10739
- report: [VariantListType!]
10740
- }
10741
-
10742
- type VariantListType {
10743
- productId: String
10744
- productName: String
10745
- variantId: String
10746
- variantName: String
10747
- variantSku: String
10748
- category: String
10749
- created: DateTime
10750
- updated: DateTime
10751
- status: String
10752
- substatus: String
10753
- price: Float
10754
- cost: Float
10755
- currency: String
10756
- trackInventory: Boolean
10757
- allowBackorders: Boolean
10758
- weight: Float
10759
- isPublished: Boolean
10760
- sellerName: String
10761
- warehouseName: String
10762
- quantity: Int
10763
- quantityAllocated: Int
10764
- quantityAvailable: Int
10765
- sellerId: String
10766
- }
10767
-
10768
10200
  type InReportTopPerformingProductsType {
10769
10201
  """Category of the metric."""
10770
10202
  category: String!
@@ -11826,7 +11258,7 @@ type Mutation {
11826
11258
  description: String
11827
11259
 
11828
11260
  """
11829
- Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: application/eps, application/vnd.oasis.opendocument.text, text/x-csv, application/dxf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, image/bmp, drawing/x-dwf, application/excel, application/x-acad, image/tiff, image/x-tiff, image/heif, image/heif-sequence, image/png, text/comma-separated-values, image/tif, text/rtf, text/svg, application/zip, application/msword, image/svg+xml, image/jpeg, application/rtf, application/postscript, image/x-ms-bmp, image/eps, application/vnd.oasis.opendocument.spreadsheet, application/tiff, image/svg, application/x-gzip, image/webp, application/gzip, application/x-eps, application/gzipped, image/x-tif, application/x-tif, application/svg+xml, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/x-pdf, image/heic, application/x-rar, text/x-comma-separated-values, application/vnd.ms-powerpoint, application/jpg, text/csv, text/pdf, application/acrobat, image/x-bmp, application/x-autocad, pplication/vnd.rar, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-tiff, application/csv, drawing/x-dwg, application/x-jpg, text/svg-xml, application/x-csv, image/x-dxf, application/vnd.pdf, image/x-eps, application/gzip-compressed, image/x-dwg, application/x-dxf, application/x-zip-compressed, application/vnd.oasis.opendocument.presentation, application/x-tar, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/vnd.dwg, application/x-rtf, application/dwg, application/acad, image/dxf, text/x-pdf, application/x-rar-compressed, image/heic-sequence, application/vnd.ms-word, application/vnd.ms-excel, image/gif, application/x-dwg, application/tif, image/jpg, application/pdf, text/plain, drawing/dwg.
11261
+ Used when uploading a new document or file in a multipart request that does not exist in the system already. Supported file types: image/png, application/x-gzip, application/excel, image/heif-sequence, application/x-zip-compressed, image/bmp, application/vnd.ms-excel, application/vnd.ms-word, application/vnd.openxmlformats-officedocument.wordprocessingml.document, image/x-ms-bmp, application/x-tar, application/msword, image/svg+xml, image/jpeg, application/acrobat, application/pdf, application/x-autocad, application/x-tif, text/svg, application/vnd.oasis.opendocument.presentation, drawing/x-dwg, application/x-dwg, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet, application/x-eps, application/vnd.ms-powerpoint, application/tiff, text/x-csv, application/rtf, image/webp, image/x-bmp, image/vnd.dwg, application/x-rtf, application/gzip, text/plain, drawing/dwg, application/vnd.oasis.opendocument.spreadsheet, text/rtf, application/x-rar, image/heic-sequence, text/csv, text/x-pdf, application/acad, application/dxf, image/eps, image/tif, application/x-dxf, image/tiff, application/x-jpg, application/vnd.openxmlformats-officedocument.presentationml.presentation, application/vnd.pdf, drawing/x-dwf, application/x-pdf, application/postscript, application/tif, image/x-tiff, application/jpg, image/x-eps, application/x-acad, image/dxf, image/svg, application/csv, image/gif, application/dwg, text/pdf, application/vnd.openxmlformats-officedocument.presentationml.slideshow, text/svg-xml, image/heif, application/x-tiff, application/vnd.oasis.opendocument.text, application/svg+xml, application/gzipped, text/x-comma-separated-values, pplication/vnd.rar, image/x-tif, application/eps, application/zip, image/x-dxf, application/x-rar-compressed, image/heic, image/jpg, application/gzip-compressed, application/x-csv, text/comma-separated-values, image/x-dwg.
11830
11262
  """
11831
11263
  file: Upload!
11832
11264
 
@@ -20147,10 +19579,7 @@ input ExportProductsInput {
20147
19579
  ids: [ID!]
20148
19580
 
20149
19581
  """Input with info about fields which should be exported."""
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!]
19582
+ exportInfo: ExportInfoInput
20154
19583
 
20155
19584
  """Type of exported file."""
20156
19585
  fileType: FileTypesEnum!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nautical-commerce/graphql-schema",
3
- "version": "v1.94.0-9-g350af264e",
3
+ "version": "v1.94.1",
4
4
  "description": "## Getting Started",
5
5
  "main": "./nautical/schema.graphql",
6
6
  "scripts": {