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.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/qbd/bill-check-payments.d.mts +1 -1
- package/resources/qbd/bill-check-payments.d.mts.map +1 -1
- package/resources/qbd/bill-check-payments.d.ts +1 -1
- package/resources/qbd/bill-check-payments.d.ts.map +1 -1
- package/resources/qbd/bill-credit-card-payments.d.mts +1 -1
- package/resources/qbd/bill-credit-card-payments.d.mts.map +1 -1
- package/resources/qbd/bill-credit-card-payments.d.ts +1 -1
- package/resources/qbd/bill-credit-card-payments.d.ts.map +1 -1
- package/resources/qbd/bills-to-pay.d.mts +2 -2
- package/resources/qbd/bills-to-pay.d.mts.map +1 -1
- package/resources/qbd/bills-to-pay.d.ts +2 -2
- package/resources/qbd/bills-to-pay.d.ts.map +1 -1
- package/resources/qbd/company.d.mts +1 -1
- package/resources/qbd/company.d.mts.map +1 -1
- package/resources/qbd/company.d.ts +1 -1
- package/resources/qbd/company.d.ts.map +1 -1
- package/resources/qbd/credit-card-refunds.d.mts +1 -1
- package/resources/qbd/credit-card-refunds.d.mts.map +1 -1
- package/resources/qbd/credit-card-refunds.d.ts +1 -1
- package/resources/qbd/credit-card-refunds.d.ts.map +1 -1
- package/resources/qbd/deposits.d.mts +1 -1
- package/resources/qbd/deposits.d.mts.map +1 -1
- package/resources/qbd/deposits.d.ts +1 -1
- package/resources/qbd/deposits.d.ts.map +1 -1
- package/resources/qbd/payments-to-deposit.d.mts +1 -1
- package/resources/qbd/payments-to-deposit.d.mts.map +1 -1
- package/resources/qbd/payments-to-deposit.d.ts +1 -1
- package/resources/qbd/payments-to-deposit.d.ts.map +1 -1
- package/resources/qbd/receive-payments.d.mts +1 -1
- package/resources/qbd/receive-payments.d.mts.map +1 -1
- package/resources/qbd/receive-payments.d.ts +1 -1
- package/resources/qbd/receive-payments.d.ts.map +1 -1
- package/resources/qbd/transactions.d.mts +1 -1
- package/resources/qbd/transactions.d.mts.map +1 -1
- package/resources/qbd/transactions.d.ts +1 -1
- package/resources/qbd/transactions.d.ts.map +1 -1
- package/resources/qbd/vendors.d.mts +3 -3
- package/resources/qbd/vendors.d.mts.map +1 -1
- package/resources/qbd/vendors.d.ts +3 -3
- package/resources/qbd/vendors.d.ts.map +1 -1
- package/src/resources/qbd/bill-check-payments.ts +2 -1
- package/src/resources/qbd/bill-credit-card-payments.ts +2 -1
- package/src/resources/qbd/bills-to-pay.ts +4 -2
- package/src/resources/qbd/company.ts +2 -2
- package/src/resources/qbd/credit-card-refunds.ts +2 -1
- package/src/resources/qbd/deposits.ts +1 -0
- package/src/resources/qbd/payments-to-deposit.ts +2 -1
- package/src/resources/qbd/receive-payments.ts +2 -1
- package/src/resources/qbd/transactions.ts +2 -1
- package/src/resources/qbd/vendors.ts +3 -3
- 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
|
@@ -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: '
|
|
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?: '
|
|
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?: '
|
|
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.
|
|
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.
|
|
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.
|
|
1
|
+
export declare const VERSION = "14.22.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '14.
|
|
1
|
+
export const VERSION = '14.22.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|