taxtank-core 2.1.75 → 2.1.79

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.
@@ -4,12 +4,11 @@ import * as i1$1 from '@angular/common';
4
4
  import { formatDate, DatePipe, CurrencyPipe, CommonModule as CommonModule$1 } from '@angular/common';
5
5
  import * as i1 from '@angular/common/http';
6
6
  import { HttpClient, HttpErrorResponse, HTTP_INTERCEPTORS, HttpHeaders, HttpParams } from '@angular/common/http';
7
- import { map, filter, catchError, finalize, switchMap, first as first$1, take, tap as tap$1, mergeMap, startWith, debounceTime, distinctUntilChanged } from 'rxjs/operators';
8
- import { ReplaySubject, Subject, Observable, shareReplay, of, forkJoin, EMPTY, throwError, BehaviorSubject, tap, concatMap, combineLatest, from, merge as merge$1 } from 'rxjs';
9
- import { instanceToInstance, plainToClass, Type, Transform, Exclude, Expose, classToPlain } from 'class-transformer';
10
- import get from 'lodash/get';
7
+ import { filter, map, catchError, finalize, switchMap, first as first$1, take, tap as tap$1, mergeMap, startWith, debounceTime, distinctUntilChanged } from 'rxjs/operators';
11
8
  import 'reflect-metadata';
12
9
  import { __decorate } from 'tslib';
10
+ import get from 'lodash/get';
11
+ import { instanceToInstance, plainToClass, Type, Transform, Exclude, Expose, classToPlain } from 'class-transformer';
13
12
  import flatten from 'lodash/flatten';
14
13
  import hasIn from 'lodash/hasIn';
15
14
  import intersection from 'lodash/intersection';
@@ -29,6 +28,7 @@ import cloneDeep$1 from 'lodash/cloneDeep';
29
28
  import compact from 'lodash/compact';
30
29
  import groupBy from 'lodash/groupBy';
31
30
  import moment$1 from 'moment/moment';
31
+ import { Subject, Observable, ReplaySubject, shareReplay, of, forkJoin, EMPTY, throwError, BehaviorSubject, tap, concatMap, combineLatest, from, merge as merge$1 } from 'rxjs';
32
32
  import { EventSourcePolyfill } from 'event-source-polyfill/src/eventsource.min.js';
33
33
  import clone from 'lodash/clone';
34
34
  import merge from 'lodash/merge';
@@ -50,6 +50,33 @@ import isEqual from 'lodash/isEqual';
50
50
  import { RxwebValidators } from '@rxweb/reactive-form-validators';
51
51
  import differenceBy from 'lodash/differenceBy';
52
52
 
53
+ /**
54
+ * @TODO TT-3846 upgrade
55
+ */
56
+ class PdfService {
57
+ constructor(http, environment) {
58
+ this.http = http;
59
+ this.environment = environment;
60
+ }
61
+ fromHTMLElements(elements, landscape) {
62
+ const formData = new FormData();
63
+ formData.append('file', new Blob([...Array.from(elements).map(element => element.outerHTML)], { type: 'text/html' }));
64
+ formData.append('landscape', landscape ? '1' : '0');
65
+ return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
66
+ }
67
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
68
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, providedIn: 'root' }); }
69
+ }
70
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, decorators: [{
71
+ type: Injectable,
72
+ args: [{
73
+ providedIn: 'root'
74
+ }]
75
+ }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
76
+ type: Inject,
77
+ args: ['environment']
78
+ }] }] });
79
+
53
80
  /**
54
81
  * @TODO move from db folder when refactored base models
55
82
  */
@@ -71,6 +98,9 @@ class AbstractModel {
71
98
  }
72
99
  }
73
100
 
101
+ let Address$1 = class Address extends AbstractModel {
102
+ };
103
+
74
104
  let Country$1 = class Country extends AbstractModel {
75
105
  };
76
106
 
@@ -90,66 +120,6 @@ class Country extends Country$1 {
90
120
  }
91
121
  }
92
122
 
93
- class AddressService {
94
- constructor(http, environment) {
95
- this.http = http;
96
- this.environment = environment;
97
- this.countriesSubject = new ReplaySubject(1);
98
- }
99
- getCountries() {
100
- if (!this._countries) {
101
- this.http.get(`${this.environment.apiV2}/countries`)
102
- .pipe(map((response) => response.map((item) => plainToClass(Country, item))))
103
- .subscribe((countries) => {
104
- this._countries = countries;
105
- this.countriesSubject.next(countries);
106
- });
107
- }
108
- return this.countriesSubject.asObservable();
109
- }
110
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AddressService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
111
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AddressService, providedIn: 'root' }); }
112
- }
113
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: AddressService, decorators: [{
114
- type: Injectable,
115
- args: [{
116
- providedIn: 'root'
117
- }]
118
- }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
119
- type: Inject,
120
- args: ['environment']
121
- }] }] });
122
-
123
- /**
124
- * @TODO TT-3846 upgrade
125
- */
126
- class PdfService {
127
- constructor(http, environment) {
128
- this.http = http;
129
- this.environment = environment;
130
- }
131
- fromHTMLElements(elements, landscape) {
132
- const formData = new FormData();
133
- formData.append('file', new Blob([...Array.from(elements).map(element => element.outerHTML)], { type: 'text/html' }));
134
- formData.append('landscape', landscape ? '1' : '0');
135
- return this.http.post(`${this.environment.apiV2}/pdf/html`, formData, { responseType: 'blob' });
136
- }
137
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, deps: [{ token: i1.HttpClient }, { token: 'environment' }], target: i0.ɵɵFactoryTarget.Injectable }); }
138
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, providedIn: 'root' }); }
139
- }
140
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: PdfService, decorators: [{
141
- type: Injectable,
142
- args: [{
143
- providedIn: 'root'
144
- }]
145
- }], ctorParameters: () => [{ type: i1.HttpClient }, { type: undefined, decorators: [{
146
- type: Inject,
147
- args: ['environment']
148
- }] }] });
149
-
150
- let Address$1 = class Address extends AbstractModel {
151
- };
152
-
153
123
  var AddressTypeEnum;
154
124
  (function (AddressTypeEnum) {
155
125
  AddressTypeEnum[AddressTypeEnum["STREET"] = 1] = "STREET";
@@ -595,6 +565,7 @@ var ChartAccountsListEnum;
595
565
  ChartAccountsListEnum[ChartAccountsListEnum["OTHER_RENTAL_INCOME"] = 300] = "OTHER_RENTAL_INCOME";
596
566
  ChartAccountsListEnum[ChartAccountsListEnum["INTEREST_ON_LOAN"] = 302] = "INTEREST_ON_LOAN";
597
567
  ChartAccountsListEnum[ChartAccountsListEnum["BUILDING_AT_COST"] = 304] = "BUILDING_AT_COST";
568
+ ChartAccountsListEnum[ChartAccountsListEnum["BORROWING_EXPENSES"] = 315] = "BORROWING_EXPENSES";
598
569
  ChartAccountsListEnum[ChartAccountsListEnum["LUMP_SUM_PAYMENTS_IN_ARREARS"] = 519] = "LUMP_SUM_PAYMENTS_IN_ARREARS";
599
570
  ChartAccountsListEnum[ChartAccountsListEnum["JURY_ATTENDANCE_FEES"] = 521] = "JURY_ATTENDANCE_FEES";
600
571
  ChartAccountsListEnum[ChartAccountsListEnum["FOREIGN_EXCHANGE_GAINS_NON_BUSINESS"] = 523] = "FOREIGN_EXCHANGE_GAINS_NON_BUSINESS";
@@ -1208,6 +1179,10 @@ var BudgetTypeEnum;
1208
1179
  })(BudgetTypeEnum || (BudgetTypeEnum = {}));
1209
1180
 
