taxtank-core 0.0.2 → 0.1.2
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/bundles/taxtank-core.umd.js +11955 -31
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/abstract.collection.js +67 -0
- package/esm2015/lib/collections/bank-account.collection.js +135 -0
- package/esm2015/lib/collections/bank-transaction.collection.js +119 -0
- package/esm2015/lib/collections/client-movement.collection.js +31 -0
- package/esm2015/lib/collections/client-portfolio-report.collection.js +40 -0
- package/esm2015/lib/collections/client.collection.js +4 -0
- package/esm2015/lib/collections/collection-dictionary.js +83 -0
- package/esm2015/lib/collections/depreciation-forecast.collection.js +19 -0
- package/esm2015/lib/collections/depreciation.collection.js +67 -0
- package/esm2015/lib/collections/employee.collection.js +12 -0
- package/esm2015/lib/collections/income-source.collection.js +38 -0
- package/esm2015/lib/collections/loan.collection.js +18 -0
- package/esm2015/lib/collections/logbook.collection.js +97 -0
- package/esm2015/lib/collections/message-document.collection.js +13 -0
- package/esm2015/lib/collections/message.collection.js +21 -0
- package/esm2015/lib/collections/property.collection.js +65 -0
- package/esm2015/lib/collections/service-price.collection.js +10 -0
- package/esm2015/lib/collections/service-subscription.collection.js +17 -0
- package/esm2015/lib/collections/tax-return-category-item.collection.js +141 -0
- package/esm2015/lib/collections/tax-review.collection.js +55 -0
- package/esm2015/lib/collections/transaction-allocation.collection.js +40 -0
- package/esm2015/lib/collections/transaction.collection.js +120 -0
- package/esm2015/lib/collections/user-event-setting.collection.js +62 -0
- package/esm2015/lib/db/Enums/address-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/bank-account-status.enum.js +6 -0
- package/esm2015/lib/db/Enums/bank-account-type.enum.js +12 -0
- package/esm2015/lib/db/Enums/bank-connection-status.enum.js +7 -0
- package/esm2015/lib/db/Enums/bank-transaction-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/chart-accounts-category.enum.js +15 -0
- package/esm2015/lib/db/Enums/chart-accounts-etp.enum.js +9 -0
- package/esm2015/lib/db/Enums/chart-accounts-heading-tax-deductible.enum.js +8 -0
- package/esm2015/lib/db/Enums/chart-accounts-heading-taxable.enum.js +8 -0
- package/esm2015/lib/db/Enums/chart-accounts-heading-vehicle-list.enum.js +6 -0
- package/esm2015/lib/db/Enums/chart-accounts-list.enum.js +21 -0
- package/esm2015/lib/db/Enums/chart-accounts-metadata-list.enum.js +16 -0
- package/esm2015/lib/db/Enums/chart-accounts-metadata-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/chart-accounts-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/chat-status.enum.js +6 -0
- package/esm2015/lib/db/Enums/client-details-medicare-exemption.enum.js +7 -0
- package/esm2015/lib/db/Enums/client-details-work-depreciation-calculation.enum.js +6 -0
- package/esm2015/lib/db/Enums/client-details-working-holiday-maker.enum.js +7 -0
- package/esm2015/lib/db/Enums/client-invite-status.enum.js +6 -0
- package/esm2015/lib/db/Enums/client-invite-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/depreciation-calculation-percent.enum.js +9 -0
- package/esm2015/lib/db/Enums/depreciation-calculation.enum.js +9 -0
- package/esm2015/lib/db/Enums/depreciation-type.enum.js +8 -0
- package/esm2015/lib/db/Enums/depreciation-write-off-amount.enum.js +6 -0
- package/esm2015/lib/db/Enums/firm-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/income-source-type-list-other.enum.js +8 -0
- package/esm2015/lib/db/Enums/income-source-type-list-salary.enum.js +5 -0
- package/esm2015/lib/db/Enums/income-source-type-list-work.enum.js +10 -0
- package/esm2015/lib/db/Enums/income-source-type.enum.js +7 -0
- package/esm2015/lib/db/Enums/invite-status.enum.js +7 -0
- package/esm2015/lib/db/Enums/loan-bank-type.enum.js +12 -0
- package/esm2015/lib/db/Enums/loan-frequency.enum.js +8 -0
- package/esm2015/lib/db/Enums/loan-interest-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/loan-payout-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/loan-repayment-frequency.enum.js +7 -0
- package/esm2015/lib/db/Enums/loan-repayment-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/loan-type.enum.js +14 -0
- package/esm2015/lib/db/Enums/loan-vehicle-type.enum.js +7 -0
- package/esm2015/lib/db/Enums/phone-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/property-depreciation-calculation.enum.js +6 -0
- package/esm2015/lib/db/Enums/property-owner-access.enum.js +6 -0
- package/esm2015/lib/db/Enums/property-owner-status.enum.js +7 -0
- package/esm2015/lib/db/Enums/registration-invite-status.enum.js +6 -0
- package/esm2015/lib/db/Enums/salary-forecast-frequency.enum.js +8 -0
- package/esm2015/lib/db/Enums/service-notification-status.enum.js +7 -0
- package/esm2015/lib/db/Enums/service-notification-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/service-payment-status.enum.js +6 -0
- package/esm2015/lib/db/Enums/service-price-recurring-interval.enum.js +8 -0
- package/esm2015/lib/db/Enums/service-price-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/service-subscription-status.enum.js +10 -0
- package/esm2015/lib/db/Enums/spare-document-spare-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/tank-type.enum.js +7 -0
- package/esm2015/lib/db/Enums/tax-calculation-medicare-exemption.enum.js +6 -0
- package/esm2015/lib/db/Enums/tax-calculation-type.enum.js +14 -0
- package/esm2015/lib/db/Enums/tax-return-category-list.enum.js +28 -0
- package/esm2015/lib/db/Enums/tax-return-category-section.enum.js +8 -0
- package/esm2015/lib/db/Enums/tax-review-status.enum.js +13 -0
- package/esm2015/lib/db/Enums/tax-summary-list.enum.js +17 -0
- package/esm2015/lib/db/Enums/tax-summary-section.enum.js +8 -0
- package/esm2015/lib/db/Enums/tax-summary-tax-summary.enum.js +17 -0
- package/esm2015/lib/db/Enums/ticket-feedback.enum.js +6 -0
- package/esm2015/lib/db/Enums/ticket-status.enum.js +9 -0
- package/esm2015/lib/db/Enums/ticket-types.enum.js +5 -0
- package/esm2015/lib/db/Enums/transaction-operation.enum.js +7 -0
- package/esm2015/lib/db/Enums/transaction-source.enum.js +6 -0
- package/esm2015/lib/db/Enums/transaction-type.enum.js +6 -0
- package/esm2015/lib/db/Enums/user-event-status.enum.js +8 -0
- package/esm2015/lib/db/Enums/user-event-type-frequency.enum.js +8 -0
- package/esm2015/lib/db/Enums/user-event-type-reminder-type.enum.js +8 -0
- package/esm2015/lib/db/Enums/user-event-type-reminder.enum.js +7 -0
- package/esm2015/lib/db/Enums/user-event-type-type.enum.js +35 -0
- package/esm2015/lib/db/Enums/user-medicare-exemption.enum.js +7 -0
- package/esm2015/lib/db/Enums/user-roles.enum.js +15 -0
- package/esm2015/lib/db/Enums/user-status.enum.js +8 -0
- package/esm2015/lib/db/Enums/user-title.enum.js +9 -0
- package/esm2015/lib/db/Enums/user-work-depreciation-calculation.enum.js +6 -0
- package/esm2015/lib/db/Enums/user-working-holiday-maker.enum.js +7 -0
- package/esm2015/lib/db/Enums/vehicle-claim-method.enum.js +6 -0
- package/esm2015/lib/db/Enums/vehicle-logbook-purpose.enum.js +6 -0
- package/esm2015/lib/db/Models/address.js +3 -0
- package/esm2015/lib/db/Models/bank-account-balance.js +3 -0
- package/esm2015/lib/db/Models/bank-account-property.js +3 -0
- package/esm2015/lib/db/Models/bank-account.js +3 -0
- package/esm2015/lib/db/Models/bank-connection.js +3 -0
- package/esm2015/lib/db/Models/bank-transaction-import.js +3 -0
- package/esm2015/lib/db/Models/bank-transaction.js +3 -0
- package/esm2015/lib/db/Models/bank.js +3 -0
- package/esm2015/lib/db/Models/basiq-job.js +3 -0
- package/esm2015/lib/db/Models/borrowing-expense-loan.js +3 -0
- package/esm2015/lib/db/Models/borrowing-expense.js +3 -0
- package/esm2015/lib/db/Models/capital-cost-property.js +3 -0
- package/esm2015/lib/db/Models/capital-cost.js +3 -0
- package/esm2015/lib/db/Models/chart-accounts-depreciation.js +3 -0
- package/esm2015/lib/db/Models/chart-accounts-heading.js +3 -0
- package/esm2015/lib/db/Models/chart-accounts-metadata.js +3 -0
- package/esm2015/lib/db/Models/chart-accounts-value.js +3 -0
- package/esm2015/lib/db/Models/chart-accounts.js +3 -0
- package/esm2015/lib/db/Models/chat.js +3 -0
- package/esm2015/lib/db/Models/client-details.js +3 -0
- package/esm2015/lib/db/Models/client-invite.js +3 -0
- package/esm2015/lib/db/Models/client-movement.js +3 -0
- package/esm2015/lib/db/Models/country.js +3 -0
- package/esm2015/lib/db/Models/depreciation-capital-project.js +3 -0
- package/esm2015/lib/db/Models/depreciation-forecast.js +3 -0
- package/esm2015/lib/db/Models/depreciation-receipt.js +3 -0
- package/esm2015/lib/db/Models/depreciation.js +4 -0
- package/esm2015/lib/db/Models/document-folder.js +3 -0
- package/esm2015/lib/db/Models/document.js +3 -0
- package/esm2015/lib/db/Models/employee-details.js +3 -0
- package/esm2015/lib/db/Models/employee-invite.js +3 -0
- package/esm2015/lib/db/Models/financial-data-system.js +3 -0
- package/esm2015/lib/db/Models/firm.js +3 -0
- package/esm2015/lib/db/Models/income-source-forecast.js +3 -0
- package/esm2015/lib/db/Models/income-source-type.js +3 -0
- package/esm2015/lib/db/Models/income-source.js +3 -0
- package/esm2015/lib/db/Models/loan-payout.js +3 -0
- package/esm2015/lib/db/Models/loan.js +3 -0
- package/esm2015/lib/db/Models/message-document.js +3 -0
- package/esm2015/lib/db/Models/message.js +3 -0
- package/esm2015/lib/db/Models/occupation.js +3 -0
- package/esm2015/lib/db/Models/phone.js +3 -0
- package/esm2015/lib/db/Models/property-capital-cost.js +3 -0
- package/esm2015/lib/db/Models/property-category-movement.js +3 -0
- package/esm2015/lib/db/Models/property-category.js +3 -0
- package/esm2015/lib/db/Models/property-document.js +3 -0
- package/esm2015/lib/db/Models/property-forecast.js +3 -0
- package/esm2015/lib/db/Models/property-owner.js +3 -0
- package/esm2015/lib/db/Models/property-sold.js +3 -0
- package/esm2015/lib/db/Models/property-subscription.js +3 -0
- package/esm2015/lib/db/Models/property-valuation.js +3 -0
- package/esm2015/lib/db/Models/property.js +3 -0
- package/esm2015/lib/db/Models/registration-invite.js +3 -0
- package/esm2015/lib/db/Models/salary-forecast.js +3 -0
- package/esm2015/lib/db/Models/service-notification.js +3 -0
- package/esm2015/lib/db/Models/service-payment.js +3 -0
- package/esm2015/lib/db/Models/service-price.js +3 -0
- package/esm2015/lib/db/Models/service-product.js +3 -0
- package/esm2015/lib/db/Models/service-subscription-item.js +3 -0
- package/esm2015/lib/db/Models/service-subscription.js +3 -0
- package/esm2015/lib/db/Models/tax-return-category.js +3 -0
- package/esm2015/lib/db/Models/tax-return-item.js +3 -0
- package/esm2015/lib/db/Models/tax-return.js +3 -0
- package/esm2015/lib/db/Models/tax-review.js +3 -0
- package/esm2015/lib/db/Models/ticket.js +3 -0
- package/esm2015/lib/db/Models/transaction-allocation.js +3 -0
- package/esm2015/lib/db/Models/transaction-base.js +20 -0
- package/esm2015/lib/db/Models/transaction-metadata.js +3 -0
- package/esm2015/lib/db/Models/transaction-receipt.js +3 -0
- package/esm2015/lib/db/Models/transaction.js +4 -0
- package/esm2015/lib/db/Models/user-event-setting.js +3 -0
- package/esm2015/lib/db/Models/user-event-type.js +3 -0
- package/esm2015/lib/db/Models/user-event.js +3 -0
- package/esm2015/lib/db/Models/user.js +3 -0
- package/esm2015/lib/db/Models/vehicle-claim.js +3 -0
- package/esm2015/lib/db/Models/vehicle-logbook.js +3 -0
- package/esm2015/lib/db/Models/vehicle.js +3 -0
- package/esm2015/lib/functions/array/index.js +4 -0
- package/esm2015/lib/functions/array/replace.js +6 -0
- package/esm2015/lib/functions/array/sort-deep.js +22 -0
- package/esm2015/lib/functions/array/sort.js +13 -0
- package/esm2015/lib/functions/clone-deep.js +5 -0
- package/esm2015/lib/functions/create-date.js +8 -0
- package/esm2015/lib/functions/enum-to-list.js +13 -0
- package/esm2015/lib/functions/get-doc-icon.js +18 -0
- package/esm2015/lib/functions/mat-options-functions.js +10 -0
- package/esm2015/lib/functions/mat-sort-options.js +10 -0
- package/esm2015/lib/functions/round-to.js +10 -0
- package/esm2015/lib/functions/tax-review-filter-predicate.js +10 -0
- package/esm2015/lib/interfaces/asset-entity-type.enum.js +12 -0
- package/esm2015/lib/interfaces/asset-type.enum.js +11 -0
- package/esm2015/lib/interfaces/asset.interface.js +2 -0
- package/esm2015/lib/interfaces/chart-data.interface.js +2 -0
- package/esm2015/lib/interfaces/chart-serie.interface.js +2 -0
- package/esm2015/lib/interfaces/document.interface.js +2 -0
- package/esm2015/lib/interfaces/documentable.interface.js +2 -0
- package/esm2015/lib/interfaces/event-listener.interface.js +2 -0
- package/esm2015/lib/interfaces/income-source-forecast.interface.js +2 -0
- package/esm2015/lib/interfaces/option.interface.js +2 -0
- package/esm2015/lib/interfaces/photoable.js +2 -0
- package/esm2015/lib/interfaces/receipt.interface.js +2 -0
- package/esm2015/lib/interfaces/salary-forecast.interface.js +2 -0
- package/esm2015/lib/interfaces/tank.interface.js +2 -0
- package/esm2015/lib/models/address/address.js +24 -0
- package/esm2015/lib/models/address/country.js +16 -0
- package/esm2015/lib/models/bank/bank-account-chart-data.js +34 -0
- package/esm2015/lib/models/bank/bank-account-property.js +10 -0
- package/esm2015/lib/models/bank/bank-account-types.const.js +15 -0
- package/esm2015/lib/models/bank/bank-account.js +122 -0
- package/esm2015/lib/models/bank/bank-connection.js +14 -0
- package/esm2015/lib/models/bank/bank-transaction-chart-data.js +106 -0
- package/esm2015/lib/models/bank/bank-transaction-summary-fields.enum.js +6 -0
- package/esm2015/lib/models/bank/bank-transaction.js +67 -0
- package/esm2015/lib/models/bank/bank.js +23 -0
- package/esm2015/lib/models/bank/basiq-job.js +4 -0
- package/esm2015/lib/models/bank/basiq-token.js +13 -0
- package/esm2015/lib/models/bank/type-loan.const.js +7 -0
- package/esm2015/lib/models/borrowing-expense/borrowing-expense-loan.js +4 -0
- package/esm2015/lib/models/borrowing-expense/borrowing-expense.js +4 -0
- package/esm2015/lib/models/chart/chart-data.js +13 -0
- package/esm2015/lib/models/chart/chart-serie.js +7 -0
- package/esm2015/lib/models/chart-accounts/chart-accounts-categories.const.js +85 -0
- package/esm2015/lib/models/chart-accounts/chart-accounts-depreciation.js +16 -0
- package/esm2015/lib/models/chart-accounts/chart-accounts-heading.js +4 -0
- package/esm2015/lib/models/chart-accounts/chart-accounts-metadata.js +14 -0
- package/esm2015/lib/models/chart-accounts/chart-accounts-tax-labels.enum.js +7 -0
- package/esm2015/lib/models/chart-accounts/chart-accounts.js +120 -0
- package/esm2015/lib/models/chat/chat-view-type.enum.js +6 -0
- package/esm2015/lib/models/chat/chat.js +23 -0
- package/esm2015/lib/models/chat/message-document.js +20 -0
- package/esm2015/lib/models/chat/message.js +39 -0
- package/esm2015/lib/models/client/client-details.js +4 -0
- package/esm2015/lib/models/client/client-invite.js +67 -0
- package/esm2015/lib/models/client/client-movement.js +27 -0
- package/esm2015/lib/models/client/client-portfolio-chart-data.js +57 -0
- package/esm2015/lib/models/client/client-portfolio-report.js +6 -0
- package/esm2015/lib/models/depreciation/depreciation-capital-project.js +9 -0
- package/esm2015/lib/models/depreciation/depreciation-forecast.js +22 -0
- package/esm2015/lib/models/depreciation/depreciation-group-item.js +14 -0
- package/esm2015/lib/models/depreciation/depreciation-group.enum.js +9 -0
- package/esm2015/lib/models/depreciation/depreciation-group.js +15 -0
- package/esm2015/lib/models/depreciation/depreciation-groups.const.js +29 -0
- package/esm2015/lib/models/depreciation/depreciation-receipt.js +11 -0
- package/esm2015/lib/models/depreciation/depreciation.js +159 -0
- package/esm2015/lib/models/document/document-api-url-prefix.enum.js +9 -0
- package/esm2015/lib/models/document/document-file-types.const.js +23 -0
- package/esm2015/lib/models/document/document-folder.js +10 -0
- package/esm2015/lib/models/document/document.js +24 -0
- package/esm2015/lib/models/employee/employee-details.js +10 -0
- package/esm2015/lib/models/employee/employee-invite.js +14 -0
- package/esm2015/lib/models/endpoint/endpoint.js +23 -0
- package/esm2015/lib/models/endpoint/endpoints.const.js +142 -0
- package/esm2015/lib/models/event/app-event-type.enum.js +39 -0
- package/esm2015/lib/models/event/app-event.js +10 -0
- package/esm2015/lib/models/file/icons-file.enum.js +7 -0
- package/esm2015/lib/models/financial-year/financial-year.js +44 -0
- package/esm2015/lib/models/financial-year/month-name-short.enum.js +21 -0
- package/esm2015/lib/models/financial-year/month-number.enum.js +21 -0
- package/esm2015/lib/models/financial-year/months.const.js +2 -0
- package/esm2015/lib/models/firm/firm.js +30 -0
- package/esm2015/lib/models/income-position/income-position.js +9 -0
- package/esm2015/lib/models/income-source/income-source-chart-data.js +45 -0
- package/esm2015/lib/models/income-source/income-source-forecast.js +31 -0
- package/esm2015/lib/models/income-source/income-source-type.js +27 -0
- package/esm2015/lib/models/income-source/income-source.js +51 -0
- package/esm2015/lib/models/income-source/salary-forecast.js +14 -0
- package/esm2015/lib/models/loan/loan-max-number-of-payments.enum.js +10 -0
- package/esm2015/lib/models/loan/loan-payment.js +12 -0
- package/esm2015/lib/models/loan/loan-payout.js +11 -0
- package/esm2015/lib/models/loan/loan.js +39 -0
- package/esm2015/lib/models/logbook/default-vehicle-expense.js +20 -0
- package/esm2015/lib/models/logbook/logbook-period.js +11 -0
- package/esm2015/lib/models/logbook/logbook-purpose-options.const.js +6 -0
- package/esm2015/lib/models/logbook/vehicle-claim.js +26 -0
- package/esm2015/lib/models/logbook/vehicle-logbook.js +16 -0
- package/esm2015/lib/models/logbook/vehicle.js +39 -0
- package/esm2015/lib/models/notification/notification-event-types.const.js +43 -0
- package/esm2015/lib/models/notification/notification.js +63 -0
- package/esm2015/lib/models/phone/phone.js +12 -0
- package/esm2015/lib/models/property/calculation-form-item.js +17 -0
- package/esm2015/lib/models/property/calculation-form-type.enum.js +9 -0
- package/esm2015/lib/models/property/capital-costs-itmes.const.js +57 -0
- package/esm2015/lib/models/property/corelogic-suggestion.js +7 -0
- package/esm2015/lib/models/property/ownership-filter-options.enum.js +10 -0
- package/esm2015/lib/models/property/property-capital-cost.js +4 -0
- package/esm2015/lib/models/property/property-category-movement.js +20 -0
- package/esm2015/lib/models/property/property-category.js +8 -0
- package/esm2015/lib/models/property/property-document.js +17 -0
- package/esm2015/lib/models/property/property-equity-chart-data.js +155 -0
- package/esm2015/lib/models/property/property-equity-chart-item.js +24 -0
- package/esm2015/lib/models/property/property-equity-chart-type.enum.js +6 -0
- package/esm2015/lib/models/property/property-forecast.js +52 -0
- package/esm2015/lib/models/property/property-owner.js +48 -0
- package/esm2015/lib/models/property/property-sold.js +12 -0
- package/esm2015/lib/models/property/property-subscription.js +13 -0
- package/esm2015/lib/models/property/property-valuation.js +23 -0
- package/esm2015/lib/models/property/property.js +130 -0
- package/esm2015/lib/models/registration-invite/registration-invite.js +10 -0
- package/esm2015/lib/models/service-subscription/module-url-list.const.js +12 -0
- package/esm2015/lib/models/service-subscription/service-payment.js +10 -0
- package/esm2015/lib/models/service-subscription/service-price.js +10 -0
- package/esm2015/lib/models/service-subscription/service-product.js +10 -0
- package/esm2015/lib/models/service-subscription/service-subscription-item.js +13 -0
- package/esm2015/lib/models/service-subscription/service-subscription.js +128 -0
- package/esm2015/lib/models/service-subscription/subscription-description.const.js +8 -0
- package/esm2015/lib/models/service-subscription/subscription-title.const.js +8 -0
- package/esm2015/lib/models/service-subscription/subscription-type.enum.js +8 -0
- package/esm2015/lib/models/tax-review/tax-review.js +86 -0
- package/esm2015/lib/models/tax-summary/tax-return-category-item-details.js +9 -0
- package/esm2015/lib/models/tax-summary/tax-return-category-item.js +15 -0
- package/esm2015/lib/models/tax-summary/tax-summary-section.js +30 -0
- package/esm2015/lib/models/tax-summary/tax-summary-type.enum.js +9 -0
- package/esm2015/lib/models/tax-summary/tax-summary.js +71 -0
- package/esm2015/lib/models/transaction/income-amount-type.enum.js +9 -0
- package/esm2015/lib/models/transaction/transaction-allocation.js +21 -0
- package/esm2015/lib/models/transaction/transaction-metadata.js +10 -0
- package/esm2015/lib/models/transaction/transaction-receipt.js +11 -0
- package/esm2015/lib/models/transaction/transaction.js +214 -0
- package/esm2015/lib/models/user/my-account-history-initiated-by.enum.js +6 -0
- package/esm2015/lib/models/user/my-account-history-status.enum.js +6 -0
- package/esm2015/lib/models/user/my-account-history-type.enum.js +7 -0
- package/esm2015/lib/models/user/my-account-history.js +3 -0
- package/esm2015/lib/models/user/occupation.js +4 -0
- package/esm2015/lib/models/user/user-roles.const.js +13 -0
- package/esm2015/lib/models/user/user-to-register.js +6 -0
- package/esm2015/lib/models/user/user-work-position.const.js +7 -0
- package/esm2015/lib/models/user/user.js +138 -0
- package/esm2015/lib/models/user-event/user-event-category.enum.js +11 -0
- package/esm2015/lib/models/user-event/user-event-category.js +6 -0
- package/esm2015/lib/models/user-event/user-event-setting-field.enum.js +10 -0
- package/esm2015/lib/models/user-event/user-event-setting.js +18 -0
- package/esm2015/lib/models/user-event/user-event-type.js +24 -0
- package/esm2015/lib/services/address/address.service.js +39 -0
- package/esm2015/lib/services/asset/assets.service.js +51 -0
- package/esm2015/lib/services/auth/auth.service.js +46 -0
- package/esm2015/lib/services/auth/jwt.service.js +36 -0
- package/esm2015/lib/services/bank/bank-account-calculation.service.js +30 -0
- package/esm2015/lib/services/bank/bank-account.service.js +108 -0
- package/esm2015/lib/services/bank/bank-connection.service.js +43 -0
- package/esm2015/lib/services/bank/bank-transaction-calculation.service.js +65 -0
- package/esm2015/lib/services/bank/bank-transaction.service.js +89 -0
- package/esm2015/lib/services/bank/bank.service.js +24 -0
- package/esm2015/lib/services/bank/basiq.service.js +94 -0
- package/esm2015/lib/services/base-rest.service.js +190 -0
- package/esm2015/lib/services/borrowing-expense/borrowing-expense.service.js +73 -0
- package/esm2015/lib/services/chart-accounts/chart-accounts-depreciations.service.js +38 -0
- package/esm2015/lib/services/chart-accounts/chart-accounts.service.js +89 -0
- package/esm2015/lib/services/chat/chat.service.js +77 -0
- package/esm2015/lib/services/chat/message-document.service.js +118 -0
- package/esm2015/lib/services/chat/message.service.js +65 -0
- package/esm2015/lib/services/client/client-invite.service.js +102 -0
- package/esm2015/lib/services/client/client-movement.service.js +98 -0
- package/esm2015/lib/services/client/client-portfolio-report.service.js +37 -0
- package/esm2015/lib/services/depreciation/capital-project.service.js +62 -0
- package/esm2015/lib/services/depreciation/depreciation.service.js +146 -0
- package/esm2015/lib/services/document/document-folder.service.js +84 -0
- package/esm2015/lib/services/employee/employee-invite.service.js +53 -0
- package/esm2015/lib/services/employee/employee.service.js +39 -0
- package/esm2015/lib/services/event/event-dispatcher.service.js +30 -0
- package/esm2015/lib/services/event/sse.service.js +46 -0
- package/esm2015/lib/services/firm/firm.service.js +79 -0
- package/esm2015/lib/services/header-title/header-title.service.js +28 -0
- package/esm2015/lib/services/income-source/income-source-forecast.service.js +90 -0
- package/esm2015/lib/services/income-source/income-source.service.js +109 -0
- package/esm2015/lib/services/income-source/salary-forecast.service.js +90 -0
- package/esm2015/lib/services/intercom/intercom.service.js +41 -0
- package/esm2015/lib/services/loan/loan.service.js +145 -0
- package/esm2015/lib/services/notification/notification.service.js +65 -0
- package/esm2015/lib/services/preloader/preloader.service.js +30 -0
- package/esm2015/lib/services/property/corelogic.service.js +46 -0
- package/esm2015/lib/services/property/property-calculation.service.js +121 -0
- package/esm2015/lib/services/property/property-capital-cost.service.js +46 -0
- package/esm2015/lib/services/property/property-category.service.js +23 -0
- package/esm2015/lib/services/property/property-document.service.js +68 -0
- package/esm2015/lib/services/property/property-owner.service.js +123 -0
- package/esm2015/lib/services/property/property-sold.service.js +23 -0
- package/esm2015/lib/services/property/property.service.js +115 -0
- package/esm2015/lib/services/subscription/subscription.service.js +138 -0
- package/esm2015/lib/services/tax-review/tax-review-history.service.js +41 -0
- package/esm2015/lib/services/tax-review/tax-review.service.js +103 -0
- package/esm2015/lib/services/tax-summary/tax-summary.service.js +71 -0
- package/esm2015/lib/services/transaction/transaction-allocation.service.js +85 -0
- package/esm2015/lib/services/transaction/transaction-calculation.service.js +47 -0
- package/esm2015/lib/services/transaction/transaction.service.js +319 -0
- package/esm2015/lib/services/user/occupation.service.js +45 -0
- package/esm2015/lib/services/user/user-switcher.service.js +37 -0
- package/esm2015/lib/services/user/user.service.js +124 -0
- package/esm2015/lib/services/user-event/user-event-setting.service.js +59 -0
- package/esm2015/lib/services/user-event/user-event-type.service.js +29 -0
- package/esm2015/lib/services/work/work-tank.service.js +236 -0
- package/esm2015/lib/tt-core.module.js +1 -3
- package/esm2015/public-api.js +334 -3
- package/fesm2015/taxtank-core.js +9738 -25
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/collections/abstract.collection.d.ts +40 -0
- package/lib/collections/bank-account.collection.d.ts +67 -0
- package/lib/collections/bank-transaction.collection.d.ts +72 -0
- package/lib/collections/client-movement.collection.d.ts +17 -0
- package/lib/collections/client-portfolio-report.collection.d.ts +26 -0
- package/lib/collections/client.collection.d.ts +4 -0
- package/lib/collections/collection-dictionary.d.ts +44 -0
- package/lib/collections/depreciation-forecast.collection.d.ts +11 -0
- package/lib/collections/depreciation.collection.d.ts +27 -0
- package/lib/collections/employee.collection.d.ts +6 -0
- package/lib/collections/income-source.collection.d.ts +25 -0
- package/lib/collections/loan.collection.d.ts +14 -0
- package/lib/collections/logbook.collection.d.ts +19 -0
- package/lib/collections/message-document.collection.d.ts +11 -0
- package/lib/collections/message.collection.d.ts +14 -0
- package/lib/collections/property.collection.d.ts +33 -0
- package/lib/collections/service-price.collection.d.ts +6 -0
- package/lib/collections/service-subscription.collection.d.ts +8 -0
- package/lib/collections/tax-return-category-item.collection.d.ts +68 -0
- package/lib/collections/tax-review.collection.d.ts +35 -0
- package/lib/collections/transaction-allocation.collection.d.ts +23 -0
- package/lib/collections/transaction.collection.d.ts +76 -0
- package/lib/collections/user-event-setting.collection.d.ts +30 -0
- package/lib/db/Enums/address-type.enum.d.ts +4 -0
- package/lib/db/Enums/bank-account-status.enum.d.ts +4 -0
- package/lib/db/Enums/bank-account-type.enum.d.ts +10 -0
- package/lib/db/Enums/bank-connection-status.enum.d.ts +5 -0
- package/lib/db/Enums/bank-transaction-type.enum.d.ts +4 -0
- package/lib/db/Enums/chart-accounts-category.enum.d.ts +13 -0
- package/lib/db/Enums/chart-accounts-etp.enum.d.ts +7 -0
- package/lib/db/Enums/chart-accounts-heading-tax-deductible.enum.d.ts +6 -0
- package/lib/db/Enums/chart-accounts-heading-taxable.enum.d.ts +6 -0
- package/lib/db/Enums/chart-accounts-heading-vehicle-list.enum.d.ts +4 -0
- package/lib/db/Enums/chart-accounts-list.enum.d.ts +19 -0
- package/lib/db/Enums/chart-accounts-metadata-list.enum.d.ts +14 -0
- package/lib/db/Enums/chart-accounts-metadata-type.enum.d.ts +4 -0
- package/lib/db/Enums/chart-accounts-type.enum.d.ts +4 -0
- package/lib/db/Enums/chat-status.enum.d.ts +4 -0
- package/lib/db/Enums/client-details-medicare-exemption.enum.d.ts +5 -0
- package/lib/db/Enums/client-details-work-depreciation-calculation.enum.d.ts +4 -0
- package/lib/db/Enums/client-details-working-holiday-maker.enum.d.ts +5 -0
- package/lib/db/Enums/client-invite-status.enum.d.ts +4 -0
- package/lib/db/Enums/client-invite-type.enum.d.ts +4 -0
- package/lib/db/Enums/depreciation-calculation-percent.enum.d.ts +7 -0
- package/lib/db/Enums/depreciation-calculation.enum.d.ts +7 -0
- package/lib/db/Enums/depreciation-type.enum.d.ts +6 -0
- package/lib/db/Enums/depreciation-write-off-amount.enum.d.ts +4 -0
- package/lib/db/Enums/firm-type.enum.d.ts +4 -0
- package/lib/db/Enums/income-source-type-list-other.enum.d.ts +6 -0
- package/lib/db/Enums/income-source-type-list-salary.enum.d.ts +3 -0
- package/lib/db/Enums/income-source-type-list-work.enum.d.ts +8 -0
- package/lib/db/Enums/income-source-type.enum.d.ts +5 -0
- package/lib/db/Enums/invite-status.enum.d.ts +5 -0
- package/lib/db/Enums/loan-bank-type.enum.d.ts +10 -0
- package/lib/db/Enums/loan-frequency.enum.d.ts +6 -0
- package/lib/db/Enums/loan-interest-type.enum.d.ts +4 -0
- package/lib/db/Enums/loan-payout-type.enum.d.ts +4 -0
- package/lib/db/Enums/loan-repayment-frequency.enum.d.ts +5 -0
- package/lib/db/Enums/loan-repayment-type.enum.d.ts +4 -0
- package/lib/db/Enums/loan-type.enum.d.ts +12 -0
- package/lib/db/Enums/loan-vehicle-type.enum.d.ts +5 -0
- package/lib/db/Enums/phone-type.enum.d.ts +4 -0
- package/lib/db/Enums/property-depreciation-calculation.enum.d.ts +4 -0
- package/lib/db/Enums/property-owner-access.enum.d.ts +4 -0
- package/lib/db/Enums/property-owner-status.enum.d.ts +5 -0
- package/lib/db/Enums/registration-invite-status.enum.d.ts +4 -0
- package/lib/db/Enums/salary-forecast-frequency.enum.d.ts +6 -0
- package/lib/db/Enums/service-notification-status.enum.d.ts +5 -0
- package/lib/db/Enums/service-notification-type.enum.d.ts +4 -0
- package/lib/db/Enums/service-payment-status.enum.d.ts +4 -0
- package/lib/db/Enums/service-price-recurring-interval.enum.d.ts +6 -0
- package/lib/db/Enums/service-price-type.enum.d.ts +4 -0
- package/lib/db/Enums/service-subscription-status.enum.d.ts +8 -0
- package/lib/db/Enums/spare-document-spare-type.enum.d.ts +4 -0
- package/lib/db/Enums/tank-type.enum.d.ts +5 -0
- package/lib/db/Enums/tax-calculation-medicare-exemption.enum.d.ts +4 -0
- package/lib/db/Enums/tax-calculation-type.enum.d.ts +12 -0
- package/lib/db/Enums/tax-return-category-list.enum.d.ts +26 -0
- package/lib/db/Enums/tax-return-category-section.enum.d.ts +6 -0
- package/lib/db/Enums/tax-review-status.enum.d.ts +11 -0
- package/lib/db/Enums/tax-summary-list.enum.d.ts +15 -0
- package/lib/db/Enums/tax-summary-section.enum.d.ts +6 -0
- package/lib/db/Enums/tax-summary-tax-summary.enum.d.ts +15 -0
- package/lib/db/Enums/ticket-feedback.enum.d.ts +4 -0
- package/lib/db/Enums/ticket-status.enum.d.ts +7 -0
- package/lib/db/Enums/ticket-types.enum.d.ts +3 -0
- package/lib/db/Enums/transaction-operation.enum.d.ts +5 -0
- package/lib/db/Enums/transaction-source.enum.d.ts +4 -0
- package/lib/db/Enums/transaction-type.enum.d.ts +4 -0
- package/lib/db/Enums/user-event-status.enum.d.ts +6 -0
- package/lib/db/Enums/user-event-type-frequency.enum.d.ts +6 -0
- package/lib/db/Enums/user-event-type-reminder-type.enum.d.ts +6 -0
- package/lib/db/Enums/user-event-type-reminder.enum.d.ts +5 -0
- package/lib/db/Enums/user-event-type-type.enum.d.ts +33 -0
- package/lib/db/Enums/user-medicare-exemption.enum.d.ts +5 -0
- package/lib/db/Enums/user-roles.enum.d.ts +13 -0
- package/lib/db/Enums/user-status.enum.d.ts +6 -0
- package/lib/db/Enums/user-title.enum.d.ts +7 -0
- package/lib/db/Enums/user-work-depreciation-calculation.enum.d.ts +4 -0
- package/lib/db/Enums/user-working-holiday-maker.enum.d.ts +5 -0
- package/lib/db/Enums/vehicle-claim-method.enum.d.ts +4 -0
- package/lib/db/Enums/vehicle-logbook-purpose.enum.d.ts +4 -0
- package/lib/db/Models/address.d.ts +19 -0
- package/lib/db/Models/bank-account-balance.d.ts +12 -0
- package/lib/db/Models/bank-account-property.d.ts +8 -0
- package/lib/db/Models/bank-account.d.ts +33 -0
- package/lib/db/Models/bank-connection.d.ts +14 -0
- package/lib/db/Models/bank-transaction-import.d.ts +11 -0
- package/lib/db/Models/bank-transaction.d.ts +16 -0
- package/lib/db/Models/bank.d.ts +11 -0
- package/lib/db/Models/basiq-job.d.ts +8 -0
- package/lib/db/Models/borrowing-expense-loan.d.ts +14 -0
- package/lib/db/Models/borrowing-expense.d.ts +7 -0
- package/lib/db/Models/capital-cost-property.d.ts +13 -0
- package/lib/db/Models/capital-cost.d.ts +4 -0
- package/lib/db/Models/chart-accounts-depreciation.d.ts +10 -0
- package/lib/db/Models/chart-accounts-heading.d.ts +6 -0
- package/lib/db/Models/chart-accounts-metadata.d.ts +11 -0
- package/lib/db/Models/chart-accounts-value.d.ts +12 -0
- package/lib/db/Models/chart-accounts.d.ts +23 -0
- package/lib/db/Models/chat.d.ts +17 -0
- package/lib/db/Models/client-details.d.ts +29 -0
- package/lib/db/Models/client-invite.d.ts +16 -0
- package/lib/db/Models/client-movement.d.ts +12 -0
- package/lib/db/Models/country.d.ts +5 -0
- package/lib/db/Models/depreciation-capital-project.d.ts +13 -0
- package/lib/db/Models/depreciation-forecast.d.ts +18 -0
- package/lib/db/Models/depreciation-receipt.d.ts +11 -0
- package/lib/db/Models/depreciation.d.ts +42 -0
- package/lib/db/Models/document-folder.d.ts +9 -0
- package/lib/db/Models/document.d.ts +11 -0
- package/lib/db/Models/employee-details.d.ts +7 -0
- package/lib/db/Models/employee-invite.d.ts +9 -0
- package/lib/db/Models/financial-data-system.d.ts +9 -0
- package/lib/db/Models/firm.d.ts +28 -0
- package/lib/db/Models/income-source-forecast.d.ts +12 -0
- package/lib/db/Models/income-source-type.d.ts +8 -0
- package/lib/db/Models/income-source.d.ts +20 -0
- package/lib/db/Models/loan-payout.d.ts +12 -0
- package/lib/db/Models/loan.d.ts +33 -0
- package/lib/db/Models/message-document.d.ts +15 -0
- package/lib/db/Models/message.d.ts +15 -0
- package/lib/db/Models/occupation.d.ts +5 -0
- package/lib/db/Models/phone.d.ts +12 -0
- package/lib/db/Models/property-capital-cost.d.ts +13 -0
- package/lib/db/Models/property-category-movement.d.ts +17 -0
- package/lib/db/Models/property-category.d.ts +13 -0
- package/lib/db/Models/property-document.d.ts +13 -0
- package/lib/db/Models/property-forecast.d.ts +14 -0
- package/lib/db/Models/property-owner.d.ts +20 -0
- package/lib/db/Models/property-sold.d.ts +12 -0
- package/lib/db/Models/property-subscription.d.ts +9 -0
- package/lib/db/Models/property-valuation.d.ts +12 -0
- package/lib/db/Models/property.d.ts +41 -0
- package/lib/db/Models/registration-invite.d.ts +12 -0
- package/lib/db/Models/salary-forecast.d.ts +15 -0
- package/lib/db/Models/service-notification.d.ts +13 -0
- package/lib/db/Models/service-payment.d.ts +11 -0
- package/lib/db/Models/service-price.d.ts +15 -0
- package/lib/db/Models/service-product.d.ts +12 -0
- package/lib/db/Models/service-subscription-item.d.ts +9 -0
- package/lib/db/Models/service-subscription.d.ts +14 -0
- package/lib/db/Models/tax-return-category.d.ts +12 -0
- package/lib/db/Models/tax-return-item.d.ts +15 -0
- package/lib/db/Models/tax-return.d.ts +8 -0
- package/lib/db/Models/tax-review.d.ts +13 -0
- package/lib/db/Models/ticket.d.ts +19 -0
- package/lib/db/Models/transaction-allocation.d.ts +8 -0
- package/lib/db/Models/transaction-base.d.ts +22 -0
- package/lib/db/Models/transaction-metadata.d.ts +11 -0
- package/lib/db/Models/transaction-receipt.d.ts +11 -0
- package/lib/db/Models/transaction.d.ts +43 -0
- package/lib/db/Models/user-event-setting.d.ts +10 -0
- package/lib/db/Models/user-event-type.d.ts +15 -0
- package/lib/db/Models/user-event.d.ts +13 -0
- package/lib/db/Models/user.d.ts +51 -0
- package/lib/db/Models/vehicle-claim.d.ts +11 -0
- package/lib/db/Models/vehicle-logbook.d.ts +16 -0
- package/lib/db/Models/vehicle.d.ts +8 -0
- package/lib/functions/array/index.d.ts +3 -0
- package/lib/functions/array/replace.d.ts +1 -0
- package/lib/functions/array/sort-deep.d.ts +1 -0
- package/lib/functions/array/sort.d.ts +1 -0
- package/lib/functions/clone-deep.d.ts +1 -0
- package/lib/functions/create-date.d.ts +5 -0
- package/lib/functions/enum-to-list.d.ts +2 -0
- package/lib/functions/get-doc-icon.d.ts +7 -0
- package/lib/functions/mat-options-functions.d.ts +2 -0
- package/lib/functions/mat-sort-options.d.ts +7 -0
- package/lib/functions/round-to.d.ts +6 -0
- package/lib/functions/tax-review-filter-predicate.d.ts +7 -0
- package/lib/interfaces/asset-entity-type.enum.d.ts +10 -0
- package/lib/interfaces/asset-type.enum.d.ts +8 -0
- package/lib/interfaces/asset.interface.d.ts +17 -0
- package/lib/interfaces/chart-data.interface.d.ts +10 -0
- package/lib/interfaces/chart-serie.interface.d.ts +8 -0
- package/lib/interfaces/document.interface.d.ts +18 -0
- package/lib/interfaces/documentable.interface.d.ts +8 -0
- package/lib/interfaces/event-listener.interface.d.ts +9 -0
- package/lib/interfaces/income-source-forecast.interface.d.ts +7 -0
- package/lib/interfaces/option.interface.d.ts +4 -0
- package/lib/interfaces/photoable.d.ts +13 -0
- package/lib/interfaces/receipt.interface.d.ts +12 -0
- package/lib/interfaces/salary-forecast.interface.d.ts +16 -0
- package/lib/interfaces/tank.interface.d.ts +7 -0
- package/lib/models/address/address.d.ts +11 -0
- package/lib/models/address/country.d.ts +11 -0
- package/lib/models/bank/bank-account-chart-data.d.ts +17 -0
- package/lib/models/bank/bank-account-property.d.ts +5 -0
- package/lib/models/bank/bank-account-types.const.d.ts +7 -0
- package/lib/models/bank/bank-account.d.ts +72 -0
- package/lib/models/bank/bank-connection.d.ts +7 -0
- package/lib/models/bank/bank-transaction-chart-data.d.ts +30 -0
- package/lib/models/bank/bank-transaction-summary-fields.enum.d.ts +4 -0
- package/lib/models/bank/bank-transaction.d.ts +38 -0
- package/lib/models/bank/bank.d.ts +8 -0
- package/lib/models/bank/basiq-job.d.ts +3 -0
- package/lib/models/bank/basiq-token.d.ts +9 -0
- package/lib/models/bank/type-loan.const.d.ts +2 -0
- package/lib/models/borrowing-expense/borrowing-expense-loan.d.ts +3 -0
- package/lib/models/borrowing-expense/borrowing-expense.d.ts +3 -0
- package/lib/models/chart/chart-data.d.ts +9 -0
- package/lib/models/chart/chart-serie.d.ts +8 -0
- package/lib/models/chart-accounts/chart-accounts-categories.const.d.ts +4 -0
- package/lib/models/chart-accounts/chart-accounts-depreciation.d.ts +7 -0
- package/lib/models/chart-accounts/chart-accounts-heading.d.ts +5 -0
- package/lib/models/chart-accounts/chart-accounts-metadata.d.ts +8 -0
- package/lib/models/chart-accounts/chart-accounts-tax-labels.enum.d.ts +5 -0
- package/lib/models/chart-accounts/chart-accounts.d.ts +66 -0
- package/lib/models/chat/chat-view-type.enum.d.ts +4 -0
- package/lib/models/chat/chat.d.ts +10 -0
- package/lib/models/chat/message-document.d.ts +11 -0
- package/lib/models/chat/message.d.ts +20 -0
- package/lib/models/client/client-details.d.ts +3 -0
- package/lib/models/client/client-invite.d.ts +34 -0
- package/lib/models/client/client-movement.d.ts +12 -0
- package/lib/models/client/client-portfolio-chart-data.d.ts +11 -0
- package/lib/models/client/client-portfolio-report.d.ts +10 -0
- package/lib/models/depreciation/depreciation-capital-project.d.ts +5 -0
- package/lib/models/depreciation/depreciation-forecast.d.ts +8 -0
- package/lib/models/depreciation/depreciation-group-item.d.ts +10 -0
- package/lib/models/depreciation/depreciation-group.d.ts +11 -0
- package/lib/models/depreciation/depreciation-group.enum.d.ts +7 -0
- package/lib/models/depreciation/depreciation-groups.const.d.ts +9 -0
- package/lib/models/depreciation/depreciation-receipt.d.ts +8 -0
- package/lib/models/depreciation/depreciation.d.ts +69 -0
- package/lib/models/document/document-api-url-prefix.enum.d.ts +7 -0
- package/lib/models/document/document-file-types.const.d.ts +3 -0
- package/lib/models/document/document-folder.d.ts +7 -0
- package/lib/models/document/document.d.ts +21 -0
- package/lib/models/employee/employee-details.d.ts +5 -0
- package/lib/models/employee/employee-invite.d.ts +7 -0
- package/lib/models/endpoint/endpoint.d.ts +22 -0
- package/lib/models/endpoint/endpoints.const.d.ts +7 -0
- package/lib/models/event/app-event-type.enum.d.ts +37 -0
- package/lib/models/event/app-event.d.ts +9 -0
- package/lib/models/file/icons-file.enum.d.ts +5 -0
- package/lib/models/financial-year/financial-year.d.ts +19 -0
- package/lib/models/financial-year/month-name-short.enum.d.ts +19 -0
- package/lib/models/financial-year/month-number.enum.d.ts +19 -0
- package/lib/models/financial-year/months.const.d.ts +1 -0
- package/lib/models/firm/firm.d.ts +18 -0
- package/lib/models/income-position/income-position.d.ts +9 -0
- package/lib/models/income-source/income-source-chart-data.d.ts +14 -0
- package/lib/models/income-source/income-source-forecast.d.ts +22 -0
- package/lib/models/income-source/income-source-type.d.ts +8 -0
- package/lib/models/income-source/income-source.d.ts +27 -0
- package/lib/models/income-source/salary-forecast.d.ts +16 -0
- package/lib/models/loan/loan-max-number-of-payments.enum.d.ts +8 -0
- package/lib/models/loan/loan-payment.d.ts +13 -0
- package/lib/models/loan/loan-payout.d.ts +9 -0
- package/lib/models/loan/loan.d.ts +20 -0
- package/lib/models/logbook/default-vehicle-expense.d.ts +5 -0
- package/lib/models/logbook/logbook-period.d.ts +6 -0
- package/lib/models/logbook/logbook-purpose-options.const.d.ts +4 -0
- package/lib/models/logbook/vehicle-claim.d.ts +15 -0
- package/lib/models/logbook/vehicle-logbook.d.ts +6 -0
- package/lib/models/logbook/vehicle.d.ts +12 -0
- package/lib/models/notification/notification-event-types.const.d.ts +7 -0
- package/lib/models/notification/notification.d.ts +16 -0
- package/lib/models/phone/phone.d.ts +6 -0
- package/lib/models/property/calculation-form-item.d.ts +15 -0
- package/lib/models/property/calculation-form-type.enum.d.ts +7 -0
- package/lib/models/property/capital-costs-itmes.const.d.ts +2 -0
- package/lib/models/property/corelogic-suggestion.d.ts +18 -0
- package/lib/models/property/ownership-filter-options.enum.d.ts +8 -0
- package/lib/models/property/property-capital-cost.d.ts +3 -0
- package/lib/models/property/property-category-movement.d.ts +9 -0
- package/lib/models/property/property-category.d.ts +4 -0
- package/lib/models/property/property-document.d.ts +14 -0
- package/lib/models/property/property-equity-chart-data.d.ts +62 -0
- package/lib/models/property/property-equity-chart-item.d.ts +19 -0
- package/lib/models/property/property-equity-chart-type.enum.d.ts +4 -0
- package/lib/models/property/property-forecast.d.ts +28 -0
- package/lib/models/property/property-owner.d.ts +21 -0
- package/lib/models/property/property-sold.d.ts +5 -0
- package/lib/models/property/property-subscription.d.ts +6 -0
- package/lib/models/property/property-valuation.d.ts +9 -0
- package/lib/models/property/property.d.ts +55 -0
- package/lib/models/registration-invite/registration-invite.d.ts +6 -0
- package/lib/models/service-subscription/module-url-list.const.d.ts +6 -0
- package/lib/models/service-subscription/service-payment.d.ts +5 -0
- package/lib/models/service-subscription/service-price.d.ts +5 -0
- package/lib/models/service-subscription/service-product.d.ts +5 -0
- package/lib/models/service-subscription/service-subscription-item.d.ts +6 -0
- package/lib/models/service-subscription/service-subscription.d.ts +55 -0
- package/lib/models/service-subscription/subscription-description.const.d.ts +3 -0
- package/lib/models/service-subscription/subscription-title.const.d.ts +3 -0
- package/lib/models/service-subscription/subscription-type.enum.d.ts +6 -0
- package/lib/models/tax-review/tax-review.d.ts +52 -0
- package/lib/models/tax-summary/tax-return-category-item-details.d.ts +13 -0
- package/lib/models/tax-summary/tax-return-category-item.d.ts +18 -0
- package/lib/models/tax-summary/tax-summary-section.d.ts +12 -0
- package/lib/models/tax-summary/tax-summary-type.enum.d.ts +7 -0
- package/lib/models/tax-summary/tax-summary.d.ts +44 -0
- package/lib/models/transaction/income-amount-type.enum.d.ts +7 -0
- package/lib/models/transaction/transaction-allocation.d.ts +12 -0
- package/lib/models/transaction/transaction-metadata.d.ts +5 -0
- package/lib/models/transaction/transaction-receipt.d.ts +8 -0
- package/lib/models/transaction/transaction.d.ts +98 -0
- package/lib/models/user/my-account-history-initiated-by.enum.d.ts +4 -0
- package/lib/models/user/my-account-history-status.enum.d.ts +4 -0
- package/lib/models/user/my-account-history-type.enum.d.ts +5 -0
- package/lib/models/user/my-account-history.d.ts +11 -0
- package/lib/models/user/occupation.d.ts +3 -0
- package/lib/models/user/user-roles.const.d.ts +4 -0
- package/lib/models/user/user-to-register.d.ts +7 -0
- package/lib/models/user/user-work-position.const.d.ts +3 -0
- package/lib/models/user/user.d.ts +64 -0
- package/lib/models/user-event/user-event-category.d.ts +8 -0
- package/lib/models/user-event/user-event-category.enum.d.ts +9 -0
- package/lib/models/user-event/user-event-setting-field.enum.d.ts +8 -0
- package/lib/models/user-event/user-event-setting.d.ts +6 -0
- package/lib/models/user-event/user-event-type.d.ts +5 -0
- package/lib/services/address/address.service.d.ts +14 -0
- package/lib/services/asset/assets.service.d.ts +34 -0
- package/lib/services/auth/auth.service.d.ts +17 -0
- package/lib/services/auth/jwt.service.d.ts +16 -0
- package/lib/services/bank/bank-account-calculation.service.d.ts +19 -0
- package/lib/services/bank/bank-account.service.d.ts +47 -0
- package/lib/services/bank/bank-connection.service.d.ts +22 -0
- package/lib/services/bank/bank-transaction-calculation.service.d.ts +41 -0
- package/lib/services/bank/bank-transaction.service.d.ts +38 -0
- package/lib/services/bank/bank.service.d.ts +14 -0
- package/lib/services/bank/basiq.service.d.ts +42 -0
- package/lib/services/base-rest.service.d.ts +91 -0
- package/lib/services/borrowing-expense/borrowing-expense.service.d.ts +19 -0
- package/lib/services/chart-accounts/chart-accounts-depreciations.service.d.ts +19 -0
- package/lib/services/chart-accounts/chart-accounts.service.d.ts +37 -0
- package/lib/services/chat/chat.service.d.ts +31 -0
- package/lib/services/chat/message-document.service.d.ts +50 -0
- package/lib/services/chat/message.service.d.ts +31 -0
- package/lib/services/client/client-invite.service.d.ts +36 -0
- package/lib/services/client/client-movement.service.d.ts +40 -0
- package/lib/services/client/client-portfolio-report.service.d.ts +16 -0
- package/lib/services/depreciation/capital-project.service.d.ts +20 -0
- package/lib/services/depreciation/depreciation.service.d.ts +59 -0
- package/lib/services/document/document-folder.service.d.ts +40 -0
- package/lib/services/employee/employee-invite.service.d.ts +21 -0
- package/lib/services/employee/employee.service.d.ts +16 -0
- package/lib/services/event/event-dispatcher.service.d.ts +17 -0
- package/lib/services/event/sse.service.d.ts +16 -0
- package/lib/services/firm/firm.service.d.ts +27 -0
- package/lib/services/header-title/header-title.service.d.ts +11 -0
- package/lib/services/income-source/income-source-forecast.service.d.ts +36 -0
- package/lib/services/income-source/income-source.service.d.ts +48 -0
- package/lib/services/income-source/salary-forecast.service.d.ts +37 -0
- package/lib/services/intercom/intercom.service.d.ts +21 -0
- package/lib/services/loan/loan.service.d.ts +63 -0
- package/lib/services/notification/notification.service.d.ts +31 -0
- package/lib/services/preloader/preloader.service.d.ts +12 -0
- package/lib/services/property/corelogic.service.d.ts +15 -0
- package/lib/services/property/property-calculation.service.d.ts +33 -0
- package/lib/services/property/property-capital-cost.service.d.ts +20 -0
- package/lib/services/property/property-category.service.d.ts +13 -0
- package/lib/services/property/property-document.service.d.ts +31 -0
- package/lib/services/property/property-owner.service.d.ts +52 -0
- package/lib/services/property/property-sold.service.d.ts +13 -0
- package/lib/services/property/property.service.d.ts +50 -0
- package/lib/services/subscription/subscription.service.d.ts +47 -0
- package/lib/services/tax-review/tax-review-history.service.d.ts +19 -0
- package/lib/services/tax-review/tax-review.service.d.ts +44 -0
- package/lib/services/tax-summary/tax-summary.service.d.ts +31 -0
- package/lib/services/transaction/transaction-allocation.service.d.ts +43 -0
- package/lib/services/transaction/transaction-calculation.service.d.ts +29 -0
- package/lib/services/transaction/transaction.service.d.ts +92 -0
- package/lib/services/user/occupation.service.d.ts +20 -0
- package/lib/services/user/user-switcher.service.d.ts +20 -0
- package/lib/services/user/user.service.d.ts +60 -0
- package/lib/services/user-event/user-event-setting.service.d.ts +22 -0
- package/lib/services/user-event/user-event-type.service.d.ts +17 -0
- package/lib/services/work/work-tank.service.d.ts +93 -0
- package/package.json +11 -3
- package/public-api.d.ts +335 -1
- package/esm2015/lib/tt-core.service.js +0 -23
- package/lib/tt-core.service.d.ts +0 -8
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { BaseRestService } from '../base-rest.service';
|
|
2
|
+
import { User as UserBase } from '../../db/Models/user';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import { User } from '../../models/user/user';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class EmployeeService extends BaseRestService<UserBase, User> {
|
|
7
|
+
url: string;
|
|
8
|
+
modelClass: typeof User;
|
|
9
|
+
/**
|
|
10
|
+
* Grant/Remove Manager role to employee
|
|
11
|
+
* @param employee
|
|
12
|
+
*/
|
|
13
|
+
toggleManagerRole(employee: User): Observable<User>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EmployeeService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EmployeeService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { AppEvent } from '../../models/event/app-event';
|
|
2
|
+
import { AppEventTypeEnum } from '../../models/event/app-event-type.enum';
|
|
3
|
+
import { Observable } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class EventDispatcherService {
|
|
6
|
+
private eventSubject;
|
|
7
|
+
/**
|
|
8
|
+
* subscription to specific event type
|
|
9
|
+
*/
|
|
10
|
+
on(eventType: AppEventTypeEnum | AppEventTypeEnum[]): Observable<any>;
|
|
11
|
+
/**
|
|
12
|
+
* deliver new event
|
|
13
|
+
*/
|
|
14
|
+
dispatch<T>(event: AppEvent<T>): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EventDispatcherService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<EventDispatcherService>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { NgZone } from '@angular/core';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { JwtService } from '../auth/jwt.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class SseService {
|
|
6
|
+
private zone;
|
|
7
|
+
private jwtService;
|
|
8
|
+
private environment;
|
|
9
|
+
constructor(zone: NgZone, jwtService: JwtService, environment: any);
|
|
10
|
+
/**
|
|
11
|
+
* list to url for server events
|
|
12
|
+
*/
|
|
13
|
+
on(topic: string): Observable<object>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SseService, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SseService>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
+
import { FirmTypeEnum } from '../../db/Enums/firm-type.enum';
|
|
4
|
+
import { Firm } from '../../db/Models/firm';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FirmService {
|
|
7
|
+
private http;
|
|
8
|
+
protected environment: any;
|
|
9
|
+
firm: Firm;
|
|
10
|
+
firmSubject: ReplaySubject<Firm>;
|
|
11
|
+
constructor(http: HttpClient, environment: any);
|
|
12
|
+
/**
|
|
13
|
+
* Register new firm
|
|
14
|
+
* @param data: firm and firm owner data to register
|
|
15
|
+
*/
|
|
16
|
+
register(data: Firm): Observable<Firm>;
|
|
17
|
+
get(): Observable<Firm>;
|
|
18
|
+
update(firm: Firm): Observable<void>;
|
|
19
|
+
/**
|
|
20
|
+
* get list of all registered firms
|
|
21
|
+
*/
|
|
22
|
+
getAll(): Observable<Firm[]>;
|
|
23
|
+
getByType(type: FirmTypeEnum): Observable<Firm[]>;
|
|
24
|
+
updatePhoto(firm: Firm, photo: FormData): Observable<Firm>;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FirmService, never>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FirmService>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class HeaderTitleService {
|
|
5
|
+
private router;
|
|
6
|
+
private activatedRoute;
|
|
7
|
+
constructor(router: Router, activatedRoute: ActivatedRoute);
|
|
8
|
+
handleTitle(): Observable<any>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HeaderTitleService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<HeaderTitleService>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { IncomeSourceForecast as IncomeSourceForecastBase } from '../../db/Models/income-source-forecast';
|
|
3
|
+
import { BaseRestService } from '../base-rest.service';
|
|
4
|
+
import { IncomeSourceForecast } from '../../models/income-source/income-source-forecast';
|
|
5
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Service to work with Other Income Forecasts
|
|
9
|
+
*/
|
|
10
|
+
export declare class IncomeSourceForecastService extends BaseRestService<IncomeSourceForecastBase, IncomeSourceForecast> {
|
|
11
|
+
protected http: HttpClient;
|
|
12
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
13
|
+
protected environment: any;
|
|
14
|
+
modelClass: typeof IncomeSourceForecast;
|
|
15
|
+
url: string;
|
|
16
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
17
|
+
/**
|
|
18
|
+
* Listen to Income Sources events
|
|
19
|
+
*/
|
|
20
|
+
listenEvents(): void;
|
|
21
|
+
/**
|
|
22
|
+
* Listen to EventDispatcherService event related to added Income Sources
|
|
23
|
+
*/
|
|
24
|
+
private listenToAddedIncomeSources;
|
|
25
|
+
/**
|
|
26
|
+
* Listen to EventDispatcherService event related to updated Income Sources
|
|
27
|
+
*/
|
|
28
|
+
private listenToUpdatedIncomeSources;
|
|
29
|
+
/**
|
|
30
|
+
* Assign other income forecasts based on provided income sources
|
|
31
|
+
* @param incomeSources by which other income forecasts will be assigned
|
|
32
|
+
*/
|
|
33
|
+
private assignIncomeSourceForecasts;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IncomeSourceForecastService, never>;
|
|
35
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IncomeSourceForecastService>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Observable, ReplaySubject } from 'rxjs';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { IncomeSource as IncomeSourceBase } from '../../db/Models/income-source';
|
|
4
|
+
import { BaseRestService } from '../base-rest.service';
|
|
5
|
+
import { IncomeSourceType } from '../../models/income-source/income-source-type';
|
|
6
|
+
import { SalaryForecast } from '../../models/income-source/salary-forecast';
|
|
7
|
+
import { IncomeSourceTypeEnum } from '../../db/Enums/income-source-type.enum';
|
|
8
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
9
|
+
import { IncomeSource } from '../../models/income-source/income-source';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
/**
|
|
12
|
+
* Service to work with income sources
|
|
13
|
+
*/
|
|
14
|
+
export declare class IncomeSourceService extends BaseRestService<IncomeSourceBase, IncomeSource> {
|
|
15
|
+
protected http: HttpClient;
|
|
16
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
17
|
+
protected environment: any;
|
|
18
|
+
url: string;
|
|
19
|
+
modelClass: typeof IncomeSource;
|
|
20
|
+
incomeSourceTypes: IncomeSourceType[];
|
|
21
|
+
incomeSourceTypeSubject: ReplaySubject<IncomeSourceType[]>;
|
|
22
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
23
|
+
/**
|
|
24
|
+
* Get income sources tax calculation
|
|
25
|
+
* @param salaryForecast for which tax should be calculated
|
|
26
|
+
*/
|
|
27
|
+
getTaxCalculation(salaryForecast: SalaryForecast): Observable<SalaryForecast>;
|
|
28
|
+
/**
|
|
29
|
+
* Add batch of income sources
|
|
30
|
+
* @param incomeSources to add
|
|
31
|
+
*/
|
|
32
|
+
addBatch(incomeSources: IncomeSource[]): Observable<IncomeSource[]>;
|
|
33
|
+
/**
|
|
34
|
+
* Update batch of income sources
|
|
35
|
+
*/
|
|
36
|
+
updateBatch(incomeSources: IncomeSource[], queryParams?: object): Observable<IncomeSource[]>;
|
|
37
|
+
/**
|
|
38
|
+
* Get income sources by provided types
|
|
39
|
+
* @param types
|
|
40
|
+
*/
|
|
41
|
+
getByTypes(types: IncomeSourceTypeEnum[]): Observable<IncomeSource[]>;
|
|
42
|
+
/**
|
|
43
|
+
* Get other incomes types
|
|
44
|
+
*/
|
|
45
|
+
getIncomeSourceTypes(): Observable<IncomeSourceType[]>;
|
|
46
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IncomeSourceService, never>;
|
|
47
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IncomeSourceService>;
|
|
48
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { SalaryForecast as SalaryForecastBase } from '../../db/Models/salary-forecast';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { BaseRestService } from '../base-rest.service';
|
|
4
|
+
import { IEventListener } from '../../interfaces/event-listener.interface';
|
|
5
|
+
import { SalaryForecast } from '../../models/income-source/salary-forecast';
|
|
6
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* Service to work with Salary Forecasts
|
|
10
|
+
*/
|
|
11
|
+
export declare class SalaryForecastService extends BaseRestService<SalaryForecastBase, SalaryForecast> implements IEventListener {
|
|
12
|
+
protected http: HttpClient;
|
|
13
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
14
|
+
protected environment: any;
|
|
15
|
+
modelClass: typeof SalaryForecast;
|
|
16
|
+
url: string;
|
|
17
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
18
|
+
/**
|
|
19
|
+
* Listen to Income Sources events
|
|
20
|
+
*/
|
|
21
|
+
listenEvents(): void;
|
|
22
|
+
/**
|
|
23
|
+
* Listen to EventDispatcherService event related to added Income Sources
|
|
24
|
+
*/
|
|
25
|
+
private listenToAddedIncomeSources;
|
|
26
|
+
/**
|
|
27
|
+
* Listen to EventDispatcherService event related to updated Income Sources
|
|
28
|
+
*/
|
|
29
|
+
private listenToUpdatedIncomeSources;
|
|
30
|
+
/**
|
|
31
|
+
* Assign salary forecasts based on provided income sources
|
|
32
|
+
* @param incomeSources by which salary forecasts will be assigned
|
|
33
|
+
*/
|
|
34
|
+
private assignSalaryForecasts;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SalaryForecastService, never>;
|
|
36
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SalaryForecastService>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { User } from '../../models/user/user';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Service to work with intercom
|
|
5
|
+
*/
|
|
6
|
+
export declare class IntercomService {
|
|
7
|
+
private environment;
|
|
8
|
+
constructor(environment: any);
|
|
9
|
+
/**
|
|
10
|
+
* Init object with user credentials
|
|
11
|
+
* @param user
|
|
12
|
+
*/
|
|
13
|
+
initUser(user: User): object;
|
|
14
|
+
/**
|
|
15
|
+
* Init connection for provided data
|
|
16
|
+
* @param user
|
|
17
|
+
*/
|
|
18
|
+
initConnection(user: User): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IntercomService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IntercomService>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { Loan as LoanBase } from '../../db/Models/loan';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { BaseRestService } from '../base-rest.service';
|
|
5
|
+
import { Loan } from '../../models/loan/loan';
|
|
6
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
7
|
+
import { LoanPayout } from '../../models/loan/loan-payout';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* Service that handling loans logic
|
|
11
|
+
*/
|
|
12
|
+
export declare class LoanService extends BaseRestService<LoanBase, Loan> {
|
|
13
|
+
protected http: HttpClient;
|
|
14
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
15
|
+
protected environment: any;
|
|
16
|
+
url: string;
|
|
17
|
+
modelClass: typeof Loan;
|
|
18
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
19
|
+
/**
|
|
20
|
+
* Listen to Loans events
|
|
21
|
+
*/
|
|
22
|
+
listenEvents(): void;
|
|
23
|
+
listenToAddedLoans(): void;
|
|
24
|
+
listenToUpdatedBankAccounts(): void;
|
|
25
|
+
/**
|
|
26
|
+
* Create Loan
|
|
27
|
+
*/
|
|
28
|
+
add(model: Loan): Observable<Loan>;
|
|
29
|
+
/**
|
|
30
|
+
* Updated loan
|
|
31
|
+
* @param loan
|
|
32
|
+
*/
|
|
33
|
+
update(loan: Loan): Observable<Loan>;
|
|
34
|
+
/**
|
|
35
|
+
* Get list of vehicle loans
|
|
36
|
+
*/
|
|
37
|
+
getVehicleLoans(): Observable<Loan[]>;
|
|
38
|
+
/**
|
|
39
|
+
* Calculate loan payments
|
|
40
|
+
* @param loan
|
|
41
|
+
*/
|
|
42
|
+
calculateLoanPayments(loan: Loan): Observable<any>;
|
|
43
|
+
/**
|
|
44
|
+
* Add new loan payout
|
|
45
|
+
* @param loan
|
|
46
|
+
* @param paidOutLoan
|
|
47
|
+
*/
|
|
48
|
+
addPayoutLoan(loan: Loan, paidOutLoan: LoanPayout): Observable<any>;
|
|
49
|
+
/**
|
|
50
|
+
* Delete loan payout
|
|
51
|
+
* @param loan
|
|
52
|
+
* @param payout
|
|
53
|
+
*/
|
|
54
|
+
deletePayoutLoan(loan: Loan, payout: LoanPayout): Observable<any>;
|
|
55
|
+
/**
|
|
56
|
+
* Update loan payout
|
|
57
|
+
* @param loan
|
|
58
|
+
* @param paidOutLoan
|
|
59
|
+
*/
|
|
60
|
+
updatePayoutLoan(loan: Loan, paidOutLoan: LoanPayout): Observable<any>;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoanService, never>;
|
|
62
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<LoanService>;
|
|
63
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { ServiceNotification as NotificationBase } from '../../db/Models/service-notification';
|
|
2
|
+
import { Notification } from '../../models/notification/notification';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { IEventListener } from '../../interfaces/event-listener.interface';
|
|
5
|
+
import { BaseRestService } from '../base-rest.service';
|
|
6
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
7
|
+
import { SseService } from '../event/sse.service';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* Service to handle service notifications logic
|
|
11
|
+
*/
|
|
12
|
+
export declare class NotificationService extends BaseRestService<NotificationBase, Notification> implements IEventListener {
|
|
13
|
+
protected http: HttpClient;
|
|
14
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
15
|
+
protected environment: any;
|
|
16
|
+
private sseService;
|
|
17
|
+
modelClass: typeof Notification;
|
|
18
|
+
url: string;
|
|
19
|
+
isHydra: boolean;
|
|
20
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any, sseService: SseService);
|
|
21
|
+
/**
|
|
22
|
+
* SSE and Event Dispatcher Services listeners
|
|
23
|
+
*/
|
|
24
|
+
listenEvents(): void;
|
|
25
|
+
/**
|
|
26
|
+
* subscribe to new chat messages
|
|
27
|
+
*/
|
|
28
|
+
private listenNotifications;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { BehaviorSubject, Observable } from 'rxjs';
|
|
2
|
+
import { Endpoint } from '../../models/endpoint/endpoint';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class PreloaderService {
|
|
5
|
+
activePreloaders: BehaviorSubject<Endpoint[]>;
|
|
6
|
+
constructor();
|
|
7
|
+
get(): Observable<Endpoint[]>;
|
|
8
|
+
add(endpoint: Endpoint): void;
|
|
9
|
+
delete(endpoint: Endpoint): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PreloaderService, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PreloaderService>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
+
import { CorelogicSuggestion } from '../../models/property/corelogic-suggestion';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CorelogicService {
|
|
6
|
+
private http;
|
|
7
|
+
private environment;
|
|
8
|
+
_accessToken: string;
|
|
9
|
+
accessTokenSubject: ReplaySubject<string>;
|
|
10
|
+
constructor(http: HttpClient, environment: any);
|
|
11
|
+
getAccessToken(force?: boolean): Observable<string>;
|
|
12
|
+
getSuggestions(query: string, country?: string): Observable<CorelogicSuggestion[]>;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CorelogicService, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CorelogicService>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { BankAccountCollection } from '../../collections/bank-account.collection';
|
|
3
|
+
import { DepreciationCollection } from '../../collections/depreciation.collection';
|
|
4
|
+
import { LoanCollection } from '../../collections/loan.collection';
|
|
5
|
+
import { PropertyCollection } from '../../collections/property.collection';
|
|
6
|
+
import { TransactionCollection } from '../../collections/transaction.collection';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* Service with calculations methods for properties related with other entities.
|
|
10
|
+
* Logic here works like collections methods but for several entities
|
|
11
|
+
*/
|
|
12
|
+
export declare class PropertyCalculationService {
|
|
13
|
+
getTaxPosition(transactions: TransactionCollection, depreciations: DepreciationCollection): number;
|
|
14
|
+
getTaxPosition$(transactions$: Observable<TransactionCollection>, depreciations$: Observable<DepreciationCollection>): Observable<number>;
|
|
15
|
+
taxPositionGrowth(properties: PropertyCollection, transactions: TransactionCollection, depreciations: DepreciationCollection): number;
|
|
16
|
+
taxPositionGrowth$(properties$: Observable<PropertyCollection>, transactions$: Observable<TransactionCollection>, depreciations$: Observable<DepreciationCollection>): Observable<number>;
|
|
17
|
+
getRentalReturn(properties: PropertyCollection, transactions: TransactionCollection): number;
|
|
18
|
+
getLoanAmount(properties: PropertyCollection, bankAccounts: BankAccountCollection, loans: LoanCollection): number;
|
|
19
|
+
getLoanValue(properties: PropertyCollection, bankAccounts: BankAccountCollection): number;
|
|
20
|
+
/**
|
|
21
|
+
* LVR
|
|
22
|
+
*/
|
|
23
|
+
getLvr(properties: PropertyCollection, bankAccounts: BankAccountCollection): number;
|
|
24
|
+
getLvr$(properties$: Observable<PropertyCollection>, bankAccounts$: Observable<BankAccountCollection>): Observable<number>;
|
|
25
|
+
getLvrCommencement(properties: PropertyCollection, loans: LoanCollection, bankAccounts: BankAccountCollection): number;
|
|
26
|
+
getLvrCommencement$(properties$: Observable<PropertyCollection>, bankAccounts$: Observable<BankAccountCollection>, loans$: Observable<LoanCollection>): Observable<number>;
|
|
27
|
+
getLvrGrowth(properties: PropertyCollection, bankAccounts: BankAccountCollection, loans: LoanCollection): number;
|
|
28
|
+
getLvrGrowth$(properties$: Observable<PropertyCollection>, bankAccounts$: Observable<BankAccountCollection>, loans$: Observable<LoanCollection>): Observable<number>;
|
|
29
|
+
getEquityPosition(properties: PropertyCollection, bankAccounts: BankAccountCollection): number;
|
|
30
|
+
getPurchaseEquity(properties: PropertyCollection, bankAccounts: BankAccountCollection, loans: LoanCollection): number;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyCalculationService, never>;
|
|
32
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyCalculationService>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { PropertyCapitalCost as PropertyCapitalCostBase } from '../../db/Models/property-capital-cost';
|
|
3
|
+
import { BaseRestService } from '../base-rest.service';
|
|
4
|
+
import { PropertyCapitalCost } from '../../models/property/property-capital-cost';
|
|
5
|
+
import { Property } from '../../models/property/property';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Service to work with capital costs
|
|
9
|
+
*/
|
|
10
|
+
export declare class PropertyCapitalCostService extends BaseRestService<PropertyCapitalCostBase, PropertyCapitalCost> {
|
|
11
|
+
url: string;
|
|
12
|
+
modelClass: typeof PropertyCapitalCost;
|
|
13
|
+
/**
|
|
14
|
+
* Get property capital costs
|
|
15
|
+
* @param property which params will be taken for list of property capital costs
|
|
16
|
+
*/
|
|
17
|
+
getByProperty(property: Property): Observable<PropertyCapitalCost[]>;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyCapitalCostService, never>;
|
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyCapitalCostService>;
|
|
20
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropertyCategory as PropertyCategoryBase } from '../../db/Models/property-category';
|
|
2
|
+
import { BaseRestService } from '../base-rest.service';
|
|
3
|
+
import { PropertyCategory } from '../../models/property/property-category';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Service for work with Property Categories
|
|
7
|
+
*/
|
|
8
|
+
export declare class PropertyCategoryService extends BaseRestService<PropertyCategoryBase, PropertyCategory> {
|
|
9
|
+
modelClass: typeof PropertyCategory;
|
|
10
|
+
url: string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyCategoryService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyCategoryService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { PropertyDocument as PropertyDocumentBase } from '../../db/Models/property-document';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
5
|
+
import { PropertyDocument } from '../../models/property/property-document';
|
|
6
|
+
import { BaseRestService } from '../base-rest.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* Class for work with Property Documents
|
|
10
|
+
*/
|
|
11
|
+
export declare class PropertyDocumentService extends BaseRestService<PropertyDocumentBase, PropertyDocument> {
|
|
12
|
+
protected http: HttpClient;
|
|
13
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
14
|
+
protected environment: any;
|
|
15
|
+
modelClass: typeof PropertyDocument;
|
|
16
|
+
url: string;
|
|
17
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
18
|
+
/**
|
|
19
|
+
* Add new Property Document
|
|
20
|
+
*/
|
|
21
|
+
upload(file: File, propertyId: number): Observable<PropertyDocument>;
|
|
22
|
+
/**
|
|
23
|
+
* Get documents by property id
|
|
24
|
+
* @param propertyId to get desired documents
|
|
25
|
+
*/
|
|
26
|
+
getByPropertyId(propertyId: number): Observable<PropertyDocument[]>;
|
|
27
|
+
private listenEvents;
|
|
28
|
+
private listenPropertyUpdateWithDocument;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyDocumentService, never>;
|
|
30
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyDocumentService>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { PropertyOwner as PropertyOwnerBase } from '../../db/Models/property-owner';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
5
|
+
import { PropertyOwner } from '../../models/property/property-owner';
|
|
6
|
+
import { BaseRestService } from '../base-rest.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class PropertyOwnerService extends BaseRestService<PropertyOwnerBase, PropertyOwner> {
|
|
9
|
+
protected http: HttpClient;
|
|
10
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
11
|
+
protected environment: any;
|
|
12
|
+
url: string;
|
|
13
|
+
modelClass: typeof PropertyOwner;
|
|
14
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
15
|
+
/**
|
|
16
|
+
* Listen to Event Dispatcher events
|
|
17
|
+
*/
|
|
18
|
+
listenEvents(): void;
|
|
19
|
+
/**
|
|
20
|
+
* Updated loan
|
|
21
|
+
*/
|
|
22
|
+
update(propertyOwner: PropertyOwner): Observable<PropertyOwner>;
|
|
23
|
+
/**
|
|
24
|
+
* Re-invite property owner
|
|
25
|
+
* @param share user to share property
|
|
26
|
+
*/
|
|
27
|
+
reinvite(share: PropertyOwner): Observable<object>;
|
|
28
|
+
/**
|
|
29
|
+
* Get incoming property owners list
|
|
30
|
+
*/
|
|
31
|
+
getIncoming(): Observable<PropertyOwner[]>;
|
|
32
|
+
/**
|
|
33
|
+
* Get outcoming property owners list
|
|
34
|
+
*/
|
|
35
|
+
getOutcoming(): Observable<PropertyOwner[]>;
|
|
36
|
+
/**
|
|
37
|
+
* Filter outcoming property owners
|
|
38
|
+
* @param propertyOwners which should be filtered
|
|
39
|
+
*/
|
|
40
|
+
filterOutcoming(propertyOwners: PropertyOwner[]): PropertyOwner[];
|
|
41
|
+
/**
|
|
42
|
+
* Get list of co-owners filtered by property id
|
|
43
|
+
* @param propertyId
|
|
44
|
+
*/
|
|
45
|
+
getByPropertyId(propertyId: number): Observable<PropertyOwner[]>;
|
|
46
|
+
/**
|
|
47
|
+
* Listen to User updated event
|
|
48
|
+
*/
|
|
49
|
+
private listenUserUpdated;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyOwnerService, never>;
|
|
51
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyOwnerService>;
|
|
52
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PropertySold as PropertySoldBase } from '../../db/Models/property-sold';
|
|
2
|
+
import { PropertySold } from '../../models/property/property-sold';
|
|
3
|
+
import { BaseRestService } from '../base-rest.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Service for work with Property Sold
|
|
7
|
+
*/
|
|
8
|
+
export declare class PropertySoldService extends BaseRestService<PropertySoldBase, PropertySold> {
|
|
9
|
+
modelClass: typeof PropertySold;
|
|
10
|
+
url: string;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertySoldService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertySoldService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Property as PropertyBase } from '../../db/Models/property';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
|
4
|
+
import { BaseRestService } from '../base-rest.service';
|
|
5
|
+
import { Property } from '../../models/property/property';
|
|
6
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
/**
|
|
9
|
+
* Service for work with Property
|
|
10
|
+
*/
|
|
11
|
+
export declare class PropertyService extends BaseRestService<PropertyBase, Property> {
|
|
12
|
+
protected http: HttpClient;
|
|
13
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
14
|
+
protected environment: any;
|
|
15
|
+
modelClass: typeof Property;
|
|
16
|
+
url: string;
|
|
17
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
18
|
+
listenEvents(): void;
|
|
19
|
+
/**
|
|
20
|
+
* Update cache when owner invitation accepted
|
|
21
|
+
*/
|
|
22
|
+
private listenCoOwnerInviteAccepted;
|
|
23
|
+
/**
|
|
24
|
+
* Update cache when user's service subscription is updated
|
|
25
|
+
*/
|
|
26
|
+
private listenServiceSubscriptionUpdated;
|
|
27
|
+
update(property: Property): Observable<Property>;
|
|
28
|
+
getByCategoryId(id: number): Observable<Property[]>;
|
|
29
|
+
/**
|
|
30
|
+
* Activate deactivated property
|
|
31
|
+
*/
|
|
32
|
+
activate(property: Property): Observable<void>;
|
|
33
|
+
/**
|
|
34
|
+
* Deactivate activated property
|
|
35
|
+
*/
|
|
36
|
+
deactivate(property: Property): Observable<void>;
|
|
37
|
+
/**
|
|
38
|
+
* Update property photo
|
|
39
|
+
* @param property Property instance for photo update
|
|
40
|
+
* @param photoFormData FormData with property photo image
|
|
41
|
+
*/
|
|
42
|
+
updatePhoto(property: Property, photoFormData: FormData): Observable<void>;
|
|
43
|
+
getByCoOwnerId(id: number): Observable<Property[]>;
|
|
44
|
+
/**
|
|
45
|
+
* Get list of active user's properties
|
|
46
|
+
*/
|
|
47
|
+
getActive(): Observable<Property[]>;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyService, never>;
|
|
49
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyService>;
|
|
50
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable, ReplaySubject } from 'rxjs';
|
|
3
|
+
import { ServiceSubscriptionCollection } from '../../collections/service-subscription.collection';
|
|
4
|
+
import { ServiceSubscription } from '../../models/service-subscription/service-subscription';
|
|
5
|
+
import { ServicePayment } from '../../models/service-subscription/service-payment';
|
|
6
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
7
|
+
import { ServiceSubscriptionItem } from '../../models/service-subscription/service-subscription-item';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare class SubscriptionService {
|
|
10
|
+
private http;
|
|
11
|
+
private eventDispatcherService;
|
|
12
|
+
private environment;
|
|
13
|
+
_serviceSubscription: ServiceSubscription;
|
|
14
|
+
serviceSubscriptionSubject: ReplaySubject<ServiceSubscription>;
|
|
15
|
+
_serviceSubscriptions: ServiceSubscriptionCollection;
|
|
16
|
+
serviceSubscriptionsSubject: ReplaySubject<ServiceSubscriptionCollection>;
|
|
17
|
+
stripe: any;
|
|
18
|
+
servicePaymentsSubject: ReplaySubject<ServicePayment[]>;
|
|
19
|
+
_servicePayments: ServicePayment[];
|
|
20
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
21
|
+
getSubscription(): Observable<ServiceSubscription>;
|
|
22
|
+
/**
|
|
23
|
+
* @TODO right now we have only monthly prices, the function should be refactored to support other options in future
|
|
24
|
+
*
|
|
25
|
+
* create available subscription plans based on existing products
|
|
26
|
+
*/
|
|
27
|
+
getSubscriptionPlans(): Observable<ServiceSubscriptionCollection>;
|
|
28
|
+
/**
|
|
29
|
+
* redirect to stripe payment page
|
|
30
|
+
*/
|
|
31
|
+
checkoutRedirect(subscription: ServiceSubscription, successUrl: string, cancelUrl: string): Promise<any>;
|
|
32
|
+
/**
|
|
33
|
+
* redirect to stripe billing page
|
|
34
|
+
*/
|
|
35
|
+
billingRedirect(returnUrl: string): void;
|
|
36
|
+
getPayments(): Observable<ServicePayment[]>;
|
|
37
|
+
/**
|
|
38
|
+
* Get difference between current subscription and selected new subscription
|
|
39
|
+
*/
|
|
40
|
+
getProrationCost(items: ServiceSubscriptionItem[]): Observable<number>;
|
|
41
|
+
/**
|
|
42
|
+
* Change subscription plan
|
|
43
|
+
*/
|
|
44
|
+
changeSubscription(items: ServiceSubscriptionItem[]): Observable<void>;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SubscriptionService, never>;
|
|
46
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SubscriptionService>;
|
|
47
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { TaxReview as TaxReviewBase } from '../../db/Models/tax-review';
|
|
2
|
+
import { HttpClient } from '@angular/common/http';
|
|
3
|
+
import { BaseRestService } from '../base-rest.service';
|
|
4
|
+
import { TaxReview } from '../../models/tax-review/tax-review';
|
|
5
|
+
import { EventDispatcherService } from '../event/event-dispatcher.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
/**
|
|
8
|
+
* Service to work with tax review history
|
|
9
|
+
*/
|
|
10
|
+
export declare class TaxReviewHistoryService extends BaseRestService<TaxReviewBase, TaxReview> {
|
|
11
|
+
protected http: HttpClient;
|
|
12
|
+
protected eventDispatcherService: EventDispatcherService;
|
|
13
|
+
protected environment: any;
|
|
14
|
+
url: string;
|
|
15
|
+
modelClass: typeof TaxReview;
|
|
16
|
+
constructor(http: HttpClient, eventDispatcherService: EventDispatcherService, environment: any);
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TaxReviewHistoryService, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TaxReviewHistoryService>;
|
|
19
|
+
}
|