conductor-node 14.12.0 → 14.14.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.
- package/CHANGELOG.md +30 -0
- package/internal/utils/log.d.mts.map +1 -1
- package/internal/utils/log.d.ts.map +1 -1
- package/internal/utils/log.js +2 -0
- package/internal/utils/log.js.map +1 -1
- package/internal/utils/log.mjs +2 -0
- package/internal/utils/log.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/qbd/bill-check-payments.d.mts +8 -8
- package/resources/qbd/bill-check-payments.d.ts +8 -8
- package/resources/qbd/bill-credit-card-payments.d.mts +4 -4
- package/resources/qbd/bill-credit-card-payments.d.ts +4 -4
- package/resources/qbd/index.d.mts +1 -0
- package/resources/qbd/index.d.mts.map +1 -1
- package/resources/qbd/index.d.ts +1 -0
- package/resources/qbd/index.d.ts.map +1 -1
- package/resources/qbd/index.js +4 -2
- package/resources/qbd/index.js.map +1 -1
- package/resources/qbd/index.mjs +1 -0
- package/resources/qbd/index.mjs.map +1 -1
- package/resources/qbd/invoices.d.mts +10 -8
- package/resources/qbd/invoices.d.mts.map +1 -1
- package/resources/qbd/invoices.d.ts +10 -8
- package/resources/qbd/invoices.d.ts.map +1 -1
- package/resources/qbd/qbd.d.mts +4 -0
- package/resources/qbd/qbd.d.mts.map +1 -1
- package/resources/qbd/qbd.d.ts +4 -0
- package/resources/qbd/qbd.d.ts.map +1 -1
- package/resources/qbd/qbd.js +4 -0
- package/resources/qbd/qbd.js.map +1 -1
- package/resources/qbd/qbd.mjs +4 -0
- package/resources/qbd/qbd.mjs.map +1 -1
- package/resources/qbd/receive-payments.d.mts +12 -12
- package/resources/qbd/receive-payments.d.ts +12 -12
- package/resources/qbd/receive-payments.js +4 -4
- package/resources/qbd/receive-payments.mjs +4 -4
- package/resources/qbd/reports.d.mts +1829 -0
- package/resources/qbd/reports.d.mts.map +1 -0
- package/resources/qbd/reports.d.ts +1829 -0
- package/resources/qbd/reports.d.ts.map +1 -0
- package/resources/qbd/reports.js +203 -0
- package/resources/qbd/reports.js.map +1 -0
- package/resources/qbd/reports.mjs +199 -0
- package/resources/qbd/reports.mjs.map +1 -0
- package/src/internal/utils/log.ts +2 -0
- package/src/resources/qbd/bill-check-payments.ts +8 -8
- package/src/resources/qbd/bill-credit-card-payments.ts +4 -4
- package/src/resources/qbd/index.ts +14 -0
- package/src/resources/qbd/invoices.ts +10 -8
- package/src/resources/qbd/qbd.ts +32 -0
- package/src/resources/qbd/receive-payments.ts +12 -12
- package/src/resources/qbd/reports.ts +3962 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- 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
|
|
8
|
-
* credits. All allocations must target the same accounts receivable
|
|
9
|
-
* those invoices, and each one has to include a payment amount,
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
794
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
1099
|
-
*
|
|
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
|
|
8
|
-
* credits. All allocations must target the same accounts receivable
|
|
9
|
-
* those invoices, and each one has to include a payment amount,
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
794
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
1099
|
-
*
|
|
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
|
|
12
|
-
* credits. All allocations must target the same accounts receivable
|
|
13
|
-
* those invoices, and each one has to include a payment amount,
|
|
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
|
|
9
|
-
* credits. All allocations must target the same accounts receivable
|
|
10
|
-
* those invoices, and each one has to include a payment amount,
|
|
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
|