taxtank-core 2.0.1 → 2.0.3
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 +435 -434
- 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
|
}
|
@@ -5193,6 +5193,15 @@ __decorate([
|
|
5193
5193
|
Type(() => BankAccount)
|
5194
5194
|
], SoleInvoiceTemplate.prototype, "bankAccount", void 0);
|
5195
5195
|
|
5196
|
+
function TransformDate(format = 'YYYY-MM-DD', params = { toPlainOnly: true }) {
|
5197
|
+
return Transform(({ value }) => {
|
5198
|
+
if (!(value instanceof Date)) {
|
5199
|
+
return value;
|
5200
|
+
}
|
5201
|
+
return moment(value).format(format);
|
5202
|
+
}, params);
|
5203
|
+
}
|
5204
|
+
|
5196
5205
|
class VehicleLogbook extends VehicleLogbook$1 {
|
5197
5206
|
get kilometers() {
|
5198
5207
|
return this.odometerEnd - this.odometerStart;
|
@@ -5209,7 +5218,8 @@ class VehicleLogbook extends VehicleLogbook$1 {
|
|
5209
5218
|
}
|
5210
5219
|
}
|
5211
5220
|
__decorate([
|
5212
|
-
Type(() => Date)
|
5221
|
+
Type(() => Date),
|
5222
|
+
TransformDate()
|
5213
5223
|
], VehicleLogbook.prototype, "date", void 0);
|
5214
5224
|
__decorate([
|
5215
5225
|
Type(() => SoleBusiness)
|
@@ -6873,15 +6883,6 @@ var TransactionCategoryEnum;
|
|
6873
6883
|
TransactionCategoryEnum[TransactionCategoryEnum["PERSONAL"] = 3] = "PERSONAL";
|
6874
6884
|
})(TransactionCategoryEnum || (TransactionCategoryEnum = {}));
|
6875
6885
|
|
6876
|
-
function TransformDate(format = 'YYYY-MM-DD', params = { toPlainOnly: true }) {
|
6877
|
-
return Transform(({ value }) => {
|
6878
|
-
if (!(value instanceof Date)) {
|
6879
|
-
return value;
|
6880
|
-
}
|
6881
|
-
return moment(value).format(format);
|
6882
|
-
}, params);
|
6883
|
-
}
|
6884
|
-
|
6885
6886
|
/**
|
6886
6887
|
* @TODO Alex: clarify grouping rules and refactor
|
6887
6888
|
*/
|
@@ -11353,10 +11354,10 @@ class ToastService {
|
|
11353
11354
|
message,
|
11354
11355
|
}));
|
11355
11356
|
}
|
11356
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11357
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ToastService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11358
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ToastService, providedIn: 'root' }); }
|
11358
11359
|
}
|
11359
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11360
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ToastService, decorators: [{
|
11360
11361
|
type: Injectable,
|
11361
11362
|
args: [{
|
11362
11363
|
providedIn: 'root'
|
@@ -11389,10 +11390,10 @@ class CorelogicService {
|
|
11389
11390
|
return throwError(() => error);
|
11390
11391
|
}));
|
11391
11392
|
}
|
11392
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11393
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11393
|
+
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 }); }
|
11394
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicService, providedIn: 'root' }); }
|
11394
11395
|
}
|
11395
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicService, decorators: [{
|
11396
11397
|
type: Injectable,
|
11397
11398
|
args: [{
|
11398
11399
|
providedIn: 'root'
|
@@ -11429,10 +11430,10 @@ class CorelogicInterceptor {
|
|
11429
11430
|
}
|
11430
11431
|
});
|
11431
11432
|
}
|
11432
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11433
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11433
|
+
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 }); }
|
11434
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicInterceptor }); }
|
11434
11435
|
}
|
11435
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11436
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CorelogicInterceptor, decorators: [{
|
11436
11437
|
type: Injectable
|
11437
11438
|
}], ctorParameters: () => [{ type: CorelogicService }, { type: undefined, decorators: [{
|
11438
11439
|
type: Inject,
|
@@ -11468,10 +11469,10 @@ class FinancialYearInterceptor {
|
|
11468
11469
|
}
|
11469
11470
|
return next.handle(clonedReq);
|
11470
11471
|
}
|
11471
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11472
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11472
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11473
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearInterceptor }); }
|
11473
11474
|
}
|
11474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearInterceptor, decorators: [{
|
11475
11476
|
type: Injectable
|
11476
11477
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
11477
11478
|
type: Inject,
|
@@ -11495,10 +11496,10 @@ class AddressService {
|
|
11495
11496
|
}
|
11496
11497
|
return this.countriesSubject.asObservable();
|
11497
11498
|
}
|
11498
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11499
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11499
|
+
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 }); }
|
11500
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AddressService, providedIn: 'root' }); }
|
11500
11501
|
}
|
11501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AddressService, decorators: [{
|
11502
11503
|
type: Injectable,
|
11503
11504
|
args: [{
|
11504
11505
|
providedIn: 'root'
|
@@ -11522,10 +11523,10 @@ class PdfService {
|
|
11522
11523
|
formData.append('landscape', landscape ? '1' : '0');
|
11523
11524
|
return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
|
11524
11525
|
}
|
11525
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11526
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11526
|
+
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 }); }
|
11527
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfService, providedIn: 'root' }); }
|
11527
11528
|
}
|
11528
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11529
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfService, decorators: [{
|
11529
11530
|
type: Injectable,
|
11530
11531
|
args: [{
|
11531
11532
|
providedIn: 'root'
|
@@ -11562,10 +11563,10 @@ class EventDispatcherService {
|
|
11562
11563
|
dispatch2(event) {
|
11563
11564
|
this.eventSubject2.next(event);
|
11564
11565
|
}
|
11565
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11566
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11566
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EventDispatcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11567
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EventDispatcherService, providedIn: 'root' }); }
|
11567
11568
|
}
|
11568
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11569
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EventDispatcherService, decorators: [{
|
11569
11570
|
type: Injectable,
|
11570
11571
|
args: [{
|
11571
11572
|
providedIn: 'root'
|
@@ -11601,10 +11602,10 @@ class SseService {
|
|
11601
11602
|
})
|
11602
11603
|
.pipe(map((messageEvent) => JSON.parse(messageEvent.data)));
|
11603
11604
|
}
|
11604
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11605
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11605
|
+
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 }); }
|
11606
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SseService, providedIn: 'root' }); }
|
11606
11607
|
}
|
11607
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11608
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SseService, decorators: [{
|
11608
11609
|
type: Injectable,
|
11609
11610
|
args: [{
|
11610
11611
|
providedIn: 'root'
|
@@ -11692,10 +11693,10 @@ class DataService {
|
|
11692
11693
|
setCache(data) {
|
11693
11694
|
this.cache = this.createCollectionInstance(this.collectionClass, data);
|
11694
11695
|
}
|
11695
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
11696
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
11696
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DataService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
11697
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DataService, providedIn: 'root' }); }
|
11697
11698
|
}
|
11698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
11699
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DataService, decorators: [{
|
11699
11700
|
type: Injectable,
|
11700
11701
|
args: [{
|
11701
11702
|
providedIn: 'root'
|
@@ -12062,10 +12063,10 @@ let RestService$1 = class RestService extends DataService {
|
|
12062
12063
|
this.handleResponse([change.model], change.method);
|
12063
12064
|
});
|
12064
12065
|
}
|
12065
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12066
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12066
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12067
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
12067
12068
|
};
|
12068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService$1, decorators: [{
|
12069
12070
|
type: Injectable,
|
12070
12071
|
args: [{
|
12071
12072
|
providedIn: 'root'
|
@@ -12205,10 +12206,10 @@ class BankAccountService extends RestService$1 {
|
|
12205
12206
|
}
|
12206
12207
|
});
|
12207
12208
|
}
|
12208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12209
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12209
|
+
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 }); }
|
12210
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountService, providedIn: 'root' }); }
|
12210
12211
|
}
|
12211
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12212
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountService, decorators: [{
|
12212
12213
|
type: Injectable,
|
12213
12214
|
args: [{
|
12214
12215
|
providedIn: 'root'
|
@@ -12313,10 +12314,10 @@ class BankConnectionService extends RestService$1 {
|
|
12313
12314
|
}
|
12314
12315
|
});
|
12315
12316
|
}
|
12316
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12317
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12317
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankConnectionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12318
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankConnectionService, providedIn: 'root' }); }
|
12318
12319
|
}
|
12319
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12320
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankConnectionService, decorators: [{
|
12320
12321
|
type: Injectable,
|
12321
12322
|
args: [{
|
12322
12323
|
providedIn: 'root'
|
@@ -12382,10 +12383,10 @@ class BankTransactionService extends RestService$1 {
|
|
12382
12383
|
}
|
12383
12384
|
});
|
12384
12385
|
}
|
12385
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12386
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12386
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankTransactionService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12387
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankTransactionService, providedIn: 'root' }); }
|
12387
12388
|
}
|
12388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankTransactionService, decorators: [{
|
12389
12390
|
type: Injectable,
|
12390
12391
|
args: [{
|
12391
12392
|
providedIn: 'root'
|
@@ -12419,10 +12420,10 @@ class BasiqTokenService extends RestService$1 {
|
|
12419
12420
|
const now = new Date().getTime();
|
12420
12421
|
return new BasiqToken(tokenResponse['access_token'], new Date(now + tokenResponse['expires_in'] * 1000));
|
12421
12422
|
}
|
12422
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12423
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12423
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12424
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenService, providedIn: 'root' }); }
|
12424
12425
|
}
|
12425
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12426
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenService, decorators: [{
|
12426
12427
|
type: Injectable,
|
12427
12428
|
args: [{
|
12428
12429
|
providedIn: 'root'
|
@@ -12564,10 +12565,10 @@ class BasiqService extends RestService$1 {
|
|
12564
12565
|
}
|
12565
12566
|
});
|
12566
12567
|
}
|
12567
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12568
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12568
|
+
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 }); }
|
12569
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqService, providedIn: 'root' }); }
|
12569
12570
|
}
|
12570
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12571
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqService, decorators: [{
|
12571
12572
|
type: Injectable,
|
12572
12573
|
args: [{
|
12573
12574
|
providedIn: 'root'
|
@@ -12595,10 +12596,10 @@ class BankService extends RestService$1 {
|
|
12595
12596
|
this.endpointUri = 'banks';
|
12596
12597
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
12597
12598
|
}
|
12598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12599
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12600
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankService, providedIn: 'root' }); }
|
12600
12601
|
}
|
12601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankService, decorators: [{
|
12602
12603
|
type: Injectable,
|
12603
12604
|
args: [{
|
12604
12605
|
providedIn: 'root'
|
@@ -12613,10 +12614,10 @@ class BudgetService extends RestService$1 {
|
|
12613
12614
|
this.endpointUri = 'budgets';
|
12614
12615
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12615
12616
|
}
|
12616
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12617
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12617
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BudgetService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12618
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BudgetService, providedIn: 'root' }); }
|
12618
12619
|
}
|
12619
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12620
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BudgetService, decorators: [{
|
12620
12621
|
type: Injectable,
|
12621
12622
|
args: [{
|
12622
12623
|
providedIn: 'root'
|
@@ -12642,10 +12643,10 @@ class ChartAccountsDepreciationService extends RestService$1 {
|
|
12642
12643
|
this.collectionClass = Collection;
|
12643
12644
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
12644
12645
|
}
|
12645
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12646
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12646
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsDepreciationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12647
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsDepreciationService, providedIn: 'root' }); }
|
12647
12648
|
}
|
12648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12649
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsDepreciationService, decorators: [{
|
12649
12650
|
type: Injectable,
|
12650
12651
|
args: [{
|
12651
12652
|
providedIn: 'root'
|
@@ -12684,10 +12685,10 @@ class ChartAccountsService extends RestService$1 {
|
|
12684
12685
|
return headings;
|
12685
12686
|
}));
|
12686
12687
|
}
|
12687
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12688
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12688
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
12689
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsService, providedIn: 'root' }); }
|
12689
12690
|
}
|
12690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsService, decorators: [{
|
12691
12692
|
type: Injectable,
|
12692
12693
|
args: [{
|
12693
12694
|
providedIn: 'root'
|
@@ -12771,10 +12772,10 @@ class ChatService extends RestService$1 {
|
|
12771
12772
|
this.setCache(cache, true);
|
12772
12773
|
}, ['post']);
|
12773
12774
|
}
|
12774
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12775
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12775
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChatService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12776
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChatService, providedIn: 'root' }); }
|
12776
12777
|
}
|
12777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12778
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChatService, decorators: [{
|
12778
12779
|
type: Injectable,
|
12779
12780
|
args: [{
|
12780
12781
|
providedIn: 'root'
|
@@ -12804,10 +12805,10 @@ class MessageService extends RestService$1 {
|
|
12804
12805
|
getUnreadChatsAmount() {
|
12805
12806
|
return this.get().pipe(map((messages) => messages.getUnreadChatsAmount()));
|
12806
12807
|
}
|
12807
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12808
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12808
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12809
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageService, providedIn: 'root' }); }
|
12809
12810
|
}
|
12810
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12811
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageService, decorators: [{
|
12811
12812
|
type: Injectable,
|
12812
12813
|
args: [{
|
12813
12814
|
providedIn: 'root'
|
@@ -12876,10 +12877,10 @@ class MessageDocumentService extends RestService$1 {
|
|
12876
12877
|
addBatch(chatId, files) {
|
12877
12878
|
return combineLatest(files.map((file) => this.add(chatId, file))).pipe(map((docsBase) => docsBase.map((docBase) => plainToClass(MessageDocument, docBase))));
|
12878
12879
|
}
|
12879
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12880
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12880
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageDocumentService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
12881
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageDocumentService, providedIn: 'root' }); }
|
12881
12882
|
}
|
12882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MessageDocumentService, decorators: [{
|
12883
12884
|
type: Injectable,
|
12884
12885
|
args: [{
|
12885
12886
|
providedIn: 'root'
|
@@ -12974,10 +12975,10 @@ class DepreciationService extends RestService$1 {
|
|
12974
12975
|
this.refreshCache();
|
12975
12976
|
});
|
12976
12977
|
}
|
12977
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
12978
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
12978
|
+
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 }); }
|
12979
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationService, providedIn: 'root' }); }
|
12979
12980
|
}
|
12980
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
12981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationService, decorators: [{
|
12981
12982
|
type: Injectable,
|
12982
12983
|
args: [{
|
12983
12984
|
providedIn: 'root'
|
@@ -12999,10 +13000,10 @@ class DepreciationCapitalProjectService extends RestService$1 {
|
|
12999
13000
|
this.endpointUri = 'depreciation-capital-projects';
|
13000
13001
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13001
13002
|
}
|
13002
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13003
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13003
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationCapitalProjectService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13004
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationCapitalProjectService, providedIn: 'root' }); }
|
13004
13005
|
}
|
13005
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13006
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DepreciationCapitalProjectService, decorators: [{
|
13006
13007
|
type: Injectable,
|
13007
13008
|
args: [{
|
13008
13009
|
providedIn: 'root'
|
@@ -13028,10 +13029,10 @@ class DocumentFolderService extends RestService$1 {
|
|
13028
13029
|
this.modelClass = DocumentFolder;
|
13029
13030
|
this.disabledMethods = ['deleteBatch', 'postBatch', 'putBatch'];
|
13030
13031
|
}
|
13031
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13032
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13032
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentFolderService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13033
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentFolderService, providedIn: 'root' }); }
|
13033
13034
|
}
|
13034
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13035
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentFolderService, decorators: [{
|
13035
13036
|
type: Injectable,
|
13036
13037
|
args: [{
|
13037
13038
|
providedIn: 'root'
|
@@ -13046,10 +13047,10 @@ class DocumentService extends RestService$1 {
|
|
13046
13047
|
this.collectionClass = Collection;
|
13047
13048
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
13048
13049
|
}
|
13049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13050
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13050
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13051
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentService, providedIn: 'root' }); }
|
13051
13052
|
}
|
13052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: DocumentService, decorators: [{
|
13053
13054
|
type: Injectable,
|
13054
13055
|
args: [{
|
13055
13056
|
providedIn: 'root'
|
@@ -13131,10 +13132,10 @@ class FacebookService {
|
|
13131
13132
|
});
|
13132
13133
|
});
|
13133
13134
|
}
|
13134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13135
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13135
|
+
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 }); }
|
13136
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FacebookService, providedIn: 'root' }); }
|
13136
13137
|
}
|
13137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FacebookService, decorators: [{
|
13138
13139
|
type: Injectable,
|
13139
13140
|
args: [{
|
13140
13141
|
providedIn: 'root'
|
@@ -13201,10 +13202,10 @@ class GoogleService {
|
|
13201
13202
|
logout() {
|
13202
13203
|
google.accounts.id.disableAutoSelect();
|
13203
13204
|
}
|
13204
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13205
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13205
|
+
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 }); }
|
13206
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: GoogleService, providedIn: 'root' }); }
|
13206
13207
|
}
|
13207
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13208
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: GoogleService, decorators: [{
|
13208
13209
|
type: Injectable,
|
13209
13210
|
args: [{
|
13210
13211
|
providedIn: 'root'
|
@@ -13236,10 +13237,10 @@ class FileService extends RestService$1 {
|
|
13236
13237
|
download(file) {
|
13237
13238
|
return this.http.get(`${this.apiUrl}/${file.id}/download`, { responseType: 'blob' });
|
13238
13239
|
}
|
13239
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13240
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13240
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FileService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13241
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FileService, providedIn: 'root' }); }
|
13241
13242
|
}
|
13242
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FileService, decorators: [{
|
13243
13244
|
type: Injectable,
|
13244
13245
|
args: [{
|
13245
13246
|
providedIn: 'root'
|
@@ -13329,10 +13330,10 @@ class ClientInviteService extends RestService$1 {
|
|
13329
13330
|
}
|
13330
13331
|
});
|
13331
13332
|
}
|
13332
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13333
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13333
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientInviteService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13334
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientInviteService, providedIn: 'root' }); }
|
13334
13335
|
}
|
13335
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientInviteService, decorators: [{
|
13336
13337
|
type: Injectable,
|
13337
13338
|
args: [{
|
13338
13339
|
providedIn: 'root'
|
@@ -13422,10 +13423,10 @@ class ClientMovementService extends RestService$1 {
|
|
13422
13423
|
// this.updateCache([clientMovement], 'delete');
|
13423
13424
|
}));
|
13424
13425
|
}
|
13425
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13426
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13426
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13427
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementService, providedIn: 'root' }); }
|
13427
13428
|
}
|
13428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13429
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementService, decorators: [{
|
13429
13430
|
type: Injectable,
|
13430
13431
|
args: [{
|
13431
13432
|
providedIn: 'root'
|
@@ -13486,10 +13487,10 @@ class EmployeeService extends RestService$1 {
|
|
13486
13487
|
index === -1 ? employee.roles.push(role) : employee.roles.splice(index, 1);
|
13487
13488
|
return super.put(employee, `${this.environment.apiV2}/${this.endpointUri}/${employee.id}`);
|
13488
13489
|
}
|
13489
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13490
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13490
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13491
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeService, providedIn: 'root' }); }
|
13491
13492
|
}
|
13492
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13493
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeService, decorators: [{
|
13493
13494
|
type: Injectable,
|
13494
13495
|
args: [{
|
13495
13496
|
providedIn: 'root'
|
@@ -13550,10 +13551,10 @@ class EmployeeInviteService extends RestService$1 {
|
|
13550
13551
|
return updatedInvite;
|
13551
13552
|
}));
|
13552
13553
|
}
|
13553
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13554
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13554
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13555
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeInviteService, providedIn: 'root' }); }
|
13555
13556
|
}
|
13556
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13557
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeInviteService, decorators: [{
|
13557
13558
|
type: Injectable,
|
13558
13559
|
args: [{
|
13559
13560
|
providedIn: 'root'
|
@@ -13577,10 +13578,10 @@ class ClientPortfolioReportService {
|
|
13577
13578
|
return new ClientPortfolioReportCollection(clientReports);
|
13578
13579
|
}));
|
13579
13580
|
}
|
13580
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13581
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13581
|
+
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 }); }
|
13582
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientPortfolioReportService, providedIn: 'root' }); }
|
13582
13583
|
}
|
13583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13584
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientPortfolioReportService, decorators: [{
|
13584
13585
|
type: Injectable,
|
13585
13586
|
args: [{
|
13586
13587
|
providedIn: 'root'
|
@@ -13634,10 +13635,10 @@ class FirmService {
|
|
13634
13635
|
getByType(type) {
|
13635
13636
|
return this.getAll().pipe(map((firms) => firms.filter((firm) => firm.type === type)));
|
13636
13637
|
}
|
13637
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13638
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13638
|
+
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 }); }
|
13639
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmService, providedIn: 'root' }); }
|
13639
13640
|
}
|
13640
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmService, decorators: [{
|
13641
13642
|
type: Injectable,
|
13642
13643
|
args: [{
|
13643
13644
|
providedIn: 'root'
|
@@ -13655,10 +13656,10 @@ class FirmBranchService extends RestService$1 {
|
|
13655
13656
|
this.collectionClass = (Collection);
|
13656
13657
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
13657
13658
|
}
|
13658
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13659
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13659
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmBranchService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
13660
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmBranchService, providedIn: 'root' }); }
|
13660
13661
|
}
|
13661
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13662
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FirmBranchService, decorators: [{
|
13662
13663
|
type: Injectable,
|
13663
13664
|
args: [{
|
13664
13665
|
providedIn: 'root'
|
@@ -13899,10 +13900,10 @@ class RestService {
|
|
13899
13900
|
getCache() {
|
13900
13901
|
return clone(this.cache);
|
13901
13902
|
}
|
13902
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13903
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13903
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13904
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, providedIn: 'root' }); }
|
13904
13905
|
}
|
13905
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13906
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RestService, decorators: [{
|
13906
13907
|
type: Injectable,
|
13907
13908
|
args: [{
|
13908
13909
|
providedIn: 'root'
|
@@ -13977,10 +13978,10 @@ class IncomeSourceForecastService extends RestService {
|
|
13977
13978
|
return incomeSource.incomeSourceForecasts;
|
13978
13979
|
}).flat();
|
13979
13980
|
}
|
13980
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
13981
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
13981
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13982
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceForecastService, providedIn: 'root' }); }
|
13982
13983
|
}
|
13983
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
13984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceForecastService, decorators: [{
|
13984
13985
|
type: Injectable,
|
13985
13986
|
args: [{
|
13986
13987
|
providedIn: 'root'
|
@@ -14054,10 +14055,10 @@ class SalaryForecastService extends RestService {
|
|
14054
14055
|
return incomeSource.salaryForecasts;
|
14055
14056
|
}).flat();
|
14056
14057
|
}
|
14057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14058
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SalaryForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14059
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SalaryForecastService, providedIn: 'root' }); }
|
14059
14060
|
}
|
14060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SalaryForecastService, decorators: [{
|
14061
14062
|
type: Injectable,
|
14062
14063
|
args: [{
|
14063
14064
|
providedIn: 'root'
|
@@ -14139,10 +14140,10 @@ class SoleForecastService extends RestService {
|
|
14139
14140
|
this.refreshCache();
|
14140
14141
|
});
|
14141
14142
|
}
|
14142
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14143
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14143
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleForecastService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14144
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleForecastService, providedIn: 'root' }); }
|
14144
14145
|
}
|
14145
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleForecastService, decorators: [{
|
14146
14147
|
type: Injectable,
|
14147
14148
|
args: [{
|
14148
14149
|
providedIn: 'root'
|
@@ -14225,10 +14226,10 @@ class IncomeSourceService extends RestService {
|
|
14225
14226
|
this.refreshCache();
|
14226
14227
|
});
|
14227
14228
|
}
|
14228
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14229
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14229
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14230
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceService, providedIn: 'root' }); }
|
14230
14231
|
}
|
14231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14232
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceService, decorators: [{
|
14232
14233
|
type: Injectable,
|
14233
14234
|
args: [{
|
14234
14235
|
providedIn: 'root'
|
@@ -14301,10 +14302,10 @@ class BorrowingExpenseService {
|
|
14301
14302
|
return combinedBorrowingExpenses;
|
14302
14303
|
}));
|
14303
14304
|
}
|
14304
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14305
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14305
|
+
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 }); }
|
14306
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingExpenseService, providedIn: 'root' }); }
|
14306
14307
|
}
|
14307
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14308
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingExpenseService, decorators: [{
|
14308
14309
|
type: Injectable,
|
14309
14310
|
args: [{
|
14310
14311
|
providedIn: 'root'
|
@@ -14388,10 +14389,10 @@ class LoanService extends RestService$1 {
|
|
14388
14389
|
delete(loan) {
|
14389
14390
|
return super.delete(loan, `${this.environment.apiV2}/loans/${loan.id}`);
|
14390
14391
|
}
|
14391
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14392
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14392
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: LoanService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14393
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: LoanService, providedIn: 'root' }); }
|
14393
14394
|
}
|
14394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14395
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: LoanService, decorators: [{
|
14395
14396
|
type: Injectable,
|
14396
14397
|
args: [{
|
14397
14398
|
providedIn: 'root'
|
@@ -14417,10 +14418,10 @@ class BorrowingReportService extends RestService$1 {
|
|
14417
14418
|
this.collectionClass = Collection;
|
14418
14419
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14419
14420
|
}
|
14420
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14421
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14421
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14422
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingReportService, providedIn: 'root' }); }
|
14422
14423
|
}
|
14423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BorrowingReportService, decorators: [{
|
14424
14425
|
type: Injectable,
|
14425
14426
|
args: [{
|
14426
14427
|
providedIn: 'root'
|
@@ -14445,10 +14446,10 @@ class PropertyCategoryService extends RestService$1 {
|
|
14445
14446
|
this.endpointUri = 'properties/categories';
|
14446
14447
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14447
14448
|
}
|
14448
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14449
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14449
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14450
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryService, providedIn: 'root' }); }
|
14450
14451
|
}
|
14451
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryService, decorators: [{
|
14452
14453
|
type: Injectable,
|
14453
14454
|
args: [{
|
14454
14455
|
providedIn: 'root'
|
@@ -14470,10 +14471,10 @@ class PropertyCategoryMovementService extends RestService$1 {
|
|
14470
14471
|
this.listenCSE(Property, this.refreshCache, ['post']);
|
14471
14472
|
this.listenCSE(PropertyCategoryMovement, this.refreshCache);
|
14472
14473
|
}
|
14473
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14474
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14474
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryMovementService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14475
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryMovementService, providedIn: 'root' }); }
|
14475
14476
|
}
|
14476
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCategoryMovementService, decorators: [{
|
14477
14478
|
type: Injectable,
|
14478
14479
|
args: [{
|
14479
14480
|
providedIn: 'root'
|
@@ -14505,10 +14506,10 @@ class PropertyDocumentService extends RestService$1 {
|
|
14505
14506
|
postFiles(property, files) {
|
14506
14507
|
return this.postParallel(files.map(file => plainToClass(PropertyDocument, { file, property })));
|
14507
14508
|
}
|
14508
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14509
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14509
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyDocumentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14510
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyDocumentService, providedIn: 'root' }); }
|
14510
14511
|
}
|
14511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyDocumentService, decorators: [{
|
14512
14513
|
type: Injectable,
|
14513
14514
|
args: [{
|
14514
14515
|
providedIn: 'root'
|
@@ -14586,10 +14587,10 @@ class TaxExemptionService extends DataService {
|
|
14586
14587
|
this.collectionClass = TaxExemptionCollection;
|
14587
14588
|
this.setCache(TaxExemptions);
|
14588
14589
|
}
|
14589
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14590
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxExemptionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14591
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxExemptionService, providedIn: 'root' }); }
|
14591
14592
|
}
|
14592
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14593
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxExemptionService, decorators: [{
|
14593
14594
|
type: Injectable,
|
14594
14595
|
args: [{
|
14595
14596
|
providedIn: 'root'
|
@@ -14605,10 +14606,10 @@ class PropertySaleService extends RestService$1 {
|
|
14605
14606
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
14606
14607
|
this.roles = [UserRolesEnum.PROPERTY_TANK];
|
14607
14608
|
}
|
14608
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14609
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14609
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertySaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14610
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertySaleService, providedIn: 'root' }); }
|
14610
14611
|
}
|
14611
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14612
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertySaleService, decorators: [{
|
14612
14613
|
type: Injectable,
|
14613
14614
|
args: [{
|
14614
14615
|
providedIn: 'root'
|
@@ -14662,10 +14663,10 @@ class PropertyShareService extends RestService$1 {
|
|
14662
14663
|
listenSalesChanges() {
|
14663
14664
|
this.listenCSE(PropertySale, this.refreshCache, ['post', 'delete']);
|
14664
14665
|
}
|
14665
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14666
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14666
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyShareService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14667
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyShareService, providedIn: 'root' }); }
|
14667
14668
|
}
|
14668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyShareService, decorators: [{
|
14669
14670
|
type: Injectable,
|
14670
14671
|
args: [{
|
14671
14672
|
providedIn: 'root'
|
@@ -14684,10 +14685,10 @@ class PropertyValuationService extends RestService$1 {
|
|
14684
14685
|
this.disabledMethods = ['postBatch', 'putBatch'];
|
14685
14686
|
this.useBackendError = true;
|
14686
14687
|
}
|
14687
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14688
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14688
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyValuationService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14689
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyValuationService, providedIn: 'root' }); }
|
14689
14690
|
}
|
14690
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14691
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyValuationService, decorators: [{
|
14691
14692
|
type: Injectable,
|
14692
14693
|
args: [{
|
14693
14694
|
providedIn: 'root'
|
@@ -14831,10 +14832,10 @@ class PropertyService extends RestService$1 {
|
|
14831
14832
|
return of({ growthPercent: 0, lowMarketValue: 0, marketValue: 0, highMarketValue: 0, confidence: PropertyCorelogicStatsConfidenceTypeEnum.LOW });
|
14832
14833
|
}));
|
14833
14834
|
}
|
14834
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14835
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14835
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14836
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyService, providedIn: 'root' }); }
|
14836
14837
|
}
|
14837
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14838
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyService, decorators: [{
|
14838
14839
|
type: Injectable,
|
14839
14840
|
args: [{
|
14840
14841
|
providedIn: 'root'
|
@@ -14891,10 +14892,10 @@ class ServiceNotificationService extends RestService {
|
|
14891
14892
|
this.eventDispatcherService.dispatch(new AppEvent(AppEventTypeEnum.NOTIFICATION_ADDED, notification));
|
14892
14893
|
});
|
14893
14894
|
}
|
14894
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14895
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14895
|
+
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 }); }
|
14896
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceNotificationService, providedIn: 'root' }); }
|
14896
14897
|
}
|
14897
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14898
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceNotificationService, decorators: [{
|
14898
14899
|
type: Injectable,
|
14899
14900
|
args: [{
|
14900
14901
|
providedIn: 'root'
|
@@ -14917,10 +14918,10 @@ class SoleBusinessService extends RestService$1 {
|
|
14917
14918
|
this.endpointUri = 'sole-businesses';
|
14918
14919
|
this.roles = [UserRolesEnum.SOLE_TANK];
|
14919
14920
|
}
|
14920
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14921
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14921
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14922
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessService, providedIn: 'root' }); }
|
14922
14923
|
}
|
14923
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14924
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessService, decorators: [{
|
14924
14925
|
type: Injectable,
|
14925
14926
|
args: [{
|
14926
14927
|
providedIn: 'root'
|
@@ -14933,10 +14934,10 @@ class SoleBusinessActivityService extends RestService {
|
|
14933
14934
|
this.modelClass = SoleBusinessActivity;
|
14934
14935
|
this.url = 'sole-business-activities';
|
14935
14936
|
}
|
14936
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14937
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14937
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessActivityService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14938
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessActivityService, providedIn: 'root' }); }
|
14938
14939
|
}
|
14939
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14940
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessActivityService, decorators: [{
|
14940
14941
|
type: Injectable,
|
14941
14942
|
args: [{
|
14942
14943
|
providedIn: 'root'
|
@@ -14965,10 +14966,10 @@ class SoleBusinessLossService extends RestService$1 {
|
|
14965
14966
|
this.refreshCache();
|
14966
14967
|
});
|
14967
14968
|
}
|
14968
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14969
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14969
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
14970
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossService, providedIn: 'root' }); }
|
14970
14971
|
}
|
14971
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14972
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossService, decorators: [{
|
14972
14973
|
type: Injectable,
|
14973
14974
|
args: [{
|
14974
14975
|
providedIn: 'root'
|
@@ -14987,10 +14988,10 @@ class SoleBusinessLossOffsetRuleService extends RestService {
|
|
14987
14988
|
this.modelClass = SoleBusinessLossOffsetRule;
|
14988
14989
|
this.url = 'sole-business-loss-offset-rules';
|
14989
14990
|
}
|
14990
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
14991
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
14991
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossOffsetRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
14992
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossOffsetRuleService, providedIn: 'root' }); }
|
14992
14993
|
}
|
14993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
14994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleBusinessLossOffsetRuleService, decorators: [{
|
14994
14995
|
type: Injectable,
|
14995
14996
|
args: [{
|
14996
14997
|
providedIn: 'root'
|
@@ -15003,10 +15004,10 @@ class SoleContactService extends RestService {
|
|
15003
15004
|
this.modelClass = SoleContact;
|
15004
15005
|
this.url = 'sole-contacts';
|
15005
15006
|
}
|
15006
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15007
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15007
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleContactService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15008
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleContactService, providedIn: 'root' }); }
|
15008
15009
|
}
|
15009
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15010
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleContactService, decorators: [{
|
15010
15011
|
type: Injectable,
|
15011
15012
|
args: [{
|
15012
15013
|
providedIn: 'root'
|
@@ -15062,10 +15063,10 @@ class SoleDepreciationMethodService {
|
|
15062
15063
|
this.get().subscribe();
|
15063
15064
|
});
|
15064
15065
|
}
|
15065
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15066
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15066
|
+
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 }); }
|
15067
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDepreciationMethodService, providedIn: 'root' }); }
|
15067
15068
|
}
|
15068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDepreciationMethodService, decorators: [{
|
15069
15070
|
type: Injectable,
|
15070
15071
|
args: [{
|
15071
15072
|
providedIn: 'root'
|
@@ -15090,10 +15091,10 @@ class SoleDetailsService extends RestService$1 {
|
|
15090
15091
|
get() {
|
15091
15092
|
return super.get().pipe(map(soleDetails => soleDetails.length ? soleDetails : new Collection([plainToClass(SoleDetails, {})])));
|
15092
15093
|
}
|
15093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15094
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15094
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15095
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsService, providedIn: 'root' }); }
|
15095
15096
|
}
|
15096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsService, decorators: [{
|
15097
15098
|
type: Injectable,
|
15098
15099
|
args: [{
|
15099
15100
|
providedIn: 'root'
|
@@ -15127,10 +15128,10 @@ class SoleInvoiceService extends RestService$1 {
|
|
15127
15128
|
}
|
15128
15129
|
return this.cache.last.number + 1;
|
15129
15130
|
}
|
15130
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15131
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15131
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15132
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceService, providedIn: 'root' }); }
|
15132
15133
|
}
|
15133
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15134
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceService, decorators: [{
|
15134
15135
|
type: Injectable,
|
15135
15136
|
args: [{
|
15136
15137
|
providedIn: 'root'
|
@@ -15146,10 +15147,10 @@ class SoleInvoiceTemplateService extends RestService {
|
|
15146
15147
|
this.modelClass = SoleInvoiceTemplate;
|
15147
15148
|
this.url = 'sole-invoice-templates';
|
15148
15149
|
}
|
15149
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15150
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15150
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceTemplateService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15151
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceTemplateService, providedIn: 'root' }); }
|
15151
15152
|
}
|
15152
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleInvoiceTemplateService, decorators: [{
|
15153
15154
|
type: Injectable,
|
15154
15155
|
args: [{
|
15155
15156
|
providedIn: 'root'
|
@@ -15170,10 +15171,10 @@ class BasReportService extends RestService {
|
|
15170
15171
|
this.modelClass = BasReport;
|
15171
15172
|
this.url = 'bas-reports';
|
15172
15173
|
}
|
15173
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15174
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15174
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasReportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15175
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasReportService, providedIn: 'root' }); }
|
15175
15176
|
}
|
15176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasReportService, decorators: [{
|
15177
15178
|
type: Injectable,
|
15178
15179
|
args: [{
|
15179
15180
|
providedIn: 'root'
|
@@ -15197,10 +15198,10 @@ class ServicePaymentService extends RestService$1 {
|
|
15197
15198
|
}
|
15198
15199
|
return this.http.get(`${this.environment.apiV2}/service-payments/${payment.id}/invoice-url`);
|
15199
15200
|
}
|
15200
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15201
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15201
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15202
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentService, providedIn: 'root' }); }
|
15202
15203
|
}
|
15203
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentService, decorators: [{
|
15204
15205
|
type: Injectable,
|
15205
15206
|
args: [{
|
15206
15207
|
providedIn: 'root'
|
@@ -15232,10 +15233,10 @@ class ServicePaymentMethodService extends RestService$1 {
|
|
15232
15233
|
return this.http.put(`${this.apiUrl}/${paymentMethod.id}/default`, {})
|
15233
15234
|
.pipe(map((updatedPaymentMethod) => plainToClass(ServicePaymentMethod, updatedPaymentMethod)));
|
15234
15235
|
}
|
15235
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15236
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15236
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentMethodService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15237
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentMethodService, providedIn: 'root' }); }
|
15237
15238
|
}
|
15238
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePaymentMethodService, decorators: [{
|
15239
15240
|
type: Injectable,
|
15240
15241
|
args: [{
|
15241
15242
|
providedIn: 'root'
|
@@ -15256,10 +15257,10 @@ class ServicePriceService extends RestService$1 {
|
|
15256
15257
|
this.collectionClass = ServicePriceCollection;
|
15257
15258
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15258
15259
|
}
|
15259
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15260
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15260
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePriceService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15261
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePriceService, providedIn: 'root' }); }
|
15261
15262
|
}
|
15262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServicePriceService, decorators: [{
|
15263
15264
|
type: Injectable,
|
15264
15265
|
args: [{
|
15265
15266
|
providedIn: 'root'
|
@@ -15344,10 +15345,10 @@ class SubscriptionService extends RestService$1 {
|
|
15344
15345
|
get(path = this.apiUrl) {
|
15345
15346
|
return super.get(path).pipe(map(subscriptions => subscriptions.sortBy('isActive', 'ask')));
|
15346
15347
|
}
|
15347
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15348
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15348
|
+
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 }); }
|
15349
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SubscriptionService, providedIn: 'root' }); }
|
15349
15350
|
}
|
15350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SubscriptionService, decorators: [{
|
15351
15352
|
type: Injectable,
|
15352
15353
|
args: [{
|
15353
15354
|
providedIn: 'root'
|
@@ -15365,10 +15366,10 @@ class ServiceProductService extends RestService$1 {
|
|
15365
15366
|
this.endpointUri = 'service-products';
|
15366
15367
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
15367
15368
|
}
|
15368
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15369
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15369
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceProductService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15370
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceProductService, providedIn: 'root' }); }
|
15370
15371
|
}
|
15371
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ServiceProductService, decorators: [{
|
15372
15373
|
type: Injectable,
|
15373
15374
|
args: [{
|
15374
15375
|
providedIn: 'root'
|
@@ -15504,10 +15505,10 @@ class TaxReviewHistoryService extends RestService {
|
|
15504
15505
|
this.updateCache();
|
15505
15506
|
});
|
15506
15507
|
}
|
15507
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15508
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewHistoryService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15509
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewHistoryService, providedIn: 'root' }); }
|
15509
15510
|
}
|
15510
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewHistoryService, decorators: [{
|
15511
15512
|
type: Injectable,
|
15512
15513
|
args: [{
|
15513
15514
|
providedIn: 'root'
|
@@ -15600,10 +15601,10 @@ class TaxReviewService extends RestService {
|
|
15600
15601
|
}
|
15601
15602
|
});
|
15602
15603
|
}
|
15603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15604
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15604
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
15605
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewService, providedIn: 'root' }); }
|
15605
15606
|
}
|
15606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReviewService, decorators: [{
|
15607
15608
|
type: Injectable,
|
15608
15609
|
args: [{
|
15609
15610
|
providedIn: 'root'
|
@@ -15934,10 +15935,10 @@ class TaxSummaryService {
|
|
15934
15935
|
this.getForecast().subscribe();
|
15935
15936
|
});
|
15936
15937
|
}
|
15937
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15938
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15938
|
+
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 }); }
|
15939
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxSummaryService, providedIn: 'root' }); }
|
15939
15940
|
}
|
15940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15941
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxSummaryService, decorators: [{
|
15941
15942
|
type: Injectable,
|
15942
15943
|
args: [{
|
15943
15944
|
providedIn: 'root'
|
@@ -15958,10 +15959,10 @@ class AllocationRuleService extends RestService$1 {
|
|
15958
15959
|
getCustomHttpErrorMessages() {
|
15959
15960
|
return { 422: 'You can only have 10 conditions in a rule' };
|
15960
15961
|
}
|
15961
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
15962
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
15962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AllocationRuleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
15963
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AllocationRuleService, providedIn: 'root' }); }
|
15963
15964
|
}
|
15964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
15965
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AllocationRuleService, decorators: [{
|
15965
15966
|
type: Injectable,
|
15966
15967
|
args: [{
|
15967
15968
|
providedIn: 'root'
|
@@ -16066,10 +16067,10 @@ class TransactionAllocationService extends RestService {
|
|
16066
16067
|
}
|
16067
16068
|
});
|
16068
16069
|
}
|
16069
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16070
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16070
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionAllocationService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16071
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionAllocationService, providedIn: 'root' }); }
|
16071
16072
|
}
|
16072
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16073
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionAllocationService, decorators: [{
|
16073
16074
|
type: Injectable,
|
16074
16075
|
args: [{
|
16075
16076
|
providedIn: 'root'
|
@@ -16321,10 +16322,10 @@ class TransactionService extends RestService {
|
|
16321
16322
|
}
|
16322
16323
|
});
|
16323
16324
|
}
|
16324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16325
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16325
|
+
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 }); }
|
16326
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionService, providedIn: 'root' }); }
|
16326
16327
|
}
|
16327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TransactionService, decorators: [{
|
16328
16329
|
type: Injectable,
|
16329
16330
|
args: [{
|
16330
16331
|
providedIn: 'root'
|
@@ -16350,10 +16351,10 @@ class PriorTransactionService extends RestService$1 {
|
|
16350
16351
|
const financialYear = new FinancialYear(new FinancialYear().year - 1);
|
16351
16352
|
return super.get(this.apiUrl + `?financialYear=${financialYear.year}`).pipe(map(transactions => transactions.filterByFinancialYear('date', null, financialYear)));
|
16352
16353
|
}
|
16353
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16354
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PriorTransactionService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16355
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PriorTransactionService, providedIn: 'root' }); }
|
16355
16356
|
}
|
16356
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16357
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PriorTransactionService, decorators: [{
|
16357
16358
|
type: Injectable,
|
16358
16359
|
args: [{
|
16359
16360
|
providedIn: 'root'
|
@@ -16375,10 +16376,10 @@ class InvoiceTransactionsService extends RestService$1 {
|
|
16375
16376
|
this.endpointUri = 'invoices/transactions';
|
16376
16377
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16377
16378
|
}
|
16378
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16379
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16379
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InvoiceTransactionsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16380
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InvoiceTransactionsService, providedIn: 'root' }); }
|
16380
16381
|
}
|
16381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InvoiceTransactionsService, decorators: [{
|
16382
16383
|
type: Injectable,
|
16383
16384
|
args: [{
|
16384
16385
|
providedIn: 'root'
|
@@ -16402,10 +16403,10 @@ class YoutubeService {
|
|
16402
16403
|
title: item.snippet.title
|
16403
16404
|
}))));
|
16404
16405
|
}
|
16405
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16406
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16406
|
+
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 }); }
|
16407
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: YoutubeService, providedIn: 'root' }); }
|
16407
16408
|
}
|
16408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: YoutubeService, decorators: [{
|
16409
16410
|
type: Injectable,
|
16410
16411
|
args: [{
|
16411
16412
|
providedIn: 'root'
|
@@ -16425,10 +16426,10 @@ class VehicleService extends RestService$1 {
|
|
16425
16426
|
this.collectionClass = (Collection);
|
16426
16427
|
this.modelClass = Vehicle;
|
16427
16428
|
}
|
16428
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16429
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16429
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16430
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleService, providedIn: 'root' }); }
|
16430
16431
|
}
|
16431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleService, decorators: [{
|
16432
16433
|
type: Injectable,
|
16433
16434
|
args: [{
|
16434
16435
|
providedIn: 'root'
|
@@ -16458,10 +16459,10 @@ class VehicleClaimService extends RestService$1 {
|
|
16458
16459
|
this.refreshCache();
|
16459
16460
|
});
|
16460
16461
|
}
|
16461
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16462
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16462
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16463
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimService, providedIn: 'root' }); }
|
16463
16464
|
}
|
16464
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16465
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimService, decorators: [{
|
16465
16466
|
type: Injectable,
|
16466
16467
|
args: [{
|
16467
16468
|
providedIn: 'root'
|
@@ -16523,10 +16524,10 @@ class VehicleClaimDetailsService {
|
|
16523
16524
|
const vehicleClaimDetails = plainToClass(VehicleClaimDetails, Object.assign({}, this.cache, { isManual: true }));
|
16524
16525
|
this.update(vehicleClaimDetails).subscribe();
|
16525
16526
|
}
|
16526
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16527
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16527
|
+
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 }); }
|
16528
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimDetailsService, providedIn: 'root' }); }
|
16528
16529
|
}
|
16529
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16530
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleClaimDetailsService, decorators: [{
|
16530
16531
|
type: Injectable,
|
16531
16532
|
args: [{
|
16532
16533
|
providedIn: 'root'
|
@@ -16547,10 +16548,10 @@ class VehicleLogbookService extends RestService$1 {
|
|
16547
16548
|
this.collectionClass = VehicleLogbookCollection;
|
16548
16549
|
this.modelClass = VehicleLogbook;
|
16549
16550
|
}
|
16550
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16551
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16551
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleLogbookService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16552
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleLogbookService, providedIn: 'root' }); }
|
16552
16553
|
}
|
16553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16554
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: VehicleLogbookService, decorators: [{
|
16554
16555
|
type: Injectable,
|
16555
16556
|
args: [{
|
16556
16557
|
providedIn: 'root'
|
@@ -16573,10 +16574,10 @@ class AnnualClientDetailsService extends RestService$1 {
|
|
16573
16574
|
this.endpointUri = 'annual-client-details';
|
16574
16575
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch', 'delete'];
|
16575
16576
|
}
|
16576
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16577
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16577
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AnnualClientDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16578
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AnnualClientDetailsService, providedIn: 'root' }); }
|
16578
16579
|
}
|
16579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16580
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AnnualClientDetailsService, decorators: [{
|
16580
16581
|
type: Injectable,
|
16581
16582
|
args: [{
|
16582
16583
|
providedIn: 'root'
|
@@ -16606,10 +16607,10 @@ class OccupationService {
|
|
16606
16607
|
}
|
16607
16608
|
return this.occupationsSubject.asObservable();
|
16608
16609
|
}
|
16609
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16610
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16610
|
+
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 }); }
|
16611
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: OccupationService, providedIn: 'root' }); }
|
16611
16612
|
}
|
16612
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16613
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: OccupationService, decorators: [{
|
16613
16614
|
type: Injectable,
|
16614
16615
|
args: [{
|
16615
16616
|
providedIn: 'root'
|
@@ -16631,10 +16632,10 @@ class ClientCouponService extends RestService$1 {
|
|
16631
16632
|
this.endpointUri = 'users/current/promo-code';
|
16632
16633
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16633
16634
|
}
|
16634
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16635
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16635
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientCouponService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16636
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientCouponService, providedIn: 'root' }); }
|
16636
16637
|
}
|
16637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16638
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientCouponService, decorators: [{
|
16638
16639
|
type: Injectable,
|
16639
16640
|
args: [{
|
16640
16641
|
providedIn: 'root'
|
@@ -16649,10 +16650,10 @@ class CapitalLossService extends RestService$1 {
|
|
16649
16650
|
this.collectionClass = (Collection);
|
16650
16651
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
16651
16652
|
}
|
16652
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16653
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16653
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CapitalLossService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16654
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CapitalLossService, providedIn: 'root' }); }
|
16654
16655
|
}
|
16655
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16656
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CapitalLossService, decorators: [{
|
16656
16657
|
type: Injectable,
|
16657
16658
|
args: [{
|
16658
16659
|
providedIn: 'root'
|
@@ -16715,10 +16716,10 @@ class UserEventSettingService extends RestService$1 {
|
|
16715
16716
|
this.endpointUri = 'user-event-settings';
|
16716
16717
|
this.disabledMethods = ['postBatch', 'putBatch', 'delete', 'deleteBatch'];
|
16717
16718
|
}
|
16718
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16719
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16719
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventSettingService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16720
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventSettingService, providedIn: 'root' }); }
|
16720
16721
|
}
|
16721
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventSettingService, decorators: [{
|
16722
16723
|
type: Injectable,
|
16723
16724
|
args: [{
|
16724
16725
|
providedIn: 'root'
|
@@ -16733,10 +16734,10 @@ class UserEventTypeService extends RestService$1 {
|
|
16733
16734
|
this.endpointUri = 'user-event-types';
|
16734
16735
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
16735
16736
|
}
|
16736
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16737
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventTypeService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16738
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventTypeService, providedIn: 'root' }); }
|
16738
16739
|
}
|
16739
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16740
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserEventTypeService, decorators: [{
|
16740
16741
|
type: Injectable,
|
16741
16742
|
args: [{
|
16742
16743
|
providedIn: 'root'
|
@@ -16763,10 +16764,10 @@ class UsersInviteService extends RestService {
|
|
16763
16764
|
this.modelClass = RegistrationInvite;
|
16764
16765
|
this.url = 'users/invite';
|
16765
16766
|
}
|
16766
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16767
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16767
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UsersInviteService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16768
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UsersInviteService, providedIn: 'root' }); }
|
16768
16769
|
}
|
16769
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UsersInviteService, decorators: [{
|
16770
16771
|
type: Injectable,
|
16771
16772
|
args: [{
|
16772
16773
|
providedIn: 'root'
|
@@ -16881,10 +16882,10 @@ class UserService extends RestService$1 {
|
|
16881
16882
|
this.setCache([user], true);
|
16882
16883
|
}, ['post', 'put']);
|
16883
16884
|
}
|
16884
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16885
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16885
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16886
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserService, providedIn: 'root' }); }
|
16886
16887
|
}
|
16887
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16888
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserService, decorators: [{
|
16888
16889
|
type: Injectable,
|
16889
16890
|
args: [{
|
16890
16891
|
providedIn: 'root'
|
@@ -16905,10 +16906,10 @@ class FinancialYearService {
|
|
16905
16906
|
window.location.reload();
|
16906
16907
|
}));
|
16907
16908
|
}
|
16908
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16909
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16909
|
+
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 }); }
|
16910
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearService, providedIn: 'root' }); }
|
16910
16911
|
}
|
16911
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16912
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: FinancialYearService, decorators: [{
|
16912
16913
|
type: Injectable,
|
16913
16914
|
args: [{
|
16914
16915
|
providedIn: 'root'
|
@@ -16952,10 +16953,10 @@ class MfaDetailsService extends RestService$1 {
|
|
16952
16953
|
return mfaDetails;
|
16953
16954
|
}));
|
16954
16955
|
}
|
16955
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16956
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16956
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MfaDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
16957
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MfaDetailsService, providedIn: 'root' }); }
|
16957
16958
|
}
|
16958
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16959
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: MfaDetailsService, decorators: [{
|
16959
16960
|
type: Injectable,
|
16960
16961
|
args: [{
|
16961
16962
|
providedIn: 'root'
|
@@ -16992,10 +16993,10 @@ class HoldingTradeService extends RestService$1 {
|
|
16992
16993
|
}
|
16993
16994
|
});
|
16994
16995
|
}
|
16995
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
16996
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
16996
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
16997
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeService, providedIn: 'root' }); }
|
16997
16998
|
}
|
16998
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
16999
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeService, decorators: [{
|
16999
17000
|
type: Injectable,
|
17000
17001
|
args: [{
|
17001
17002
|
providedIn: 'root'
|
@@ -17032,10 +17033,10 @@ class HoldingTypeService extends RestService$1 {
|
|
17032
17033
|
}
|
17033
17034
|
});
|
17034
17035
|
}
|
17035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17036
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17036
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17037
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeService, providedIn: 'root' }); }
|
17037
17038
|
}
|
17038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17039
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeService, decorators: [{
|
17039
17040
|
type: Injectable,
|
17040
17041
|
args: [{
|
17041
17042
|
providedIn: 'root'
|
@@ -17054,10 +17055,10 @@ class HoldingSaleService extends RestService$1 {
|
|
17054
17055
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17055
17056
|
this.roles = [UserRolesEnum.HOLDING_TANK];
|
17056
17057
|
}
|
17057
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17058
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17058
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingSaleService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17059
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingSaleService, providedIn: 'root' }); }
|
17059
17060
|
}
|
17060
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingSaleService, decorators: [{
|
17061
17062
|
type: Injectable,
|
17062
17063
|
args: [{
|
17063
17064
|
providedIn: 'root'
|
@@ -17099,10 +17100,10 @@ class HoldingTradeImportService extends RestService$1 {
|
|
17099
17100
|
return throwError(error);
|
17100
17101
|
}));
|
17101
17102
|
}
|
17102
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17103
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17103
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeImportService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17104
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeImportService, providedIn: 'root' }); }
|
17104
17105
|
}
|
17105
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTradeImportService, decorators: [{
|
17106
17107
|
type: Injectable,
|
17107
17108
|
args: [{
|
17108
17109
|
providedIn: 'root'
|
@@ -17196,10 +17197,10 @@ class HoldingTypeExchangeService extends DataService {
|
|
17196
17197
|
this.collectionClass = Collection;
|
17197
17198
|
this.setCache(HoldingTypeExchanges);
|
17198
17199
|
}
|
17199
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17200
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17200
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeExchangeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17201
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeExchangeService, providedIn: 'root' }); }
|
17201
17202
|
}
|
17202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HoldingTypeExchangeService, decorators: [{
|
17203
17204
|
type: Injectable,
|
17204
17205
|
args: [{
|
17205
17206
|
providedIn: 'root'
|
@@ -17233,10 +17234,10 @@ class HomeOfficeClaimService extends RestService$1 {
|
|
17233
17234
|
this.disabledMethods = ['postBatch', 'putBatch', 'deleteBatch'];
|
17234
17235
|
this.roles = [UserRolesEnum.WORK_TANK, UserRolesEnum.SOLE_TANK];
|
17235
17236
|
}
|
17236
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17237
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17237
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeClaimService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17238
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeClaimService, providedIn: 'root' }); }
|
17238
17239
|
}
|
17239
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeClaimService, decorators: [{
|
17240
17241
|
type: Injectable,
|
17241
17242
|
args: [{
|
17242
17243
|
providedIn: 'root'
|
@@ -17264,10 +17265,10 @@ class HomeOfficeLogService extends RestService$1 {
|
|
17264
17265
|
listenEvents() {
|
17265
17266
|
this.listenCSE(HomeOfficeClaim, this.refreshCache, ['post']);
|
17266
17267
|
}
|
17267
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17268
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17268
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeLogService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17269
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeLogService, providedIn: 'root' }); }
|
17269
17270
|
}
|
17270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HomeOfficeLogService, decorators: [{
|
17271
17272
|
type: Injectable,
|
17272
17273
|
args: [{
|
17273
17274
|
providedIn: 'root'
|
@@ -17307,10 +17308,10 @@ class AussieService extends RestService$1 {
|
|
17307
17308
|
postAppointment() {
|
17308
17309
|
return this.http.delete(`${this.environment.apiV2}/aussie/appointments`);
|
17309
17310
|
}
|
17310
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17311
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17311
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17312
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieService, providedIn: 'root' }); }
|
17312
17313
|
}
|
17313
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17314
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieService, decorators: [{
|
17314
17315
|
type: Injectable,
|
17315
17316
|
args: [{
|
17316
17317
|
providedIn: 'root'
|
@@ -17334,10 +17335,10 @@ class SharesightDetailsService extends RestService$1 {
|
|
17334
17335
|
reconnect(sharesightDetails) {
|
17335
17336
|
return this.put(sharesightDetails, `${this.apiUrl}/${sharesightDetails.id}/reconnect`);
|
17336
17337
|
}
|
17337
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17338
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17338
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightDetailsService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17339
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightDetailsService, providedIn: 'root' }); }
|
17339
17340
|
}
|
17340
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17341
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightDetailsService, decorators: [{
|
17341
17342
|
type: Injectable,
|
17342
17343
|
args: [{
|
17343
17344
|
providedIn: 'root'
|
@@ -17355,10 +17356,10 @@ class SharesightPortfolioService extends RestService$1 {
|
|
17355
17356
|
getExternal() {
|
17356
17357
|
return this.fetch(`${this.apiUrl}/external`, false);
|
17357
17358
|
}
|
17358
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17359
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17359
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightPortfolioService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
17360
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightPortfolioService, providedIn: 'root' }); }
|
17360
17361
|
}
|
17361
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SharesightPortfolioService, decorators: [{
|
17362
17363
|
type: Injectable,
|
17363
17364
|
args: [{
|
17364
17365
|
providedIn: 'root'
|
@@ -17435,10 +17436,10 @@ class IncomeSourceTypeService extends DataService {
|
|
17435
17436
|
this.collectionClass = Collection;
|
17436
17437
|
this.setCache(IncomeSourceTypes);
|
17437
17438
|
}
|
17438
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17439
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17439
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceTypeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17440
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceTypeService, providedIn: 'root' }); }
|
17440
17441
|
}
|
17441
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IncomeSourceTypeService, decorators: [{
|
17442
17443
|
type: Injectable,
|
17443
17444
|
args: [{
|
17444
17445
|
providedIn: 'root'
|
@@ -17452,10 +17453,10 @@ class ChartAccountsValueService extends DataService {
|
|
17452
17453
|
this.collectionClass = ChartAccountsValueCollection;
|
17453
17454
|
this.setCache(ChartAccountsValues);
|
17454
17455
|
}
|
17455
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
17456
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
17456
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsValueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
17457
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsValueService, providedIn: 'root' }); }
|
17457
17458
|
}
|
17458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
17459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ChartAccountsValueService, decorators: [{
|
17459
17460
|
type: Injectable,
|
17460
17461
|
args: [{
|
17461
17462
|
providedIn: 'root'
|
@@ -19428,10 +19429,10 @@ class TaxReturnItemService extends DataService {
|
|
19428
19429
|
this.collectionClass = Collection;
|
19429
19430
|
this.setCache(TaxReturnItems);
|
19430
19431
|
}
|
19431
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19432
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19432
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReturnItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19433
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReturnItemService, providedIn: 'root' }); }
|
19433
19434
|
}
|
19434
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: TaxReturnItemService, decorators: [{
|
19435
19436
|
type: Injectable,
|
19436
19437
|
args: [{
|
19437
19438
|
providedIn: 'root'
|
@@ -19446,10 +19447,10 @@ class SetupItemService extends RestService$1 {
|
|
19446
19447
|
this.collectionClass = AccountSetupItemCollection;
|
19447
19448
|
this.disabledMethods = ['post', 'postBatch', 'put', 'putBatch', 'delete', 'deleteBatch'];
|
19448
19449
|
}
|
19449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19450
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19450
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SetupItemService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
19451
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SetupItemService, providedIn: 'root' }); }
|
19451
19452
|
}
|
19452
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SetupItemService, decorators: [{
|
19453
19454
|
type: Injectable,
|
19454
19455
|
args: [{
|
19455
19456
|
providedIn: 'root'
|
@@ -19632,10 +19633,10 @@ class AccountSetupService {
|
|
19632
19633
|
getSharesightDetails(importEnabled) {
|
19633
19634
|
return this.sharesightDetailsService.getArray().pipe(map(details => details.filter(detail => importEnabled ? detail.importEnabled : detail.exportEnabled)));
|
19634
19635
|
}
|
19635
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19636
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19636
|
+
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 }); }
|
19637
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AccountSetupService, providedIn: 'root' }); }
|
19637
19638
|
}
|
19638
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19639
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AccountSetupService, decorators: [{
|
19639
19640
|
type: Injectable,
|
19640
19641
|
args: [{
|
19641
19642
|
providedIn: 'root'
|
@@ -19644,16 +19645,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
19644
19645
|
|
19645
19646
|
class AdblockService {
|
19646
19647
|
constructor() {
|
19647
|
-
this.isAdBlockDetected = signal(false
|
19648
|
+
this.isAdBlockDetected = signal(false);
|
19648
19649
|
/**
|
19649
19650
|
* do we need to show initial or recurrent notification
|
19650
19651
|
*/
|
19651
|
-
this.isNotificationShown = signal(true
|
19652
|
+
this.isNotificationShown = signal(true);
|
19652
19653
|
/**
|
19653
19654
|
* checkAdBlock is promise based, so we need to know when service is ready
|
19654
19655
|
*/
|
19655
19656
|
this.serviceInitSubject = new Subject();
|
19656
|
-
this.isInitialModalClosed = signal(false
|
19657
|
+
this.isInitialModalClosed = signal(false);
|
19657
19658
|
checkAdBlock().then((isWorking) => {
|
19658
19659
|
this.isAdBlockDetected.set(isWorking);
|
19659
19660
|
this.setNotificationShown(this.getNotificationShown());
|
@@ -19676,10 +19677,10 @@ class AdblockService {
|
|
19676
19677
|
getInitialModalClosed() {
|
19677
19678
|
return JSON.parse(localStorage.getItem('isInitialModalClosed')) || false;
|
19678
19679
|
}
|
19679
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19680
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19680
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AdblockService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19681
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AdblockService, providedIn: 'root' }); }
|
19681
19682
|
}
|
19682
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AdblockService, decorators: [{
|
19683
19684
|
type: Injectable,
|
19684
19685
|
args: [{
|
19685
19686
|
providedIn: 'root'
|
@@ -19711,10 +19712,10 @@ class UserSwitcherService {
|
|
19711
19712
|
localStorage.removeItem(KEY);
|
19712
19713
|
window.location.replace('/firm/dashboard');
|
19713
19714
|
}
|
19714
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19715
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19715
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19716
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherService, providedIn: 'root' }); }
|
19716
19717
|
}
|
19717
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19718
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherService, decorators: [{
|
19718
19719
|
type: Injectable,
|
19719
19720
|
args: [{
|
19720
19721
|
providedIn: 'root'
|
@@ -19755,10 +19756,10 @@ class AssetsService {
|
|
19755
19756
|
delete(entityId, asset) {
|
19756
19757
|
return this.http.delete(`${this.environment.apiV2}/${asset.entityType}/${entityId}/${asset.type}/${asset.id}`);
|
19757
19758
|
}
|
19758
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19759
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19759
|
+
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 }); }
|
19760
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AssetsService, providedIn: 'root' }); }
|
19760
19761
|
}
|
19761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AssetsService, decorators: [{
|
19762
19763
|
type: Injectable,
|
19763
19764
|
args: [{
|
19764
19765
|
providedIn: 'root'
|
@@ -19786,10 +19787,10 @@ class BankAccountCalculationService {
|
|
19786
19787
|
getNetPosition(bankAccounts, bankTransactions, allocations) {
|
19787
19788
|
return bankAccounts.currentBalance - this.getTaxTankBalance(bankAccounts.getLoanAccounts(), bankTransactions, allocations);
|
19788
19789
|
}
|
19789
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19790
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19790
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19791
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountCalculationService, providedIn: 'root' }); }
|
19791
19792
|
}
|
19792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19793
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BankAccountCalculationService, decorators: [{
|
19793
19794
|
type: Injectable,
|
19794
19795
|
args: [{
|
19795
19796
|
providedIn: 'root'
|
@@ -19816,10 +19817,10 @@ class ExportFormatterService {
|
|
19816
19817
|
}
|
19817
19818
|
}));
|
19818
19819
|
}
|
19819
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19820
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19820
|
+
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 }); }
|
19821
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ExportFormatterService, providedIn: 'root' }); }
|
19821
19822
|
}
|
19822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19823
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ExportFormatterService, decorators: [{
|
19823
19824
|
type: Injectable,
|
19824
19825
|
args: [{
|
19825
19826
|
providedIn: 'root'
|
@@ -19839,10 +19840,10 @@ class HeaderTitleService {
|
|
19839
19840
|
return route;
|
19840
19841
|
}), filter((route) => route.outlet === 'primary'), mergeMap((route) => route.data));
|
19841
19842
|
}
|
19842
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19843
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19843
|
+
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 }); }
|
19844
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HeaderTitleService, providedIn: 'root' }); }
|
19844
19845
|
}
|
19845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: HeaderTitleService, decorators: [{
|
19846
19847
|
type: Injectable,
|
19847
19848
|
args: [{
|
19848
19849
|
providedIn: 'root'
|
@@ -19875,10 +19876,10 @@ class IntercomService {
|
|
19875
19876
|
const connectionCredentials = this.initUser(user);
|
19876
19877
|
window.Intercom('boot', connectionCredentials);
|
19877
19878
|
}
|
19878
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19879
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19879
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IntercomService, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19880
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IntercomService, providedIn: 'root' }); }
|
19880
19881
|
}
|
19881
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: IntercomService, decorators: [{
|
19882
19883
|
type: Injectable,
|
19883
19884
|
args: [{
|
19884
19885
|
providedIn: 'root'
|
@@ -19948,10 +19949,10 @@ class PdfFromDomElementService {
|
|
19948
19949
|
.outputPdf('blob')
|
19949
19950
|
.then((blob) => new File([blob], filename, { type: 'application/pdf' })));
|
19950
19951
|
}
|
19951
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
19952
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
19952
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDomElementService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
19953
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDomElementService, providedIn: 'root' }); }
|
19953
19954
|
}
|
19954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
19955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDomElementService, decorators: [{
|
19955
19956
|
type: Injectable,
|
19956
19957
|
args: [{
|
19957
19958
|
providedIn: 'root'
|
@@ -20044,10 +20045,10 @@ class PdfFromTableService {
|
|
20044
20045
|
.text(description, FILE_SETTINGS.text.positionDescriptionX, FILE_SETTINGS.text.positionDescriptionY)
|
20045
20046
|
.setTextColor(FILE_SETTINGS.text.colorPrimary);
|
20046
20047
|
}
|
20047
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20048
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromTableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20049
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromTableService, providedIn: 'root' }); }
|
20049
20050
|
}
|
20050
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20051
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromTableService, decorators: [{
|
20051
20052
|
type: Injectable,
|
20052
20053
|
args: [{
|
20053
20054
|
providedIn: 'root'
|
@@ -20085,10 +20086,10 @@ class PdfFromDataTableService extends PdfFromTableService {
|
|
20085
20086
|
});
|
20086
20087
|
return pdf;
|
20087
20088
|
}
|
20088
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20089
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20089
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDataTableService, deps: [{ token: ExportFormatterService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20090
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDataTableService, providedIn: 'root' }); }
|
20090
20091
|
}
|
20091
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromDataTableService, decorators: [{
|
20092
20093
|
type: Injectable,
|
20093
20094
|
args: [{
|
20094
20095
|
providedIn: 'root'
|
@@ -20126,10 +20127,10 @@ class PdfFromHtmlTableService extends PdfFromTableService {
|
|
20126
20127
|
});
|
20127
20128
|
return pdf;
|
20128
20129
|
}
|
20129
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20130
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20130
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromHtmlTableService, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
20131
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromHtmlTableService, providedIn: 'root' }); }
|
20131
20132
|
}
|
20132
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20133
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PdfFromHtmlTableService, decorators: [{
|
20133
20134
|
type: Injectable,
|
20134
20135
|
args: [{
|
20135
20136
|
providedIn: 'root'
|
@@ -20153,10 +20154,10 @@ class PreloaderService {
|
|
20153
20154
|
activePreloaders = activePreloaders.filter((preloader) => preloader !== endpoint);
|
20154
20155
|
this.activePreloaders.next(activePreloaders);
|
20155
20156
|
}
|
20156
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20157
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20157
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20158
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderService, providedIn: 'root' }); }
|
20158
20159
|
}
|
20159
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderService, decorators: [{
|
20160
20161
|
type: Injectable,
|
20161
20162
|
args: [{
|
20162
20163
|
providedIn: 'root'
|
@@ -20182,10 +20183,10 @@ class EquityPositionChartService {
|
|
20182
20183
|
}))
|
20183
20184
|
}))));
|
20184
20185
|
}
|
20185
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20186
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20186
|
+
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 }); }
|
20187
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EquityPositionChartService, providedIn: 'root' }); }
|
20187
20188
|
}
|
20188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EquityPositionChartService, decorators: [{
|
20189
20190
|
type: Injectable,
|
20190
20191
|
args: [{
|
20191
20192
|
providedIn: 'root'
|
@@ -20356,10 +20357,10 @@ class PropertyCalculationService {
|
|
20356
20357
|
return new Badge('Monitoring performance');
|
20357
20358
|
}
|
20358
20359
|
}
|
20359
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20360
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20360
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCalculationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20361
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCalculationService, providedIn: 'root' }); }
|
20361
20362
|
}
|
20362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20363
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyCalculationService, decorators: [{
|
20363
20364
|
type: Injectable,
|
20364
20365
|
args: [{
|
20365
20366
|
providedIn: 'root'
|
@@ -20417,10 +20418,10 @@ class PropertyTransactionReportService {
|
|
20417
20418
|
getDepreciations() {
|
20418
20419
|
return this.depreciationService.get().pipe(map((depreciations) => depreciations.getByChartAccountsCategories(CHART_ACCOUNTS_CATEGORIES.property)));
|
20419
20420
|
}
|
20420
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20421
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20421
|
+
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 }); }
|
20422
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyTransactionReportService, providedIn: 'root' }); }
|
20422
20423
|
}
|
20423
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PropertyTransactionReportService, decorators: [{
|
20424
20425
|
type: Injectable,
|
20425
20426
|
args: [{
|
20426
20427
|
providedIn: 'root'
|
@@ -20440,10 +20441,10 @@ class CurrentFirmBranchService {
|
|
20440
20441
|
set(firmBranches) {
|
20441
20442
|
this.firmBranchIds$.next(firmBranches.map(branch => branch.id));
|
20442
20443
|
}
|
20443
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20444
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20444
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CurrentFirmBranchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20445
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CurrentFirmBranchService, providedIn: 'root' }); }
|
20445
20446
|
}
|
20446
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CurrentFirmBranchService, decorators: [{
|
20447
20448
|
type: Injectable,
|
20448
20449
|
args: [{
|
20449
20450
|
providedIn: 'root'
|
@@ -20539,10 +20540,10 @@ class XlsxService {
|
|
20539
20540
|
});
|
20540
20541
|
FileSaver.saveAs(data, `${fileName}.xlsx`);
|
20541
20542
|
}
|
20542
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20543
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20543
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: XlsxService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20544
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: XlsxService, providedIn: 'root' }); }
|
20544
20545
|
}
|
20545
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20546
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: XlsxService, decorators: [{
|
20546
20547
|
type: Injectable,
|
20547
20548
|
args: [{
|
20548
20549
|
providedIn: 'root'
|
@@ -20576,10 +20577,10 @@ class UserSwitcherInterceptor {
|
|
20576
20577
|
intercept(request, next) {
|
20577
20578
|
return next.handle(this.switch(request, this.userSwitcherService.get()));
|
20578
20579
|
}
|
20579
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20580
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20580
|
+
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 }); }
|
20581
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherInterceptor }); }
|
20581
20582
|
}
|
20582
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20583
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UserSwitcherInterceptor, decorators: [{
|
20583
20584
|
type: Injectable
|
20584
20585
|
}], ctorParameters: () => [{ type: UserSwitcherService }, { type: undefined, decorators: [{
|
20585
20586
|
type: Inject,
|
@@ -20922,10 +20923,10 @@ class PreloaderInterceptor {
|
|
20922
20923
|
findEndpoint(requestPath) {
|
20923
20924
|
return Object.values(ENDPOINTS).find((endpoint) => endpoint.test(requestPath));
|
20924
20925
|
}
|
20925
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20926
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20926
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderInterceptor, deps: [{ token: PreloaderService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20927
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderInterceptor }); }
|
20927
20928
|
}
|
20928
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20929
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: PreloaderInterceptor, decorators: [{
|
20929
20930
|
type: Injectable
|
20930
20931
|
}], ctorParameters: () => [{ type: PreloaderService }] });
|
20931
20932
|
|
@@ -20950,10 +20951,10 @@ class BasiqTokenInterceptor {
|
|
20950
20951
|
}
|
20951
20952
|
});
|
20952
20953
|
}
|
20953
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20954
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20954
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenInterceptor, deps: [{ token: BasiqTokenService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20955
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenInterceptor }); }
|
20955
20956
|
}
|
20956
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20957
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqTokenInterceptor, decorators: [{
|
20957
20958
|
type: Injectable
|
20958
20959
|
}], ctorParameters: () => [{ type: BasiqTokenService }] });
|
20959
20960
|
|
@@ -20976,10 +20977,10 @@ class BasiqClientIdInterceptor {
|
|
20976
20977
|
url: request.url.replace('null', basiqClientId)
|
20977
20978
|
});
|
20978
20979
|
}
|
20979
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
20980
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
20980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqClientIdInterceptor, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
20981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqClientIdInterceptor }); }
|
20981
20982
|
}
|
20982
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
20983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BasiqClientIdInterceptor, decorators: [{
|
20983
20984
|
type: Injectable
|
20984
20985
|
}], ctorParameters: () => [{ type: UserService }] });
|
20985
20986
|
|
@@ -21014,10 +21015,10 @@ class RewardfulInterceptor {
|
|
21014
21015
|
&& (window['Rewardful'].referral || window['Rewardful'].coupon?.id)
|
21015
21016
|
&& registrationUrls.some(registrationUrl => request.url.includes(registrationUrl));
|
21016
21017
|
}
|
21017
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21018
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21018
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RewardfulInterceptor, deps: [{ token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21019
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RewardfulInterceptor }); }
|
21019
21020
|
}
|
21020
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21021
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: RewardfulInterceptor, decorators: [{
|
21021
21022
|
type: Injectable
|
21022
21023
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
21023
21024
|
type: Inject,
|
@@ -21046,10 +21047,10 @@ class AussieInterceptor {
|
|
21046
21047
|
}
|
21047
21048
|
});
|
21048
21049
|
}
|
21049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21050
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21050
|
+
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 }); }
|
21051
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieInterceptor }); }
|
21051
21052
|
}
|
21052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AussieInterceptor, decorators: [{
|
21053
21054
|
type: Injectable
|
21054
21055
|
}], ctorParameters: () => [{ type: AussieService }, { type: undefined, decorators: [{
|
21055
21056
|
type: Inject,
|
@@ -21057,9 +21058,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
21057
21058
|
}] }] });
|
21058
21059
|
|
21059
21060
|
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: "
|
21061
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21062
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule }); }
|
21063
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule, providers: [
|
21063
21064
|
{
|
21064
21065
|
provide: HTTP_INTERCEPTORS,
|
21065
21066
|
useClass: CorelogicInterceptor,
|
@@ -21103,7 +21104,7 @@ class InterceptorsModule {
|
|
21103
21104
|
}
|
21104
21105
|
] }); }
|
21105
21106
|
}
|
21106
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21107
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: InterceptorsModule, decorators: [{
|
21107
21108
|
type: NgModule,
|
21108
21109
|
args: [{
|
21109
21110
|
providers: [
|
@@ -21156,13 +21157,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.4", ngImpor
|
|
21156
21157
|
* https://angular.io/guide/creating-libraries
|
21157
21158
|
*/
|
21158
21159
|
class CoreModule {
|
21159
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21160
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
21160
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
21161
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, imports: [CommonModule,
|
21161
21162
|
InterceptorsModule] }); }
|
21162
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
21163
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, imports: [CommonModule,
|
21163
21164
|
InterceptorsModule] }); }
|
21164
21165
|
}
|
21165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: CoreModule, decorators: [{
|
21166
21167
|
type: NgModule,
|
21167
21168
|
args: [{
|
21168
21169
|
declarations: [],
|
@@ -21182,10 +21183,10 @@ class AppCurrencyPipe extends CurrencyPipe {
|
|
21182
21183
|
digitsInfo = digitsInfo ?? '1.0-' + (value.toString().match(/[1-9]/)?.index || 2);
|
21183
21184
|
return super.transform(value, currencyCode, display, digitsInfo, locale);
|
21184
21185
|
}
|
21185
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21186
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
21186
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppCurrencyPipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
|
21187
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: AppCurrencyPipe, isStandalone: true, name: "appCurrency" }); }
|
21187
21188
|
}
|
21188
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppCurrencyPipe, decorators: [{
|
21189
21190
|
type: Pipe,
|
21190
21191
|
args: [{
|
21191
21192
|
name: 'appCurrency',
|
@@ -21200,10 +21201,10 @@ class SafeUrlPipe {
|
|
21200
21201
|
transform(url) {
|
21201
21202
|
return this.sanitizer.bypassSecurityTrustResourceUrl(url);
|
21202
21203
|
}
|
21203
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21204
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
21204
|
+
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 }); }
|
21205
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
|
21205
21206
|
}
|
21206
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21207
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SafeUrlPipe, decorators: [{
|
21207
21208
|
type: Pipe,
|
21208
21209
|
args: [{
|
21209
21210
|
name: 'safeUrl',
|
@@ -21218,10 +21219,10 @@ class AppPercentPipe {
|
|
21218
21219
|
transform(value, total, floor) {
|
21219
21220
|
return this.percentagePipe.transform(value, total, floor) + '%';
|
21220
21221
|
}
|
21221
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21222
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
21222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppPercentPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
21223
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.1.2", ngImport: i0, type: AppPercentPipe, isStandalone: true, name: "percentage" }); }
|
21223
21224
|
}
|
21224
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: AppPercentPipe, decorators: [{
|
21225
21226
|
type: Pipe,
|
21226
21227
|
args: [{
|
21227
21228
|
name: 'percentage',
|
@@ -21595,10 +21596,10 @@ class BusinessResolver {
|
|
21595
21596
|
resolve() {
|
21596
21597
|
return this.soleDetailsService.getFirst();
|
21597
21598
|
}
|
21598
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21599
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21599
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BusinessResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21600
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BusinessResolver, providedIn: 'root' }); }
|
21600
21601
|
}
|
21601
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: BusinessResolver, decorators: [{
|
21602
21603
|
type: Injectable,
|
21603
21604
|
args: [{ providedIn: 'root' }]
|
21604
21605
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -21610,10 +21611,10 @@ class SoleDetailsResolver {
|
|
21610
21611
|
resolve() {
|
21611
21612
|
return this.soleDetails.getFirst();
|
21612
21613
|
}
|
21613
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
21614
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
21614
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsResolver, deps: [{ token: SoleDetailsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
21615
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsResolver, providedIn: 'root' }); }
|
21615
21616
|
}
|
21616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
21617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: SoleDetailsResolver, decorators: [{
|
21617
21618
|
type: Injectable,
|
21618
21619
|
args: [{ providedIn: 'root' }]
|
21619
21620
|
}], ctorParameters: () => [{ type: SoleDetailsService }] });
|
@@ -22415,10 +22416,10 @@ class UniqueEmailValidator {
|
|
22415
22416
|
validate(control) {
|
22416
22417
|
return this.userService.search(control.value).pipe(map(user => user ? { emailIsUsed: true } : null));
|
22417
22418
|
}
|
22418
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
22419
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
22419
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UniqueEmailValidator, deps: [{ token: UserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22420
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UniqueEmailValidator, providedIn: 'root' }); }
|
22420
22421
|
}
|
22421
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
22422
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: UniqueEmailValidator, decorators: [{
|
22422
22423
|
type: Injectable,
|
22423
22424
|
args: [{ providedIn: 'root' }]
|
22424
22425
|
}], ctorParameters: () => [{ type: UserService }] });
|
@@ -22500,10 +22501,10 @@ class ClientMovementForm extends AbstractForm {
|
|
22500
22501
|
firmBranch: new FormControl(clientMovement.firmBranch, [Validators.required]),
|
22501
22502
|
}, clientMovement);
|
22502
22503
|
}
|
22503
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
22504
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
22504
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementForm, deps: [{ token: ClientMovement }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22505
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementForm, providedIn: 'root' }); }
|
22505
22506
|
}
|
22506
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
22507
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: ClientMovementForm, decorators: [{
|
22507
22508
|
type: Injectable,
|
22508
22509
|
args: [{
|
22509
22510
|
providedIn: 'root'
|
@@ -22516,10 +22517,10 @@ class EmployeeDetailsForm extends AbstractForm {
|
|
22516
22517
|
firmBranches: new FormControl(employeeDetails.firmBranches, [Validators.required]),
|
22517
22518
|
}, employeeDetails);
|
22518
22519
|
}
|
22519
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
22520
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "
|
22520
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeDetailsForm, deps: [{ token: EmployeeDetails }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
22521
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeDetailsForm, providedIn: 'root' }); }
|
22521
22522
|
}
|
22522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
22523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.2", ngImport: i0, type: EmployeeDetailsForm, decorators: [{
|
22523
22524
|
type: Injectable,
|
22524
22525
|
args: [{
|
22525
22526
|
providedIn: 'root'
|