conductor-node 14.12.0 → 14.13.0

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.
Files changed (57) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/internal/utils/log.d.mts.map +1 -1
  3. package/internal/utils/log.d.ts.map +1 -1
  4. package/internal/utils/log.js +2 -0
  5. package/internal/utils/log.js.map +1 -1
  6. package/internal/utils/log.mjs +2 -0
  7. package/internal/utils/log.mjs.map +1 -1
  8. package/package.json +1 -1
  9. package/resources/qbd/bill-check-payments.d.mts +8 -8
  10. package/resources/qbd/bill-check-payments.d.ts +8 -8
  11. package/resources/qbd/bill-credit-card-payments.d.mts +4 -4
  12. package/resources/qbd/bill-credit-card-payments.d.ts +4 -4
  13. package/resources/qbd/index.d.mts +1 -0
  14. package/resources/qbd/index.d.mts.map +1 -1
  15. package/resources/qbd/index.d.ts +1 -0
  16. package/resources/qbd/index.d.ts.map +1 -1
  17. package/resources/qbd/index.js +4 -2
  18. package/resources/qbd/index.js.map +1 -1
  19. package/resources/qbd/index.mjs +1 -0
  20. package/resources/qbd/index.mjs.map +1 -1
  21. package/resources/qbd/invoices.d.mts +10 -8
  22. package/resources/qbd/invoices.d.mts.map +1 -1
  23. package/resources/qbd/invoices.d.ts +10 -8
  24. package/resources/qbd/invoices.d.ts.map +1 -1
  25. package/resources/qbd/qbd.d.mts +4 -0
  26. package/resources/qbd/qbd.d.mts.map +1 -1
  27. package/resources/qbd/qbd.d.ts +4 -0
  28. package/resources/qbd/qbd.d.ts.map +1 -1
  29. package/resources/qbd/qbd.js +4 -0
  30. package/resources/qbd/qbd.js.map +1 -1
  31. package/resources/qbd/qbd.mjs +4 -0
  32. package/resources/qbd/qbd.mjs.map +1 -1
  33. package/resources/qbd/receive-payments.d.mts +12 -12
  34. package/resources/qbd/receive-payments.d.ts +12 -12
  35. package/resources/qbd/receive-payments.js +4 -4
  36. package/resources/qbd/receive-payments.mjs +4 -4
  37. package/resources/qbd/reports.d.mts +1800 -0
  38. package/resources/qbd/reports.d.mts.map +1 -0
  39. package/resources/qbd/reports.d.ts +1800 -0
  40. package/resources/qbd/reports.d.ts.map +1 -0
  41. package/resources/qbd/reports.js +203 -0
  42. package/resources/qbd/reports.js.map +1 -0
  43. package/resources/qbd/reports.mjs +199 -0
  44. package/resources/qbd/reports.mjs.map +1 -0
  45. package/src/internal/utils/log.ts +2 -0
  46. package/src/resources/qbd/bill-check-payments.ts +8 -8
  47. package/src/resources/qbd/bill-credit-card-payments.ts +4 -4
  48. package/src/resources/qbd/index.ts +14 -0
  49. package/src/resources/qbd/invoices.ts +10 -8
  50. package/src/resources/qbd/qbd.ts +32 -0
  51. package/src/resources/qbd/receive-payments.ts +12 -12
  52. package/src/resources/qbd/reports.ts +3933 -0
  53. package/src/version.ts +1 -1
  54. package/version.d.mts +1 -1
  55. package/version.d.ts +1 -1
  56. package/version.js +1 -1
  57. package/version.mjs +1 -1
@@ -445,6 +445,21 @@ import {
445
445
  ReceivePayments,
446
446
  ReceivePaymentsCursorPage,
447
447
  } from './receive-payments';
448
+ import * as ReportsAPI from './reports';
449
+ import {
450
+ Report,
451
+ ReportAgingParams,
452
+ ReportBudgetSummaryParams,
453
+ ReportCustomDetailParams,
454
+ ReportCustomSummaryParams,
455
+ ReportGeneralDetailParams,
456
+ ReportGeneralSummaryParams,
457
+ ReportJobParams,
458
+ ReportPayrollDetailParams,
459
+ ReportPayrollSummaryParams,
460
+ ReportTimeParams,
461
+ Reports,
462
+ } from './reports';
448
463
  import * as SalesOrdersAPI from './sales-orders';