1210
1181
  class TransactionBase extends ObservableModel {
1182
+ constructor() {
1183
+ super(...arguments);
1184
+ this.currency = 'AUD';
1185
+ }
1211
1186
  get gstCoefficient() {
1212
1187
  return this.isGST ? ChartAccounts.GSTCoefficient : 1;
1213
1188
  }
@@ -1276,6 +1251,9 @@ class TransactionBase extends ObservableModel {
1276
1251
  get foreignAmount() {
1277
1252
  return this.amount * this.exchangeRate;
1278
1253
  }
1254
+ isEditable() {
1255
+ return !ChartAccounts.systemList.includes(this.chartAccounts.id);
1256
+ }
1279
1257
  }
1280
1258
  __decorate([
1281
1259
  Transform(({ value }) => value === null ? null : +value)
@@ -3804,6 +3782,7 @@ class ChartAccounts extends ChartAccounts$1 {
3804
3782
  static { this.systemList = [
3805
3783
  ChartAccountsListEnum.HOME_OFFICE_HOURS,
3806
3784
  ChartAccountsListEnum.KMS_TRAVELLED,
3785
+ ChartAccountsListEnum.BORROWING_EXPENSES,
3807
3786
  BusinessChartAccountsEnum.HOME_OFFICE_HOURS,
3808
3787
  BusinessChartAccountsEnum.KMS_TRAVELLED,
3809
3788
  ]; }
@@ -7301,9 +7280,6 @@ class Transaction extends Transaction$1 {
7301
7280
  this.claimPercent = transaction.claimPercent;
7302
7281
  }
7303
7282
  }
7304
- isEditable() {
7305
- return !ChartAccounts.systemList.includes(this.chartAccounts.id);
7306
- }
7307
7283
  get claimableTax() {
7308
7284
  return this.tax * this.claimPercent / 100;
7309
7285
  }
@@ -9135,6 +9111,97 @@ class BudgetRuleItem {
9135
9111
  }
9136
9112
  }
9137
9113
 
9114
+ const COLORS = {
9115
+ primary: '#00B7F0',
9116
+ secondary: '#133F5D',
9117
+ blue: '#00A3FF',
9118
+ lightBlue: '#13C5D2',
9119
+ red: '#FF6159',
9120
+ grey: '#D8D8D8',
9121
+ darkGrey: '#9B9B9B',
9122
+ darkestGrey: '#4A4A4A',
9123
+ green: '#29c940',
9124
+ orange: '#fabf2e',
9125
+ orangeLight: '#FFF9EA',
9126
+ redLight: '#FF6159',
9127
+ white: '#FFFFFF',
9128
+ chartBlue: '#53ABE2',
9129
+ chartBlueLight: '#76DDFB',
9130
+ chartBlueDark: '#2C82BE',
9131
+ };
9132
+
9133
+ // blue palette used for charts with dynamic count of data groups
9134
+ const PALETTE_PRIMARY = [
9135
+ COLORS.chartBlue,
9136
+ COLORS.chartBlueLight,
9137
+ COLORS.chartBlueDark,
9138
+ COLORS.primary,
9139
+ COLORS.lightBlue,
9140
+ COLORS.secondary,
9141
+ COLORS.blue
9142
+ ];
9143
+ // blue/green/red palette for equity position chart
9144
+ const PALETTE_EQUITY = [
9145
+ COLORS.green,
9146
+ COLORS.primary,
9147
+ COLORS.red
9148
+ ];
9149
+
9150
+ /**
9151
+ * Used in the budget variance report
9152
+ */
9153
+ class BudgetCashFlowItem {
9154
+ constructor(expenseItems, incomeItems, month) {
9155
+ /** Color palette used for the expense comparison chart. */
9156
+ this.expenseChartPalette = [COLORS.orangeLight, COLORS.orange];
9157
+ /** Color palette used for the income comparison chart. */
9158
+ this.incomeChartPalette = [COLORS.chartBlueLight, COLORS.primary];
9159
+ const expenses = Math.abs(expenseItems.getActualByMonth(month));
9160
+ const budgetedExpenses = Math.abs(expenseItems.getForecastByMonth(month));
9161
+ const incomes = incomeItems.getActualByMonth(month);
9162
+ const budgetedIncomes = incomeItems.getForecastByMonth(month);
9163
+ this.netIncome = incomes - expenses;
9164
+ this.expenses = expenses;
9165
+ this.budgetedExpenses = budgetedExpenses;
9166
+ this.isOverspent = expenses > budgetedExpenses;
9167
+ this.incomes = incomes;
9168
+ this.budgetedIncomes = budgetedIncomes;
9169
+ this.isOverEarn = incomes > budgetedIncomes;
9170
+ this.expenseChartData = [
9171
+ plainToClass(ChartData, {
9172
+ name: 'Forecast',
9173
+ data: [{
9174
+ label: 'Expenses',
9175
+ value: budgetedExpenses,
9176
+ }],
9177
+ }),
9178
+ plainToClass(ChartData, {
9179
+ name: 'Actual',
9180
+ data: [{
9181
+ label: 'Expenses',
9182
+ value: expenses,
9183
+ }],
9184
+ }),
9185
+ ];
9186
+ this.incomeChartData = [
9187
+ plainToClass(ChartData, {
9188
+ name: 'Forecast',
9189
+ data: [{
9190
+ label: 'Incomes',
9191
+ value: budgetedIncomes,
9192
+ }],
9193
+ }),
9194
+ plainToClass(ChartData, {
9195
+ name: 'Actual',
9196
+ data: [{
9197
+ label: 'Incomes',
9198
+ value: incomes,
9199
+ }],
9200
+ }),
9201
+ ];
9202
+ }
9203
+ }
9204
+
9138
9205
  /**
9139
9206
  * Base collection to work with property report items
9140
9207
  */
@@ -21381,6 +21448,1520 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
21381
21448
  }]
21382
21449
  }], ctorParameters: () => [] });
21383
21450
 
