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
@@ -4,10 +4,10 @@ import { CursorPage, type CursorPageParams, PagePromise } from "../../core/pagin
4
4
  import { RequestOptions } from "../../internal/request-options.mjs";
5
5
  export declare class ReceivePayments extends APIResource {
6
6
  /**
7
- * Records a customer payment and optionally applies it to specific invoices or
8
- * credits. All allocations must target the same accounts receivable account as
9
- * those invoices, and each one has to include a payment amount, discount, or
10
- * credit so QuickBooks can close out the balance.
7
+ * Records a customer payment and optionally applies it to specific invoices,
8
+ * discounts, or credits. All allocations must target the same accounts receivable
9
+ * account as those invoices, and each one has to include a payment amount,
10
+ * discount, or credit so QuickBooks can close out the balance.
11
11
  *
12
12
  * @example
13
13
  * ```ts
@@ -742,9 +742,9 @@ export declare namespace ReceivePaymentCreateParams {
742
742
  */
743
743
  transactionId: string;
744
744
  /**
745
- * Credit memos to apply to this receivable transaction, reducing its balance. This
745
+ * Credits to apply to this receivable transaction, reducing its balance. This
746
746
  * creates a link between this receivable transaction and the specified credit
747
- * memos.
747
+ * transactions.
748
748
  *
749
749
  * **IMPORTANT**: By default, QuickBooks will not return any information about the
750
750
  * linked transactions in this endpoint's response even when this request is
@@ -790,8 +790,8 @@ export declare namespace ReceivePaymentCreateParams {
790
790
  */
791
791
  appliedAmount: string;
792
792
  /**
793
- * The unique identifier of the credit transaction (credit memo or vendor credit)
794
- * to apply to this transaction.
793
+ * The unique identifier of the credit transaction to apply to this transaction,
794
+ * such as a credit memo, vendor credit, or journal-entry credit.
795
795
  */
796
796
  creditTransactionId: string;
797
797
  /**
@@ -1047,9 +1047,9 @@ export declare namespace ReceivePaymentUpdateParams {
1047
1047
  */
1048
1048
  transactionId: string;
1049
1049
  /**
1050
- * Credit memos to apply to this receivable transaction, reducing its balance. This
1050
+ * Credits to apply to this receivable transaction, reducing its balance. This
1051
1051
  * creates a link between this receivable transaction and the specified credit
1052
- * memos.
1052
+ * transactions.
1053
1053
  *
1054
1054
  * **IMPORTANT**: By default, QuickBooks will not return any information about the
1055
1055
  * linked transactions in this endpoint's response even when this request is
@@ -1095,8 +1095,8 @@ export declare namespace ReceivePaymentUpdateParams {
1095
1095
  */
1096
1096
  appliedAmount: string;
1097
1097
  /**
1098
- * The unique identifier of the credit transaction (credit memo or vendor credit)
1099
- * to apply to this transaction.
1098
+ * The unique identifier of the credit transaction to apply to this transaction,
1099
+ * such as a credit memo, vendor credit, or journal-entry credit.
1100
1100
  */
1101
1101
  creditTransactionId: string;
1102
1102
  /**
@@ -4,10 +4,10 @@ import { CursorPage, type CursorPageParams, PagePromise } from "../../core/pagin
4
4
  import { RequestOptions } from "../../internal/request-options.js";
5
5
  export declare class ReceivePayments extends APIResource {
6
6
  /**
7
- * Records a customer payment and optionally applies it to specific invoices or
8
- * credits. All allocations must target the same accounts receivable account as
9
- * those invoices, and each one has to include a payment amount, discount, or
10
- * credit so QuickBooks can close out the balance.
7
+ * Records a customer payment and optionally applies it to specific invoices,
8
+ * discounts, or credits. All allocations must target the same accounts receivable
9
+ * account as those invoices, and each one has to include a payment amount,
10
+ * discount, or credit so QuickBooks can close out the balance.
11
11
  *
12
12
  * @example
13
13
  * ```ts
@@ -742,9 +742,9 @@ export declare namespace ReceivePaymentCreateParams {
742
742
  */
743
743
  transactionId: string;
744
744
  /**
745
- * Credit memos to apply to this receivable transaction, reducing its balance. This
745
+ * Credits to apply to this receivable transaction, reducing its balance. This
746
746
  * creates a link between this receivable transaction and the specified credit
747
- * memos.
747
+ * transactions.
748
748
  *
749
749
  * **IMPORTANT**: By default, QuickBooks will not return any information about the
750
750
  * linked transactions in this endpoint's response even when this request is
@@ -790,8 +790,8 @@ export declare namespace ReceivePaymentCreateParams {
790
790
  */
791
791
  appliedAmount: string;
792
792
  /**
793
- * The unique identifier of the credit transaction (credit memo or vendor credit)
794
- * to apply to this transaction.
793
+ * The unique identifier of the credit transaction to apply to this transaction,
794
+ * such as a credit memo, vendor credit, or journal-entry credit.
795
795
  */
796
796
  creditTransactionId: string;
797
797
  /**
@@ -1047,9 +1047,9 @@ export declare namespace ReceivePaymentUpdateParams {
1047
1047
  */
1048
1048
  transactionId: string;
1049
1049
  /**
1050
- * Credit memos to apply to this receivable transaction, reducing its balance. This
1050
+ * Credits to apply to this receivable transaction, reducing its balance. This
1051
1051
  * creates a link between this receivable transaction and the specified credit
1052
- * memos.
1052
+ * transactions.
1053
1053
  *
1054
1054
  * **IMPORTANT**: By default, QuickBooks will not return any information about the
1055
1055
  * linked transactions in this endpoint's response even when this request is
@@ -1095,8 +1095,8 @@ export declare namespace ReceivePaymentUpdateParams {
1095
1095
  */
1096
1096
  appliedAmount: string;
1097
1097
  /**
1098
- * The unique identifier of the credit transaction (credit memo or vendor credit)
1099
- * to apply to this transaction.
1098
+ * The unique identifier of the credit transaction to apply to this transaction,
1099
+ * such as a credit memo, vendor credit, or journal-entry credit.
1100
1100
  */
1101
1101
  creditTransactionId: string;
1102
1102
  /**
@@ -8,10 +8,10 @@ const headers_1 = require("../../internal/headers.js");
8
8
  const path_1 = require("../../internal/utils/path.js");
9
9
  class ReceivePayments extends resource_1.APIResource {
10
10
  /**
11
- * Records a customer payment and optionally applies it to specific invoices or
12
- * credits. All allocations must target the same accounts receivable account as
13
- * those invoices, and each one has to include a payment amount, discount, or
14
- * credit so QuickBooks can close out the balance.
11
+ * Records a customer payment and optionally applies it to specific invoices,
12
+ * discounts, or credits. All allocations must target the same accounts receivable
13
+ * account as those invoices, and each one has to include a payment amount,
14
+ * discount, or credit so QuickBooks can close out the balance.
15
15
  *
16
16
  * @example
17
17
  * ```ts
@@ -5,10 +5,10 @@ import { buildHeaders } from "../../internal/headers.mjs";
5
5
  import { path } from "../../internal/utils/path.mjs";
6
6
  export class ReceivePayments extends APIResource {
7
7
  /**
8
- * Records a customer payment and optionally applies it to specific invoices or
9
- * credits. All allocations must target the same accounts receivable account as
10
- * those invoices, and each one has to include a payment amount, discount, or
11
- * credit so QuickBooks can close out the balance.
8
+ * Records a customer payment and optionally applies it to specific invoices,
9
+ * discounts, or credits. All allocations must target the same accounts receivable
10
+ * account as those invoices, and each one has to include a payment amount,
11
+ * discount, or credit so QuickBooks can close out the balance.
12
12
  *
13
13
  * @example
14
14
  * ```ts