taxtank-core 0.30.78 → 0.30.80
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/esm2020/lib/models/chart-accounts/chart-accounts.mjs +4 -1
- package/esm2020/lib/models/endpoint/endpoints.const.mjs +2 -1
- package/fesm2015/taxtank-core.mjs +4 -0
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +4 -0
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/models/chart-accounts/chart-accounts.d.ts +1 -0
- package/package.json +1 -1
|
@@ -3215,6 +3215,9 @@ class ChartAccounts extends ChartAccounts$1 {
|
|
|
3215
3215
|
isDividends() {
|
|
3216
3216
|
return this.id === ChartAccountsListEnum.DIVIDENDS;
|
|
3217
3217
|
}
|
|
3218
|
+
isHomeOfficeWorkHours() {
|
|
3219
|
+
return this.id === ChartAccountsListEnum.HOME_OFFICE_WORK_HOURS;
|
|
3220
|
+
}
|
|
3218
3221
|
}
|
|
3219
3222
|
/**
|
|
3220
3223
|
* Australian GST percent value (VAT)
|
|
@@ -9320,6 +9323,7 @@ const ENDPOINTS = {
|
|
|
9320
9323
|
BANK_TRANSACTIONS_IMPORT_POST: new Endpoint('POST', '\\/bank-transactions\\/\\d+\\/import'),
|
|
9321
9324
|
BASIQ_ACCOUNTS_GET: new Endpoint('GET', '\\/basiq\\/accounts'),
|
|
9322
9325
|
BASIQ_TOKEN_GET: new Endpoint('GET', '\\/basiq\\/tokens'),
|
|
9326
|
+
BASIQ_DELETE: new Endpoint('PUT', '\\/bank-connections/\\d+\\/remove-basiq'),
|
|
9323
9327
|
BORROWING_EXPENSES_GET: new Endpoint('GET', '\\/borrowing-expenses'),
|
|
9324
9328
|
CHARTS_INCOME_GET: new Endpoint('GET', '\\/charts\\/\\incomes'),
|
|
9325
9329
|
CHARTS_EXPENSES_GET: new Endpoint('GET', '\\/charts\\/\\expenses'),
|