21451
+ var countries = [
21452
+ {
21453
+ id: 14,
21454
+ name: "Australia",
21455
+ code: "au",
21456
+ calling_code: "61"
21457
+ },
21458
+ {
21459
+ id: 1,
21460
+ name: "Afghanistan",
21461
+ code: "af",
21462
+ calling_code: "93"
21463
+ },
21464
+ {
21465
+ id: 2,
21466
+ name: "Åland Islands",
21467
+ code: "ax",
21468
+ calling_code: "358"
21469
+ },
21470
+ {
21471
+ id: 3,
21472
+ name: "Albania",
21473
+ code: "al",
21474
+ calling_code: "355"
21475
+ },
21476
+ {
21477
+ id: 4,
21478
+ name: "Algeria",
21479
+ code: "dz",
21480
+ calling_code: "213"
21481
+ },
21482
+ {
21483
+ id: 5,
21484
+ name: "American Samoa",
21485
+ code: "as",
21486
+ calling_code: "1-684"
21487
+ },
21488
+ {
21489
+ id: 6,
21490
+ name: "Andorra",
21491
+ code: "ad",
21492
+ calling_code: "376"
21493
+ },
21494
+ {
21495
+ id: 7,
21496
+ name: "Angola",
21497
+ code: "ao",
21498
+ calling_code: "244"
21499
+ },
21500
+ {
21501
+ id: 8,
21502
+ name: "Anguilla",
21503
+ code: "ai",
21504
+ calling_code: "1-264"
21505
+ },
21506
+ {
21507
+ id: 9,
21508
+ name: "Antarctica",
21509
+ code: "aq",
21510
+ calling_code: "672"
21511
+ },
21512
+ {
21513
+ id: 10,
21514
+ name: "Antigua and Barbuda",
21515
+ code: "ag",
21516
+ calling_code: "1-268"
21517
+ },
21518
+ {
21519
+ id: 11,
21520
+ name: "Argentina",
21521
+ code: "ar",
21522
+ calling_code: "54"
21523
+ },
21524
+ {
21525
+ id: 12,
21526
+ name: "Armenia",
21527
+ code: "am",
21528
+ calling_code: "374"
21529
+ },
21530
+ {
21531
+ id: 13,
21532
+ name: "Aruba",
21533
+ code: "aw",
21534
+ calling_code: "297"
21535
+ },
21536
+ {
21537
+ id: 15,
21538
+ name: "Austria",
21539
+ code: "at",
21540
+ calling_code: "43"
21541
+ },
21542
+ {
21543
+ id: 16,
21544
+ name: "Azerbaijan",
21545
+ code: "az",
21546
+ calling_code: "994"
21547
+ },
21548
+ {
21549
+ id: 17,
21550
+ name: "Bahamas",
21551
+ code: "bs",
21552
+ calling_code: "1-242"
21553
+ },
21554
+ {
21555
+ id: 18,
21556
+ name: "Bahrain",
21557
+ code: "bh",
21558
+ calling_code: "973"
21559
+ },
21560
+ {
21561
+ id: 19,
21562
+ name: "Bangladesh",
21563
+ code: "bd",
21564
+ calling_code: "880"
21565
+ },
21566
+ {
21567
+ id: 20,
21568
+ name: "Barbados",
21569
+ code: "bb",
21570
+ calling_code: "1-246"
21571
+ },
21572
+ {
21573
+ id: 21,
21574
+ name: "Belarus",
21575
+ code: "by",
21576
+ calling_code: "375"
21577
+ },
21578
+ {
21579
+ id: 22,
21580
+ name: "Belgium",
21581
+ code: "be",
21582
+ calling_code: "32"
21583
+ },
21584
+ {
21585
+ id: 23,
21586
+ name: "Belize",
21587
+ code: "bz",
21588
+ calling_code: "501"
21589
+ },
21590
+ {
21591
+ id: 24,
21592
+ name: "Benin",
21593
+ code: "bj",
21594
+ calling_code: "229"
21595
+ },
21596
+ {
21597
+ id: 25,
21598
+ name: "Bermuda",
21599
+ code: "bm",
21600
+ calling_code: "1-441"
21601
+ },
21602
+ {
21603
+ id: 26,
21604
+ name: "Bhutan",
21605
+ code: "bt",
21606
+ calling_code: "975"
21607
+ },
21608
+ {
21609
+ id: 27,
21610
+ name: "Bolivia (Plurinational State of)",
21611
+ code: "bo",
21612
+ calling_code: "591"
21613
+ },
21614
+ {
21615
+ id: 28,
21616
+ name: "Bonaire, Sint Eustatius and Saba",
21617
+ code: "bq",
21618
+ calling_code: "599"
21619
+ },
21620
+ {
21621
+ id: 29,
21622
+ name: "Bosnia and Herzegovina",
21623
+ code: "ba",
21624
+ calling_code: "387"
21625
+ },
21626
+ {
21627
+ id: 30,
21628
+ name: "Botswana",
21629
+ code: "bw",
21630
+ calling_code: "267"
21631
+ },
21632
+ {
21633
+ id: 31,
21634
+ name: "Bouvet Island",
21635
+ code: "bv",
21636
+ calling_code: "55"
21637
+ },
21638
+ {
21639
+ id: 32,
21640
+ name: "Brazil",
21641
+ code: "br",
21642
+ calling_code: "55"
21643
+ },
21644
+ {
21645
+ id: 33,
21646
+ name: "British Indian Ocean Territory",
21647
+ code: "io",
21648
+ calling_code: "246"
21649
+ },
21650
+ {
21651
+ id: 34,
21652
+ name: "Brunei Darussalam",
21653
+ code: "bn",
21654
+ calling_code: "673"
21655
+ },
21656
+ {
21657
+ id: 35,
21658
+ name: "Bulgaria",
21659
+ code: "bg",
21660
+ calling_code: "359"
21661
+ },
21662
+ {
21663
+ id: 36,
21664
+ name: "Burkina Faso",
21665
+ code: "bf",
21666
+ calling_code: "226"
21667
+ },
21668
+ {
21669
+ id: 37,
21670
+ name: "Burundi",
21671
+ code: "bi",
21672
+ calling_code: "257"
21673
+ },
21674
+ {
21675
+ id: 38,
21676
+ name: "Cabo Verde",
21677
+ code: "cv",
21678
+ calling_code: "238"
21679
+ },
21680
+ {
21681
+ id: 39,
21682
+ name: "Cambodia",
21683
+ code: "kh",
21684
+ calling_code: "855"
21685
+ },
21686
+ {
21687
+ id: 40,
21688
+ name: "Cameroon",
21689
+ code: "cm",
21690
+ calling_code: "237"
21691
+ },
21692
+ {
21693
+ id: 41,
21694
+ name: "Canada",
21695
+ code: "ca",
21696
+ calling_code: "1"
21697
+ },
21698
+ {
21699
+ id: 42,
21700
+ name: "Cayman Islands",
21701
+ code: "ky",
21702
+ calling_code: "1-345"
21703
+ },
21704
+ {
21705
+ id: 43,
21706
+ name: "Central African Republic",
21707
+ code: "cf",
21708
+ calling_code: "236"
21709
+ },
21710
+ {
21711
+ id: 44,
21712
+ name: "Chad",
21713
+ code: "td",
21714
+ calling_code: "235"
21715
+ },
21716
+ {
21717
+ id: 45,
21718
+ name: "Chile",
21719
+ code: "cl",
21720
+ calling_code: "56"
21721
+ },
21722
+ {
21723
+ id: 46,
21724
+ name: "China",
21725
+ code: "cn",
21726
+ calling_code: "86"
21727
+ },
21728
+ {
21729
+ id: 47,
21730
+ name: "Christmas Island",
21731
+ code: "cx",
21732
+ calling_code: "61"
21733
+ },
21734
+ {
21735
+ id: 48,
21736
+ name: "Cocos (Keeling) Islands",
21737
+ code: "cc",
21738
+ calling_code: "61"
21739
+ },
21740
+ {
21741
+ id: 49,
21742
+ name: "Colombia",
21743
+ code: "co",
21744
+ calling_code: "57"
21745
+ },
21746
+ {
21747
+ id: 50,
21748
+ name: "Comoros",
21749
+ code: "km",
21750
+ calling_code: "269"
21751
+ },
21752
+ {
21753
+ id: 51,
21754
+ name: "Congo",
21755
+ code: "cg",
21756
+ calling_code: "242"
21757
+ },
21758
+ {
21759
+ id: 52,
21760
+ name: "Congo, Democratic Republic of the",
21761
+ code: "cd",
21762
+ calling_code: "242"
21763
+ },
21764
+ {
21765
+ id: 53,
21766
+ name: "Cook Islands",
21767
+ code: "ck",
21768
+ calling_code: "682"
21769
+ },
21770
+ {
21771
+ id: 54,
21772
+ name: "Costa Rica",
21773
+ code: "cr",
21774
+ calling_code: "506"
21775
+ },
21776
+ {
21777
+ id: 55,
21778
+ name: "Côte d'Ivoire",
21779
+ code: "ci",
21780
+ calling_code: "225"
21781
+ },
21782
+ {
21783
+ id: 56,
21784
+ name: "Croatia",
21785
+ code: "hr",
21786
+ calling_code: "385"
21787
+ },
21788
+ {
21789
+ id: 57,
21790
+ name: "Cuba",
21791
+ code: "cu",
21792
+ calling_code: "53"
21793
+ },
21794
+ {
21795
+ id: 58,
21796
+ name: "Curaçao",
21797
+ code: "cw",
21798
+ calling_code: "599"
21799
+ },
21800
+ {
21801
+ id: 59,
21802
+ name: "Cyprus",
21803
+ code: "cy",
21804
+ calling_code: "357"
21805
+ },
21806
+ {
21807
+ id: 60,
21808
+ name: "Czechia (Czech Republic)",
21809
+ code: "cz",
21810
+ calling_code: "420"
21811
+ },
21812
+ {
21813
+ id: 61,
21814
+ name: "Denmark",
21815
+ code: "dk",
21816
+ calling_code: "45"
21817
+ },
21818
+ {
21819
+ id: 62,
21820
+ name: "Djibouti",
21821
+ code: "dj",
21822
+ calling_code: "253"
21823
+ },
21824
+ {
21825
+ id: 63,
21826
+ name: "Dominica",
21827
+ code: "dm",
21828
+ calling_code: "1-767"
21829
+ },
21830
+ {
21831
+ id: 64,
21832
+ name: "Dominican Republic",
21833
+ code: "do",
21834
+ calling_code: "1-809"
21835
+ },
21836
+ {
21837
+ id: 65,
21838
+ name: "Ecuador",
21839
+ code: "ec",
21840
+ calling_code: "593"
21841
+ },
21842
+ {
21843
+ id: 66,
21844
+ name: "Egypt",
21845
+ code: "eg",
21846
+ calling_code: "20"
21847
+ },
21848
+ {
21849
+ id: 67,
21850
+ name: "El Salvador",
21851
+ code: "sv",
21852
+ calling_code: "503"
21853
+ },
21854
+ {
21855
+ id: 68,
21856
+ name: "Equatorial Guinea",
21857
+ code: "gq",
21858
+ calling_code: "240"
21859
+ },
21860
+ {
21861
+ id: 69,
21862
+ name: "Eritrea",
21863
+ code: "er",
21864
+ calling_code: "291"
21865
+ },
21866
+ {
21867
+ id: 70,
21868
+ name: "Estonia",
21869
+ code: "ee",
21870
+ calling_code: "372"
21871
+ },
21872
+ {
21873
+ id: 71,
21874
+ name: "Eswatini",
21875
+ code: "sz",
21876
+ calling_code: "268"
21877
+ },
21878
+ {
21879
+ id: 72,
21880
+ name: "Ethiopia",
21881
+ code: "et",
21882
+ calling_code: "251"
21883
+ },
21884
+ {
21885
+ id: 73,
21886
+ name: "Falkland Islands (Malvinas)",
21887
+ code: "fk",
21888
+ calling_code: "500"
21889
+ },
21890
+ {
21891
+ id: 74,
21892
+ name: "Faroe Islands",
21893
+ code: "fo",
21894
+ calling_code: "298"
21895
+ },
21896
+ {
21897
+ id: 75,
21898
+ name: "Fiji",
21899
+ code: "fj",
21900
+ calling_code: "679"
21901
+ },
21902
+ {
21903
+ id: 76,
21904
+ name: "Finland",
21905
+ code: "fi",
21906
+ calling_code: "358"
21907
+ },
21908
+ {
21909
+ id: 77,
21910
+ name: "France",
21911
+ code: "fr",
21912
+ calling_code: "33"
21913
+ },
21914
+ {
21915
+ id: 78,
21916
+ name: "French Guiana",
21917
+ code: "gf",
21918
+ calling_code: "594"
21919
+ },
21920
+ {
21921
+ id: 79,
21922
+ name: "French Polynesia",
21923
+ code: "pf",
21924
+ calling_code: "689"
21925
+ },
21926
+ {
21927
+ id: 80,
21928
+ name: "French Southern Territories",
21929
+ code: "tf",
21930
+ calling_code: "262"
21931
+ },
21932
+ {
21933
+ id: 81,
21934
+ name: "Gabon",
21935
+ code: "ga",
21936
+ calling_code: "241"
21937
+ },
21938
+ {
21939
+ id: 82,
21940
+ name: "Gambia",
21941
+ code: "gm",
21942
+ calling_code: "220"
21943
+ },
21944
+ {
21945
+ id: 83,
21946
+ name: "Georgia",
21947
+ code: "ge",
21948
+ calling_code: "995"
21949
+ },
21950
+ {
21951
+ id: 84,
21952
+ name: "Germany",
21953
+ code: "de",
21954
+ calling_code: "49"
21955
+ },
21956
+ {
21957
+ id: 85,
21958
+ name: "Ghana",
21959
+ code: "gh",
21960
+ calling_code: "233"
21961
+ },
21962
+ {
21963
+ id: 86,
21964
+ name: "Gibraltar",
21965
+ code: "gi",
21966
+ calling_code: "350"
21967
+ },
21968
+ {
21969
+ id: 87,
21970
+ name: "Greece",
21971
+ code: "gr",
21972
+ calling_code: "30"
21973
+ },
21974
+ {
21975
+ id: 88,
21976
+ name: "Greenland",
21977
+ code: "gl",
21978
+ calling_code: "299"
21979
+ },
21980
+ {
21981
+ id: 89,
21982
+ name: "Grenada",
21983
+ code: "gd",
21984
+ calling_code: "1-473"
21985
+ },
21986
+ {
21987
+ id: 90,
21988
+ name: "Guadeloupe",
21989
+ code: "gp",
21990
+ calling_code: "590"
21991
+ },
21992
+ {
21993
+ id: 91,
21994
+ name: "Guam",
21995
+ code: "gu",
21996
+ calling_code: "1-671"
21997
+ },
21998
+ {
21999
+ id: 92,
22000
+ name: "Guatemala",
22001
+ code: "gt",
22002
+ calling_code: "502"
22003
+ },
22004
+ {
22005
+ id: 93,
22006
+ name: "Guernsey",
22007
+ code: "gg",
22008
+ calling_code: "44-1481"
22009
+ },
22010
+ {
22011
+ id: 94,
22012
+ name: "Guinea",
22013
+ code: "gn",
22014
+ calling_code: "224"
22015
+ },
22016
+ {
22017
+ id: 95,
22018
+ name: "Guinea-Bissau",
22019
+ code: "gw",
22020
+ calling_code: "245"
22021
+ },
22022
+ {
22023
+ id: 96,
22024
+ name: "Guyana",
22025
+ code: "gy",
22026
+ calling_code: "592"
22027
+ },
22028
+ {
22029
+ id: 97,
22030
+ name: "Haiti",
22031
+ code: "ht",
22032
+ calling_code: "509"
22033
+ },
22034
+ {
22035
+ id: 98,
22036
+ name: "Heard Island and McDonald Islands",
22037
+ code: "hm",
22038
+ calling_code: "672"
22039
+ },
22040
+ {
22041
+ id: 99,
22042
+ name: "Holy See",
22043
+ code: "va",
22044
+ calling_code: "379"
22045
+ },
22046
+ {
22047
+ id: 100,
22048
+ name: "Honduras",
22049
+ code: "hn",
22050
+ calling_code: "504"
22051
+ },
22052
+ {
22053
+ id: 101,
22054
+ name: "Hong Kong",
22055
+ code: "hk",
22056
+ calling_code: "852"
22057
+ },
22058
+ {
22059
+ id: 102,
22060
+ name: "Hungary",
22061
+ code: "hu",
22062
+ calling_code: "36"
22063
+ },
22064
+ {
22065
+ id: 103,
22066
+ name: "Iceland",
22067
+ code: "is",
22068
+ calling_code: "354"
22069
+ },
22070
+ {
22071
+ id: 104,
22072
+ name: "India",
22073
+ code: "in",
22074
+ calling_code: "91"
22075
+ },
22076
+ {
22077
+ id: 105,
22078
+ name: "Indonesia",
22079
+ code: "id",
22080
+ calling_code: "62"
22081
+ },
22082
+ {
22083
+ id: 106,
22084
+ name: "Iran (Islamic Republic of)",
22085
+ code: "ir",
22086
+ calling_code: "98"
22087
+ },
22088
+ {
22089
+ id: 107,
22090
+ name: "Iraq",
22091
+ code: "iq",
22092
+ calling_code: "964"
22093
+ },
22094
+ {
22095
+ id: 108,
22096
+ name: "Ireland",
22097
+ code: "ie",
22098
+ calling_code: "353"
22099
+ },
22100
+ {
22101
+ id: 109,
22102
+ name: "Isle of Man",
22103
+ code: "im",
22104
+ calling_code: "44-1624"
22105
+ },
22106
+ {
22107
+ id: 110,
22108
+ name: "Israel",
22109
+ code: "il",
22110
+ calling_code: "972"
22111
+ },
22112
+ {
22113
+ id: 111,
22114
+ name: "Italy",
22115
+ code: "it",
22116
+ calling_code: "39"
22117
+ },
22118
+ {
22119
+ id: 112,
22120
+ name: "Jamaica",
22121
+ code: "jm",
22122
+ calling_code: "1-876"
22123
+ },
22124
+ {
22125
+ id: 113,
22126
+ name: "Japan",
22127
+ code: "jp",
22128
+ calling_code: "81"
22129
+ },
22130
+ {
22131
+ id: 114,
22132
+ name: "Jersey",
22133
+ code: "je",
22134
+ calling_code: "44-1534"
22135
+ },
22136
+ {
22137
+ id: 115,
22138
+ name: "Jordan",
22139
+ code: "jo",
22140
+ calling_code: "962"
22141
+ },
22142
+ {
22143
+ id: 116,
22144
+ name: "Kazakhstan",
22145
+ code: "kz",
22146
+ calling_code: "7"
22147
+ },
22148
+ {
22149
+ id: 117,
22150
+ name: "Kenya",
22151
+ code: "ke",
22152
+ calling_code: "254"
22153
+ },
22154
+ {
22155
+ id: 118,
22156
+ name: "Kiribati",
22157
+ code: "ki",
22158
+ calling_code: "686"
22159
+ },
22160
+ {
22161
+ id: 119,
22162
+ name: "Korea (Democratic People's Republic of)",
22163
+ code: "kp",
22164
+ calling_code: "850"
22165
+ },
22166
+ {
22167
+ id: 120,
22168
+ name: "Korea, Republic of",
22169
+ code: "kr",
22170
+ calling_code: "82"
22171
+ },
22172
+ {
22173
+ id: 121,
22174
+ name: "Kuwait",
22175
+ code: "kw",
22176
+ calling_code: "965"
22177
+ },
22178
+ {
22179
+ id: 122,
22180
+ name: "Kyrgyzstan",
22181
+ code: "kg",
22182
+ calling_code: "996"
22183
+ },
22184
+ {
22185
+ id: 123,
22186
+ name: "Lao People's Democratic Republic",
22187
+ code: "la",
22188
+ calling_code: "856"
22189
+ },
22190
+ {
22191
+ id: 124,
22192
+ name: "Latvia",
22193
+ code: "lv",
22194
+ calling_code: "371"
22195
+ },
22196
+ {
22197
+ id: 125,
22198
+ name: "Lebanon",
22199
+ code: "lb",
22200
+ calling_code: "961"
22201
+ },
22202
+ {
22203
+ id: 126,
22204
+ name: "Lesotho",
22205
+ code: "ls",
22206
+ calling_code: "266"
22207
+ },
22208
+ {
22209
+ id: 127,
22210
+ name: "Liberia",
22211
+ code: "lr",
22212
+ calling_code: "231"
22213
+ },
22214
+ {
22215
+ id: 128,
22216
+ name: "Libya",
22217
+ code: "ly",
22218
+ calling_code: "218"
22219
+ },
22220
+ {
22221
+ id: 129,
22222
+ name: "Liechtenstein",
22223
+ code: "li",
22224
+ calling_code: "423"
22225
+ },
22226
+ {
22227
+ id: 130,
22228
+ name: "Lithuania",
22229
+ code: "lt",
22230
+ calling_code: "370"
22231
+ },
22232
+ {
22233
+ id: 131,
22234
+ name: "Luxembourg",
22235
+ code: "lu",
22236
+ calling_code: "352"
22237
+ },
22238
+ {
22239
+ id: 132,
22240
+ name: "Macao",
22241
+ code: "mo",
22242
+ calling_code: "853"
22243
+ },
22244
+ {
22245
+ id: 133,
22246
+ name: "Madagascar",
22247
+ code: "mg",
22248
+ calling_code: "261"
22249
+ },
22250
+ {
22251
+ id: 134,
22252
+ name: "Malawi",
22253
+ code: "mw",
22254
+ calling_code: "265"
22255
+ },
22256
+ {
22257
+ id: 135,
22258
+ name: "Malaysia",
22259
+ code: "my",
22260
+ calling_code: "60"
22261
+ },
22262
+ {
22263
+ id: 136,
22264
+ name: "Maldives",
22265
+ code: "mv",
22266
+ calling_code: "960"
22267
+ },
22268
+ {
22269
+ id: 137,
22270
+ name: "Mali",
22271
+ code: "ml",
22272
+ calling_code: "223"
22273
+ },
22274
+ {
22275
+ id: 138,
22276
+ name: "Malta",
22277
+ code: "mt",
22278
+ calling_code: "356"
22279
+ },
22280
+ {
22281
+ id: 139,
22282
+ name: "Marshall Islands",
22283
+ code: "mh",
22284
+ calling_code: "692"
22285
+ },
22286
+ {
22287
+ id: 140,
22288
+ name: "Martinique",
22289
+ code: "mq",
22290
+ calling_code: "596"
22291
+ },
22292
+ {
22293
+ id: 141,
22294
+ name: "Mauritania",
22295
+ code: "mr",
22296
+ calling_code: "222"
22297
+ },
22298
+ {
22299
+ id: 142,
22300
+ name: "Mauritius",
22301
+ code: "mu",
22302
+ calling_code: "230"
22303
+ },
22304
+ {
22305
+ id: 143,
22306
+ name: "Mayotte",
22307
+ code: "yt",
22308
+ calling_code: "262"
22309
+ },
22310
+ {
22311
+ id: 144,
22312
+ name: "Mexico",
22313
+ code: "mx",
22314
+ calling_code: "52"
22315
+ },
22316
+ {
22317
+ id: 145,
22318
+ name: "Micronesia (Federated States of)",
22319
+ code: "fm",
22320
+ calling_code: "691"
22321
+ },
22322
+ {
22323
+ id: 146,
22324
+ name: "Moldova, Republic of",
22325
+ code: "md",
22326
+ calling_code: "373"
22327
+ },
22328
+ {
22329
+ id: 147,
22330
+ name: "Monaco",
22331
+ code: "mc",
22332
+ calling_code: "377"
22333
+ },
22334
+ {
22335
+ id: 148,
22336
+ name: "Mongolia",
22337
+ code: "mn",
22338
+ calling_code: "976"
22339
+ },
22340
+ {
22341
+ id: 149,
22342
+ name: "Montenegro",
22343
+ code: "me",
22344
+ calling_code: "382"
22345
+ },
22346
+ {
22347
+ id: 150,
22348
+ name: "Montserrat",
22349
+ code: "ms",
22350
+ calling_code: "1-664"
22351
+ },
22352
+ {
22353
+ id: 151,
22354
+ name: "Morocco",
22355
+ code: "ma",
22356
+ calling_code: "212"
22357
+ },
22358
+ {
22359
+ id: 152,
22360
+ name: "Mozambique",
22361
+ code: "mz",
22362
+ calling_code: "258"
22363
+ },
22364
+ {
22365
+ id: 153,
22366
+ name: "Myanmar",
22367
+ code: "mm",
22368
+ calling_code: "95"
22369
+ },
22370
+ {
22371
+ id: 154,
22372
+ name: "Namibia",
22373
+ code: "na",
22374
+ calling_code: "264"
22375
+ },
22376
+ {
22377
+ id: 155,
22378
+ name: "Nauru",
22379
+ code: "nr",
22380
+ calling_code: "674"
22381
+ },
22382
+ {
22383
+ id: 156,
22384
+ name: "Nepal",
22385
+ code: "np",
22386
+ calling_code: "977"
22387
+ },
22388
+ {
22389
+ id: 157,
22390
+ name: "Netherlands",
22391
+ code: "nl",
22392
+ calling_code: "31"
22393
+ },
22394
+ {
22395
+ id: 158,
22396
+ name: "New Caledonia",
22397
+ code: "nc",
22398
+ calling_code: "687"
22399
+ },
22400
+ {
22401
+ id: 159,
22402
+ name: "New Zealand",
22403
+ code: "nz",
22404
+ calling_code: "64"
22405
+ },
22406
+ {
22407
+ id: 160,
22408
+ name: "Nicaragua",
22409
+ code: "ni",
22410
+ calling_code: "505"
22411
+ },
22412
+ {
22413
+ id: 161,
22414
+ name: "Niger",
22415
+ code: "ne",
22416
+ calling_code: "227"
22417
+ },
22418
+ {
22419
+ id: 162,
22420
+ name: "Nigeria",
22421
+ code: "ng",
22422
+ calling_code: "234"
22423
+ },
22424
+ {
22425
+ id: 163,
22426
+ name: "Niue",
22427
+ code: "nu",
22428
+ calling_code: "683"
22429
+ },
22430
+ {
22431
+ id: 164,
22432
+ name: "Norfolk Island",
22433
+ code: "nf",
22434
+ calling_code: "672"
22435
+ },
22436
+ {
22437
+ id: 165,
22438
+ name: "North Macedonia",
22439
+ code: "mk",
22440
+ calling_code: "389"
22441
+ },
22442
+ {
22443
+ id: 166,
22444
+ name: "Northern Mariana Islands",
22445
+ code: "mp",
22446
+ calling_code: "1-670"
22447
+ },
22448
+ {
22449
+ id: 167,
22450
+ name: "Norway",
22451
+ code: "no",
22452
+ calling_code: "47"
22453
+ },
22454
+ {
22455
+ id: 168,
22456
+ name: "Oman",
22457
+ code: "om",
22458
+ calling_code: "968"
22459
+ },
22460
+ {
22461
+ id: 169,
22462
+ name: "Pakistan",
22463
+ code: "pk",
22464
+ calling_code: "92"
22465
+ },
22466
+ {
22467
+ id: 170,
22468
+ name: "Palau",
22469
+ code: "pw",
22470
+ calling_code: "680"
22471
+ },
22472
+ {
22473
+ id: 171,
22474
+ name: "Palestine, State of",
22475
+ code: "ps",
22476
+ calling_code: "970"
22477
+ },
22478
+ {
22479
+ id: 172,
22480
+ name: "Panama",
22481
+ code: "pa",
22482
+ calling_code: "507"
22483
+ },
22484
+ {
22485
+ id: 173,
22486
+ name: "Papua New Guinea",
22487
+ code: "pg",
22488
+ calling_code: "675"
22489
+ },
22490
+ {
22491
+ id: 174,
22492
+ name: "Paraguay",
22493
+ code: "py",
22494
+ calling_code: "595"
22495
+ },
22496
+ {
22497
+ id: 175,
22498
+ name: "Peru",
22499
+ code: "pe",
22500
+ calling_code: "51"
22501
+ },
22502
+ {
22503
+ id: 176,
22504
+ name: "Philippines",
22505
+ code: "ph",
22506
+ calling_code: "63"
22507
+ },
22508
+ {
22509
+ id: 177,
22510
+ name: "Pitcairn",
22511
+ code: "pn",
22512
+ calling_code: "64"
22513
+ },
22514
+ {
22515
+ id: 178,
22516
+ name: "Poland",
22517
+ code: "pl",
22518
+ calling_code: "48"
22519
+ },
22520
+ {
22521
+ id: 179,
22522
+ name: "Portugal",
22523
+ code: "pt",
22524
+ calling_code: "351"
22525
+ },
22526
+ {
22527
+ id: 180,
22528
+ name: "Puerto Rico",
22529
+ code: "pr",
22530
+ calling_code: "1-787"
22531
+ },
22532
+ {
22533
+ id: 181,
22534
+ name: "Qatar",
22535
+ code: "qa",
22536
+ calling_code: "974"
22537
+ },
22538
+ {
22539
+ id: 182,
22540
+ name: "Réunion",
22541
+ code: "re",
22542
+ calling_code: "262"
22543
+ },
22544
+ {
22545
+ id: 183,
22546
+ name: "Romania",
22547
+ code: "ro",
22548
+ calling_code: "40"
22549
+ },
22550
+ {
22551
+ id: 184,
22552
+ name: "Russian Federation",
22553
+ code: "ru",
22554
+ calling_code: "7"
22555
+ },
22556
+ {
22557
+ id: 185,
22558
+ name: "Rwanda",
22559
+ code: "rw",
22560
+ calling_code: "250"
22561
+ },
22562
+ {
22563
+ id: 186,
22564
+ name: "Saint Barthélemy",
22565
+ code: "bl",
22566
+ calling_code: "590"
22567
+ },
22568
+ {
22569
+ id: 187,
22570
+ name: "Saint Helena, Ascension and Tristan da Cunha",
22571
+ code: "sh",
22572
+ calling_code: "290"
22573
+ },
22574
+ {
22575
+ id: 188,
22576
+ name: "Saint Kitts and Nevis",
22577
+ code: "kn",
22578
+ calling_code: "1-869"
22579
+ },
22580
+ {
22581
+ id: 189,
22582
+ name: "Saint Lucia",
22583
+ code: "lc",
22584
+ calling_code: "1-758"
22585
+ },
22586
+ {
22587
+ id: 190,
22588
+ name: "Saint Martin (French part)",
22589
+ code: "mf",
22590
+ calling_code: "590"
22591
+ },
22592
+ {
22593
+ id: 191,
22594
+ name: "Saint Pierre and Miquelon",
22595
+ code: "pm",
22596
+ calling_code: "508"
22597
+ },
22598
+ {
22599
+ id: 192,
22600
+ name: "Saint Vincent and the Grenadines",
22601
+ code: "vc",
22602
+ calling_code: "1-784"
22603
+ },
22604
+ {
22605
+ id: 193,
22606
+ name: "Samoa",
22607
+ code: "ws",
22608
+ calling_code: "685"
22609
+ },
22610
+ {
22611
+ id: 194,
22612
+ name: "San Marino",
22613
+ code: "sm",
22614
+ calling_code: "378"
22615
+ },
22616
+ {
22617
+ id: 195,
22618
+ name: "Sao Tome and Principe",
22619
+ code: "st",
22620
+ calling_code: "239"
22621
+ },
22622
+ {
22623
+ id: 196,
22624
+ name: "Saudi Arabia",
22625
+ code: "sa",
22626
+ calling_code: "966"
22627
+ },
22628
+ {
22629
+ id: 197,
22630
+ name: "Senegal",
22631
+ code: "sn",
22632
+ calling_code: "221"
22633
+ },
22634
+ {
22635
+ id: 198,
22636
+ name: "Serbia",
22637
+ code: "rs",
22638
+ calling_code: "381"
22639
+ },
22640
+ {
22641
+ id: 199,
22642
+ name: "Seychelles",
22643
+ code: "sc",
22644
+ calling_code: "248"
22645
+ },
22646
+ {
22647
+ id: 200,
22648
+ name: "Sierra Leone",
22649
+ code: "sl",
22650
+ calling_code: "232"
22651
+ },
22652
+ {
22653
+ id: 201,
22654
+ name: "Singapore",
22655
+ code: "sg",
22656
+ calling_code: "65"
22657
+ },
22658
+ {
22659
+ id: 202,
22660
+ name: "Sint Maarten (Dutch part)",
22661
+ code: "sx",
22662
+ calling_code: "599"
22663
+ },
22664
+ {
22665
+ id: 203,
22666
+ name: "Slovakia",
22667
+ code: "sk",
22668
+ calling_code: "421"
22669
+ },
22670
+ {
22671
+ id: 204,
22672
+ name: "Slovenia",
22673
+ code: "si",
22674
+ calling_code: "386"
22675
+ },
22676
+ {
22677
+ id: 205,
22678
+ name: "Solomon Islands",
22679
+ code: "sb",
22680
+ calling_code: "677"
22681
+ },
22682
+ {
22683
+ id: 206,
22684
+ name: "Somalia",
22685
+ code: "so",
22686
+ calling_code: "252"
22687
+ },
22688
+ {
22689
+ id: 207,
22690
+ name: "South Africa",
22691
+ code: "za",
22692
+ calling_code: "27"
22693
+ },
22694
+ {
22695
+ id: 208,
22696
+ name: "South Georgia and the South Sandwich Islands",
22697
+ code: "gs",
22698
+ calling_code: "995"
22699
+ },
22700
+ {
22701
+ id: 209,
22702
+ name: "South Sudan",
22703
+ code: "ss",
22704
+ calling_code: "211"
22705
+ },
22706
+ {
22707
+ id: 210,
22708
+ name: "Spain",
22709
+ code: "es",
22710
+ calling_code: "34"
22711
+ },
22712
+ {
22713
+ id: 211,
22714
+ name: "Sri Lanka",
22715
+ code: "lk",
22716
+ calling_code: "94"
22717
+ },
22718
+ {
22719
+ id: 212,
22720
+ name: "Sudan",
22721
+ code: "sd",
22722
+ calling_code: "249"
22723
+ },
22724
+ {
22725
+ id: 213,
22726
+ name: "Suriname",
22727
+ code: "sr",
22728
+ calling_code: "597"
22729
+ },
22730
+ {
22731
+ id: 214,
22732
+ name: "Svalbard and Jan Mayen",
22733
+ code: "sj",
22734
+ calling_code: "47"
22735
+ },
22736
+ {
22737
+ id: 215,
22738
+ name: "Sweden",
22739
+ code: "se",
22740
+ calling_code: "46"
22741
+ },
22742
+ {
22743
+ id: 216,
22744
+ name: "Switzerland",
22745
+ code: "ch",
22746
+ calling_code: "41"
22747
+ },
22748
+ {
22749
+ id: 217,
22750
+ name: "Syrian Arab Republic",
22751
+ code: "sy",
22752
+ calling_code: "963"
22753
+ },
22754
+ {
22755
+ id: 218,
22756
+ name: "Taiwan, Province of China",
22757
+ code: "tw",
22758
+ calling_code: "886"
22759
+ },
22760
+ {
22761
+ id: 219,
22762
+ name: "Tajikistan",
22763
+ code: "tj",
22764
+ calling_code: "992"
22765
+ },
22766
+ {
22767
+ id: 220,
22768
+ name: "Tanzania, United Republic of",
22769
+ code: "tz",
22770
+ calling_code: "255"
22771
+ },
22772
+ {
22773
+ id: 221,
22774
+ name: "Thailand",
22775
+ code: "th",
22776
+ calling_code: "66"
22777
+ },
22778
+ {
22779
+ id: 222,
22780
+ name: "Timor-Leste",
22781
+ code: "tl",
22782
+ calling_code: "670"
22783
+ },
22784
+ {
22785
+ id: 223,
22786
+ name: "Togo",
22787
+ code: "tg",
22788
+ calling_code: "228"
22789
+ },
22790
+ {
22791
+ id: 224,
22792
+ name: "Tokelau",
22793
+ code: "tk",
22794
+ calling_code: "690"
22795
+ },
22796
+ {
22797
+ id: 225,
22798
+ name: "Tonga",
22799
+ code: "to",
22800
+ calling_code: "676"
22801
+ },
22802
+ {
22803
+ id: 226,
22804
+ name: "Trinidad and Tobago",
22805
+ code: "tt",
22806
+ calling_code: "1-868"
22807
+ },
22808
+ {
22809
+ id: 227,
22810
+ name: "Tunisia",
22811
+ code: "tn",
22812
+ calling_code: "216"
22813
+ },
22814
+ {
22815
+ id: 228,
22816
+ name: "Turkey",
22817
+ code: "tr",
22818
+ calling_code: "90"
22819
+ },
22820
+ {
22821
+ id: 229,
22822
+ name: "Turkmenistan",
22823
+ code: "tm",
22824
+ calling_code: "993"
22825
+ },
22826
+ {
22827
+ id: 230,
22828
+ name: "Turks and Caicos Islands",
22829
+ code: "tc",
22830
+ calling_code: "1-649"
22831
+ },
22832
+ {
22833
+ id: 231,
22834
+ name: "Tuvalu",
22835
+ code: "tv",
22836
+ calling_code: "688"
22837
+ },
22838
+ {
22839
+ id: 232,
22840
+ name: "Uganda",
22841
+ code: "ug",
22842
+ calling_code: "256"
22843
+ },
22844
+ {
22845
+ id: 233,
22846
+ name: "Ukraine",
22847
+ code: "ua",
22848
+ calling_code: "380"
22849
+ },
22850
+ {
22851
+ id: 234,
22852
+ name: "United Arab Emirates",
22853
+ code: "ae",
22854
+ calling_code: "971"
22855
+ },
22856
+ {
22857
+ id: 235,
22858
+ name: "United Kingdom of Great Britain and Northern Ireland",
22859
+ code: "gb",
22860
+ calling_code: "44"
22861
+ },
22862
+ {
22863
+ id: 236,
22864
+ name: "United States of America",
22865
+ code: "us",
22866
+ calling_code: "1"
22867
+ },
22868
+ {
22869
+ id: 237,
22870
+ name: "United States Minor Outlying Islands",
22871
+ code: "um",
22872
+ calling_code: "246"
22873
+ },
22874
+ {
22875
+ id: 238,
22876
+ name: "Uruguay",
22877
+ code: "uy",
22878
+ calling_code: "598"
22879
+ },
22880
+ {
22881
+ id: 239,
22882
+ name: "Uzbekistan",
22883
+ code: "uz",
22884
+ calling_code: "998"
22885
+ },
22886
+ {
22887
+ id: 240,
22888
+ name: "Vanuatu",
22889
+ code: "vu",
22890
+ calling_code: "678"
22891
+ },
22892
+ {
22893
+ id: 241,
22894
+ name: "Venezuela (Bolivarian Republic of)",
22895
+ code: "ve",
22896
+ calling_code: "58"
22897
+ },
22898
+ {
22899
+ id: 242,
22900
+ name: "Viet Nam",
22901
+ code: "vn",
22902
+ calling_code: "84"
22903
+ },
22904
+ {
22905
+ id: 243,
22906
+ name: "Virgin Islands (British)",
22907
+ code: "vg",
22908
+ calling_code: "1284"
22909
+ },
22910
+ {
22911
+ id: 244,
22912
+ name: "Virgin Islands (U.S.)",
22913
+ code: "vi",
22914
+ calling_code: "1"
22915
+ },
22916
+ {
22917
+ id: 245,
22918
+ name: "Wallis and Futuna",
22919
+ code: "wf",
22920
+ calling_code: "681"
22921
+ },
22922
+ {
22923
+ id: 246,
22924
+ name: "Western Sahara",
22925
+ code: "eh",
22926
+ calling_code: "212"
22927
+ },
22928
+ {
22929
+ id: 247,
22930
+ name: "Yemen",
22931
+ code: "ye",
22932
+ calling_code: "967"
22933
+ },
22934
+ {
22935
+ id: 248,
22936
+ name: "Zambia",
22937
+ code: "zm",
22938
+ calling_code: "260"
22939
+ },
22940
+ {
22941
+ id: 249,
22942
+ name: "Zimbabwe",
22943
+ code: "zw",
22944
+ calling_code: "263"
22945
+ }
22946
+ ];
22947
+
22948
+ class CountryService extends DataService {
22949
+ constructor() {
22950
+ super();
22951
+ this.modelClass = Country;
22952
+ this.collectionClass = Collection;
22953
+ this.setCache(countries);
22954
+ }
22955
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
22956
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, providedIn: 'root' }); }
22957
+ }
22958
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, decorators: [{
22959
+ type: Injectable,
22960
+ args: [{
22961
+ providedIn: 'root'
22962
+ }]
22963
+ }], ctorParameters: () => [] });
22964
+
21384
22965
  class SetupItemService extends RestService$1 {
21385
22966
  constructor() {
21386
22967
  super(...arguments);
@@ -23175,13 +24756,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
23175
24756
  }] }] });
