taxtank-core 2.0.16 → 2.0.18
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/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +76 -81
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +411 -443
- package/package.json +3 -2
package/index.d.ts
CHANGED
@@ -4,6 +4,7 @@ import * as i1 from '@angular/common';
|
|
4
4
|
import { CurrencyPipe, PercentPipe, DatePipe } from '@angular/common';
|
5
5
|
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
6
6
|
import { UserRolesEnum, JwtService, MixpanelService } from 'taxtank-core/common';
|
7
|
+
import { TreeNode } from 'primeng/api';
|
7
8
|
import { unitOfTime } from 'moment';
|
8
9
|
import { DateRange as DateRange$1 } from 'moment-range';
|
9
10
|
import { ValidatorFn, AbstractControl, FormGroup, AbstractControlOptions, AsyncValidatorFn, FormArray, UntypedFormGroup, UntypedFormArray, AsyncValidator, ValidationErrors, FormControl, UntypedFormControl } from '@angular/forms';
|
@@ -2595,332 +2596,44 @@ declare class PropertyCategory$1 extends PropertyCategory {
|
|
2595
2596
|
isVacantLand(): boolean;
|
2596
2597
|
}
|
2597
2598
|
|
2598
|
-
declare class
|
2599
|
-
|
2600
|
-
|
2601
|
-
|
2602
|
-
|
2603
|
-
createdAt?: Date;
|
2604
|
-
updatedAt?: Date;
|
2605
|
-
|
2606
|
-
|
2607
|
-
|
2608
|
-
|
2609
|
-
|
2610
|
-
updatedBy?: User;
|
2611
|
-
}
|
2612
|
-
|
2613
|
-
declare class PropertyCategoryMovement$1 extends ObservableModel {
|
2614
|
-
static className: string;
|
2615
|
-
fromDate?: Date;
|
2616
|
-
toDate?: Date;
|
2617
|
-
deletedAt?: Date;
|
2618
|
-
createdAt?: Date;
|
2619
|
-
updatedAt?: Date;
|
2620
|
-
property?: Property;
|
2621
|
-
propertyCategory?: PropertyCategory;
|
2622
|
-
valuation?: PropertyValuation$1;
|
2623
|
-
createdBy?: User;
|
2624
|
-
updatedBy?: User;
|
2625
|
-
}
|
2626
|
-
|
2627
|
-
declare class PropertyValuation$1 extends ObservableModel {
|
2628
|
-
static className: string;
|
2629
|
-
date?: Date;
|
2630
|
-
marketValue?: number;
|
2631
|
-
deletedAt?: Date;
|
2632
|
-
createdAt?: Date;
|
2633
|
-
updatedAt?: Date;
|
2634
|
-
property?: Property;
|
2635
|
-
document?: PropertyDocument$1;
|
2636
|
-
categoryMovement?: PropertyCategoryMovement$1;
|
2637
|
-
isCorelogic: boolean;
|
2638
|
-
}
|
2639
|
-
|
2640
|
-
/**
|
2641
|
-
* Enum with asset entity types
|
2642
|
-
*/
|
2643
|
-
declare enum AssetEntityTypeEnum {
|
2644
|
-
PROPERTIES = "properties",
|
2645
|
-
FOLDERS = "folders",
|
2646
|
-
DEPRECIATIONS = "depreciations",
|
2647
|
-
TRANSACTIONS = "transactions",
|
2648
|
-
MESSAGES = "messages"
|
2649
|
-
}
|
2650
|
-
|
2651
|
-
/**
|
2652
|
-
* Enum with asset types
|
2653
|
-
*/
|
2654
|
-
declare enum AssetTypeEnum {
|
2655
|
-
PROPERTY = "property",
|
2656
|
-
DOCUMENT = "document",
|
2657
|
-
MESSAGE = "message",
|
2658
|
-
USER_PHOTO = "userPhoto",
|
2659
|
-
PROPERTY_PHOTO = "propertyPhoto",
|
2660
|
-
FIRM_PHOTO = "firmPhoto"
|
2661
|
-
}
|
2662
|
-
|
2663
|
-
/**
|
2664
|
-
* Interface for assets (documents, receipts, e.t.c.)
|
2665
|
-
*/
|
2666
|
-
interface IAsset {
|
2667
|
-
id?: number;
|
2668
|
-
type: AssetTypeEnum;
|
2669
|
-
entityType: AssetEntityTypeEnum;
|
2670
|
-
name?: string;
|
2671
|
-
originalName?: string;
|
2672
|
-
size?: number;
|
2673
|
-
mimeType?: string;
|
2674
|
-
createdAt?: Date;
|
2675
|
-
user?: User$1;
|
2676
|
-
}
|
2677
|
-
|
2678
|
-
/**
|
2679
|
-
* @deprecated Use {@link ChartSerie} class instead
|
2680
|
-
*/
|
2681
|
-
interface IChartSerie {
|
2682
|
-
label: string;
|
2683
|
-
value: number;
|
2684
|
-
order?: any;
|
2685
|
-
}
|
2686
|
-
|
2687
|
-
/**
|
2688
|
-
* @deprecated Use {@link ChartData} class instead
|
2689
|
-
*/
|
2690
|
-
interface IChartData {
|
2691
|
-
id?: number | string;
|
2692
|
-
name: string;
|
2693
|
-
data: IChartSerie[] | any;
|
2694
|
-
zones?: object[];
|
2695
|
-
}
|
2696
|
-
|
2697
|
-
/**
|
2698
|
-
* Interface for documents
|
2699
|
-
*/
|
2700
|
-
interface DocumentInterface extends AbstractModel {
|
2701
|
-
get parent(): AbstractModel;
|
2702
|
-
file?: AppFile;
|
2703
|
-
}
|
2704
|
-
|
2705
|
-
/**
|
2706
|
-
* Interface for entities with documents
|
2707
|
-
*/
|
2708
|
-
interface Documentable {
|
2709
|
-
id?: number;
|
2710
|
-
documents?: DocumentInterface[];
|
2711
|
-
}
|
2712
|
-
|
2713
|
-
/**
|
2714
|
-
* Interface for classes that subscribes on Event Dispatcher service
|
2715
|
-
* @TODO remove I prefix. Check all interfaces
|
2716
|
-
*/
|
2717
|
-
interface IEventListener {
|
2718
|
-
/**
|
2719
|
-
* Event Dispatcher Service .on() method listeners
|
2720
|
-
*/
|
2721
|
-
listenEvents(): void;
|
2722
|
-
}
|
2723
|
-
|
2724
|
-
declare class ChartAccountsHeading extends ChartAccountsHeading$1 {
|
2725
|
-
chartAccounts: ChartAccounts[];
|
2726
|
-
}
|
2727
|
-
|
2728
|
-
declare class ChartAccountsMetaField extends ChartAccountsMetaField$1 {
|
2729
|
-
/**
|
2730
|
-
* Check if meta field id is related to SHARE_PERCENTAGE value
|
2731
|
-
*/
|
2732
|
-
isSharePercentage(): boolean;
|
2733
|
-
isHours(): boolean;
|
2734
|
-
isFranked(): boolean;
|
2735
|
-
isFrankingCredit(): boolean;
|
2736
|
-
}
|
2737
|
-
|
2738
|
-
declare class ChartAccountsValue extends ChartAccountsValue$1 {
|
2739
|
-
}
|
2740
|
-
|
2741
|
-
declare enum ChartAccountsTaxLabelsEnum {
|
2742
|
-
TAX_WITHHELD = "Tax withheld",
|
2743
|
-
TAX_PAID = "Tax Paid",
|
2744
|
-
TAX_DEDUCTED = "Tax Deducted"
|
2745
|
-
}
|
2746
|
-
|
2747
|
-
declare class ChartAccounts extends ChartAccounts$1 {
|
2748
|
-
/**
|
2749
|
-
* Australian GST percent value (VAT)
|
2750
|
-
*/
|
2751
|
-
static GSTRatio: number;
|
2752
|
-
static GSTCoefficient: number;
|
2753
|
-
static GSTPercent: number;
|
2754
|
-
static systemList: (ChartAccountsListEnum | BusinessChartAccountsEnum)[];
|
2755
|
-
static homeOfficeList: (ChartAccountsListEnum | BusinessChartAccountsEnum)[];
|
2756
|
-
heading: ChartAccountsHeading;
|
2757
|
-
metaFields: ChartAccountsMetaField[];
|
2758
|
-
values: ChartAccountsValue[];
|
2759
|
-
/**
|
2760
|
-
* Return name as string
|
2761
|
-
*/
|
2762
|
-
toString(): string;
|
2763
|
-
/**
|
2764
|
-
* construction cost, 1 building=1 buildingAtCost depreciation
|
2765
|
-
*/
|
2766
|
-
isBuildingAtCost(): boolean;
|
2767
|
-
/**
|
2768
|
-
* Check if chart accounts id is related for 'Kms travelled for work' category
|
2769
|
-
*/
|
2770
|
-
isKmsForWork(): boolean;
|
2771
|
-
/**
|
2772
|
-
* Check if chart accounts id is related for 'Kms travelled for sole' category
|
2773
|
-
*/
|
2774
|
-
isKmsForSole(): boolean;
|
2775
|
-
isKms(): boolean;
|
2776
|
-
/**
|
2777
|
-
* special type used for just pre-paying tax to the ATO, uses on tax summary
|
2778
|
-
*/
|
2779
|
-
isNRAS(): boolean;
|
2780
|
-
/**
|
2781
|
-
* Check if chart accounts id is related for 'Interest on Loan' category
|
2782
|
-
*/
|
2783
|
-
isInterestOnLoan(): boolean;
|
2784
|
-
/**
|
2785
|
-
* Check if chart accounts id is related for 'Motor Vehicles' category
|
2786
|
-
*/
|
2787
|
-
isVehicles(): boolean;
|
2788
|
-
/**
|
2789
|
-
* Check if chart accounts id is related for 'Interest Earned' category
|
2790
|
-
*/
|
2791
|
-
isInterestEarned(): boolean;
|
2792
|
-
/**
|
2793
|
-
* Check if chart accounts id is related for 'Trust Income' category
|
2794
|
-
*/
|
2795
|
-
isTrustIncome(): boolean;
|
2796
|
-
/**
|
2797
|
-
* Check if chart accounts id is related for 'Motor vehicles (commercial cars)' category
|
2798
|
-
*/
|
2799
|
-
isCommercialVehicles(): boolean;
|
2800
|
-
/**
|
2801
|
-
* Check if chart accounts is work income
|
2802
|
-
*/
|
2803
|
-
isWorkIncome(): boolean;
|
2804
|
-
isVehicleExpense(): boolean;
|
2805
|
-
/**
|
2806
|
-
* Check if chart accounts is other income
|
2807
|
-
*/
|
2808
|
-
isOtherIncome(): boolean;
|
2809
|
-
isIncome(): boolean;
|
2810
|
-
isExpense(): boolean;
|
2811
|
-
isProperty(): boolean;
|
2812
|
-
isWork(): boolean;
|
2813
|
-
isSole(): boolean;
|
2814
|
-
isWorkExpense(): boolean;
|
2815
|
-
isSoleExpense(): boolean;
|
2816
|
-
isHoldingExpense(): boolean;
|
2817
|
-
/**
|
2818
|
-
* Check if chart accounts is property expense
|
2819
|
-
*/
|
2820
|
-
isPropertyExpense(): boolean;
|
2821
|
-
/**
|
2822
|
-
* Check if chart accounts is property income
|
2823
|
-
*/
|
2824
|
-
isPropertyIncome(): boolean;
|
2825
|
-
isPersonal(): boolean;
|
2826
|
-
isPersonalExpense(): boolean;
|
2827
|
-
/**
|
2828
|
-
* Check if chart accounts category is depreciation
|
2829
|
-
*/
|
2830
|
-
isDepreciation(): boolean;
|
2831
|
-
/**
|
2832
|
-
* Check if transaction chart account is work related car expenses
|
2833
|
-
*/
|
2834
|
-
isVehicleLoanExpense(): boolean;
|
2835
|
-
isVehicleLoanPrinciple(): boolean;
|
2836
|
-
isVehicleLoanInterest(): boolean;
|
2837
|
-
/**
|
2838
|
-
* Get chart accounts value for current financial year
|
2839
|
-
*/
|
2840
|
-
getCurrentYearValue(): ChartAccountsValue;
|
2841
|
-
/**
|
2842
|
-
* Get chart accounts value by financial year
|
2843
|
-
*/
|
2844
|
-
getValueByYear(year: number): ChartAccountsValue;
|
2845
|
-
/**
|
2846
|
-
* no way to check how much used for work/sole, so we let user adjust it
|
2847
|
-
* except vehicle expense, which is equal to vehicleClaim.workUsage
|
2848
|
-
* except when taxablePercent=0, but not ENTERTAINMENT
|
2849
|
-
*/
|
2850
|
-
isClaimPercentEditable(): boolean;
|
2851
|
-
/**
|
2852
|
-
* get label for transaction tax field depended on selected chart account.
|
2853
|
-
* tax type depends on chart account heading or category.
|
2854
|
-
*/
|
2855
|
-
getTaxLabel(): ChartAccountsTaxLabelsEnum;
|
2856
|
-
isETP(): boolean;
|
2857
|
-
isSalary(): boolean;
|
2858
|
-
/**
|
2859
|
-
* chart accounts included in salary, like tips or allowance
|
2860
|
-
*/
|
2861
|
-
isAdjustmentIncluded(): boolean;
|
2862
|
-
isPropertyCapitalWorks(): boolean;
|
2863
|
-
hasTaxField(): boolean;
|
2864
|
-
isTaxable(): boolean;
|
2865
|
-
isTransfer(): boolean;
|
2866
|
-
isDividends(): boolean;
|
2867
|
-
isHomeOfficeExpense(): boolean;
|
2868
|
-
isHomeOfficeWorkHours(): boolean;
|
2869
|
-
/**
|
2870
|
-
* income requiring extra data like adjustments/payer/etc
|
2871
|
-
*/
|
2872
|
-
isIncomeWithMeta(): boolean;
|
2873
|
-
}
|
2874
|
-
|
2875
|
-
/**
|
2876
|
-
* Interface, which should be implemented for tank-type checking
|
2877
|
-
* @TODO remove I prefix and check all interfaces
|
2878
|
-
*/
|
2879
|
-
interface ITank {
|
2880
|
-
isPropertyTank(): boolean;
|
2881
|
-
isWorkTank(): boolean;
|
2882
|
-
isSoleTank(): boolean;
|
2883
|
-
}
|
2884
|
-
|
2885
|
-
/**
|
2886
|
-
* Interface with common transactions fields and methods
|
2887
|
-
* @TODO remove I prefix in all interfaces. Naming issue: need to get common name for transaction and depreciation or
|
2888
|
-
* rename Transaction class or cut transaction-related logic from Depreciation and never work with Depreciation as with Transaction.
|
2889
|
-
* @TODO add more common fields from Transaction and Depreciation if required
|
2890
|
-
*/
|
2891
|
-
interface Expense extends ITank {
|
2892
|
-
amount: number;
|
2893
|
-
chartAccounts: ChartAccounts;
|
2894
|
-
}
|
2895
|
-
|
2896
|
-
/**
|
2897
|
-
* Interface for income source forecasts
|
2898
|
-
*/
|
2899
|
-
interface IIncomeSourceForecast {
|
2900
|
-
id?: number;
|
2901
|
-
financialYear?: number;
|
2902
|
-
incomeSource?: IncomeSource;
|
2903
|
-
netPay?: number;
|
2904
|
-
trustType?: IncomeSourceForecastTrustTypeEnum;
|
2599
|
+
declare class PropertyCategoryMovement$1 extends ObservableModel {
|
2600
|
+
static className: string;
|
2601
|
+
fromDate?: Date;
|
2602
|
+
toDate?: Date;
|
2603
|
+
deletedAt?: Date;
|
2604
|
+
createdAt?: Date;
|
2605
|
+
updatedAt?: Date;
|
2606
|
+
property?: Property;
|
2607
|
+
propertyCategory?: PropertyCategory;
|
2608
|
+
valuation?: PropertyValuation$1;
|
2609
|
+
createdBy?: User;
|
2610
|
+
updatedBy?: User;
|
2905
2611
|
}
|
2906
2612
|
|
2907
|
-
|
2908
|
-
|
2909
|
-
|
2613
|
+
declare class DocumentFolder$1 extends AbstractModel {
|
2614
|
+
name?: string;
|
2615
|
+
deletedAt?: Date;
|
2616
|
+
user?: User;
|
2617
|
+
parent?: DocumentFolder$1;
|
2618
|
+
property?: Property;
|
2910
2619
|
}
|
2911
2620
|
|
2912
|
-
|
2913
|
-
|
2914
|
-
|
2915
|
-
*/
|
2916
|
-
interface Updatable<T> {
|
2917
|
-
update: EventEmitter<T>;
|
2621
|
+
declare class FolderDocument extends AbstractModel {
|
2622
|
+
file?: File$1;
|
2623
|
+
folder?: DocumentFolder$1;
|
2918
2624
|
}
|
2919
2625
|
|
2920
|
-
declare class
|
2921
|
-
|
2922
|
-
|
2923
|
-
|
2626
|
+
declare class PropertyValuation$1 extends ObservableModel {
|
2627
|
+
static className: string;
|
2628
|
+
date?: Date;
|
2629
|
+
marketValue?: number;
|
2630
|
+
deletedAt?: Date;
|
2631
|
+
createdAt?: Date;
|
2632
|
+
updatedAt?: Date;
|
2633
|
+
property?: Property;
|
2634
|
+
document?: FolderDocument;
|
2635
|
+
categoryMovement?: PropertyCategoryMovement$1;
|
2636
|
+
isCorelogic: boolean;
|
2924
2637
|
}
|
2925
2638
|
|
2926
2639
|
declare class PropertyCategoryMovement extends PropertyCategoryMovement$1 {
|
@@ -2934,7 +2647,7 @@ declare class PropertyCategoryMovement extends PropertyCategoryMovement$1 {
|
|
2934
2647
|
declare class PropertyValuation extends PropertyValuation$1 {
|
2935
2648
|
date: Date;
|
2936
2649
|
isCorelogic: boolean;
|
2937
|
-
document:
|
2650
|
+
document: FolderDocument;
|
2938
2651
|
categoryMovement: PropertyCategoryMovement;
|
2939
2652
|
get financialYear(): number;
|
2940
2653
|
isCurrentYear(): boolean;
|
@@ -3197,111 +2910,391 @@ declare enum PropertyEquityChartTypeEnum {
|
|
3197
2910
|
LOAN_BALANCE = "loanBalance"
|
3198
2911
|
}
|
3199
2912
|
|
3200
|
-
/**
|
3201
|
-
* class contains equity information for passed financial year
|
3202
|
-
*/
|
3203
|
-
declare class PropertyEquityChartItem {
|
3204
|
-
year: number;
|
3205
|
-
marketValue: number;
|
3206
|
-
loanBalance: number;
|
3207
|
-
constructor(year: number, marketValue?: number, loanBalance?: number);
|
2913
|
+
/**
|
2914
|
+
* class contains equity information for passed financial year
|
2915
|
+
*/
|
2916
|
+
declare class PropertyEquityChartItem {
|
2917
|
+
year: number;
|
2918
|
+
marketValue: number;
|
2919
|
+
loanBalance: number;
|
2920
|
+
constructor(year: number, marketValue?: number, loanBalance?: number);
|
2921
|
+
/**
|
2922
|
+
* calculate equity position
|
2923
|
+
*/
|
2924
|
+
get equityPosition(): number;
|
2925
|
+
/**
|
2926
|
+
* return this equity position instance as chart serie
|
2927
|
+
* @param type
|
2928
|
+
*/
|
2929
|
+
getSerie(type: PropertyEquityChartTypeEnum): number[];
|
2930
|
+
}
|
2931
|
+
|
2932
|
+
/**
|
2933
|
+
* class contain actual and forecasted market values and loan balances for passed properties
|
2934
|
+
* X axis - years from the first actual data year to the last forecasted year
|
2935
|
+
* Y axis - amounts of market values, loan balances
|
2936
|
+
* Also on hover appear equity positions point
|
2937
|
+
*/
|
2938
|
+
declare class PropertyEquityChartData {
|
2939
|
+
private properties;
|
2940
|
+
private valuations;
|
2941
|
+
private bankAccounts;
|
2942
|
+
private loans;
|
2943
|
+
private registerDate;
|
2944
|
+
list: PropertyEquityChartItem[];
|
2945
|
+
currentYear: number;
|
2946
|
+
constructor(properties: PropertyCollection, valuations: PropertyValuationCollection, bankAccounts: BankAccountCollection, loans: LoanCollection, registerDate: Date);
|
2947
|
+
/**
|
2948
|
+
* get items list in chart series format
|
2949
|
+
* @param type
|
2950
|
+
*/
|
2951
|
+
getChartSeries(type: PropertyEquityChartTypeEnum): number[][];
|
2952
|
+
/**
|
2953
|
+
* get prepared chart data
|
2954
|
+
*/
|
2955
|
+
getChartData(): object[];
|
2956
|
+
/**
|
2957
|
+
* create empty equity position item for each year in collection
|
2958
|
+
*/
|
2959
|
+
private initItems;
|
2960
|
+
/**
|
2961
|
+
* collect equity position items with past values from properties forecasts
|
2962
|
+
*/
|
2963
|
+
private buildHistoryItems;
|
2964
|
+
/**
|
2965
|
+
* @TODO remove, there is no difference between actual and history calculations
|
2966
|
+
* set actual year's real data
|
2967
|
+
* @private
|
2968
|
+
*/
|
2969
|
+
private buildActualItem;
|
2970
|
+
/**
|
2971
|
+
* collect equity position items with forecasted (future) calculated values
|
2972
|
+
*/
|
2973
|
+
private buildForecastedItems;
|
2974
|
+
/**
|
2975
|
+
* Get property loan balance by financial year
|
2976
|
+
* @param property Property instance for filter
|
2977
|
+
* @param year Financial year number
|
2978
|
+
* @private
|
2979
|
+
*/
|
2980
|
+
private getLoanBalanceByYear;
|
2981
|
+
getMarketValueForPropertyByYear(property: Property$1, year: number): number;
|
2982
|
+
/**
|
2983
|
+
* Check if loan balance is 0 and set it as null (to not to draw point on the chart)
|
2984
|
+
*/
|
2985
|
+
private checkZeroLoanBalance;
|
2986
|
+
/**
|
2987
|
+
* Check if market value is 0 and set it as null (to not to draw point on the chart)
|
2988
|
+
*/
|
2989
|
+
private checkZeroMarketValue;
|
2990
|
+
}
|
2991
|
+
|
2992
|
+
declare class PropertyShare extends PropertyShare$1 {
|
2993
|
+
fromDate: Date;
|
2994
|
+
toDate: Date;
|
2995
|
+
user: User$1;
|
2996
|
+
invite: RegistrationInvite;
|
2997
|
+
property: Property$1;
|
2998
|
+
email: string;
|
2999
|
+
isAccepted(): boolean;
|
3000
|
+
isPending(): boolean;
|
3001
|
+
isRejected(): boolean;
|
3002
|
+
get statusName(): string;
|
3003
|
+
/**
|
3004
|
+
* Return full user name if user is already registered.
|
3005
|
+
* Otherwise - return first name from invitation
|
3006
|
+
*/
|
3007
|
+
get userName(): string;
|
3008
|
+
}
|
3009
|
+
|
3010
|
+
declare class BorrowingReport$1 extends AbstractModel {
|
3011
|
+
netRentIncome?: number;
|
3012
|
+
loanRepaymentAmount?: number;
|
3013
|
+
netSalary?: number;
|
3014
|
+
spouseNetSalary?: number;
|
3015
|
+
otherLiabilities?: number;
|
3016
|
+
livingExpenses?: number;
|
3017
|
+
user?: User;
|
3018
|
+
}
|
3019
|
+
|
3020
|
+
/**
|
3021
|
+
* Enum with asset entity types
|
3022
|
+
*/
|
3023
|
+
declare enum AssetEntityTypeEnum {
|
3024
|
+
PROPERTIES = "properties",
|
3025
|
+
FOLDERS = "folders",
|
3026
|
+
DEPRECIATIONS = "depreciations",
|
3027
|
+
TRANSACTIONS = "transactions",
|
3028
|
+
MESSAGES = "messages"
|
3029
|
+
}
|
3030
|
+
|
3031
|
+
/**
|
3032
|
+
* Enum with asset types
|
3033
|
+
*/
|
3034
|
+
declare enum AssetTypeEnum {
|
3035
|
+
PROPERTY = "property",
|
3036
|
+
DOCUMENT = "document",
|
3037
|
+
MESSAGE = "message",
|
3038
|
+
USER_PHOTO = "userPhoto",
|
3039
|
+
PROPERTY_PHOTO = "propertyPhoto",
|
3040
|
+
FIRM_PHOTO = "firmPhoto"
|
3041
|
+
}
|
3042
|
+
|
3043
|
+
/**
|
3044
|
+
* Interface for assets (documents, receipts, e.t.c.)
|
3045
|
+
*/
|
3046
|
+
interface IAsset {
|
3047
|
+
id?: number;
|
3048
|
+
type: AssetTypeEnum;
|
3049
|
+
entityType: AssetEntityTypeEnum;
|
3050
|
+
name?: string;
|
3051
|
+
originalName?: string;
|
3052
|
+
size?: number;
|
3053
|
+
mimeType?: string;
|
3054
|
+
createdAt?: Date;
|
3055
|
+
user?: User$1;
|
3056
|
+
}
|
3057
|
+
|
3058
|
+
/**
|
3059
|
+
* @deprecated Use {@link ChartSerie} class instead
|
3060
|
+
*/
|
3061
|
+
interface IChartSerie {
|
3062
|
+
label: string;
|
3063
|
+
value: number;
|
3064
|
+
order?: any;
|
3065
|
+
}
|
3066
|
+
|
3067
|
+
/**
|
3068
|
+
* @deprecated Use {@link ChartData} class instead
|
3069
|
+
*/
|
3070
|
+
interface IChartData {
|
3071
|
+
id?: number | string;
|
3072
|
+
name: string;
|
3073
|
+
data: IChartSerie[] | any;
|
3074
|
+
zones?: object[];
|
3075
|
+
}
|
3076
|
+
|
3077
|
+
/**
|
3078
|
+
* Interface for documents
|
3079
|
+
*/
|
3080
|
+
interface DocumentInterface extends AbstractModel {
|
3081
|
+
get parent(): AbstractModel;
|
3082
|
+
file?: AppFile;
|
3083
|
+
}
|
3084
|
+
|
3085
|
+
/**
|
3086
|
+
* Interface for entities with documents
|
3087
|
+
*/
|
3088
|
+
interface Documentable {
|
3089
|
+
id?: number;
|
3090
|
+
documents?: DocumentInterface[];
|
3091
|
+
}
|
3092
|
+
|
3093
|
+
/**
|
3094
|
+
* Interface for classes that subscribes on Event Dispatcher service
|
3095
|
+
* @TODO remove I prefix. Check all interfaces
|
3096
|
+
*/
|
3097
|
+
interface IEventListener {
|
3098
|
+
/**
|
3099
|
+
* Event Dispatcher Service .on() method listeners
|
3100
|
+
*/
|
3101
|
+
listenEvents(): void;
|
3102
|
+
}
|
3103
|
+
|
3104
|
+
declare class ChartAccountsHeading extends ChartAccountsHeading$1 {
|
3105
|
+
chartAccounts: ChartAccounts[];
|
3106
|
+
}
|
3107
|
+
|
3108
|
+
declare class ChartAccountsMetaField extends ChartAccountsMetaField$1 {
|
3109
|
+
/**
|
3110
|
+
* Check if meta field id is related to SHARE_PERCENTAGE value
|
3111
|
+
*/
|
3112
|
+
isSharePercentage(): boolean;
|
3113
|
+
isHours(): boolean;
|
3114
|
+
isFranked(): boolean;
|
3115
|
+
isFrankingCredit(): boolean;
|
3116
|
+
}
|
3117
|
+
|
3118
|
+
declare class ChartAccountsValue extends ChartAccountsValue$1 {
|
3119
|
+
}
|
3120
|
+
|
3121
|
+
declare enum ChartAccountsTaxLabelsEnum {
|
3122
|
+
TAX_WITHHELD = "Tax withheld",
|
3123
|
+
TAX_PAID = "Tax Paid",
|
3124
|
+
TAX_DEDUCTED = "Tax Deducted"
|
3125
|
+
}
|
3126
|
+
|
3127
|
+
declare class ChartAccounts extends ChartAccounts$1 {
|
3208
3128
|
/**
|
3209
|
-
*
|
3129
|
+
* Australian GST percent value (VAT)
|
3210
3130
|
*/
|
3211
|
-
|
3131
|
+
static GSTRatio: number;
|
3132
|
+
static GSTCoefficient: number;
|
3133
|
+
static GSTPercent: number;
|
3134
|
+
static systemList: (ChartAccountsListEnum | BusinessChartAccountsEnum)[];
|
3135
|
+
static homeOfficeList: (ChartAccountsListEnum | BusinessChartAccountsEnum)[];
|
3136
|
+
heading: ChartAccountsHeading;
|
3137
|
+
metaFields: ChartAccountsMetaField[];
|
3138
|
+
values: ChartAccountsValue[];
|
3212
3139
|
/**
|
3213
|
-
*
|
3214
|
-
* @param type
|
3140
|
+
* Return name as string
|
3215
3141
|
*/
|
3216
|
-
|
3217
|
-
}
|
3218
|
-
|
3219
|
-
/**
|
3220
|
-
* class contain actual and forecasted market values and loan balances for passed properties
|
3221
|
-
* X axis - years from the first actual data year to the last forecasted year
|
3222
|
-
* Y axis - amounts of market values, loan balances
|
3223
|
-
* Also on hover appear equity positions point
|
3224
|
-
*/
|
3225
|
-
declare class PropertyEquityChartData {
|
3226
|
-
private properties;
|
3227
|
-
private valuations;
|
3228
|
-
private bankAccounts;
|
3229
|
-
private loans;
|
3230
|
-
private registerDate;
|
3231
|
-
list: PropertyEquityChartItem[];
|
3232
|
-
currentYear: number;
|
3233
|
-
constructor(properties: PropertyCollection, valuations: PropertyValuationCollection, bankAccounts: BankAccountCollection, loans: LoanCollection, registerDate: Date);
|
3142
|
+
toString(): string;
|
3234
3143
|
/**
|
3235
|
-
*
|
3236
|
-
* @param type
|
3144
|
+
* construction cost, 1 building=1 buildingAtCost depreciation
|
3237
3145
|
*/
|
3238
|
-
|
3146
|
+
isBuildingAtCost(): boolean;
|
3239
3147
|
/**
|
3240
|
-
*
|
3148
|
+
* Check if chart accounts id is related for 'Kms travelled for work' category
|
3241
3149
|
*/
|
3242
|
-
|
3150
|
+
isKmsForWork(): boolean;
|
3243
3151
|
/**
|
3244
|
-
*
|
3152
|
+
* Check if chart accounts id is related for 'Kms travelled for sole' category
|
3245
3153
|
*/
|
3246
|
-
|
3154
|
+
isKmsForSole(): boolean;
|
3155
|
+
isKms(): boolean;
|
3247
3156
|
/**
|
3248
|
-
*
|
3157
|
+
* special type used for just pre-paying tax to the ATO, uses on tax summary
|
3249
3158
|
*/
|
3250
|
-
|
3159
|
+
isNRAS(): boolean;
|
3251
3160
|
/**
|
3252
|
-
*
|
3253
|
-
* set actual year's real data
|
3254
|
-
* @private
|
3161
|
+
* Check if chart accounts id is related for 'Interest on Loan' category
|
3255
3162
|
*/
|
3256
|
-
|
3163
|
+
isInterestOnLoan(): boolean;
|
3257
3164
|
/**
|
3258
|
-
*
|
3165
|
+
* Check if chart accounts id is related for 'Motor Vehicles' category
|
3259
3166
|
*/
|
3260
|
-
|
3167
|
+
isVehicles(): boolean;
|
3261
3168
|
/**
|
3262
|
-
*
|
3263
|
-
* @param property Property instance for filter
|
3264
|
-
* @param year Financial year number
|
3265
|
-
* @private
|
3169
|
+
* Check if chart accounts id is related for 'Interest Earned' category
|
3266
3170
|
*/
|
3267
|
-
|
3268
|
-
getMarketValueForPropertyByYear(property: Property$1, year: number): number;
|
3171
|
+
isInterestEarned(): boolean;
|
3269
3172
|
/**
|
3270
|
-
* Check if
|
3173
|
+
* Check if chart accounts id is related for 'Trust Income' category
|
3271
3174
|
*/
|
3272
|
-
|
3175
|
+
isTrustIncome(): boolean;
|
3273
3176
|
/**
|
3274
|
-
* Check if
|
3177
|
+
* Check if chart accounts id is related for 'Motor vehicles (commercial cars)' category
|
3275
3178
|
*/
|
3276
|
-
|
3277
|
-
}
|
3278
|
-
|
3279
|
-
declare class PropertyShare extends PropertyShare$1 {
|
3280
|
-
fromDate: Date;
|
3281
|
-
toDate: Date;
|
3282
|
-
user: User$1;
|
3283
|
-
invite: RegistrationInvite;
|
3284
|
-
property: Property$1;
|
3285
|
-
email: string;
|
3286
|
-
isAccepted(): boolean;
|
3287
|
-
isPending(): boolean;
|
3288
|
-
isRejected(): boolean;
|
3289
|
-
get statusName(): string;
|
3179
|
+
isCommercialVehicles(): boolean;
|
3290
3180
|
/**
|
3291
|
-
*
|
3292
|
-
* Otherwise - return first name from invitation
|
3181
|
+
* Check if chart accounts is work income
|
3293
3182
|
*/
|
3294
|
-
|
3183
|
+
isWorkIncome(): boolean;
|
3184
|
+
isVehicleExpense(): boolean;
|
3185
|
+
/**
|
3186
|
+
* Check if chart accounts is other income
|
3187
|
+
*/
|
3188
|
+
isOtherIncome(): boolean;
|
3189
|
+
isIncome(): boolean;
|
3190
|
+
isExpense(): boolean;
|
3191
|
+
isProperty(): boolean;
|
3192
|
+
isWork(): boolean;
|
3193
|
+
isSole(): boolean;
|
3194
|
+
isWorkExpense(): boolean;
|
3195
|
+
isSoleExpense(): boolean;
|
3196
|
+
isHoldingExpense(): boolean;
|
3197
|
+
/**
|
3198
|
+
* Check if chart accounts is property expense
|
3199
|
+
*/
|
3200
|
+
isPropertyExpense(): boolean;
|
3201
|
+
/**
|
3202
|
+
* Check if chart accounts is property income
|
3203
|
+
*/
|
3204
|
+
isPropertyIncome(): boolean;
|
3205
|
+
isPersonal(): boolean;
|
3206
|
+
isPersonalExpense(): boolean;
|
3207
|
+
/**
|
3208
|
+
* Check if chart accounts category is depreciation
|
3209
|
+
*/
|
3210
|
+
isDepreciation(): boolean;
|
3211
|
+
/**
|
3212
|
+
* Check if transaction chart account is work related car expenses
|
3213
|
+
*/
|
3214
|
+
isVehicleLoanExpense(): boolean;
|
3215
|
+
isVehicleLoanPrinciple(): boolean;
|
3216
|
+
isVehicleLoanInterest(): boolean;
|
3217
|
+
/**
|
3218
|
+
* Get chart accounts value for current financial year
|
3219
|
+
*/
|
3220
|
+
getCurrentYearValue(): ChartAccountsValue;
|
3221
|
+
/**
|
3222
|
+
* Get chart accounts value by financial year
|
3223
|
+
*/
|
3224
|
+
getValueByYear(year: number): ChartAccountsValue;
|
3225
|
+
/**
|
3226
|
+
* no way to check how much used for work/sole, so we let user adjust it
|
3227
|
+
* except vehicle expense, which is equal to vehicleClaim.workUsage
|
3228
|
+
* except when taxablePercent=0, but not ENTERTAINMENT
|
3229
|
+
*/
|
3230
|
+
isClaimPercentEditable(): boolean;
|
3231
|
+
/**
|
3232
|
+
* get label for transaction tax field depended on selected chart account.
|
3233
|
+
* tax type depends on chart account heading or category.
|
3234
|
+
*/
|
3235
|
+
getTaxLabel(): ChartAccountsTaxLabelsEnum;
|
3236
|
+
isETP(): boolean;
|
3237
|
+
isSalary(): boolean;
|
3238
|
+
/**
|
3239
|
+
* chart accounts included in salary, like tips or allowance
|
3240
|
+
*/
|
3241
|
+
isAdjustmentIncluded(): boolean;
|
3242
|
+
isPropertyCapitalWorks(): boolean;
|
3243
|
+
hasTaxField(): boolean;
|
3244
|
+
isTaxable(): boolean;
|
3245
|
+
isTransfer(): boolean;
|
3246
|
+
isDividends(): boolean;
|
3247
|
+
isHomeOfficeExpense(): boolean;
|
3248
|
+
isHomeOfficeWorkHours(): boolean;
|
3249
|
+
/**
|
3250
|
+
* income requiring extra data like adjustments/payer/etc
|
3251
|
+
*/
|
3252
|
+
isIncomeWithMeta(): boolean;
|
3295
3253
|
}
|
3296
3254
|
|
3297
|
-
|
3298
|
-
|
3299
|
-
|
3300
|
-
|
3301
|
-
|
3302
|
-
|
3303
|
-
|
3304
|
-
|
3255
|
+
/**
|
3256
|
+
* Interface, which should be implemented for tank-type checking
|
3257
|
+
* @TODO remove I prefix and check all interfaces
|
3258
|
+
*/
|
3259
|
+
interface ITank {
|
3260
|
+
isPropertyTank(): boolean;
|
3261
|
+
isWorkTank(): boolean;
|
3262
|
+
isSoleTank(): boolean;
|
3263
|
+
}
|
3264
|
+
|
3265
|
+
/**
|
3266
|
+
* Interface with common transactions fields and methods
|
3267
|
+
* @TODO remove I prefix in all interfaces. Naming issue: need to get common name for transaction and depreciation or
|
3268
|
+
* rename Transaction class or cut transaction-related logic from Depreciation and never work with Depreciation as with Transaction.
|
3269
|
+
* @TODO add more common fields from Transaction and Depreciation if required
|
3270
|
+
*/
|
3271
|
+
interface Expense extends ITank {
|
3272
|
+
amount: number;
|
3273
|
+
chartAccounts: ChartAccounts;
|
3274
|
+
}
|
3275
|
+
|
3276
|
+
/**
|
3277
|
+
* Interface for income source forecasts
|
3278
|
+
*/
|
3279
|
+
interface IIncomeSourceForecast {
|
3280
|
+
id?: number;
|
3281
|
+
financialYear?: number;
|
3282
|
+
incomeSource?: IncomeSource;
|
3283
|
+
netPay?: number;
|
3284
|
+
trustType?: IncomeSourceForecastTrustTypeEnum;
|
3285
|
+
}
|
3286
|
+
|
3287
|
+
interface IOption {
|
3288
|
+
label: string;
|
3289
|
+
value: any;
|
3290
|
+
}
|
3291
|
+
|
3292
|
+
/**
|
3293
|
+
* Interface for implementation by components that use an update event emitters.
|
3294
|
+
* Created to avoid using "change" event emitter name, because that name can cause unexpected events of Angular/JS
|
3295
|
+
*/
|
3296
|
+
interface Updatable<T> {
|
3297
|
+
update: EventEmitter<T>;
|
3305
3298
|
}
|
3306
3299
|
|
3307
3300
|
declare class SalaryForecast extends SalaryForecast$1 implements IIncomeSourceForecast {
|
@@ -5070,25 +5063,18 @@ declare class Notification extends ServiceNotification {
|
|
5070
5063
|
isFromUser(): boolean;
|
5071
5064
|
}
|
5072
5065
|
|
5073
|
-
declare class DocumentFolder$1 extends AbstractModel {
|
5074
|
-
name?: string;
|
5075
|
-
deletedAt?: Date;
|
5076
|
-
user?: User;
|
5077
|
-
parent?: DocumentFolder$1;
|
5078
|
-
}
|
5079
|
-
|
5080
|
-
declare class FolderDocument extends AbstractModel {
|
5081
|
-
file?: File$1;
|
5082
|
-
folder?: DocumentFolder$1;
|
5083
|
-
}
|
5084
|
-
|
5085
5066
|
declare class DocumentFolder extends DocumentFolder$1 {
|
5067
|
+
user?: User$1;
|
5068
|
+
parent?: DocumentFolder;
|
5069
|
+
property?: Property$1;
|
5070
|
+
get treeNode(): TreeNode;
|
5086
5071
|
}
|
5087
5072
|
|
5088
5073
|
declare class Document extends FolderDocument implements DocumentInterface {
|
5089
5074
|
folder: DocumentFolder;
|
5090
5075
|
file: AppFile;
|
5091
5076
|
get parent(): DocumentFolder;
|
5077
|
+
get treeNode(): TreeNode;
|
5092
5078
|
}
|
5093
5079
|
|
5094
5080
|
/**
|
@@ -6171,22 +6157,25 @@ declare enum DocumentFolderMessagesEnum {
|
|
6171
6157
|
}
|
6172
6158
|
|
6173
6159
|
/**
|
6174
|
-
* Service to handle document-folders and depending documents logic
|
6160
|
+
* Service to handle document-folders and depending on documents logic
|
6175
6161
|
*/
|
6176
|
-
declare class DocumentFolderService extends RestService$1<DocumentFolder$1, DocumentFolder,
|
6162
|
+
declare class DocumentFolderService extends RestService$1<DocumentFolder$1, DocumentFolder, DocumentFolderCollection> {
|
6177
6163
|
endpointUri: string;
|
6178
|
-
collectionClass: typeof
|
6164
|
+
collectionClass: typeof DocumentFolderCollection;
|
6179
6165
|
modelClass: typeof DocumentFolder;
|
6180
6166
|
disabledMethods: RestMethod[];
|
6181
6167
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentFolderService, never>;
|
6182
6168
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentFolderService>;
|
6183
6169
|
}
|
6184
6170
|
|
6185
|
-
declare class DocumentService extends RestService$1<FolderDocument, Document, Collection<Document>> {
|
6171
|
+
declare class DocumentService extends RestService$1<FolderDocument, Document, Collection<Document>> implements IEventListener {
|
6172
|
+
protected environment: any;
|
6186
6173
|
endpointUri: string;
|
6187
6174
|
modelClass: typeof Document;
|
6188
6175
|
collectionClass: typeof Collection;
|
6189
6176
|
disabledMethods: RestMethod[];
|
6177
|
+
constructor(environment: any);
|
6178
|
+
listenEvents(): void;
|
6190
6179
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocumentService, never>;
|
6191
6180
|
static ɵprov: i0.ɵɵInjectableDeclaration<DocumentService>;
|
6192
6181
|
}
|
@@ -6855,26 +6844,6 @@ declare class PropertyCategoryMovementService extends RestService$1<PropertyCate
|
|
6855
6844
|
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyCategoryMovementService>;
|
6856
6845
|
}
|
6857
6846
|
|
6858
|
-
declare enum PropertyDocumentMessagesEnum {
|
6859
|
-
CREATED = "Property document created",
|
6860
|
-
UPDATED = "Property document updated",
|
6861
|
-
CONFIRM_DELETE = "Are you sure you want to delete the document?",
|
6862
|
-
DELETED = "Property document deleted"
|
6863
|
-
}
|
6864
|
-
|
6865
|
-
/**
|
6866
|
-
* Class for work with Property Documents
|
6867
|
-
*/
|
6868
|
-
declare class PropertyDocumentService extends RestService$1<PropertyDocument$1, PropertyDocument, Collection<PropertyDocument>> {
|
6869
|
-
modelClass: typeof PropertyDocument;
|
6870
|
-
collectionClass: typeof Collection;
|
6871
|
-
endpointUri: string;
|
6872
|
-
disabledMethods: RestMethod[];
|
6873
|
-
postFiles(property: Property$1, files: AppFile[]): Observable<PropertyDocument[]>;
|
6874
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PropertyDocumentService, never>;
|
6875
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PropertyDocumentService>;
|
6876
|
-
}
|
6877
|
-
|
6878
6847
|
declare class TaxExemptionCollection extends Collection<TaxExemption> {
|
6879
6848
|
/**
|
6880
6849
|
* tax exemption eligible only for a resident
|
@@ -9181,11 +9150,6 @@ declare class PropertyEditForm extends AbstractForm<Property$1> {
|
|
9181
9150
|
constructor(property: Property$1);
|
9182
9151
|
}
|
9183
9152
|
|
9184
|
-
declare class PropertyDocumentForm extends AbstractForm<PropertyDocument> {
|
9185
|
-
constructor(document: PropertyDocument);
|
9186
|
-
submit(): PropertyDocument;
|
9187
|
-
}
|
9188
|
-
|
9189
9153
|
declare class PropertyCategoryMovementForm extends AbstractForm<PropertyCategoryMovement> {
|
9190
9154
|
constructor(movement?: PropertyCategoryMovement);
|
9191
9155
|
submit(): PropertyCategoryMovement;
|
@@ -10485,10 +10449,10 @@ declare class Property extends ObservableModel {
|
|
10485
10449
|
propertyBankAccounts?: BankAccountProperty$1[];
|
10486
10450
|
createdBy?: User;
|
10487
10451
|
updatedBy?: User;
|
10488
|
-
documents?: PropertyDocument$1[];
|
10489
10452
|
depreciations?: Depreciation$1[];
|
10490
10453
|
file: File$1;
|
10491
10454
|
corelogicLastRequest: Date;
|
10455
|
+
folder: DocumentFolder;
|
10492
10456
|
get capitalCosts(): number;
|
10493
10457
|
}
|
10494
10458
|
|
@@ -11152,6 +11116,10 @@ declare class VehicleClaimCollection extends Collection<VehicleClaim> {
|
|
11152
11116
|
getWorkUsageLimitForClaim(claim?: VehicleClaim): number;
|
11153
11117
|
}
|
11154
11118
|
|
11119
|
+
declare class DocumentFolderCollection extends Collection<DocumentFolder> {
|
11120
|
+
toTreeNode(documents: Collection<Document>): TreeNode<DocumentFolder>[];
|
11121
|
+
}
|
11122
|
+
|
11155
11123
|
declare class AllocationGroupCollection extends Collection<AllocationGroup> {
|
11156
11124
|
constructor(items: AllocationGroup[]);
|
11157
11125
|
}
|
@@ -11658,5 +11626,5 @@ declare enum MessagesEnum {
|
|
11658
11626
|
HOLDING_TYPE_DELETED = "Holding type deleted"
|
11659
11627
|
}
|
11660
11628
|
|
11661
|
-
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails$1 as AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount$1 as BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection$1 as BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup$1 as DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale$1 as HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade$1 as HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport$1 as HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeService, HoldingTradeTypeEnum, HoldingType$1 as HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange$1 as HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorTransactionService, Property$1 as Property, PropertyAddForm, PropertyCalculationService, PropertyCategory$1 as PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyDocument, PropertyDocumentForm, PropertyDocumentMessagesEnum, PropertyDocumentService, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale$1 as PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User$1 as User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
11629
|
+
export { AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockService, Address, AddressForm, AddressService, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, AnnualClientDetails$1 as AnnualClientDetails, AnnualClientDetailsForm, AnnualClientDetailsService, AnnualFrequencyEnum, AppCurrencyPipe, AppEvent, AppEvent2, AppEventTypeEnum, AppFile, AppPercentPipe, AssetEntityTypeEnum, AssetSale, AssetSaleCollection, AssetTypeEnum, AssetsService, AussieAppointment, AussieAppointmentForm, AussieBroker, AussieConfirmationForm, AussieService, AussieStore, AussieStoreForm, Badge, BadgeColorEnum, Bank, BankAccount$1 as BankAccount, BankAccountAddManualForm, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountImportForm, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsImportForm, BankConnection$1 as BankConnection, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetForm, BudgetMessagesEnum, BudgetRule, BudgetService, BusinessChartAccountsEnum, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CapitalLoss, CapitalLossForm, CapitalLossMessagesEnum, CapitalLossService, CgtExemptionAndRolloverCodeEnum, ChartAccounts, ChartAccountsAdjustmentIncludedListEnum, ChartAccountsCategoryECollection, ChartAccountsCategoryEnum, ChartAccountsCollection, ChartAccountsDepreciation, ChartAccountsDepreciationService, ChartAccountsEtpEnum, ChartAccountsForm, ChartAccountsHeading, ChartAccountsHeadingListEnum, ChartAccountsHeadingTaxDeductibleEnum, ChartAccountsHeadingTaxableEnum, ChartAccountsHeadingVehicleListEnum, ChartAccountsHoldingUntaxedIncomeListEnum, ChartAccountsKeepSign, ChartAccountsListEnum, ChartAccountsMessagesEnum, ChartAccountsMetaField, ChartAccountsMetaFieldListEnum, ChartAccountsMetaFieldTypeEnum, ChartAccountsPropertyAdjustmentsListEnum, ChartAccountsSalaryAdjustmentsListEnum, ChartAccountsService, ChartAccountsTaxLabelsEnum, ChartAccountsTypeEnum, ChartAccountsValue, ChartAccountsValueCollection, ChartAccountsValueService, ChartData, ChartSerie, Chat, ChatCollection, ChatFilterForm, ChatService, ChatStatusEnum, ChatViewTypeEnum, ClientCollection, ClientCouponService, ClientDetails, ClientDetailsForm, ClientDetailsMedicareExemptionEnum, ClientDetailsWorkDepreciationCalculationEnum, ClientDetailsWorkingHolidayMakerEnum, ClientInvite, ClientInviteCollection, ClientInviteForm, ClientInviteMessages, ClientInvitePutForm, ClientInviteService, ClientInviteStatusEnum, ClientInviteTypeEnum, ClientMovement, ClientMovementCollection, ClientMovementForm, ClientMovementMessagesEnum, ClientMovementService, ClientPortfolioChartData, ClientPortfolioReport, ClientPortfolioReportCollection, ClientPortfolioReportService, Collection, CollectionDictionary, CollectionForm, CoreModule, CorelogicMessagesEnum, CorelogicService, CorelogicSuggestion, Country, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, DepreciationGroup$1 as DepreciationGroup, DepreciationGroupEnum, DepreciationGroupItem, DepreciationLvpAssetTypeEnum, DepreciationLvpRateEnum, DepreciationLvpReportItem, DepreciationLvpReportItemCollection, DepreciationReportItem, DepreciationReportItemCollection, DepreciationService, DepreciationTypeEnum, DepreciationWriteOffAmountEnum, Dictionary, Document, DocumentApiUrlPrefixEnum, DocumentFolder, DocumentFolderCollection, DocumentFolderForm, DocumentFolderMessagesEnum, DocumentFolderService, DocumentForm, DocumentMessagesEnum, DocumentService, DocumentTypeEnum, ENDPOINTS, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale$1 as HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade$1 as HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport$1 as HoldingTradeImport, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeService, HoldingTradeTypeEnum, HoldingType$1 as HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange$1 as HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, IconsFileEnum, IncomeAmountTypeEnum, IncomePosition, IncomeSource, IncomeSourceChartData, IncomeSourceCollection, IncomeSourceForecast, IncomeSourceForecastCollection, IncomeSourceForecastService, IncomeSourceForecastTrustTypeEnum, IncomeSourceMessagesEnum, IncomeSourceService, IncomeSourceType, IncomeSourceTypeEnum, IncomeSourceTypeListHoldingEnum, IncomeSourceTypeListOtherEnum, IncomeSourceTypeListSoleEnum, IncomeSourceTypeListWorkEnum, IncomeSourceTypeService, InterceptorsModule, IntercomService, InviteStatusEnum, InvoicePaymentForm, InvoiceTransactionsService, JsPdf, Loan, LoanBankTypeEnum, LoanCollection, LoanForm, LoanFrequencyEnum, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentFrequencyEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MonthNameShortEnum, MonthNumberEnum, MyAccountHistory, MyAccountHistoryInitiatedByEnum, MyAccountHistoryStatusEnum, MyAccountHistoryTypeEnum, MyTaxBusinessDetails, MyTaxBusinessDetailsForm, MyTaxBusinessIncome, MyTaxBusinessIncomeForm, MyTaxBusinessIncomeOrLossesForm, MyTaxBusinessLosses, MyTaxBusinessLossesForm, MyTaxCgt, MyTaxCgtForm, MyTaxDeductions, MyTaxDeductionsForm, MyTaxDividends, MyTaxDividendsForm, MyTaxEstimate, MyTaxIncomeStatements, MyTaxIncomeStatementsForm, MyTaxIncomeTests, MyTaxIncomeTestsForm, MyTaxInterest, MyTaxInterestForm, MyTaxLosses, MyTaxLossesForm, MyTaxMedicareForm, MyTaxOffsets, MyTaxOffsetsForm, MyTaxOtherIncome, MyTaxOtherIncomeForm, MyTaxPartnershipsAndTrusts, MyTaxPartnershipsAndTrustsForm, MyTaxRent, MyTaxRentForm, Notification, Occupation, OccupationService, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorTransactionService, Property$1 as Property, PropertyAddForm, PropertyCalculationService, PropertyCategory$1 as PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, PropertySale$1 as PropertySale, PropertySaleCollection, PropertySaleCostBase, PropertySaleCostBaseForm, PropertySaleCostSaleForm, PropertySaleExemptionsForm, PropertySaleService, PropertySaleTaxExemptionMetaField, PropertySaleTaxExemptionMetaFieldCollection, PropertyService, PropertyShare, PropertyShareAccessEnum, PropertyShareCollection, PropertyShareForm, PropertyShareService, PropertyShareStatusEnum, PropertySubscription, PropertyTransactionReportService, PropertyValuation, PropertyValuationCollection, PropertyValuationForm, PropertyValuationMessages, PropertyValuationService, REPORTS, RegisterClientForm, RegisterFirmForm, RegistrationInvite, RegistrationInviteStatusEnum, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastFrequencyEnum, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceListEnum, ServicePriceRecurringIntervalEnum, ServicePriceService, ServicePriceTypeEnum, ServiceProduct, ServiceProductCollection, ServiceProductIconsEnum, ServiceProductIdEnum, ServiceProductService, ServiceProductStatusEnum, ServicePromoCode, ServiceSubscription, ServiceSubscriptionCollection, ServiceSubscriptionItem, ServiceSubscriptionStatusEnum, SetupItemTypeEnum, SharesightDetails, SharesightDetailsMessagesEnum, SharesightDetailsService, SharesightPortfolio, SharesightPortfolioMessages, SharesightPortfolioService, SoleBusiness, SoleBusinessActivity, SoleBusinessActivityService, SoleBusinessAllocation, SoleBusinessAllocationsForm, SoleBusinessForm, SoleBusinessLoss, SoleBusinessLossCollection, SoleBusinessLossForm, SoleBusinessLossOffsetRule, SoleBusinessLossOffsetRuleService, SoleBusinessLossReport, SoleBusinessLossService, SoleBusinessMessagesEnum, SoleBusinessService, SoleContact, SoleContactForm, SoleContactService, SoleDepreciationMethod, SoleDepreciationMethodEnum, SoleDepreciationMethodForm, SoleDepreciationMethodService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SpareDocumentSpareTypeEnum, SseService, StatesEnum, SubscriptionItemCollection, SubscriptionMessagesEnum, SubscriptionService, TAX_RETURN_CATEGORIES, TYPE_LOAN, TankTypeEnum, TaxCalculationMedicareExemptionEnum, TaxCalculationTypeEnum, TaxExemption, TaxExemptionCollection, TaxExemptionEnum, TaxExemptionMetaField, TaxExemptionMetaFieldEnum, TaxExemptionService, TaxReturn, TaxReturnCategory, TaxReturnCategoryListEnum, TaxReturnCategorySectionEnum, TaxReturnItem, TaxReturnItemEnum, TaxReturnItemService, TaxReview, TaxReviewCollection, TaxReviewFilterForm, TaxReviewFilterStatusEnum, TaxReviewHistoryService, TaxReviewMessagesEnum, TaxReviewService, TaxReviewStatusEnum, TaxSummary, TaxSummaryListEnum, TaxSummarySection, TaxSummarySectionEnum, TaxSummaryService, TaxSummaryTaxSummaryEnum, TaxSummaryTypeEnum, TicketFeedbackEnum, TicketStatusEnum, TicketTypesEnum, TimezoneEnum, Toast, ToastService, ToastTypeEnum, Transaction, TransactionAllocation, TransactionAllocationCollection, TransactionAllocationService, TransactionBase, TransactionBaseCollection, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, User$1 as User, UserCollection, UserEventSetting, UserEventSettingCollection, UserEventSettingFieldEnum, UserEventSettingService, UserEventStatusEnum, UserEventType, UserEventTypeCategory, UserEventTypeClientTypeEnum, UserEventTypeCollection, UserEventTypeEmployeeTypeEnum, UserEventTypeFrequencyEnum, UserEventTypeService, UserEventTypeUserTypeEnum, UserForm, UserInviteForm, UserMedicareExemptionEnum, UserMessagesEnum, UserService, UserStatusEnum, UserSwitcherService, UserTitleEnum, UserToRegister, UserWorkDepreciationCalculationEnum, UserWorkingHolidayMakerEnum, UsersInviteService, Vehicle, VehicleClaim, VehicleClaimCollection, VehicleClaimDetails, VehicleClaimDetailsForm, VehicleClaimDetailsMethodEnum, VehicleClaimDetailsService, VehicleClaimForm, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, conditionalValidator, createDate, currentFinYearValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, replace, sort, sortDeep, toArray };
|
11662
11630
|
export type { AussieStoreInterface, BasiqConnectionData, BasiqConnectionsResponse, BasiqTokenResponse, CapitalLossInterface, ChartAccountsTankType, ChartAccountsType, ControlsInterface, DocumentInterface, Documentable, Expense, HomeOfficeClaimInterface, HomeOfficeLogInterface, HttpMethod, IAsset, IChartData, IChartSerie, IEventListener, IIncomeSourceForecast, IOption, IReport, ITank, MfaDetailsInterface, PropertyCorelogicStatsInterface, RestMethod, SharesightDetailsInterface, SharesightPortfolioInterface, Updatable, YoutubeVideoInterface };
|