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.
- package/CHANGELOG.md +22 -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 +1800 -0
- package/resources/qbd/reports.d.mts.map +1 -0
- package/resources/qbd/reports.d.ts +1800 -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 +3933 -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
package/src/resources/qbd/qbd.ts
CHANGED
|
@@ -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
|
|
13
|
-
* credits. All allocations must target the same accounts receivable
|
|
14
|
-
* those invoices, and each one has to include a payment amount,
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
1023
|
-
*
|
|
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
|
-
*
|
|
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
|
-
*
|
|
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
|
|
1376
|
-
*
|
|
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
|
|