23176
24757
 
23177
24758
  const ADBLOCK_ERROR_HTML = new InjectionToken('ADBLOCK_ERROR_HTML');
23178
- const ADBLOCK_ERROR_HTML_VALUE = `
23179
- <div class="text-center">
23180
- <strong>Action needed - Your adblocker is blocking CoreLogic</strong>
23181
- To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
23182
- Please disable your adblocker or whitelist TaxTank to continue.
23183
- <a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
23184
- </div>
24759
+ const ADBLOCK_ERROR_HTML_VALUE = `
24760
+ <div class="text-center">
24761
+ <strong>Action needed - Your adblocker is blocking CoreLogic</strong>
24762
+ To add a property in TaxTank we need to fetch data from CoreLogic — but your ad blocker is getting in the way.
24763
+ Please disable your adblocker or whitelist TaxTank to continue.
24764
+ <a class="btn" target="_blank" href="https://support.taxtank.com.au/en/articles/10505609-how-to-ensure-seamless-functionality-while-using-ad-blockers-with-taxtank">Learn more</a>
24765
+ </div>
23185
24766
  `;
23186
24767
 
23187
24768
  /**
@@ -28471,5 +30052,5 @@ var MessagesEnum;
28471
30052
  * Generated bundle index. Do not edit.
28472
30053
  */
28473
30054
 
28474
- export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressService, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, 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, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, 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, Country, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, 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, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, 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, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, 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, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, 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, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, 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, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, 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, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, 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, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
30055
+ export { ADBLOCK_ERROR_HTML, ADBLOCK_ERROR_HTML_VALUE, AbstractForm, AbstractModel, AccountSetupItem, AccountSetupItemCollection, AccountSetupItemStatusEnum, AccountSetupItemsEnum, AccountSetupService, AdblockDetectorService, Address, AddressForm, AddressSuggestion, AddressTypeEnum, AllocationGroup, AllocationGroupCollection, AllocationRule, AllocationRuleCollection, AllocationRuleConditionComparisonOperatorEnum, AllocationRuleConditionFieldEnum, AllocationRuleConditionOperatorEnum, AllocationRuleForm, AllocationRuleService, AllocationRuleTransaction, AllocationRuleTransactionMetaField, AllocationRuleTypeEnum, AlphabetColorsEnum, 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, BankAccountAllocationForm, BankAccountCalculationService, BankAccountChartData, BankAccountCollection, BankAccountForm, BankAccountImportForm, BankAccountMessagesEnum, BankAccountPropertiesForm, BankAccountProperty, BankAccountService, BankAccountStatusEnum, BankAccountTypeEnum, BankAccountsFilterForm, BankAccountsImportForm, BankConnection, BankConnectionCollection, BankConnectionForm, BankConnectionMessagesEnum, BankConnectionService, BankConnectionStatusEnum, BankExternalStats, BankPopularEnum, BankProviderEnum, BankService, BankTransaction, BankTransactionChartData, BankTransactionCollection, BankTransactionComment, BankTransactionCommentForm, BankTransactionCommentMessagesEnum, BankTransactionCommentService, BankTransactionImport, BankTransactionImportCollection, BankTransactionImportMessagesEnum, BankTransactionImportService, BankTransactionService, BankTransactionSummaryFieldsEnum, BankTransactionTypeEnum, BasReport, BasReportForm, BasReportMessagesEnum, BasReportService, BasiqConfig, BasiqJob, BasiqJobResponse, BasiqJobStep, BasiqMessagesEnum, BasiqService, BasiqToken, BasiqTokenService, BasiqUser, BasiqUserService, BestVehicleLogbookCollection, BorrowingExpense, BorrowingExpenseLoan, BorrowingExpenseService, BorrowingReport, BorrowingReportForm, BorrowingReportMessagesEnum, BorrowingReportService, Budget, BudgetCashFlowItem, BudgetCollection, BudgetForm, BudgetMessagesEnum, BudgetMetadataInterface, BudgetRule, BudgetRuleCollection, BudgetRuleForm, BudgetRuleItem, BudgetRuleItemCollection, BudgetRuleService, BudgetService, BudgetTypeEnum, BusinessChartAccountsEnum, BusinessDepreciationMethod, BusinessDepreciationMethodEnum, BusinessDepreciationMethodForm, BusinessDepreciationMethodService, BusinessResolver, BusinessTypeEnum, CAPITAL_COSTS_ITEMS, CHART_ACCOUNTS_CATEGORIES, COLORS, CalculationFormItem, CalculationFormTypeEnum, CalendarEvent, CalendarEventCollection, CalendarEventTypeEnum, CalendarReminder, CalendarReminderCollection, CalendarReminderForm, CalendarReminderMessagesEnum, CalendarReminderService, CalendarReminderTypeEnum, CalendarViewEnum, 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, Country, CountryService, Currency, CurrencyService, CurrencyTypeEnum, CurrentFirmBranchService, DEDUCTION_CATEGORIES, DEPRECIATION_GROUPS, DOCUMENT_FILE_TYPES, DailyFrequencyEnum, DateAmountDictionary, DateFormatsEnum, DateRange, DeductionClothingTypeEnum, DeductionSelfEducationTypeEnum, Depreciation, DepreciationCalculationEnum, DepreciationCalculationPercentEnum, DepreciationCapitalProject, DepreciationCapitalProjectService, DepreciationCollection, DepreciationForecast, DepreciationForecastCollection, DepreciationForm, 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, EXPENSE_CATEGORY_BY_TYPE, EmployeeCollection, EmployeeDetails, EmployeeDetailsForm, EmployeeInvite, EmployeeInviteCollection, EmployeeInviteForm, EmployeeInviteRoleEnum, EmployeeInviteService, EmployeeMessagesEnum, EmployeeService, Endpoint, EquityPositionChartService, EventDispatcherService, ExchangeRate, ExchangeRateService, ExportDataTable, ExportFormatEnum, ExportFormatterService, ExportableCollection, FacebookService, FileService, FileValidator, FinancialGoal, FinancialGoalCollection, FinancialGoalFilterForm, FinancialGoalForm, FinancialGoalMessagesEnum, FinancialGoalService, FinancialGoalStatusEnum, FinancialGoalTypeEnum, FinancialYear, FinancialYearService, Firm, FirmBranch, FirmBranchForm, FirmBranchMessagesEnum, FirmBranchService, FirmForm, FirmInviteForm, FirmMessagesEnum, FirmService, FirmTypeEnum, FormValidationsEnum, GenderEnum, GooglePlaceService, GoogleService, HTTP_ERROR_MESSAGES, HeaderTitleService, Holding, HoldingCollection, HoldingExpenseForm, HoldingIncomeForm, HoldingReinvest, HoldingReinvestForm, HoldingSale, HoldingSaleCollection, HoldingSaleService, HoldingTrade, HoldingTradeCollection, HoldingTradeFilterForm, HoldingTradeForm, HoldingTradeImport, HoldingTradeImportCollection, HoldingTradeImportForm, HoldingTradeImportMessagesEnum, HoldingTradeImportService, HoldingTradeMessagesEnum, HoldingTradeReportItem, HoldingTradeService, HoldingTradeTypeEnum, HoldingType, HoldingTypeCategoryEnum, HoldingTypeCollection, HoldingTypeExchange, HoldingTypeExchangeListEnum, HoldingTypeExchangeService, HoldingTypeForm, HoldingTypeMessagesEnum, HoldingTypeService, HomeOfficeCalculatorForm, HomeOfficeClaim, HomeOfficeClaimCollection, HomeOfficeClaimForm, HomeOfficeClaimMessagesEnum, HomeOfficeClaimMethodEnum, HomeOfficeClaimService, HomeOfficeLog, HomeOfficeLogForm, HomeOfficeLogMessagesEnum, HomeOfficeLogService, INCOME_CATEGORY_BY_TYPE, 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, LoanInterestTypeEnum, LoanInterestTypeLabelEnum, LoanMaxNumberOfPaymentsEnum, LoanMessagesEnum, LoanPayment, LoanPaymentCollection, LoanPayout, LoanPayoutTypeEnum, LoanRepaymentTypeEnum, LoanRepaymentTypeLabelEnum, LoanService, LoanTypeEnum, LoanVehicleTypeEnum, LoginForm, LossTypeEnum, MODULE_URL_LIST, MONTHS, Message, MessageCollection, MessageDocument, MessageDocumentCollection, MessageDocumentService, MessageService, MessagesEnum, MfaDetails, MfaDetailsForm, MfaDetailsMessagesEnum, MfaDetailsService, MoneyCalendarEvent, MoneyCalendarEventCollection, MoneyScheduleFilterForm, 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, PALETTE_EQUITY, PALETTE_PRIMARY, PASSWORD_REGEXPS, PasswordForm, PdfFromDataTableService, PdfFromDomElementService, PdfFromHtmlTableService, PdfFromTableService, PdfOrientationEnum, PdfService, PdfSettings, Phone, PhoneForm, PhoneTypeEnum, PreloaderService, PriorDepreciationService, PriorTransactionService, Property, PropertyAddForm, PropertyCalculationService, PropertyCategory, PropertyCategoryListEnum, PropertyCategoryMovement, PropertyCategoryMovementCollection, PropertyCategoryMovementForm, PropertyCategoryMovementService, PropertyCategoryService, PropertyCollection, PropertyDepreciationCalculationEnum, PropertyEditForm, PropertyEquityChartData, PropertyEquityChartItem, PropertyEquityChartTypeEnum, PropertyForecast, PropertyForecastForm, PropertyMessagesEnum, PropertyReportItem, PropertyReportItemCollection, PropertyReportItemDepreciation, PropertyReportItemDepreciationCollection, PropertyReportItemTransaction, PropertyReportItemTransactionCollection, 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, RelativeDatePipe, ReportItem, ReportItemCollection, ReportItemDetails, ResetPasswordForm, RestMessagesEnum, RestService$1 as RestService, SERVICE_PRODUCT_ROLES, SafeUrlPipe, SalaryForecast, SalaryForecastService, ServiceNotificationService, ServiceNotificationStatusEnum, ServiceNotificationTypeEnum, ServicePayment, ServicePaymentMethod, ServicePaymentMethodService, ServicePaymentService, ServicePaymentStatusEnum, ServicePrice, ServicePriceCollection, ServicePriceEnum, ServicePriceOldEnum, 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, SoleContactItem, SoleContactItemCollection, SoleContactMessagesEnum, SoleContactService, SoleDetails, SoleDetailsForm, SoleDetailsResolver, SoleDetailsService, SoleForecast, SoleForecastService, SoleIncomeForm, SoleInvoice, SoleInvoiceCollection, SoleInvoiceForm, SoleInvoiceItem, SoleInvoiceItemCollection, SoleInvoiceItemForm, SoleInvoiceService, SoleInvoiceStateEnum, SoleInvoiceStatusesEnum, SoleInvoiceTaxTypeEnum, SoleInvoiceTemplate, SoleInvoiceTemplateForm, SoleInvoiceTemplateService, SoleInvoiceTemplateTaxTypeEnum, SoleInvoiceTypeEnum, SolePlItem, SolePlItemCollection, 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, TransactionBaseFilter, TransactionBaseFilterForm, TransactionBaseForm, TransactionCategoryEnum, TransactionCollection, TransactionForm, TransactionMetaField, TransactionOperationEnum, TransactionReportItem, TransactionReportItemCollection, TransactionService, TransactionSourceEnum, TransactionTypeEnum, TreeNodeData, USER_ROLES, USER_WORK_POSITION, UniqueEmailValidator, 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, VehicleClaimForm, VehicleClaimMethodEnum, VehicleClaimService, VehicleExpense, VehicleExpenseCollection, VehicleForm, VehicleLogbook, VehicleLogbookCollection, VehicleLogbookForm, VehicleLogbookMessages, VehicleLogbookPurposeEnum, VehicleLogbookService, VehicleMessagesEnum, VehicleService, WorkExpenseForm, WorkIncomeForm, XlsxService, YoutubeService, YoutubeVideosEnum, atLeastOneCheckedValidator, atLeastOneEnabledValidator, atoLinks, autocompleteValidator, cloneDeep, compare, compareMatOptions, compareWithControlValidator, conditionalValidator, createDate, currentFinYearValidator, dateRangeValidator, displayMatOptions, enumToList, fieldsSumValidator, getDocIcon, greaterThanValidator, matchSumValidator, maxDateValidator, minDateValidator, nameValidator, passwordMatchValidator, passwordValidator, recurringDates, replace, sort, sortDeep, toArray };
28475
30056
  //# sourceMappingURL=taxtank-core.mjs.map