conductor-node 12.31.1 → 12.32.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 +8 -0
- package/package.json +1 -1
- package/resources/qbd/bill-check-payments.d.ts +8 -4
- package/resources/qbd/bill-check-payments.d.ts.map +1 -1
- package/resources/qbd/bill-check-payments.js.map +1 -1
- package/resources/qbd/bill-check-payments.mjs.map +1 -1
- package/resources/qbd/bill-credit-card-payments.d.ts +8 -4
- package/resources/qbd/bill-credit-card-payments.d.ts.map +1 -1
- package/resources/qbd/bill-credit-card-payments.js.map +1 -1
- package/resources/qbd/bill-credit-card-payments.mjs.map +1 -1
- package/resources/qbd/bills.d.ts +4 -2
- package/resources/qbd/bills.d.ts.map +1 -1
- package/resources/qbd/bills.js.map +1 -1
- package/resources/qbd/bills.mjs.map +1 -1
- package/resources/qbd/checks.d.ts +4 -2
- package/resources/qbd/checks.d.ts.map +1 -1
- package/resources/qbd/checks.js.map +1 -1
- package/resources/qbd/checks.mjs.map +1 -1
- package/resources/qbd/credit-memos.d.ts +4 -2
- package/resources/qbd/credit-memos.d.ts.map +1 -1
- package/resources/qbd/credit-memos.js.map +1 -1
- package/resources/qbd/credit-memos.mjs.map +1 -1
- package/resources/qbd/employees.d.ts +8 -21
- package/resources/qbd/employees.d.ts.map +1 -1
- package/resources/qbd/estimates.d.ts +4 -2
- package/resources/qbd/estimates.d.ts.map +1 -1
- package/resources/qbd/estimates.js.map +1 -1
- package/resources/qbd/estimates.mjs.map +1 -1
- package/resources/qbd/inventory-adjustments.d.ts +1 -1
- package/resources/qbd/inventory-adjustments.d.ts.map +1 -1
- package/resources/qbd/invoices.d.ts +4 -2
- package/resources/qbd/invoices.d.ts.map +1 -1
- package/resources/qbd/invoices.js.map +1 -1
- package/resources/qbd/invoices.mjs.map +1 -1
- package/resources/qbd/item-receipts.d.ts +4 -2
- package/resources/qbd/item-receipts.d.ts.map +1 -1
- package/resources/qbd/item-receipts.js.map +1 -1
- package/resources/qbd/item-receipts.mjs.map +1 -1
- package/resources/qbd/purchase-orders.d.ts +4 -2
- package/resources/qbd/purchase-orders.d.ts.map +1 -1
- package/resources/qbd/purchase-orders.js.map +1 -1
- package/resources/qbd/purchase-orders.mjs.map +1 -1
- package/resources/qbd/receive-payments.d.ts +8 -4
- package/resources/qbd/receive-payments.d.ts.map +1 -1
- package/resources/qbd/receive-payments.js.map +1 -1
- package/resources/qbd/receive-payments.mjs.map +1 -1
- package/resources/qbd/sales-orders.d.ts +4 -2
- package/resources/qbd/sales-orders.d.ts.map +1 -1
- package/resources/qbd/sales-orders.js.map +1 -1
- package/resources/qbd/sales-orders.mjs.map +1 -1
- package/resources/qbd/transactions.d.ts +4 -2
- package/resources/qbd/transactions.d.ts.map +1 -1
- package/resources/qbd/transactions.js.map +1 -1
- package/resources/qbd/transactions.mjs.map +1 -1
- package/resources/qbd/vendor-credits.d.ts +4 -2
- package/resources/qbd/vendor-credits.d.ts.map +1 -1
- package/resources/qbd/vendor-credits.js.map +1 -1
- package/resources/qbd/vendor-credits.mjs.map +1 -1
- package/src/resources/qbd/bill-check-payments.ts +8 -58
- package/src/resources/qbd/bill-credit-card-payments.ts +8 -58
- package/src/resources/qbd/bills.ts +5 -30
- package/src/resources/qbd/checks.ts +5 -30
- package/src/resources/qbd/credit-memos.ts +5 -30
- package/src/resources/qbd/employees.ts +8 -21
- package/src/resources/qbd/estimates.ts +5 -30
- package/src/resources/qbd/inventory-adjustments.ts +1 -1
- package/src/resources/qbd/invoices.ts +5 -30
- package/src/resources/qbd/item-receipts.ts +5 -30
- package/src/resources/qbd/purchase-orders.ts +5 -30
- package/src/resources/qbd/receive-payments.ts +9 -59
- package/src/resources/qbd/sales-orders.ts +5 -30
- package/src/resources/qbd/transactions.ts +4 -29
- package/src/resources/qbd/vendor-credits.ts +5 -30
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1498,36 +1498,11 @@ export namespace ItemReceipt {
|
|
|
1498
1498
|
transactionDate: string;
|
|
1499
1499
|
|
|
1500
1500
|
/**
|
|
1501
|
-
* The type of transaction for this linked transaction.
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
| 'bill_payment_check'
|
|
1507
|
-
| 'bill_payment_credit_card'
|
|
1508
|
-
| 'build_assembly'
|
|
1509
|
-
| 'charge'
|
|
1510
|
-
| 'check'
|
|
1511
|
-
| 'credit_card_charge'
|
|
1512
|
-
| 'credit_card_credit'
|
|
1513
|
-
| 'credit_memo'
|
|
1514
|
-
| 'deposit'
|
|
1515
|
-
| 'estimate'
|
|
1516
|
-
| 'inventory_adjustment'
|
|
1517
|
-
| 'invoice'
|
|
1518
|
-
| 'item_receipt'
|
|
1519
|
-
| 'journal_entry'
|
|
1520
|
-
| 'liability_adjustment'
|
|
1521
|
-
| 'paycheck'
|
|
1522
|
-
| 'payroll_liability_check'
|
|
1523
|
-
| 'purchase_order'
|
|
1524
|
-
| 'receive_payment'
|
|
1525
|
-
| 'sales_order'
|
|
1526
|
-
| 'sales_receipt'
|
|
1527
|
-
| 'sales_tax_payment_check'
|
|
1528
|
-
| 'transfer'
|
|
1529
|
-
| 'vendor_credit'
|
|
1530
|
-
| 'ytd_adjustment';
|
|
1501
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1502
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1503
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1504
|
+
*/
|
|
1505
|
+
transactionType: string;
|
|
1531
1506
|
}
|
|
1532
1507
|
|
|
1533
1508
|
/**
|
|
@@ -1392,36 +1392,11 @@ export namespace PurchaseOrder {
|
|
|
1392
1392
|
transactionDate: string;
|
|
1393
1393
|
|
|
1394
1394
|
/**
|
|
1395
|
-
* The type of transaction for this linked transaction.
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
| 'bill_payment_check'
|
|
1401
|
-
| 'bill_payment_credit_card'
|
|
1402
|
-
| 'build_assembly'
|
|
1403
|
-
| 'charge'
|
|
1404
|
-
| 'check'
|
|
1405
|
-
| 'credit_card_charge'
|
|
1406
|
-
| 'credit_card_credit'
|
|
1407
|
-
| 'credit_memo'
|
|
1408
|
-
| 'deposit'
|
|
1409
|
-
| 'estimate'
|
|
1410
|
-
| 'inventory_adjustment'
|
|
1411
|
-
| 'invoice'
|
|
1412
|
-
| 'item_receipt'
|
|
1413
|
-
| 'journal_entry'
|
|
1414
|
-
| 'liability_adjustment'
|
|
1415
|
-
| 'paycheck'
|
|
1416
|
-
| 'payroll_liability_check'
|
|
1417
|
-
| 'purchase_order'
|
|
1418
|
-
| 'receive_payment'
|
|
1419
|
-
| 'sales_order'
|
|
1420
|
-
| 'sales_receipt'
|
|
1421
|
-
| 'sales_tax_payment_check'
|
|
1422
|
-
| 'transfer'
|
|
1423
|
-
| 'vendor_credit'
|
|
1424
|
-
| 'ytd_adjustment';
|
|
1395
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1396
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1397
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1398
|
+
*/
|
|
1399
|
+
transactionType: string;
|
|
1425
1400
|
}
|
|
1426
1401
|
|
|
1427
1402
|
/**
|
|
@@ -344,36 +344,11 @@ export namespace ReceivePayment {
|
|
|
344
344
|
transactionId: string;
|
|
345
345
|
|
|
346
346
|
/**
|
|
347
|
-
* The type of transaction for this receivable transaction.
|
|
347
|
+
* The type of transaction for this receivable transaction. The output for this
|
|
348
|
+
* field is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
349
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
348
350
|
*/
|
|
349
|
-
transactionType:
|
|
350
|
-
| 'ar_refund_credit_card'
|
|
351
|
-
| 'bill'
|
|
352
|
-
| 'bill_payment_check'
|
|
353
|
-
| 'bill_payment_credit_card'
|
|
354
|
-
| 'build_assembly'
|
|
355
|
-
| 'charge'
|
|
356
|
-
| 'check'
|
|
357
|
-
| 'credit_card_charge'
|
|
358
|
-
| 'credit_card_credit'
|
|
359
|
-
| 'credit_memo'
|
|
360
|
-
| 'deposit'
|
|
361
|
-
| 'estimate'
|
|
362
|
-
| 'inventory_adjustment'
|
|
363
|
-
| 'invoice'
|
|
364
|
-
| 'item_receipt'
|
|
365
|
-
| 'journal_entry'
|
|
366
|
-
| 'liability_adjustment'
|
|
367
|
-
| 'paycheck'
|
|
368
|
-
| 'payroll_liability_check'
|
|
369
|
-
| 'purchase_order'
|
|
370
|
-
| 'receive_payment'
|
|
371
|
-
| 'sales_order'
|
|
372
|
-
| 'sales_receipt'
|
|
373
|
-
| 'sales_tax_payment_check'
|
|
374
|
-
| 'transfer'
|
|
375
|
-
| 'vendor_credit'
|
|
376
|
-
| 'ytd_adjustment';
|
|
351
|
+
transactionType: string;
|
|
377
352
|
}
|
|
378
353
|
|
|
379
354
|
export namespace AppliedToTransaction {
|
|
@@ -453,36 +428,11 @@ export namespace ReceivePayment {
|
|
|
453
428
|
transactionDate: string;
|
|
454
429
|
|
|
455
430
|
/**
|
|
456
|
-
* The type of transaction for this linked transaction.
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
| 'bill_payment_check'
|
|
462
|
-
| 'bill_payment_credit_card'
|
|
463
|
-
| 'build_assembly'
|
|
464
|
-
| 'charge'
|
|
465
|
-
| 'check'
|
|
466
|
-
| 'credit_card_charge'
|
|
467
|
-
| 'credit_card_credit'
|
|
468
|
-
| 'credit_memo'
|
|
469
|
-
| 'deposit'
|
|
470
|
-
| 'estimate'
|
|
471
|
-
| 'inventory_adjustment'
|
|
472
|
-
| 'invoice'
|
|
473
|
-
| 'item_receipt'
|
|
474
|
-
| 'journal_entry'
|
|
475
|
-
| 'liability_adjustment'
|
|
476
|
-
| 'paycheck'
|
|
477
|
-
| 'payroll_liability_check'
|
|
478
|
-
| 'purchase_order'
|
|
479
|
-
| 'receive_payment'
|
|
480
|
-
| 'sales_order'
|
|
481
|
-
| 'sales_receipt'
|
|
482
|
-
| 'sales_tax_payment_check'
|
|
483
|
-
| 'transfer'
|
|
484
|
-
| 'vendor_credit'
|
|
485
|
-
| 'ytd_adjustment';
|
|
431
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
432
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
433
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
434
|
+
*/
|
|
435
|
+
transactionType: string;
|
|
486
436
|
}
|
|
487
437
|
}
|
|
488
438
|
|
|
@@ -1488,36 +1488,11 @@ export namespace SalesOrder {
|
|
|
1488
1488
|
transactionDate: string;
|
|
1489
1489
|
|
|
1490
1490
|
/**
|
|
1491
|
-
* The type of transaction for this linked transaction.
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
| 'bill_payment_check'
|
|
1497
|
-
| 'bill_payment_credit_card'
|
|
1498
|
-
| 'build_assembly'
|
|
1499
|
-
| 'charge'
|
|
1500
|
-
| 'check'
|
|
1501
|
-
| 'credit_card_charge'
|
|
1502
|
-
| 'credit_card_credit'
|
|
1503
|
-
| 'credit_memo'
|
|
1504
|
-
| 'deposit'
|
|
1505
|
-
| 'estimate'
|
|
1506
|
-
| 'inventory_adjustment'
|
|
1507
|
-
| 'invoice'
|
|
1508
|
-
| 'item_receipt'
|
|
1509
|
-
| 'journal_entry'
|
|
1510
|
-
| 'liability_adjustment'
|
|
1511
|
-
| 'paycheck'
|
|
1512
|
-
| 'payroll_liability_check'
|
|
1513
|
-
| 'purchase_order'
|
|
1514
|
-
| 'receive_payment'
|
|
1515
|
-
| 'sales_order'
|
|
1516
|
-
| 'sales_receipt'
|
|
1517
|
-
| 'sales_tax_payment_check'
|
|
1518
|
-
| 'transfer'
|
|
1519
|
-
| 'vendor_credit'
|
|
1520
|
-
| 'ytd_adjustment';
|
|
1491
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1492
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1493
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1494
|
+
*/
|
|
1495
|
+
transactionType: string;
|
|
1521
1496
|
}
|
|
1522
1497
|
|
|
1523
1498
|
/**
|
|
@@ -137,36 +137,11 @@ export interface Transaction {
|
|
|
137
137
|
transactionLineId: string | null;
|
|
138
138
|
|
|
139
139
|
/**
|
|
140
|
-
* The type of transaction.
|
|
140
|
+
* The type of transaction. The output for this field is a raw string, not an enum,
|
|
141
|
+
* because in rare cases QuickBooks Desktop may return a value outside its own
|
|
142
|
+
* schema, which we pass through unchanged.
|
|
141
143
|
*/
|
|
142
|
-
transactionType:
|
|
143
|
-
| 'ar_refund_credit_card'
|
|
144
|
-
| 'bill'
|
|
145
|
-
| 'bill_payment_check'
|
|
146
|
-
| 'bill_payment_credit_card'
|
|
147
|
-
| 'build_assembly'
|
|
148
|
-
| 'charge'
|
|
149
|
-
| 'check'
|
|
150
|
-
| 'credit_card_charge'
|
|
151
|
-
| 'credit_card_credit'
|
|
152
|
-
| 'credit_memo'
|
|
153
|
-
| 'deposit'
|
|
154
|
-
| 'estimate'
|
|
155
|
-
| 'inventory_adjustment'
|
|
156
|
-
| 'invoice'
|
|
157
|
-
| 'item_receipt'
|
|
158
|
-
| 'journal_entry'
|
|
159
|
-
| 'liability_adjustment'
|
|
160
|
-
| 'paycheck'
|
|
161
|
-
| 'payroll_liability_check'
|
|
162
|
-
| 'purchase_order'
|
|
163
|
-
| 'receive_payment'
|
|
164
|
-
| 'sales_order'
|
|
165
|
-
| 'sales_receipt'
|
|
166
|
-
| 'sales_tax_payment_check'
|
|
167
|
-
| 'transfer'
|
|
168
|
-
| 'vendor_credit'
|
|
169
|
-
| 'ytd_adjustment';
|
|
144
|
+
transactionType: string;
|
|
170
145
|
|
|
171
146
|
/**
|
|
172
147
|
* The date and time when this transaction was last updated, in ISO 8601 format
|
|
@@ -1481,36 +1481,11 @@ export namespace VendorCredit {
|
|
|
1481
1481
|
transactionDate: string;
|
|
1482
1482
|
|
|
1483
1483
|
/**
|
|
1484
|
-
* The type of transaction for this linked transaction.
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
| 'bill_payment_check'
|
|
1490
|
-
| 'bill_payment_credit_card'
|
|
1491
|
-
| 'build_assembly'
|
|
1492
|
-
| 'charge'
|
|
1493
|
-
| 'check'
|
|
1494
|
-
| 'credit_card_charge'
|
|
1495
|
-
| 'credit_card_credit'
|
|
1496
|
-
| 'credit_memo'
|
|
1497
|
-
| 'deposit'
|
|
1498
|
-
| 'estimate'
|
|
1499
|
-
| 'inventory_adjustment'
|
|
1500
|
-
| 'invoice'
|
|
1501
|
-
| 'item_receipt'
|
|
1502
|
-
| 'journal_entry'
|
|
1503
|
-
| 'liability_adjustment'
|
|
1504
|
-
| 'paycheck'
|
|
1505
|
-
| 'payroll_liability_check'
|
|
1506
|
-
| 'purchase_order'
|
|
1507
|
-
| 'receive_payment'
|
|
1508
|
-
| 'sales_order'
|
|
1509
|
-
| 'sales_receipt'
|
|
1510
|
-
| 'sales_tax_payment_check'
|
|
1511
|
-
| 'transfer'
|
|
1512
|
-
| 'vendor_credit'
|
|
1513
|
-
| 'ytd_adjustment';
|
|
1484
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1485
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1486
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1487
|
+
*/
|
|
1488
|
+
transactionType: string;
|
|
1514
1489
|
}
|
|
1515
1490
|
|
|
1516
1491
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '12.
|
|
1
|
+
export const VERSION = '12.32.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "12.
|
|
1
|
+
export declare const VERSION = "12.32.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '12.
|
|
1
|
+
export const VERSION = '12.32.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|