taxtank-core 2.1.74 → 2.1.78
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/fesm2022/taxtank-core.mjs +1565 -76
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +26 -28
- package/package.json +1 -1
|
@@ -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 {
|
|
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
|
]; }
|
|
@@ -6648,7 +6627,7 @@ class Property extends Property$1 {
|
|
|
6648
6627
|
return this.corelogicLastRequest ? new Date(this.corelogicLastRequest.getTime() + Property.corelogicCooldown) : new Date();
|
|
6649
6628
|
}
|
|
6650
6629
|
isCorelogicAvailable() {
|
|
6651
|
-
return this.corelogicLastRequest < new Date(Date.now() - Property.corelogicCooldown);
|
|
6630
|
+
return this.address.country.isAustralianCode() && (this.corelogicLastRequest < new Date(Date.now() - Property.corelogicCooldown));
|
|
6652
6631
|
}
|
|
6653
6632
|
getGrowth() {
|
|
6654
6633
|
return this.valuation.marketValue - this.purchasePrice;
|
|
@@ -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
|
}
|
|
@@ -21381,6 +21357,1520 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImpo
|
|
|
21381
21357
|
}]
|
|
21382
21358
|
}], ctorParameters: () => [] });
|
|
21383
21359
|
|
|
21360
|
+
var countries = [
|
|
21361
|
+
{
|
|
21362
|
+
id: 14,
|
|
21363
|
+
name: "Australia",
|
|
21364
|
+
code: "au",
|
|
21365
|
+
calling_code: "61"
|
|
21366
|
+
},
|
|
21367
|
+
{
|
|
21368
|
+
id: 1,
|
|
21369
|
+
name: "Afghanistan",
|
|
21370
|
+
code: "af",
|
|
21371
|
+
calling_code: "93"
|
|
21372
|
+
},
|
|
21373
|
+
{
|
|
21374
|
+
id: 2,
|
|
21375
|
+
name: "Åland Islands",
|
|
21376
|
+
code: "ax",
|
|
21377
|
+
calling_code: "358"
|
|
21378
|
+
},
|
|
21379
|
+
{
|
|
21380
|
+
id: 3,
|
|
21381
|
+
name: "Albania",
|
|
21382
|
+
code: "al",
|
|
21383
|
+
calling_code: "355"
|
|
21384
|
+
},
|
|
21385
|
+
{
|
|
21386
|
+
id: 4,
|
|
21387
|
+
name: "Algeria",
|
|
21388
|
+
code: "dz",
|
|
21389
|
+
calling_code: "213"
|
|
21390
|
+
},
|
|
21391
|
+
{
|
|
21392
|
+
id: 5,
|
|
21393
|
+
name: "American Samoa",
|
|
21394
|
+
code: "as",
|
|
21395
|
+
calling_code: "1-684"
|
|
21396
|
+
},
|
|
21397
|
+
{
|
|
21398
|
+
id: 6,
|
|
21399
|
+
name: "Andorra",
|
|
21400
|
+
code: "ad",
|
|
21401
|
+
calling_code: "376"
|
|
21402
|
+
},
|
|
21403
|
+
{
|
|
21404
|
+
id: 7,
|
|
21405
|
+
name: "Angola",
|
|
21406
|
+
code: "ao",
|
|
21407
|
+
calling_code: "244"
|
|
21408
|
+
},
|
|
21409
|
+
{
|
|
21410
|
+
id: 8,
|
|
21411
|
+
name: "Anguilla",
|
|
21412
|
+
code: "ai",
|
|
21413
|
+
calling_code: "1-264"
|
|
21414
|
+
},
|
|
21415
|
+
{
|
|
21416
|
+
id: 9,
|
|
21417
|
+
name: "Antarctica",
|
|
21418
|
+
code: "aq",
|
|
21419
|
+
calling_code: "672"
|
|
21420
|
+
},
|
|
21421
|
+
{
|
|
21422
|
+
id: 10,
|
|
21423
|
+
name: "Antigua and Barbuda",
|
|
21424
|
+
code: "ag",
|
|
21425
|
+
calling_code: "1-268"
|
|
21426
|
+
},
|
|
21427
|
+
{
|
|
21428
|
+
id: 11,
|
|
21429
|
+
name: "Argentina",
|
|
21430
|
+
code: "ar",
|
|
21431
|
+
calling_code: "54"
|
|
21432
|
+
},
|
|
21433
|
+
{
|
|
21434
|
+
id: 12,
|
|
21435
|
+
name: "Armenia",
|
|
21436
|
+
code: "am",
|
|
21437
|
+
calling_code: "374"
|
|
21438
|
+
},
|
|
21439
|
+
{
|
|
21440
|
+
id: 13,
|
|
21441
|
+
name: "Aruba",
|
|
21442
|
+
code: "aw",
|
|
21443
|
+
calling_code: "297"
|
|
21444
|
+
},
|
|
21445
|
+
{
|
|
21446
|
+
id: 15,
|
|
21447
|
+
name: "Austria",
|
|
21448
|
+
code: "at",
|
|
21449
|
+
calling_code: "43"
|
|
21450
|
+
},
|
|
21451
|
+
{
|
|
21452
|
+
id: 16,
|
|
21453
|
+
name: "Azerbaijan",
|
|
21454
|
+
code: "az",
|
|
21455
|
+
calling_code: "994"
|
|
21456
|
+
},
|
|
21457
|
+
{
|
|
21458
|
+
id: 17,
|
|
21459
|
+
name: "Bahamas",
|
|
21460
|
+
code: "bs",
|
|
21461
|
+
calling_code: "1-242"
|
|
21462
|
+
},
|
|
21463
|
+
{
|
|
21464
|
+
id: 18,
|
|
21465
|
+
name: "Bahrain",
|
|
21466
|
+
code: "bh",
|
|
21467
|
+
calling_code: "973"
|
|
21468
|
+
},
|
|
21469
|
+
{
|
|
21470
|
+
id: 19,
|
|
21471
|
+
name: "Bangladesh",
|
|
21472
|
+
code: "bd",
|
|
21473
|
+
calling_code: "880"
|
|
21474
|
+
},
|
|
21475
|
+
{
|
|
21476
|
+
id: 20,
|
|
21477
|
+
name: "Barbados",
|
|
21478
|
+
code: "bb",
|
|
21479
|
+
calling_code: "1-246"
|
|
21480
|
+
},
|
|
21481
|
+
{
|
|
21482
|
+
id: 21,
|
|
21483
|
+
name: "Belarus",
|
|
21484
|
+
code: "by",
|
|
21485
|
+
calling_code: "375"
|
|
21486
|
+
},
|
|
21487
|
+
{
|
|
21488
|
+
id: 22,
|
|
21489
|
+
name: "Belgium",
|
|
21490
|
+
code: "be",
|
|
21491
|
+
calling_code: "32"
|
|
21492
|
+
},
|
|
21493
|
+
{
|
|
21494
|
+
id: 23,
|
|
21495
|
+
name: "Belize",
|
|
21496
|
+
code: "bz",
|
|
21497
|
+
calling_code: "501"
|
|
21498
|
+
},
|
|
21499
|
+
{
|
|
21500
|
+
id: 24,
|
|
21501
|
+
name: "Benin",
|
|
21502
|
+
code: "bj",
|
|
21503
|
+
calling_code: "229"
|
|
21504
|
+
},
|
|
21505
|
+
{
|
|
21506
|
+
id: 25,
|
|
21507
|
+
name: "Bermuda",
|
|
21508
|
+
code: "bm",
|
|
21509
|
+
calling_code: "1-441"
|
|
21510
|
+
},
|
|
21511
|
+
{
|
|
21512
|
+
id: 26,
|
|
21513
|
+
name: "Bhutan",
|
|
21514
|
+
code: "bt",
|
|
21515
|
+
calling_code: "975"
|
|
21516
|
+
},
|
|
21517
|
+
{
|
|
21518
|
+
id: 27,
|
|
21519
|
+
name: "Bolivia (Plurinational State of)",
|
|
21520
|
+
code: "bo",
|
|
21521
|
+
calling_code: "591"
|
|
21522
|
+
},
|
|
21523
|
+
{
|
|
21524
|
+
id: 28,
|
|
21525
|
+
name: "Bonaire, Sint Eustatius and Saba",
|
|
21526
|
+
code: "bq",
|
|
21527
|
+
calling_code: "599"
|
|
21528
|
+
},
|
|
21529
|
+
{
|
|
21530
|
+
id: 29,
|
|
21531
|
+
name: "Bosnia and Herzegovina",
|
|
21532
|
+
code: "ba",
|
|
21533
|
+
calling_code: "387"
|
|
21534
|
+
},
|
|
21535
|
+
{
|
|
21536
|
+
id: 30,
|
|
21537
|
+
name: "Botswana",
|
|
21538
|
+
code: "bw",
|
|
21539
|
+
calling_code: "267"
|
|
21540
|
+
},
|
|
21541
|
+
{
|
|
21542
|
+
id: 31,
|
|
21543
|
+
name: "Bouvet Island",
|
|
21544
|
+
code: "bv",
|
|
21545
|
+
calling_code: "55"
|
|
21546
|
+
},
|
|
21547
|
+
{
|
|
21548
|
+
id: 32,
|
|
21549
|
+
name: "Brazil",
|
|
21550
|
+
code: "br",
|
|
21551
|
+
calling_code: "55"
|
|
21552
|
+
},
|
|
21553
|
+
{
|
|
21554
|
+
id: 33,
|
|
21555
|
+
name: "British Indian Ocean Territory",
|
|
21556
|
+
code: "io",
|
|
21557
|
+
calling_code: "246"
|
|
21558
|
+
},
|
|
21559
|
+
{
|
|
21560
|
+
id: 34,
|
|
21561
|
+
name: "Brunei Darussalam",
|
|
21562
|
+
code: "bn",
|
|
21563
|
+
calling_code: "673"
|
|
21564
|
+
},
|
|
21565
|
+
{
|
|
21566
|
+
id: 35,
|
|
21567
|
+
name: "Bulgaria",
|
|
21568
|
+
code: "bg",
|
|
21569
|
+
calling_code: "359"
|
|
21570
|
+
},
|
|
21571
|
+
{
|
|
21572
|
+
id: 36,
|
|
21573
|
+
name: "Burkina Faso",
|
|
21574
|
+
code: "bf",
|
|
21575
|
+
calling_code: "226"
|
|
21576
|
+
},
|
|
21577
|
+
{
|
|
21578
|
+
id: 37,
|
|
21579
|
+
name: "Burundi",
|
|
21580
|
+
code: "bi",
|
|
21581
|
+
calling_code: "257"
|
|
21582
|
+
},
|
|
21583
|
+
{
|
|
21584
|
+
id: 38,
|
|
21585
|
+
name: "Cabo Verde",
|
|
21586
|
+
code: "cv",
|
|
21587
|
+
calling_code: "238"
|
|
21588
|
+
},
|
|
21589
|
+
{
|
|
21590
|
+
id: 39,
|
|
21591
|
+
name: "Cambodia",
|
|
21592
|
+
code: "kh",
|
|
21593
|
+
calling_code: "855"
|
|
21594
|
+
},
|
|
21595
|
+
{
|
|
21596
|
+
id: 40,
|
|
21597
|
+
name: "Cameroon",
|
|
21598
|
+
code: "cm",
|
|
21599
|
+
calling_code: "237"
|
|
21600
|
+
},
|
|
21601
|
+
{
|
|
21602
|
+
id: 41,
|
|
21603
|
+
name: "Canada",
|
|
21604
|
+
code: "ca",
|
|
21605
|
+
calling_code: "1"
|
|
21606
|
+
},
|
|
21607
|
+
{
|
|
21608
|
+
id: 42,
|
|
21609
|
+
name: "Cayman Islands",
|
|
21610
|
+
code: "ky",
|
|
21611
|
+
calling_code: "1-345"
|
|
21612
|
+
},
|
|
21613
|
+
{
|
|
21614
|
+
id: 43,
|
|
21615
|
+
name: "Central African Republic",
|
|
21616
|
+
code: "cf",
|
|
21617
|
+
calling_code: "236"
|
|
21618
|
+
},
|
|
21619
|
+
{
|
|
21620
|
+
id: 44,
|
|
21621
|
+
name: "Chad",
|
|
21622
|
+
code: "td",
|
|
21623
|
+
calling_code: "235"
|
|
21624
|
+
},
|
|
21625
|
+
{
|
|
21626
|
+
id: 45,
|
|
21627
|
+
name: "Chile",
|
|
21628
|
+
code: "cl",
|
|
21629
|
+
calling_code: "56"
|
|
21630
|
+
},
|
|
21631
|
+
{
|
|
21632
|
+
id: 46,
|
|
21633
|
+
name: "China",
|
|
21634
|
+
code: "cn",
|
|
21635
|
+
calling_code: "86"
|
|
21636
|
+
},
|
|
21637
|
+
{
|
|
21638
|
+
id: 47,
|
|
21639
|
+
name: "Christmas Island",
|
|
21640
|
+
code: "cx",
|
|
21641
|
+
calling_code: "61"
|
|
21642
|
+
},
|
|
21643
|
+
{
|
|
21644
|
+
id: 48,
|
|
21645
|
+
name: "Cocos (Keeling) Islands",
|
|
21646
|
+
code: "cc",
|
|
21647
|
+
calling_code: "61"
|
|
21648
|
+
},
|
|
21649
|
+
{
|
|
21650
|
+
id: 49,
|
|
21651
|
+
name: "Colombia",
|
|
21652
|
+
code: "co",
|
|
21653
|
+
calling_code: "57"
|
|
21654
|
+
},
|
|
21655
|
+
{
|
|
21656
|
+
id: 50,
|
|
21657
|
+
name: "Comoros",
|
|
21658
|
+
code: "km",
|
|
21659
|
+
calling_code: "269"
|
|
21660
|
+
},
|
|
21661
|
+
{
|
|
21662
|
+
id: 51,
|
|
21663
|
+
name: "Congo",
|
|
21664
|
+
code: "cg",
|
|
21665
|
+
calling_code: "242"
|
|
21666
|
+
},
|
|
21667
|
+
{
|
|
21668
|
+
id: 52,
|
|
21669
|
+
name: "Congo, Democratic Republic of the",
|
|
21670
|
+
code: "cd",
|
|
21671
|
+
calling_code: "242"
|
|
21672
|
+
},
|
|
21673
|
+
{
|
|
21674
|
+
id: 53,
|
|
21675
|
+
name: "Cook Islands",
|
|
21676
|
+
code: "ck",
|
|
21677
|
+
calling_code: "682"
|
|
21678
|
+
},
|
|
21679
|
+
{
|
|
21680
|
+
id: 54,
|
|
21681
|
+
name: "Costa Rica",
|
|
21682
|
+
code: "cr",
|
|
21683
|
+
calling_code: "506"
|
|
21684
|
+
},
|
|
21685
|
+
{
|
|
21686
|
+
id: 55,
|
|
21687
|
+
name: "Côte d'Ivoire",
|
|
21688
|
+
code: "ci",
|
|
21689
|
+
calling_code: "225"
|
|
21690
|
+
},
|
|
21691
|
+
{
|
|
21692
|
+
id: 56,
|
|
21693
|
+
name: "Croatia",
|
|
21694
|
+
code: "hr",
|
|
21695
|
+
calling_code: "385"
|
|
21696
|
+
},
|
|
21697
|
+
{
|
|
21698
|
+
id: 57,
|
|
21699
|
+
name: "Cuba",
|
|
21700
|
+
code: "cu",
|
|
21701
|
+
calling_code: "53"
|
|
21702
|
+
},
|
|
21703
|
+
{
|
|
21704
|
+
id: 58,
|
|
21705
|
+
name: "Curaçao",
|
|
21706
|
+
code: "cw",
|
|
21707
|
+
calling_code: "599"
|
|
21708
|
+
},
|
|
21709
|
+
{
|
|
21710
|
+
id: 59,
|
|
21711
|
+
name: "Cyprus",
|
|
21712
|
+
code: "cy",
|
|
21713
|
+
calling_code: "357"
|
|
21714
|
+
},
|
|
21715
|
+
{
|
|
21716
|
+
id: 60,
|
|
21717
|
+
name: "Czechia (Czech Republic)",
|
|
21718
|
+
code: "cz",
|
|
21719
|
+
calling_code: "420"
|
|
21720
|
+
},
|
|
21721
|
+
{
|
|
21722
|
+
id: 61,
|
|
21723
|
+
name: "Denmark",
|
|
21724
|
+
code: "dk",
|
|
21725
|
+
calling_code: "45"
|
|
21726
|
+
},
|
|
21727
|
+
{
|
|
21728
|
+
id: 62,
|
|
21729
|
+
name: "Djibouti",
|
|
21730
|
+
code: "dj",
|
|
21731
|
+
calling_code: "253"
|
|
21732
|
+
},
|
|
21733
|
+
{
|
|
21734
|
+
id: 63,
|
|
21735
|
+
name: "Dominica",
|
|
21736
|
+
code: "dm",
|
|
21737
|
+
calling_code: "1-767"
|
|
21738
|
+
},
|
|
21739
|
+
{
|
|
21740
|
+
id: 64,
|
|
21741
|
+
name: "Dominican Republic",
|
|
21742
|
+
code: "do",
|
|
21743
|
+
calling_code: "1-809"
|
|
21744
|
+
},
|
|
21745
|
+
{
|
|
21746
|
+
id: 65,
|
|
21747
|
+
name: "Ecuador",
|
|
21748
|
+
code: "ec",
|
|
21749
|
+
calling_code: "593"
|
|
21750
|
+
},
|
|
21751
|
+
{
|
|
21752
|
+
id: 66,
|
|
21753
|
+
name: "Egypt",
|
|
21754
|
+
code: "eg",
|
|
21755
|
+
calling_code: "20"
|
|
21756
|
+
},
|
|
21757
|
+
{
|
|
21758
|
+
id: 67,
|
|
21759
|
+
name: "El Salvador",
|
|
21760
|
+
code: "sv",
|
|
21761
|
+
calling_code: "503"
|
|
21762
|
+
},
|
|
21763
|
+
{
|
|
21764
|
+
id: 68,
|
|
21765
|
+
name: "Equatorial Guinea",
|
|
21766
|
+
code: "gq",
|
|
21767
|
+
calling_code: "240"
|
|
21768
|
+
},
|
|
21769
|
+
{
|
|
21770
|
+
id: 69,
|
|
21771
|
+
name: "Eritrea",
|
|
21772
|
+
code: "er",
|
|
21773
|
+
calling_code: "291"
|
|
21774
|
+
},
|
|
21775
|
+
{
|
|
21776
|
+
id: 70,
|
|
21777
|
+
name: "Estonia",
|
|
21778
|
+
code: "ee",
|
|
21779
|
+
calling_code: "372"
|
|
21780
|
+
},
|
|
21781
|
+
{
|
|
21782
|
+
id: 71,
|
|
21783
|
+
name: "Eswatini",
|
|
21784
|
+
code: "sz",
|
|
21785
|
+
calling_code: "268"
|
|
21786
|
+
},
|
|
21787
|
+
{
|
|
21788
|
+
id: 72,
|
|
21789
|
+
name: "Ethiopia",
|
|
21790
|
+
code: "et",
|
|
21791
|
+
calling_code: "251"
|
|
21792
|
+
},
|
|
21793
|
+
{
|
|
21794
|
+
id: 73,
|
|
21795
|
+
name: "Falkland Islands (Malvinas)",
|
|
21796
|
+
code: "fk",
|
|
21797
|
+
calling_code: "500"
|
|
21798
|
+
},
|
|
21799
|
+
{
|
|
21800
|
+
id: 74,
|
|
21801
|
+
name: "Faroe Islands",
|
|
21802
|
+
code: "fo",
|
|
21803
|
+
calling_code: "298"
|
|
21804
|
+
},
|
|
21805
|
+
{
|
|
21806
|
+
id: 75,
|
|
21807
|
+
name: "Fiji",
|
|
21808
|
+
code: "fj",
|
|
21809
|
+
calling_code: "679"
|
|
21810
|
+
},
|
|
21811
|
+
{
|
|
21812
|
+
id: 76,
|
|
21813
|
+
name: "Finland",
|
|
21814
|
+
code: "fi",
|
|
21815
|
+
calling_code: "358"
|
|
21816
|
+
},
|
|
21817
|
+
{
|
|
21818
|
+
id: 77,
|
|
21819
|
+
name: "France",
|
|
21820
|
+
code: "fr",
|
|
21821
|
+
calling_code: "33"
|
|
21822
|
+
},
|
|
21823
|
+
{
|
|
21824
|
+
id: 78,
|
|
21825
|
+
name: "French Guiana",
|
|
21826
|
+
code: "gf",
|
|
21827
|
+
calling_code: "594"
|
|
21828
|
+
},
|
|
21829
|
+
{
|
|
21830
|
+
id: 79,
|
|
21831
|
+
name: "French Polynesia",
|
|
21832
|
+
code: "pf",
|
|
21833
|
+
calling_code: "689"
|
|
21834
|
+
},
|
|
21835
|
+
{
|
|
21836
|
+
id: 80,
|
|
21837
|
+
name: "French Southern Territories",
|
|
21838
|
+
code: "tf",
|
|
21839
|
+
calling_code: "262"
|
|
21840
|
+
},
|
|
21841
|
+
{
|
|
21842
|
+
id: 81,
|
|
21843
|
+
name: "Gabon",
|
|
21844
|
+
code: "ga",
|
|
21845
|
+
calling_code: "241"
|
|
21846
|
+
},
|
|
21847
|
+
{
|
|
21848
|
+
id: 82,
|
|
21849
|
+
name: "Gambia",
|
|
21850
|
+
code: "gm",
|
|
21851
|
+
calling_code: "220"
|
|
21852
|
+
},
|
|
21853
|
+
{
|
|
21854
|
+
id: 83,
|
|
21855
|
+
name: "Georgia",
|
|
21856
|
+
code: "ge",
|
|
21857
|
+
calling_code: "995"
|
|
21858
|
+
},
|
|
21859
|
+
{
|
|
21860
|
+
id: 84,
|
|
21861
|
+
name: "Germany",
|
|
21862
|
+
code: "de",
|
|
21863
|
+
calling_code: "49"
|
|
21864
|
+
},
|
|
21865
|
+
{
|
|
21866
|
+
id: 85,
|
|
21867
|
+
name: "Ghana",
|
|
21868
|
+
code: "gh",
|
|
21869
|
+
calling_code: "233"
|
|
21870
|
+
},
|
|
21871
|
+
{
|
|
21872
|
+
id: 86,
|
|
21873
|
+
name: "Gibraltar",
|
|
21874
|
+
code: "gi",
|
|
21875
|
+
calling_code: "350"
|
|
21876
|
+
},
|
|
21877
|
+
{
|
|
21878
|
+
id: 87,
|
|
21879
|
+
name: "Greece",
|
|
21880
|
+
code: "gr",
|
|
21881
|
+
calling_code: "30"
|
|
21882
|
+
},
|
|
21883
|
+
{
|
|
21884
|
+
id: 88,
|
|
21885
|
+
name: "Greenland",
|
|
21886
|
+
code: "gl",
|
|
21887
|
+
calling_code: "299"
|
|
21888
|
+
},
|
|
21889
|
+
{
|
|
21890
|
+
id: 89,
|
|
21891
|
+
name: "Grenada",
|
|
21892
|
+
code: "gd",
|
|
21893
|
+
calling_code: "1-473"
|
|
21894
|
+
},
|
|
21895
|
+
{
|
|
21896
|
+
id: 90,
|
|
21897
|
+
name: "Guadeloupe",
|
|
21898
|
+
code: "gp",
|
|
21899
|
+
calling_code: "590"
|
|
21900
|
+
},
|
|
21901
|
+
{
|
|
21902
|
+
id: 91,
|
|
21903
|
+
name: "Guam",
|
|
21904
|
+
code: "gu",
|
|
21905
|
+
calling_code: "1-671"
|
|
21906
|
+
},
|
|
21907
|
+
{
|
|
21908
|
+
id: 92,
|
|
21909
|
+
name: "Guatemala",
|
|
21910
|
+
code: "gt",
|
|
21911
|
+
calling_code: "502"
|
|
21912
|
+
},
|
|
21913
|
+
{
|
|
21914
|
+
id: 93,
|
|
21915
|
+
name: "Guernsey",
|
|
21916
|
+
code: "gg",
|
|
21917
|
+
calling_code: "44-1481"
|
|
21918
|
+
},
|
|
21919
|
+
{
|
|
21920
|
+
id: 94,
|
|
21921
|
+
name: "Guinea",
|
|
21922
|
+
code: "gn",
|
|
21923
|
+
calling_code: "224"
|
|
21924
|
+
},
|
|
21925
|
+
{
|
|
21926
|
+
id: 95,
|
|
21927
|
+
name: "Guinea-Bissau",
|
|
21928
|
+
code: "gw",
|
|
21929
|
+
calling_code: "245"
|
|
21930
|
+
},
|
|
21931
|
+
{
|
|
21932
|
+
id: 96,
|
|
21933
|
+
name: "Guyana",
|
|
21934
|
+
code: "gy",
|
|
21935
|
+
calling_code: "592"
|
|
21936
|
+
},
|
|
21937
|
+
{
|
|
21938
|
+
id: 97,
|
|
21939
|
+
name: "Haiti",
|
|
21940
|
+
code: "ht",
|
|
21941
|
+
calling_code: "509"
|
|
21942
|
+
},
|
|
21943
|
+
{
|
|
21944
|
+
id: 98,
|
|
21945
|
+
name: "Heard Island and McDonald Islands",
|
|
21946
|
+
code: "hm",
|
|
21947
|
+
calling_code: "672"
|
|
21948
|
+
},
|
|
21949
|
+
{
|
|
21950
|
+
id: 99,
|
|
21951
|
+
name: "Holy See",
|
|
21952
|
+
code: "va",
|
|
21953
|
+
calling_code: "379"
|
|
21954
|
+
},
|
|
21955
|
+
{
|
|
21956
|
+
id: 100,
|
|
21957
|
+
name: "Honduras",
|
|
21958
|
+
code: "hn",
|
|
21959
|
+
calling_code: "504"
|
|
21960
|
+
},
|
|
21961
|
+
{
|
|
21962
|
+
id: 101,
|
|
21963
|
+
name: "Hong Kong",
|
|
21964
|
+
code: "hk",
|
|
21965
|
+
calling_code: "852"
|
|
21966
|
+
},
|
|
21967
|
+
{
|
|
21968
|
+
id: 102,
|
|
21969
|
+
name: "Hungary",
|
|
21970
|
+
code: "hu",
|
|
21971
|
+
calling_code: "36"
|
|
21972
|
+
},
|
|
21973
|
+
{
|
|
21974
|
+
id: 103,
|
|
21975
|
+
name: "Iceland",
|
|
21976
|
+
code: "is",
|
|
21977
|
+
calling_code: "354"
|
|
21978
|
+
},
|
|
21979
|
+
{
|
|
21980
|
+
id: 104,
|
|
21981
|
+
name: "India",
|
|
21982
|
+
code: "in",
|
|
21983
|
+
calling_code: "91"
|
|
21984
|
+
},
|
|
21985
|
+
{
|
|
21986
|
+
id: 105,
|
|
21987
|
+
name: "Indonesia",
|
|
21988
|
+
code: "id",
|
|
21989
|
+
calling_code: "62"
|
|
21990
|
+
},
|
|
21991
|
+
{
|
|
21992
|
+
id: 106,
|
|
21993
|
+
name: "Iran (Islamic Republic of)",
|
|
21994
|
+
code: "ir",
|
|
21995
|
+
calling_code: "98"
|
|
21996
|
+
},
|
|
21997
|
+
{
|
|
21998
|
+
id: 107,
|
|
21999
|
+
name: "Iraq",
|
|
22000
|
+
code: "iq",
|
|
22001
|
+
calling_code: "964"
|
|
22002
|
+
},
|
|
22003
|
+
{
|
|
22004
|
+
id: 108,
|
|
22005
|
+
name: "Ireland",
|
|
22006
|
+
code: "ie",
|
|
22007
|
+
calling_code: "353"
|
|
22008
|
+
},
|
|
22009
|
+
{
|
|
22010
|
+
id: 109,
|
|
22011
|
+
name: "Isle of Man",
|
|
22012
|
+
code: "im",
|
|
22013
|
+
calling_code: "44-1624"
|
|
22014
|
+
},
|
|
22015
|
+
{
|
|
22016
|
+
id: 110,
|
|
22017
|
+
name: "Israel",
|
|
22018
|
+
code: "il",
|
|
22019
|
+
calling_code: "972"
|
|
22020
|
+
},
|
|
22021
|
+
{
|
|
22022
|
+
id: 111,
|
|
22023
|
+
name: "Italy",
|
|
22024
|
+
code: "it",
|
|
22025
|
+
calling_code: "39"
|
|
22026
|
+
},
|
|
22027
|
+
{
|
|
22028
|
+
id: 112,
|
|
22029
|
+
name: "Jamaica",
|
|
22030
|
+
code: "jm",
|
|
22031
|
+
calling_code: "1-876"
|
|
22032
|
+
},
|
|
22033
|
+
{
|
|
22034
|
+
id: 113,
|
|
22035
|
+
name: "Japan",
|
|
22036
|
+
code: "jp",
|
|
22037
|
+
calling_code: "81"
|
|
22038
|
+
},
|
|
22039
|
+
{
|
|
22040
|
+
id: 114,
|
|
22041
|
+
name: "Jersey",
|
|
22042
|
+
code: "je",
|
|
22043
|
+
calling_code: "44-1534"
|
|
22044
|
+
},
|
|
22045
|
+
{
|
|
22046
|
+
id: 115,
|
|
22047
|
+
name: "Jordan",
|
|
22048
|
+
code: "jo",
|
|
22049
|
+
calling_code: "962"
|
|
22050
|
+
},
|
|
22051
|
+
{
|
|
22052
|
+
id: 116,
|
|
22053
|
+
name: "Kazakhstan",
|
|
22054
|
+
code: "kz",
|
|
22055
|
+
calling_code: "7"
|
|
22056
|
+
},
|
|
22057
|
+
{
|
|
22058
|
+
id: 117,
|
|
22059
|
+
name: "Kenya",
|
|
22060
|
+
code: "ke",
|
|
22061
|
+
calling_code: "254"
|
|
22062
|
+
},
|
|
22063
|
+
{
|
|
22064
|
+
id: 118,
|
|
22065
|
+
name: "Kiribati",
|
|
22066
|
+
code: "ki",
|
|
22067
|
+
calling_code: "686"
|
|
22068
|
+
},
|
|
22069
|
+
{
|
|
22070
|
+
id: 119,
|
|
22071
|
+
name: "Korea (Democratic People's Republic of)",
|
|
22072
|
+
code: "kp",
|
|
22073
|
+
calling_code: "850"
|
|
22074
|
+
},
|
|
22075
|
+
{
|
|
22076
|
+
id: 120,
|
|
22077
|
+
name: "Korea, Republic of",
|
|
22078
|
+
code: "kr",
|
|
22079
|
+
calling_code: "82"
|
|
22080
|
+
},
|
|
22081
|
+
{
|
|
22082
|
+
id: 121,
|
|
22083
|
+
name: "Kuwait",
|
|
22084
|
+
code: "kw",
|
|
22085
|
+
calling_code: "965"
|
|
22086
|
+
},
|
|
22087
|
+
{
|
|
22088
|
+
id: 122,
|
|
22089
|
+
name: "Kyrgyzstan",
|
|
22090
|
+
code: "kg",
|
|
22091
|
+
calling_code: "996"
|
|
22092
|
+
},
|
|
22093
|
+
{
|
|
22094
|
+
id: 123,
|
|
22095
|
+
name: "Lao People's Democratic Republic",
|
|
22096
|
+
code: "la",
|
|
22097
|
+
calling_code: "856"
|
|
22098
|
+
},
|
|
22099
|
+
{
|
|
22100
|
+
id: 124,
|
|
22101
|
+
name: "Latvia",
|
|
22102
|
+
code: "lv",
|
|
22103
|
+
calling_code: "371"
|
|
22104
|
+
},
|
|
22105
|
+
{
|
|
22106
|
+
id: 125,
|
|
22107
|
+
name: "Lebanon",
|
|
22108
|
+
code: "lb",
|
|
22109
|
+
calling_code: "961"
|
|
22110
|
+
},
|
|
22111
|
+
{
|
|
22112
|
+
id: 126,
|
|
22113
|
+
name: "Lesotho",
|
|
22114
|
+
code: "ls",
|
|
22115
|
+
calling_code: "266"
|
|
22116
|
+
},
|
|
22117
|
+
{
|
|
22118
|
+
id: 127,
|
|
22119
|
+
name: "Liberia",
|
|
22120
|
+
code: "lr",
|
|
22121
|
+
calling_code: "231"
|
|
22122
|
+
},
|
|
22123
|
+
{
|
|
22124
|
+
id: 128,
|
|
22125
|
+
name: "Libya",
|
|
22126
|
+
code: "ly",
|
|
22127
|
+
calling_code: "218"
|
|
22128
|
+
},
|
|
22129
|
+
{
|
|
22130
|
+
id: 129,
|
|
22131
|
+
name: "Liechtenstein",
|
|
22132
|
+
code: "li",
|
|
22133
|
+
calling_code: "423"
|
|
22134
|
+
},
|
|
22135
|
+
{
|
|
22136
|
+
id: 130,
|
|
22137
|
+
name: "Lithuania",
|
|
22138
|
+
code: "lt",
|
|
22139
|
+
calling_code: "370"
|
|
22140
|
+
},
|
|
22141
|
+
{
|
|
22142
|
+
id: 131,
|
|
22143
|
+
name: "Luxembourg",
|
|
22144
|
+
code: "lu",
|
|
22145
|
+
calling_code: "352"
|
|
22146
|
+
},
|
|
22147
|
+
{
|
|
22148
|
+
id: 132,
|
|
22149
|
+
name: "Macao",
|
|
22150
|
+
code: "mo",
|
|
22151
|
+
calling_code: "853"
|
|
22152
|
+
},
|
|
22153
|
+
{
|
|
22154
|
+
id: 133,
|
|
22155
|
+
name: "Madagascar",
|
|
22156
|
+
code: "mg",
|
|
22157
|
+
calling_code: "261"
|
|
22158
|
+
},
|
|
22159
|
+
{
|
|
22160
|
+
id: 134,
|
|
22161
|
+
name: "Malawi",
|
|
22162
|
+
code: "mw",
|
|
22163
|
+
calling_code: "265"
|
|
22164
|
+
},
|
|
22165
|
+
{
|
|
22166
|
+
id: 135,
|
|
22167
|
+
name: "Malaysia",
|
|
22168
|
+
code: "my",
|
|
22169
|
+
calling_code: "60"
|
|
22170
|
+
},
|
|
22171
|
+
{
|
|
22172
|
+
id: 136,
|
|
22173
|
+
name: "Maldives",
|
|
22174
|
+
code: "mv",
|
|
22175
|
+
calling_code: "960"
|
|
22176
|
+
},
|
|
22177
|
+
{
|
|
22178
|
+
id: 137,
|
|
22179
|
+
name: "Mali",
|
|
22180
|
+
code: "ml",
|
|
22181
|
+
calling_code: "223"
|
|
22182
|
+
},
|
|
22183
|
+
{
|
|
22184
|
+
id: 138,
|
|
22185
|
+
name: "Malta",
|
|
22186
|
+
code: "mt",
|
|
22187
|
+
calling_code: "356"
|
|
22188
|
+
},
|
|
22189
|
+
{
|
|
22190
|
+
id: 139,
|
|
22191
|
+
name: "Marshall Islands",
|
|
22192
|
+
code: "mh",
|
|
22193
|
+
calling_code: "692"
|
|
22194
|
+
},
|
|
22195
|
+
{
|
|
22196
|
+
id: 140,
|
|
22197
|
+
name: "Martinique",
|
|
22198
|
+
code: "mq",
|
|
22199
|
+
calling_code: "596"
|
|
22200
|
+
},
|
|
22201
|
+
{
|
|
22202
|
+
id: 141,
|
|
22203
|
+
name: "Mauritania",
|
|
22204
|
+
code: "mr",
|
|
22205
|
+
calling_code: "222"
|
|
22206
|
+
},
|
|
22207
|
+
{
|
|
22208
|
+
id: 142,
|
|
22209
|
+
name: "Mauritius",
|
|
22210
|
+
code: "mu",
|
|
22211
|
+
calling_code: "230"
|
|
22212
|
+
},
|
|
22213
|
+
{
|
|
22214
|
+
id: 143,
|
|
22215
|
+
name: "Mayotte",
|
|
22216
|
+
code: "yt",
|
|
22217
|
+
calling_code: "262"
|
|
22218
|
+
},
|
|
22219
|
+
{
|
|
22220
|
+
id: 144,
|
|
22221
|
+
name: "Mexico",
|
|
22222
|
+
code: "mx",
|
|
22223
|
+
calling_code: "52"
|
|
22224
|
+
},
|
|
22225
|
+
{
|
|
22226
|
+
id: 145,
|
|
22227
|
+
name: "Micronesia (Federated States of)",
|
|
22228
|
+
code: "fm",
|
|
22229
|
+
calling_code: "691"
|
|
22230
|
+
},
|
|
22231
|
+
{
|
|
22232
|
+
id: 146,
|
|
22233
|
+
name: "Moldova, Republic of",
|
|
22234
|
+
code: "md",
|
|
22235
|
+
calling_code: "373"
|
|
22236
|
+
},
|
|
22237
|
+
{
|
|
22238
|
+
id: 147,
|
|
22239
|
+
name: "Monaco",
|
|
22240
|
+
code: "mc",
|
|
22241
|
+
calling_code: "377"
|
|
22242
|
+
},
|
|
22243
|
+
{
|
|
22244
|
+
id: 148,
|
|
22245
|
+
name: "Mongolia",
|
|
22246
|
+
code: "mn",
|
|
22247
|
+
calling_code: "976"
|
|
22248
|
+
},
|
|
22249
|
+
{
|
|
22250
|
+
id: 149,
|
|
22251
|
+
name: "Montenegro",
|
|
22252
|
+
code: "me",
|
|
22253
|
+
calling_code: "382"
|
|
22254
|
+
},
|
|
22255
|
+
{
|
|
22256
|
+
id: 150,
|
|
22257
|
+
name: "Montserrat",
|
|
22258
|
+
code: "ms",
|
|
22259
|
+
calling_code: "1-664"
|
|
22260
|
+
},
|
|
22261
|
+
{
|
|
22262
|
+
id: 151,
|
|
22263
|
+
name: "Morocco",
|
|
22264
|
+
code: "ma",
|
|
22265
|
+
calling_code: "212"
|
|
22266
|
+
},
|
|
22267
|
+
{
|
|
22268
|
+
id: 152,
|
|
22269
|
+
name: "Mozambique",
|
|
22270
|
+
code: "mz",
|
|
22271
|
+
calling_code: "258"
|
|
22272
|
+
},
|
|
22273
|
+
{
|
|
22274
|
+
id: 153,
|
|
22275
|
+
name: "Myanmar",
|
|
22276
|
+
code: "mm",
|
|
22277
|
+
calling_code: "95"
|
|
22278
|
+
},
|
|
22279
|
+
{
|
|
22280
|
+
id: 154,
|
|
22281
|
+
name: "Namibia",
|
|
22282
|
+
code: "na",
|
|
22283
|
+
calling_code: "264"
|
|
22284
|
+
},
|
|
22285
|
+
{
|
|
22286
|
+
id: 155,
|
|
22287
|
+
name: "Nauru",
|
|
22288
|
+
code: "nr",
|
|
22289
|
+
calling_code: "674"
|
|
22290
|
+
},
|
|
22291
|
+
{
|
|
22292
|
+
id: 156,
|
|
22293
|
+
name: "Nepal",
|
|
22294
|
+
code: "np",
|
|
22295
|
+
calling_code: "977"
|
|
22296
|
+
},
|
|
22297
|
+
{
|
|
22298
|
+
id: 157,
|
|
22299
|
+
name: "Netherlands",
|
|
22300
|
+
code: "nl",
|
|
22301
|
+
calling_code: "31"
|
|
22302
|
+
},
|
|
22303
|
+
{
|
|
22304
|
+
id: 158,
|
|
22305
|
+
name: "New Caledonia",
|
|
22306
|
+
code: "nc",
|
|
22307
|
+
calling_code: "687"
|
|
22308
|
+
},
|
|
22309
|
+
{
|
|
22310
|
+
id: 159,
|
|
22311
|
+
name: "New Zealand",
|
|
22312
|
+
code: "nz",
|
|
22313
|
+
calling_code: "64"
|
|
22314
|
+
},
|
|
22315
|
+
{
|
|
22316
|
+
id: 160,
|
|
22317
|
+
name: "Nicaragua",
|
|
22318
|
+
code: "ni",
|
|
22319
|
+
calling_code: "505"
|
|
22320
|
+
},
|
|
22321
|
+
{
|
|
22322
|
+
id: 161,
|
|
22323
|
+
name: "Niger",
|
|
22324
|
+
code: "ne",
|
|
22325
|
+
calling_code: "227"
|
|
22326
|
+
},
|
|
22327
|
+
{
|
|
22328
|
+
id: 162,
|
|
22329
|
+
name: "Nigeria",
|
|
22330
|
+
code: "ng",
|
|
22331
|
+
calling_code: "234"
|
|
22332
|
+
},
|
|
22333
|
+
{
|
|
22334
|
+
id: 163,
|
|
22335
|
+
name: "Niue",
|
|
22336
|
+
code: "nu",
|
|
22337
|
+
calling_code: "683"
|
|
22338
|
+
},
|
|
22339
|
+
{
|
|
22340
|
+
id: 164,
|
|
22341
|
+
name: "Norfolk Island",
|
|
22342
|
+
code: "nf",
|
|
22343
|
+
calling_code: "672"
|
|
22344
|
+
},
|
|
22345
|
+
{
|
|
22346
|
+
id: 165,
|
|
22347
|
+
name: "North Macedonia",
|
|
22348
|
+
code: "mk",
|
|
22349
|
+
calling_code: "389"
|
|
22350
|
+
},
|
|
22351
|
+
{
|
|
22352
|
+
id: 166,
|
|
22353
|
+
name: "Northern Mariana Islands",
|
|
22354
|
+
code: "mp",
|
|
22355
|
+
calling_code: "1-670"
|
|
22356
|
+
},
|
|
22357
|
+
{
|
|
22358
|
+
id: 167,
|
|
22359
|
+
name: "Norway",
|
|
22360
|
+
code: "no",
|
|
22361
|
+
calling_code: "47"
|
|
22362
|
+
},
|
|
22363
|
+
{
|
|
22364
|
+
id: 168,
|
|
22365
|
+
name: "Oman",
|
|
22366
|
+
code: "om",
|
|
22367
|
+
calling_code: "968"
|
|
22368
|
+
},
|
|
22369
|
+
{
|
|
22370
|
+
id: 169,
|
|
22371
|
+
name: "Pakistan",
|
|
22372
|
+
code: "pk",
|
|
22373
|
+
calling_code: "92"
|
|
22374
|
+
},
|
|
22375
|
+
{
|
|
22376
|
+
id: 170,
|
|
22377
|
+
name: "Palau",
|
|
22378
|
+
code: "pw",
|
|
22379
|
+
calling_code: "680"
|
|
22380
|
+
},
|
|
22381
|
+
{
|
|
22382
|
+
id: 171,
|
|
22383
|
+
name: "Palestine, State of",
|
|
22384
|
+
code: "ps",
|
|
22385
|
+
calling_code: "970"
|
|
22386
|
+
},
|
|
22387
|
+
{
|
|
22388
|
+
id: 172,
|
|
22389
|
+
name: "Panama",
|
|
22390
|
+
code: "pa",
|
|
22391
|
+
calling_code: "507"
|
|
22392
|
+
},
|
|
22393
|
+
{
|
|
22394
|
+
id: 173,
|
|
22395
|
+
name: "Papua New Guinea",
|
|
22396
|
+
code: "pg",
|
|
22397
|
+
calling_code: "675"
|
|
22398
|
+
},
|
|
22399
|
+
{
|
|
22400
|
+
id: 174,
|
|
22401
|
+
name: "Paraguay",
|
|
22402
|
+
code: "py",
|
|
22403
|
+
calling_code: "595"
|
|
22404
|
+
},
|
|
22405
|
+
{
|
|
22406
|
+
id: 175,
|
|
22407
|
+
name: "Peru",
|
|
22408
|
+
code: "pe",
|
|
22409
|
+
calling_code: "51"
|
|
22410
|
+
},
|
|
22411
|
+
{
|
|
22412
|
+
id: 176,
|
|
22413
|
+
name: "Philippines",
|
|
22414
|
+
code: "ph",
|
|
22415
|
+
calling_code: "63"
|
|
22416
|
+
},
|
|
22417
|
+
{
|
|
22418
|
+
id: 177,
|
|
22419
|
+
name: "Pitcairn",
|
|
22420
|
+
code: "pn",
|
|
22421
|
+
calling_code: "64"
|
|
22422
|
+
},
|
|
22423
|
+
{
|
|
22424
|
+
id: 178,
|
|
22425
|
+
name: "Poland",
|
|
22426
|
+
code: "pl",
|
|
22427
|
+
calling_code: "48"
|
|
22428
|
+
},
|
|
22429
|
+
{
|
|
22430
|
+
id: 179,
|
|
22431
|
+
name: "Portugal",
|
|
22432
|
+
code: "pt",
|
|
22433
|
+
calling_code: "351"
|
|
22434
|
+
},
|
|
22435
|
+
{
|
|
22436
|
+
id: 180,
|
|
22437
|
+
name: "Puerto Rico",
|
|
22438
|
+
code: "pr",
|
|
22439
|
+
calling_code: "1-787"
|
|
22440
|
+
},
|
|
22441
|
+
{
|
|
22442
|
+
id: 181,
|
|
22443
|
+
name: "Qatar",
|
|
22444
|
+
code: "qa",
|
|
22445
|
+
calling_code: "974"
|
|
22446
|
+
},
|
|
22447
|
+
{
|
|
22448
|
+
id: 182,
|
|
22449
|
+
name: "Réunion",
|
|
22450
|
+
code: "re",
|
|
22451
|
+
calling_code: "262"
|
|
22452
|
+
},
|
|
22453
|
+
{
|
|
22454
|
+
id: 183,
|
|
22455
|
+
name: "Romania",
|
|
22456
|
+
code: "ro",
|
|
22457
|
+
calling_code: "40"
|
|
22458
|
+
},
|
|
22459
|
+
{
|
|
22460
|
+
id: 184,
|
|
22461
|
+
name: "Russian Federation",
|
|
22462
|
+
code: "ru",
|
|
22463
|
+
calling_code: "7"
|
|
22464
|
+
},
|
|
22465
|
+
{
|
|
22466
|
+
id: 185,
|
|
22467
|
+
name: "Rwanda",
|
|
22468
|
+
code: "rw",
|
|
22469
|
+
calling_code: "250"
|
|
22470
|
+
},
|
|
22471
|
+
{
|
|
22472
|
+
id: 186,
|
|
22473
|
+
name: "Saint Barthélemy",
|
|
22474
|
+
code: "bl",
|
|
22475
|
+
calling_code: "590"
|
|
22476
|
+
},
|
|
22477
|
+
{
|
|
22478
|
+
id: 187,
|
|
22479
|
+
name: "Saint Helena, Ascension and Tristan da Cunha",
|
|
22480
|
+
code: "sh",
|
|
22481
|
+
calling_code: "290"
|
|
22482
|
+
},
|
|
22483
|
+
{
|
|
22484
|
+
id: 188,
|
|
22485
|
+
name: "Saint Kitts and Nevis",
|
|
22486
|
+
code: "kn",
|
|
22487
|
+
calling_code: "1-869"
|
|
22488
|
+
},
|
|
22489
|
+
{
|
|
22490
|
+
id: 189,
|
|
22491
|
+
name: "Saint Lucia",
|
|
22492
|
+
code: "lc",
|
|
22493
|
+
calling_code: "1-758"
|
|
22494
|
+
},
|
|
22495
|
+
{
|
|
22496
|
+
id: 190,
|
|
22497
|
+
name: "Saint Martin (French part)",
|
|
22498
|
+
code: "mf",
|
|
22499
|
+
calling_code: "590"
|
|
22500
|
+
},
|
|
22501
|
+
{
|
|
22502
|
+
id: 191,
|
|
22503
|
+
name: "Saint Pierre and Miquelon",
|
|
22504
|
+
code: "pm",
|
|
22505
|
+
calling_code: "508"
|
|
22506
|
+
},
|
|
22507
|
+
{
|
|
22508
|
+
id: 192,
|
|
22509
|
+
name: "Saint Vincent and the Grenadines",
|
|
22510
|
+
code: "vc",
|
|
22511
|
+
calling_code: "1-784"
|
|
22512
|
+
},
|
|
22513
|
+
{
|
|
22514
|
+
id: 193,
|
|
22515
|
+
name: "Samoa",
|
|
22516
|
+
code: "ws",
|
|
22517
|
+
calling_code: "685"
|
|
22518
|
+
},
|
|
22519
|
+
{
|
|
22520
|
+
id: 194,
|
|
22521
|
+
name: "San Marino",
|
|
22522
|
+
code: "sm",
|
|
22523
|
+
calling_code: "378"
|
|
22524
|
+
},
|
|
22525
|
+
{
|
|
22526
|
+
id: 195,
|
|
22527
|
+
name: "Sao Tome and Principe",
|
|
22528
|
+
code: "st",
|
|
22529
|
+
calling_code: "239"
|
|
22530
|
+
},
|
|
22531
|
+
{
|
|
22532
|
+
id: 196,
|
|
22533
|
+
name: "Saudi Arabia",
|
|
22534
|
+
code: "sa",
|
|
22535
|
+
calling_code: "966"
|
|
22536
|
+
},
|
|
22537
|
+
{
|
|
22538
|
+
id: 197,
|
|
22539
|
+
name: "Senegal",
|
|
22540
|
+
code: "sn",
|
|
22541
|
+
calling_code: "221"
|
|
22542
|
+
},
|
|
22543
|
+
{
|
|
22544
|
+
id: 198,
|
|
22545
|
+
name: "Serbia",
|
|
22546
|
+
code: "rs",
|
|
22547
|
+
calling_code: "381"
|
|
22548
|
+
},
|
|
22549
|
+
{
|
|
22550
|
+
id: 199,
|
|
22551
|
+
name: "Seychelles",
|
|
22552
|
+
code: "sc",
|
|
22553
|
+
calling_code: "248"
|
|
22554
|
+
},
|
|
22555
|
+
{
|
|
22556
|
+
id: 200,
|
|
22557
|
+
name: "Sierra Leone",
|
|
22558
|
+
code: "sl",
|
|
22559
|
+
calling_code: "232"
|
|
22560
|
+
},
|
|
22561
|
+
{
|
|
22562
|
+
id: 201,
|
|
22563
|
+
name: "Singapore",
|
|
22564
|
+
code: "sg",
|
|
22565
|
+
calling_code: "65"
|
|
22566
|
+
},
|
|
22567
|
+
{
|
|
22568
|
+
id: 202,
|
|
22569
|
+
name: "Sint Maarten (Dutch part)",
|
|
22570
|
+
code: "sx",
|
|
22571
|
+
calling_code: "599"
|
|
22572
|
+
},
|
|
22573
|
+
{
|
|
22574
|
+
id: 203,
|
|
22575
|
+
name: "Slovakia",
|
|
22576
|
+
code: "sk",
|
|
22577
|
+
calling_code: "421"
|
|
22578
|
+
},
|
|
22579
|
+
{
|
|
22580
|
+
id: 204,
|
|
22581
|
+
name: "Slovenia",
|
|
22582
|
+
code: "si",
|
|
22583
|
+
calling_code: "386"
|
|
22584
|
+
},
|
|
22585
|
+
{
|
|
22586
|
+
id: 205,
|
|
22587
|
+
name: "Solomon Islands",
|
|
22588
|
+
code: "sb",
|
|
22589
|
+
calling_code: "677"
|
|
22590
|
+
},
|
|
22591
|
+
{
|
|
22592
|
+
id: 206,
|
|
22593
|
+
name: "Somalia",
|
|
22594
|
+
code: "so",
|
|
22595
|
+
calling_code: "252"
|
|
22596
|
+
},
|
|
22597
|
+
{
|
|
22598
|
+
id: 207,
|
|
22599
|
+
name: "South Africa",
|
|
22600
|
+
code: "za",
|
|
22601
|
+
calling_code: "27"
|
|
22602
|
+
},
|
|
22603
|
+
{
|
|
22604
|
+
id: 208,
|
|
22605
|
+
name: "South Georgia and the South Sandwich Islands",
|
|
22606
|
+
code: "gs",
|
|
22607
|
+
calling_code: "995"
|
|
22608
|
+
},
|
|
22609
|
+
{
|
|
22610
|
+
id: 209,
|
|
22611
|
+
name: "South Sudan",
|
|
22612
|
+
code: "ss",
|
|
22613
|
+
calling_code: "211"
|
|
22614
|
+
},
|
|
22615
|
+
{
|
|
22616
|
+
id: 210,
|
|
22617
|
+
name: "Spain",
|
|
22618
|
+
code: "es",
|
|
22619
|
+
calling_code: "34"
|
|
22620
|
+
},
|
|
22621
|
+
{
|
|
22622
|
+
id: 211,
|
|
22623
|
+
name: "Sri Lanka",
|
|
22624
|
+
code: "lk",
|
|
22625
|
+
calling_code: "94"
|
|
22626
|
+
},
|
|
22627
|
+
{
|
|
22628
|
+
id: 212,
|
|
22629
|
+
name: "Sudan",
|
|
22630
|
+
code: "sd",
|
|
22631
|
+
calling_code: "249"
|
|
22632
|
+
},
|
|
22633
|
+
{
|
|
22634
|
+
id: 213,
|
|
22635
|
+
name: "Suriname",
|
|
22636
|
+
code: "sr",
|
|
22637
|
+
calling_code: "597"
|
|
22638
|
+
},
|
|
22639
|
+
{
|
|
22640
|
+
id: 214,
|
|
22641
|
+
name: "Svalbard and Jan Mayen",
|
|
22642
|
+
code: "sj",
|
|
22643
|
+
calling_code: "47"
|
|
22644
|
+
},
|
|
22645
|
+
{
|
|
22646
|
+
id: 215,
|
|
22647
|
+
name: "Sweden",
|
|
22648
|
+
code: "se",
|
|
22649
|
+
calling_code: "46"
|
|
22650
|
+
},
|
|
22651
|
+
{
|
|
22652
|
+
id: 216,
|
|
22653
|
+
name: "Switzerland",
|
|
22654
|
+
code: "ch",
|
|
22655
|
+
calling_code: "41"
|
|
22656
|
+
},
|
|
22657
|
+
{
|
|
22658
|
+
id: 217,
|
|
22659
|
+
name: "Syrian Arab Republic",
|
|
22660
|
+
code: "sy",
|
|
22661
|
+
calling_code: "963"
|
|
22662
|
+
},
|
|
22663
|
+
{
|
|
22664
|
+
id: 218,
|
|
22665
|
+
name: "Taiwan, Province of China",
|
|
22666
|
+
code: "tw",
|
|
22667
|
+
calling_code: "886"
|
|
22668
|
+
},
|
|
22669
|
+
{
|
|
22670
|
+
id: 219,
|
|
22671
|
+
name: "Tajikistan",
|
|
22672
|
+
code: "tj",
|
|
22673
|
+
calling_code: "992"
|
|
22674
|
+
},
|
|
22675
|
+
{
|
|
22676
|
+
id: 220,
|
|
22677
|
+
name: "Tanzania, United Republic of",
|
|
22678
|
+
code: "tz",
|
|
22679
|
+
calling_code: "255"
|
|
22680
|
+
},
|
|
22681
|
+
{
|
|
22682
|
+
id: 221,
|
|
22683
|
+
name: "Thailand",
|
|
22684
|
+
code: "th",
|
|
22685
|
+
calling_code: "66"
|
|
22686
|
+
},
|
|
22687
|
+
{
|
|
22688
|
+
id: 222,
|
|
22689
|
+
name: "Timor-Leste",
|
|
22690
|
+
code: "tl",
|
|
22691
|
+
calling_code: "670"
|
|
22692
|
+
},
|
|
22693
|
+
{
|
|
22694
|
+
id: 223,
|
|
22695
|
+
name: "Togo",
|
|
22696
|
+
code: "tg",
|
|
22697
|
+
calling_code: "228"
|
|
22698
|
+
},
|
|
22699
|
+
{
|
|
22700
|
+
id: 224,
|
|
22701
|
+
name: "Tokelau",
|
|
22702
|
+
code: "tk",
|
|
22703
|
+
calling_code: "690"
|
|
22704
|
+
},
|
|
22705
|
+
{
|
|
22706
|
+
id: 225,
|
|
22707
|
+
name: "Tonga",
|
|
22708
|
+
code: "to",
|
|
22709
|
+
calling_code: "676"
|
|
22710
|
+
},
|
|
22711
|
+
{
|
|
22712
|
+
id: 226,
|
|
22713
|
+
name: "Trinidad and Tobago",
|
|
22714
|
+
code: "tt",
|
|
22715
|
+
calling_code: "1-868"
|
|
22716
|
+
},
|
|
22717
|
+
{
|
|
22718
|
+
id: 227,
|
|
22719
|
+
name: "Tunisia",
|
|
22720
|
+
code: "tn",
|
|
22721
|
+
calling_code: "216"
|
|
22722
|
+
},
|
|
22723
|
+
{
|
|
22724
|
+
id: 228,
|
|
22725
|
+
name: "Turkey",
|
|
22726
|
+
code: "tr",
|
|
22727
|
+
calling_code: "90"
|
|
22728
|
+
},
|
|
22729
|
+
{
|
|
22730
|
+
id: 229,
|
|
22731
|
+
name: "Turkmenistan",
|
|
22732
|
+
code: "tm",
|
|
22733
|
+
calling_code: "993"
|
|
22734
|
+
},
|
|
22735
|
+
{
|
|
22736
|
+
id: 230,
|
|
22737
|
+
name: "Turks and Caicos Islands",
|
|
22738
|
+
code: "tc",
|
|
22739
|
+
calling_code: "1-649"
|
|
22740
|
+
},
|
|
22741
|
+
{
|
|
22742
|
+
id: 231,
|
|
22743
|
+
name: "Tuvalu",
|
|
22744
|
+
code: "tv",
|
|
22745
|
+
calling_code: "688"
|
|
22746
|
+
},
|
|
22747
|
+
{
|
|
22748
|
+
id: 232,
|
|
22749
|
+
name: "Uganda",
|
|
22750
|
+
code: "ug",
|
|
22751
|
+
calling_code: "256"
|
|
22752
|
+
},
|
|
22753
|
+
{
|
|
22754
|
+
id: 233,
|
|
22755
|
+
name: "Ukraine",
|
|
22756
|
+
code: "ua",
|
|
22757
|
+
calling_code: "380"
|
|
22758
|
+
},
|
|
22759
|
+
{
|
|
22760
|
+
id: 234,
|
|
22761
|
+
name: "United Arab Emirates",
|
|
22762
|
+
code: "ae",
|
|
22763
|
+
calling_code: "971"
|
|
22764
|
+
},
|
|
22765
|
+
{
|
|
22766
|
+
id: 235,
|
|
22767
|
+
name: "United Kingdom of Great Britain and Northern Ireland",
|
|
22768
|
+
code: "gb",
|
|
22769
|
+
calling_code: "44"
|
|
22770
|
+
},
|
|
22771
|
+
{
|
|
22772
|
+
id: 236,
|
|
22773
|
+
name: "United States of America",
|
|
22774
|
+
code: "us",
|
|
22775
|
+
calling_code: "1"
|
|
22776
|
+
},
|
|
22777
|
+
{
|
|
22778
|
+
id: 237,
|
|
22779
|
+
name: "United States Minor Outlying Islands",
|
|
22780
|
+
code: "um",
|
|
22781
|
+
calling_code: "246"
|
|
22782
|
+
},
|
|
22783
|
+
{
|
|
22784
|
+
id: 238,
|
|
22785
|
+
name: "Uruguay",
|
|
22786
|
+
code: "uy",
|
|
22787
|
+
calling_code: "598"
|
|
22788
|
+
},
|
|
22789
|
+
{
|
|
22790
|
+
id: 239,
|
|
22791
|
+
name: "Uzbekistan",
|
|
22792
|
+
code: "uz",
|
|
22793
|
+
calling_code: "998"
|
|
22794
|
+
},
|
|
22795
|
+
{
|
|
22796
|
+
id: 240,
|
|
22797
|
+
name: "Vanuatu",
|
|
22798
|
+
code: "vu",
|
|
22799
|
+
calling_code: "678"
|
|
22800
|
+
},
|
|
22801
|
+
{
|
|
22802
|
+
id: 241,
|
|
22803
|
+
name: "Venezuela (Bolivarian Republic of)",
|
|
22804
|
+
code: "ve",
|
|
22805
|
+
calling_code: "58"
|
|
22806
|
+
},
|
|
22807
|
+
{
|
|
22808
|
+
id: 242,
|
|
22809
|
+
name: "Viet Nam",
|
|
22810
|
+
code: "vn",
|
|
22811
|
+
calling_code: "84"
|
|
22812
|
+
},
|
|
22813
|
+
{
|
|
22814
|
+
id: 243,
|
|
22815
|
+
name: "Virgin Islands (British)",
|
|
22816
|
+
code: "vg",
|
|
22817
|
+
calling_code: "1284"
|
|
22818
|
+
},
|
|
22819
|
+
{
|
|
22820
|
+
id: 244,
|
|
22821
|
+
name: "Virgin Islands (U.S.)",
|
|
22822
|
+
code: "vi",
|
|
22823
|
+
calling_code: "1"
|
|
22824
|
+
},
|
|
22825
|
+
{
|
|
22826
|
+
id: 245,
|
|
22827
|
+
name: "Wallis and Futuna",
|
|
22828
|
+
code: "wf",
|
|
22829
|
+
calling_code: "681"
|
|
22830
|
+
},
|
|
22831
|
+
{
|
|
22832
|
+
id: 246,
|
|
22833
|
+
name: "Western Sahara",
|
|
22834
|
+
code: "eh",
|
|
22835
|
+
calling_code: "212"
|
|
22836
|
+
},
|
|
22837
|
+
{
|
|
22838
|
+
id: 247,
|
|
22839
|
+
name: "Yemen",
|
|
22840
|
+
code: "ye",
|
|
22841
|
+
calling_code: "967"
|
|
22842
|
+
},
|
|
22843
|
+
{
|
|
22844
|
+
id: 248,
|
|
22845
|
+
name: "Zambia",
|
|
22846
|
+
code: "zm",
|
|
22847
|
+
calling_code: "260"
|
|
22848
|
+
},
|
|
22849
|
+
{
|
|
22850
|
+
id: 249,
|
|
22851
|
+
name: "Zimbabwe",
|
|
22852
|
+
code: "zw",
|
|
22853
|
+
calling_code: "263"
|
|
22854
|
+
}
|
|
22855
|
+
];
|
|
22856
|
+
|
|
22857
|
+
class CountryService extends DataService {
|
|
22858
|
+
constructor() {
|
|
22859
|
+
super();
|
|
22860
|
+
this.modelClass = Country;
|
|
22861
|
+
this.collectionClass = Collection;
|
|
22862
|
+
this.setCache(countries);
|
|
22863
|
+
}
|
|
22864
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
22865
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, providedIn: 'root' }); }
|
|
22866
|
+
}
|
|
22867
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.10", ngImport: i0, type: CountryService, decorators: [{
|
|
22868
|
+
type: Injectable,
|
|
22869
|
+
args: [{
|
|
22870
|
+
providedIn: 'root'
|
|
22871
|
+
}]
|
|
22872
|
+
}], ctorParameters: () => [] });
|
|
22873
|
+
|
|
21384
22874
|
class SetupItemService extends RestService$1 {
|
|
21385
22875
|
constructor() {
|
|
21386
22876
|
super(...arguments);
|
|
@@ -24052,10 +25542,10 @@ class AddressForm extends AbstractForm {
|
|
|
24052
25542
|
address = address ?? plainToClass(Address, {});
|
|
24053
25543
|
super({
|
|
24054
25544
|
// prefill search input with address string for edit case
|
|
24055
|
-
searchQuery: new UntypedFormControl(address.nameLong
|
|
25545
|
+
searchQuery: new UntypedFormControl(address.nameLong),
|
|
24056
25546
|
type: new UntypedFormControl(address.type || AddressTypeEnum.STREET, Validators.required),
|
|
24057
25547
|
// google fields (required for non-australia and disabled for other countries)
|
|
24058
|
-
googlePlaceId: new UntypedFormControl(null,
|
|
25548
|
+
googlePlaceId: new UntypedFormControl(null, [RxwebValidators.required({ message: 'The address is incomplete or incorrect. Please check and try again.' })]),
|
|
24059
25549
|
// corelogic fields (required for Australia and disabled for other countries)
|
|
24060
25550
|
corelogicLocId: new UntypedFormControl(address.corelogicLocId, Validators.required),
|
|
24061
25551
|
corelogicRefId: new UntypedFormControl(address.corelogicRefId, [RxwebValidators.required({ message: 'The address is incomplete or incorrect. Please check and try again.' })]),
|
|
@@ -24079,7 +25569,7 @@ class AddressForm extends AbstractForm {
|
|
|
24079
25569
|
*/
|
|
24080
25570
|
get manualSearchQuery() {
|
|
24081
25571
|
// nothing to search when manual fields are invalid or when selected country is not Australia because we don't need to use corelogic for other countries
|
|
24082
|
-
if (!this.isManualSearchAvailable()
|
|
25572
|
+
if (!this.isManualSearchAvailable()) {
|
|
24083
25573
|
return '';
|
|
24084
25574
|
}
|
|
24085
25575
|
// for manual mode we search corelogic for city (location) and ignore street
|
|
@@ -24103,8 +25593,6 @@ class AddressForm extends AbstractForm {
|
|
|
24103
25593
|
corelogicLocId: suggestion?.localityId ?? null,
|
|
24104
25594
|
corelogicRefId: suggestion?.propertyId ?? null
|
|
24105
25595
|
});
|
|
24106
|
-
console.log(this.value);
|
|
24107
|
-
// console.log(this.getRawValue());
|
|
24108
25596
|
}
|
|
24109
25597
|
/**
|
|
24110
25598
|
* Check if Australia is selected in country field
|
|
@@ -24126,6 +25614,7 @@ class AddressForm extends AbstractForm {
|
|
|
24126
25614
|
this.get('state').enable();
|
|
24127
25615
|
this.get('postcode').enable();
|
|
24128
25616
|
this.get('corelogicRefId').clearValidators();
|
|
25617
|
+
this.get('googlePlaceId').clearValidators();
|
|
24129
25618
|
this.listenManualFieldsChanges();
|
|
24130
25619
|
this.listenStreetFieldsChanges();
|
|
24131
25620
|
}
|
|
@@ -24171,7 +25660,7 @@ class AddressForm extends AbstractForm {
|
|
|
24171
25660
|
// delay to avoid search request for each value change
|
|
24172
25661
|
debounceTime(AddressForm.searchDelay),
|
|
24173
25662
|
// do nothing when not all required fields filled
|
|
24174
|
-
filter(() => this.isManualSearchAvailable()
|
|
25663
|
+
filter(() => this.isManualSearchAvailable()), map(() => this.manualSearchQuery),
|
|
24175
25664
|
// skip when value not changed
|
|
24176
25665
|
distinctUntilChanged())
|
|
24177
25666
|
.subscribe(() => {
|
|
@@ -26282,7 +27771,7 @@ class PropertyValuationForm extends AbstractForm {
|
|
|
26282
27771
|
super({
|
|
26283
27772
|
// corelogic available only for new valuations if request cooldown has passed
|
|
26284
27773
|
isCorelogic: new FormControl(property?.isCorelogicAvailable() && !valuation.id),
|
|
26285
|
-
growthPercent: new FormControl(
|
|
27774
|
+
growthPercent: new FormControl(property?.growthPercent),
|
|
26286
27775
|
marketValue: new FormControl(valuation.marketValue ?? property?.marketValue, Validators.required),
|
|
26287
27776
|
date: new FormControl(valuation.date, Validators.required),
|
|
26288
27777
|
document: new FormGroup({
|
|
@@ -28472,5 +29961,5 @@ var MessagesEnum;
|
|
|
28472
29961
|
* Generated bundle index. Do not edit.
|
|
28473
29962
|
*/
|
|
28474
29963
|
|
|
28475
|
-
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 };
|
|
29964
|
+
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, 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, 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, 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 };
|
|
28476
29965
|
//# sourceMappingURL=taxtank-core.mjs.map
|