conductor-node 14.21.0 → 14.22.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 +8 -0
  2. package/package.json +1 -1
  3. package/resources/qbd/bill-check-payments.d.mts +1 -1
  4. package/resources/qbd/bill-check-payments.d.mts.map +1 -1
  5. package/resources/qbd/bill-check-payments.d.ts +1 -1
  6. package/resources/qbd/bill-check-payments.d.ts.map +1 -1
  7. package/resources/qbd/bill-credit-card-payments.d.mts +1 -1
  8. package/resources/qbd/bill-credit-card-payments.d.mts.map +1 -1
  9. package/resources/qbd/bill-credit-card-payments.d.ts +1 -1
  10. package/resources/qbd/bill-credit-card-payments.d.ts.map +1 -1
  11. package/resources/qbd/bills-to-pay.d.mts +2 -2
  12. package/resources/qbd/bills-to-pay.d.mts.map +1 -1
  13. package/resources/qbd/bills-to-pay.d.ts +2 -2
  14. package/resources/qbd/bills-to-pay.d.ts.map +1 -1
  15. package/resources/qbd/company.d.mts +1 -1
  16. package/resources/qbd/company.d.mts.map +1 -1
  17. package/resources/qbd/company.d.ts +1 -1
  18. package/resources/qbd/company.d.ts.map +1 -1
  19. package/resources/qbd/credit-card-refunds.d.mts +1 -1
  20. package/resources/qbd/credit-card-refunds.d.mts.map +1 -1
  21. package/resources/qbd/credit-card-refunds.d.ts +1 -1
  22. package/resources/qbd/credit-card-refunds.d.ts.map +1 -1
  23. package/resources/qbd/deposits.d.mts +1 -1
  24. package/resources/qbd/deposits.d.mts.map +1 -1
  25. package/resources/qbd/deposits.d.ts +1 -1
  26. package/resources/qbd/deposits.d.ts.map +1 -1
  27. package/resources/qbd/payments-to-deposit.d.mts +1 -1
  28. package/resources/qbd/payments-to-deposit.d.mts.map +1 -1
  29. package/resources/qbd/payments-to-deposit.d.ts +1 -1
  30. package/resources/qbd/payments-to-deposit.d.ts.map +1 -1
  31. package/resources/qbd/receive-payments.d.mts +1 -1
  32. package/resources/qbd/receive-payments.d.mts.map +1 -1
  33. package/resources/qbd/receive-payments.d.ts +1 -1
  34. package/resources/qbd/receive-payments.d.ts.map +1 -1
  35. package/resources/qbd/transactions.d.mts +1 -1
  36. package/resources/qbd/transactions.d.mts.map +1 -1
  37. package/resources/qbd/transactions.d.ts +1 -1
  38. package/resources/qbd/transactions.d.ts.map +1 -1
  39. package/resources/qbd/vendors.d.mts +3 -3
  40. package/resources/qbd/vendors.d.mts.map +1 -1
  41. package/resources/qbd/vendors.d.ts +3 -3
  42. package/resources/qbd/vendors.d.ts.map +1 -1
  43. package/src/resources/qbd/bill-check-payments.ts +2 -1
  44. package/src/resources/qbd/bill-credit-card-payments.ts +2 -1
  45. package/src/resources/qbd/bills-to-pay.ts +4 -2
  46. package/src/resources/qbd/company.ts +2 -2
  47. package/src/resources/qbd/credit-card-refunds.ts +2 -1
  48. package/src/resources/qbd/deposits.ts +1 -0
  49. package/src/resources/qbd/payments-to-deposit.ts +2 -1
  50. package/src/resources/qbd/receive-payments.ts +2 -1
  51. package/src/resources/qbd/transactions.ts +2 -1
  52. package/src/resources/qbd/vendors.ts +3 -3
  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
@@ -702,7 +702,8 @@ export namespace CreditCardRefund {
702
702
  | 'sales_tax_payment_check'
703
703
  | 'transfer'
704
704
  | 'vendor_credit'
705
- | 'ytd_adjustment';
705
+ | 'ytd_adjustment'
706
+ | 'unknown';
706
707
  }
707
708
 
708
709
  /**
@@ -488,6 +488,7 @@ export namespace Deposit {
488
488
  | 'transfer'
489
489
  | 'vendor_credit'
490
490
  | 'ytd_adjustment'
491
+ | 'unknown'
491
492
  | null;
492
493
  }
493
494
 
@@ -123,7 +123,8 @@ export interface PaymentToDeposit {
123
123
  | 'sales_tax_payment_check'
124
124
  | 'transfer'
125
125
  | 'vendor_credit'
126
- | 'ytd_adjustment';
126
+ | 'ytd_adjustment'
127
+ | 'unknown';
127
128
  }
128
129
 
129
130
  export namespace PaymentToDeposit {
@@ -382,7 +382,8 @@ export namespace ReceivePayment {
382
382
  | 'sales_tax_payment_check'
383
383
  | 'transfer'
384
384
  | 'vendor_credit'
385
- | 'ytd_adjustment';
385
+ | 'ytd_adjustment'
386
+ | 'unknown';
386
387
  }
387
388
 
388
389
  export namespace AppliedToTransaction {
@@ -170,7 +170,8 @@ export interface Transaction {
170
170
  | 'sales_tax_payment_check'
171
171
  | 'transfer'
172
172
  | 'vendor_credit'
173
- | 'ytd_adjustment';
173
+ | 'ytd_adjustment'
174
+ | 'unknown';
174
175
 
175
176
  /**
176
177
  * The date and time when this transaction was last updated, in ISO 8601 format
@@ -326,7 +326,7 @@ export interface Vendor {
326
326
  /**
327
327
  * The vendor's tax reporting period, for use in Canada or the UK.
328
328
  */
329
- reportingPeriod: 'annual' | 'monthly' | 'quarterly' | null;
329
+ reportingPeriod: 'monthly' | 'quarterly' | 'annual' | null;
330
330
 
331
331
  /**
332
332
  * The current QuickBooks-assigned revision number of this vendor object, which
@@ -1118,7 +1118,7 @@ export interface VendorCreateParams {
1118
1118
  /**
1119
1119
  * Body param: The vendor's tax reporting period, for use in Canada or the UK.
1120
1120
  */
1121
- reportingPeriod?: 'annual' | 'monthly' | 'quarterly';
1121
+ reportingPeriod?: 'monthly' | 'quarterly';
1122
1122
 
1123
1123
  /**
1124
1124
  * Body param: The account used for tracking taxes on sales for this vendor, for
@@ -1635,7 +1635,7 @@ export interface VendorUpdateParams {
1635
1635
  /**
1636
1636
  * Body param: The vendor's tax reporting period, for use in Canada or the UK.
1637
1637
  */
1638
- reportingPeriod?: 'annual' | 'monthly' | 'quarterly';
1638
+ reportingPeriod?: 'monthly' | 'quarterly';
1639
1639
 
1640
1640
  /**
1641
1641
  * Body param: The account used for tracking taxes on sales for this vendor, for
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '14.21.0'; // x-release-please-version
1
+ export const VERSION = '14.22.0'; // x-release-please-version
package/version.d.mts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "14.21.0";
1
+ export declare const VERSION = "14.22.0";
2
2
  //# sourceMappingURL=version.d.mts.map
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "14.21.0";
1
+ export declare const VERSION = "14.22.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '14.21.0'; // x-release-please-version
4
+ exports.VERSION = '14.22.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '14.21.0'; // x-release-please-version
1
+ export const VERSION = '14.22.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map