449
464
  import {
450
465
  SalesOrder,
@@ -673,6 +688,7 @@ export class Qbd extends APIResource {
673
688
  priceLevels: PriceLevelsAPI.PriceLevels = new PriceLevelsAPI.PriceLevels(this._client);
674
689
  purchaseOrders: PurchaseOrdersAPI.PurchaseOrders = new PurchaseOrdersAPI.PurchaseOrders(this._client);
675
690
  receivePayments: ReceivePaymentsAPI.ReceivePayments = new ReceivePaymentsAPI.ReceivePayments(this._client);
691
+ reports: ReportsAPI.Reports = new ReportsAPI.Reports(this._client);
676
692
  salesOrders: SalesOrdersAPI.SalesOrders = new SalesOrdersAPI.SalesOrders(this._client);
677
693
  salesReceipts: SalesReceiptsAPI.SalesReceipts = new SalesReceiptsAPI.SalesReceipts(this._client);
678
694
  salesRepresentatives: SalesRepresentativesAPI.SalesRepresentatives =
@@ -778,6 +794,7 @@ Qbd.PayrollWageItems = PayrollWageItems;
778
794
  Qbd.PriceLevels = PriceLevels;
779
795
  Qbd.PurchaseOrders = PurchaseOrders;
780
796
  Qbd.ReceivePayments = ReceivePayments;
797
+ Qbd.Reports = Reports;
781
798
  Qbd.SalesOrders = SalesOrders;
782
799
  Qbd.SalesReceipts = SalesReceipts;
783
800
  Qbd.SalesRepresentatives = SalesRepresentatives;
@@ -1249,6 +1266,21 @@ export declare namespace Qbd {
1249
1266
  type ReceivePaymentDeleteParams as ReceivePaymentDeleteParams,
1250
1267
  };
1251
1268
 
1269
+ export {
1270
+ Reports as Reports,
1271
+ type Report as Report,
1272
+ type ReportAgingParams as ReportAgingParams,
1273
+ type ReportBudgetSummaryParams as ReportBudgetSummaryParams,
1274
+ type ReportCustomDetailParams as ReportCustomDetailParams,
1275
+ type ReportCustomSummaryParams as ReportCustomSummaryParams,
1276
+ type ReportGeneralDetailParams as ReportGeneralDetailParams,
1277
+ type ReportGeneralSummaryParams as ReportGeneralSummaryParams,
1278
+ type ReportJobParams as ReportJobParams,
1279
+ type ReportPayrollDetailParams as ReportPayrollDetailParams,
1280
+ type ReportPayrollSummaryParams as ReportPayrollSummaryParams,
1281
+ type ReportTimeParams as ReportTimeParams,
1282
+ };
1283
+
1252
1284
  export {
1253
1285
  SalesOrders as SalesOrders,
1254
1286
  type SalesOrder as SalesOrder,
@@ -9,10 +9,10 @@ import { path } from '../../internal/utils/path';
9
9
 
10
10
  export class ReceivePayments extends APIResource {
11
11
  /**
12
- * Records a customer payment and optionally applies it to specific invoices or
13
- * credits. All allocations must target the same accounts receivable account as
14
- * those invoices, and each one has to include a payment amount, discount, or
15
- * credit so QuickBooks can close out the balance.
12
+ * Records a customer payment and optionally applies it to specific invoices,
13
+ * discounts, or credits. All allocations must target the same accounts receivable
14
+ * account as those invoices, and each one has to include a payment amount,
15
+ * discount, or credit so QuickBooks can close out the balance.
16
16
  *
17
17
  * @example
18
18
  * ```ts
@@ -965,9 +965,9 @@ export namespace ReceivePaymentCreateParams {
965
965
  transactionId: string;
966
966
 
967
967
  /**
968
- * Credit memos to apply to this receivable transaction, reducing its balance. This
968
+ * Credits to apply to this receivable transaction, reducing its balance. This
969
969
  * creates a link between this receivable transaction and the specified credit
970
- * memos.
970
+ * transactions.
971
971
  *
972
972
  * **IMPORTANT**: By default, QuickBooks will not return any information about the
973
973
  * linked transactions in this endpoint's response even when this request is
@@ -1019,8 +1019,8 @@ export namespace ReceivePaymentCreateParams {
1019
1019
  appliedAmount: string;
1020
1020
 
1021
1021
  /**
1022
- * The unique identifier of the credit transaction (credit memo or vendor credit)
1023
- * to apply to this transaction.
1022
+ * The unique identifier of the credit transaction to apply to this transaction,
1023
+ * such as a credit memo, vendor credit, or journal-entry credit.
1024
1024
  */
1025
1025
  creditTransactionId: string;
1026
1026
 
@@ -1318,9 +1318,9 @@ export namespace ReceivePaymentUpdateParams {
1318
1318
  transactionId: string;
1319
1319
 
1320
1320
  /**
1321
- * Credit memos to apply to this receivable transaction, reducing its balance. This
1321
+ * Credits to apply to this receivable transaction, reducing its balance. This
1322
1322
  * creates a link between this receivable transaction and the specified credit
1323
- * memos.
1323
+ * transactions.
1324
1324
  *
1325
1325
  * **IMPORTANT**: By default, QuickBooks will not return any information about the
1326
1326
  * linked transactions in this endpoint's response even when this request is
@@ -1372,8 +1372,8 @@ export namespace ReceivePaymentUpdateParams {
1372
1372
  appliedAmount: string;
1373
1373
 
1374
1374
  /**
1375
- * The unique identifier of the credit transaction (credit memo or vendor credit)
1376
- * to apply to this transaction.
1375
+ * The unique identifier of the credit transaction to apply to this transaction,
1376
+ * such as a credit memo, vendor credit, or journal-entry credit.
1377
1377
  */
1378
1378
  creditTransactionId: string;
1379
1379