conductor-node 12.31.0 → 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 +22 -0
- package/core.js +3 -3
- package/core.js.map +1 -1
- package/core.mjs +3 -3
- package/core.mjs.map +1 -1
- 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/core.ts +3 -3
- 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
|
@@ -296,36 +296,11 @@ export namespace BillCreditCardPayment {
|
|
|
296
296
|
transactionId: string;
|
|
297
297
|
|
|
298
298
|
/**
|
|
299
|
-
* The type of transaction for this receivable transaction.
|
|
299
|
+
* The type of transaction for this receivable transaction. The output for this
|
|
300
|
+
* field is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
301
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
300
302
|
*/
|
|
301
|
-
transactionType:
|
|
302
|
-
| 'ar_refund_credit_card'
|
|
303
|
-
| 'bill'
|
|
304
|
-
| 'bill_payment_check'
|
|
305
|
-
| 'bill_payment_credit_card'
|
|
306
|
-
| 'build_assembly'
|
|
307
|
-
| 'charge'
|
|
308
|
-
| 'check'
|
|
309
|
-
| 'credit_card_charge'
|
|
310
|
-
| 'credit_card_credit'
|
|
311
|
-
| 'credit_memo'
|
|
312
|
-
| 'deposit'
|
|
313
|
-
| 'estimate'
|
|
314
|
-
| 'inventory_adjustment'
|
|
315
|
-
| 'invoice'
|
|
316
|
-
| 'item_receipt'
|
|
317
|
-
| 'journal_entry'
|
|
318
|
-
| 'liability_adjustment'
|
|
319
|
-
| 'paycheck'
|
|
320
|
-
| 'payroll_liability_check'
|
|
321
|
-
| 'purchase_order'
|
|
322
|
-
| 'receive_payment'
|
|
323
|
-
| 'sales_order'
|
|
324
|
-
| 'sales_receipt'
|
|
325
|
-
| 'sales_tax_payment_check'
|
|
326
|
-
| 'transfer'
|
|
327
|
-
| 'vendor_credit'
|
|
328
|
-
| 'ytd_adjustment';
|
|
303
|
+
transactionType: string;
|
|
329
304
|
}
|
|
330
305
|
|
|
331
306
|
export namespace AppliedToTransaction {
|
|
@@ -405,36 +380,11 @@ export namespace BillCreditCardPayment {
|
|
|
405
380
|
transactionDate: string;
|
|
406
381
|
|
|
407
382
|
/**
|
|
408
|
-
* The type of transaction for this linked transaction.
|
|
383
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
384
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
385
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
409
386
|
*/
|
|
410
|
-
transactionType:
|
|
411
|
-
| 'ar_refund_credit_card'
|
|
412
|
-
| 'bill'
|
|
413
|
-
| 'bill_payment_check'
|
|
414
|
-
| 'bill_payment_credit_card'
|
|
415
|
-
| 'build_assembly'
|
|
416
|
-
| 'charge'
|
|
417
|
-
| 'check'
|
|
418
|
-
| 'credit_card_charge'
|
|
419
|
-
| 'credit_card_credit'
|
|
420
|
-
| 'credit_memo'
|
|
421
|
-
| 'deposit'
|
|
422
|
-
| 'estimate'
|
|
423
|
-
| 'inventory_adjustment'
|
|
424
|
-
| 'invoice'
|
|
425
|
-
| 'item_receipt'
|
|
426
|
-
| 'journal_entry'
|
|
427
|
-
| 'liability_adjustment'
|
|
428
|
-
| 'paycheck'
|
|
429
|
-
| 'payroll_liability_check'
|
|
430
|
-
| 'purchase_order'
|
|
431
|
-
| 'receive_payment'
|
|
432
|
-
| 'sales_order'
|
|
433
|
-
| 'sales_receipt'
|
|
434
|
-
| 'sales_tax_payment_check'
|
|
435
|
-
| 'transfer'
|
|
436
|
-
| 'vendor_credit'
|
|
437
|
-
| 'ytd_adjustment';
|
|
387
|
+
transactionType: string;
|
|
438
388
|
}
|
|
439
389
|
}
|
|
440
390
|
|
|
@@ -1492,36 +1492,11 @@ export namespace Bill {
|
|
|
1492
1492
|
transactionDate: string;
|
|
1493
1493
|
|
|
1494
1494
|
/**
|
|
1495
|
-
* The type of transaction for this linked transaction.
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
| 'bill_payment_check'
|
|
1501
|
-
| 'bill_payment_credit_card'
|
|
1502
|
-
| 'build_assembly'
|
|
1503
|
-
| 'charge'
|
|
1504
|
-
| 'check'
|
|
1505
|
-
| 'credit_card_charge'
|
|
1506
|
-
| 'credit_card_credit'
|
|
1507
|
-
| 'credit_memo'
|
|
1508
|
-
| 'deposit'
|
|
1509
|
-
| 'estimate'
|
|
1510
|
-
| 'inventory_adjustment'
|
|
1511
|
-
| 'invoice'
|
|
1512
|
-
| 'item_receipt'
|
|
1513
|
-
| 'journal_entry'
|
|
1514
|
-
| 'liability_adjustment'
|
|
1515
|
-
| 'paycheck'
|
|
1516
|
-
| 'payroll_liability_check'
|
|
1517
|
-
| 'purchase_order'
|
|
1518
|
-
| 'receive_payment'
|
|
1519
|
-
| 'sales_order'
|
|
1520
|
-
| 'sales_receipt'
|
|
1521
|
-
| 'sales_tax_payment_check'
|
|
1522
|
-
| 'transfer'
|
|
1523
|
-
| 'vendor_credit'
|
|
1524
|
-
| 'ytd_adjustment';
|
|
1495
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1496
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1497
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1498
|
+
*/
|
|
1499
|
+
transactionType: string;
|
|
1525
1500
|
}
|
|
1526
1501
|
|
|
1527
1502
|
/**
|
|
@@ -1549,36 +1549,11 @@ export namespace Check {
|
|
|
1549
1549
|
transactionDate: string;
|
|
1550
1550
|
|
|
1551
1551
|
/**
|
|
1552
|
-
* The type of transaction for this linked transaction.
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
| 'bill_payment_check'
|
|
1558
|
-
| 'bill_payment_credit_card'
|
|
1559
|
-
| 'build_assembly'
|
|
1560
|
-
| 'charge'
|
|
1561
|
-
| 'check'
|
|
1562
|
-
| 'credit_card_charge'
|
|
1563
|
-
| 'credit_card_credit'
|
|
1564
|
-
| 'credit_memo'
|
|
1565
|
-
| 'deposit'
|
|
1566
|
-
| 'estimate'
|
|
1567
|
-
| 'inventory_adjustment'
|
|
1568
|
-
| 'invoice'
|
|
1569
|
-
| 'item_receipt'
|
|
1570
|
-
| 'journal_entry'
|
|
1571
|
-
| 'liability_adjustment'
|
|
1572
|
-
| 'paycheck'
|
|
1573
|
-
| 'payroll_liability_check'
|
|
1574
|
-
| 'purchase_order'
|
|
1575
|
-
| 'receive_payment'
|
|
1576
|
-
| 'sales_order'
|
|
1577
|
-
| 'sales_receipt'
|
|
1578
|
-
| 'sales_tax_payment_check'
|
|
1579
|
-
| 'transfer'
|
|
1580
|
-
| 'vendor_credit'
|
|
1581
|
-
| 'ytd_adjustment';
|
|
1552
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1553
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1554
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1555
|
+
*/
|
|
1556
|
+
transactionType: string;
|
|
1582
1557
|
}
|
|
1583
1558
|
|
|
1584
1559
|
/**
|
|
@@ -1476,36 +1476,11 @@ export namespace CreditMemo {
|
|
|
1476
1476
|
transactionDate: string;
|
|
1477
1477
|
|
|
1478
1478
|
/**
|
|
1479
|
-
* The type of transaction for this linked transaction.
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
| 'bill_payment_check'
|
|
1485
|
-
| 'bill_payment_credit_card'
|
|
1486
|
-
| 'build_assembly'
|
|
1487
|
-
| 'charge'
|
|
1488
|
-
| 'check'
|
|
1489
|
-
| 'credit_card_charge'
|
|
1490
|
-
| 'credit_card_credit'
|
|
1491
|
-
| 'credit_memo'
|
|
1492
|
-
| 'deposit'
|
|
1493
|
-
| 'estimate'
|
|
1494
|
-
| 'inventory_adjustment'
|
|
1495
|
-
| 'invoice'
|
|
1496
|
-
| 'item_receipt'
|
|
1497
|
-
| 'journal_entry'
|
|
1498
|
-
| 'liability_adjustment'
|
|
1499
|
-
| 'paycheck'
|
|
1500
|
-
| 'payroll_liability_check'
|
|
1501
|
-
| 'purchase_order'
|
|
1502
|
-
| 'receive_payment'
|
|
1503
|
-
| 'sales_order'
|
|
1504
|
-
| 'sales_receipt'
|
|
1505
|
-
| 'sales_tax_payment_check'
|
|
1506
|
-
| 'transfer'
|
|
1507
|
-
| 'vendor_credit'
|
|
1508
|
-
| 'ytd_adjustment';
|
|
1479
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1480
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1481
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1482
|
+
*/
|
|
1483
|
+
transactionType: string;
|
|
1509
1484
|
}
|
|
1510
1485
|
|
|
1511
1486
|
/**
|
|
@@ -474,14 +474,15 @@ export namespace Employee {
|
|
|
474
474
|
postalCode: string | null;
|
|
475
475
|
|
|
476
476
|
/**
|
|
477
|
-
* The state
|
|
477
|
+
* The U.S. state of the employee address. QuickBooks requires this field to be a
|
|
478
|
+
* U.S. state abbreviation (e.g., "CA" for California). See enum for all possible
|
|
479
|
+
* values.
|
|
478
480
|
*
|
|
479
|
-
* **NOTE:** This `state` field
|
|
480
|
-
*
|
|
481
|
-
*
|
|
482
|
-
*
|
|
483
|
-
*
|
|
484
|
-
* the enum; hence, we use a plain string on return to support unexpected values.
|
|
481
|
+
* **NOTE:** This `state` field stays enum-constrained when creating or updating an
|
|
482
|
+
* employee because QuickBooks Desktop rejects non-standard values on input. In
|
|
483
|
+
* responses, though, we've seen QuickBooks return values outside its own enum
|
|
484
|
+
* (like 'ON'), so Conductor surfaces the raw QuickBooks string unchanged instead
|
|
485
|
+
* of enforcing the enum.
|
|
485
486
|
*/
|
|
486
487
|
state: string | null;
|
|
487
488
|
}
|
|
@@ -1228,13 +1229,6 @@ export namespace EmployeeCreateParams {
|
|
|
1228
1229
|
* The U.S. state of the employee address. QuickBooks requires this field to be a
|
|
1229
1230
|
* U.S. state abbreviation (e.g., "CA" for California). See enum for all possible
|
|
1230
1231
|
* values.
|
|
1231
|
-
*
|
|
1232
|
-
* **NOTE:** This `state` field is an enum when creating or updating an employee,
|
|
1233
|
-
* but a plain string when returning an employee. On input, QuickBooks Desktop
|
|
1234
|
-
* rejects any non-standard state values for employee addresses; hence, we must use
|
|
1235
|
-
* an enum for the input. However, when returning an employee address, we have seen
|
|
1236
|
-
* QuickBooks return non-standard state values (like 'ON') that do not conform to
|
|
1237
|
-
* the enum; hence, we use a plain string on return to support unexpected values.
|
|
1238
1232
|
*/
|
|
1239
1233
|
state?:
|
|
1240
1234
|
| 'none'
|
|
@@ -1896,13 +1890,6 @@ export namespace EmployeeUpdateParams {
|
|
|
1896
1890
|
* The U.S. state of the employee address. QuickBooks requires this field to be a
|
|
1897
1891
|
* U.S. state abbreviation (e.g., "CA" for California). See enum for all possible
|
|
1898
1892
|
* values.
|
|
1899
|
-
*
|
|
1900
|
-
* **NOTE:** This `state` field is an enum when creating or updating an employee,
|
|
1901
|
-
* but a plain string when returning an employee. On input, QuickBooks Desktop
|
|
1902
|
-
* rejects any non-standard state values for employee addresses; hence, we must use
|
|
1903
|
-
* an enum for the input. However, when returning an employee address, we have seen
|
|
1904
|
-
* QuickBooks return non-standard state values (like 'ON') that do not conform to
|
|
1905
|
-
* the enum; hence, we use a plain string on return to support unexpected values.
|
|
1906
1893
|
*/
|
|
1907
1894
|
state?:
|
|
1908
1895
|
| 'none'
|
|
@@ -1409,36 +1409,11 @@ export namespace Estimate {
|
|
|
1409
1409
|
transactionDate: string;
|
|
1410
1410
|
|
|
1411
1411
|
/**
|
|
1412
|
-
* The type of transaction for this linked transaction.
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
| 'bill_payment_check'
|
|
1418
|
-
| 'bill_payment_credit_card'
|
|
1419
|
-
| 'build_assembly'
|
|
1420
|
-
| 'charge'
|
|
1421
|
-
| 'check'
|
|
1422
|
-
| 'credit_card_charge'
|
|
1423
|
-
| 'credit_card_credit'
|
|
1424
|
-
| 'credit_memo'
|
|
1425
|
-
| 'deposit'
|
|
1426
|
-
| 'estimate'
|
|
1427
|
-
| 'inventory_adjustment'
|
|
1428
|
-
| 'invoice'
|
|
1429
|
-
| 'item_receipt'
|
|
1430
|
-
| 'journal_entry'
|
|
1431
|
-
| 'liability_adjustment'
|
|
1432
|
-
| 'paycheck'
|
|
1433
|
-
| 'payroll_liability_check'
|
|
1434
|
-
| 'purchase_order'
|
|
1435
|
-
| 'receive_payment'
|
|
1436
|
-
| 'sales_order'
|
|
1437
|
-
| 'sales_receipt'
|
|
1438
|
-
| 'sales_tax_payment_check'
|
|
1439
|
-
| 'transfer'
|
|
1440
|
-
| 'vendor_credit'
|
|
1441
|
-
| 'ytd_adjustment';
|
|
1412
|
+
* The type of transaction for this linked transaction. The output for this field
|
|
1413
|
+
* is a raw string, not an enum, because in rare cases QuickBooks Desktop may
|
|
1414
|
+
* return a value outside its own schema, which we pass through unchanged.
|
|
1415
|
+
*/
|
|
1416
|
+
transactionType: string;
|
|
1442
1417
|
}
|
|
1443
1418
|
|
|
1444
1419
|
/**
|
|
@@ -375,7 +375,7 @@ export namespace InventoryAdjustment {
|
|
|
375
375
|
/**
|
|
376
376
|
* The inventory item associated with this inventory adjustment line.
|
|
377
377
|
*/
|
|
378
|
-
item: Line.Item;
|
|
378
|
+
item: Line.Item | null;
|
|
379
379
|
|
|
380
380
|
/**
|
|
381
381
|
* The lot number of the item associated with this inventory adjustment line. Used
|
|
@@ -1498,36 +1498,11 @@ export namespace Invoice {
|
|
|
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
|
/**
|
|
@@ -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
|