taxtank-core 0.33.115 → 0.33.117
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/README.md +5 -5
- package/esm2022/common/public-api.mjs +4 -0
- package/esm2022/common/src/common.module.mjs +38 -0
- package/esm2022/common/src/db/enums/index.mjs +2 -0
- package/esm2022/common/src/db/enums/user/index.mjs +2 -0
- package/esm2022/common/src/db/enums/user/user-roles.enum.mjs +18 -0
- package/esm2022/common/src/db/index.mjs +2 -0
- package/esm2022/common/src/interceptors/interceptors.module.mjs +28 -0
- package/esm2022/common/src/interceptors/jwt-interceptor.mjs +138 -0
- package/esm2022/common/src/services/auth/auth-messages.enum.mjs +5 -0
- package/esm2022/common/src/services/auth/auth-tokens.interface.mjs +2 -0
- package/esm2022/common/src/services/auth/auth.service.mjs +56 -0
- package/esm2022/common/src/services/auth/index.mjs +6 -0
- package/esm2022/common/src/services/auth/jwt-decoded.interface.mjs +2 -0
- package/esm2022/common/src/services/auth/jwt.service.mjs +52 -0
- package/esm2022/common/src/services/index.mjs +3 -0
- package/esm2022/common/src/services/mixpanel.service.mjs +60 -0
- package/esm2022/common/taxtank-core-common.mjs +5 -0
- package/esm2022/public-api.mjs +188 -0
- package/esm2022/src/lib/collections/account-setup-item.collection.mjs +12 -0
- package/esm2022/src/lib/collections/allocation-group.collection.mjs +9 -0
- package/esm2022/src/lib/collections/allocation-rule.collection.mjs +26 -0
- package/esm2022/src/lib/collections/asset-sale.collection.mjs +59 -0
- package/esm2022/src/lib/collections/bank-account.collection.mjs +120 -0
- package/esm2022/src/lib/collections/bank-transaction.collection.mjs +131 -0
- package/esm2022/src/lib/collections/chart-accounts/chart-accounts-value.collection.mjs +20 -0
- package/esm2022/src/lib/collections/chart-accounts/index.mjs +2 -0
- package/esm2022/src/lib/collections/chart-accounts.collection.mjs +26 -0
- package/esm2022/src/lib/collections/chat/chat.collection.mjs +8 -0
- package/esm2022/src/lib/collections/chat/index.mjs +4 -0
- package/esm2022/src/lib/collections/chat/message-document.collection.mjs +13 -0
- package/esm2022/src/lib/collections/chat/message.collection.mjs +31 -0
- package/esm2022/src/lib/collections/client-invite.collection.mjs +7 -0
- package/esm2022/src/lib/collections/client-movement.collection.mjs +48 -0
- package/esm2022/src/lib/collections/client-portfolio-report.collection.mjs +40 -0
- package/esm2022/src/lib/collections/client.collection.mjs +4 -0
- package/esm2022/src/lib/collections/collection-dictionary.mjs +124 -0
- package/esm2022/src/lib/collections/collection.mjs +176 -0
- package/esm2022/src/lib/collections/depreciation-forecast.collection.mjs +19 -0
- package/esm2022/src/lib/collections/depreciation.collection.mjs +112 -0
- package/esm2022/src/lib/collections/exportable.collection.mjs +19 -0
- package/esm2022/src/lib/collections/firm/employee-invite.collection.mjs +10 -0
- package/esm2022/src/lib/collections/firm/employee.collection.mjs +18 -0
- package/esm2022/src/lib/collections/firm/index.mjs +3 -0
- package/esm2022/src/lib/collections/holding/holding-sale.collection.mjs +41 -0
- package/esm2022/src/lib/collections/holding/holding-trade.collection.mjs +81 -0
- package/esm2022/src/lib/collections/holding/holding-type.collection.mjs +13 -0
- package/esm2022/src/lib/collections/holding/holding.collection.mjs +43 -0
- package/esm2022/src/lib/collections/holding/index.mjs +5 -0
- package/esm2022/src/lib/collections/home-office/home-office-claim.collection.mjs +7 -0
- package/esm2022/src/lib/collections/home-office/index.mjs +2 -0
- package/esm2022/src/lib/collections/income-source/income-source-forecast.collection.mjs +11 -0
- package/esm2022/src/lib/collections/income-source/income-source.collection.mjs +43 -0
- package/esm2022/src/lib/collections/income-source/index.mjs +3 -0
- package/esm2022/src/lib/collections/index.mjs +37 -0
- package/esm2022/src/lib/collections/loan/index.mjs +3 -0
- package/esm2022/src/lib/collections/loan/loan-payment.collection.mjs +40 -0
- package/esm2022/src/lib/collections/loan/loan.collection.mjs +46 -0
- package/esm2022/src/lib/collections/property/index.mjs +7 -0
- package/esm2022/src/lib/collections/property/property-category-movement.collection.mjs +23 -0
- package/esm2022/src/lib/collections/property/property-sale/index.mjs +3 -0
- package/esm2022/src/lib/collections/property/property-sale/property-sale-tax-exemption-meta-field.collection.mjs +17 -0
- package/esm2022/src/lib/collections/property/property-sale/property-sale.collection.mjs +13 -0
- package/esm2022/src/lib/collections/property/property-share.collection.mjs +20 -0
- package/esm2022/src/lib/collections/property/property-valuation.collection.mjs +14 -0
- package/esm2022/src/lib/collections/property/property.collection.mjs +113 -0
- package/esm2022/src/lib/collections/property/tax-exemption.collection.mjs +11 -0
- package/esm2022/src/lib/collections/report/depreciation/depreciation-lvp-report-item.collection.mjs +12 -0
- package/esm2022/src/lib/collections/report/depreciation/depreciation-report-item.collection.mjs +12 -0
- package/esm2022/src/lib/collections/report/income-expense/transaction-report-item.collection.mjs +30 -0
- package/esm2022/src/lib/collections/report/index.mjs +8 -0
- package/esm2022/src/lib/collections/report/property/property-report-item-depreciation.collection.mjs +21 -0
- package/esm2022/src/lib/collections/report/property/property-report-item-transaction.collection.mjs +21 -0
- package/esm2022/src/lib/collections/report/property/property-report-item.collection.mjs +13 -0
- package/esm2022/src/lib/collections/report/vehicle-expense/vehicle-expense.collection.mjs +17 -0
- package/esm2022/src/lib/collections/sole/index.mjs +4 -0
- package/esm2022/src/lib/collections/sole/sole-business-loss.collection.mjs +41 -0
- package/esm2022/src/lib/collections/sole/sole-invoice-item.collection.mjs +10 -0
- package/esm2022/src/lib/collections/sole/sole-invoice.collection.mjs +40 -0
- package/esm2022/src/lib/collections/subscription/index.mjs +5 -0
- package/esm2022/src/lib/collections/subscription/service-price.collection.mjs +50 -0
- package/esm2022/src/lib/collections/subscription/service-product.collection.mjs +11 -0
- package/esm2022/src/lib/collections/subscription/service-subscription.collection.mjs +58 -0
- package/esm2022/src/lib/collections/subscription/subscription-item.collection.mjs +17 -0
- package/esm2022/src/lib/collections/tax-review.collection.mjs +47 -0
- package/esm2022/src/lib/collections/tax-summary/index.mjs +3 -0
- package/esm2022/src/lib/collections/tax-summary/report-item.collection.mjs +101 -0
- package/esm2022/src/lib/collections/tax-summary/tax-return-categories.const.mjs +113 -0
- package/esm2022/src/lib/collections/transaction/index.mjs +4 -0
- package/esm2022/src/lib/collections/transaction/transaction-allocation.collection.mjs +39 -0
- package/esm2022/src/lib/collections/transaction/transaction-base.collection.mjs +4 -0
- package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +235 -0
- package/esm2022/src/lib/collections/user/user.collection.mjs +4 -0
- package/esm2022/src/lib/collections/user-event-setting.collection.mjs +10 -0
- package/esm2022/src/lib/collections/user-event-type-collection.mjs +11 -0
- package/esm2022/src/lib/collections/vehicle/best-vehicle-logbook.collection.mjs +94 -0
- package/esm2022/src/lib/collections/vehicle/index.mjs +4 -0
- package/esm2022/src/lib/collections/vehicle/vehicle-claim.collection.mjs +25 -0
- package/esm2022/src/lib/collections/vehicle/vehicle-logbook.collection.mjs +43 -0
- package/esm2022/src/lib/core.module.mjs +25 -0
- package/esm2022/src/lib/db/Enums/address-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/annual-frequency.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/bank/allocation-rule/allocation-rule-condition-comparison-operator.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/bank/allocation-rule/allocation-rule-condition-field.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/allocation-rule/allocation-rule-condition-operator.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/allocation-rule/allocation-rule-type.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/bank/allocation-rule/index.mjs +5 -0
- package/esm2022/src/lib/db/Enums/bank/bank-account-status.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/bank-account-type.enum.mjs +13 -0
- package/esm2022/src/lib/db/Enums/bank/bank-connection-status.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/bank/bank-popular.enum.mjs +14 -0
- package/esm2022/src/lib/db/Enums/bank/bank-provider.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/bank/bank-transaction-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/index.mjs +8 -0
- package/esm2022/src/lib/db/Enums/bank/loan/index.mjs +11 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-bank-type.enum.mjs +12 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-frequency.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-interest-type-label.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-interest-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-payout-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-repayment-frequency.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-repayment-type-label.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-repayment-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-type.enum.mjs +14 -0
- package/esm2022/src/lib/db/Enums/bank/loan/loan-vehicle-type.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/business-chart-accounts.enum.mjs +48 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-adjustment-included-list.enum.mjs +19 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-category.enum.mjs +20 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-etp.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-heading-list.enum.mjs +50 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-heading-tax-deductible.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-heading-taxable.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-heading-vehicle-list.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-holding-untaxed-income-list.enum.mjs +11 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-keep-sign.enum.mjs +10 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-list.enum.mjs +62 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-meta-field-list.enum.mjs +19 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-meta-field-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-property-adjustments-list.enum.mjs +50 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-salary-adjustments-list.enum.mjs +17 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/chart-accounts-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/chart-accounts/index.mjs +17 -0
- package/esm2022/src/lib/db/Enums/chat-status.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/client/client-details-medicare-exemption.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/client/client-details-work-depreciation-calculation.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/client/client-details-working-holiday-maker.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/client/client-invite-status.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/client/client-invite-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/client/index.mjs +7 -0
- package/esm2022/src/lib/db/Enums/client/timezone.enum.mjs +11 -0
- package/esm2022/src/lib/db/Enums/depreciation-calculation-percent.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/depreciation-calculation.enum.mjs +10 -0
- package/esm2022/src/lib/db/Enums/depreciation-type.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/depreciation-write-off-amount.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/document-type.enum.mjs +5 -0
- package/esm2022/src/lib/db/Enums/file-type.enum.mjs +14 -0
- package/esm2022/src/lib/db/Enums/firm/employee-invite-role.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/firm/firm-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/firm/index.mjs +3 -0
- package/esm2022/src/lib/db/Enums/holding/holding-trade-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/holding/holding-type-category.enum.mjs +18 -0
- package/esm2022/src/lib/db/Enums/holding/holding-type-exchange-list.enum.mjs +11 -0
- package/esm2022/src/lib/db/Enums/holding/index.mjs +4 -0
- package/esm2022/src/lib/db/Enums/home-office/home-office-claim-method.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/home-office/index.mjs +2 -0
- package/esm2022/src/lib/db/Enums/income-source/income-source-forecast-trust-type.enum.mjs +15 -0
- package/esm2022/src/lib/db/Enums/income-source/income-source-type-list-holding.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/income-source/income-source-type-list-other.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/income-source/income-source-type-list-sole.enum.mjs +5 -0
- package/esm2022/src/lib/db/Enums/income-source/income-source-type-list-work.enum.mjs +10 -0
- package/esm2022/src/lib/db/Enums/income-source/income-source-type.enum.mjs +11 -0
- package/esm2022/src/lib/db/Enums/income-source/index.mjs +7 -0
- package/esm2022/src/lib/db/Enums/index.mjs +13 -0
- package/esm2022/src/lib/db/Enums/invite-status.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/phone-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/property/property-category-list.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/property/property-depreciation-calculation.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/property/property-sale/tax-exemption-meta-field.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/property/property-sale/tax-exemption.enum.mjs +12 -0
- package/esm2022/src/lib/db/Enums/property/property-share-access.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/property/property-share-status.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/registration-invite-status.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/salary-forecast-frequency.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/service-notification-status.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/service-notification-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/setup-item-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/sole/index.mjs +6 -0
- package/esm2022/src/lib/db/Enums/sole/sole-depreciation-method.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/sole/sole-invoice-state.enum.mjs +10 -0
- package/esm2022/src/lib/db/Enums/sole/sole-invoice-statuses.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/sole/sole-invoice-tax-type.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/sole/sole-invoice-template-tax-type.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/spare-document-spare-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/subscription/index.mjs +2 -0
- package/esm2022/src/lib/db/Enums/subscription/service-payment-method-card-brand.enum.mjs +12 -0
- package/esm2022/src/lib/db/Enums/subscription/service-payment-method-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/subscription/service-payment-status.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/subscription/service-price-list.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/subscription/service-price-recurring-interval.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/subscription/service-price-type.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/subscription/service-product-id.enum.mjs +11 -0
- package/esm2022/src/lib/db/Enums/subscription/service-product-status.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/subscription/service-subscription-status.enum.mjs +10 -0
- package/esm2022/src/lib/db/Enums/tank-type.enum.mjs +10 -0
- package/esm2022/src/lib/db/Enums/tax-calculation-medicare-exemption.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/tax-calculation-type.enum.mjs +14 -0
- package/esm2022/src/lib/db/Enums/tax-return/index.mjs +4 -0
- package/esm2022/src/lib/db/Enums/tax-return/tax-return-category-list.enum.mjs +66 -0
- package/esm2022/src/lib/db/Enums/tax-return/tax-return-category-section.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/tax-return/tax-return-item.enum.mjs +20 -0
- package/esm2022/src/lib/db/Enums/tax-review-status.enum.mjs +13 -0
- package/esm2022/src/lib/db/Enums/tax-summary-list.enum.mjs +17 -0
- package/esm2022/src/lib/db/Enums/tax-summary-section.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/tax-summary-tax-summary.enum.mjs +17 -0
- package/esm2022/src/lib/db/Enums/ticket-feedback.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/ticket-status.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/ticket-types.enum.mjs +5 -0
- package/esm2022/src/lib/db/Enums/transaction-operation.enum.mjs +8 -0
- package/esm2022/src/lib/db/Enums/transaction-source.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/transaction-type.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/user/gender.enum.mjs +14 -0
- package/esm2022/src/lib/db/Enums/user/index.mjs +2 -0
- package/esm2022/src/lib/db/Enums/user-event-status.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/user-event-type-client-type.enum.mjs +29 -0
- package/esm2022/src/lib/db/Enums/user-event-type-employee-type.enum.mjs +17 -0
- package/esm2022/src/lib/db/Enums/user-event-type-frequency.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/user-event-type-type.enum.mjs +53 -0
- package/esm2022/src/lib/db/Enums/user-event-type-user-type.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/user-medicare-exemption.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/user-status.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/user-title.enum.mjs +9 -0
- package/esm2022/src/lib/db/Enums/user-work-depreciation-calculation.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/user-working-holiday-maker.enum.mjs +7 -0
- package/esm2022/src/lib/db/Enums/vehicle-claim-details-method.enum.mjs +6 -0
- package/esm2022/src/lib/db/Enums/vehicle-logbook-purpose.enum.mjs +6 -0
- package/esm2022/src/lib/db/Json/chart-accounts/chart-accounts-value.json +530 -0
- package/esm2022/src/lib/db/Json/holding/holding-type-exchange.json +79 -0
- package/esm2022/src/lib/db/Json/income-source/income_source_type.json +62 -0
- package/esm2022/src/lib/db/Json/property/tax-exemption.json +47 -0
- package/esm2022/src/lib/db/Json/tax-return/tax-return-item.json +1778 -0
- package/esm2022/src/lib/db/Models/abstract-model.mjs +17 -0
- package/esm2022/src/lib/db/Models/address.mjs +4 -0
- package/esm2022/src/lib/db/Models/bank/bank-account-balance.mjs +9 -0
- package/esm2022/src/lib/db/Models/bank/bank-account-property.mjs +9 -0
- package/esm2022/src/lib/db/Models/bank/bank-account.mjs +10 -0
- package/esm2022/src/lib/db/Models/bank/bank-connection.mjs +5 -0
- package/esm2022/src/lib/db/Models/bank/bank-transaction-import.mjs +4 -0
- package/esm2022/src/lib/db/Models/bank/bank-transaction.mjs +5 -0
- package/esm2022/src/lib/db/Models/bank/bank.mjs +4 -0
- package/esm2022/src/lib/db/Models/bank/basiq-job-step.enum.mjs +8 -0
- package/esm2022/src/lib/db/Models/bank/basiq-job.mjs +4 -0
- package/esm2022/src/lib/db/Models/budget/budget-rule.mjs +4 -0
- package/esm2022/src/lib/db/Models/budget/budget.mjs +4 -0
- package/esm2022/src/lib/db/Models/budget/index.mjs +3 -0
- package/esm2022/src/lib/db/Models/chart-accounts/chart-accounts-depreciation.mjs +4 -0
- package/esm2022/src/lib/db/Models/chart-accounts/chart-accounts-heading.mjs +4 -0
- package/esm2022/src/lib/db/Models/chart-accounts/chart-accounts-meta-field.mjs +4 -0
- package/esm2022/src/lib/db/Models/chart-accounts/chart-accounts-value.mjs +4 -0
- package/esm2022/src/lib/db/Models/chart-accounts/chart-accounts.mjs +4 -0
- package/esm2022/src/lib/db/Models/client/annual-client-details.mjs +3 -0
- package/esm2022/src/lib/db/Models/client/client-details.mjs +4 -0
- package/esm2022/src/lib/db/Models/client/index.mjs +4 -0
- package/esm2022/src/lib/db/Models/client/occupation.mjs +4 -0
- package/esm2022/src/lib/db/Models/country.mjs +4 -0
- package/esm2022/src/lib/db/Models/depreciation/depreciation-capital-project.mjs +4 -0
- package/esm2022/src/lib/db/Models/depreciation/depreciation-forecast.mjs +4 -0
- package/esm2022/src/lib/db/Models/depreciation/depreciation.mjs +10 -0
- package/esm2022/src/lib/db/Models/document/document-folder.mjs +4 -0
- package/esm2022/src/lib/db/Models/document/folder-document.mjs +4 -0
- package/esm2022/src/lib/db/Models/document/property-document.mjs +4 -0
- package/esm2022/src/lib/db/Models/file.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/accountant/tax-review.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/accountant/ticket.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/chat.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/client-invite.mjs +5 -0
- package/esm2022/src/lib/db/Models/firm/client-movement.mjs +5 -0
- package/esm2022/src/lib/db/Models/firm/employee-invite.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/firm-invite.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/firm.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/message-document.mjs +4 -0
- package/esm2022/src/lib/db/Models/firm/message.mjs +5 -0
- package/esm2022/src/lib/db/Models/holding/holding-sale.mjs +3 -0
- package/esm2022/src/lib/db/Models/holding/holding-trade-import.mjs +3 -0
- package/esm2022/src/lib/db/Models/holding/holding-trade.mjs +3 -0
- package/esm2022/src/lib/db/Models/holding/holding-type-exchange.mjs +3 -0
- package/esm2022/src/lib/db/Models/holding/holding-type.mjs +3 -0
- package/esm2022/src/lib/db/Models/holding/index.mjs +5 -0
- package/esm2022/src/lib/db/Models/incomeSource/income-source-forecast.mjs +4 -0
- package/esm2022/src/lib/db/Models/incomeSource/income-source-type.mjs +4 -0
- package/esm2022/src/lib/db/Models/incomeSource/income-source.mjs +4 -0
- package/esm2022/src/lib/db/Models/incomeSource/salary-forecast.mjs +4 -0
- package/esm2022/src/lib/db/Models/index.mjs +96 -0
- package/esm2022/src/lib/db/Models/loan/borrowing-expense-loan.mjs +4 -0
- package/esm2022/src/lib/db/Models/loan/borrowing-expense.mjs +4 -0
- package/esm2022/src/lib/db/Models/loan/loan-payout.mjs +13 -0
- package/esm2022/src/lib/db/Models/loan/loan.mjs +22 -0
- package/esm2022/src/lib/db/Models/observable-model.mjs +14 -0
- package/esm2022/src/lib/db/Models/phone.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/borrowing-report.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/property-category-movement.mjs +5 -0
- package/esm2022/src/lib/db/Models/property/property-category.mjs +5 -0
- package/esm2022/src/lib/db/Models/property/property-forecast.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/property-sale/property-sale-tax-exemption-meta-field.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/property-sale/property-sale.mjs +5 -0
- package/esm2022/src/lib/db/Models/property/property-sale/tax-exemption-meta-field.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/property-sale/tax-exemption.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/property-share.mjs +10 -0
- package/esm2022/src/lib/db/Models/property/property-subscription.mjs +4 -0
- package/esm2022/src/lib/db/Models/property/property-valuation.mjs +5 -0
- package/esm2022/src/lib/db/Models/property/property.mjs +30 -0
- package/esm2022/src/lib/db/Models/service-notification.mjs +4 -0
- package/esm2022/src/lib/db/Models/setup-item.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/bas-report.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-business-activity.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-business-allocation.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-business-loss-offset-rule.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-business-loss.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-business.mjs +5 -0
- package/esm2022/src/lib/db/Models/sole/sole-contact.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-depreciation-method.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-details.mjs +5 -0
- package/esm2022/src/lib/db/Models/sole/sole-forecast.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-invoice-item.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-invoice-template.mjs +4 -0
- package/esm2022/src/lib/db/Models/sole/sole-invoice.mjs +4 -0
- package/esm2022/src/lib/db/Models/spare/spare-document-category.mjs +4 -0
- package/esm2022/src/lib/db/Models/spare/spare-document.mjs +4 -0
- package/esm2022/src/lib/db/Models/subscription/service-payment-method.mjs +4 -0
- package/esm2022/src/lib/db/Models/subscription/service-payment.mjs +4 -0
- package/esm2022/src/lib/db/Models/subscription/service-price.mjs +4 -0
- package/esm2022/src/lib/db/Models/subscription/service-product.mjs +4 -0
- package/esm2022/src/lib/db/Models/subscription/service-subscription-item.mjs +4 -0
- package/esm2022/src/lib/db/Models/subscription/service-subscription.mjs +5 -0
- package/esm2022/src/lib/db/Models/tax-calculation.mjs +4 -0
- package/esm2022/src/lib/db/Models/tax-return/index.mjs +4 -0
- package/esm2022/src/lib/db/Models/tax-return/tax-return-category.mjs +4 -0
- package/esm2022/src/lib/db/Models/tax-return/tax-return-item.mjs +4 -0
- package/esm2022/src/lib/db/Models/tax-return/tax-return.mjs +4 -0
- package/esm2022/src/lib/db/Models/transaction/allocation-rule-condition.mjs +4 -0
- package/esm2022/src/lib/db/Models/transaction/allocation-rule-transaction-meta-field.mjs +4 -0
- package/esm2022/src/lib/db/Models/transaction/allocation-rule-transaction.mjs +5 -0
- package/esm2022/src/lib/db/Models/transaction/allocation-rule.mjs +4 -0
- package/esm2022/src/lib/db/Models/transaction/transaction-allocation.mjs +4 -0
- package/esm2022/src/lib/db/Models/transaction/transaction-base.mjs +88 -0
- package/esm2022/src/lib/db/Models/transaction/transaction-meta-field.mjs +4 -0
- package/esm2022/src/lib/db/Models/transaction/transaction.mjs +5 -0
- package/esm2022/src/lib/db/Models/user/employee-details.mjs +4 -0
- package/esm2022/src/lib/db/Models/user/registration-invite.mjs +4 -0
- package/esm2022/src/lib/db/Models/user/user-event-setting.mjs +4 -0
- package/esm2022/src/lib/db/Models/user/user-event-type-category.mjs +4 -0
- package/esm2022/src/lib/db/Models/user/user-event-type.mjs +4 -0
- package/esm2022/src/lib/db/Models/user/user-event.mjs +4 -0
- package/esm2022/src/lib/db/Models/user/user.mjs +5 -0
- package/esm2022/src/lib/db/Models/vehicle/vehicle-claim-details.mjs +4 -0
- package/esm2022/src/lib/db/Models/vehicle/vehicle-claim.mjs +5 -0
- package/esm2022/src/lib/db/Models/vehicle/vehicle-logbook.mjs +4 -0
- package/esm2022/src/lib/db/Models/vehicle/vehicle.mjs +4 -0
- package/esm2022/src/lib/db-static/chart-accounts/chart-accounts-values.mjs +9 -0
- package/esm2022/src/lib/forms/abstract.form.mjs +163 -0
- package/esm2022/src/lib/forms/address/address.form.mjs +188 -0
- package/esm2022/src/lib/forms/address/index.mjs +2 -0
- package/esm2022/src/lib/forms/aussie/aussie-appointment.form.mjs +19 -0
- package/esm2022/src/lib/forms/aussie/aussie-confirmation.form.mjs +12 -0
- package/esm2022/src/lib/forms/aussie/aussie-store.form.mjs +27 -0
- package/esm2022/src/lib/forms/aussie/index.mjs +4 -0
- package/esm2022/src/lib/forms/bank/bank-account/bank-account-add-manual.form.mjs +45 -0
- package/esm2022/src/lib/forms/bank/bank-account/bank-account-allocation.form.mjs +45 -0
- package/esm2022/src/lib/forms/bank/bank-account/bank-account-import.form.mjs +24 -0
- package/esm2022/src/lib/forms/bank/bank-account/bank-account-properties.form.mjs +63 -0
- package/esm2022/src/lib/forms/bank/bank-account/bank-accounts-import.form.mjs +50 -0
- package/esm2022/src/lib/forms/budget/budget.form.mjs +69 -0
- package/esm2022/src/lib/forms/budget/index.mjs +2 -0
- package/esm2022/src/lib/forms/chart-accounts/chart-accounts.form.mjs +14 -0
- package/esm2022/src/lib/forms/chart-accounts/index.mjs +2 -0
- package/esm2022/src/lib/forms/chat/chat-filter.form.mjs +36 -0
- package/esm2022/src/lib/forms/chat/index.mjs +2 -0
- package/esm2022/src/lib/forms/client/annual-client-details.form.mjs +38 -0
- package/esm2022/src/lib/forms/client/capital-loss.form.mjs +13 -0
- package/esm2022/src/lib/forms/client/index.mjs +3 -0
- package/esm2022/src/lib/forms/collection.form.mjs +29 -0
- package/esm2022/src/lib/forms/depreciation/depreciation.form.mjs +48 -0
- package/esm2022/src/lib/forms/depreciation/index.mjs +2 -0
- package/esm2022/src/lib/forms/document-folder/document-folder.form.mjs +11 -0
- package/esm2022/src/lib/forms/document-folder/document.form.mjs +11 -0
- package/esm2022/src/lib/forms/document-folder/index.mjs +3 -0
- package/esm2022/src/lib/forms/firm/client-invite-put.form.mjs +13 -0
- package/esm2022/src/lib/forms/firm/client-invite.form.mjs +18 -0
- package/esm2022/src/lib/forms/firm/client-movement.form.mjs +22 -0
- package/esm2022/src/lib/forms/firm/employee-details.form.mjs +21 -0
- package/esm2022/src/lib/forms/firm/employee-invite.form.mjs +24 -0
- package/esm2022/src/lib/forms/firm/firm-branch.form.mjs +13 -0
- package/esm2022/src/lib/forms/firm/firm-invite.form.mjs +18 -0
- package/esm2022/src/lib/forms/firm/firm.form.mjs +18 -0
- package/esm2022/src/lib/forms/firm/index.mjs +9 -0
- package/esm2022/src/lib/forms/form-validations.enum.mjs +12 -0
- package/esm2022/src/lib/forms/holding/holding-reinvest.form.mjs +85 -0
- package/esm2022/src/lib/forms/holding/holding-trade/holding-trade-filter.form.mjs +44 -0
- package/esm2022/src/lib/forms/holding/holding-trade/holding-trade.form.mjs +30 -0
- package/esm2022/src/lib/forms/holding/holding-trade/index.mjs +3 -0
- package/esm2022/src/lib/forms/holding/holding-trade-import.form.mjs +25 -0
- package/esm2022/src/lib/forms/holding/holding-type.form.mjs +16 -0
- package/esm2022/src/lib/forms/holding/index.mjs +5 -0
- package/esm2022/src/lib/forms/home-office/home-office-calculator.form.mjs +32 -0
- package/esm2022/src/lib/forms/home-office/home-office-claim.form.mjs +43 -0
- package/esm2022/src/lib/forms/home-office/home-office-log.form.mjs +15 -0
- package/esm2022/src/lib/forms/home-office/index.mjs +4 -0
- package/esm2022/src/lib/forms/index.mjs +32 -0
- package/esm2022/src/lib/forms/loan/index.mjs +2 -0
- package/esm2022/src/lib/forms/loan/loan.form.mjs +86 -0
- package/esm2022/src/lib/forms/login/login.form.mjs +11 -0
- package/esm2022/src/lib/forms/phone/index.mjs +2 -0
- package/esm2022/src/lib/forms/phone/phone.form.mjs +18 -0
- package/esm2022/src/lib/forms/property/borrowing-report.form.mjs +32 -0
- package/esm2022/src/lib/forms/property/index.mjs +10 -0
- package/esm2022/src/lib/forms/property/property-add.form.mjs +58 -0
- package/esm2022/src/lib/forms/property/property-category-movement-form.mjs +21 -0
- package/esm2022/src/lib/forms/property/property-document.form.mjs +14 -0
- package/esm2022/src/lib/forms/property/property-edit.form.mjs +17 -0
- package/esm2022/src/lib/forms/property/property-forecast.form.mjs +28 -0
- package/esm2022/src/lib/forms/property/property-sale/index.mjs +4 -0
- package/esm2022/src/lib/forms/property/property-sale/property-sale-cost-base.form.mjs +38 -0
- package/esm2022/src/lib/forms/property/property-sale/property-sale-cost-sale.form.mjs +66 -0
- package/esm2022/src/lib/forms/property/property-sale/property-sale-exemptions.form.mjs +107 -0
- package/esm2022/src/lib/forms/property/property-share.form.mjs +16 -0
- package/esm2022/src/lib/forms/property/property-valuation.form.mjs +40 -0
- package/esm2022/src/lib/forms/register/register-client.form.mjs +22 -0
- package/esm2022/src/lib/forms/register/register-firm.form.mjs +22 -0
- package/esm2022/src/lib/forms/report/my-tax/index.mjs +17 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.form.mjs +31 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income/my-tax-business-income.form.mjs +81 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income-or-losses.form.mjs +14 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.form.mjs +79 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-cgt.form.mjs +30 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-deductions.form.mjs +85 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-dividends.form.mjs +23 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-income-statements.form.mjs +108 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-income-tests.form.mjs +10 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-interest.form.mjs +12 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-losses.form.mjs +11 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-medicare.form.mjs +38 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-offsets.form.mjs +10 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-other-income.form.mjs +43 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-partnerships-and-trusts.form.mjs +37 -0
- package/esm2022/src/lib/forms/report/my-tax/my-tax-rent.form.mjs +13 -0
- package/esm2022/src/lib/forms/sole/bas-report.form.mjs +63 -0
- package/esm2022/src/lib/forms/sole/index.mjs +12 -0
- package/esm2022/src/lib/forms/sole/invoice-payment.form.mjs +14 -0
- package/esm2022/src/lib/forms/sole/sole-business-allocations.form.mjs +64 -0
- package/esm2022/src/lib/forms/sole/sole-business-loss.form.mjs +24 -0
- package/esm2022/src/lib/forms/sole/sole-business.form.mjs +70 -0
- package/esm2022/src/lib/forms/sole/sole-contact.form.mjs +20 -0
- package/esm2022/src/lib/forms/sole/sole-depreciation-method.form.mjs +10 -0
- package/esm2022/src/lib/forms/sole/sole-details.form.mjs +12 -0
- package/esm2022/src/lib/forms/sole/sole-invoice-item.form.mjs +15 -0
- package/esm2022/src/lib/forms/sole/sole-invoice-template.form.mjs +15 -0
- package/esm2022/src/lib/forms/sole/sole-invoice.form.mjs +158 -0
- package/esm2022/src/lib/forms/tax-review/index.mjs +3 -0
- package/esm2022/src/lib/forms/tax-review/tax-review-filter-status.enum.mjs +6 -0
- package/esm2022/src/lib/forms/tax-review/tax-review-filter.form.mjs +49 -0
- package/esm2022/src/lib/forms/transaction/allocation-rule-condition.form.mjs +16 -0
- package/esm2022/src/lib/forms/transaction/allocation-rule-transaction-meta-field.form.mjs +12 -0
- package/esm2022/src/lib/forms/transaction/allocation-rule-transaction.form.mjs +146 -0
- package/esm2022/src/lib/forms/transaction/allocation-rule.form.mjs +188 -0
- package/esm2022/src/lib/forms/transaction/holding/holding-income.form.mjs +59 -0
- package/esm2022/src/lib/forms/transaction/index.mjs +9 -0
- package/esm2022/src/lib/forms/transaction/messages.enum.mjs +5 -0
- package/esm2022/src/lib/forms/transaction/sole/sole-income.form.mjs +17 -0
- package/esm2022/src/lib/forms/transaction/sole/sole-transaction.form.mjs +7 -0
- package/esm2022/src/lib/forms/transaction/transaction-base-filter.form.mjs +48 -0
- package/esm2022/src/lib/forms/transaction/transaction-base.form.mjs +98 -0
- package/esm2022/src/lib/forms/transaction/transaction.form.mjs +62 -0
- package/esm2022/src/lib/forms/transaction/work/work-expense.form.mjs +46 -0
- package/esm2022/src/lib/forms/transaction/work/work-income.form.mjs +90 -0
- package/esm2022/src/lib/forms/transaction/work/work-transaction.form.mjs +38 -0
- package/esm2022/src/lib/forms/user/client-details.form.mjs +35 -0
- package/esm2022/src/lib/forms/user/index.mjs +6 -0
- package/esm2022/src/lib/forms/user/password.form.mjs +14 -0
- package/esm2022/src/lib/forms/user/reset-password.form.mjs +11 -0
- package/esm2022/src/lib/forms/user/user-invite.form.mjs +17 -0
- package/esm2022/src/lib/forms/user/user.form.mjs +18 -0
- package/esm2022/src/lib/forms/vehicle/index.mjs +5 -0
- package/esm2022/src/lib/forms/vehicle/vehicle-claim-details.form.mjs +17 -0
- package/esm2022/src/lib/forms/vehicle/vehicle-claim.form.mjs +28 -0
- package/esm2022/src/lib/forms/vehicle/vehicle-logbook.form.mjs +62 -0
- package/esm2022/src/lib/forms/vehicle/vehicle.form.mjs +17 -0
- package/esm2022/src/lib/functions/array/index.mjs +5 -0
- package/esm2022/src/lib/functions/array/replace.mjs +6 -0
- package/esm2022/src/lib/functions/array/sort-deep.mjs +22 -0
- package/esm2022/src/lib/functions/array/sort.mjs +13 -0
- package/esm2022/src/lib/functions/array/to-array.mjs +7 -0
- package/esm2022/src/lib/functions/clone-deep.mjs +5 -0
- package/esm2022/src/lib/functions/create-date.mjs +8 -0
- package/esm2022/src/lib/functions/enum-to-list.mjs +13 -0
- package/esm2022/src/lib/functions/get-doc-icon.mjs +18 -0
- package/esm2022/src/lib/functions/mat-options-functions.mjs +13 -0
- package/esm2022/src/lib/functions/mat-sort-options.mjs +10 -0
- package/esm2022/src/lib/interceptors/aussie.interceptor.mjs +35 -0
- package/esm2022/src/lib/interceptors/basiq-client-id.interceptor.mjs +31 -0
- package/esm2022/src/lib/interceptors/basiq-token.interceptor.mjs +33 -0
- package/esm2022/src/lib/interceptors/corelogic-interceptor.mjs +41 -0
- package/esm2022/src/lib/interceptors/financial-year-interceptor.mjs +42 -0
- package/esm2022/src/lib/interceptors/interceptors.module.mjs +107 -0
- package/esm2022/src/lib/interceptors/preloader.interceptor.mjs +32 -0
- package/esm2022/src/lib/interceptors/rewardful.interceptor.mjs +43 -0
- package/esm2022/src/lib/interceptors/user-switcher-interceptor.mjs +40 -0
- package/esm2022/src/lib/interfaces/asset-entity-type.enum.mjs +12 -0
- package/esm2022/src/lib/interfaces/asset-type.enum.mjs +13 -0
- package/esm2022/src/lib/interfaces/asset.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/chart-data.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/chart-serie.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/document.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/documentable.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/event-listener.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/expense.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/income-source-forecast.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/index.mjs +14 -0
- package/esm2022/src/lib/interfaces/option.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/tank.interface.mjs +2 -0
- package/esm2022/src/lib/interfaces/updatable.interface.mjs +2 -0
- package/esm2022/src/lib/messages/index.mjs +2 -0
- package/esm2022/src/lib/messages/messages.enum.mjs +16 -0
- package/esm2022/src/lib/models/account-setup/account-setup-item.mjs +38 -0
- package/esm2022/src/lib/models/account-setup/account-setup-items.enum.mjs +19 -0
- package/esm2022/src/lib/models/address/address.mjs +50 -0
- package/esm2022/src/lib/models/address/country.mjs +18 -0
- package/esm2022/src/lib/models/address/index.mjs +4 -0
- package/esm2022/src/lib/models/address/states.enum.mjs +12 -0
- package/esm2022/src/lib/models/asset-sale.mjs +10 -0
- package/esm2022/src/lib/models/aussie/aussie-appointment.mjs +14 -0
- package/esm2022/src/lib/models/aussie/aussie-broker.mjs +33 -0
- package/esm2022/src/lib/models/aussie/aussie-store.interface.mjs +2 -0
- package/esm2022/src/lib/models/aussie/aussie-store.mjs +10 -0
- package/esm2022/src/lib/models/aussie/index.mjs +5 -0
- package/esm2022/src/lib/models/badge/badge-color.enum.mjs +8 -0
- package/esm2022/src/lib/models/badge/badge.mjs +14 -0
- package/esm2022/src/lib/models/bank/allocation-group.mjs +64 -0
- package/esm2022/src/lib/models/bank/bank-account-chart-data.mjs +30 -0
- package/esm2022/src/lib/models/bank/bank-account-property.mjs +14 -0
- package/esm2022/src/lib/models/bank/bank-account.mjs +166 -0
- package/esm2022/src/lib/models/bank/bank-connection.mjs +76 -0
- package/esm2022/src/lib/models/bank/bank-external-stats.mjs +8 -0
- package/esm2022/src/lib/models/bank/bank-transaction-chart-data.mjs +99 -0
- package/esm2022/src/lib/models/bank/bank-transaction-summary-fields.enum.mjs +6 -0
- package/esm2022/src/lib/models/bank/bank-transaction.mjs +78 -0
- package/esm2022/src/lib/models/bank/bank.mjs +37 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-config.mjs +12 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-connection-data.interface.mjs +2 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-connections-response.interface.mjs +2 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-job-response.mjs +15 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-job-step.mjs +18 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-job.mjs +4 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-token-response.interface.mjs +2 -0
- package/esm2022/src/lib/models/bank/basiq/basiq-token.mjs +15 -0
- package/esm2022/src/lib/models/bank/basiq/index.mjs +9 -0
- package/esm2022/src/lib/models/bank/index.mjs +13 -0
- package/esm2022/src/lib/models/bank/type-loan.const.mjs +6 -0
- package/esm2022/src/lib/models/borrowing-expense/borrowing-expense-loan.mjs +4 -0
- package/esm2022/src/lib/models/borrowing-expense/borrowing-expense.mjs +4 -0
- package/esm2022/src/lib/models/borrowing-expense/index.mjs +3 -0
- package/esm2022/src/lib/models/budget/budget-rule.mjs +14 -0
- package/esm2022/src/lib/models/budget/budget.mjs +18 -0
- package/esm2022/src/lib/models/budget/index.mjs +3 -0
- package/esm2022/src/lib/models/chart/chart-data.mjs +13 -0
- package/esm2022/src/lib/models/chart/chart-serie.mjs +7 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-categories.const.mjs +122 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-category.e-collection.mjs +48 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-depreciation.mjs +16 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-heading.mjs +4 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-meta-field.mjs +20 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-tax-labels.enum.mjs +7 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts-value.mjs +4 -0
- package/esm2022/src/lib/models/chart-accounts/chart-accounts.mjs +280 -0
- package/esm2022/src/lib/models/chart-accounts/index.mjs +9 -0
- package/esm2022/src/lib/models/chat/chat-view-type.enum.mjs +6 -0
- package/esm2022/src/lib/models/chat/chat.mjs +30 -0
- package/esm2022/src/lib/models/chat/index.mjs +5 -0
- package/esm2022/src/lib/models/chat/message-document.mjs +21 -0
- package/esm2022/src/lib/models/chat/message.mjs +43 -0
- package/esm2022/src/lib/models/client/annual-client-details.mjs +19 -0
- package/esm2022/src/lib/models/client/capital-loss.interface.mjs +2 -0
- package/esm2022/src/lib/models/client/capital-loss.mjs +15 -0
- package/esm2022/src/lib/models/client/client-details.mjs +30 -0
- package/esm2022/src/lib/models/client/client-invite.mjs +70 -0
- package/esm2022/src/lib/models/client/client-movement.mjs +26 -0
- package/esm2022/src/lib/models/client/client-portfolio-chart-data.mjs +55 -0
- package/esm2022/src/lib/models/client/client-portfolio-report.mjs +7 -0
- package/esm2022/src/lib/models/client/index.mjs +10 -0
- package/esm2022/src/lib/models/client/sharesight/index.mjs +4 -0
- package/esm2022/src/lib/models/client/sharesight/sharesight-details-messages.enum.mjs +9 -0
- package/esm2022/src/lib/models/client/sharesight/sharesight-details.interface.mjs +2 -0
- package/esm2022/src/lib/models/client/sharesight/sharesight-details.mjs +22 -0
- package/esm2022/src/lib/models/color/alphabet-colors.enum.mjs +30 -0
- package/esm2022/src/lib/models/date-range.mjs +10 -0
- package/esm2022/src/lib/models/depreciation/depreciation-capital-project.mjs +9 -0
- package/esm2022/src/lib/models/depreciation/depreciation-forecast.mjs +42 -0
- package/esm2022/src/lib/models/depreciation/depreciation-group-item.mjs +18 -0
- package/esm2022/src/lib/models/depreciation/depreciation-group.enum.mjs +10 -0
- package/esm2022/src/lib/models/depreciation/depreciation-group.mjs +20 -0
- package/esm2022/src/lib/models/depreciation/depreciation-groups.const.mjs +34 -0
- package/esm2022/src/lib/models/depreciation/depreciation-lvp-rate.enum.mjs +9 -0
- package/esm2022/src/lib/models/depreciation/depreciation.mjs +179 -0
- package/esm2022/src/lib/models/depreciation/index.mjs +9 -0
- package/esm2022/src/lib/models/dictionary/dictionary.mjs +50 -0
- package/esm2022/src/lib/models/dictionary/index.mjs +2 -0
- package/esm2022/src/lib/models/document/document-api-url-prefix.enum.mjs +9 -0
- package/esm2022/src/lib/models/document/document-file-types.const.mjs +23 -0
- package/esm2022/src/lib/models/document/document-folder.mjs +4 -0
- package/esm2022/src/lib/models/document/document.mjs +17 -0
- package/esm2022/src/lib/models/document/index.mjs +5 -0
- package/esm2022/src/lib/models/employee/employee-details.mjs +16 -0
- package/esm2022/src/lib/models/employee/employee-invite.mjs +30 -0
- package/esm2022/src/lib/models/endpoint/endpoint.mjs +23 -0
- package/esm2022/src/lib/models/endpoint/endpoints.const.mjs +273 -0
- package/esm2022/src/lib/models/event/app-event-type.enum.mjs +60 -0
- package/esm2022/src/lib/models/event/app-event.mjs +21 -0
- package/esm2022/src/lib/models/event/index.mjs +3 -0
- package/esm2022/src/lib/models/export/export-cell-type.enum.mjs +11 -0
- package/esm2022/src/lib/models/export/export-cell.mjs +6 -0
- package/esm2022/src/lib/models/export/export-data-table.mjs +3 -0
- package/esm2022/src/lib/models/export/export-format.enum.mjs +6 -0
- package/esm2022/src/lib/models/file/file.mjs +15 -0
- package/esm2022/src/lib/models/file/icons-file.enum.mjs +7 -0
- package/esm2022/src/lib/models/file/index.mjs +2 -0
- package/esm2022/src/lib/models/financial-year/financial-year.mjs +54 -0
- package/esm2022/src/lib/models/financial-year/index.mjs +5 -0
- package/esm2022/src/lib/models/financial-year/month-name-short.enum.mjs +21 -0
- package/esm2022/src/lib/models/financial-year/month-number.enum.mjs +21 -0
- package/esm2022/src/lib/models/financial-year/months.const.mjs +2 -0
- package/esm2022/src/lib/models/firm/firm-branch.interface.mjs +2 -0
- package/esm2022/src/lib/models/firm/firm-branch.mjs +22 -0
- package/esm2022/src/lib/models/firm/firm.mjs +26 -0
- package/esm2022/src/lib/models/firm/index.mjs +3 -0
- package/esm2022/src/lib/models/holding/holding-reinvest.mjs +22 -0
- package/esm2022/src/lib/models/holding/holding-sale.mjs +39 -0
- package/esm2022/src/lib/models/holding/holding-trade-import.mjs +16 -0
- package/esm2022/src/lib/models/holding/holding-trade.mjs +90 -0
- package/esm2022/src/lib/models/holding/holding-type-exchange.mjs +16 -0
- package/esm2022/src/lib/models/holding/holding-type.mjs +67 -0
- package/esm2022/src/lib/models/holding/holding.mjs +54 -0
- package/esm2022/src/lib/models/holding/index.mjs +8 -0
- package/esm2022/src/lib/models/home-office/home-office-claim.interface.mjs +2 -0
- package/esm2022/src/lib/models/home-office/home-office-claim.mjs +46 -0
- package/esm2022/src/lib/models/home-office/home-office-log.interface.mjs +2 -0
- package/esm2022/src/lib/models/home-office/home-office-log.mjs +18 -0
- package/esm2022/src/lib/models/home-office/index.mjs +5 -0
- package/esm2022/src/lib/models/income-position/income-position.mjs +9 -0
- package/esm2022/src/lib/models/income-source/income-source-chart-data.mjs +45 -0
- package/esm2022/src/lib/models/income-source/income-source-forecast.mjs +34 -0
- package/esm2022/src/lib/models/income-source/income-source-type.mjs +20 -0
- package/esm2022/src/lib/models/income-source/income-source.mjs +58 -0
- package/esm2022/src/lib/models/income-source/index.mjs +7 -0
- package/esm2022/src/lib/models/income-source/salary-forecast.mjs +36 -0
- package/esm2022/src/lib/models/income-source/sole-forecast.mjs +13 -0
- package/esm2022/src/lib/models/index.mjs +30 -0
- package/esm2022/src/lib/models/loan/index.mjs +5 -0
- package/esm2022/src/lib/models/loan/loan-max-number-of-payments.enum.mjs +11 -0
- package/esm2022/src/lib/models/loan/loan-payment.mjs +13 -0
- package/esm2022/src/lib/models/loan/loan-payout.mjs +11 -0
- package/esm2022/src/lib/models/loan/loan.mjs +84 -0
- package/esm2022/src/lib/models/notification/index.mjs +2 -0
- package/esm2022/src/lib/models/notification/notification.mjs +39 -0
- package/esm2022/src/lib/models/pdf/pdf-orientation.enum.mjs +6 -0
- package/esm2022/src/lib/models/pdf/pdf-settings.mjs +17 -0
- package/esm2022/src/lib/models/phone/phone.mjs +19 -0
- package/esm2022/src/lib/models/property/borrowing-report.mjs +50 -0
- package/esm2022/src/lib/models/property/calculation-form-item.mjs +17 -0
- package/esm2022/src/lib/models/property/calculation-form-type.enum.mjs +9 -0
- package/esm2022/src/lib/models/property/capital-costs-itmes.const.mjs +57 -0
- package/esm2022/src/lib/models/property/corelogic-suggestion.mjs +7 -0
- package/esm2022/src/lib/models/property/index.mjs +19 -0
- package/esm2022/src/lib/models/property/property-category-movement.mjs +24 -0
- package/esm2022/src/lib/models/property/property-category.mjs +15 -0
- package/esm2022/src/lib/models/property/property-corelogic-stats.interface.mjs +2 -0
- package/esm2022/src/lib/models/property/property-document.mjs +17 -0
- package/esm2022/src/lib/models/property/property-equity-chart-data.mjs +168 -0
- package/esm2022/src/lib/models/property/property-equity-chart-item.mjs +24 -0
- package/esm2022/src/lib/models/property/property-equity-chart-type.enum.mjs +6 -0
- package/esm2022/src/lib/models/property/property-forecast.mjs +45 -0
- package/esm2022/src/lib/models/property/property-sale/index.mjs +6 -0
- package/esm2022/src/lib/models/property/property-sale/property-sale-cost-base.mjs +20 -0
- package/esm2022/src/lib/models/property/property-sale/property-sale-tax-exemption-meta-field.mjs +4 -0
- package/esm2022/src/lib/models/property/property-sale/property-sale.mjs +55 -0
- package/esm2022/src/lib/models/property/property-sale/tax-exemption-meta-field.mjs +4 -0
- package/esm2022/src/lib/models/property/property-sale/tax-exemption.mjs +8 -0
- package/esm2022/src/lib/models/property/property-share.mjs +47 -0
- package/esm2022/src/lib/models/property/property-subscription.mjs +13 -0
- package/esm2022/src/lib/models/property/property-valuation.mjs +31 -0
- package/esm2022/src/lib/models/property/property.mjs +269 -0
- package/esm2022/src/lib/models/registration-invite/registration-invite.mjs +17 -0
- package/esm2022/src/lib/models/report/depreciation/depreciation-lvp-asset-type.enum.mjs +10 -0
- package/esm2022/src/lib/models/report/depreciation/depreciation-lvp-report-item.mjs +21 -0
- package/esm2022/src/lib/models/report/depreciation/depreciation-report-item.mjs +25 -0
- package/esm2022/src/lib/models/report/depreciation/index.mjs +4 -0
- package/esm2022/src/lib/models/report/income-expense/transaction-report-item.mjs +16 -0
- package/esm2022/src/lib/models/report/index.mjs +9 -0
- package/esm2022/src/lib/models/report/my-tax/ato-links.mjs +11 -0
- package/esm2022/src/lib/models/report/my-tax/index.mjs +26 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-business-income-or-losses/business-income-or-losses-categories.const.mjs +27 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-business-income-or-losses/business-type.enum.mjs +11 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-business-income-or-losses/loss-type.enum.mjs +16 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.mjs +15 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income/my-tax-business-income.mjs +74 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.mjs +70 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-cgt/cgt-exemption-and-rollover-code.enum.mjs +9 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-cgt/my-tax-cgt.mjs +30 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-deductions/deduction-clothing-type.enum.mjs +13 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-deductions/deduction-fields.const.mjs +62 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-deductions/deduction-self-education-type.enum.mjs +10 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.mjs +96 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-dividends/my-tax-dividends.mjs +17 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-estimate/my-tax-estimate.mjs +40 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.mjs +76 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-income-tests/my-tax-income-tests.mjs +8 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-interest/my-tax-interest.mjs +11 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-losses/my-tax-losses.mjs +11 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-offsets/my-tax-offsets.mjs +8 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-other-income/my-tax-other-income.mjs +47 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-partnerships-and-trusts/my-tax-partnerships-and-trusts.mjs +30 -0
- package/esm2022/src/lib/models/report/my-tax/my-tax-rent/my-tax-rent.mjs +43 -0
- package/esm2022/src/lib/models/report/property/index.mjs +4 -0
- package/esm2022/src/lib/models/report/property/property-report-item-depreciation.mjs +20 -0
- package/esm2022/src/lib/models/report/property/property-report-item-transaction.mjs +12 -0
- package/esm2022/src/lib/models/report/property/property-report-item.mjs +30 -0
- package/esm2022/src/lib/models/report/report.interface.mjs +2 -0
- package/esm2022/src/lib/models/report/reports.const.mjs +107 -0
- package/esm2022/src/lib/models/report/sole/index.mjs +2 -0
- package/esm2022/src/lib/models/report/sole/sole-business/sole-business-loss-report.mjs +17 -0
- package/esm2022/src/lib/models/report/vehicle-expense/vehicle-expense.mjs +15 -0
- package/esm2022/src/lib/models/service-subscription/index.mjs +10 -0
- package/esm2022/src/lib/models/service-subscription/module-url-list.const.mjs +12 -0
- package/esm2022/src/lib/models/service-subscription/payment-method-brand.enum.mjs +12 -0
- package/esm2022/src/lib/models/service-subscription/service-payment-method.mjs +31 -0
- package/esm2022/src/lib/models/service-subscription/service-payment.mjs +22 -0
- package/esm2022/src/lib/models/service-subscription/service-price.mjs +25 -0
- package/esm2022/src/lib/models/service-subscription/service-product-icons.enum.mjs +11 -0
- package/esm2022/src/lib/models/service-subscription/service-product-roles.const.mjs +11 -0
- package/esm2022/src/lib/models/service-subscription/service-product.mjs +27 -0
- package/esm2022/src/lib/models/service-subscription/service-promo-code-duration.enum.mjs +7 -0
- package/esm2022/src/lib/models/service-subscription/service-promo-code.mjs +30 -0
- package/esm2022/src/lib/models/service-subscription/service-subscription-item.mjs +24 -0
- package/esm2022/src/lib/models/service-subscription/service-subscription.mjs +161 -0
- package/esm2022/src/lib/models/sole/bas-report.mjs +42 -0
- package/esm2022/src/lib/models/sole/index.mjs +13 -0
- package/esm2022/src/lib/models/sole/sole-business-activity.mjs +4 -0
- package/esm2022/src/lib/models/sole/sole-business-allocation.mjs +18 -0
- package/esm2022/src/lib/models/sole/sole-business-loss-offset-rule.mjs +9 -0
- package/esm2022/src/lib/models/sole/sole-business-loss.mjs +27 -0
- package/esm2022/src/lib/models/sole/sole-business.mjs +57 -0
- package/esm2022/src/lib/models/sole/sole-contact.mjs +30 -0
- package/esm2022/src/lib/models/sole/sole-depreciation-method.mjs +8 -0
- package/esm2022/src/lib/models/sole/sole-details.mjs +10 -0
- package/esm2022/src/lib/models/sole/sole-invoice-item.mjs +70 -0
- package/esm2022/src/lib/models/sole/sole-invoice-template.mjs +31 -0
- package/esm2022/src/lib/models/sole/sole-invoice.mjs +139 -0
- package/esm2022/src/lib/models/tax-return/index.mjs +4 -0
- package/esm2022/src/lib/models/tax-return/tax-return-category.mjs +19 -0
- package/esm2022/src/lib/models/tax-return/tax-return-item.mjs +40 -0
- package/esm2022/src/lib/models/tax-return/tax-return.mjs +10 -0
- package/esm2022/src/lib/models/tax-review/tax-review.mjs +96 -0
- package/esm2022/src/lib/models/tax-summary/report-item-details.mjs +10 -0
- package/esm2022/src/lib/models/tax-summary/report-item.mjs +28 -0
- package/esm2022/src/lib/models/tax-summary/tax-summary-section.mjs +32 -0
- package/esm2022/src/lib/models/tax-summary/tax-summary-type.enum.mjs +9 -0
- package/esm2022/src/lib/models/tax-summary/tax-summary.mjs +153 -0
- package/esm2022/src/lib/models/toast/toast-type.enum.mjs +8 -0
- package/esm2022/src/lib/models/toast/toast.mjs +10 -0
- package/esm2022/src/lib/models/transaction/allocation-rule-condition.mjs +40 -0
- package/esm2022/src/lib/models/transaction/allocation-rule-transaction-meta-field.mjs +4 -0
- package/esm2022/src/lib/models/transaction/allocation-rule-transaction.mjs +110 -0
- package/esm2022/src/lib/models/transaction/allocation-rule.mjs +131 -0
- package/esm2022/src/lib/models/transaction/income-amount-type.enum.mjs +9 -0
- package/esm2022/src/lib/models/transaction/index.mjs +9 -0
- package/esm2022/src/lib/models/transaction/transaction-allocation.mjs +21 -0
- package/esm2022/src/lib/models/transaction/transaction-category.enum.mjs +8 -0
- package/esm2022/src/lib/models/transaction/transaction-meta-field.mjs +17 -0
- package/esm2022/src/lib/models/transaction/transaction.mjs +243 -0
- package/esm2022/src/lib/models/user/index.mjs +10 -0
- package/esm2022/src/lib/models/user/my-account-history-initiated-by.enum.mjs +6 -0
- package/esm2022/src/lib/models/user/my-account-history-status.enum.mjs +6 -0
- package/esm2022/src/lib/models/user/my-account-history-type.enum.mjs +7 -0
- package/esm2022/src/lib/models/user/my-account-history.mjs +3 -0
- package/esm2022/src/lib/models/user/occupation.mjs +4 -0
- package/esm2022/src/lib/models/user/user-roles.const.mjs +20 -0
- package/esm2022/src/lib/models/user/user-to-register.mjs +6 -0
- package/esm2022/src/lib/models/user/user-work-position.const.mjs +7 -0
- package/esm2022/src/lib/models/user/user.mjs +165 -0
- package/esm2022/src/lib/models/user-event/user-event-setting-field.enum.mjs +10 -0
- package/esm2022/src/lib/models/user-event/user-event-setting.mjs +18 -0
- package/esm2022/src/lib/models/user-event/user-event-type-category.mjs +4 -0
- package/esm2022/src/lib/models/user-event/user-event-type.mjs +23 -0
- package/esm2022/src/lib/models/vehicle/index.mjs +5 -0
- package/esm2022/src/lib/models/vehicle/vehicle-claim-details.mjs +26 -0
- package/esm2022/src/lib/models/vehicle/vehicle-claim.mjs +61 -0
- package/esm2022/src/lib/models/vehicle/vehicle-logbook.mjs +27 -0
- package/esm2022/src/lib/models/vehicle/vehicle.mjs +10 -0
- package/esm2022/src/lib/pipes/app-currency.pipe.mjs +23 -0
- package/esm2022/src/lib/pipes/app-percent.pipe.mjs +21 -0
- package/esm2022/src/lib/pipes/index.mjs +4 -0
- package/esm2022/src/lib/pipes/safe-url.pipe.mjs +21 -0
- package/esm2022/src/lib/services/account-setup/account-setup.service.mjs +168 -0
- package/esm2022/src/lib/services/account-setup/index.mjs +2 -0
- package/esm2022/src/lib/services/adblock/adblock.service.mjs +48 -0
- package/esm2022/src/lib/services/adblock/index.mjs +2 -0
- package/esm2022/src/lib/services/asset/assets.service.mjs +51 -0
- package/esm2022/src/lib/services/asset/index.mjs +2 -0
- package/esm2022/src/lib/services/bank/bank-account-calculation.service.mjs +32 -0
- package/esm2022/src/lib/services/bank/index.mjs +2 -0
- package/esm2022/src/lib/services/data.service.mjs +44 -0
- package/esm2022/src/lib/services/event/event-dispatcher.service.mjs +41 -0
- package/esm2022/src/lib/services/event/index.mjs +3 -0
- package/esm2022/src/lib/services/event/sse.service.mjs +48 -0
- package/esm2022/src/lib/services/export/export-formatter.service.mjs +34 -0
- package/esm2022/src/lib/services/export/index.mjs +2 -0
- package/esm2022/src/lib/services/firm/current-firm-branch.service.mjs +26 -0
- package/esm2022/src/lib/services/firm/index.mjs +2 -0
- package/esm2022/src/lib/services/header-title/header-title.service.mjs +28 -0
- package/esm2022/src/lib/services/header-title/index.mjs +2 -0
- package/esm2022/src/lib/services/http/address/address.service.mjs +37 -0
- package/esm2022/src/lib/services/http/address/index.mjs +2 -0
- package/esm2022/src/lib/services/http/aussie/aussie.service.mjs +33 -0
- package/esm2022/src/lib/services/http/aussie/index.mjs +2 -0
- package/esm2022/src/lib/services/http/bank/bank-account/bank-account.service.mjs +102 -0
- package/esm2022/src/lib/services/http/bank/bank-account/index.mjs +2 -0
- package/esm2022/src/lib/services/http/bank/bank-connection/bank-connection-messages.enum.mjs +26 -0
- package/esm2022/src/lib/services/http/bank/bank-connection/bank-connection.service.mjs +91 -0
- package/esm2022/src/lib/services/http/bank/bank-connection/index.mjs +3 -0
- package/esm2022/src/lib/services/http/bank/bank-transaction/bank-transaction.service.mjs +77 -0
- package/esm2022/src/lib/services/http/bank/bank-transaction/index.mjs +2 -0
- package/esm2022/src/lib/services/http/bank/bank.service.mjs +26 -0
- package/esm2022/src/lib/services/http/bank/basiq/basiq-messages.enum.mjs +7 -0
- package/esm2022/src/lib/services/http/bank/basiq/basiq-token.service.mjs +39 -0
- package/esm2022/src/lib/services/http/bank/basiq/basiq.service.mjs +159 -0
- package/esm2022/src/lib/services/http/bank/basiq/index.mjs +4 -0
- package/esm2022/src/lib/services/http/bank/index.mjs +6 -0
- package/esm2022/src/lib/services/http/budget/budget-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/budget/budget.service.mjs +23 -0
- package/esm2022/src/lib/services/http/budget/index.mjs +3 -0
- package/esm2022/src/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.mjs +26 -0
- package/esm2022/src/lib/services/http/chart-accounts/chart-accounts-depreciations/index.mjs +2 -0
- package/esm2022/src/lib/services/http/chart-accounts/chart-accounts-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/chart-accounts/chart-accounts.service.mjs +49 -0
- package/esm2022/src/lib/services/http/chart-accounts/index.mjs +4 -0
- package/esm2022/src/lib/services/http/chat/chat.service.mjs +88 -0
- package/esm2022/src/lib/services/http/chat/index.mjs +4 -0
- package/esm2022/src/lib/services/http/chat/message-document.service.mjs +80 -0
- package/esm2022/src/lib/services/http/chat/message.service.mjs +39 -0
- package/esm2022/src/lib/services/http/client/annual-client-details.service.mjs +23 -0
- package/esm2022/src/lib/services/http/client/capital-loss/capital-loss-messages.enum.mjs +7 -0
- package/esm2022/src/lib/services/http/client/capital-loss/capital-loss.service.mjs +23 -0
- package/esm2022/src/lib/services/http/client/capital-loss/index.mjs +3 -0
- package/esm2022/src/lib/services/http/client/client-coupon.service.mjs +27 -0
- package/esm2022/src/lib/services/http/client/index.mjs +6 -0
- package/esm2022/src/lib/services/http/client/occupation/occupation.service.mjs +43 -0
- package/esm2022/src/lib/services/http/client/sharesight-details.service.mjs +29 -0
- package/esm2022/src/lib/services/http/depreciation/depreciation-capital-project/depreciation-capital-project.service.mjs +27 -0
- package/esm2022/src/lib/services/http/depreciation/depreciation-capital-project/index.mjs +2 -0
- package/esm2022/src/lib/services/http/depreciation/depreciation.service.mjs +105 -0
- package/esm2022/src/lib/services/http/depreciation/index.mjs +3 -0
- package/esm2022/src/lib/services/http/document/document-folder/document-folder-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/document/document-folder/document-folder.service.mjs +26 -0
- package/esm2022/src/lib/services/http/document/document-folder/index.mjs +3 -0
- package/esm2022/src/lib/services/http/document/document-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/document/document.service.mjs +23 -0
- package/esm2022/src/lib/services/http/document/index.mjs +4 -0
- package/esm2022/src/lib/services/http/facebook/facebook-auth-options.interface.mjs +2 -0
- package/esm2022/src/lib/services/http/facebook/facebook-auth-response.interface.mjs +2 -0
- package/esm2022/src/lib/services/http/facebook/facebook-status-response.interface.mjs +2 -0
- package/esm2022/src/lib/services/http/facebook/facebook.service.mjs +87 -0
- package/esm2022/src/lib/services/http/facebook/index.mjs +2 -0
- package/esm2022/src/lib/services/http/file/file.service.mjs +39 -0
- package/esm2022/src/lib/services/http/file/index.mjs +2 -0
- package/esm2022/src/lib/services/http/firm/client-invite/client-invite-messages.enum.mjs +15 -0
- package/esm2022/src/lib/services/http/firm/client-invite/client-invite.service.mjs +104 -0
- package/esm2022/src/lib/services/http/firm/client-invite/index.mjs +3 -0
- package/esm2022/src/lib/services/http/firm/client-movement/client-movement-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/firm/client-movement/client-movement.service.mjs +86 -0
- package/esm2022/src/lib/services/http/firm/client-movement/index.mjs +3 -0
- package/esm2022/src/lib/services/http/firm/employee/employee-messages.enum.mjs +14 -0
- package/esm2022/src/lib/services/http/firm/employee/employee.service.mjs +48 -0
- package/esm2022/src/lib/services/http/firm/employee/index.mjs +3 -0
- package/esm2022/src/lib/services/http/firm/employee-invite/employee-invite.service.mjs +48 -0
- package/esm2022/src/lib/services/http/firm/employee-invite/index.mjs +2 -0
- package/esm2022/src/lib/services/http/firm/firm-branch/firm-branch-messages.enum.mjs +9 -0
- package/esm2022/src/lib/services/http/firm/firm-branch/firm-branch.service.mjs +23 -0
- package/esm2022/src/lib/services/http/firm/firm-branch/index.mjs +3 -0
- package/esm2022/src/lib/services/http/firm/firm-messages.enum.mjs +6 -0
- package/esm2022/src/lib/services/http/firm/firm.service.mjs +63 -0
- package/esm2022/src/lib/services/http/firm/index.mjs +9 -0
- package/esm2022/src/lib/services/http/firm/portfolio-report/client-portfolio-report.service.mjs +37 -0
- package/esm2022/src/lib/services/http/firm/portfolio-report/index.mjs +2 -0
- package/esm2022/src/lib/services/http/google/google.service.mjs +77 -0
- package/esm2022/src/lib/services/http/google/index.mjs +2 -0
- package/esm2022/src/lib/services/http/holding/holding-sale.service.mjs +25 -0
- package/esm2022/src/lib/services/http/holding/holding-trade-import/holding-trade-import-messages.enum.mjs +9 -0
- package/esm2022/src/lib/services/http/holding/holding-trade-import/holding-trade-import.service.mjs +45 -0
- package/esm2022/src/lib/services/http/holding/holding-trade-messages.enum.mjs +10 -0
- package/esm2022/src/lib/services/http/holding/holding-trade.service.mjs +42 -0
- package/esm2022/src/lib/services/http/holding/holding-type-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/holding/holding-type.service.mjs +47 -0
- package/esm2022/src/lib/services/http/holding/index.mjs +9 -0
- package/esm2022/src/lib/services/http/home-office/home-office-claim-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/home-office/home-office-claim.service.mjs +25 -0
- package/esm2022/src/lib/services/http/home-office/home-office-log-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/home-office/home-office-log.service.mjs +31 -0
- package/esm2022/src/lib/services/http/home-office/index.mjs +5 -0
- package/esm2022/src/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.mjs +84 -0
- package/esm2022/src/lib/services/http/income-source/income-source-forecast/index.mjs +2 -0
- package/esm2022/src/lib/services/http/income-source/income-source-messages.enum.mjs +10 -0
- package/esm2022/src/lib/services/http/income-source/income-source.service.mjs +93 -0
- package/esm2022/src/lib/services/http/income-source/index.mjs +6 -0
- package/esm2022/src/lib/services/http/income-source/salary-forecast/index.mjs +2 -0
- package/esm2022/src/lib/services/http/income-source/salary-forecast/salary-forecast.service.mjs +83 -0
- package/esm2022/src/lib/services/http/income-source/sole-forecast/index.mjs +2 -0
- package/esm2022/src/lib/services/http/income-source/sole-forecast/sole-forecast.service.mjs +91 -0
- package/esm2022/src/lib/services/http/index.mjs +32 -0
- package/esm2022/src/lib/services/http/loan/borrowing-expense/borrowing-expense.service.mjs +74 -0
- package/esm2022/src/lib/services/http/loan/borrowing-expense/index.mjs +2 -0
- package/esm2022/src/lib/services/http/loan/index.mjs +4 -0
- package/esm2022/src/lib/services/http/loan/loan-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/loan/loan.service.mjs +94 -0
- package/esm2022/src/lib/services/http/pdf/pdf.service.mjs +30 -0
- package/esm2022/src/lib/services/http/property/borrowing-report/borrowing-report-messages.enum.mjs +7 -0
- package/esm2022/src/lib/services/http/property/borrowing-report/borrowing-report.service.mjs +23 -0
- package/esm2022/src/lib/services/http/property/borrowing-report/index.mjs +3 -0
- package/esm2022/src/lib/services/http/property/index.mjs +10 -0
- package/esm2022/src/lib/services/http/property/property-category/index.mjs +2 -0
- package/esm2022/src/lib/services/http/property/property-category/property-category.service.mjs +26 -0
- package/esm2022/src/lib/services/http/property/property-category-movement/index.mjs +2 -0
- package/esm2022/src/lib/services/http/property/property-category-movement/property-category-movement.service.mjs +33 -0
- package/esm2022/src/lib/services/http/property/property-document/index.mjs +3 -0
- package/esm2022/src/lib/services/http/property/property-document/property-document-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/property/property-document/property-document.service.mjs +26 -0
- package/esm2022/src/lib/services/http/property/property-messages.enum.mjs +11 -0
- package/esm2022/src/lib/services/http/property/property-sale/index.mjs +3 -0
- package/esm2022/src/lib/services/http/property/property-sale/property-sale.service.mjs +25 -0
- package/esm2022/src/lib/services/http/property/property-share/index.mjs +2 -0
- package/esm2022/src/lib/services/http/property/property-share/property-share.service.mjs +68 -0
- package/esm2022/src/lib/services/http/property/property-valuation/index.mjs +3 -0
- package/esm2022/src/lib/services/http/property/property-valuation/property-valuation-messages.enum.mjs +7 -0
- package/esm2022/src/lib/services/http/property/property-valuation/property-valuation.service.mjs +24 -0
- package/esm2022/src/lib/services/http/property/property.service.mjs +136 -0
- package/esm2022/src/lib/services/http/rest/http-error-messages.const.mjs +14 -0
- package/esm2022/src/lib/services/http/rest/http-method.type.mjs +2 -0
- package/esm2022/src/lib/services/http/rest/index.mjs +5 -0
- package/esm2022/src/lib/services/http/rest/rest-method.type.mjs +2 -0
- package/esm2022/src/lib/services/http/rest/rest-old.service.mjs +247 -0
- package/esm2022/src/lib/services/http/rest/rest.service.mjs +356 -0
- package/esm2022/src/lib/services/http/rest-messages.enum.mjs +7 -0
- package/esm2022/src/lib/services/http/service-notification/index.mjs +2 -0
- package/esm2022/src/lib/services/http/service-notification/service-notification.service.mjs +72 -0
- package/esm2022/src/lib/services/http/setup-item/setup-item.service.mjs +23 -0
- package/esm2022/src/lib/services/http/sole/bas-report/bas-report-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/sole/bas-report/bas-report.service.mjs +20 -0
- package/esm2022/src/lib/services/http/sole/bas-report/index.mjs +3 -0
- package/esm2022/src/lib/services/http/sole/index.mjs +11 -0
- package/esm2022/src/lib/services/http/sole/sole-business/index.mjs +3 -0
- package/esm2022/src/lib/services/http/sole/sole-business/sole-business-messages.enum.mjs +5 -0
- package/esm2022/src/lib/services/http/sole/sole-business/sole-business.service.mjs +24 -0
- package/esm2022/src/lib/services/http/sole/sole-business-activity/sole-business-activity.service.mjs +20 -0
- package/esm2022/src/lib/services/http/sole/sole-business-loss/sole-business-loss-rules/sole-business-loss-offset-rule.service.mjs +23 -0
- package/esm2022/src/lib/services/http/sole/sole-business-loss/sole-business-loss.service.mjs +41 -0
- package/esm2022/src/lib/services/http/sole/sole-contact/sole-contact.service.mjs +20 -0
- package/esm2022/src/lib/services/http/sole/sole-depreciation-method/sole-depreciation-method.service.mjs +73 -0
- package/esm2022/src/lib/services/http/sole/sole-details/sole-details.service.mjs +33 -0
- package/esm2022/src/lib/services/http/sole/sole-invoice/sole-invoice.service.mjs +46 -0
- package/esm2022/src/lib/services/http/sole/sole-invoice-template/sole-invoice-template.service.mjs +20 -0
- package/esm2022/src/lib/services/http/subscription/index.mjs +7 -0
- package/esm2022/src/lib/services/http/subscription/service-payment/service-payment.service.mjs +33 -0
- package/esm2022/src/lib/services/http/subscription/service-payment-method/service-payment-method.service.mjs +45 -0
- package/esm2022/src/lib/services/http/subscription/service-price/service-price.service.mjs +26 -0
- package/esm2022/src/lib/services/http/subscription/service-product/service-product.service.mjs +23 -0
- package/esm2022/src/lib/services/http/subscription/service-subscription/subscription-messages.enum.mjs +10 -0
- package/esm2022/src/lib/services/http/subscription/service-subscription/subscription.service.mjs +84 -0
- package/esm2022/src/lib/services/http/tax-review/index.mjs +4 -0
- package/esm2022/src/lib/services/http/tax-review/tax-review-history/tax-review-history.service.mjs +45 -0
- package/esm2022/src/lib/services/http/tax-review/tax-review-messages.enum.mjs +20 -0
- package/esm2022/src/lib/services/http/tax-review/tax-review.service.mjs +106 -0
- package/esm2022/src/lib/services/http/tax-summary/index.mjs +2 -0
- package/esm2022/src/lib/services/http/tax-summary/tax-summary.service.mjs +71 -0
- package/esm2022/src/lib/services/http/transaction/index.mjs +5 -0
- package/esm2022/src/lib/services/http/transaction/prior-transaction.service.mjs +33 -0
- package/esm2022/src/lib/services/http/transaction/transaction-allocation/allocation-rule/allocation-rule.service.mjs +26 -0
- package/esm2022/src/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.mjs +117 -0
- package/esm2022/src/lib/services/http/transaction/transaction.service.mjs +273 -0
- package/esm2022/src/lib/services/http/user/financial-year/financial-year.service.mjs +29 -0
- package/esm2022/src/lib/services/http/user/index.mjs +8 -0
- package/esm2022/src/lib/services/http/user/user-event-setting/user-event-setting.service.mjs +23 -0
- package/esm2022/src/lib/services/http/user/user-event-type/user-event-type.service.mjs +23 -0
- package/esm2022/src/lib/services/http/user/user-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/user/user.service.mjs +112 -0
- package/esm2022/src/lib/services/http/user/users-invite/users-invite.service.mjs +23 -0
- package/esm2022/src/lib/services/http/vehicle/index.mjs +6 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle-claim-details.service.mjs +74 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle-claim.service.mjs +49 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle-logbook/index.mjs +3 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle-logbook/vehicle-logbook-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle-logbook/vehicle-logbook.service.mjs +26 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle-messages.enum.mjs +8 -0
- package/esm2022/src/lib/services/http/vehicle/vehicle.service.mjs +25 -0
- package/esm2022/src/lib/services/http/youtube/index.mjs +3 -0
- package/esm2022/src/lib/services/http/youtube/youtube-video.interface.mjs +2 -0
- package/esm2022/src/lib/services/http/youtube/youtube.service.mjs +34 -0
- package/esm2022/src/lib/services/index.mjs +19 -0
- package/esm2022/src/lib/services/intercom/index.mjs +2 -0
- package/esm2022/src/lib/services/intercom/intercom.service.mjs +41 -0
- package/esm2022/src/lib/services/json/chart-accounts/chart-accounts-value.service.mjs +23 -0
- package/esm2022/src/lib/services/json/holding/holding-type-exchange.service.mjs +23 -0
- package/esm2022/src/lib/services/json/income-source/income-source-type.service.mjs +23 -0
- package/esm2022/src/lib/services/json/index.mjs +6 -0
- package/esm2022/src/lib/services/json/tax-exemption/tax-exemption.service.mjs +23 -0
- package/esm2022/src/lib/services/json/tax-return/tax-return-item.service.mjs +23 -0
- package/esm2022/src/lib/services/pdf/index.mjs +6 -0
- package/esm2022/src/lib/services/pdf/js-pdf.mjs +10 -0
- package/esm2022/src/lib/services/pdf/pdf-from-dom-element/file-settings.mjs +21 -0
- package/esm2022/src/lib/services/pdf/pdf-from-dom-element/pdf-from-dom-element.service.mjs +47 -0
- package/esm2022/src/lib/services/pdf/pdf-from-table/file-settings.mjs +36 -0
- package/esm2022/src/lib/services/pdf/pdf-from-table/pdf-from-data-table/pdf-from-data-table.service.mjs +46 -0
- package/esm2022/src/lib/services/pdf/pdf-from-table/pdf-from-html-table/pdf-from-html-table.service.mjs +42 -0
- package/esm2022/src/lib/services/pdf/pdf-from-table/pdf-from-table.service.mjs +63 -0
- package/esm2022/src/lib/services/preloader/index.mjs +2 -0
- package/esm2022/src/lib/services/preloader/preloader.service.mjs +30 -0
- package/esm2022/src/lib/services/property/corelogic/corelogic-messages.enum.mjs +5 -0
- package/esm2022/src/lib/services/property/corelogic/corelogic.service.mjs +48 -0
- package/esm2022/src/lib/services/property/corelogic/index.mjs +3 -0
- package/esm2022/src/lib/services/property/equity-position-chart/equity-position-chart.service.mjs +39 -0
- package/esm2022/src/lib/services/property/equity-position-chart/index.mjs +2 -0
- package/esm2022/src/lib/services/property/index.mjs +4 -0
- package/esm2022/src/lib/services/property/property-calculation/index.mjs +2 -0
- package/esm2022/src/lib/services/property/property-calculation/property-calculation.service.mjs +158 -0
- package/esm2022/src/lib/services/report/index.mjs +2 -0
- package/esm2022/src/lib/services/report/property/property-transaction-report.service.mjs +68 -0
- package/esm2022/src/lib/services/toast/index.mjs +2 -0
- package/esm2022/src/lib/services/toast/toast.service.mjs +59 -0
- package/esm2022/src/lib/services/user/index.mjs +2 -0
- package/esm2022/src/lib/services/user/user-switcher.service.mjs +37 -0
- package/esm2022/src/lib/services/xlsx/index.mjs +2 -0
- package/esm2022/src/lib/services/xlsx/xlsx.service.mjs +102 -0
- package/esm2022/src/lib/validators/at-least-one-enabled.validator.mjs +9 -0
- package/esm2022/src/lib/validators/at-least-one.validator.mjs +9 -0
- package/esm2022/src/lib/validators/autocomplete.validator.mjs +8 -0
- package/esm2022/src/lib/validators/conditional.validator.mjs +26 -0
- package/esm2022/src/lib/validators/current-fin-year.validator.mjs +15 -0
- package/esm2022/src/lib/validators/date/max-date.validator.mjs +17 -0
- package/esm2022/src/lib/validators/date/min-date.validator.mjs +17 -0
- package/esm2022/src/lib/validators/date-range.validator.mjs +22 -0
- package/esm2022/src/lib/validators/fields-sum.validator.mjs +24 -0
- package/esm2022/src/lib/validators/file.validator.mjs +36 -0
- package/esm2022/src/lib/validators/greater-than.validator.mjs +12 -0
- package/esm2022/src/lib/validators/group.validator.mjs +11 -0
- package/esm2022/src/lib/validators/index.mjs +15 -0
- package/esm2022/src/lib/validators/match-sum.validator.mjs +16 -0
- package/esm2022/src/lib/validators/password-match.validator.mjs +17 -0
- package/esm2022/src/lib/validators/password.validator.mjs +20 -0
- package/esm2022/src/lib/validators/phone-number.validator.mjs +9 -0
- package/esm2022/src/lib/validators/required-length.validator.mjs +12 -0
- package/esm2022/src/lib/validators/string/alpha-space.validator.mjs +10 -0
- package/esm2022/src/lib/validators/unique-email.validator.mjs +19 -0
- package/esm2022/taxtank-core.mjs +5 -0
- package/fesm2022/taxtank-core-common.mjs +20 -20
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +408 -409
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +19 -15
- package/src/lib/db/Enums/holding/holding-type-category.enum.d.ts +3 -3
- package/src/lib/models/index.d.ts +0 -1
@@ -0,0 +1,1778 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"id": 1,
|
4
|
+
"taxReturnCategory": { "id": 1 },
|
5
|
+
"code": 1,
|
6
|
+
"subCode": "C",
|
7
|
+
"taxReturnCode": null,
|
8
|
+
"name": "Salary or wages",
|
9
|
+
"seq": 10,
|
10
|
+
"isOtherIncome": 0,
|
11
|
+
"createdAt": "2020-06-01 00:00:00",
|
12
|
+
"updatedAt": "2020-06-01 00:00:00"
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"id": 2,
|
16
|
+
"taxReturnCategory": { "id": 30 },
|
17
|
+
"code": 2,
|
18
|
+
"subCode": "K",
|
19
|
+
"taxReturnCode": null,
|
20
|
+
"name": "Allowances, earnings, tips, directors fees",
|
21
|
+
"seq": 20,
|
22
|
+
"isOtherIncome": 0,
|
23
|
+
"createdAt": "2020-06-01 00:00:00",
|
24
|
+
"updatedAt": "2020-06-01 00:00:00"
|
25
|
+
},
|
26
|
+
{
|
27
|
+
"id": 3,
|
28
|
+
"taxReturnCategory": { "id": 31 },
|
29
|
+
"code": 3,
|
30
|
+
"subCode": "R",
|
31
|
+
"taxReturnCode": null,
|
32
|
+
"name": "Employer lump sum payments",
|
33
|
+
"seq": 30,
|
34
|
+
"isOtherIncome": 0,
|
35
|
+
"createdAt": "2020-06-01 00:00:00",
|
36
|
+
"updatedAt": "2020-06-01 00:00:00"
|
37
|
+
},
|
38
|
+
{
|
39
|
+
"id": 4,
|
40
|
+
"taxReturnCategory": { "id": 32 },
|
41
|
+
"code": 4,
|
42
|
+
"subCode": "I",
|
43
|
+
"taxReturnCode": null,
|
44
|
+
"name": "Employment termination payments",
|
45
|
+
"seq": 40,
|
46
|
+
"isOtherIncome": 0,
|
47
|
+
"createdAt": "2020-06-01 00:00:00",
|
48
|
+
"updatedAt": "2020-06-01 00:00:00"
|
49
|
+
},
|
50
|
+
{
|
51
|
+
"id": 5,
|
52
|
+
"taxReturnCategory": { "id": 2 },
|
53
|
+
"code": 5,
|
54
|
+
"subCode": "A",
|
55
|
+
"taxReturnCode": null,
|
56
|
+
"name": "Australian Government allowances and payments",
|
57
|
+
"seq": 50,
|
58
|
+
"isOtherIncome": 1,
|
59
|
+
"createdAt": "2020-06-01 00:00:00",
|
60
|
+
"updatedAt": "2020-06-01 00:00:00"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"id": 6,
|
64
|
+
"taxReturnCategory": { "id": 33 },
|
65
|
+
"code": 6,
|
66
|
+
"subCode": "B",
|
67
|
+
"taxReturnCode": null,
|
68
|
+
"name": "Australian Government pensions and allowances",
|
69
|
+
"seq": 60,
|
70
|
+
"isOtherIncome": 1,
|
71
|
+
"createdAt": "2020-06-01 00:00:00",
|
72
|
+
"updatedAt": "2020-06-01 00:00:00"
|
73
|
+
},
|
74
|
+
{
|
75
|
+
"id": 7,
|
76
|
+
"taxReturnCategory": { "id": 3 },
|
77
|
+
"code": 7,
|
78
|
+
"subCode": null,
|
79
|
+
"taxReturnCode": null,
|
80
|
+
"name": "Australian annuities and superannuation income streams",
|
81
|
+
"seq": 70,
|
82
|
+
"isOtherIncome": 1,
|
83
|
+
"createdAt": "2020-06-01 00:00:00",
|
84
|
+
"updatedAt": "2020-06-01 00:00:00"
|
85
|
+
},
|
86
|
+
{
|
87
|
+
"id": 8,
|
88
|
+
"taxReturnCategory": { "id": 34 },
|
89
|
+
"code": 8,
|
90
|
+
"subCode": null,
|
91
|
+
"taxReturnCode": null,
|
92
|
+
"name": "Australian superannuation lump sum payments",
|
93
|
+
"seq": 80,
|
94
|
+
"isOtherIncome": 1,
|
95
|
+
"createdAt": "2020-06-01 00:00:00",
|
96
|
+
"updatedAt": "2020-06-01 00:00:00"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"id": 9,
|
100
|
+
"taxReturnCategory": { "id": 4 },
|
101
|
+
"code": 9,
|
102
|
+
"subCode": "O",
|
103
|
+
"taxReturnCode": null,
|
104
|
+
"name": "Attributed personal services income",
|
105
|
+
"seq": 90,
|
106
|
+
"isOtherIncome": 0,
|
107
|
+
"createdAt": "2020-06-01 00:00:00",
|
108
|
+
"updatedAt": "2020-06-01 00:00:00"
|
109
|
+
},
|
110
|
+
{
|
111
|
+
"id": 10,
|
112
|
+
"taxReturnCategory": { "id": 5 },
|
113
|
+
"code": 10,
|
114
|
+
"subCode": "L",
|
115
|
+
"taxReturnCode": null,
|
116
|
+
"name": "Gross interest",
|
117
|
+
"seq": 100,
|
118
|
+
"isOtherIncome": 1,
|
119
|
+
"createdAt": "2020-06-01 00:00:00",
|
120
|
+
"updatedAt": "2020-06-01 00:00:00"
|
121
|
+
},
|
122
|
+
{
|
123
|
+
"id": 11,
|
124
|
+
"taxReturnCategory": { "id": 6 },
|
125
|
+
"code": 11,
|
126
|
+
"subCode": null,
|
127
|
+
"taxReturnCode": null,
|
128
|
+
"name": "Dividends",
|
129
|
+
"seq": 110,
|
130
|
+
"isOtherIncome": 1,
|
131
|
+
"createdAt": "2020-06-01 00:00:00",
|
132
|
+
"updatedAt": "2020-06-01 00:00:00"
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"id": 12,
|
136
|
+
"taxReturnCategory": { "id": 35 },
|
137
|
+
"code": 12,
|
138
|
+
"subCode": null,
|
139
|
+
"taxReturnCode": null,
|
140
|
+
"name": "Employee share schemes",
|
141
|
+
"seq": 120,
|
142
|
+
"isOtherIncome": 1,
|
143
|
+
"createdAt": "2020-06-01 00:00:00",
|
144
|
+
"updatedAt": "2020-06-01 00:00:00"
|
145
|
+
},
|
146
|
+
{
|
147
|
+
"id": 13,
|
148
|
+
"taxReturnCategory": { "id": 13 },
|
149
|
+
"code": 13,
|
150
|
+
"subCode": null,
|
151
|
+
"taxReturnCode": null,
|
152
|
+
"name": "Partnerships and trusts",
|
153
|
+
"seq": 130,
|
154
|
+
"isOtherIncome": 1,
|
155
|
+
"createdAt": "2020-06-01 00:00:00",
|
156
|
+
"updatedAt": "2020-06-01 00:00:00"
|
157
|
+
},
|
158
|
+
{
|
159
|
+
"id": 14,
|
160
|
+
"taxReturnCategory": { "id": 14 },
|
161
|
+
"code": 14,
|
162
|
+
"subCode": "N",
|
163
|
+
"taxReturnCode": null,
|
164
|
+
"name": "Personal services income (PSI) - ABN not quoted",
|
165
|
+
"seq": 140,
|
166
|
+
"isOtherIncome": 1,
|
167
|
+
"createdAt": "2020-06-01 00:00:00",
|
168
|
+
"updatedAt": "2020-06-01 00:00:00"
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"id": 15,
|
172
|
+
"taxReturnCategory": { "id": 38 },
|
173
|
+
"code": 15,
|
174
|
+
"subCode": null,
|
175
|
+
"taxReturnCode": null,
|
176
|
+
"name": "Net income or loss from business",
|
177
|
+
"seq": 150,
|
178
|
+
"isOtherIncome": 1,
|
179
|
+
"createdAt": "2020-06-01 00:00:00",
|
180
|
+
"updatedAt": "2020-06-01 00:00:00"
|
181
|
+
},
|
182
|
+
{
|
183
|
+
"id": 16,
|
184
|
+
"taxReturnCategory": { "id": 16 },
|
185
|
+
"code": 16,
|
186
|
+
"subCode": null,
|
187
|
+
"taxReturnCode": null,
|
188
|
+
"name": "Deferred non-commercial business losses",
|
189
|
+
"seq": 160,
|
190
|
+
"isOtherIncome": 1,
|
191
|
+
"createdAt": "2020-06-01 00:00:00",
|
192
|
+
"updatedAt": "2020-06-01 00:00:00"
|
193
|
+
},
|
194
|
+
{
|
195
|
+
"id": 17,
|
196
|
+
"taxReturnCategory": { "id": 17 },
|
197
|
+
"code": 17,
|
198
|
+
"subCode": null,
|
199
|
+
"taxReturnCode": null,
|
200
|
+
"name": "Net farm management deposits or repayments",
|
201
|
+
"seq": 170,
|
202
|
+
"isOtherIncome": 1,
|
203
|
+
"createdAt": "2020-06-01 00:00:00",
|
204
|
+
"updatedAt": "2020-06-01 00:00:00"
|
205
|
+
},
|
206
|
+
{
|
207
|
+
"id": 18,
|
208
|
+
"taxReturnCategory": { "id": 15 },
|
209
|
+
"code": 18,
|
210
|
+
"subCode": null,
|
211
|
+
"taxReturnCode": null,
|
212
|
+
"name": "Capital gains",
|
213
|
+
"seq": 180,
|
214
|
+
"isOtherIncome": 1,
|
215
|
+
"createdAt": "2020-06-01 00:00:00",
|
216
|
+
"updatedAt": "2020-06-01 00:00:00"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"id": 19,
|
220
|
+
"taxReturnCategory": { "id": 17 },
|
221
|
+
"code": 19,
|
222
|
+
"subCode": null,
|
223
|
+
"taxReturnCode": null,
|
224
|
+
"name": "Foreign entities",
|
225
|
+
"seq": 190,
|
226
|
+
"isOtherIncome": 1,
|
227
|
+
"createdAt": "2020-06-01 00:00:00",
|
228
|
+
"updatedAt": "2020-06-01 00:00:00"
|
229
|
+
},
|
230
|
+
{
|
231
|
+
"id": 20,
|
232
|
+
"taxReturnCategory": { "id": 16 },
|
233
|
+
"code": 20,
|
234
|
+
"subCode": null,
|
235
|
+
"taxReturnCode": null,
|
236
|
+
"name": "Foreign source income and foreign assets or property",
|
237
|
+
"seq": 200,
|
238
|
+
"isOtherIncome": 1,
|
239
|
+
"createdAt": "2020-06-01 00:00:00",
|
240
|
+
"updatedAt": "2020-06-01 00:00:00"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"id": 21,
|
244
|
+
"taxReturnCategory": { "id": 12 },
|
245
|
+
"code": 21,
|
246
|
+
"subCode": "T",
|
247
|
+
"taxReturnCode": "U",
|
248
|
+
"name": "Travel Expenses",
|
249
|
+
"seq": 210,
|
250
|
+
"isOtherIncome": 1,
|
251
|
+
"createdAt": "2020-06-01 00:00:00",
|
252
|
+
"updatedAt": "2020-06-01 00:00:00"
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"id": 22,
|
256
|
+
"taxReturnCategory": { "id": 8 },
|
257
|
+
"code": 21,
|
258
|
+
"subCode": "A",
|
259
|
+
"taxReturnCode": "P",
|
260
|
+
"name": "Rental Income",
|
261
|
+
"seq": 220,
|
262
|
+
"isOtherIncome": 1,
|
263
|
+
"createdAt": "2020-06-01 00:00:00",
|
264
|
+
"updatedAt": "2020-06-01 00:00:00"
|
265
|
+
},
|
266
|
+
{
|
267
|
+
"id": 23,
|
268
|
+
"taxReturnCategory": { "id": 8 },
|
269
|
+
"code": 21,
|
270
|
+
"subCode": "B",
|
271
|
+
"taxReturnCode": "P",
|
272
|
+
"name": "Other rental Income",
|
273
|
+
"seq": 230,
|
274
|
+
"isOtherIncome": 1,
|
275
|
+
"createdAt": "2020-06-01 00:00:00",
|
276
|
+
"updatedAt": "2020-06-01 00:00:00"
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"id": 24,
|
280
|
+
"taxReturnCategory": { "id": 9 },
|
281
|
+
"code": 21,
|
282
|
+
"subCode": "L",
|
283
|
+
"taxReturnCode": "Q",
|
284
|
+
"name": "Interest on loan(s)",
|
285
|
+
"seq": 240,
|
286
|
+
"isOtherIncome": 1,
|
287
|
+
"createdAt": "2020-06-01 00:00:00",
|
288
|
+
"updatedAt": "2020-06-01 00:00:00"
|
289
|
+
},
|
290
|
+
{
|
291
|
+
"id": 25,
|
292
|
+
"taxReturnCategory": { "id": 10 },
|
293
|
+
"code": 21,
|
294
|
+
"subCode": "R",
|
295
|
+
"taxReturnCode": "F",
|
296
|
+
"name": "Capital Works - Depreciation",
|
297
|
+
"seq": 250,
|
298
|
+
"isOtherIncome": 1,
|
299
|
+
"createdAt": "2020-06-01 00:00:00",
|
300
|
+
"updatedAt": "2020-06-01 00:00:00"
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"id": 26,
|
304
|
+
"taxReturnCategory": { "id": 12 },
|
305
|
+
"code": 21,
|
306
|
+
"subCode": "D",
|
307
|
+
"taxReturnCode": "U",
|
308
|
+
"name": "Advertising for tenants",
|
309
|
+
"seq": 260,
|
310
|
+
"isOtherIncome": 1,
|
311
|
+
"createdAt": "2020-06-01 00:00:00",
|
312
|
+
"updatedAt": "2020-06-01 00:00:00"
|
313
|
+
},
|
314
|
+
{
|
315
|
+
"id": 27,
|
316
|
+
"taxReturnCategory": { "id": 12 },
|
317
|
+
"code": 21,
|
318
|
+
"subCode": "E",
|
319
|
+
"taxReturnCode": "U",
|
320
|
+
"name": "Body Corporate Fees",
|
321
|
+
"seq": 270,
|
322
|
+
"isOtherIncome": 1,
|
323
|
+
"createdAt": "2020-06-01 00:00:00",
|
324
|
+
"updatedAt": "2020-06-01 00:00:00"
|
325
|
+
},
|
326
|
+
{
|
327
|
+
"id": 28,
|
328
|
+
"taxReturnCategory": { "id": 29 },
|
329
|
+
"code": 21,
|
330
|
+
"subCode": "F",
|
331
|
+
"taxReturnCode": "U",
|
332
|
+
"name": "Borrowing Expenses",
|
333
|
+
"seq": 280,
|
334
|
+
"isOtherIncome": 1,
|
335
|
+
"createdAt": "2020-06-01 00:00:00",
|
336
|
+
"updatedAt": "2020-06-01 00:00:00"
|
337
|
+
},
|
338
|
+
{
|
339
|
+
"id": 29,
|
340
|
+
"taxReturnCategory": { "id": 12 },
|
341
|
+
"code": 21,
|
342
|
+
"subCode": "G",
|
343
|
+
"taxReturnCode": "U",
|
344
|
+
"name": "Cleaning",
|
345
|
+
"seq": 290,
|
346
|
+
"isOtherIncome": 1,
|
347
|
+
"createdAt": "2020-06-01 00:00:00",
|
348
|
+
"updatedAt": "2020-06-01 00:00:00"
|
349
|
+
},
|
350
|
+
{
|
351
|
+
"id": 30,
|
352
|
+
"taxReturnCategory": { "id": 12 },
|
353
|
+
"code": 21,
|
354
|
+
"subCode": "H",
|
355
|
+
"taxReturnCode": "U",
|
356
|
+
"name": "Council Rates",
|
357
|
+
"seq": 300,
|
358
|
+
"isOtherIncome": 1,
|
359
|
+
"createdAt": "2020-06-01 00:00:00",
|
360
|
+
"updatedAt": "2020-06-01 00:00:00"
|
361
|
+
},
|
362
|
+
{
|
363
|
+
"id": 31,
|
364
|
+
"taxReturnCategory": { "id": 12 },
|
365
|
+
"code": 21,
|
366
|
+
"subCode": "J",
|
367
|
+
"taxReturnCode": "U",
|
368
|
+
"name": "Gardening / Lawn Mowing",
|
369
|
+
"seq": 310,
|
370
|
+
"isOtherIncome": 1,
|
371
|
+
"createdAt": "2020-06-01 00:00:00",
|
372
|
+
"updatedAt": "2020-06-01 00:00:00"
|
373
|
+
},
|
374
|
+
{
|
375
|
+
"id": 32,
|
376
|
+
"taxReturnCategory": { "id": 11 },
|
377
|
+
"code": 21,
|
378
|
+
"subCode": "I",
|
379
|
+
"taxReturnCode": "U",
|
380
|
+
"name": "Plant & Equipment - Depreciation & Low Value Pool",
|
381
|
+
"seq": 320,
|
382
|
+
"isOtherIncome": 1,
|
383
|
+
"createdAt": "2020-06-01 00:00:00",
|
384
|
+
"updatedAt": "2020-06-01 00:00:00"
|
385
|
+
},
|
386
|
+
{
|
387
|
+
"id": 33,
|
388
|
+
"taxReturnCategory": { "id": 12 },
|
389
|
+
"code": 21,
|
390
|
+
"subCode": "K",
|
391
|
+
"taxReturnCode": "U",
|
392
|
+
"name": "Insurance",
|
393
|
+
"seq": 330,
|
394
|
+
"isOtherIncome": 1,
|
395
|
+
"createdAt": "2020-06-01 00:00:00",
|
396
|
+
"updatedAt": "2020-06-01 00:00:00"
|
397
|
+
},
|
398
|
+
{
|
399
|
+
"id": 34,
|
400
|
+
"taxReturnCategory": { "id": 12 },
|
401
|
+
"code": 21,
|
402
|
+
"subCode": "M",
|
403
|
+
"taxReturnCode": "U",
|
404
|
+
"name": "Land Tax",
|
405
|
+
"seq": 340,
|
406
|
+
"isOtherIncome": 1,
|
407
|
+
"createdAt": "2020-06-01 00:00:00",
|
408
|
+
"updatedAt": "2020-06-01 00:00:00"
|
409
|
+
},
|
410
|
+
{
|
411
|
+
"id": 35,
|
412
|
+
"taxReturnCategory": { "id": 12 },
|
413
|
+
"code": 21,
|
414
|
+
"subCode": "N",
|
415
|
+
"taxReturnCode": "U",
|
416
|
+
"name": "Legal Fees",
|
417
|
+
"seq": 350,
|
418
|
+
"isOtherIncome": 1,
|
419
|
+
"createdAt": "2020-06-01 00:00:00",
|
420
|
+
"updatedAt": "2020-06-01 00:00:00"
|
421
|
+
},
|
422
|
+
{
|
423
|
+
"id": 36,
|
424
|
+
"taxReturnCategory": { "id": 12 },
|
425
|
+
"code": 21,
|
426
|
+
"subCode": "O",
|
427
|
+
"taxReturnCode": "U",
|
428
|
+
"name": "Pest Control",
|
429
|
+
"seq": 360,
|
430
|
+
"isOtherIncome": 1,
|
431
|
+
"createdAt": "2020-06-01 00:00:00",
|
432
|
+
"updatedAt": "2020-06-01 00:00:00"
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"id": 37,
|
436
|
+
"taxReturnCategory": { "id": 12 },
|
437
|
+
"code": 21,
|
438
|
+
"subCode": "P",
|
439
|
+
"taxReturnCode": "U",
|
440
|
+
"name": "Property Management Fees",
|
441
|
+
"seq": 370,
|
442
|
+
"isOtherIncome": 1,
|
443
|
+
"createdAt": "2020-06-01 00:00:00",
|
444
|
+
"updatedAt": "2020-06-01 00:00:00"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"id": 38,
|
448
|
+
"taxReturnCategory": { "id": 12 },
|
449
|
+
"code": 21,
|
450
|
+
"subCode": "Q",
|
451
|
+
"taxReturnCode": "U",
|
452
|
+
"name": "Repairs & Maintenance",
|
453
|
+
"seq": 380,
|
454
|
+
"isOtherIncome": 1,
|
455
|
+
"createdAt": "2020-06-01 00:00:00",
|
456
|
+
"updatedAt": "2020-06-01 00:00:00"
|
457
|
+
},
|
458
|
+
{
|
459
|
+
"id": 39,
|
460
|
+
"taxReturnCategory": { "id": 12 },
|
461
|
+
"code": 21,
|
462
|
+
"subCode": "S",
|
463
|
+
"taxReturnCode": "U",
|
464
|
+
"name": "Stationery / Phone / Postage",
|
465
|
+
"seq": 390,
|
466
|
+
"isOtherIncome": 1,
|
467
|
+
"createdAt": "2020-06-01 00:00:00",
|
468
|
+
"updatedAt": "2020-06-01 00:00:00"
|
469
|
+
},
|
470
|
+
{
|
471
|
+
"id": 40,
|
472
|
+
"taxReturnCategory": { "id": 12 },
|
473
|
+
"code": 21,
|
474
|
+
"subCode": "U",
|
475
|
+
"taxReturnCode": "U",
|
476
|
+
"name": "Water Charges",
|
477
|
+
"seq": 400,
|
478
|
+
"isOtherIncome": 1,
|
479
|
+
"createdAt": "2020-06-01 00:00:00",
|
480
|
+
"updatedAt": "2020-06-01 00:00:00"
|
481
|
+
},
|
482
|
+
{
|
483
|
+
"id": 41,
|
484
|
+
"taxReturnCategory": { "id": 12 },
|
485
|
+
"code": 21,
|
486
|
+
"subCode": "V",
|
487
|
+
"taxReturnCode": "U",
|
488
|
+
"name": "Sundry Rental Expenses",
|
489
|
+
"seq": 410,
|
490
|
+
"isOtherIncome": 1,
|
491
|
+
"createdAt": "2020-06-01 00:00:00",
|
492
|
+
"updatedAt": "2020-06-01 00:00:00"
|
493
|
+
},
|
494
|
+
{
|
495
|
+
"id": 42,
|
496
|
+
"taxReturnCategory": { "id": 17 },
|
497
|
+
"code": 22,
|
498
|
+
"subCode": "W",
|
499
|
+
"taxReturnCode": null,
|
500
|
+
"name": "Bonuses from life insurance companies and friendly societies",
|
501
|
+
"seq": 420,
|
502
|
+
"isOtherIncome": 1,
|
503
|
+
"createdAt": "2020-06-01 00:00:00",
|
504
|
+
"updatedAt": "2020-06-01 00:00:00"
|
505
|
+
},
|
506
|
+
{
|
507
|
+
"id": 43,
|
508
|
+
"taxReturnCategory": { "id": 39 },
|
509
|
+
"code": 23,
|
510
|
+
"subCode": null,
|
511
|
+
"taxReturnCode": null,
|
512
|
+
"name": "Forestry managed investment scheme income",
|
513
|
+
"seq": 430,
|
514
|
+
"isOtherIncome": 1,
|
515
|
+
"createdAt": "2020-06-01 00:00:00",
|
516
|
+
"updatedAt": "2020-06-01 00:00:00"
|
517
|
+
},
|
518
|
+
{
|
519
|
+
"id": 44,
|
520
|
+
"taxReturnCategory": { "id": 40 },
|
521
|
+
"code": 24,
|
522
|
+
"subCode": null,
|
523
|
+
"taxReturnCode": null,
|
524
|
+
"name": "Other income",
|
525
|
+
"seq": 440,
|
526
|
+
"isOtherIncome": 1,
|
527
|
+
"createdAt": "2020-06-01 00:00:00",
|
528
|
+
"updatedAt": "2020-06-01 00:00:00"
|
529
|
+
},
|
530
|
+
{
|
531
|
+
"id": 45,
|
532
|
+
"taxReturnCategory": { "id": 7 },
|
533
|
+
"code": "D1",
|
534
|
+
"subCode": null,
|
535
|
+
"taxReturnCode": null,
|
536
|
+
"name": "Work-related car expenses",
|
537
|
+
"seq": 450,
|
538
|
+
"isOtherIncome": 0,
|
539
|
+
"createdAt": "2020-06-01 00:00:00",
|
540
|
+
"updatedAt": "2020-06-01 00:00:00"
|
541
|
+
},
|
542
|
+
{
|
543
|
+
"id": 46,
|
544
|
+
"taxReturnCategory": { "id": 7 },
|
545
|
+
"code": "D1",
|
546
|
+
"subCode": "Claim S",
|
547
|
+
"taxReturnCode": null,
|
548
|
+
"name": "Klm's travelled for work",
|
549
|
+
"seq": 460,
|
550
|
+
"isOtherIncome": 0,
|
551
|
+
"createdAt": "2020-06-01 00:00:00",
|
552
|
+
"updatedAt": "2020-06-01 00:00:00"
|
553
|
+
},
|
554
|
+
{
|
555
|
+
"id": 47,
|
556
|
+
"taxReturnCategory": { "id": 7 },
|
557
|
+
"code": "D1",
|
558
|
+
"subCode": "Claim B",
|
559
|
+
"taxReturnCode": null,
|
560
|
+
"name": "Depreciation - Vehicles",
|
561
|
+
"seq": 470,
|
562
|
+
"isOtherIncome": 0,
|
563
|
+
"createdAt": "2020-06-01 00:00:00",
|
564
|
+
"updatedAt": "2020-06-01 00:00:00"
|
565
|
+
},
|
566
|
+
{
|
567
|
+
"id": 48,
|
568
|
+
"taxReturnCategory": { "id": 7 },
|
569
|
+
"code": "D2",
|
570
|
+
"subCode": null,
|
571
|
+
"taxReturnCode": null,
|
572
|
+
"name": "Work-related travel expenses",
|
573
|
+
"seq": 480,
|
574
|
+
"isOtherIncome": 0,
|
575
|
+
"createdAt": "2020-06-01 00:00:00",
|
576
|
+
"updatedAt": "2020-06-01 00:00:00"
|
577
|
+
},
|
578
|
+
{
|
579
|
+
"id": 49,
|
580
|
+
"taxReturnCategory": { "id": 7 },
|
581
|
+
"code": "D2",
|
582
|
+
"subCode": "A",
|
583
|
+
"taxReturnCode": null,
|
584
|
+
"name": "Award Transport",
|
585
|
+
"seq": 490,
|
586
|
+
"isOtherIncome": 0,
|
587
|
+
"createdAt": "2020-06-01 00:00:00",
|
588
|
+
"updatedAt": "2020-06-01 00:00:00"
|
589
|
+
},
|
590
|
+
{
|
591
|
+
"id": 50,
|
592
|
+
"taxReturnCategory": { "id": 7 },
|
593
|
+
"code": "D2",
|
594
|
+
"subCode": "D",
|
595
|
+
"taxReturnCode": null,
|
596
|
+
"name": "Domestic Transport",
|
597
|
+
"seq": 500,
|
598
|
+
"isOtherIncome": 0,
|
599
|
+
"createdAt": "2020-06-01 00:00:00",
|
600
|
+
"updatedAt": "2020-06-01 00:00:00"
|
601
|
+
},
|
602
|
+
{
|
603
|
+
"id": 51,
|
604
|
+
"taxReturnCategory": { "id": 7 },
|
605
|
+
"code": "D2",
|
606
|
+
"subCode": "T",
|
607
|
+
"taxReturnCode": null,
|
608
|
+
"name": "Tolls",
|
609
|
+
"seq": 510,
|
610
|
+
"isOtherIncome": 0,
|
611
|
+
"createdAt": "2020-06-01 00:00:00",
|
612
|
+
"updatedAt": "2020-06-01 00:00:00"
|
613
|
+
},
|
614
|
+
{
|
615
|
+
"id": 52,
|
616
|
+
"taxReturnCategory": { "id": 7 },
|
617
|
+
"code": "D2",
|
618
|
+
"subCode": "P",
|
619
|
+
"taxReturnCode": null,
|
620
|
+
"name": "Parking",
|
621
|
+
"seq": 520,
|
622
|
+
"isOtherIncome": 0,
|
623
|
+
"createdAt": "2020-06-01 00:00:00",
|
624
|
+
"updatedAt": "2020-06-01 00:00:00"
|
625
|
+
},
|
626
|
+
{
|
627
|
+
"id": 53,
|
628
|
+
"taxReturnCategory": { "id": 7 },
|
629
|
+
"code": "D2",
|
630
|
+
"subCode": "V",
|
631
|
+
"taxReturnCode": null,
|
632
|
+
"name": "Hire Vehicle Expenses",
|
633
|
+
"seq": 530,
|
634
|
+
"isOtherIncome": 0,
|
635
|
+
"createdAt": "2020-06-01 00:00:00",
|
636
|
+
"updatedAt": "2020-06-01 00:00:00"
|
637
|
+
},
|
638
|
+
{
|
639
|
+
"id": 54,
|
640
|
+
"taxReturnCategory": { "id": 7 },
|
641
|
+
"code": "D2",
|
642
|
+
"subCode": "O",
|
643
|
+
"taxReturnCode": null,
|
644
|
+
"name": "Travel Expenses - Other",
|
645
|
+
"seq": 540,
|
646
|
+
"isOtherIncome": 0,
|
647
|
+
"createdAt": "2020-06-01 00:00:00",
|
648
|
+
"updatedAt": "2020-06-01 00:00:00"
|
649
|
+
},
|
650
|
+
{
|
651
|
+
"id": 55,
|
652
|
+
"taxReturnCategory": { "id": 7 },
|
653
|
+
"code": "D3",
|
654
|
+
"subCode": null,
|
655
|
+
"taxReturnCode": null,
|
656
|
+
"name": "Work-related clothing expenses",
|
657
|
+
"seq": 550,
|
658
|
+
"isOtherIncome": 0,
|
659
|
+
"createdAt": "2020-06-01 00:00:00",
|
660
|
+
"updatedAt": "2020-06-01 00:00:00"
|
661
|
+
},
|
662
|
+
{
|
663
|
+
"id": 56,
|
664
|
+
"taxReturnCategory": { "id": 7 },
|
665
|
+
"code": "D3",
|
666
|
+
"subCode": "C",
|
667
|
+
"taxReturnCode": null,
|
668
|
+
"name": "Compulsory Work Uniform",
|
669
|
+
"seq": 560,
|
670
|
+
"isOtherIncome": 0,
|
671
|
+
"createdAt": "2020-06-01 00:00:00",
|
672
|
+
"updatedAt": "2020-06-01 00:00:00"
|
673
|
+
},
|
674
|
+
{
|
675
|
+
"id": 57,
|
676
|
+
"taxReturnCategory": { "id": 7 },
|
677
|
+
"code": "D3",
|
678
|
+
"subCode": "P",
|
679
|
+
"taxReturnCode": null,
|
680
|
+
"name": "Hi Vis Workwear",
|
681
|
+
"seq": 570,
|
682
|
+
"isOtherIncome": 0,
|
683
|
+
"createdAt": "2020-06-01 00:00:00",
|
684
|
+
"updatedAt": "2020-06-01 00:00:00"
|
685
|
+
},
|
686
|
+
{
|
687
|
+
"id": 58,
|
688
|
+
"taxReturnCategory": { "id": 7 },
|
689
|
+
"code": "D3",
|
690
|
+
"subCode": "S",
|
691
|
+
"taxReturnCode": null,
|
692
|
+
"name": "Occupational Specific Clothing",
|
693
|
+
"seq": 580,
|
694
|
+
"isOtherIncome": 0,
|
695
|
+
"createdAt": "2020-06-01 00:00:00",
|
696
|
+
"updatedAt": "2020-06-01 00:00:00"
|
697
|
+
},
|
698
|
+
{
|
699
|
+
"id": 59,
|
700
|
+
"taxReturnCategory": { "id": 7 },
|
701
|
+
"code": "D4",
|
702
|
+
"subCode": null,
|
703
|
+
"taxReturnCode": null,
|
704
|
+
"name": "Work-related self-education expenses",
|
705
|
+
"seq": 590,
|
706
|
+
"isOtherIncome": 0,
|
707
|
+
"createdAt": "2020-06-01 00:00:00",
|
708
|
+
"updatedAt": "2020-06-01 00:00:00"
|
709
|
+
},
|
710
|
+
{
|
711
|
+
"id": 60,
|
712
|
+
"taxReturnCategory": { "id": 7 },
|
713
|
+
"code": "D4",
|
714
|
+
"subCode": "A",
|
715
|
+
"taxReturnCode": null,
|
716
|
+
"name": "Course Fees",
|
717
|
+
"seq": 600,
|
718
|
+
"isOtherIncome": 0,
|
719
|
+
"createdAt": "2020-06-01 00:00:00",
|
720
|
+
"updatedAt": "2020-06-01 00:00:00"
|
721
|
+
},
|
722
|
+
{
|
723
|
+
"id": 61,
|
724
|
+
"taxReturnCategory": { "id": 7 },
|
725
|
+
"code": "D5",
|
726
|
+
"subCode": null,
|
727
|
+
"taxReturnCode": null,
|
728
|
+
"name": "Other work-related expenses",
|
729
|
+
"seq": 610,
|
730
|
+
"isOtherIncome": 0,
|
731
|
+
"createdAt": "2020-06-01 00:00:00",
|
732
|
+
"updatedAt": "2020-06-01 00:00:00"
|
733
|
+
},
|
734
|
+
{
|
735
|
+
"id": 62,
|
736
|
+
"taxReturnCategory": { "id": 7 },
|
737
|
+
"code": "D5",
|
738
|
+
"subCode": "A",
|
739
|
+
"taxReturnCode": null,
|
740
|
+
"name": "Mobile Phone",
|
741
|
+
"seq": 620,
|
742
|
+
"isOtherIncome": 0,
|
743
|
+
"createdAt": "2020-06-01 00:00:00",
|
744
|
+
"updatedAt": "2020-06-01 00:00:00"
|
745
|
+
},
|
746
|
+
{
|
747
|
+
"id": 63,
|
748
|
+
"taxReturnCategory": { "id": 7 },
|
749
|
+
"code": "D5",
|
750
|
+
"subCode": "B",
|
751
|
+
"taxReturnCode": null,
|
752
|
+
"name": "Books, Journals",
|
753
|
+
"seq": 630,
|
754
|
+
"isOtherIncome": 0,
|
755
|
+
"createdAt": "2020-06-01 00:00:00",
|
756
|
+
"updatedAt": "2020-06-01 00:00:00"
|
757
|
+
},
|
758
|
+
{
|
759
|
+
"id": 64,
|
760
|
+
"taxReturnCategory": { "id": 7 },
|
761
|
+
"code": "D5",
|
762
|
+
"subCode": "E",
|
763
|
+
"taxReturnCode": null,
|
764
|
+
"name": "Internet",
|
765
|
+
"seq": 640,
|
766
|
+
"isOtherIncome": 0,
|
767
|
+
"createdAt": "2020-06-01 00:00:00",
|
768
|
+
"updatedAt": "2020-06-01 00:00:00"
|
769
|
+
},
|
770
|
+
{
|
771
|
+
"id": 65,
|
772
|
+
"taxReturnCategory": { "id": 7 },
|
773
|
+
"code": "D5",
|
774
|
+
"subCode": "F",
|
775
|
+
"taxReturnCode": null,
|
776
|
+
"name": "Financial Institutions Duty (FID)",
|
777
|
+
"seq": 650,
|
778
|
+
"isOtherIncome": 0,
|
779
|
+
"createdAt": "2020-06-01 00:00:00",
|
780
|
+
"updatedAt": "2020-06-01 00:00:00"
|
781
|
+
},
|
782
|
+
{
|
783
|
+
"id": 66,
|
784
|
+
"taxReturnCategory": { "id": 7 },
|
785
|
+
"code": "D5",
|
786
|
+
"subCode": "G",
|
787
|
+
"taxReturnCode": null,
|
788
|
+
"name": "Subscriptions",
|
789
|
+
"seq": 660,
|
790
|
+
"isOtherIncome": 0,
|
791
|
+
"createdAt": "2020-06-01 00:00:00",
|
792
|
+
"updatedAt": "2020-06-01 00:00:00"
|
793
|
+
},
|
794
|
+
{
|
795
|
+
"id": 67,
|
796
|
+
"taxReturnCategory": { "id": 7 },
|
797
|
+
"code": "D5",
|
798
|
+
"subCode": "H",
|
799
|
+
"taxReturnCode": null,
|
800
|
+
"name": "Home Office - Running",
|
801
|
+
"seq": 670,
|
802
|
+
"isOtherIncome": 0,
|
803
|
+
"createdAt": "2020-06-01 00:00:00",
|
804
|
+
"updatedAt": "2020-06-01 00:00:00"
|
805
|
+
},
|
806
|
+
{
|
807
|
+
"id": 68,
|
808
|
+
"taxReturnCategory": { "id": 7 },
|
809
|
+
"code": "D5",
|
810
|
+
"subCode": "I",
|
811
|
+
"taxReturnCode": null,
|
812
|
+
"name": "Work-related depreciation",
|
813
|
+
"seq": 680,
|
814
|
+
"isOtherIncome": 0,
|
815
|
+
"createdAt": "2020-06-01 00:00:00",
|
816
|
+
"updatedAt": "2020-06-01 00:00:00"
|
817
|
+
},
|
818
|
+
{
|
819
|
+
"id": 70,
|
820
|
+
"taxReturnCategory": { "id": 7 },
|
821
|
+
"code": "D5",
|
822
|
+
"subCode": "J",
|
823
|
+
"taxReturnCode": null,
|
824
|
+
"name": "Home Office - Occupancy",
|
825
|
+
"seq": 700,
|
826
|
+
"isOtherIncome": 0,
|
827
|
+
"createdAt": "2020-06-01 00:00:00",
|
828
|
+
"updatedAt": "2020-06-01 00:00:00"
|
829
|
+
},
|
830
|
+
{
|
831
|
+
"id": 71,
|
832
|
+
"taxReturnCategory": { "id": 7 },
|
833
|
+
"code": "D5",
|
834
|
+
"subCode": "M",
|
835
|
+
"taxReturnCode": null,
|
836
|
+
"name": "Award Overtime Meal Allowance Expense",
|
837
|
+
"seq": 710,
|
838
|
+
"isOtherIncome": 0,
|
839
|
+
"createdAt": "2020-06-01 00:00:00",
|
840
|
+
"updatedAt": "2020-06-01 00:00:00"
|
841
|
+
},
|
842
|
+
{
|
843
|
+
"id": 72,
|
844
|
+
"taxReturnCategory": { "id": 7 },
|
845
|
+
"code": "D5",
|
846
|
+
"subCode": "N",
|
847
|
+
"taxReturnCode": null,
|
848
|
+
"name": "Newspaper",
|
849
|
+
"seq": 720,
|
850
|
+
"isOtherIncome": 0,
|
851
|
+
"createdAt": "2020-06-01 00:00:00",
|
852
|
+
"updatedAt": "2020-06-01 00:00:00"
|
853
|
+
},
|
854
|
+
{
|
855
|
+
"id": 73,
|
856
|
+
"taxReturnCategory": { "id": 7 },
|
857
|
+
"code": "D5",
|
858
|
+
"subCode": "P",
|
859
|
+
"taxReturnCode": null,
|
860
|
+
"name": "Printing, Postage & Stationery",
|
861
|
+
"seq": 730,
|
862
|
+
"isOtherIncome": 0,
|
863
|
+
"createdAt": "2020-06-01 00:00:00",
|
864
|
+
"updatedAt": "2020-06-01 00:00:00"
|
865
|
+
},
|
866
|
+
{
|
867
|
+
"id": 74,
|
868
|
+
"taxReturnCategory": { "id": 7 },
|
869
|
+
"code": "D5",
|
870
|
+
"subCode": "S",
|
871
|
+
"taxReturnCode": null,
|
872
|
+
"name": "Seminars, workshops and courses",
|
873
|
+
"seq": 740,
|
874
|
+
"isOtherIncome": 0,
|
875
|
+
"createdAt": "2020-06-01 00:00:00",
|
876
|
+
"updatedAt": "2020-06-01 00:00:00"
|
877
|
+
},
|
878
|
+
{
|
879
|
+
"id": 75,
|
880
|
+
"taxReturnCategory": { "id": 7 },
|
881
|
+
"code": "D5",
|
882
|
+
"subCode": "T",
|
883
|
+
"taxReturnCode": null,
|
884
|
+
"name": "Telephone",
|
885
|
+
"seq": 750,
|
886
|
+
"isOtherIncome": 0,
|
887
|
+
"createdAt": "2020-06-01 00:00:00",
|
888
|
+
"updatedAt": "2020-06-01 00:00:00"
|
889
|
+
},
|
890
|
+
{
|
891
|
+
"id": 76,
|
892
|
+
"taxReturnCategory": { "id": 7 },
|
893
|
+
"code": "D5",
|
894
|
+
"subCode": "U",
|
895
|
+
"taxReturnCode": null,
|
896
|
+
"name": "Union Fees",
|
897
|
+
"seq": 760,
|
898
|
+
"isOtherIncome": 0,
|
899
|
+
"createdAt": "2020-06-01 00:00:00",
|
900
|
+
"updatedAt": "2020-06-01 00:00:00"
|
901
|
+
},
|
902
|
+
{
|
903
|
+
"id": 77,
|
904
|
+
"taxReturnCategory": { "id": 7 },
|
905
|
+
"code": "D5",
|
906
|
+
"subCode": "O",
|
907
|
+
"taxReturnCode": null,
|
908
|
+
"name": "Other work-related expenses",
|
909
|
+
"seq": 770,
|
910
|
+
"isOtherIncome": 0,
|
911
|
+
"createdAt": "2020-06-01 00:00:00",
|
912
|
+
"updatedAt": "2020-06-01 00:00:00"
|
913
|
+
},
|
914
|
+
{
|
915
|
+
"id": 78,
|
916
|
+
"taxReturnCategory": { "id": 7 },
|
917
|
+
"code": "D6",
|
918
|
+
"subCode": null,
|
919
|
+
"taxReturnCode": null,
|
920
|
+
"name": "Low-value pool deduction",
|
921
|
+
"seq": 780,
|
922
|
+
"isOtherIncome": 0,
|
923
|
+
"createdAt": "2020-06-01 00:00:00",
|
924
|
+
"updatedAt": "2020-06-01 00:00:00"
|
925
|
+
},
|
926
|
+
{
|
927
|
+
"id": 79,
|
928
|
+
"taxReturnCategory": { "id": 7 },
|
929
|
+
"code": "D7",
|
930
|
+
"subCode": null,
|
931
|
+
"taxReturnCode": null,
|
932
|
+
"name": "Interest Deductions",
|
933
|
+
"seq": 790,
|
934
|
+
"isOtherIncome": 0,
|
935
|
+
"createdAt": "2020-06-01 00:00:00",
|
936
|
+
"updatedAt": "2020-06-01 00:00:00"
|
937
|
+
},
|
938
|
+
{
|
939
|
+
"id": 80,
|
940
|
+
"taxReturnCategory": { "id": 7 },
|
941
|
+
"code": "D7",
|
942
|
+
"subCode": "BL",
|
943
|
+
"taxReturnCode": null,
|
944
|
+
"name": "Interest Deductions - Linked Bonded & Notes",
|
945
|
+
"seq": 800,
|
946
|
+
"isOtherIncome": 0,
|
947
|
+
"createdAt": "2020-06-01 00:00:00",
|
948
|
+
"updatedAt": "2020-06-01 00:00:00"
|
949
|
+
},
|
950
|
+
{
|
951
|
+
"id": 81,
|
952
|
+
"taxReturnCategory": { "id": 7 },
|
953
|
+
"code": "D7",
|
954
|
+
"subCode": "BO",
|
955
|
+
"taxReturnCode": null,
|
956
|
+
"name": "Interest Deductions - Bonds Other",
|
957
|
+
"seq": 810,
|
958
|
+
"isOtherIncome": 0,
|
959
|
+
"createdAt": "2020-06-01 00:00:00",
|
960
|
+
"updatedAt": "2020-06-01 00:00:00"
|
961
|
+
},
|
962
|
+
{
|
963
|
+
"id": 82,
|
964
|
+
"taxReturnCategory": { "id": 7 },
|
965
|
+
"code": "D7",
|
966
|
+
"subCode": "CN",
|
967
|
+
"taxReturnCode": null,
|
968
|
+
"name": "Interest Deductions - Convertible Notes",
|
969
|
+
"seq": 820,
|
970
|
+
"isOtherIncome": 0,
|
971
|
+
"createdAt": "2020-06-01 00:00:00",
|
972
|
+
"updatedAt": "2020-06-01 00:00:00"
|
973
|
+
},
|
974
|
+
{
|
975
|
+
"id": 83,
|
976
|
+
"taxReturnCategory": { "id": 7 },
|
977
|
+
"code": "D7",
|
978
|
+
"subCode": "CP",
|
979
|
+
"taxReturnCode": null,
|
980
|
+
"name": "Interest Deductions - Convertible Preference Shares",
|
981
|
+
"seq": 830,
|
982
|
+
"isOtherIncome": 0,
|
983
|
+
"createdAt": "2020-06-01 00:00:00",
|
984
|
+
"updatedAt": "2020-06-01 00:00:00"
|
985
|
+
},
|
986
|
+
{
|
987
|
+
"id": 84,
|
988
|
+
"taxReturnCategory": { "id": 7 },
|
989
|
+
"code": "D7",
|
990
|
+
"subCode": "IR",
|
991
|
+
"taxReturnCode": null,
|
992
|
+
"name": "Interest Deductions - Instalment Receipts",
|
993
|
+
"seq": 840,
|
994
|
+
"isOtherIncome": 0,
|
995
|
+
"createdAt": "2020-06-01 00:00:00",
|
996
|
+
"updatedAt": "2020-06-01 00:00:00"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"id": 85,
|
1000
|
+
"taxReturnCategory": { "id": 7 },
|
1001
|
+
"code": "D7",
|
1002
|
+
"subCode": "MA",
|
1003
|
+
"taxReturnCode": null,
|
1004
|
+
"name": "Interest Deductions - Allocated Pensions & Annuities",
|
1005
|
+
"seq": 850,
|
1006
|
+
"isOtherIncome": 0,
|
1007
|
+
"createdAt": "2020-06-01 00:00:00",
|
1008
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
"id": 86,
|
1012
|
+
"taxReturnCategory": { "id": 7 },
|
1013
|
+
"code": "D7",
|
1014
|
+
"subCode": "MF",
|
1015
|
+
"taxReturnCode": null,
|
1016
|
+
"name": "Interest Deductions - Friendly Society",
|
1017
|
+
"seq": 860,
|
1018
|
+
"isOtherIncome": 0,
|
1019
|
+
"createdAt": "2020-06-01 00:00:00",
|
1020
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1021
|
+
},
|
1022
|
+
{
|
1023
|
+
"id": 87,
|
1024
|
+
"taxReturnCategory": { "id": 7 },
|
1025
|
+
"code": "D8",
|
1026
|
+
"subCode": null,
|
1027
|
+
"taxReturnCode": null,
|
1028
|
+
"name": "Dividend Deductions",
|
1029
|
+
"seq": 870,
|
1030
|
+
"isOtherIncome": 0,
|
1031
|
+
"createdAt": "2020-06-01 00:00:00",
|
1032
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
"id": 88,
|
1036
|
+
"taxReturnCategory": { "id": 7 },
|
1037
|
+
"code": "D8",
|
1038
|
+
"subCode": "BL",
|
1039
|
+
"taxReturnCode": null,
|
1040
|
+
"name": "Dividend Deductions - Linked Bonded & Notes",
|
1041
|
+
"seq": 880,
|
1042
|
+
"isOtherIncome": 0,
|
1043
|
+
"createdAt": "2020-06-01 00:00:00",
|
1044
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1045
|
+
},
|
1046
|
+
{
|
1047
|
+
"id": 89,
|
1048
|
+
"taxReturnCategory": { "id": 7 },
|
1049
|
+
"code": "D8",
|
1050
|
+
"subCode": "BO",
|
1051
|
+
"taxReturnCode": null,
|
1052
|
+
"name": "Dividend Deductions - Bonds Other",
|
1053
|
+
"seq": 890,
|
1054
|
+
"isOtherIncome": 0,
|
1055
|
+
"createdAt": "2020-06-01 00:00:00",
|
1056
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
"id": 90,
|
1060
|
+
"taxReturnCategory": { "id": 7 },
|
1061
|
+
"code": "D8",
|
1062
|
+
"subCode": "CN",
|
1063
|
+
"taxReturnCode": null,
|
1064
|
+
"name": "Dividend Deductions - Convertible Notes",
|
1065
|
+
"seq": 900,
|
1066
|
+
"isOtherIncome": 0,
|
1067
|
+
"createdAt": "2020-06-01 00:00:00",
|
1068
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1069
|
+
},
|
1070
|
+
{
|
1071
|
+
"id": 91,
|
1072
|
+
"taxReturnCategory": { "id": 7 },
|
1073
|
+
"code": "D8",
|
1074
|
+
"subCode": "CP",
|
1075
|
+
"taxReturnCode": null,
|
1076
|
+
"name": "Dividend Deductions - Convertible Preference Share",
|
1077
|
+
"seq": 910,
|
1078
|
+
"isOtherIncome": 0,
|
1079
|
+
"createdAt": "2020-06-01 00:00:00",
|
1080
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1081
|
+
},
|
1082
|
+
{
|
1083
|
+
"id": 92,
|
1084
|
+
"taxReturnCategory": { "id": 7 },
|
1085
|
+
"code": "D8",
|
1086
|
+
"subCode": "MA",
|
1087
|
+
"taxReturnCode": null,
|
1088
|
+
"name": "Dividend Deductions - Allocated Pensions & Annuities",
|
1089
|
+
"seq": 920,
|
1090
|
+
"isOtherIncome": 0,
|
1091
|
+
"createdAt": "2020-06-01 00:00:00",
|
1092
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1093
|
+
},
|
1094
|
+
{
|
1095
|
+
"id": 93,
|
1096
|
+
"taxReturnCategory": { "id": 7 },
|
1097
|
+
"code": "D8",
|
1098
|
+
"subCode": "MF",
|
1099
|
+
"taxReturnCode": null,
|
1100
|
+
"name": "Dividend Deductions - Friendly Society",
|
1101
|
+
"seq": 930,
|
1102
|
+
"isOtherIncome": 0,
|
1103
|
+
"createdAt": "2020-06-01 00:00:00",
|
1104
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1105
|
+
},
|
1106
|
+
{
|
1107
|
+
"id": 94,
|
1108
|
+
"taxReturnCategory": { "id": 7 },
|
1109
|
+
"code": "D9",
|
1110
|
+
"subCode": "J",
|
1111
|
+
"taxReturnCode": null,
|
1112
|
+
"name": "Gifts or donations",
|
1113
|
+
"seq": 940,
|
1114
|
+
"isOtherIncome": 0,
|
1115
|
+
"createdAt": "2020-06-01 00:00:00",
|
1116
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1117
|
+
},
|
1118
|
+
{
|
1119
|
+
"id": 95,
|
1120
|
+
"taxReturnCategory": { "id": 7 },
|
1121
|
+
"code": "D10",
|
1122
|
+
"subCode": null,
|
1123
|
+
"taxReturnCode": null,
|
1124
|
+
"name": "Cost of managing tax affairs",
|
1125
|
+
"seq": 950,
|
1126
|
+
"isOtherIncome": 0,
|
1127
|
+
"createdAt": "2020-06-01 00:00:00",
|
1128
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1129
|
+
},
|
1130
|
+
{
|
1131
|
+
"id": 96,
|
1132
|
+
"taxReturnCategory": { "id": 7 },
|
1133
|
+
"code": "D10",
|
1134
|
+
"subCode": "N",
|
1135
|
+
"taxReturnCode": null,
|
1136
|
+
"name": "Interest Charged by ATO",
|
1137
|
+
"seq": 960,
|
1138
|
+
"isOtherIncome": 0,
|
1139
|
+
"createdAt": "2020-06-01 00:00:00",
|
1140
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1141
|
+
},
|
1142
|
+
{
|
1143
|
+
"id": 97,
|
1144
|
+
"taxReturnCategory": { "id": 7 },
|
1145
|
+
"code": "D10",
|
1146
|
+
"subCode": "L",
|
1147
|
+
"taxReturnCode": null,
|
1148
|
+
"name": "Litigation Costs",
|
1149
|
+
"seq": 970,
|
1150
|
+
"isOtherIncome": 0,
|
1151
|
+
"createdAt": "2020-06-01 00:00:00",
|
1152
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1153
|
+
},
|
1154
|
+
{
|
1155
|
+
"id": 98,
|
1156
|
+
"taxReturnCategory": { "id": 7 },
|
1157
|
+
"code": "D10",
|
1158
|
+
"subCode": "M",
|
1159
|
+
"taxReturnCode": null,
|
1160
|
+
"name": "Accounting Fees",
|
1161
|
+
"seq": 980,
|
1162
|
+
"isOtherIncome": 0,
|
1163
|
+
"createdAt": "2020-06-01 00:00:00",
|
1164
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1165
|
+
},
|
1166
|
+
{
|
1167
|
+
"id": 99,
|
1168
|
+
"taxReturnCategory": { "id": 7 },
|
1169
|
+
"code": "D11",
|
1170
|
+
"subCode": null,
|
1171
|
+
"taxReturnCode": null,
|
1172
|
+
"name": "Deductible amount of undeducted purchase price of a foreign pension or annuity",
|
1173
|
+
"seq": 990,
|
1174
|
+
"isOtherIncome": 0,
|
1175
|
+
"createdAt": "2020-06-01 00:00:00",
|
1176
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
"id": 100,
|
1180
|
+
"taxReturnCategory": { "id": 18 },
|
1181
|
+
"code": "D12",
|
1182
|
+
"subCode": null,
|
1183
|
+
"taxReturnCode": null,
|
1184
|
+
"name": "Personal superannuation contributions",
|
1185
|
+
"seq": 1000,
|
1186
|
+
"isOtherIncome": 0,
|
1187
|
+
"createdAt": "2020-06-01 00:00:00",
|
1188
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1189
|
+
},
|
1190
|
+
{
|
1191
|
+
"id": 101,
|
1192
|
+
"taxReturnCategory": { "id": 18 },
|
1193
|
+
"code": "D12",
|
1194
|
+
"subCode": "H",
|
1195
|
+
"taxReturnCode": null,
|
1196
|
+
"name": "Personal Super Contributions (Non-Deductible)",
|
1197
|
+
"seq": 1010,
|
1198
|
+
"isOtherIncome": 0,
|
1199
|
+
"createdAt": "2020-06-01 00:00:00",
|
1200
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1201
|
+
},
|
1202
|
+
{
|
1203
|
+
"id": 102,
|
1204
|
+
"taxReturnCategory": { "id": 18 },
|
1205
|
+
"code": "D13",
|
1206
|
+
"subCode": null,
|
1207
|
+
"taxReturnCode": null,
|
1208
|
+
"name": "Deduction for project pool",
|
1209
|
+
"seq": 1020,
|
1210
|
+
"isOtherIncome": 0,
|
1211
|
+
"createdAt": "2020-06-01 00:00:00",
|
1212
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1213
|
+
},
|
1214
|
+
{
|
1215
|
+
"id": 103,
|
1216
|
+
"taxReturnCategory": { "id": 18 },
|
1217
|
+
"code": "D14",
|
1218
|
+
"subCode": "A",
|
1219
|
+
"taxReturnCode": null,
|
1220
|
+
"name": "Forestry managed investment scheme deduction",
|
1221
|
+
"seq": 1030,
|
1222
|
+
"isOtherIncome": 0,
|
1223
|
+
"createdAt": "2020-06-01 00:00:00",
|
1224
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1225
|
+
},
|
1226
|
+
{
|
1227
|
+
"id": 104,
|
1228
|
+
"taxReturnCategory": { "id": 18 },
|
1229
|
+
"code": "D15",
|
1230
|
+
"subCode": "O",
|
1231
|
+
"taxReturnCode": null,
|
1232
|
+
"name": "Non capital losses on disposal of assets",
|
1233
|
+
"seq": 1040,
|
1234
|
+
"isOtherIncome": 0,
|
1235
|
+
"createdAt": "2020-06-01 00:00:00",
|
1236
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1237
|
+
},
|
1238
|
+
{
|
1239
|
+
"id": 105,
|
1240
|
+
"taxReturnCategory": { "id": 18 },
|
1241
|
+
"code": "D15",
|
1242
|
+
"subCode": "P",
|
1243
|
+
"taxReturnCode": null,
|
1244
|
+
"name": "Income Protection Insurance",
|
1245
|
+
"seq": 1050,
|
1246
|
+
"isOtherIncome": 0,
|
1247
|
+
"createdAt": "2020-06-01 00:00:00",
|
1248
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1249
|
+
},
|
1250
|
+
{
|
1251
|
+
"id": 133,
|
1252
|
+
"taxReturnCategory": { "id": 18 },
|
1253
|
+
"code": "D16",
|
1254
|
+
"subCode": null,
|
1255
|
+
"taxReturnCode": null,
|
1256
|
+
"name": "Private income and expenses",
|
1257
|
+
"seq": 1330,
|
1258
|
+
"isOtherIncome": 0,
|
1259
|
+
"createdAt": "2020-06-01 00:00:00",
|
1260
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1261
|
+
},
|
1262
|
+
{
|
1263
|
+
"id": 134,
|
1264
|
+
"taxReturnCategory": { "id": 31 },
|
1265
|
+
"code": 3,
|
1266
|
+
"subCode": "H",
|
1267
|
+
"taxReturnCode": null,
|
1268
|
+
"name": "Lump Sum B",
|
1269
|
+
"seq": 35,
|
1270
|
+
"isOtherIncome": 0,
|
1271
|
+
"createdAt": "2020-06-01 00:00:00",
|
1272
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1273
|
+
},
|
1274
|
+
{
|
1275
|
+
"id": 135,
|
1276
|
+
"taxReturnCategory": { "id": 40 },
|
1277
|
+
"code": 24,
|
1278
|
+
"subCode": "E",
|
1279
|
+
"taxReturnCode": null,
|
1280
|
+
"name": "Tax Withheld Lump Sum payments in arrears",
|
1281
|
+
"seq": 441,
|
1282
|
+
"isOtherIncome": 1,
|
1283
|
+
"createdAt": "2020-06-01 00:00:00",
|
1284
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1285
|
+
},
|
1286
|
+
{
|
1287
|
+
"id": 136,
|
1288
|
+
"taxReturnCategory": { "id": 40 },
|
1289
|
+
"code": 24,
|
1290
|
+
"subCode": "Y",
|
1291
|
+
"taxReturnCode": null,
|
1292
|
+
"name": "Other Income - Category 1",
|
1293
|
+
"seq": 442,
|
1294
|
+
"isOtherIncome": 1,
|
1295
|
+
"createdAt": "2020-06-01 00:00:00",
|
1296
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1297
|
+
},
|
1298
|
+
{
|
1299
|
+
"id": 137,
|
1300
|
+
"taxReturnCategory": { "id": 40 },
|
1301
|
+
"code": 24,
|
1302
|
+
"subCode": "V",
|
1303
|
+
"taxReturnCode": null,
|
1304
|
+
"name": "Other Income - Ctaegory 4",
|
1305
|
+
"seq": 443,
|
1306
|
+
"isOtherIncome": 1,
|
1307
|
+
"createdAt": "2020-06-01 00:00:00",
|
1308
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1309
|
+
},
|
1310
|
+
{
|
1311
|
+
"id": 138,
|
1312
|
+
"taxReturnCategory": { "id": 40 },
|
1313
|
+
"code": 24,
|
1314
|
+
"subCode": "Z",
|
1315
|
+
"taxReturnCode": null,
|
1316
|
+
"name": "Taxable Professional Income",
|
1317
|
+
"seq": 444,
|
1318
|
+
"isOtherIncome": 1,
|
1319
|
+
"createdAt": "2020-06-01 00:00:00",
|
1320
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1321
|
+
},
|
1322
|
+
{
|
1323
|
+
"id": 139,
|
1324
|
+
"taxReturnCategory": { "id": 40 },
|
1325
|
+
"code": 24,
|
1326
|
+
"subCode": "X",
|
1327
|
+
"taxReturnCode": null,
|
1328
|
+
"name": "Other Income - Category 2 - ATO Interest",
|
1329
|
+
"seq": 445,
|
1330
|
+
"isOtherIncome": 1,
|
1331
|
+
"createdAt": "2020-06-01 00:00:00",
|
1332
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1333
|
+
},
|
1334
|
+
{
|
1335
|
+
"id": 140,
|
1336
|
+
"taxReturnCategory": { "id": 6 },
|
1337
|
+
"code": 11,
|
1338
|
+
"subCode": null,
|
1339
|
+
"taxReturnCode": null,
|
1340
|
+
"name": "Dividends",
|
1341
|
+
"seq": 111,
|
1342
|
+
"isOtherIncome": 1,
|
1343
|
+
"createdAt": "2020-06-01 00:00:00",
|
1344
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1345
|
+
},
|
1346
|
+
{
|
1347
|
+
"id": 144,
|
1348
|
+
"taxReturnCategory": { "id": 3 },
|
1349
|
+
"code": 7,
|
1350
|
+
"subCode": "J",
|
1351
|
+
"taxReturnCode": null,
|
1352
|
+
"name": "Superannuation income streams - Taxed Element",
|
1353
|
+
"seq": 71,
|
1354
|
+
"isOtherIncome": 1,
|
1355
|
+
"createdAt": "2020-06-01 00:00:00",
|
1356
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1357
|
+
},
|
1358
|
+
{
|
1359
|
+
"id": 145,
|
1360
|
+
"taxReturnCategory": { "id": 3 },
|
1361
|
+
"code": 7,
|
1362
|
+
"subCode": "N",
|
1363
|
+
"taxReturnCode": null,
|
1364
|
+
"name": "Superannuation income streams - Untaxed Element",
|
1365
|
+
"seq": 72,
|
1366
|
+
"isOtherIncome": 1,
|
1367
|
+
"createdAt": "2020-06-01 00:00:00",
|
1368
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1369
|
+
},
|
1370
|
+
{
|
1371
|
+
"id": 146,
|
1372
|
+
"taxReturnCategory": { "id": 3 },
|
1373
|
+
"code": 7,
|
1374
|
+
"subCode": "M",
|
1375
|
+
"taxReturnCode": null,
|
1376
|
+
"name": "Assessable Amount From Capped Benefit",
|
1377
|
+
"seq": 73,
|
1378
|
+
"isOtherIncome": 1,
|
1379
|
+
"createdAt": "2020-06-01 00:00:00",
|
1380
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1381
|
+
},
|
1382
|
+
{
|
1383
|
+
"id": 147,
|
1384
|
+
"taxReturnCategory": { "id": 3 },
|
1385
|
+
"code": 7,
|
1386
|
+
"subCode": "Y",
|
1387
|
+
"taxReturnCode": null,
|
1388
|
+
"name": "Lump Sum in Arrears - Taxed Element",
|
1389
|
+
"seq": 74,
|
1390
|
+
"isOtherIncome": 1,
|
1391
|
+
"createdAt": "2020-06-01 00:00:00",
|
1392
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1393
|
+
},
|
1394
|
+
{
|
1395
|
+
"id": 148,
|
1396
|
+
"taxReturnCategory": { "id": 3 },
|
1397
|
+
"code": 7,
|
1398
|
+
"subCode": "Z",
|
1399
|
+
"taxReturnCode": null,
|
1400
|
+
"name": "Lump Sum in Arrears - Untaxed Element",
|
1401
|
+
"seq": 75,
|
1402
|
+
"isOtherIncome": 1,
|
1403
|
+
"createdAt": "2020-06-01 00:00:00",
|
1404
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1405
|
+
},
|
1406
|
+
{
|
1407
|
+
"id": 149,
|
1408
|
+
"taxReturnCategory": { "id": 34 },
|
1409
|
+
"code": 8,
|
1410
|
+
"subCode": "Q",
|
1411
|
+
"taxReturnCode": null,
|
1412
|
+
"name": "Superannuation Lump Sum Payments - Taxed Element",
|
1413
|
+
"seq": 81,
|
1414
|
+
"isOtherIncome": 1,
|
1415
|
+
"createdAt": "2020-06-01 00:00:00",
|
1416
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1417
|
+
},
|
1418
|
+
{
|
1419
|
+
"id": 150,
|
1420
|
+
"taxReturnCategory": { "id": 34 },
|
1421
|
+
"code": 8,
|
1422
|
+
"subCode": "P",
|
1423
|
+
"taxReturnCode": null,
|
1424
|
+
"name": "Superannuation Lump Sum Payments - Untaxed Element",
|
1425
|
+
"seq": 82,
|
1426
|
+
"isOtherIncome": 1,
|
1427
|
+
"createdAt": "2020-06-01 00:00:00",
|
1428
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1429
|
+
},
|
1430
|
+
{
|
1431
|
+
"id": 151,
|
1432
|
+
"taxReturnCategory": { "id": 35 },
|
1433
|
+
"code": 12,
|
1434
|
+
"subCode": "D",
|
1435
|
+
"taxReturnCode": null,
|
1436
|
+
"name": "Discount From Taxed Upfront Schemes - Eligible for reduction",
|
1437
|
+
"seq": 121,
|
1438
|
+
"isOtherIncome": 1,
|
1439
|
+
"createdAt": "2020-06-01 00:00:00",
|
1440
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1441
|
+
},
|
1442
|
+
{
|
1443
|
+
"id": 152,
|
1444
|
+
"taxReturnCategory": { "id": 35 },
|
1445
|
+
"code": 12,
|
1446
|
+
"subCode": "E",
|
1447
|
+
"taxReturnCode": null,
|
1448
|
+
"name": "Discount From Taxed Upfront Schemes - Not Eligible for reduction",
|
1449
|
+
"seq": 122,
|
1450
|
+
"isOtherIncome": 1,
|
1451
|
+
"createdAt": "2020-06-01 00:00:00",
|
1452
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1453
|
+
},
|
1454
|
+
{
|
1455
|
+
"id": 153,
|
1456
|
+
"taxReturnCategory": { "id": 35 },
|
1457
|
+
"code": 12,
|
1458
|
+
"subCode": "F",
|
1459
|
+
"taxReturnCode": null,
|
1460
|
+
"name": "Discount From Deferral Schemes",
|
1461
|
+
"seq": 123,
|
1462
|
+
"isOtherIncome": 1,
|
1463
|
+
"createdAt": "2020-06-01 00:00:00",
|
1464
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1465
|
+
},
|
1466
|
+
{
|
1467
|
+
"id": 154,
|
1468
|
+
"taxReturnCategory": { "id": 36 },
|
1469
|
+
"code": 13,
|
1470
|
+
"subCode": "O",
|
1471
|
+
"taxReturnCode": null,
|
1472
|
+
"name": "Partnership Income",
|
1473
|
+
"seq": 131,
|
1474
|
+
"isOtherIncome": 1,
|
1475
|
+
"createdAt": "2020-06-01 00:00:00",
|
1476
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1477
|
+
},
|
1478
|
+
{
|
1479
|
+
"id": 155,
|
1480
|
+
"taxReturnCategory": { "id": 37 },
|
1481
|
+
"code": 13,
|
1482
|
+
"subCode": "U",
|
1483
|
+
"taxReturnCode": null,
|
1484
|
+
"name": "Trust Income",
|
1485
|
+
"seq": 132,
|
1486
|
+
"isOtherIncome": 1,
|
1487
|
+
"createdAt": "2020-06-01 00:00:00",
|
1488
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1489
|
+
},
|
1490
|
+
{
|
1491
|
+
"id": 156,
|
1492
|
+
"taxReturnCategory": { "id": 36 },
|
1493
|
+
"code": 13,
|
1494
|
+
"subCode": "B",
|
1495
|
+
"taxReturnCode": null,
|
1496
|
+
"name": "Partnership Expenses",
|
1497
|
+
"seq": 133,
|
1498
|
+
"isOtherIncome": 1,
|
1499
|
+
"createdAt": "2020-06-01 00:00:00",
|
1500
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1501
|
+
},
|
1502
|
+
{
|
1503
|
+
"id": 157,
|
1504
|
+
"taxReturnCategory": { "id": 37 },
|
1505
|
+
"code": 13,
|
1506
|
+
"subCode": "Y",
|
1507
|
+
"taxReturnCode": null,
|
1508
|
+
"name": "Trust Expenses",
|
1509
|
+
"seq": 134,
|
1510
|
+
"isOtherIncome": 1,
|
1511
|
+
"createdAt": "2020-06-01 00:00:00",
|
1512
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1513
|
+
},
|
1514
|
+
{
|
1515
|
+
"id": 158,
|
1516
|
+
"taxReturnCategory": { "id": 14 },
|
1517
|
+
"code": 14,
|
1518
|
+
"subCode": "O",
|
1519
|
+
"taxReturnCode": null,
|
1520
|
+
"name": "Personal services income (PSI) - labour hire or other",
|
1521
|
+
"seq": 141,
|
1522
|
+
"isOtherIncome": 1,
|
1523
|
+
"createdAt": "2020-06-01 00:00:00",
|
1524
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1525
|
+
},
|
1526
|
+
{
|
1527
|
+
"id": 159,
|
1528
|
+
"taxReturnCategory": { "id": 14 },
|
1529
|
+
"code": 14,
|
1530
|
+
"subCode": "V",
|
1531
|
+
"taxReturnCode": null,
|
1532
|
+
"name": "Personal services income (PSI) - voluntary agreement",
|
1533
|
+
"seq": 148,
|
1534
|
+
"isOtherIncome": 1,
|
1535
|
+
"createdAt": "2020-06-01 00:00:00",
|
1536
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1537
|
+
},
|
1538
|
+
{
|
1539
|
+
"id": 160,
|
1540
|
+
"taxReturnCategory": { "id": 18 },
|
1541
|
+
"code": "D15",
|
1542
|
+
"subCode": "D",
|
1543
|
+
"taxReturnCode": null,
|
1544
|
+
"name": "Foreign exchange losses",
|
1545
|
+
"seq": 1055,
|
1546
|
+
"isOtherIncome": 0,
|
1547
|
+
"createdAt": "2020-06-01 00:00:00",
|
1548
|
+
"updatedAt": "2020-06-01 00:00:00"
|
1549
|
+
},
|
1550
|
+
{
|
1551
|
+
"id": 161,
|
1552
|
+
"taxReturnCategory": { "id": 42 },
|
1553
|
+
"code": 15,
|
1554
|
+
"subCode": "D",
|
1555
|
+
"taxReturnCode": null,
|
1556
|
+
"name": "Gross payments - no ABN given",
|
1557
|
+
"seq": 1500,
|
1558
|
+
"isOtherIncome": 0,
|
1559
|
+
"createdAt": "2022-07-29 00:00:00",
|
1560
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1561
|
+
},
|
1562
|
+
{
|
1563
|
+
"id": 162,
|
1564
|
+
"taxReturnCategory": { "id": 43 },
|
1565
|
+
"code": 15,
|
1566
|
+
"subCode": "F",
|
1567
|
+
"taxReturnCode": null,
|
1568
|
+
"name": "Gross payments - Voluntary agreement",
|
1569
|
+
"seq": 1510,
|
1570
|
+
"isOtherIncome": 0,
|
1571
|
+
"createdAt": "2022-07-29 00:00:00",
|
1572
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1573
|
+
},
|
1574
|
+
{
|
1575
|
+
"id": 163,
|
1576
|
+
"taxReturnCategory": { "id": 50 },
|
1577
|
+
"code": 15,
|
1578
|
+
"subCode": "G",
|
1579
|
+
"taxReturnCode": null,
|
1580
|
+
"name": "Superannuation expenses",
|
1581
|
+
"seq": 1520,
|
1582
|
+
"isOtherIncome": 0,
|
1583
|
+
"createdAt": "2022-07-29 00:00:00",
|
1584
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1585
|
+
},
|
1586
|
+
{
|
1587
|
+
"id": 164,
|
1588
|
+
"taxReturnCategory": { "id": 45 },
|
1589
|
+
"code": 15,
|
1590
|
+
"subCode": "H",
|
1591
|
+
"taxReturnCode": null,
|
1592
|
+
"name": "Assessable Government Payments",
|
1593
|
+
"seq": 1530,
|
1594
|
+
"isOtherIncome": 0,
|
1595
|
+
"createdAt": "2022-07-29 00:00:00",
|
1596
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1597
|
+
},
|
1598
|
+
{
|
1599
|
+
"id": 165,
|
1600
|
+
"taxReturnCategory": { "id": 51 },
|
1601
|
+
"code": 15,
|
1602
|
+
"subCode": "I",
|
1603
|
+
"taxReturnCode": null,
|
1604
|
+
"name": "Bad debts",
|
1605
|
+
"seq": 1540,
|
1606
|
+
"isOtherIncome": 0,
|
1607
|
+
"createdAt": "2022-07-29 00:00:00",
|
1608
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1609
|
+
},
|
1610
|
+
{
|
1611
|
+
"id": 166,
|
1612
|
+
"taxReturnCategory": { "id": 46 },
|
1613
|
+
"code": 15,
|
1614
|
+
"subCode": "U",
|
1615
|
+
"taxReturnCode": null,
|
1616
|
+
"name": "Other Business Income",
|
1617
|
+
"seq": 1550,
|
1618
|
+
"isOtherIncome": 0,
|
1619
|
+
"createdAt": "2022-07-29 00:00:00",
|
1620
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1621
|
+
},
|
1622
|
+
{
|
1623
|
+
"id": 167,
|
1624
|
+
"taxReturnCategory": { "id": 53 },
|
1625
|
+
"code": 15,
|
1626
|
+
"subCode": "K",
|
1627
|
+
"taxReturnCode": null,
|
1628
|
+
"name": "Rent expenses",
|
1629
|
+
"seq": 1560,
|
1630
|
+
"isOtherIncome": 0,
|
1631
|
+
"createdAt": "2022-07-29 00:00:00",
|
1632
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1633
|
+
},
|
1634
|
+
{
|
1635
|
+
"id": 168,
|
1636
|
+
"taxReturnCategory": { "id": 48 },
|
1637
|
+
"code": 15,
|
1638
|
+
"subCode": "L",
|
1639
|
+
"taxReturnCode": null,
|
1640
|
+
"name": "Purchases and other costs",
|
1641
|
+
"seq": 1570,
|
1642
|
+
"isOtherIncome": 0,
|
1643
|
+
"createdAt": "2022-07-29 00:00:00",
|
1644
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1645
|
+
},
|
1646
|
+
{
|
1647
|
+
"id": 169,
|
1648
|
+
"taxReturnCategory": { "id": 56 },
|
1649
|
+
"code": 15,
|
1650
|
+
"subCode": "M",
|
1651
|
+
"taxReturnCode": null,
|
1652
|
+
"name": "Depreciation expenses",
|
1653
|
+
"seq": 1580,
|
1654
|
+
"isOtherIncome": 0,
|
1655
|
+
"createdAt": "2022-07-29 00:00:00",
|
1656
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1657
|
+
},
|
1658
|
+
{
|
1659
|
+
"id": 170,
|
1660
|
+
"taxReturnCategory": { "id": 57 },
|
1661
|
+
"code": 15,
|
1662
|
+
"subCode": "N",
|
1663
|
+
"taxReturnCode": null,
|
1664
|
+
"name": "Motor vehicle expenses",
|
1665
|
+
"seq": 1590,
|
1666
|
+
"isOtherIncome": 0,
|
1667
|
+
"createdAt": "2022-07-29 00:00:00",
|
1668
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1669
|
+
},
|
1670
|
+
{
|
1671
|
+
"id": 171,
|
1672
|
+
"taxReturnCategory": { "id": 44 },
|
1673
|
+
"code": 15,
|
1674
|
+
"subCode": "O",
|
1675
|
+
"taxReturnCode": null,
|
1676
|
+
"name": "Gross payments - Labour hire or other",
|
1677
|
+
"seq": 1600,
|
1678
|
+
"isOtherIncome": 0,
|
1679
|
+
"createdAt": "2022-07-29 00:00:00",
|
1680
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1681
|
+
},
|
1682
|
+
{
|
1683
|
+
"id": 172,
|
1684
|
+
"taxReturnCategory": { "id": 58 },
|
1685
|
+
"code": 15,
|
1686
|
+
"subCode": "P",
|
1687
|
+
"taxReturnCode": null,
|
1688
|
+
"name": "All other expenses",
|
1689
|
+
"seq": 1610,
|
1690
|
+
"isOtherIncome": 0,
|
1691
|
+
"createdAt": "2022-07-29 00:00:00",
|
1692
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1693
|
+
},
|
1694
|
+
{
|
1695
|
+
"id": 173,
|
1696
|
+
"taxReturnCategory": { "id": 54 },
|
1697
|
+
"code": 15,
|
1698
|
+
"subCode": "Q",
|
1699
|
+
"taxReturnCode": null,
|
1700
|
+
"name": "Interest expenses within Australia",
|
1701
|
+
"seq": 1620,
|
1702
|
+
"isOtherIncome": 0,
|
1703
|
+
"createdAt": "2022-07-29 00:00:00",
|
1704
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1705
|
+
},
|
1706
|
+
{
|
1707
|
+
"id": 174,
|
1708
|
+
"taxReturnCategory": { "id": 55 },
|
1709
|
+
"code": 15,
|
1710
|
+
"subCode": "R",
|
1711
|
+
"taxReturnCode": null,
|
1712
|
+
"name": "Interest expenses overseas",
|
1713
|
+
"seq": 1630,
|
1714
|
+
"isOtherIncome": 0,
|
1715
|
+
"createdAt": "2022-07-29 00:00:00",
|
1716
|
+
"updatedAt": "2022-07-29 00:00:00"
|
1717
|
+
},
|
1718
|
+
{
|
1719
|
+
"id": 175,
|
1720
|
+
"taxReturnCategory": { "id": 49 },
|
1721
|
+
"code": 15,
|
1722
|
+
"subCode": "F",
|
1723
|
+
"taxReturnCode": null,
|
1724
|
+
"name": "Contractors, subcontractors & commission expenses",
|
1725
|
+
"seq": 1575,
|
1726
|
+
"isOtherIncome": 0,
|
1727
|
+
"createdAt": "2022-08-31 00:00:00",
|
1728
|
+
"updatedAt": "2022-08-31 00:00:00"
|
1729
|
+
},
|
1730
|
+
{
|
1731
|
+
"id": 176,
|
1732
|
+
"taxReturnCategory": { "id": 52 },
|
1733
|
+
"code": 15,
|
1734
|
+
"subCode": "J",
|
1735
|
+
"taxReturnCode": null,
|
1736
|
+
"name": "Lease expenses",
|
1737
|
+
"seq": 1545,
|
1738
|
+
"isOtherIncome": 0,
|
1739
|
+
"createdAt": "2022-08-31 00:00:00",
|
1740
|
+
"updatedAt": "2022-08-31 00:00:00"
|
1741
|
+
},
|
1742
|
+
{
|
1743
|
+
"id": 177,
|
1744
|
+
"taxReturnCategory": { "id": 14 },
|
1745
|
+
"code": 14,
|
1746
|
+
"subCode": "J",
|
1747
|
+
"taxReturnCode": null,
|
1748
|
+
"name": "Personal services income (PSI) - Other",
|
1749
|
+
"seq": 142,
|
1750
|
+
"isOtherIncome": 1,
|
1751
|
+
"createdAt": "2022-10-15 00:00:00",
|
1752
|
+
"updatedAt": "2022-10-15 00:00:00"
|
1753
|
+
},
|
1754
|
+
{
|
1755
|
+
"id": 178,
|
1756
|
+
"taxReturnCategory": { "id": 14 },
|
1757
|
+
"code": 14,
|
1758
|
+
"subCode": "K",
|
1759
|
+
"taxReturnCode": null,
|
1760
|
+
"name": "Personal services income (PSI) - Deductions Associates",
|
1761
|
+
"seq": 143,
|
1762
|
+
"isOtherIncome": 1,
|
1763
|
+
"createdAt": "2022-10-15 00:00:00",
|
1764
|
+
"updatedAt": "2022-10-15 00:00:00"
|
1765
|
+
},
|
1766
|
+
{
|
1767
|
+
"id": 179,
|
1768
|
+
"taxReturnCategory": { "id": 14 },
|
1769
|
+
"code": 14,
|
1770
|
+
"subCode": "L",
|
1771
|
+
"taxReturnCode": null,
|
1772
|
+
"name": "Personal services income (PSI) - Deductions Other",
|
1773
|
+
"seq": 144,
|
1774
|
+
"isOtherIncome": 1,
|
1775
|
+
"createdAt": "2022-10-15 00:00:00",
|
1776
|
+
"updatedAt": "2022-10-15 00:00:00"
|
1777
|
+
}
|
1778
|
+
]
|