taxtank-core 2.0.1 → 2.0.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/README.md +5 -5
- package/common/index.d.ts +3 -115
- package/common/public-api.d.ts +3 -0
- package/common/src/common.module.d.ts +13 -0
- package/common/src/db/enums/index.d.ts +1 -0
- package/common/src/db/enums/user/index.d.ts +1 -0
- package/common/src/db/enums/user/user-roles.enum.d.ts +17 -0
- package/common/src/db/index.d.ts +1 -0
- package/common/src/interceptors/interceptors.module.d.ts +6 -0
- package/common/src/interceptors/jwt-interceptor.d.ts +41 -0
- package/common/src/services/auth/auth-messages.enum.d.ts +3 -0
- package/common/src/services/auth/auth-tokens.interface.d.ts +7 -0
- package/common/src/services/auth/auth.service.d.ts +19 -0
- package/common/src/services/auth/index.d.ts +5 -0
- package/common/src/services/auth/jwt-decoded.interface.d.ts +11 -0
- package/common/src/services/auth/jwt.service.d.ts +18 -0
- package/common/src/services/index.d.ts +2 -0
- package/common/src/services/mixpanel.service.d.ts +20 -0
- package/fesm2022/taxtank-core-common.mjs +21 -21
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +424 -424
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +3 -11628
- package/package.json +9 -9
- package/public-api.d.ts +187 -0
- package/src/lib/collections/account-setup-item.collection.d.ts +10 -0
- package/src/lib/collections/allocation-group.collection.d.ts +5 -0
- package/src/lib/collections/allocation-rule.collection.d.ts +15 -0
- package/src/lib/collections/asset-sale.collection.d.ts +19 -0
- package/src/lib/collections/bank-account.collection.d.ts +57 -0
- package/src/lib/collections/bank-transaction.collection.d.ts +77 -0
- package/src/lib/collections/chart-accounts/chart-accounts-value.collection.d.ts +12 -0
- package/src/lib/collections/chart-accounts/index.d.ts +1 -0
- package/src/lib/collections/chart-accounts.collection.d.ts +10 -0
- package/src/lib/collections/chat/chat.collection.d.ts +5 -0
- package/src/lib/collections/chat/index.d.ts +3 -0
- package/src/lib/collections/chat/message-document.collection.d.ts +11 -0
- package/src/lib/collections/chat/message.collection.d.ts +18 -0
- package/src/lib/collections/client-invite.collection.d.ts +5 -0
- package/src/lib/collections/client-movement.collection.d.ts +22 -0
- package/src/lib/collections/client-portfolio-report.collection.d.ts +26 -0
- package/src/lib/collections/client.collection.d.ts +4 -0
- package/src/lib/collections/collection-dictionary.d.ts +57 -0
- package/src/lib/collections/collection.d.ts +64 -0
- package/src/lib/collections/depreciation-forecast.collection.d.ts +11 -0
- package/src/lib/collections/depreciation.collection.d.ts +52 -0
- package/src/lib/collections/exportable.collection.d.ts +11 -0
- package/src/lib/collections/firm/employee-invite.collection.d.ts +5 -0
- package/src/lib/collections/firm/employee.collection.d.ts +6 -0
- package/src/lib/collections/firm/index.d.ts +2 -0
- package/src/lib/collections/holding/holding-sale.collection.d.ts +8 -0
- package/src/lib/collections/holding/holding-trade.collection.d.ts +22 -0
- package/src/lib/collections/holding/holding-type.collection.d.ts +5 -0
- package/src/lib/collections/holding/holding.collection.d.ts +14 -0
- package/src/lib/collections/holding/index.d.ts +4 -0
- package/src/lib/collections/home-office/home-office-claim.collection.d.ts +5 -0
- package/src/lib/collections/home-office/index.d.ts +1 -0
- package/src/lib/collections/income-source/income-source-forecast.collection.d.ts +6 -0
- package/src/lib/collections/income-source/income-source.collection.d.ts +24 -0
- package/src/lib/collections/income-source/index.d.ts +2 -0
- package/src/lib/collections/index.d.ts +34 -0
- package/src/lib/collections/loan/index.d.ts +2 -0
- package/src/lib/collections/loan/loan-payment.collection.d.ts +10 -0
- package/src/lib/collections/loan/loan.collection.d.ts +28 -0
- package/src/lib/collections/property/index.d.ts +6 -0
- package/src/lib/collections/property/property-category-movement.collection.d.ts +13 -0
- package/src/lib/collections/property/property-sale/index.d.ts +2 -0
- package/src/lib/collections/property/property-sale/property-sale-tax-exemption-meta-field.collection.d.ts +8 -0
- package/src/lib/collections/property/property-sale/property-sale.collection.d.ts +9 -0
- package/src/lib/collections/property/property-share.collection.d.ts +16 -0
- package/src/lib/collections/property/property-valuation.collection.d.ts +8 -0
- package/src/lib/collections/property/property.collection.d.ts +53 -0
- package/src/lib/collections/property/tax-exemption.collection.d.ts +8 -0
- package/src/lib/collections/report/depreciation/depreciation-lvp-report-item.collection.d.ts +8 -0
- package/src/lib/collections/report/depreciation/depreciation-report-item.collection.d.ts +8 -0
- package/src/lib/collections/report/income-expense/transaction-report-item.collection.d.ts +7 -0
- package/src/lib/collections/report/index.d.ts +7 -0
- package/src/lib/collections/report/property/property-report-item-depreciation.collection.d.ts +12 -0
- package/src/lib/collections/report/property/property-report-item-transaction.collection.d.ts +12 -0
- package/src/lib/collections/report/property/property-report-item.collection.d.ts +9 -0
- package/src/lib/collections/report/vehicle-expense/vehicle-expense.collection.d.ts +8 -0
- package/src/lib/collections/sole/index.d.ts +3 -0
- package/src/lib/collections/sole/sole-business-loss.collection.d.ts +15 -0
- package/src/lib/collections/sole/sole-invoice-item.collection.d.ts +7 -0
- package/src/lib/collections/sole/sole-invoice.collection.d.ts +14 -0
- package/src/lib/collections/subscription/index.d.ts +4 -0
- package/src/lib/collections/subscription/service-price.collection.d.ts +17 -0
- package/src/lib/collections/subscription/service-product.collection.d.ts +6 -0
- package/src/lib/collections/subscription/service-subscription.collection.d.ts +30 -0
- package/src/lib/collections/subscription/subscription-item.collection.d.ts +9 -0
- package/src/lib/collections/tax-review.collection.d.ts +31 -0
- package/src/lib/collections/tax-summary/index.d.ts +2 -0
- package/src/lib/collections/tax-summary/report-item.collection.d.ts +45 -0
- package/src/lib/collections/tax-summary/tax-return-categories.const.d.ts +9 -0
- package/src/lib/collections/transaction/index.d.ts +3 -0
- package/src/lib/collections/transaction/transaction-allocation.collection.d.ts +21 -0
- package/src/lib/collections/transaction/transaction-base.collection.d.ts +4 -0
- package/src/lib/collections/transaction/transaction.collection.d.ts +103 -0
- package/src/lib/collections/user/user.collection.d.ts +4 -0
- package/src/lib/collections/user-event-setting.collection.d.ts +8 -0
- package/src/lib/collections/user-event-type-collection.d.ts +9 -0
- package/src/lib/collections/vehicle/best-vehicle-logbook.collection.d.ts +49 -0
- package/src/lib/collections/vehicle/index.d.ts +3 -0
- package/src/lib/collections/vehicle/vehicle-claim.collection.d.ts +12 -0
- package/src/lib/collections/vehicle/vehicle-logbook.collection.d.ts +21 -0
- package/src/lib/core.module.d.ts +11 -0
- package/src/lib/db/Enums/address-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/annual-frequency.enum.d.ts +7 -0
- package/src/lib/db/Enums/bank/allocation-rule/allocation-rule-condition-comparison-operator.enum.d.ts +7 -0
- package/src/lib/db/Enums/bank/allocation-rule/allocation-rule-condition-field.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/allocation-rule/allocation-rule-condition-operator.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/allocation-rule/allocation-rule-type.enum.d.ts +5 -0
- package/src/lib/db/Enums/bank/allocation-rule/index.d.ts +4 -0
- package/src/lib/db/Enums/bank/bank-account-status.enum.d.ts +6 -0
- package/src/lib/db/Enums/bank/bank-account-type.enum.d.ts +10 -0
- package/src/lib/db/Enums/bank/bank-connection-status.enum.d.ts +6 -0
- package/src/lib/db/Enums/bank/bank-popular.enum.d.ts +12 -0
- package/src/lib/db/Enums/bank/bank-provider.enum.d.ts +5 -0
- package/src/lib/db/Enums/bank/bank-transaction-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/index.d.ts +7 -0
- package/src/lib/db/Enums/bank/loan/index.d.ts +10 -0
- package/src/lib/db/Enums/bank/loan/loan-bank-type.enum.d.ts +10 -0
- package/src/lib/db/Enums/bank/loan/loan-frequency.enum.d.ts +6 -0
- package/src/lib/db/Enums/bank/loan/loan-interest-type-label.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/loan/loan-interest-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/loan/loan-payout-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/loan/loan-repayment-frequency.enum.d.ts +5 -0
- package/src/lib/db/Enums/bank/loan/loan-repayment-type-label.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/loan/loan-repayment-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/bank/loan/loan-type.enum.d.ts +12 -0
- package/src/lib/db/Enums/bank/loan/loan-vehicle-type.enum.d.ts +5 -0
- package/src/lib/db/Enums/chart-accounts/business-chart-accounts.enum.d.ts +47 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-adjustment-included-list.enum.d.ts +17 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-category.enum.d.ts +18 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-etp.enum.d.ts +7 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-heading-list.enum.d.ts +48 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-heading-tax-deductible.enum.d.ts +6 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-heading-taxable.enum.d.ts +6 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-heading-vehicle-list.enum.d.ts +6 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-holding-untaxed-income-list.enum.d.ts +9 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-keep-sign.enum.d.ts +8 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-list.enum.d.ts +60 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-meta-field-list.enum.d.ts +17 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-meta-field-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-property-adjustments-list.enum.d.ts +48 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-salary-adjustments-list.enum.d.ts +15 -0
- package/src/lib/db/Enums/chart-accounts/chart-accounts-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/chart-accounts/index.d.ts +16 -0
- package/src/lib/db/Enums/chat-status.enum.d.ts +4 -0
- package/src/lib/db/Enums/client/client-details-medicare-exemption.enum.d.ts +5 -0
- package/src/lib/db/Enums/client/client-details-work-depreciation-calculation.enum.d.ts +4 -0
- package/src/lib/db/Enums/client/client-details-working-holiday-maker.enum.d.ts +5 -0
- package/src/lib/db/Enums/client/client-invite-status.enum.d.ts +4 -0
- package/src/lib/db/Enums/client/client-invite-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/client/index.d.ts +6 -0
- package/src/lib/db/Enums/client/timezone.enum.d.ts +12 -0
- package/src/lib/db/Enums/depreciation-calculation-percent.enum.d.ts +7 -0
- package/src/lib/db/Enums/depreciation-calculation.enum.d.ts +8 -0
- package/src/lib/db/Enums/depreciation-type.enum.d.ts +6 -0
- package/src/lib/db/Enums/depreciation-write-off-amount.enum.d.ts +4 -0
- package/src/lib/db/Enums/document-type.enum.d.ts +3 -0
- package/src/lib/db/Enums/file-type.enum.d.ts +12 -0
- package/src/lib/db/Enums/firm/employee-invite-role.enum.d.ts +4 -0
- package/src/lib/db/Enums/firm/firm-type.enum.d.ts +5 -0
- package/src/lib/db/Enums/firm/index.d.ts +2 -0
- package/src/lib/db/Enums/holding/holding-trade-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/holding/holding-type-category.enum.d.ts +16 -0
- package/src/lib/db/Enums/holding/holding-type-exchange-list.enum.d.ts +9 -0
- package/src/lib/db/Enums/holding/index.d.ts +3 -0
- package/src/lib/db/Enums/home-office/home-office-claim-method.enum.d.ts +5 -0
- package/src/lib/db/Enums/home-office/index.d.ts +1 -0
- package/src/lib/db/Enums/income-source/income-source-forecast-trust-type.enum.d.ts +13 -0
- package/src/lib/db/Enums/income-source/income-source-type-list-holding.enum.d.ts +7 -0
- package/src/lib/db/Enums/income-source/income-source-type-list-other.enum.d.ts +7 -0
- package/src/lib/db/Enums/income-source/income-source-type-list-sole.enum.d.ts +3 -0
- package/src/lib/db/Enums/income-source/income-source-type-list-work.enum.d.ts +8 -0
- package/src/lib/db/Enums/income-source/income-source-type.enum.d.ts +9 -0
- package/src/lib/db/Enums/income-source/index.d.ts +6 -0
- package/src/lib/db/Enums/index.d.ts +13 -0
- package/src/lib/db/Enums/invite-status.enum.d.ts +5 -0
- package/src/lib/db/Enums/phone-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/property/property-category-list.enum.d.ts +5 -0
- package/src/lib/db/Enums/property/property-corelogic-stats-confidence.type.enum.d.ts +5 -0
- package/src/lib/db/Enums/property/property-depreciation-calculation.enum.d.ts +4 -0
- package/src/lib/db/Enums/property/property-sale/tax-exemption-meta-field.enum.d.ts +5 -0
- package/src/lib/db/Enums/property/property-sale/tax-exemption.enum.d.ts +9 -0
- package/src/lib/db/Enums/property/property-share-access.enum.d.ts +4 -0
- package/src/lib/db/Enums/property/property-share-status.enum.d.ts +5 -0
- package/src/lib/db/Enums/registration-invite-status.enum.d.ts +4 -0
- package/src/lib/db/Enums/salary-forecast-frequency.enum.d.ts +6 -0
- package/src/lib/db/Enums/service-notification-status.enum.d.ts +5 -0
- package/src/lib/db/Enums/service-notification-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/setup-item-type.enum.d.ts +11 -0
- package/src/lib/db/Enums/sole/index.d.ts +5 -0
- package/src/lib/db/Enums/sole/sole-depreciation-method.enum.d.ts +4 -0
- package/src/lib/db/Enums/sole/sole-invoice-state.enum.d.ts +8 -0
- package/src/lib/db/Enums/sole/sole-invoice-statuses.enum.d.ts +5 -0
- package/src/lib/db/Enums/sole/sole-invoice-tax-type.enum.d.ts +5 -0
- package/src/lib/db/Enums/sole/sole-invoice-template-tax-type.enum.d.ts +5 -0
- package/src/lib/db/Enums/spare-document-spare-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/subscription/index.d.ts +1 -0
- package/src/lib/db/Enums/subscription/service-payment-method-card-brand.enum.d.ts +10 -0
- package/src/lib/db/Enums/subscription/service-payment-method-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/subscription/service-payment-status.enum.d.ts +4 -0
- package/src/lib/db/Enums/subscription/service-price-list.enum.d.ts +6 -0
- package/src/lib/db/Enums/subscription/service-price-recurring-interval.enum.d.ts +6 -0
- package/src/lib/db/Enums/subscription/service-price-type.enum.d.ts +7 -0
- package/src/lib/db/Enums/subscription/service-product-id.enum.d.ts +9 -0
- package/src/lib/db/Enums/subscription/service-product-status.enum.d.ts +4 -0
- package/src/lib/db/Enums/subscription/service-subscription-status.enum.d.ts +8 -0
- package/src/lib/db/Enums/tank-type.enum.d.ts +8 -0
- package/src/lib/db/Enums/tax-calculation-medicare-exemption.enum.d.ts +4 -0
- package/src/lib/db/Enums/tax-calculation-type.enum.d.ts +12 -0
- package/src/lib/db/Enums/tax-return/index.d.ts +3 -0
- package/src/lib/db/Enums/tax-return/tax-return-category-list.enum.d.ts +89 -0
- package/src/lib/db/Enums/tax-return/tax-return-category-section.enum.d.ts +7 -0
- package/src/lib/db/Enums/tax-return/tax-return-item.enum.d.ts +18 -0
- package/src/lib/db/Enums/tax-review-status.enum.d.ts +11 -0
- package/src/lib/db/Enums/tax-summary-list.enum.d.ts +15 -0
- package/src/lib/db/Enums/tax-summary-section.enum.d.ts +8 -0
- package/src/lib/db/Enums/tax-summary-tax-summary.enum.d.ts +15 -0
- package/src/lib/db/Enums/ticket-feedback.enum.d.ts +4 -0
- package/src/lib/db/Enums/ticket-status.enum.d.ts +7 -0
- package/src/lib/db/Enums/ticket-types.enum.d.ts +3 -0
- package/src/lib/db/Enums/transaction-operation.enum.d.ts +6 -0
- package/src/lib/db/Enums/transaction-source.enum.d.ts +4 -0
- package/src/lib/db/Enums/transaction-type.enum.d.ts +4 -0
- package/src/lib/db/Enums/user/gender.enum.d.ts +12 -0
- package/src/lib/db/Enums/user/index.d.ts +1 -0
- package/src/lib/db/Enums/user-event-status.enum.d.ts +7 -0
- package/src/lib/db/Enums/user-event-type-client-type.enum.d.ts +27 -0
- package/src/lib/db/Enums/user-event-type-employee-type.enum.d.ts +15 -0
- package/src/lib/db/Enums/user-event-type-frequency.enum.d.ts +5 -0
- package/src/lib/db/Enums/user-event-type-type.enum.d.ts +51 -0
- package/src/lib/db/Enums/user-event-type-user-type.enum.d.ts +5 -0
- package/src/lib/db/Enums/user-medicare-exemption.enum.d.ts +5 -0
- package/src/lib/db/Enums/user-status.enum.d.ts +5 -0
- package/src/lib/db/Enums/user-title.enum.d.ts +7 -0
- package/src/lib/db/Enums/user-work-depreciation-calculation.enum.d.ts +4 -0
- package/src/lib/db/Enums/user-working-holiday-maker.enum.d.ts +5 -0
- package/src/lib/db/Enums/vehicle-claim-details-method.enum.d.ts +4 -0
- package/src/lib/db/Enums/vehicle-logbook-purpose.enum.d.ts +4 -0
- package/src/lib/db/Enums/youtube-videos.enum.d.ts +18 -0
- package/src/lib/db/Models/abstract-model.d.ts +9 -0
- package/src/lib/db/Models/address.d.ts +19 -0
- package/src/lib/db/Models/bank/bank-account-balance.d.ts +12 -0
- package/src/lib/db/Models/bank/bank-account-property.d.ts +8 -0
- package/src/lib/db/Models/bank/bank-account.d.ts +35 -0
- package/src/lib/db/Models/bank/bank-connection.d.ts +18 -0
- package/src/lib/db/Models/bank/bank-transaction-import.d.ts +11 -0
- package/src/lib/db/Models/bank/bank-transaction.d.ts +17 -0
- package/src/lib/db/Models/bank/bank.d.ts +13 -0
- package/src/lib/db/Models/bank/basiq-job-step.enum.d.ts +6 -0
- package/src/lib/db/Models/bank/basiq-job.d.ts +10 -0
- package/src/lib/db/Models/budget/budget-rule.d.ts +8 -0
- package/src/lib/db/Models/budget/budget.d.ts +7 -0
- package/src/lib/db/Models/budget/index.d.ts +2 -0
- package/src/lib/db/Models/chart-accounts/chart-accounts-depreciation.d.ts +11 -0
- package/src/lib/db/Models/chart-accounts/chart-accounts-heading.d.ts +7 -0
- package/src/lib/db/Models/chart-accounts/chart-accounts-meta-field.d.ts +10 -0
- package/src/lib/db/Models/chart-accounts/chart-accounts-value.d.ts +12 -0
- package/src/lib/db/Models/chart-accounts/chart-accounts.d.ts +26 -0
- package/src/lib/db/Models/client/annual-client-details.d.ts +13 -0
- package/src/lib/db/Models/client/client-details.d.ts +26 -0
- package/src/lib/db/Models/client/index.d.ts +3 -0
- package/src/lib/db/Models/client/occupation.d.ts +5 -0
- package/src/lib/db/Models/country.d.ts +5 -0
- package/src/lib/db/Models/depreciation/depreciation-capital-project.d.ts +14 -0
- package/src/lib/db/Models/depreciation/depreciation-forecast.d.ts +17 -0
- package/src/lib/db/Models/depreciation/depreciation.d.ts +46 -0
- package/src/lib/db/Models/document/document-folder.d.ts +8 -0
- package/src/lib/db/Models/document/folder-document.d.ts +7 -0
- package/src/lib/db/Models/document/property-document.d.ts +18 -0
- package/src/lib/db/Models/file.d.ts +15 -0
- package/src/lib/db/Models/firm/accountant/tax-review.d.ts +16 -0
- package/src/lib/db/Models/firm/accountant/ticket.d.ts +20 -0
- package/src/lib/db/Models/firm/chat.d.ts +19 -0
- package/src/lib/db/Models/firm/client-invite.d.ts +19 -0
- package/src/lib/db/Models/firm/client-movement.d.ts +11 -0
- package/src/lib/db/Models/firm/employee-invite.d.ts +11 -0
- package/src/lib/db/Models/firm/firm-invite.d.ts +14 -0
- package/src/lib/db/Models/firm/firm.d.ts +30 -0
- package/src/lib/db/Models/firm/message-document.d.ts +11 -0
- package/src/lib/db/Models/firm/message.d.ts +16 -0
- package/src/lib/db/Models/holding/holding-sale.d.ts +15 -0
- package/src/lib/db/Models/holding/holding-trade-import.d.ts +8 -0
- package/src/lib/db/Models/holding/holding-trade.d.ts +17 -0
- package/src/lib/db/Models/holding/holding-type-exchange.d.ts +13 -0
- package/src/lib/db/Models/holding/holding-type.d.ts +31 -0
- package/src/lib/db/Models/holding/index.d.ts +4 -0
- package/src/lib/db/Models/incomeSource/income-source-forecast.d.ts +15 -0
- package/src/lib/db/Models/incomeSource/income-source-type.d.ts +8 -0
- package/src/lib/db/Models/incomeSource/income-source.d.ts +22 -0
- package/src/lib/db/Models/incomeSource/salary-forecast.d.ts +16 -0
- package/src/lib/db/Models/index.d.ts +95 -0
- package/src/lib/db/Models/loan/borrowing-expense-loan.d.ts +14 -0
- package/src/lib/db/Models/loan/borrowing-expense.d.ts +7 -0
- package/src/lib/db/Models/loan/loan-payout.d.ts +13 -0
- package/src/lib/db/Models/loan/loan.d.ts +34 -0
- package/src/lib/db/Models/observable-model.d.ts +15 -0
- package/src/lib/db/Models/phone.d.ts +12 -0
- package/src/lib/db/Models/property/borrowing-report.d.ts +11 -0
- package/src/lib/db/Models/property/property-category-movement.d.ts +18 -0
- package/src/lib/db/Models/property/property-category.d.ts +14 -0
- package/src/lib/db/Models/property/property-forecast.d.ts +16 -0
- package/src/lib/db/Models/property/property-sale/property-sale-tax-exemption-meta-field.d.ts +8 -0
- package/src/lib/db/Models/property/property-sale/property-sale.d.ts +23 -0
- package/src/lib/db/Models/property/property-sale/tax-exemption-meta-field.d.ts +6 -0
- package/src/lib/db/Models/property/property-sale/tax-exemption.d.ts +7 -0
- package/src/lib/db/Models/property/property-share.d.ts +24 -0
- package/src/lib/db/Models/property/property-subscription.d.ts +9 -0
- package/src/lib/db/Models/property/property-valuation.d.ts +16 -0
- package/src/lib/db/Models/property/property.d.ts +46 -0
- package/src/lib/db/Models/service-notification.d.ts +13 -0
- package/src/lib/db/Models/setup-item.d.ts +15 -0
- package/src/lib/db/Models/sole/bas-report.d.ts +15 -0
- package/src/lib/db/Models/sole/sole-business-activity.d.ts +5 -0
- package/src/lib/db/Models/sole/sole-business-allocation.d.ts +8 -0
- package/src/lib/db/Models/sole/sole-business-loss-offset-rule.d.ts +6 -0
- package/src/lib/db/Models/sole/sole-business-loss.d.ts +10 -0
- package/src/lib/db/Models/sole/sole-business.d.ts +33 -0
- package/src/lib/db/Models/sole/sole-contact.d.ts +16 -0
- package/src/lib/db/Models/sole/sole-depreciation-method.d.ts +9 -0
- package/src/lib/db/Models/sole/sole-details.d.ts +14 -0
- package/src/lib/db/Models/sole/sole-forecast.d.ts +9 -0
- package/src/lib/db/Models/sole/sole-invoice-item.d.ts +13 -0
- package/src/lib/db/Models/sole/sole-invoice-template.d.ts +11 -0
- package/src/lib/db/Models/sole/sole-invoice.d.ts +20 -0
- package/src/lib/db/Models/spare/spare-document-category.d.ts +6 -0
- package/src/lib/db/Models/spare/spare-document.d.ts +15 -0
- package/src/lib/db/Models/subscription/service-payment-method.d.ts +15 -0
- package/src/lib/db/Models/subscription/service-payment.d.ts +11 -0
- package/src/lib/db/Models/subscription/service-price.d.ts +16 -0
- package/src/lib/db/Models/subscription/service-product.d.ts +19 -0
- package/src/lib/db/Models/subscription/service-subscription-item.d.ts +9 -0
- package/src/lib/db/Models/subscription/service-subscription.d.ts +23 -0
- package/src/lib/db/Models/tax-calculation.d.ts +18 -0
- package/src/lib/db/Models/tax-return/index.d.ts +3 -0
- package/src/lib/db/Models/tax-return/tax-return-category.d.ts +12 -0
- package/src/lib/db/Models/tax-return/tax-return-item.d.ts +15 -0
- package/src/lib/db/Models/tax-return/tax-return.d.ts +8 -0
- package/src/lib/db/Models/transaction/allocation-rule-condition.d.ts +9 -0
- package/src/lib/db/Models/transaction/allocation-rule-transaction-meta-field.d.ts +8 -0
- package/src/lib/db/Models/transaction/allocation-rule-transaction.d.ts +26 -0
- package/src/lib/db/Models/transaction/allocation-rule.d.ts +21 -0
- package/src/lib/db/Models/transaction/transaction-allocation.d.ts +9 -0
- package/src/lib/db/Models/transaction/transaction-base.d.ts +42 -0
- package/src/lib/db/Models/transaction/transaction-meta-field.d.ts +11 -0
- package/src/lib/db/Models/transaction/transaction.d.ts +49 -0
- package/src/lib/db/Models/user/employee-details.d.ts +9 -0
- package/src/lib/db/Models/user/registration-invite.d.ts +13 -0
- package/src/lib/db/Models/user/user-event-setting.d.ts +10 -0
- package/src/lib/db/Models/user/user-event-type-category.d.ts +4 -0
- package/src/lib/db/Models/user/user-event-type.d.ts +17 -0
- package/src/lib/db/Models/user/user-event.d.ts +15 -0
- package/src/lib/db/Models/user/user.d.ts +62 -0
- package/src/lib/db/Models/vehicle/vehicle-claim-details.d.ts +9 -0
- package/src/lib/db/Models/vehicle/vehicle-claim.d.ts +12 -0
- package/src/lib/db/Models/vehicle/vehicle-logbook.d.ts +17 -0
- package/src/lib/db/Models/vehicle/vehicle.d.ts +8 -0
- package/src/lib/db-static/chart-accounts/chart-accounts-values.d.ts +6 -0
- package/src/lib/forms/abstract.form.d.ts +79 -0
- package/src/lib/forms/address/address.form.d.ts +72 -0
- package/src/lib/forms/address/index.d.ts +1 -0
- package/src/lib/forms/aussie/aussie-appointment.form.d.ts +9 -0
- package/src/lib/forms/aussie/aussie-confirmation.form.d.ts +6 -0
- package/src/lib/forms/aussie/aussie-store.form.d.ts +10 -0
- package/src/lib/forms/aussie/index.d.ts +3 -0
- package/src/lib/forms/bank/bank-account/bank-account-add-manual.form.d.ts +20 -0
- package/src/lib/forms/bank/bank-account/bank-account-allocation.form.d.ts +13 -0
- package/src/lib/forms/bank/bank-account/bank-account-import.form.d.ts +9 -0
- package/src/lib/forms/bank/bank-account/bank-account-properties.form.d.ts +17 -0
- package/src/lib/forms/bank/bank-account/bank-accounts-import.form.d.ts +12 -0
- package/src/lib/forms/budget/budget.form.d.ts +13 -0
- package/src/lib/forms/budget/index.d.ts +1 -0
- package/src/lib/forms/chart-accounts/chart-accounts.form.d.ts +9 -0
- package/src/lib/forms/chart-accounts/index.d.ts +1 -0
- package/src/lib/forms/chat/chat-filter.form.d.ts +18 -0
- package/src/lib/forms/chat/index.d.ts +1 -0
- package/src/lib/forms/client/annual-client-details.form.d.ts +8 -0
- package/src/lib/forms/client/capital-loss.form.d.ts +6 -0
- package/src/lib/forms/client/index.d.ts +2 -0
- package/src/lib/forms/collection.form.d.ts +14 -0
- package/src/lib/forms/depreciation/depreciation.form.d.ts +7 -0
- package/src/lib/forms/depreciation/index.d.ts +1 -0
- package/src/lib/forms/document-folder/document-folder.form.d.ts +5 -0
- package/src/lib/forms/document-folder/document.form.d.ts +5 -0
- package/src/lib/forms/document-folder/index.d.ts +2 -0
- package/src/lib/forms/firm/client-invite-put.form.d.ts +11 -0
- package/src/lib/forms/firm/client-invite.form.d.ts +15 -0
- package/src/lib/forms/firm/client-movement.form.d.ts +14 -0
- package/src/lib/forms/firm/employee-details.form.d.ts +14 -0
- package/src/lib/forms/firm/employee-invite.form.d.ts +17 -0
- package/src/lib/forms/firm/firm-branch.form.d.ts +5 -0
- package/src/lib/forms/firm/firm-invite.form.d.ts +15 -0
- package/src/lib/forms/firm/firm.form.d.ts +5 -0
- package/src/lib/forms/firm/index.d.ts +8 -0
- package/src/lib/forms/form-validations.enum.d.ts +9 -0
- package/src/lib/forms/holding/holding-reinvest.form.d.ts +29 -0
- package/src/lib/forms/holding/holding-trade/holding-trade-filter.form.d.ts +18 -0
- package/src/lib/forms/holding/holding-trade/holding-trade.form.d.ts +9 -0
- package/src/lib/forms/holding/holding-trade/index.d.ts +2 -0
- package/src/lib/forms/holding/holding-trade-import.form.d.ts +8 -0
- package/src/lib/forms/holding/holding-type.form.d.ts +5 -0
- package/src/lib/forms/holding/index.d.ts +4 -0
- package/src/lib/forms/home-office/home-office-calculator.form.d.ts +8 -0
- package/src/lib/forms/home-office/home-office-claim.form.d.ts +12 -0
- package/src/lib/forms/home-office/home-office-log.form.d.ts +5 -0
- package/src/lib/forms/home-office/index.d.ts +3 -0
- package/src/lib/forms/index.d.ts +31 -0
- package/src/lib/forms/loan/index.d.ts +1 -0
- package/src/lib/forms/loan/loan.form.d.ts +25 -0
- package/src/lib/forms/login/login.form.d.ts +7 -0
- package/src/lib/forms/phone/index.d.ts +1 -0
- package/src/lib/forms/phone/phone.form.d.ts +5 -0
- package/src/lib/forms/property/borrowing-report.form.d.ts +15 -0
- package/src/lib/forms/property/index.d.ts +9 -0
- package/src/lib/forms/property/property-add.form.d.ts +14 -0
- package/src/lib/forms/property/property-category-movement-form.d.ts +6 -0
- package/src/lib/forms/property/property-document.form.d.ts +6 -0
- package/src/lib/forms/property/property-edit.form.d.ts +5 -0
- package/src/lib/forms/property/property-forecast.form.d.ts +13 -0
- package/src/lib/forms/property/property-sale/index.d.ts +3 -0
- package/src/lib/forms/property/property-sale/property-sale-cost-base.form.d.ts +13 -0
- package/src/lib/forms/property/property-sale/property-sale-cost-sale.form.d.ts +23 -0
- package/src/lib/forms/property/property-sale/property-sale-exemptions.form.d.ts +36 -0
- package/src/lib/forms/property/property-share.form.d.ts +8 -0
- package/src/lib/forms/property/property-valuation.form.d.ts +7 -0
- package/src/lib/forms/register/register-client.form.d.ts +6 -0
- package/src/lib/forms/register/register-firm.form.d.ts +8 -0
- package/src/lib/forms/report/my-tax/index.d.ts +16 -0
- package/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.form.d.ts +9 -0
- package/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income/my-tax-business-income.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income-or-losses.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-cgt.form.d.ts +8 -0
- package/src/lib/forms/report/my-tax/my-tax-deductions.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-dividends.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-income-statements.form.d.ts +7 -0
- package/src/lib/forms/report/my-tax/my-tax-income-tests.form.d.ts +8 -0
- package/src/lib/forms/report/my-tax/my-tax-interest.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-losses.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-medicare.form.d.ts +12 -0
- package/src/lib/forms/report/my-tax/my-tax-offsets.form.d.ts +8 -0
- package/src/lib/forms/report/my-tax/my-tax-other-income.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-partnerships-and-trusts.form.d.ts +5 -0
- package/src/lib/forms/report/my-tax/my-tax-rent.form.d.ts +5 -0
- package/src/lib/forms/sole/bas-report.form.d.ts +11 -0
- package/src/lib/forms/sole/index.d.ts +11 -0
- package/src/lib/forms/sole/invoice-payment.form.d.ts +7 -0
- package/src/lib/forms/sole/sole-business-allocations.form.d.ts +18 -0
- package/src/lib/forms/sole/sole-business-loss.form.d.ts +11 -0
- package/src/lib/forms/sole/sole-business.form.d.ts +18 -0
- package/src/lib/forms/sole/sole-contact.form.d.ts +5 -0
- package/src/lib/forms/sole/sole-depreciation-method.form.d.ts +5 -0
- package/src/lib/forms/sole/sole-details.form.d.ts +5 -0
- package/src/lib/forms/sole/sole-invoice-item.form.d.ts +6 -0
- package/src/lib/forms/sole/sole-invoice-template.form.d.ts +5 -0
- package/src/lib/forms/sole/sole-invoice.form.d.ts +43 -0
- package/src/lib/forms/tax-review/index.d.ts +2 -0
- package/src/lib/forms/tax-review/tax-review-filter-status.enum.d.ts +4 -0
- package/src/lib/forms/tax-review/tax-review-filter.form.d.ts +21 -0
- package/src/lib/forms/transaction/allocation-rule-condition.form.d.ts +5 -0
- package/src/lib/forms/transaction/allocation-rule-transaction-meta-field.form.d.ts +5 -0
- package/src/lib/forms/transaction/allocation-rule-transaction.form.d.ts +37 -0
- package/src/lib/forms/transaction/allocation-rule.form.d.ts +46 -0
- package/src/lib/forms/transaction/holding/holding-expense.form.d.ts +8 -0
- package/src/lib/forms/transaction/holding/holding-income.form.d.ts +26 -0
- package/src/lib/forms/transaction/index.d.ts +9 -0
- package/src/lib/forms/transaction/messages.enum.d.ts +3 -0
- package/src/lib/forms/transaction/sole/sole-income.form.d.ts +5 -0
- package/src/lib/forms/transaction/sole/sole-transaction.form.d.ts +8 -0
- package/src/lib/forms/transaction/transaction-base-filter.form.d.ts +21 -0
- package/src/lib/forms/transaction/transaction-base.form.d.ts +28 -0
- package/src/lib/forms/transaction/transaction.form.d.ts +16 -0
- package/src/lib/forms/transaction/work/work-expense.form.d.ts +13 -0
- package/src/lib/forms/transaction/work/work-income.form.d.ts +19 -0
- package/src/lib/forms/transaction/work/work-transaction.form.d.ts +15 -0
- package/src/lib/forms/user/client-details.form.d.ts +7 -0
- package/src/lib/forms/user/index.d.ts +6 -0
- package/src/lib/forms/user/mfa-details.form.d.ts +10 -0
- package/src/lib/forms/user/password.form.d.ts +7 -0
- package/src/lib/forms/user/reset-password.form.d.ts +6 -0
- package/src/lib/forms/user/user-invite.form.d.ts +8 -0
- package/src/lib/forms/user/user.form.d.ts +17 -0
- package/src/lib/forms/vehicle/index.d.ts +4 -0
- package/src/lib/forms/vehicle/vehicle-claim-details.form.d.ts +8 -0
- package/src/lib/forms/vehicle/vehicle-claim.form.d.ts +14 -0
- package/src/lib/forms/vehicle/vehicle-logbook.form.d.ts +24 -0
- package/src/lib/forms/vehicle/vehicle.form.d.ts +10 -0
- package/src/lib/functions/array/index.d.ts +4 -0
- package/src/lib/functions/array/replace.d.ts +1 -0
- package/src/lib/functions/array/sort-deep.d.ts +1 -0
- package/src/lib/functions/array/sort.d.ts +1 -0
- package/src/lib/functions/array/to-array.d.ts +4 -0
- package/src/lib/functions/clone-deep.d.ts +1 -0
- package/src/lib/functions/create-date.d.ts +5 -0
- package/src/lib/functions/enum-to-list.d.ts +2 -0
- package/src/lib/functions/get-doc-icon.d.ts +7 -0
- package/src/lib/functions/mat-options-functions.d.ts +2 -0
- package/src/lib/functions/mat-sort-options.d.ts +7 -0
- package/src/lib/interceptors/aussie.interceptor.d.ts +16 -0
- package/src/lib/interceptors/basiq-client-id.interceptor.d.ts +15 -0
- package/src/lib/interceptors/basiq-token.interceptor.d.ts +15 -0
- package/src/lib/interceptors/corelogic-interceptor.d.ts +16 -0
- package/src/lib/interceptors/financial-year-interceptor.d.ts +14 -0
- package/src/lib/interceptors/interceptors.module.d.ts +6 -0
- package/src/lib/interceptors/preloader.interceptor.d.ts +15 -0
- package/src/lib/interceptors/rewardful.interceptor.d.ts +19 -0
- package/src/lib/interceptors/user-switcher-interceptor.d.ts +19 -0
- package/src/lib/interfaces/asset-entity-type.enum.d.ts +10 -0
- package/src/lib/interfaces/asset-type.enum.d.ts +11 -0
- package/src/lib/interfaces/asset.interface.d.ts +17 -0
- package/src/lib/interfaces/chart-data.interface.d.ts +10 -0
- package/src/lib/interfaces/chart-serie.interface.d.ts +8 -0
- package/src/lib/interfaces/document.interface.d.ts +9 -0
- package/src/lib/interfaces/documentable.interface.d.ts +8 -0
- package/src/lib/interfaces/event-listener.interface.d.ts +10 -0
- package/src/lib/interfaces/expense.interface.d.ts +12 -0
- package/src/lib/interfaces/income-source-forecast.interface.d.ts +12 -0
- package/src/lib/interfaces/index.d.ts +13 -0
- package/src/lib/interfaces/option.interface.d.ts +4 -0
- package/src/lib/interfaces/tank.interface.d.ts +9 -0
- package/src/lib/interfaces/updatable.interface.d.ts +8 -0
- package/src/lib/messages/index.d.ts +1 -0
- package/src/lib/messages/messages.enum.d.ts +14 -0
- package/src/lib/models/account-setup/account-setup-item-status.enum.d.ts +5 -0
- package/src/lib/models/account-setup/account-setup-item.d.ts +8 -0
- package/src/lib/models/account-setup/account-setup-items.enum.d.ts +35 -0
- package/src/lib/models/account-setup/index.d.ts +3 -0
- package/src/lib/models/address/address.d.ts +27 -0
- package/src/lib/models/address/country.d.ts +12 -0
- package/src/lib/models/address/index.d.ts +3 -0
- package/src/lib/models/address/states.enum.d.ts +10 -0
- package/src/lib/models/asset-sale.d.ts +8 -0
- package/src/lib/models/aussie/aussie-appointment.d.ts +10 -0
- package/src/lib/models/aussie/aussie-broker.d.ts +9 -0
- package/src/lib/models/aussie/aussie-store.d.ts +8 -0
- package/src/lib/models/aussie/aussie-store.interface.d.ts +6 -0
- package/src/lib/models/aussie/index.d.ts +4 -0
- package/src/lib/models/badge/badge-color.enum.d.ts +6 -0
- package/src/lib/models/badge/badge.d.ts +10 -0
- package/src/lib/models/bank/allocation-group.d.ts +38 -0
- package/src/lib/models/bank/bank-account-chart-data.d.ts +17 -0
- package/src/lib/models/bank/bank-account-property.d.ts +6 -0
- package/src/lib/models/bank/bank-account.d.ts +94 -0
- package/src/lib/models/bank/bank-connection.d.ts +28 -0
- package/src/lib/models/bank/bank-external-stats.d.ts +12 -0
- package/src/lib/models/bank/bank-transaction-chart-data.d.ts +30 -0
- package/src/lib/models/bank/bank-transaction-summary-fields.enum.d.ts +4 -0
- package/src/lib/models/bank/bank-transaction.d.ts +38 -0
- package/src/lib/models/bank/bank.d.ts +15 -0
- package/src/lib/models/bank/basiq/basiq-config.d.ts +17 -0
- package/src/lib/models/bank/basiq/basiq-connection-data.interface.d.ts +8 -0
- package/src/lib/models/bank/basiq/basiq-connections-response.interface.d.ts +9 -0
- package/src/lib/models/bank/basiq/basiq-job-response.d.ts +7 -0
- package/src/lib/models/bank/basiq/basiq-job-step.d.ts +9 -0
- package/src/lib/models/bank/basiq/basiq-job.d.ts +3 -0
- package/src/lib/models/bank/basiq/basiq-token-response.interface.d.ts +9 -0
- package/src/lib/models/bank/basiq/basiq-token.d.ts +10 -0
- package/src/lib/models/bank/basiq/index.d.ts +8 -0
- package/src/lib/models/bank/index.d.ts +12 -0
- package/src/lib/models/bank/type-loan.const.d.ts +2 -0
- package/src/lib/models/borrowing-expense/borrowing-expense-loan.d.ts +3 -0
- package/src/lib/models/borrowing-expense/borrowing-expense.d.ts +3 -0
- package/src/lib/models/borrowing-expense/index.d.ts +2 -0
- package/src/lib/models/budget/budget-rule.d.ts +7 -0
- package/src/lib/models/budget/budget.d.ts +9 -0
- package/src/lib/models/budget/index.d.ts +2 -0
- package/src/lib/models/chart/chart-data.d.ts +9 -0
- package/src/lib/models/chart/chart-serie.d.ts +8 -0
- package/src/lib/models/chart-accounts/chart-accounts-categories.const.d.ts +8 -0
- package/src/lib/models/chart-accounts/chart-accounts-category.e-collection.d.ts +16 -0
- package/src/lib/models/chart-accounts/chart-accounts-depreciation.d.ts +7 -0
- package/src/lib/models/chart-accounts/chart-accounts-heading.d.ts +5 -0
- package/src/lib/models/chart-accounts/chart-accounts-meta-field.d.ts +10 -0
- package/src/lib/models/chart-accounts/chart-accounts-tax-labels.enum.d.ts +5 -0
- package/src/lib/models/chart-accounts/chart-accounts-value.d.ts +3 -0
- package/src/lib/models/chart-accounts/chart-accounts.d.ts +133 -0
- package/src/lib/models/chart-accounts/index.d.ts +8 -0
- package/src/lib/models/chat/chat-view-type.enum.d.ts +4 -0
- package/src/lib/models/chat/chat.d.ts +13 -0
- package/src/lib/models/chat/index.d.ts +4 -0
- package/src/lib/models/chat/message-document.d.ts +12 -0
- package/src/lib/models/chat/message.d.ts +22 -0
- package/src/lib/models/client/annual-client-details.d.ts +14 -0
- package/src/lib/models/client/capital-loss.d.ts +9 -0
- package/src/lib/models/client/capital-loss.interface.d.ts +6 -0
- package/src/lib/models/client/client-details.d.ts +11 -0
- package/src/lib/models/client/client-invite.d.ts +36 -0
- package/src/lib/models/client/client-movement.d.ts +11 -0
- package/src/lib/models/client/client-portfolio-chart-data.d.ts +11 -0
- package/src/lib/models/client/client-portfolio-report.d.ts +11 -0
- package/src/lib/models/client/index.d.ts +8 -0
- package/src/lib/models/color/alphabet-colors.enum.d.ts +28 -0
- package/src/lib/models/date-range.d.ts +8 -0
- package/src/lib/models/depreciation/depreciation-capital-project.d.ts +4 -0
- package/src/lib/models/depreciation/depreciation-forecast.d.ts +14 -0
- package/src/lib/models/depreciation/depreciation-group-item.d.ts +12 -0
- package/src/lib/models/depreciation/depreciation-group.d.ts +14 -0
- package/src/lib/models/depreciation/depreciation-group.enum.d.ts +8 -0
- package/src/lib/models/depreciation/depreciation-groups.const.d.ts +9 -0
- package/src/lib/models/depreciation/depreciation-lvp-rate.enum.d.ts +7 -0
- package/src/lib/models/depreciation/depreciation.d.ts +62 -0
- package/src/lib/models/depreciation/index.d.ts +8 -0
- package/src/lib/models/dictionary/dictionary.d.ts +17 -0
- package/src/lib/models/dictionary/index.d.ts +1 -0
- package/src/lib/models/document/document-api-url-prefix.enum.d.ts +7 -0
- package/src/lib/models/document/document-file-types.const.d.ts +3 -0
- package/src/lib/models/document/document-folder.d.ts +3 -0
- package/src/lib/models/document/document.d.ts +9 -0
- package/src/lib/models/document/index.d.ts +4 -0
- package/src/lib/models/employee/employee-details.d.ts +7 -0
- package/src/lib/models/employee/employee-invite.d.ts +13 -0
- package/src/lib/models/endpoint/endpoint.d.ts +22 -0
- package/src/lib/models/endpoint/endpoints.const.d.ts +8 -0
- package/src/lib/models/event/app-event-type.enum.d.ts +58 -0
- package/src/lib/models/event/app-event.d.ts +18 -0
- package/src/lib/models/event/index.d.ts +2 -0
- package/src/lib/models/export/export-cell-type.enum.d.ts +9 -0
- package/src/lib/models/export/export-cell.d.ts +8 -0
- package/src/lib/models/export/export-data-table.d.ts +10 -0
- package/src/lib/models/export/export-format.enum.d.ts +4 -0
- package/src/lib/models/file/file.d.ts +10 -0
- package/src/lib/models/file/icons-file.enum.d.ts +5 -0
- package/src/lib/models/file/index.d.ts +1 -0
- package/src/lib/models/financial-year/financial-year.d.ts +22 -0
- package/src/lib/models/financial-year/index.d.ts +4 -0
- package/src/lib/models/financial-year/month-name-short.enum.d.ts +19 -0
- package/src/lib/models/financial-year/month-number.enum.d.ts +19 -0
- package/src/lib/models/financial-year/months.const.d.ts +1 -0
- package/src/lib/models/firm/firm-branch.d.ts +12 -0
- package/src/lib/models/firm/firm-branch.interface.d.ts +7 -0
- package/src/lib/models/firm/firm.d.ts +12 -0
- package/src/lib/models/firm/index.d.ts +2 -0
- package/src/lib/models/holding/holding-reinvest.d.ts +13 -0
- package/src/lib/models/holding/holding-sale.d.ts +31 -0
- package/src/lib/models/holding/holding-trade-import.d.ts +8 -0
- package/src/lib/models/holding/holding-trade.d.ts +47 -0
- package/src/lib/models/holding/holding-type-exchange.d.ts +14 -0
- package/src/lib/models/holding/holding-type.d.ts +48 -0
- package/src/lib/models/holding/holding.d.ts +25 -0
- package/src/lib/models/holding/index.d.ts +7 -0
- package/src/lib/models/home-office/home-office-claim.d.ts +26 -0
- package/src/lib/models/home-office/home-office-claim.interface.d.ts +21 -0
- package/src/lib/models/home-office/home-office-log.d.ts +13 -0
- package/src/lib/models/home-office/home-office-log.interface.d.ts +9 -0
- package/src/lib/models/home-office/index.d.ts +4 -0
- package/src/lib/models/income-position/income-position.d.ts +9 -0
- package/src/lib/models/income-source/income-source-chart-data.d.ts +14 -0
- package/src/lib/models/income-source/income-source-forecast.d.ts +19 -0
- package/src/lib/models/income-source/income-source-type.d.ts +8 -0
- package/src/lib/models/income-source/income-source.d.ts +29 -0
- package/src/lib/models/income-source/index.d.ts +6 -0
- package/src/lib/models/income-source/salary-forecast.d.ts +11 -0
- package/src/lib/models/income-source/sole-forecast.d.ts +7 -0
- package/src/lib/models/index.d.ts +32 -0
- package/src/lib/models/loan/index.d.ts +4 -0
- package/src/lib/models/loan/loan-max-number-of-payments.enum.d.ts +9 -0
- package/src/lib/models/loan/loan-payment.d.ts +15 -0
- package/src/lib/models/loan/loan-payout.d.ts +9 -0
- package/src/lib/models/loan/loan.d.ts +47 -0
- package/src/lib/models/notification/index.d.ts +1 -0
- package/src/lib/models/notification/notification.d.ts +12 -0
- package/src/lib/models/pdf/pdf-orientation.enum.d.ts +4 -0
- package/src/lib/models/pdf/pdf-settings.d.ts +14 -0
- package/src/lib/models/phone/phone.d.ts +8 -0
- package/src/lib/models/property/borrowing-report.d.ts +27 -0
- package/src/lib/models/property/calculation-form-item.d.ts +15 -0
- package/src/lib/models/property/calculation-form-type.enum.d.ts +7 -0
- package/src/lib/models/property/capital-costs-itmes.const.d.ts +2 -0
- package/src/lib/models/property/corelogic-suggestion.d.ts +18 -0
- package/src/lib/models/property/index.d.ts +18 -0
- package/src/lib/models/property/property-category-movement.d.ts +11 -0
- package/src/lib/models/property/property-category.d.ts +5 -0
- package/src/lib/models/property/property-corelogic-stats.interface.d.ts +8 -0
- package/src/lib/models/property/property-document.d.ts +9 -0
- package/src/lib/models/property/property-equity-chart-data.d.ts +63 -0
- package/src/lib/models/property/property-equity-chart-item.d.ts +19 -0
- package/src/lib/models/property/property-equity-chart-type.enum.d.ts +4 -0
- package/src/lib/models/property/property-forecast.d.ts +20 -0
- package/src/lib/models/property/property-sale/index.d.ts +5 -0
- package/src/lib/models/property/property-sale/property-sale-cost-base.d.ts +11 -0
- package/src/lib/models/property/property-sale/property-sale-tax-exemption-meta-field.d.ts +3 -0
- package/src/lib/models/property/property-sale/property-sale.d.ts +26 -0
- package/src/lib/models/property/property-sale/tax-exemption-meta-field.d.ts +3 -0
- package/src/lib/models/property/property-sale/tax-exemption.d.ts +4 -0
- package/src/lib/models/property/property-share.d.ts +21 -0
- package/src/lib/models/property/property-subscription.d.ts +6 -0
- package/src/lib/models/property/property-valuation.d.ts +11 -0
- package/src/lib/models/property/property.d.ts +107 -0
- package/src/lib/models/registration-invite/registration-invite.d.ts +8 -0
- package/src/lib/models/report/depreciation/depreciation-lvp-asset-type.enum.d.ts +8 -0
- package/src/lib/models/report/depreciation/depreciation-lvp-report-item.d.ts +8 -0
- package/src/lib/models/report/depreciation/depreciation-report-item.d.ts +9 -0
- package/src/lib/models/report/depreciation/index.d.ts +3 -0
- package/src/lib/models/report/income-expense/transaction-report-item.d.ts +11 -0
- package/src/lib/models/report/index.d.ts +8 -0
- package/src/lib/models/report/my-tax/ato-links.d.ts +6 -0
- package/src/lib/models/report/my-tax/index.d.ts +25 -0
- package/src/lib/models/report/my-tax/my-tax-business-income-or-losses/business-income-or-losses-categories.const.d.ts +8 -0
- package/src/lib/models/report/my-tax/my-tax-business-income-or-losses/business-type.enum.d.ts +9 -0
- package/src/lib/models/report/my-tax/my-tax-business-income-or-losses/loss-type.enum.d.ts +14 -0
- package/src/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-details/my-tax-business-details.d.ts +16 -0
- package/src/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-income/my-tax-business-income.d.ts +30 -0
- package/src/lib/models/report/my-tax/my-tax-business-income-or-losses/my-tax-business-losses/my-tax-business-losses.d.ts +30 -0
- package/src/lib/models/report/my-tax/my-tax-cgt/cgt-exemption-and-rollover-code.enum.d.ts +7 -0
- package/src/lib/models/report/my-tax/my-tax-cgt/my-tax-cgt.d.ts +24 -0
- package/src/lib/models/report/my-tax/my-tax-deductions/deduction-clothing-type.enum.d.ts +11 -0
- package/src/lib/models/report/my-tax/my-tax-deductions/deduction-fields.const.d.ts +8 -0
- package/src/lib/models/report/my-tax/my-tax-deductions/deduction-self-education-type.enum.d.ts +8 -0
- package/src/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.d.ts +47 -0
- package/src/lib/models/report/my-tax/my-tax-dividends/my-tax-dividends.d.ts +9 -0
- package/src/lib/models/report/my-tax/my-tax-estimate/my-tax-estimate.d.ts +20 -0
- package/src/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.d.ts +36 -0
- package/src/lib/models/report/my-tax/my-tax-income-tests/my-tax-income-tests.d.ts +7 -0
- package/src/lib/models/report/my-tax/my-tax-interest/my-tax-interest.d.ts +9 -0
- package/src/lib/models/report/my-tax/my-tax-losses/my-tax-losses.d.ts +16 -0
- package/src/lib/models/report/my-tax/my-tax-offsets/my-tax-offsets.d.ts +7 -0
- package/src/lib/models/report/my-tax/my-tax-other-income/my-tax-other-income.d.ts +19 -0
- package/src/lib/models/report/my-tax/my-tax-partnerships-and-trusts/my-tax-partnerships-and-trusts.d.ts +20 -0
- package/src/lib/models/report/my-tax/my-tax-rent/my-tax-rent.d.ts +21 -0
- package/src/lib/models/report/property/index.d.ts +3 -0
- package/src/lib/models/report/property/property-report-item-depreciation.d.ts +12 -0
- package/src/lib/models/report/property/property-report-item-transaction.d.ts +10 -0
- package/src/lib/models/report/property/property-report-item.d.ts +23 -0
- package/src/lib/models/report/report.interface.d.ts +8 -0
- package/src/lib/models/report/reports.const.d.ts +3 -0
- package/src/lib/models/report/sole/index.d.ts +1 -0
- package/src/lib/models/report/sole/sole-business/sole-business-loss-report.d.ts +19 -0
- package/src/lib/models/report/vehicle-expense/vehicle-expense.d.ts +11 -0
- package/src/lib/models/service-subscription/index.d.ts +9 -0
- package/src/lib/models/service-subscription/module-url-list.const.d.ts +6 -0
- package/src/lib/models/service-subscription/payment-method-brand.enum.d.ts +10 -0
- package/src/lib/models/service-subscription/service-payment-method.d.ts +11 -0
- package/src/lib/models/service-subscription/service-payment.d.ts +12 -0
- package/src/lib/models/service-subscription/service-price.d.ts +10 -0
- package/src/lib/models/service-subscription/service-product-icons.enum.d.ts +9 -0
- package/src/lib/models/service-subscription/service-product-roles.const.d.ts +5 -0
- package/src/lib/models/service-subscription/service-product.d.ts +9 -0
- package/src/lib/models/service-subscription/service-promo-code-duration.enum.d.ts +5 -0
- package/src/lib/models/service-subscription/service-promo-code.d.ts +20 -0
- package/src/lib/models/service-subscription/service-subscription-item.d.ts +11 -0
- package/src/lib/models/service-subscription/service-subscription.d.ts +67 -0
- package/src/lib/models/sharesight/index.d.ts +4 -0
- package/src/lib/models/sharesight/sharesight-details-messages.enum.d.ts +7 -0
- package/src/lib/models/sharesight/sharesight-details.d.ts +18 -0
- package/src/lib/models/sharesight/sharesight-details.interface.d.ts +11 -0
- package/src/lib/models/sharesight/sharesight-portfolio/index.d.ts +3 -0
- package/src/lib/models/sharesight/sharesight-portfolio/sharesight-portfolio.d.ts +10 -0
- package/src/lib/models/sharesight/sharesight-portfolio/sharesight-portfolio.interface.d.ts +7 -0
- package/src/lib/models/sharesight/sharesight-portfolio/sharesight-portfolio.messages.d.ts +3 -0
- package/src/lib/models/sole/bas-report.d.ts +16 -0
- package/src/lib/models/sole/index.d.ts +12 -0
- package/src/lib/models/sole/sole-business-activity.d.ts +3 -0
- package/src/lib/models/sole/sole-business-allocation.d.ts +8 -0
- package/src/lib/models/sole/sole-business-loss-offset-rule.d.ts +4 -0
- package/src/lib/models/sole/sole-business-loss.d.ts +14 -0
- package/src/lib/models/sole/sole-business.d.ts +30 -0
- package/src/lib/models/sole/sole-contact.d.ts +14 -0
- package/src/lib/models/sole/sole-depreciation-method.d.ts +4 -0
- package/src/lib/models/sole/sole-details.d.ts +5 -0
- package/src/lib/models/sole/sole-invoice-item.d.ts +15 -0
- package/src/lib/models/sole/sole-invoice-template.d.ts +19 -0
- package/src/lib/models/sole/sole-invoice.d.ts +64 -0
- package/src/lib/models/tax-return/index.d.ts +3 -0
- package/src/lib/models/tax-return/tax-return-category.d.ts +8 -0
- package/src/lib/models/tax-return/tax-return-item.d.ts +10 -0
- package/src/lib/models/tax-return/tax-return.d.ts +5 -0
- package/src/lib/models/tax-review/tax-review.d.ts +56 -0
- package/src/lib/models/tax-summary/report-item-details.d.ts +14 -0
- package/src/lib/models/tax-summary/report-item.d.ts +25 -0
- package/src/lib/models/tax-summary/tax-summary-section.d.ts +12 -0
- package/src/lib/models/tax-summary/tax-summary-type.enum.d.ts +7 -0
- package/src/lib/models/tax-summary/tax-summary.d.ts +75 -0
- package/src/lib/models/toast/toast-type.enum.d.ts +6 -0
- package/src/lib/models/toast/toast.d.ts +14 -0
- package/src/lib/models/transaction/allocation-rule-condition.d.ts +8 -0
- package/src/lib/models/transaction/allocation-rule-transaction-meta-field.d.ts +3 -0
- package/src/lib/models/transaction/allocation-rule-transaction.d.ts +28 -0
- package/src/lib/models/transaction/allocation-rule.d.ts +42 -0
- package/src/lib/models/transaction/income-amount-type.enum.d.ts +7 -0
- package/src/lib/models/transaction/index.d.ts +8 -0
- package/src/lib/models/transaction/transaction-allocation.d.ts +12 -0
- package/src/lib/models/transaction/transaction-category.enum.d.ts +6 -0
- package/src/lib/models/transaction/transaction-meta-field.d.ts +8 -0
- package/src/lib/models/transaction/transaction.d.ts +101 -0
- package/src/lib/models/user/index.d.ts +10 -0
- package/src/lib/models/user/mfa-details/index.d.ts +2 -0
- package/src/lib/models/user/mfa-details/mfa-details.d.ts +11 -0
- package/src/lib/models/user/mfa-details/mfa-details.interface.d.ts +6 -0
- package/src/lib/models/user/my-account-history-initiated-by.enum.d.ts +4 -0
- package/src/lib/models/user/my-account-history-status.enum.d.ts +4 -0
- package/src/lib/models/user/my-account-history-type.enum.d.ts +5 -0
- package/src/lib/models/user/my-account-history.d.ts +11 -0
- package/src/lib/models/user/occupation.d.ts +3 -0
- package/src/lib/models/user/user-roles.const.d.ts +7 -0
- package/src/lib/models/user/user-to-register.d.ts +7 -0
- package/src/lib/models/user/user-work-position.const.d.ts +3 -0
- package/src/lib/models/user/user.d.ts +60 -0
- package/src/lib/models/user-event/user-event-setting-field.enum.d.ts +8 -0
- package/src/lib/models/user-event/user-event-setting.d.ts +6 -0
- package/src/lib/models/user-event/user-event-type-category.d.ts +3 -0
- package/src/lib/models/user-event/user-event-type.d.ts +8 -0
- package/src/lib/models/vehicle/index.d.ts +4 -0
- package/src/lib/models/vehicle/vehicle-claim-details.d.ts +14 -0
- package/src/lib/models/vehicle/vehicle-claim.d.ts +32 -0
- package/src/lib/models/vehicle/vehicle-logbook.d.ts +9 -0
- package/src/lib/models/vehicle/vehicle.d.ts +5 -0
- package/src/lib/pipes/app-currency.pipe.d.ts +11 -0
- package/src/lib/pipes/app-percent.pipe.d.ts +8 -0
- package/src/lib/pipes/index.d.ts +3 -0
- package/src/lib/pipes/safe-url.pipe.d.ts +10 -0
- package/src/lib/resolvers/business/business.resolver.d.ts +11 -0
- package/src/lib/resolvers/business/sole-details.resolver.d.ts +11 -0
- package/src/lib/resolvers/index.d.ts +2 -0
- package/src/lib/services/account-setup/account-setup.service.d.ts +74 -0
- package/src/lib/services/account-setup/index.d.ts +1 -0
- package/src/lib/services/adblock/adblock.service.d.ts +21 -0
- package/src/lib/services/adblock/index.d.ts +1 -0
- package/src/lib/services/asset/assets.service.d.ts +34 -0
- package/src/lib/services/asset/index.d.ts +1 -0
- package/src/lib/services/bank/bank-account-calculation.service.d.ts +15 -0
- package/src/lib/services/bank/index.d.ts +1 -0
- package/src/lib/services/data.service.d.ts +39 -0
- package/src/lib/services/event/event-dispatcher.service.d.ts +24 -0
- package/src/lib/services/event/index.d.ts +2 -0
- package/src/lib/services/event/sse.service.d.ts +20 -0
- package/src/lib/services/export/export-formatter.service.d.ts +12 -0
- package/src/lib/services/export/index.d.ts +1 -0
- package/src/lib/services/firm/current-firm-branch.service.d.ts +11 -0
- package/src/lib/services/firm/index.d.ts +1 -0
- package/src/lib/services/header-title/header-title.service.d.ts +11 -0
- package/src/lib/services/header-title/index.d.ts +1 -0
- package/src/lib/services/http/address/address.service.d.ts +14 -0
- package/src/lib/services/http/address/index.d.ts +1 -0
- package/src/lib/services/http/aussie/aussie.service.d.ts +19 -0
- package/src/lib/services/http/aussie/index.d.ts +1 -0
- package/src/lib/services/http/bank/bank-account/bank-account.service.d.ts +47 -0
- package/src/lib/services/http/bank/bank-account/index.d.ts +1 -0
- package/src/lib/services/http/bank/bank-connection/bank-connection-messages.enum.d.ts +24 -0
- package/src/lib/services/http/bank/bank-connection/bank-connection.service.d.ts +30 -0
- package/src/lib/services/http/bank/bank-connection/index.d.ts +2 -0
- package/src/lib/services/http/bank/bank-transaction/bank-transaction.service.d.ts +36 -0
- package/src/lib/services/http/bank/bank-transaction/index.d.ts +1 -0
- package/src/lib/services/http/bank/bank.service.d.ts +16 -0
- package/src/lib/services/http/bank/basiq/basiq-messages.enum.d.ts +5 -0
- package/src/lib/services/http/bank/basiq/basiq-token.service.d.ts +22 -0
- package/src/lib/services/http/bank/basiq/basiq.service.d.ts +92 -0
- package/src/lib/services/http/bank/basiq/index.d.ts +3 -0
- package/src/lib/services/http/bank/index.d.ts +5 -0
- package/src/lib/services/http/budget/budget-messages.enum.d.ts +6 -0
- package/src/lib/services/http/budget/budget.service.d.ts +13 -0
- package/src/lib/services/http/budget/index.d.ts +2 -0
- package/src/lib/services/http/chart-accounts/chart-accounts-depreciations/chart-accounts-depreciations.service.d.ts +16 -0
- package/src/lib/services/http/chart-accounts/chart-accounts-depreciations/index.d.ts +1 -0
- package/src/lib/services/http/chart-accounts/chart-accounts-messages.enum.d.ts +7 -0
- package/src/lib/services/http/chart-accounts/chart-accounts.service.d.ts +22 -0
- package/src/lib/services/http/chart-accounts/index.d.ts +3 -0
- package/src/lib/services/http/chat/chat.service.d.ts +30 -0
- package/src/lib/services/http/chat/index.d.ts +3 -0
- package/src/lib/services/http/chat/message-document.service.d.ts +36 -0
- package/src/lib/services/http/chat/message.service.d.ts +23 -0
- package/src/lib/services/http/client/annual-client-details.service.d.ts +13 -0
- package/src/lib/services/http/client/capital-loss/capital-loss-messages.enum.d.ts +5 -0
- package/src/lib/services/http/client/capital-loss/capital-loss.service.d.ts +12 -0
- package/src/lib/services/http/client/capital-loss/index.d.ts +2 -0
- package/src/lib/services/http/client/client-coupon.service.d.ts +16 -0
- package/src/lib/services/http/client/index.d.ts +4 -0
- package/src/lib/services/http/client/occupation/occupation.service.d.ts +20 -0
- package/src/lib/services/http/depreciation/depreciation-capital-project/depreciation-capital-project.service.d.ts +17 -0
- package/src/lib/services/http/depreciation/depreciation-capital-project/index.d.ts +1 -0
- package/src/lib/services/http/depreciation/depreciation.service.d.ts +51 -0
- package/src/lib/services/http/depreciation/index.d.ts +2 -0
- package/src/lib/services/http/document/document-folder/document-folder-messages.enum.d.ts +6 -0
- package/src/lib/services/http/document/document-folder/document-folder.service.d.ts +16 -0
- package/src/lib/services/http/document/document-folder/index.d.ts +2 -0
- package/src/lib/services/http/document/document-messages.enum.d.ts +6 -0
- package/src/lib/services/http/document/document.service.d.ts +13 -0
- package/src/lib/services/http/document/index.d.ts +3 -0
- package/src/lib/services/http/facebook/facebook-auth-options.interface.d.ts +11 -0
- package/src/lib/services/http/facebook/facebook-auth-response.interface.d.ts +11 -0
- package/src/lib/services/http/facebook/facebook-status-response.interface.d.ts +9 -0
- package/src/lib/services/http/facebook/facebook.service.d.ts +38 -0
- package/src/lib/services/http/facebook/index.d.ts +1 -0
- package/src/lib/services/http/file/file.service.d.ts +18 -0
- package/src/lib/services/http/file/index.d.ts +1 -0
- package/src/lib/services/http/firm/client-invite/client-invite-messages.enum.d.ts +13 -0
- package/src/lib/services/http/firm/client-invite/client-invite.service.d.ts +44 -0
- package/src/lib/services/http/firm/client-invite/index.d.ts +2 -0
- package/src/lib/services/http/firm/client-movement/client-movement-messages.enum.d.ts +6 -0
- package/src/lib/services/http/firm/client-movement/client-movement.service.d.ts +37 -0
- package/src/lib/services/http/firm/client-movement/index.d.ts +2 -0
- package/src/lib/services/http/firm/employee/employee-messages.enum.d.ts +12 -0
- package/src/lib/services/http/firm/employee/employee.service.d.ts +21 -0
- package/src/lib/services/http/firm/employee/index.d.ts +2 -0
- package/src/lib/services/http/firm/employee-invite/employee-invite.service.d.ts +25 -0
- package/src/lib/services/http/firm/employee-invite/index.d.ts +1 -0
- package/src/lib/services/http/firm/firm-branch/firm-branch-messages.enum.d.ts +7 -0
- package/src/lib/services/http/firm/firm-branch/firm-branch.service.d.ts +13 -0
- package/src/lib/services/http/firm/firm-branch/index.d.ts +2 -0
- package/src/lib/services/http/firm/firm-messages.enum.d.ts +4 -0
- package/src/lib/services/http/firm/firm.service.d.ts +22 -0
- package/src/lib/services/http/firm/index.d.ts +8 -0
- package/src/lib/services/http/firm/portfolio-report/client-portfolio-report.service.d.ts +16 -0
- package/src/lib/services/http/firm/portfolio-report/index.d.ts +1 -0
- package/src/lib/services/http/google/google.service.d.ts +43 -0
- package/src/lib/services/http/google/index.d.ts +1 -0
- package/src/lib/services/http/holding/holding-sale.service.d.ts +15 -0
- package/src/lib/services/http/holding/holding-trade-import/holding-trade-import-messages.enum.d.ts +7 -0
- package/src/lib/services/http/holding/holding-trade-import/holding-trade-import.service.d.ts +17 -0
- package/src/lib/services/http/holding/holding-trade-messages.enum.d.ts +8 -0
- package/src/lib/services/http/holding/holding-trade.service.d.ts +20 -0
- package/src/lib/services/http/holding/holding-type-messages.enum.d.ts +6 -0
- package/src/lib/services/http/holding/holding-type.service.d.ts +23 -0
- package/src/lib/services/http/holding/index.d.ts +8 -0
- package/src/lib/services/http/home-office/home-office-claim-messages.enum.d.ts +6 -0
- package/src/lib/services/http/home-office/home-office-claim.service.d.ts +14 -0
- package/src/lib/services/http/home-office/home-office-log-messages.enum.d.ts +6 -0
- package/src/lib/services/http/home-office/home-office-log.service.d.ts +16 -0
- package/src/lib/services/http/home-office/index.d.ts +4 -0
- package/src/lib/services/http/income-source/income-source-forecast/income-source-forecast.service.d.ts +34 -0
- package/src/lib/services/http/income-source/income-source-forecast/index.d.ts +1 -0
- package/src/lib/services/http/income-source/income-source-messages.enum.d.ts +8 -0
- package/src/lib/services/http/income-source/income-source.service.d.ts +42 -0
- package/src/lib/services/http/income-source/index.d.ts +5 -0
- package/src/lib/services/http/income-source/salary-forecast/index.d.ts +1 -0
- package/src/lib/services/http/income-source/salary-forecast/salary-forecast.service.d.ts +33 -0
- package/src/lib/services/http/income-source/sole-forecast/index.d.ts +1 -0
- package/src/lib/services/http/income-source/sole-forecast/sole-forecast.service.d.ts +34 -0
- package/src/lib/services/http/index.d.ts +32 -0
- package/src/lib/services/http/loan/borrowing-expense/borrowing-expense.service.d.ts +23 -0
- package/src/lib/services/http/loan/borrowing-expense/index.d.ts +1 -0
- package/src/lib/services/http/loan/index.d.ts +3 -0
- package/src/lib/services/http/loan/loan-messages.enum.d.ts +6 -0
- package/src/lib/services/http/loan/loan.service.d.ts +48 -0
- package/src/lib/services/http/pdf/pdf.service.d.ts +13 -0
- package/src/lib/services/http/property/borrowing-report/borrowing-report-messages.enum.d.ts +5 -0
- package/src/lib/services/http/property/borrowing-report/borrowing-report.service.d.ts +13 -0
- package/src/lib/services/http/property/borrowing-report/index.d.ts +2 -0
- package/src/lib/services/http/property/index.d.ts +9 -0
- package/src/lib/services/http/property/property-category/index.d.ts +1 -0
- package/src/lib/services/http/property/property-category/property-category.service.d.ts +16 -0
- package/src/lib/services/http/property/property-category-movement/index.d.ts +1 -0
- package/src/lib/services/http/property/property-category-movement/property-category-movement.service.d.ts +17 -0
- package/src/lib/services/http/property/property-document/index.d.ts +2 -0
- package/src/lib/services/http/property/property-document/property-document-messages.enum.d.ts +6 -0
- package/src/lib/services/http/property/property-document/property-document.service.d.ts +18 -0
- package/src/lib/services/http/property/property-messages.enum.d.ts +9 -0
- package/src/lib/services/http/property/property-sale/index.d.ts +2 -0
- package/src/lib/services/http/property/property-sale/property-sale.service.d.ts +15 -0
- package/src/lib/services/http/property/property-share/index.d.ts +1 -0
- package/src/lib/services/http/property/property-share/property-share.service.d.ts +38 -0
- package/src/lib/services/http/property/property-valuation/index.d.ts +2 -0
- package/src/lib/services/http/property/property-valuation/property-valuation-messages.enum.d.ts +5 -0
- package/src/lib/services/http/property/property-valuation/property-valuation.service.d.ts +14 -0
- package/src/lib/services/http/property/property.service.d.ts +48 -0
- package/src/lib/services/http/rest/http-error-messages.const.d.ts +13 -0
- package/src/lib/services/http/rest/http-method.type.d.ts +1 -0
- package/src/lib/services/http/rest/index.d.ts +4 -0
- package/src/lib/services/http/rest/rest-method.type.d.ts +1 -0
- package/src/lib/services/http/rest/rest-old.service.d.ts +122 -0
- package/src/lib/services/http/rest/rest.service.d.ts +167 -0
- package/src/lib/services/http/rest-messages.enum.d.ts +5 -0
- package/src/lib/services/http/service-notification/index.d.ts +1 -0
- package/src/lib/services/http/service-notification/service-notification.service.d.ts +27 -0
- package/src/lib/services/http/setup-item/setup-item.service.d.ts +13 -0
- package/src/lib/services/http/sharesight/index.d.ts +2 -0
- package/src/lib/services/http/sharesight/sharesight-details.service.d.ts +15 -0
- package/src/lib/services/http/sharesight/sharesight-portfolio.service.d.ts +14 -0
- package/src/lib/services/http/sole/bas-report/bas-report-messages.enum.d.ts +6 -0
- package/src/lib/services/http/sole/bas-report/bas-report.service.d.ts +10 -0
- package/src/lib/services/http/sole/bas-report/index.d.ts +2 -0
- package/src/lib/services/http/sole/index.d.ts +10 -0
- package/src/lib/services/http/sole/sole-business/index.d.ts +2 -0
- package/src/lib/services/http/sole/sole-business/sole-business-messages.enum.d.ts +3 -0
- package/src/lib/services/http/sole/sole-business/sole-business.service.d.ts +14 -0
- package/src/lib/services/http/sole/sole-business-activity/sole-business-activity.service.d.ts +10 -0
- package/src/lib/services/http/sole/sole-business-loss/sole-business-loss-rules/sole-business-loss-offset-rule.service.d.ts +12 -0
- package/src/lib/services/http/sole/sole-business-loss/sole-business-loss.service.d.ts +23 -0
- package/src/lib/services/http/sole/sole-contact/sole-contact.service.d.ts +10 -0
- package/src/lib/services/http/sole/sole-depreciation-method/sole-depreciation-method.service.d.ts +26 -0
- package/src/lib/services/http/sole/sole-details/sole-details.service.d.ts +20 -0
- package/src/lib/services/http/sole/sole-invoice/sole-invoice.service.d.ts +24 -0
- package/src/lib/services/http/sole/sole-invoice-template/sole-invoice-template.service.d.ts +10 -0
- package/src/lib/services/http/subscription/index.d.ts +6 -0
- package/src/lib/services/http/subscription/service-payment/service-payment.service.d.ts +18 -0
- package/src/lib/services/http/subscription/service-payment-method/service-payment-method.service.d.ts +23 -0
- package/src/lib/services/http/subscription/service-price/service-price.service.d.ts +16 -0
- package/src/lib/services/http/subscription/service-product/service-product.service.d.ts +13 -0
- package/src/lib/services/http/subscription/service-subscription/subscription-messages.enum.d.ts +8 -0
- package/src/lib/services/http/subscription/service-subscription/subscription.service.d.ts +43 -0
- package/src/lib/services/http/tax-review/index.d.ts +3 -0
- package/src/lib/services/http/tax-review/tax-review-history/tax-review-history.service.d.ts +21 -0
- package/src/lib/services/http/tax-review/tax-review-messages.enum.d.ts +18 -0
- package/src/lib/services/http/tax-review/tax-review.service.d.ts +41 -0
- package/src/lib/services/http/tax-summary/index.d.ts +1 -0
- package/src/lib/services/http/tax-summary/tax-summary.service.d.ts +32 -0
- package/src/lib/services/http/transaction/index.d.ts +5 -0
- package/src/lib/services/http/transaction/invoice-transactions.service.d.ts +20 -0
- package/src/lib/services/http/transaction/prior-transaction.service.d.ts +20 -0
- package/src/lib/services/http/transaction/transaction-allocation/allocation-rule/allocation-rule.service.d.ts +13 -0
- package/src/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.d.ts +42 -0
- package/src/lib/services/http/transaction/transaction.service.d.ts +87 -0
- package/src/lib/services/http/user/financial-year/financial-year.service.d.ts +11 -0
- package/src/lib/services/http/user/index.d.ts +8 -0
- package/src/lib/services/http/user/mfa-details/index.d.ts +2 -0
- package/src/lib/services/http/user/mfa-details/mfa-details-messages.enum.d.ts +5 -0
- package/src/lib/services/http/user/mfa-details/mfa-details.service.d.ts +19 -0
- package/src/lib/services/http/user/user-event-setting/user-event-setting.service.d.ts +13 -0
- package/src/lib/services/http/user/user-event-type/user-event-type.service.d.ts +13 -0
- package/src/lib/services/http/user/user-messages.enum.d.ts +9 -0
- package/src/lib/services/http/user/user.service.d.ts +45 -0
- package/src/lib/services/http/user/users-invite/users-invite.service.d.ts +13 -0
- package/src/lib/services/http/vehicle/index.d.ts +5 -0
- package/src/lib/services/http/vehicle/vehicle-claim-details.service.d.ts +27 -0
- package/src/lib/services/http/vehicle/vehicle-claim.service.d.ts +18 -0
- package/src/lib/services/http/vehicle/vehicle-logbook/index.d.ts +2 -0
- package/src/lib/services/http/vehicle/vehicle-logbook/vehicle-logbook-messages.enum.d.ts +6 -0
- package/src/lib/services/http/vehicle/vehicle-logbook/vehicle-logbook.service.d.ts +16 -0
- package/src/lib/services/http/vehicle/vehicle-messages.enum.d.ts +6 -0
- package/src/lib/services/http/vehicle/vehicle.service.d.ts +15 -0
- package/src/lib/services/http/youtube/index.d.ts +2 -0
- package/src/lib/services/http/youtube/youtube-video.interface.d.ts +4 -0
- package/src/lib/services/http/youtube/youtube.service.d.ts +15 -0
- package/src/lib/services/index.d.ts +18 -0
- package/src/lib/services/intercom/index.d.ts +1 -0
- package/src/lib/services/intercom/intercom.service.d.ts +21 -0
- package/src/lib/services/json/chart-accounts/chart-accounts-value.service.d.ts +12 -0
- package/src/lib/services/json/holding/holding-type-exchange.service.d.ts +12 -0
- package/src/lib/services/json/income-source/income-source-type.service.d.ts +12 -0
- package/src/lib/services/json/index.d.ts +5 -0
- package/src/lib/services/json/tax-exemption/tax-exemption.service.d.ts +12 -0
- package/src/lib/services/json/tax-return/tax-return-item.service.d.ts +12 -0
- package/src/lib/services/pdf/index.d.ts +5 -0
- package/src/lib/services/pdf/js-pdf.d.ts +9 -0
- package/src/lib/services/pdf/pdf-from-dom-element/file-settings.d.ts +6 -0
- package/src/lib/services/pdf/pdf-from-dom-element/pdf-from-dom-element.service.d.ts +17 -0
- package/src/lib/services/pdf/pdf-from-table/file-settings.d.ts +8 -0
- package/src/lib/services/pdf/pdf-from-table/pdf-from-data-table/pdf-from-data-table.service.d.ts +19 -0
- package/src/lib/services/pdf/pdf-from-table/pdf-from-html-table/pdf-from-html-table.service.d.ts +16 -0
- package/src/lib/services/pdf/pdf-from-table/pdf-from-table.service.d.ts +18 -0
- package/src/lib/services/preloader/index.d.ts +1 -0
- package/src/lib/services/preloader/preloader.service.d.ts +12 -0
- package/src/lib/services/property/corelogic/corelogic-messages.enum.d.ts +3 -0
- package/src/lib/services/property/corelogic/corelogic.service.d.ts +17 -0
- package/src/lib/services/property/corelogic/index.d.ts +2 -0
- package/src/lib/services/property/equity-position-chart/equity-position-chart.service.d.ts +15 -0
- package/src/lib/services/property/equity-position-chart/index.d.ts +1 -0
- package/src/lib/services/property/index.d.ts +3 -0
- package/src/lib/services/property/property-calculation/index.d.ts +1 -0
- package/src/lib/services/property/property-calculation/property-calculation.service.d.ts +51 -0
- package/src/lib/services/report/index.d.ts +1 -0
- package/src/lib/services/report/property/property-transaction-report.service.d.ts +35 -0
- package/src/lib/services/toast/index.d.ts +1 -0
- package/src/lib/services/toast/toast.service.d.ts +17 -0
- package/src/lib/services/user/index.d.ts +1 -0
- package/src/lib/services/user/user-switcher.service.d.ts +20 -0
- package/src/lib/services/xlsx/index.d.ts +1 -0
- package/src/lib/services/xlsx/xlsx.service.d.ts +27 -0
- package/src/lib/transformer/transformDate.d.ts +3 -0
- package/src/lib/validators/at-least-one-enabled.validator.d.ts +5 -0
- package/src/lib/validators/at-least-one.validator.d.ts +6 -0
- package/src/lib/validators/autocomplete.validator.d.ts +6 -0
- package/src/lib/validators/conditional.validator.d.ts +2 -0
- package/src/lib/validators/current-fin-year.validator.d.ts +5 -0
- package/src/lib/validators/date/max-date.validator.d.ts +5 -0
- package/src/lib/validators/date/min-date.validator.d.ts +5 -0
- package/src/lib/validators/date-range.validator.d.ts +5 -0
- package/src/lib/validators/fields-sum.validator.d.ts +8 -0
- package/src/lib/validators/file.validator.d.ts +6 -0
- package/src/lib/validators/greater-than.validator.d.ts +5 -0
- package/src/lib/validators/group.validator.d.ts +5 -0
- package/src/lib/validators/index.d.ts +14 -0
- package/src/lib/validators/match-sum.validator.d.ts +6 -0
- package/src/lib/validators/password-match.validator.d.ts +2 -0
- package/src/lib/validators/password.validator.d.ts +8 -0
- package/src/lib/validators/phone-number.validator.d.ts +6 -0
- package/src/lib/validators/required-length.validator.d.ts +5 -0
- package/src/lib/validators/string/alpha-space.validator.d.ts +5 -0
- package/src/lib/validators/unique-email.validator.d.ts +11 -0
@@ -39,7 +39,7 @@ import { checkAdBlock } from 'adblock-checker';
|
|
39
39
|
import { jsPDF } from 'jspdf';
|
40
40
|
import { applyPlugin } from 'jspdf-autotable';
|
41
41
|
import html2pdf from 'html2pdf.js';
|
42
|
-
import * as xlsx from '
|
42
|
+
import * as xlsx from 'xlsx';
|
43
43
|
import * as FileSaver from 'file-saver';
|
44
44
|
import * as i1$2 from '@angular/platform-browser';
|
45
45
|
import { PercentagePipe } from 'ngx-pipes';
|
@@ -3998,7 +3998,7 @@ class IncomeSourceChartData {
|
|
3998
3998
|
if (MonthNameShortEnum.hasOwnProperty(key)) {
|
3999
3999
|
// transaction collection for provided month
|
4000
4000
|
const monthTransactionCollection = this.transactions.getByMonth(+MonthNumberEnum[key]);
|
4001
|
-
chartData[0].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), monthTransactionCollection.
|
4001
|
+
chartData[0].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), monthTransactionCollection.getGrossClaimAmountWithoutGst()]);
|
4002
4002
|
chartData[1].data.push([new FinancialYear().getMonthDate(+MonthNumberEnum[key]).getTime(), this.forecastedIncomeAmount / 12]);
|
4003
4003
|
}
|
4004
4004
|
}
|
@@ -11353,10 +11353,10 @@ class ToastService {
|
|
11353
11353
|
message,
|
11354
11354
|
}));
|
11355
11355
|
}
|
11356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11357
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11356
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11357
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
11358
11358
|
}
|
11359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11359
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ToastService, decorators: [{
|
11360
11360
|
type: Injectable,
|
11361
11361
|
args: [{
|
11362
11362
|
providedIn: 'root'
|
@@ -11389,10 +11389,10 @@ class CorelogicService {
|
|
11389
11389
|
return throwError(() => error);
|
11390
11390
|
}));
|
11391
11391
|
}
|
11392
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11393
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11393
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
11394
11394
|
}
|
11395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicService, decorators: [{
|
11396
11396
|
type: Injectable,
|
11397
11397
|
args: [{
|
11398
11398
|
providedIn: 'root'
|
@@ -11429,10 +11429,10 @@ class CorelogicInterceptor {
|
|
11429
11429
|
}
|
11430
11430
|
});
|
11431
11431
|
}
|
11432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11433
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicInterceptor, deps: [{ token: CorelogicService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11433
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicInterceptor }); }
|
11434
11434
|
}
|
11435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
11436
11436
|
type: Injectable
|
11437
11437
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
11438
11438
|
type: Inject,
|
@@ -11468,10 +11468,10 @@ class FinancialYearInterceptor {
|
|
11468
11468
|
}
|
11469
11469
|
return next.handle(clonedReq);
|
11470
11470
|
}
|
11471
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11472
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11471
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11472
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearInterceptor }); }
|
11473
11473
|
}
|
11474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
11475
11475
|
type: Injectable
|
11476
11476
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
11477
11477
|
type: Inject,
|
@@ -11495,10 +11495,10 @@ class AddressService {
|
|
11495
11495
|
}
|
11496
11496
|
return this.countriesSubject.asObservable();
|
11497
11497
|
}
|
11498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11499
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11498
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11499
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AddressService, providedIn: 'root' }); }
|
11500
11500
|
}
|
11501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AddressService, decorators: [{
|
11502
11502
|
type: Injectable,
|
11503
11503
|
args: [{
|
11504
11504
|
providedIn: 'root'
|
@@ -11522,10 +11522,10 @@ class PdfService {
|
|
11522
11522
|
formData.append('landscape', landscape ? '1' : '0');
|
11523
11523
|
return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
|
11524
11524
|
}
|
11525
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11526
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11525
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11526
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfService, providedIn: 'root' }); }
|
11527
11527
|
}
|
11528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfService, decorators: [{
|
11529
11529
|
type: Injectable,
|
11530
11530
|
args: [{
|
11531
11531
|
providedIn: 'root'
|
@@ -11562,10 +11562,10 @@ class EventDispatcherService {
|
|
11562
11562
|
dispatch2(event) {
|
11563
11563
|
this.eventSubject2.next(event);
|
11564
11564
|
}
|
11565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11566
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11565
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11566
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
11567
11567
|
}
|
11568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11568
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EventDispatcherService, decorators: [{
|
11569
11569
|
type: Injectable,
|
11570
11570
|
args: [{
|
11571
11571
|
providedIn: 'root'
|
@@ -11601,10 +11601,10 @@ class SseService {
|
|
11601
11601
|
})
|
11602
11602
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
11603
11603
|
}
|
11604
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11605
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11604
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SseService, deps: [{ token: i0.NgZone }, { token: i3.JwtService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11605
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
11606
11606
|
}
|
11607
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SseService, decorators: [{
|
11608
11608
|
type: Injectable,
|
11609
11609
|
args: [{
|
11610
11610
|
providedIn: 'root'
|
@@ -11692,10 +11692,10 @@ class DataService {
|
|
11692
11692
|
setCache(data) {
|
11693
11693
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
11694
11694
|
}
|
11695
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11696
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11695
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11696
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
11697
11697
|
}
|
11698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DataService, decorators: [{
|
11699
11699
|
type: Injectable,
|
11700
11700
|
args: [{
|
11701
11701
|
providedIn: 'root'
|
@@ -12062,10 +12062,10 @@ let RestService$1 = class RestService extends DataService {
|
|
12062
12062
|
this.handleResponse([change.model], change.method);
|
12063
12063
|
});
|
12064
12064
|
}
|
12065
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12066
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12065
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12066
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
12067
12067
|
};
|
12068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService$1, decorators: [{
|
12069
12069
|
type: Injectable,
|
12070
12070
|
args: [{
|
12071
12071
|
providedIn: 'root'
|
@@ -12205,10 +12205,10 @@ class BankAccountService extends RestService$1 {
|
|
12205
12205
|
}
|
12206
12206
|
});
|
12207
12207
|
}
|
12208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12209
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12208
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: SseService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12209
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
12210
12210
|
}
|
12211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12211
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountService, decorators: [{
|
12212
12212
|
type: Injectable,
|
12213
12213
|
args: [{
|
12214
12214
|
providedIn: 'root'
|
@@ -12313,10 +12313,10 @@ class BankConnectionService extends RestService$1 {
|
|
12313
12313
|
}
|
12314
12314
|
});
|
12315
12315
|
}
|
12316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12317
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12316
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12317
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
12318
12318
|
}
|
12319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12319
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankConnectionService, decorators: [{
|
12320
12320
|
type: Injectable,
|
12321
12321
|
args: [{
|
12322
12322
|
providedIn: 'root'
|
@@ -12382,10 +12382,10 @@ class BankTransactionService extends RestService$1 {
|
|
12382
12382
|
}
|
12383
12383
|
});
|
12384
12384
|
}
|
12385
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12386
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12385
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12386
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
12387
12387
|
}
|
12388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12388
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankTransactionService, decorators: [{
|
12389
12389
|
type: Injectable,
|
12390
12390
|
args: [{
|
12391
12391
|
providedIn: 'root'
|
@@ -12419,10 +12419,10 @@ class BasiqTokenService extends RestService$1 {
|
|
12419
12419
|
const now = new Date().getTime();
|
12420
12420
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
12421
12421
|
}
|
12422
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12423
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12422
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12423
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
12424
12424
|
}
|
12425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12425
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenService, decorators: [{
|
12426
12426
|
type: Injectable,
|
12427
12427
|
args: [{
|
12428
12428
|
providedIn: 'root'
|
@@ -12564,10 +12564,10 @@ class BasiqService extends RestService$1 {
|
|
12564
12564
|
}
|
12565
12565
|
});
|
12566
12566
|
}
|
12567
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12568
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12567
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }, { token: BankConnectionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12568
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
12569
12569
|
}
|
12570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12570
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqService, decorators: [{
|
12571
12571
|
type: Injectable,
|
12572
12572
|
args: [{
|
12573
12573
|
providedIn: 'root'
|
@@ -12595,10 +12595,10 @@ class BankService extends RestService$1 {
|
|
12595
12595
|
this.endpointUri = 'banks';
|
12596
12596
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
12597
12597
|
}
|
12598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12599
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12598
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12599
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
12600
12600
|
}
|
12601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankService, decorators: [{
|
12602
12602
|
type: Injectable,
|
12603
12603
|
args: [{
|
12604
12604
|
providedIn: 'root'
|
@@ -12613,10 +12613,10 @@ class BudgetService extends RestService$1 {
|
|
12613
12613
|
this.endpointUri = 'budgets';
|
12614
12614
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12615
12615
|
}
|
12616
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12617
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12616
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12617
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
12618
12618
|
}
|
12619
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12619
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BudgetService, decorators: [{
|
12620
12620
|
type: Injectable,
|
12621
12621
|
args: [{
|
12622
12622
|
providedIn: 'root'
|
@@ -12642,10 +12642,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
12642
12642
|
this.collectionClass = Collection;
|
12643
12643
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12644
12644
|
}
|
12645
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12646
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12645
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12646
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
12647
12647
|
}
|
12648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
12649
12649
|
type: Injectable,
|
12650
12650
|
args: [{
|
12651
12651
|
providedIn: 'root'
|
@@ -12684,10 +12684,10 @@ class ChartAccountsService extends RestService$1 {
|
|
12684
12684
|
return headings;
|
12685
12685
|
}));
|
12686
12686
|
}
|
12687
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12688
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12687
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12688
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
12689
12689
|
}
|
12690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsService, decorators: [{
|
12691
12691
|
type: Injectable,
|
12692
12692
|
args: [{
|
12693
12693
|
providedIn: 'root'
|
@@ -12771,10 +12771,10 @@ class ChatService extends RestService$1 {
|
|
12771
12771
|
this.setCache(cache, true);
|
12772
12772
|
}, ['post']);
|
12773
12773
|
}
|
12774
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12775
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12774
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12775
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
12776
12776
|
}
|
12777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChatService, decorators: [{
|
12778
12778
|
type: Injectable,
|
12779
12779
|
args: [{
|
12780
12780
|
providedIn: 'root'
|
@@ -12804,10 +12804,10 @@ class MessageService extends RestService$1 {
|
|
12804
12804
|
getUnreadChatsAmount() {
|
12805
12805
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
12806
12806
|
}
|
12807
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12808
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12807
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12808
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
12809
12809
|
}
|
12810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12810
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageService, decorators: [{
|
12811
12811
|
type: Injectable,
|
12812
12812
|
args: [{
|
12813
12813
|
providedIn: 'root'
|
@@ -12876,10 +12876,10 @@ class MessageDocumentService extends RestService$1 {
|
|
12876
12876
|
addBatch(chatId, files) {
|
12877
12877
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
12878
12878
|
}
|
12879
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12880
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12880
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
12881
12881
|
}
|
12882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageDocumentService, decorators: [{
|
12883
12883
|
type: Injectable,
|
12884
12884
|
args: [{
|
12885
12885
|
providedIn: 'root'
|
@@ -12974,10 +12974,10 @@ class DepreciationService extends RestService$1 {
|
|
12974
12974
|
this.refreshCache();
|
12975
12975
|
});
|
12976
12976
|
}
|
12977
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12978
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12977
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12978
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
12979
12979
|
}
|
12980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12980
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationService, decorators: [{
|
12981
12981
|
type: Injectable,
|
12982
12982
|
args: [{
|
12983
12983
|
providedIn: 'root'
|
@@ -12999,10 +12999,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
12999
12999
|
this.endpointUri = 'depreciation-capital-projects';
|
13000
13000
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13001
13001
|
}
|
13002
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13003
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13002
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13003
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
13004
13004
|
}
|
13005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13005
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
13006
13006
|
type: Injectable,
|
13007
13007
|
args: [{
|
13008
13008
|
providedIn: 'root'
|
@@ -13028,10 +13028,10 @@ class DocumentFolderService extends RestService$1 {
|
|
13028
13028
|
this.modelClass = DocumentFolder;
|
13029
13029
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
13030
13030
|
}
|
13031
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13032
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13031
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13032
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
13033
13033
|
}
|
13034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13034
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentFolderService, decorators: [{
|
13035
13035
|
type: Injectable,
|
13036
13036
|
args: [{
|
13037
13037
|
providedIn: 'root'
|
@@ -13046,10 +13046,10 @@ class DocumentService extends RestService$1 {
|
|
13046
13046
|
this.collectionClass = Collection;
|
13047
13047
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
13048
13048
|
}
|
13049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13050
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13049
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13050
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
13051
13051
|
}
|
13052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentService, decorators: [{
|
13053
13053
|
type: Injectable,
|
13054
13054
|
args: [{
|
13055
13055
|
providedIn: 'root'
|
@@ -13131,10 +13131,10 @@ class FacebookService {
|
|
13131
13131
|
});
|
13132
13132
|
});
|
13133
13133
|
}
|
13134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13135
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FacebookService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13135
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
13136
13136
|
}
|
13137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13137
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FacebookService, decorators: [{
|
13138
13138
|
type: Injectable,
|
13139
13139
|
args: [{
|
13140
13140
|
providedIn: 'root'
|
@@ -13201,10 +13201,10 @@ class GoogleService {
|
|
13201
13201
|
logout() {
|
13202
13202
|
google.accounts.id.disableAutoSelect();
|
13203
13203
|
}
|
13204
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13205
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13204
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: GoogleService, deps: [{ token: i1.HttpClient }, { token: ToastService }, { token: i3.JwtService }, { token: i4.Router }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13205
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
13206
13206
|
}
|
13207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: GoogleService, decorators: [{
|
13208
13208
|
type: Injectable,
|
13209
13209
|
args: [{
|
13210
13210
|
providedIn: 'root'
|
@@ -13236,10 +13236,10 @@ class FileService extends RestService$1 {
|
|
13236
13236
|
download(file) {
|
13237
13237
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
13238
13238
|
}
|
13239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13239
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13240
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
13241
13241
|
}
|
13242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13242
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FileService, decorators: [{
|
13243
13243
|
type: Injectable,
|
13244
13244
|
args: [{
|
13245
13245
|
providedIn: 'root'
|
@@ -13329,10 +13329,10 @@ class ClientInviteService extends RestService$1 {
|
|
13329
13329
|
}
|
13330
13330
|
});
|
13331
13331
|
}
|
13332
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13333
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13332
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13333
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
13334
13334
|
}
|
13335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13335
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientInviteService, decorators: [{
|
13336
13336
|
type: Injectable,
|
13337
13337
|
args: [{
|
13338
13338
|
providedIn: 'root'
|
@@ -13422,10 +13422,10 @@ class ClientMovementService extends RestService$1 {
|
|
13422
13422
|
// this.updateCache([clientMovement], 'delete');
|
13423
13423
|
}));
|
13424
13424
|
}
|
13425
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13426
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13425
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13426
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
13427
13427
|
}
|
13428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementService, decorators: [{
|
13429
13429
|
type: Injectable,
|
13430
13430
|
args: [{
|
13431
13431
|
providedIn: 'root'
|
@@ -13486,10 +13486,10 @@ class EmployeeService extends RestService$1 {
|
|
13486
13486
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
13487
13487
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
13488
13488
|
}
|
13489
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13490
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13489
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13490
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
13491
13491
|
}
|
13492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeService, decorators: [{
|
13493
13493
|
type: Injectable,
|
13494
13494
|
args: [{
|
13495
13495
|
providedIn: 'root'
|
@@ -13550,10 +13550,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
13550
13550
|
return updatedInvite;
|
13551
13551
|
}));
|
13552
13552
|
}
|
13553
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13554
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13553
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13554
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
13555
13555
|
}
|
13556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13556
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
13557
13557
|
type: Injectable,
|
13558
13558
|
args: [{
|
13559
13559
|
providedIn: 'root'
|
@@ -13577,10 +13577,10 @@ class ClientPortfolioReportService {
|
|
13577
13577
|
return new ClientPortfolioReportCollection(clientReports);
|
13578
13578
|
}));
|
13579
13579
|
}
|
13580
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13581
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13580
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientPortfolioReportService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13581
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
13582
13582
|
}
|
13583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
13584
13584
|
type: Injectable,
|
13585
13585
|
args: [{
|
13586
13586
|
providedIn: 'root'
|
@@ -13634,10 +13634,10 @@ class FirmService {
|
|
13634
13634
|
getByType(type) {
|
13635
13635
|
return this.getAll().pipe(map((firms) => firms.filter((firm) => firm.type === type)));
|
13636
13636
|
}
|
13637
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13638
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13638
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
13639
13639
|
}
|
13640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13640
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmService, decorators: [{
|
13641
13641
|
type: Injectable,
|
13642
13642
|
args: [{
|
13643
13643
|
providedIn: 'root'
|
@@ -13655,10 +13655,10 @@ class FirmBranchService extends RestService$1 {
|
|
13655
13655
|
this.collectionClass = (Collection);
|
13656
13656
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13657
13657
|
}
|
13658
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13659
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13658
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13659
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
13660
13660
|
}
|
13661
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13661
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmBranchService, decorators: [{
|
13662
13662
|
type: Injectable,
|
13663
13663
|
args: [{
|
13664
13664
|
providedIn: 'root'
|
@@ -13899,10 +13899,10 @@ class RestService {
|
|
13899
13899
|
getCache() {
|
13900
13900
|
return clone(this.cache);
|
13901
13901
|
}
|
13902
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13903
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13902
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13903
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
13904
13904
|
}
|
13905
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, decorators: [{
|
13906
13906
|
type: Injectable,
|
13907
13907
|
args: [{
|
13908
13908
|
providedIn: 'root'
|
@@ -13977,10 +13977,10 @@ class IncomeSourceForecastService extends RestService {
|
|
13977
13977
|
return incomeSource.incomeSourceForecasts;
|
13978
13978
|
}).flat();
|
13979
13979
|
}
|
13980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13981
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
13982
13982
|
}
|
13983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
13984
13984
|
type: Injectable,
|
13985
13985
|
args: [{
|
13986
13986
|
providedIn: 'root'
|
@@ -14054,10 +14054,10 @@ class SalaryForecastService extends RestService {
|
|
14054
14054
|
return incomeSource.salaryForecasts;
|
14055
14055
|
}).flat();
|
14056
14056
|
}
|
14057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14058
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14058
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
14059
14059
|
}
|
14060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SalaryForecastService, decorators: [{
|
14061
14061
|
type: Injectable,
|
14062
14062
|
args: [{
|
14063
14063
|
providedIn: 'root'
|
@@ -14139,10 +14139,10 @@ class SoleForecastService extends RestService {
|
|
14139
14139
|
this.refreshCache();
|
14140
14140
|
});
|
14141
14141
|
}
|
14142
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14143
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14142
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14143
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
14144
14144
|
}
|
14145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14145
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleForecastService, decorators: [{
|
14146
14146
|
type: Injectable,
|
14147
14147
|
args: [{
|
14148
14148
|
providedIn: 'root'
|
@@ -14225,10 +14225,10 @@ class IncomeSourceService extends RestService {
|
|
14225
14225
|
this.refreshCache();
|
14226
14226
|
});
|
14227
14227
|
}
|
14228
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14229
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14228
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14229
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
14230
14230
|
}
|
14231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceService, decorators: [{
|
14232
14232
|
type: Injectable,
|
14233
14233
|
args: [{
|
14234
14234
|
providedIn: 'root'
|
@@ -14301,10 +14301,10 @@ class BorrowingExpenseService {
|
|
14301
14301
|
return combinedBorrowingExpenses;
|
14302
14302
|
}));
|
14303
14303
|
}
|
14304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14305
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingExpenseService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14305
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
14306
14306
|
}
|
14307
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
14308
14308
|
type: Injectable,
|
14309
14309
|
args: [{
|
14310
14310
|
providedIn: 'root'
|
@@ -14388,10 +14388,10 @@ class LoanService extends RestService$1 {
|
|
14388
14388
|
delete(loan) {
|
14389
14389
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
14390
14390
|
}
|
14391
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14392
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14392
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
14393
14393
|
}
|
14394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: LoanService, decorators: [{
|
14395
14395
|
type: Injectable,
|
14396
14396
|
args: [{
|
14397
14397
|
providedIn: 'root'
|
@@ -14417,10 +14417,10 @@ class BorrowingReportService extends RestService$1 {
|
|
14417
14417
|
this.collectionClass = Collection;
|
14418
14418
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14419
14419
|
}
|
14420
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14421
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14421
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
14422
14422
|
}
|
14423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingReportService, decorators: [{
|
14424
14424
|
type: Injectable,
|
14425
14425
|
args: [{
|
14426
14426
|
providedIn: 'root'
|
@@ -14445,10 +14445,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
14445
14445
|
this.endpointUri = 'properties/categories';
|
14446
14446
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14447
14447
|
}
|
14448
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14449
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14448
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14449
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
14450
14450
|
}
|
14451
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14451
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
14452
14452
|
type: Injectable,
|
14453
14453
|
args: [{
|
14454
14454
|
providedIn: 'root'
|
@@ -14470,10 +14470,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
14470
14470
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
14471
14471
|
this.listenCSE(PropertyCategoryMovement, this.refreshCache);
|
14472
14472
|
}
|
14473
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14474
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14473
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14474
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
14475
14475
|
}
|
14476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14476
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
14477
14477
|
type: Injectable,
|
14478
14478
|
args: [{
|
14479
14479
|
providedIn: 'root'
|
@@ -14505,10 +14505,10 @@ class PropertyDocumentService extends RestService$1 {
|
|
14505
14505
|
postFiles(property, files) {
|
14506
14506
|
return this.postParallel(files.map(file => plainToClass(PropertyDocument, { file, property })));
|
14507
14507
|
}
|
14508
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14509
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14509
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyDocumentService, providedIn: 'root' }); }
|
14510
14510
|
}
|
14511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyDocumentService, decorators: [{
|
14512
14512
|
type: Injectable,
|
14513
14513
|
args: [{
|
14514
14514
|
providedIn: 'root'
|
@@ -14586,10 +14586,10 @@ class TaxExemptionService extends DataService {
|
|
14586
14586
|
this.collectionClass = TaxExemptionCollection;
|
14587
14587
|
this.setCache(TaxExemptions);
|
14588
14588
|
}
|
14589
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14590
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14589
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14590
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
14591
14591
|
}
|
14592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14592
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxExemptionService, decorators: [{
|
14593
14593
|
type: Injectable,
|
14594
14594
|
args: [{
|
14595
14595
|
providedIn: 'root'
|
@@ -14605,10 +14605,10 @@ class PropertySaleService extends RestService$1 {
|
|
14605
14605
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14606
14606
|
this.roles = [UserRolesEnum.PROPERTY_TANK];
|
14607
14607
|
}
|
14608
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14609
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14608
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14609
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
14610
14610
|
}
|
14611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14611
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertySaleService, decorators: [{
|
14612
14612
|
type: Injectable,
|
14613
14613
|
args: [{
|
14614
14614
|
providedIn: 'root'
|
@@ -14662,10 +14662,10 @@ class PropertyShareService extends RestService$1 {
|
|
14662
14662
|
listenSalesChanges() {
|
14663
14663
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
14664
14664
|
}
|
14665
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14666
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14665
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14666
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
14667
14667
|
}
|
14668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyShareService, decorators: [{
|
14669
14669
|
type: Injectable,
|
14670
14670
|
args: [{
|
14671
14671
|
providedIn: 'root'
|
@@ -14684,10 +14684,10 @@ class PropertyValuationService extends RestService$1 {
|
|
14684
14684
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
14685
14685
|
this.useBackendError = true;
|
14686
14686
|
}
|
14687
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14688
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14687
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14688
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
14689
14689
|
}
|
14690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14690
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyValuationService, decorators: [{
|
14691
14691
|
type: Injectable,
|
14692
14692
|
args: [{
|
14693
14693
|
providedIn: 'root'
|
@@ -14831,10 +14831,10 @@ class PropertyService extends RestService$1 {
|
|
14831
14831
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
14832
14832
|
}));
|
14833
14833
|
}
|
14834
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14835
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14834
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14835
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
14836
14836
|
}
|
14837
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14837
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyService, decorators: [{
|
14838
14838
|
type: Injectable,
|
14839
14839
|
args: [{
|
14840
14840
|
providedIn: 'root'
|
@@ -14891,10 +14891,10 @@ class ServiceNotificationService extends RestService {
|
|
14891
14891
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
14892
14892
|
});
|
14893
14893
|
}
|
14894
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14895
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14894
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceNotificationService, deps: [{ token: EventDispatcherService }, { token: 'environment' }, { token: ToastService }, { token: SseService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14895
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
14896
14896
|
}
|
14897
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14897
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
14898
14898
|
type: Injectable,
|
14899
14899
|
args: [{
|
14900
14900
|
providedIn: 'root'
|
@@ -14917,10 +14917,10 @@ class SoleBusinessService extends RestService$1 {
|
|
14917
14917
|
this.endpointUri = 'sole-businesses';
|
14918
14918
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
14919
14919
|
}
|
14920
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14921
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14920
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14921
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
14922
14922
|
}
|
14923
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14923
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessService, decorators: [{
|
14924
14924
|
type: Injectable,
|
14925
14925
|
args: [{
|
14926
14926
|
providedIn: 'root'
|
@@ -14933,10 +14933,10 @@ class SoleBusinessActivityService extends RestService {
|
|
14933
14933
|
this.modelClass = SoleBusinessActivity;
|
14934
14934
|
this.url = 'sole-business-activities';
|
14935
14935
|
}
|
14936
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14937
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14936
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14937
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
14938
14938
|
}
|
14939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14939
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
14940
14940
|
type: Injectable,
|
14941
14941
|
args: [{
|
14942
14942
|
providedIn: 'root'
|
@@ -14965,10 +14965,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
14965
14965
|
this.refreshCache();
|
14966
14966
|
});
|
14967
14967
|
}
|
14968
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14969
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14968
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14969
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
14970
14970
|
}
|
14971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14971
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
14972
14972
|
type: Injectable,
|
14973
14973
|
args: [{
|
14974
14974
|
providedIn: 'root'
|
@@ -14987,10 +14987,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
14987
14987
|
this.modelClass = SoleBusinessLossOffsetRule;
|
14988
14988
|
this.url = 'sole-business-loss-offset-rules';
|
14989
14989
|
}
|
14990
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14991
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14990
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14991
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
14992
14992
|
}
|
14993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14993
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
14994
14994
|
type: Injectable,
|
14995
14995
|
args: [{
|
14996
14996
|
providedIn: 'root'
|
@@ -15003,10 +15003,10 @@ class SoleContactService extends RestService {
|
|
15003
15003
|
this.modelClass = SoleContact;
|
15004
15004
|
this.url = 'sole-contacts';
|
15005
15005
|
}
|
15006
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15007
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15006
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15007
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
15008
15008
|
}
|
15009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15009
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleContactService, decorators: [{
|
15010
15010
|
type: Injectable,
|
15011
15011
|
args: [{
|
15012
15012
|
providedIn: 'root'
|
@@ -15062,10 +15062,10 @@ class SoleDepreciationMethodService {
|
|
15062
15062
|
this.get().subscribe();
|
15063
15063
|
});
|
15064
15064
|
}
|
15065
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15066
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15065
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDepreciationMethodService, deps: [{ token: i1.HttpClient }, { token: 'environment' }, { token: EventDispatcherService }, { token: ToastService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15066
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
|
15067
15067
|
}
|
15068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
|
15069
15069
|
type: Injectable,
|
15070
15070
|
args: [{
|
15071
15071
|
providedIn: 'root'
|
@@ -15090,10 +15090,10 @@ class SoleDetailsService extends RestService$1 {
|
|
15090
15090
|
get() {
|
15091
15091
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
15092
15092
|
}
|
15093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15094
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15093
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15094
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
15095
15095
|
}
|
15096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsService, decorators: [{
|
15097
15097
|
type: Injectable,
|
15098
15098
|
args: [{
|
15099
15099
|
providedIn: 'root'
|
@@ -15127,10 +15127,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
15127
15127
|
}
|
15128
15128
|
return this.cache.last.number + 1;
|
15129
15129
|
}
|
15130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15131
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15131
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
15132
15132
|
}
|
15133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
15134
15134
|
type: Injectable,
|
15135
15135
|
args: [{
|
15136
15136
|
providedIn: 'root'
|
@@ -15146,10 +15146,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
15146
15146
|
this.modelClass = SoleInvoiceTemplate;
|
15147
15147
|
this.url = 'sole-invoice-templates';
|
15148
15148
|
}
|
15149
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15150
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15149
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15150
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
15151
15151
|
}
|
15152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15152
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
15153
15153
|
type: Injectable,
|
15154
15154
|
args: [{
|
15155
15155
|
providedIn: 'root'
|
@@ -15170,10 +15170,10 @@ class BasReportService extends RestService {
|
|
15170
15170
|
this.modelClass = BasReport;
|
15171
15171
|
this.url = 'bas-reports';
|
15172
15172
|
}
|
15173
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15174
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15174
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
15175
15175
|
}
|
15176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15176
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasReportService, decorators: [{
|
15177
15177
|
type: Injectable,
|
15178
15178
|
args: [{
|
15179
15179
|
providedIn: 'root'
|
@@ -15197,10 +15197,10 @@ class ServicePaymentService extends RestService$1 {
|
|
15197
15197
|
}
|
15198
15198
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
15199
15199
|
}
|
15200
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15201
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15200
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15201
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
15202
15202
|
}
|
15203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentService, decorators: [{
|
15204
15204
|
type: Injectable,
|
15205
15205
|
args: [{
|
15206
15206
|
providedIn: 'root'
|
@@ -15232,10 +15232,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
15232
15232
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
15233
15233
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
15234
15234
|
}
|
15235
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15236
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15235
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15236
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
15237
15237
|
}
|
15238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15238
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
15239
15239
|
type: Injectable,
|
15240
15240
|
args: [{
|
15241
15241
|
providedIn: 'root'
|
@@ -15256,10 +15256,10 @@ class ServicePriceService extends RestService$1 {
|
|
15256
15256
|
this.collectionClass = ServicePriceCollection;
|
15257
15257
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15258
15258
|
}
|
15259
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15260
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15260
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
15261
15261
|
}
|
15262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePriceService, decorators: [{
|
15263
15263
|
type: Injectable,
|
15264
15264
|
args: [{
|
15265
15265
|
providedIn: 'root'
|
@@ -15344,10 +15344,10 @@ class SubscriptionService extends RestService$1 {
|
|
15344
15344
|
get(path = this.apiUrl) {
|
15345
15345
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
15346
15346
|
}
|
15347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15348
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15347
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SubscriptionService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15348
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
15349
15349
|
}
|
15350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SubscriptionService, decorators: [{
|
15351
15351
|
type: Injectable,
|
15352
15352
|
args: [{
|
15353
15353
|
providedIn: 'root'
|
@@ -15365,10 +15365,10 @@ class ServiceProductService extends RestService$1 {
|
|
15365
15365
|
this.endpointUri = 'service-products';
|
15366
15366
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15367
15367
|
}
|
15368
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15369
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15368
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15369
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
15370
15370
|
}
|
15371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15371
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceProductService, decorators: [{
|
15372
15372
|
type: Injectable,
|
15373
15373
|
args: [{
|
15374
15374
|
providedIn: 'root'
|
@@ -15504,10 +15504,10 @@ class TaxReviewHistoryService extends RestService {
|
|
15504
15504
|
this.updateCache();
|
15505
15505
|
});
|
15506
15506
|
}
|
15507
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15508
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15507
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15508
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
15509
15509
|
}
|
15510
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
15511
15511
|
type: Injectable,
|
15512
15512
|
args: [{
|
15513
15513
|
providedIn: 'root'
|
@@ -15600,10 +15600,10 @@ class TaxReviewService extends RestService {
|
|
15600
15600
|
}
|
15601
15601
|
});
|
15602
15602
|
}
|
15603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15604
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15604
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
15605
15605
|
}
|
15606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewService, decorators: [{
|
15607
15607
|
type: Injectable,
|
15608
15608
|
args: [{
|
15609
15609
|
providedIn: 'root'
|
@@ -15934,10 +15934,10 @@ class TaxSummaryService {
|
|
15934
15934
|
this.getForecast().subscribe();
|
15935
15935
|
});
|
15936
15936
|
}
|
15937
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15938
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15937
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxSummaryService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15938
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
15939
15939
|
}
|
15940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15940
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxSummaryService, decorators: [{
|
15941
15941
|
type: Injectable,
|
15942
15942
|
args: [{
|
15943
15943
|
providedIn: 'root'
|
@@ -15958,10 +15958,10 @@ class AllocationRuleService extends RestService$1 {
|
|
15958
15958
|
getCustomHttpErrorMessages() {
|
15959
15959
|
return { 422: 'You can only have 10 conditions in a rule' };
|
15960
15960
|
}
|
15961
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15962
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15961
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15962
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
15963
15963
|
}
|
15964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AllocationRuleService, decorators: [{
|
15965
15965
|
type: Injectable,
|
15966
15966
|
args: [{
|
15967
15967
|
providedIn: 'root'
|
@@ -16066,10 +16066,10 @@ class TransactionAllocationService extends RestService {
|
|
16066
16066
|
}
|
16067
16067
|
});
|
16068
16068
|
}
|
16069
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16070
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16069
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16070
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
16071
16071
|
}
|
16072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16072
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
16073
16073
|
type: Injectable,
|
16074
16074
|
args: [{
|
16075
16075
|
providedIn: 'root'
|
@@ -16321,10 +16321,10 @@ class TransactionService extends RestService {
|
|
16321
16321
|
}
|
16322
16322
|
});
|
16323
16323
|
}
|
16324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16325
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16324
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionService, deps: [{ token: i1.HttpClient }, { token: EventDispatcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16325
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
16326
16326
|
}
|
16327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionService, decorators: [{
|
16328
16328
|
type: Injectable,
|
16329
16329
|
args: [{
|
16330
16330
|
providedIn: 'root'
|
@@ -16350,10 +16350,10 @@ class PriorTransactionService extends RestService$1 {
|
|
16350
16350
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
16351
16351
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
16352
16352
|
}
|
16353
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16354
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16353
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16354
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
16355
16355
|
}
|
16356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PriorTransactionService, decorators: [{
|
16357
16357
|
type: Injectable,
|
16358
16358
|
args: [{
|
16359
16359
|
providedIn: 'root'
|
@@ -16375,10 +16375,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
16375
16375
|
this.endpointUri = 'invoices/transactions';
|
16376
16376
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16377
16377
|
}
|
16378
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16379
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16378
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16379
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
16380
16380
|
}
|
16381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16381
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
16382
16382
|
type: Injectable,
|
16383
16383
|
args: [{
|
16384
16384
|
providedIn: 'root'
|
@@ -16402,10 +16402,10 @@ class YoutubeService {
|
|
16402
16402
|
title: item.snippet.title
|
16403
16403
|
}))));
|
16404
16404
|
}
|
16405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16406
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16405
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: YoutubeService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16406
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
16407
16407
|
}
|
16408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: YoutubeService, decorators: [{
|
16409
16409
|
type: Injectable,
|
16410
16410
|
args: [{
|
16411
16411
|
providedIn: 'root'
|
@@ -16425,10 +16425,10 @@ class VehicleService extends RestService$1 {
|
|
16425
16425
|
this.collectionClass = (Collection);
|
16426
16426
|
this.modelClass = Vehicle;
|
16427
16427
|
}
|
16428
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16429
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16428
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16429
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
16430
16430
|
}
|
16431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleService, decorators: [{
|
16432
16432
|
type: Injectable,
|
16433
16433
|
args: [{
|
16434
16434
|
providedIn: 'root'
|
@@ -16458,10 +16458,10 @@ class VehicleClaimService extends RestService$1 {
|
|
16458
16458
|
this.refreshCache();
|
16459
16459
|
});
|
16460
16460
|
}
|
16461
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16462
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16461
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16462
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
16463
16463
|
}
|
16464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimService, decorators: [{
|
16465
16465
|
type: Injectable,
|
16466
16466
|
args: [{
|
16467
16467
|
providedIn: 'root'
|
@@ -16523,10 +16523,10 @@ class VehicleClaimDetailsService {
|
|
16523
16523
|
const vehicleClaimDetails = plainToClass(VehicleClaimDetails, Object.assign({}, this.cache, { isManual: true }));
|
16524
16524
|
this.update(vehicleClaimDetails).subscribe();
|
16525
16525
|
}
|
16526
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16527
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16526
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimDetailsService, deps: [{ token: 'environment' }, { token: i1.HttpClient }, { token: EventDispatcherService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16527
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
|
16528
16528
|
}
|
16529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
|
16530
16530
|
type: Injectable,
|
16531
16531
|
args: [{
|
16532
16532
|
providedIn: 'root'
|
@@ -16547,10 +16547,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
16547
16547
|
this.collectionClass = VehicleLogbookCollection;
|
16548
16548
|
this.modelClass = VehicleLogbook;
|
16549
16549
|
}
|
16550
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16551
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16550
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16551
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
16552
16552
|
}
|
16553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
16554
16554
|
type: Injectable,
|
16555
16555
|
args: [{
|
16556
16556
|
providedIn: 'root'
|
@@ -16573,10 +16573,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
16573
16573
|
this.endpointUri = 'annual-client-details';
|
16574
16574
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
16575
16575
|
}
|
16576
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16577
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16576
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16577
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
16578
16578
|
}
|
16579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
16580
16580
|
type: Injectable,
|
16581
16581
|
args: [{
|
16582
16582
|
providedIn: 'root'
|
@@ -16606,10 +16606,10 @@ class OccupationService {
|
|
16606
16606
|
}
|
16607
16607
|
return this.occupationsSubject.asObservable();
|
16608
16608
|
}
|
16609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16610
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16609
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: OccupationService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16610
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
16611
16611
|
}
|
16612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: OccupationService, decorators: [{
|
16613
16613
|
type: Injectable,
|
16614
16614
|
args: [{
|
16615
16615
|
providedIn: 'root'
|
@@ -16631,10 +16631,10 @@ class ClientCouponService extends RestService$1 {
|
|
16631
16631
|
this.endpointUri = 'users/current/promo-code';
|
16632
16632
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16633
16633
|
}
|
16634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16635
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16634
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16635
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
16636
16636
|
}
|
16637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientCouponService, decorators: [{
|
16638
16638
|
type: Injectable,
|
16639
16639
|
args: [{
|
16640
16640
|
providedIn: 'root'
|
@@ -16649,10 +16649,10 @@ class CapitalLossService extends RestService$1 {
|
|
16649
16649
|
this.collectionClass = (Collection);
|
16650
16650
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
16651
16651
|
}
|
16652
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16653
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16652
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16653
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
16654
16654
|
}
|
16655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16655
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CapitalLossService, decorators: [{
|
16656
16656
|
type: Injectable,
|
16657
16657
|
args: [{
|
16658
16658
|
providedIn: 'root'
|
@@ -16715,10 +16715,10 @@ class UserEventSettingService extends RestService$1 {
|
|
16715
16715
|
this.endpointUri = 'user-event-settings';
|
16716
16716
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
16717
16717
|
}
|
16718
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16719
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16718
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16719
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
16720
16720
|
}
|
16721
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventSettingService, decorators: [{
|
16722
16722
|
type: Injectable,
|
16723
16723
|
args: [{
|
16724
16724
|
providedIn: 'root'
|
@@ -16733,10 +16733,10 @@ class UserEventTypeService extends RestService$1 {
|
|
16733
16733
|
this.endpointUri = 'user-event-types';
|
16734
16734
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16735
16735
|
}
|
16736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16737
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16736
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16737
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
16738
16738
|
}
|
16739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16739
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventTypeService, decorators: [{
|
16740
16740
|
type: Injectable,
|
16741
16741
|
args: [{
|
16742
16742
|
providedIn: 'root'
|
@@ -16763,10 +16763,10 @@ class UsersInviteService extends RestService {
|
|
16763
16763
|
this.modelClass = RegistrationInvite;
|
16764
16764
|
this.url = 'users/invite';
|
16765
16765
|
}
|
16766
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16767
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16766
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16767
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
16768
16768
|
}
|
16769
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16769
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UsersInviteService, decorators: [{
|
16770
16770
|
type: Injectable,
|
16771
16771
|
args: [{
|
16772
16772
|
providedIn: 'root'
|
@@ -16881,10 +16881,10 @@ class UserService extends RestService$1 {
|
|
16881
16881
|
this.setCache([user], true);
|
16882
16882
|
}, ['post', 'put']);
|
16883
16883
|
}
|
16884
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16885
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16884
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16885
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
16886
16886
|
}
|
16887
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16887
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserService, decorators: [{
|
16888
16888
|
type: Injectable,
|
16889
16889
|
args: [{
|
16890
16890
|
providedIn: 'root'
|
@@ -16905,10 +16905,10 @@ class FinancialYearService {
|
|
16905
16905
|
window.location.reload();
|
16906
16906
|
}));
|
16907
16907
|
}
|
16908
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16909
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16908
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16909
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
16910
16910
|
}
|
16911
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16911
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearService, decorators: [{
|
16912
16912
|
type: Injectable,
|
16913
16913
|
args: [{
|
16914
16914
|
providedIn: 'root'
|
@@ -16952,10 +16952,10 @@ class MfaDetailsService extends RestService$1 {
|
|
16952
16952
|
return mfaDetails;
|
16953
16953
|
}));
|
16954
16954
|
}
|
16955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16956
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16955
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16956
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
16957
16957
|
}
|
16958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16958
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MfaDetailsService, decorators: [{
|
16959
16959
|
type: Injectable,
|
16960
16960
|
args: [{
|
16961
16961
|
providedIn: 'root'
|
@@ -16992,10 +16992,10 @@ class HoldingTradeService extends RestService$1 {
|
|
16992
16992
|
}
|
16993
16993
|
});
|
16994
16994
|
}
|
16995
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16996
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16995
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16996
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
16997
16997
|
}
|
16998
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeService, decorators: [{
|
16999
16999
|
type: Injectable,
|
17000
17000
|
args: [{
|
17001
17001
|
providedIn: 'root'
|
@@ -17032,10 +17032,10 @@ class HoldingTypeService extends RestService$1 {
|
|
17032
17032
|
}
|
17033
17033
|
});
|
17034
17034
|
}
|
17035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17036
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17035
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17036
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
17037
17037
|
}
|
17038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeService, decorators: [{
|
17039
17039
|
type: Injectable,
|
17040
17040
|
args: [{
|
17041
17041
|
providedIn: 'root'
|
@@ -17054,10 +17054,10 @@ class HoldingSaleService extends RestService$1 {
|
|
17054
17054
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17055
17055
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
17056
17056
|
}
|
17057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17058
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17057
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17058
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
17059
17059
|
}
|
17060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17060
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingSaleService, decorators: [{
|
17061
17061
|
type: Injectable,
|
17062
17062
|
args: [{
|
17063
17063
|
providedIn: 'root'
|
@@ -17099,10 +17099,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
17099
17099
|
return throwError(error);
|
17100
17100
|
}));
|
17101
17101
|
}
|
17102
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17103
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17103
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
17104
17104
|
}
|
17105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
17106
17106
|
type: Injectable,
|
17107
17107
|
args: [{
|
17108
17108
|
providedIn: 'root'
|
@@ -17196,10 +17196,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
17196
17196
|
this.collectionClass = Collection;
|
17197
17197
|
this.setCache(HoldingTypeExchanges);
|
17198
17198
|
}
|
17199
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17200
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17199
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17200
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
17201
17201
|
}
|
17202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17202
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
17203
17203
|
type: Injectable,
|
17204
17204
|
args: [{
|
17205
17205
|
providedIn: 'root'
|
@@ -17233,10 +17233,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
17233
17233
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17234
17234
|
this.roles = [UserRolesEnum.WORK_TANK, UserRolesEnum.SOLE_TANK];
|
17235
17235
|
}
|
17236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17237
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17237
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
17238
17238
|
}
|
17239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
17240
17240
|
type: Injectable,
|
17241
17241
|
args: [{
|
17242
17242
|
providedIn: 'root'
|
@@ -17264,10 +17264,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
17264
17264
|
listenEvents() {
|
17265
17265
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
17266
17266
|
}
|
17267
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17268
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17267
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17268
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
17269
17269
|
}
|
17270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
17271
17271
|
type: Injectable,
|
17272
17272
|
args: [{
|
17273
17273
|
providedIn: 'root'
|
@@ -17307,10 +17307,10 @@ class AussieService extends RestService$1 {
|
|
17307
17307
|
postAppointment() {
|
17308
17308
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
17309
17309
|
}
|
17310
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17311
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17310
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17311
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
17312
17312
|
}
|
17313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieService, decorators: [{
|
17314
17314
|
type: Injectable,
|
17315
17315
|
args: [{
|
17316
17316
|
providedIn: 'root'
|
@@ -17334,10 +17334,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
17334
17334
|
reconnect(sharesightDetails) {
|
17335
17335
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
17336
17336
|
}
|
17337
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17338
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17337
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17338
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
17339
17339
|
}
|
17340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17340
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
17341
17341
|
type: Injectable,
|
17342
17342
|
args: [{
|
17343
17343
|
providedIn: 'root'
|
@@ -17355,10 +17355,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
17355
17355
|
getExternal() {
|
17356
17356
|
return this.fetch(`${this.apiUrl}/external`, false);
|
17357
17357
|
}
|
17358
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17359
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17358
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17359
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
17360
17360
|
}
|
17361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
17362
17362
|
type: Injectable,
|
17363
17363
|
args: [{
|
17364
17364
|
providedIn: 'root'
|
@@ -17435,10 +17435,10 @@ class IncomeSourceTypeService extends DataService {
|
|
17435
17435
|
this.collectionClass = Collection;
|
17436
17436
|
this.setCache(IncomeSourceTypes);
|
17437
17437
|
}
|
17438
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17439
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17438
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17439
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
17440
17440
|
}
|
17441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17441
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
17442
17442
|
type: Injectable,
|
17443
17443
|
args: [{
|
17444
17444
|
providedIn: 'root'
|
@@ -17452,10 +17452,10 @@ class ChartAccountsValueService extends DataService {
|
|
17452
17452
|
this.collectionClass = ChartAccountsValueCollection;
|
17453
17453
|
this.setCache(ChartAccountsValues);
|
17454
17454
|
}
|
17455
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17456
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17455
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17456
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
17457
17457
|
}
|
17458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
17459
17459
|
type: Injectable,
|
17460
17460
|
args: [{
|
17461
17461
|
providedIn: 'root'
|
@@ -19428,10 +19428,10 @@ class TaxReturnItemService extends DataService {
|
|
19428
19428
|
this.collectionClass = Collection;
|
19429
19429
|
this.setCache(TaxReturnItems);
|
19430
19430
|
}
|
19431
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19432
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19431
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19432
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
19433
19433
|
}
|
19434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19434
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
19435
19435
|
type: Injectable,
|
19436
19436
|
args: [{
|
19437
19437
|
providedIn: 'root'
|
@@ -19446,10 +19446,10 @@ class SetupItemService extends RestService$1 {
|
|
19446
19446
|
this.collectionClass = AccountSetupItemCollection;
|
19447
19447
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
19448
19448
|
}
|
19449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19450
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19449
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
19450
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
19451
19451
|
}
|
19452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SetupItemService, decorators: [{
|
19453
19453
|
type: Injectable,
|
19454
19454
|
args: [{
|
19455
19455
|
providedIn: 'root'
|
@@ -19632,10 +19632,10 @@ class AccountSetupService {
|
|
19632
19632
|
getSharesightDetails(importEnabled) {
|
19633
19633
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
19634
19634
|
}
|
19635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19636
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AccountSetupService, deps: [{ token: SetupItemService }, { token: PropertyService }, { token: IncomeSourceService }, { token: BankConnectionService }, { token: BankAccountService }, { token: BankTransactionService }, { token: LoanService }, { token: AllocationRuleService }, { token: TransactionAllocationService }, { token: VehicleClaimService }, { token: HomeOfficeClaimService }, { token: TransactionService }, { token: DepreciationService }, { token: SoleBusinessService }, { token: HoldingTradeService }, { token: UserService }, { token: ClientMovementService }, { token: ClientInviteService }, { token: EmployeeService }, { token: EmployeeInviteService }, { token: FirmService }, { token: SharesightDetailsService }, { token: PropertyShareService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19636
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
19637
19637
|
}
|
19638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AccountSetupService, decorators: [{
|
19639
19639
|
type: Injectable,
|
19640
19640
|
args: [{
|
19641
19641
|
providedIn: 'root'
|
@@ -19644,16 +19644,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
19644
19644
|
|
19645
19645
|
class AdblockService {
|
19646
19646
|
constructor() {
|
19647
|
-
this.isAdBlockDetected = signal(false
|
19647
|
+
this.isAdBlockDetected = signal(false);
|
19648
19648
|
/**
|
19649
19649
|
* do we need to show initial or recurrent notification
|
19650
19650
|
*/
|
19651
|
-
this.isNotificationShown = signal(true
|
19651
|
+
this.isNotificationShown = signal(true);
|
19652
19652
|
/**
|
19653
19653
|
* checkAdBlock is promise based, so we need to know when service is ready
|
19654
19654
|
*/
|
19655
19655
|
this.serviceInitSubject = new Subject();
|
19656
|
-
this.isInitialModalClosed = signal(false
|
19656
|
+
this.isInitialModalClosed = signal(false);
|
19657
19657
|
checkAdBlock().then((isWorking) => {
|
19658
19658
|
this.isAdBlockDetected.set(isWorking);
|
19659
19659
|
this.setNotificationShown(this.getNotificationShown());
|
@@ -19676,10 +19676,10 @@ class AdblockService {
|
|
19676
19676
|
getInitialModalClosed() {
|
19677
19677
|
return JSON.parse(localStorage.getItem('isInitialModalClosed')) || false;
|
19678
19678
|
}
|
19679
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19680
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AdblockService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19680
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AdblockService, providedIn: 'root' }); }
|
19681
19681
|
}
|
19682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AdblockService, decorators: [{
|
19683
19683
|
type: Injectable,
|
19684
19684
|
args: [{
|
19685
19685
|
providedIn: 'root'
|
@@ -19711,10 +19711,10 @@ class UserSwitcherService {
|
|
19711
19711
|
localStorage.removeItem(KEY);
|
19712
19712
|
window.location.replace('/firm/dashboard');
|
19713
19713
|
}
|
19714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19715
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19714
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19715
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
19716
19716
|
}
|
19717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19717
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherService, decorators: [{
|
19718
19718
|
type: Injectable,
|
19719
19719
|
args: [{
|
19720
19720
|
providedIn: 'root'
|
@@ -19755,10 +19755,10 @@ class AssetsService {
|
|
19755
19755
|
delete(entityId, asset) {
|
19756
19756
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
19757
19757
|
}
|
19758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19759
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19758
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AssetsService, deps: [{ token: i1.HttpClient }, { token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19759
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
19760
19760
|
}
|
19761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19761
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AssetsService, decorators: [{
|
19762
19762
|
type: Injectable,
|
19763
19763
|
args: [{
|
19764
19764
|
providedIn: 'root'
|
@@ -19786,10 +19786,10 @@ class BankAccountCalculationService {
|
|
19786
19786
|
getNetPosition(bankAccounts, bankTransactions, allocations) {
|
19787
19787
|
return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
|
19788
19788
|
}
|
19789
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19790
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19789
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19790
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
19791
19791
|
}
|
19792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19792
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
19793
19793
|
type: Injectable,
|
19794
19794
|
args: [{
|
19795
19795
|
providedIn: 'root'
|
@@ -19816,10 +19816,10 @@ class ExportFormatterService {
|
|
19816
19816
|
}
|
19817
19817
|
}));
|
19818
19818
|
}
|
19819
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19820
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19819
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ExportFormatterService, deps: [{ token: i1$1.CurrencyPipe }, { token: i1$1.PercentPipe }, { token: i1$1.DatePipe }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19820
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
19821
19821
|
}
|
19822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ExportFormatterService, decorators: [{
|
19823
19823
|
type: Injectable,
|
19824
19824
|
args: [{
|
19825
19825
|
providedIn: 'root'
|
@@ -19839,10 +19839,10 @@ class HeaderTitleService {
|
|
19839
19839
|
return route;
|
19840
19840
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
19841
19841
|
}
|
19842
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19843
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19842
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HeaderTitleService, deps: [{ token: i4.Router }, { token: i4.ActivatedRoute }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19843
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
19844
19844
|
}
|
19845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HeaderTitleService, decorators: [{
|
19846
19846
|
type: Injectable,
|
19847
19847
|
args: [{
|
19848
19848
|
providedIn: 'root'
|
@@ -19875,10 +19875,10 @@ class IntercomService {
|
|
19875
19875
|
const connectionCredentials = this.initUser(user);
|
19876
19876
|
window.Intercom('boot', connectionCredentials);
|
19877
19877
|
}
|
19878
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19879
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19878
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19879
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
19880
19880
|
}
|
19881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19881
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IntercomService, decorators: [{
|
19882
19882
|
type: Injectable,
|
19883
19883
|
args: [{
|
19884
19884
|
providedIn: 'root'
|
@@ -19948,10 +19948,10 @@ class PdfFromDomElementService {
|
|
19948
19948
|
.outputPdf('blob')
|
19949
19949
|
.then((blob) => new File([blob], filename, { type: 'application/pdf' })));
|
19950
19950
|
}
|
19951
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19952
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19951
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19952
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
19953
19953
|
}
|
19954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19954
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
19955
19955
|
type: Injectable,
|
19956
19956
|
args: [{
|
19957
19957
|
providedIn: 'root'
|
@@ -20044,10 +20044,10 @@ class PdfFromTableService {
|
|
20044
20044
|
.text(description, FILE_SETTINGS.text.positionDescriptionX, FILE_SETTINGS.text.positionDescriptionY)
|
20045
20045
|
.setTextColor(FILE_SETTINGS.text.colorPrimary);
|
20046
20046
|
}
|
20047
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20048
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20047
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20048
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
20049
20049
|
}
|
20050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20050
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromTableService, decorators: [{
|
20051
20051
|
type: Injectable,
|
20052
20052
|
args: [{
|
20053
20053
|
providedIn: 'root'
|
@@ -20085,10 +20085,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
20085
20085
|
});
|
20086
20086
|
return pdf;
|
20087
20087
|
}
|
20088
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20089
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20089
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
20090
20090
|
}
|
20091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20091
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
20092
20092
|
type: Injectable,
|
20093
20093
|
args: [{
|
20094
20094
|
providedIn: 'root'
|
@@ -20126,10 +20126,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
20126
20126
|
});
|
20127
20127
|
return pdf;
|
20128
20128
|
}
|
20129
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20130
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20129
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
20130
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
20131
20131
|
}
|
20132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20132
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
20133
20133
|
type: Injectable,
|
20134
20134
|
args: [{
|
20135
20135
|
providedIn: 'root'
|
@@ -20153,10 +20153,10 @@ class PreloaderService {
|
|
20153
20153
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
20154
20154
|
this.activePreloaders.next(activePreloaders);
|
20155
20155
|
}
|
20156
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20157
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20156
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20157
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
20158
20158
|
}
|
20159
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderService, decorators: [{
|
20160
20160
|
type: Injectable,
|
20161
20161
|
args: [{
|
20162
20162
|
providedIn: 'root'
|
@@ -20182,10 +20182,10 @@ class EquityPositionChartService {
|
|
20182
20182
|
}))
|
20183
20183
|
}))));
|
20184
20184
|
}
|
20185
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20186
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EquityPositionChartService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20186
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
20187
20187
|
}
|
20188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
20189
20189
|
type: Injectable,
|
20190
20190
|
args: [{
|
20191
20191
|
providedIn: 'root'
|
@@ -20356,10 +20356,10 @@ class PropertyCalculationService {
|
|
20356
20356
|
return new Badge('Monitoring performance');
|
20357
20357
|
}
|
20358
20358
|
}
|
20359
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20360
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20359
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20360
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
20361
20361
|
}
|
20362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
20363
20363
|
type: Injectable,
|
20364
20364
|
args: [{
|
20365
20365
|
providedIn: 'root'
|
@@ -20417,10 +20417,10 @@ class PropertyTransactionReportService {
|
|
20417
20417
|
getDepreciations() {
|
20418
20418
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
20419
20419
|
}
|
20420
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20421
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyTransactionReportService, deps: [{ token: PropertyService }, { token: TransactionService }, { token: DepreciationService }, { token: ChartAccountsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20421
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
20422
20422
|
}
|
20423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
20424
20424
|
type: Injectable,
|
20425
20425
|
args: [{
|
20426
20426
|
providedIn: 'root'
|
@@ -20440,10 +20440,10 @@ class CurrentFirmBranchService {
|
|
20440
20440
|
set(firmBranches) {
|
20441
20441
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
20442
20442
|
}
|
20443
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20444
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20443
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20444
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
20445
20445
|
}
|
20446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
20447
20447
|
type: Injectable,
|
20448
20448
|
args: [{
|
20449
20449
|
providedIn: 'root'
|
@@ -20539,10 +20539,10 @@ class XlsxService {
|
|
20539
20539
|
});
|
20540
20540
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
20541
20541
|
}
|
20542
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20543
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20542
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20543
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
20544
20544
|
}
|
20545
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20545
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: XlsxService, decorators: [{
|
20546
20546
|
type: Injectable,
|
20547
20547
|
args: [{
|
20548
20548
|
providedIn: 'root'
|
@@ -20576,10 +20576,10 @@ class UserSwitcherInterceptor {
|
|
20576
20576
|
intercept(request, next) {
|
20577
20577
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
20578
20578
|
}
|
20579
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20580
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20579
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherInterceptor, deps: [{ token: UserSwitcherService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20580
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherInterceptor }); }
|
20581
20581
|
}
|
20582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
20583
20583
|
type: Injectable
|
20584
20584
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
20585
20585
|
type: Inject,
|
@@ -20922,10 +20922,10 @@ class PreloaderInterceptor {
|
|
20922
20922
|
findEndpoint(requestPath) {
|
20923
20923
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
20924
20924
|
}
|
20925
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20926
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20925
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20926
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderInterceptor }); }
|
20927
20927
|
}
|
20928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20928
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
20929
20929
|
type: Injectable
|
20930
20930
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
20931
20931
|
|
@@ -20950,10 +20950,10 @@ class BasiqTokenInterceptor {
|
|
20950
20950
|
}
|
20951
20951
|
});
|
20952
20952
|
}
|
20953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20954
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20953
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20954
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenInterceptor }); }
|
20955
20955
|
}
|
20956
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20956
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
|
20957
20957
|
type: Injectable
|
20958
20958
|
}], ctorParameters: () => [{ type: BasiqTokenService }] });
|
20959
20959
|
|
@@ -20976,10 +20976,10 @@ class BasiqClientIdInterceptor {
|
|
20976
20976
|
url: request.url.replace('null', basiqClientId)
|
20977
20977
|
});
|
20978
20978
|
}
|
20979
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20980
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20979
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20980
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqClientIdInterceptor }); }
|
20981
20981
|
}
|
20982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20982
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
|
20983
20983
|
type: Injectable
|
20984
20984
|
}], ctorParameters: () => [{ type: UserService }] });
|
20985
20985
|
|
@@ -21014,10 +21014,10 @@ class RewardfulInterceptor {
|
|
21014
21014
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
21015
21015
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
21016
21016
|
}
|
21017
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21018
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21018
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RewardfulInterceptor }); }
|
21019
21019
|
}
|
21020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
21021
21021
|
type: Injectable
|
21022
21022
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21023
21023
|
type: Inject,
|
@@ -21046,10 +21046,10 @@ class AussieInterceptor {
|
|
21046
21046
|
}
|
21047
21047
|
});
|
21048
21048
|
}
|
21049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21050
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21049
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieInterceptor, deps: [{ token: AussieService }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21050
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieInterceptor }); }
|
21051
21051
|
}
|
21052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieInterceptor, decorators: [{
|
21053
21053
|
type: Injectable
|
21054
21054
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
21055
21055
|
type: Inject,
|
@@ -21057,9 +21057,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
21057
21057
|
}] }] });
|
21058
21058
|
|
21059
21059
|
class InterceptorsModule {
|
21060
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21061
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
21062
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
21060
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21061
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule }); }
|
21062
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule, providers: [
|
21063
21063
|
{
|
21064
21064
|
provide: HTTP_INTERCEPTORS,
|
21065
21065
|
useClass: CorelogicInterceptor,
|
@@ -21103,7 +21103,7 @@ class InterceptorsModule {
|
|
21103
21103
|
}
|
21104
21104
|
] }); }
|
21105
21105
|
}
|
21106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule, decorators: [{
|
21107
21107
|
type: NgModule,
|
21108
21108
|
args: [{
|
21109
21109
|
providers: [
|
@@ -21156,13 +21156,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
21156
21156
|
* https://angular.io/guide/creating-libraries
|
21157
21157
|
*/
|
21158
21158
|
class CoreModule {
|
21159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21160
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
21159
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21160
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, imports: [CommonModule,
|
21161
21161
|
InterceptorsModule] }); }
|
21162
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
21162
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, imports: [CommonModule,
|
21163
21163
|
InterceptorsModule] }); }
|
21164
21164
|
}
|
21165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, decorators: [{
|
21166
21166
|
type: NgModule,
|
21167
21167
|
args: [{
|
21168
21168
|
declarations: [],
|
@@ -21182,10 +21182,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
21182
21182
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
21183
21183
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
21184
21184
|
}
|
21185
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21186
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
21185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
21186
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
21187
21187
|
}
|
21188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21188
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
21189
21189
|
type: Pipe,
|
21190
21190
|
args: [{
|
21191
21191
|
name: 'appCurrency',
|
@@ -21200,10 +21200,10 @@ class SafeUrlPipe {
|
|
21200
21200
|
transform(url) {
|
21201
21201
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
21202
21202
|
}
|
21203
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21204
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
21203
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$2.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
21204
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
21205
21205
|
}
|
21206
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
21207
21207
|
type: Pipe,
|
21208
21208
|
args: [{
|
21209
21209
|
name: 'safeUrl',
|
@@ -21218,10 +21218,10 @@ class AppPercentPipe {
|
|
21218
21218
|
transform(value, total, floor) {
|
21219
21219
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
21220
21220
|
}
|
21221
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21222
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
21221
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
21222
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
21223
21223
|
}
|
21224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppPercentPipe, decorators: [{
|
21225
21225
|
type: Pipe,
|
21226
21226
|
args: [{
|
21227
21227
|
name: 'percentage',
|
@@ -21595,10 +21595,10 @@ class BusinessResolver {
|
|
21595
21595
|
resolve() {
|
21596
21596
|
return this.soleDetailsService.getFirst();
|
21597
21597
|
}
|
21598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21599
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21598
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21599
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
21600
21600
|
}
|
21601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BusinessResolver, decorators: [{
|
21602
21602
|
type: Injectable,
|
21603
21603
|
args: [{ providedIn: 'root' }]
|
21604
21604
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -21610,10 +21610,10 @@ class SoleDetailsResolver {
|
|
21610
21610
|
resolve() {
|
21611
21611
|
return this.soleDetails.getFirst();
|
21612
21612
|
}
|
21613
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21614
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21613
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21614
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
21615
21615
|
}
|
21616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
21617
21617
|
type: Injectable,
|
21618
21618
|
args: [{ providedIn: 'root' }]
|
21619
21619
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -22415,10 +22415,10 @@ class UniqueEmailValidator {
|
|
22415
22415
|
validate(control) {
|
22416
22416
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
22417
22417
|
}
|
22418
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
22419
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
22418
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22419
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
22420
22420
|
}
|
22421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
22421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
22422
22422
|
type: Injectable,
|
22423
22423
|
args: [{ providedIn: 'root' }]
|
22424
22424
|
}], ctorParameters: () => [{ type: UserService }] });
|
@@ -22500,10 +22500,10 @@ class ClientMovementForm extends AbstractForm {
|
|
22500
22500
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
22501
22501
|
}, clientMovement);
|
22502
22502
|
}
|
22503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
22504
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
22503
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22504
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
22505
22505
|
}
|
22506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
22506
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementForm, decorators: [{
|
22507
22507
|
type: Injectable,
|
22508
22508
|
args: [{
|
22509
22509
|
providedIn: 'root'
|
@@ -22516,10 +22516,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
22516
22516
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
22517
22517
|
}, employeeDetails);
|
22518
22518
|
}
|
22519
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
22520
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
22519
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22520
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
22521
22521
|
}
|
22522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
22522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
22523
22523
|
type: Injectable,
|
22524
22524
|
args: [{
|
22525
22525
|
providedIn: 'root'
|