@silexpert/core 2.0.104 → 2.0.105
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/types/Enum/BalanceSheet.d.ts +4 -4
- package/dist/types/Enum/BalanceSheet.d.ts.map +1 -1
- package/dist/types/Enum/BalanceSheet.js +23 -4
- package/dist/types/Enum/BalanceSheet.js.map +1 -1
- package/dist/types/Enum/Phone.d.ts +234 -0
- package/dist/types/Enum/Phone.d.ts.map +1 -1
- package/dist/types/Enum/Phone.js +234 -0
- package/dist/types/Enum/Phone.js.map +1 -1
- package/dist/types/Interface/api/docoon/Create.d.ts +6 -9
- package/dist/types/Interface/api/docoon/Create.d.ts.map +1 -1
- package/dist/types/Interface/api/docoon/Create.js +27 -0
- package/dist/types/Interface/api/docoon/Create.js.map +1 -1
- package/dist/types/Interface/api/society/CreateTestSociety.d.ts +2 -2
- package/dist/types/Interface/api/society/CreateTestSociety.d.ts.map +1 -1
- package/dist/types/Interface/api/society/CreateTestSociety.js +9 -4
- package/dist/types/Interface/api/society/CreateTestSociety.js.map +1 -1
- package/dist/types/Interface/models/IEInvoicingKycAndMandate.d.ts +4 -1
- package/dist/types/Interface/models/IEInvoicingKycAndMandate.d.ts.map +1 -1
- package/dist/types/Interface/models/IEInvoicingKycAndMandate.js +3 -0
- package/dist/types/Interface/models/IEInvoicingKycAndMandate.js.map +1 -1
- package/package.json +19 -24
- package/ts/types/Enum/BalanceSheet.ts +23 -4
- package/ts/types/Enum/Phone.ts +234 -0
- package/ts/types/Interface/api/docoon/Create.ts +19 -9
- package/ts/types/Interface/api/society/CreateTestSociety.ts +10 -5
- package/ts/types/Interface/models/IEInvoicingKycAndMandate.ts +4 -1
- package/package-lock.json +0 -89
|
@@ -2,36 +2,54 @@ export declare const PhonePrefix: {
|
|
|
2
2
|
FRANCE: {
|
|
3
3
|
id: number;
|
|
4
4
|
prefix: string;
|
|
5
|
+
mask: string;
|
|
6
|
+
maskWithZero: string;
|
|
7
|
+
length: number;
|
|
5
8
|
text: string;
|
|
6
9
|
timezone: string;
|
|
7
10
|
};
|
|
8
11
|
GUADELOUPE: {
|
|
9
12
|
id: number;
|
|
10
13
|
prefix: string;
|
|
14
|
+
mask: string;
|
|
15
|
+
maskWithZero: string;
|
|
16
|
+
length: number;
|
|
11
17
|
text: string;
|
|
12
18
|
timezone: string;
|
|
13
19
|
};
|
|
14
20
|
GUYANA: {
|
|
15
21
|
id: number;
|
|
16
22
|
prefix: string;
|
|
23
|
+
mask: string;
|
|
24
|
+
maskWithZero: string;
|
|
25
|
+
length: number;
|
|
17
26
|
text: string;
|
|
18
27
|
timezone: string;
|
|
19
28
|
};
|
|
20
29
|
MARTINIQUE: {
|
|
21
30
|
id: number;
|
|
22
31
|
prefix: string;
|
|
32
|
+
mask: string;
|
|
33
|
+
maskWithZero: string;
|
|
34
|
+
length: number;
|
|
23
35
|
text: string;
|
|
24
36
|
timezone: string;
|
|
25
37
|
};
|
|
26
38
|
NEWCALEDONIA: {
|
|
27
39
|
id: number;
|
|
28
40
|
prefix: string;
|
|
41
|
+
mask: string;
|
|
42
|
+
maskWithZero: string;
|
|
43
|
+
length: number;
|
|
29
44
|
text: string;
|
|
30
45
|
timezone: string;
|
|
31
46
|
};
|
|
32
47
|
REUNION: {
|
|
33
48
|
id: number;
|
|
34
49
|
prefix: string;
|
|
50
|
+
mask: string;
|
|
51
|
+
maskWithZero: string;
|
|
52
|
+
length: number;
|
|
35
53
|
text: string;
|
|
36
54
|
timezone: string;
|
|
37
55
|
};
|
|
@@ -62,6 +80,9 @@ export declare const PhonePrefix: {
|
|
|
62
80
|
SPAIN: {
|
|
63
81
|
id: number;
|
|
64
82
|
prefix: string;
|
|
83
|
+
mask: string;
|
|
84
|
+
maskWithZero: string;
|
|
85
|
+
length: number;
|
|
65
86
|
text: string;
|
|
66
87
|
timezone: string;
|
|
67
88
|
};
|
|
@@ -128,6 +149,9 @@ export declare const PhonePrefix: {
|
|
|
128
149
|
DENMARK: {
|
|
129
150
|
id: number;
|
|
130
151
|
prefix: string;
|
|
152
|
+
mask: string;
|
|
153
|
+
maskWithZero: string;
|
|
154
|
+
length: number;
|
|
131
155
|
text: string;
|
|
132
156
|
timezone: string;
|
|
133
157
|
};
|
|
@@ -164,6 +188,9 @@ export declare const PhonePrefix: {
|
|
|
164
188
|
MALTA: {
|
|
165
189
|
id: number;
|
|
166
190
|
prefix: string;
|
|
191
|
+
mask: string;
|
|
192
|
+
maskWithZero: string;
|
|
193
|
+
length: number;
|
|
167
194
|
text: string;
|
|
168
195
|
timezone: string;
|
|
169
196
|
};
|
|
@@ -188,6 +215,9 @@ export declare const PhonePrefix: {
|
|
|
188
215
|
AFGHANISTAN: {
|
|
189
216
|
id: number;
|
|
190
217
|
prefix: string;
|
|
218
|
+
mask: string;
|
|
219
|
+
maskWithZero: string;
|
|
220
|
+
length: number;
|
|
191
221
|
text: string;
|
|
192
222
|
timezone: string;
|
|
193
223
|
};
|
|
@@ -212,12 +242,18 @@ export declare const PhonePrefix: {
|
|
|
212
242
|
ANGOLA: {
|
|
213
243
|
id: number;
|
|
214
244
|
prefix: string;
|
|
245
|
+
mask: string;
|
|
246
|
+
maskWithZero: string;
|
|
247
|
+
length: number;
|
|
215
248
|
text: string;
|
|
216
249
|
timezone: string;
|
|
217
250
|
};
|
|
218
251
|
ANTIGUAETBARBUDA: {
|
|
219
252
|
id: number;
|
|
220
253
|
prefix: string;
|
|
254
|
+
mask: string;
|
|
255
|
+
maskWithZero: string;
|
|
256
|
+
length: number;
|
|
221
257
|
text: string;
|
|
222
258
|
timezone: string;
|
|
223
259
|
};
|
|
@@ -236,6 +272,9 @@ export declare const PhonePrefix: {
|
|
|
236
272
|
ARMENIA: {
|
|
237
273
|
id: number;
|
|
238
274
|
prefix: string;
|
|
275
|
+
mask: string;
|
|
276
|
+
maskWithZero: string;
|
|
277
|
+
length: number;
|
|
239
278
|
text: string;
|
|
240
279
|
timezone: string;
|
|
241
280
|
};
|
|
@@ -248,18 +287,27 @@ export declare const PhonePrefix: {
|
|
|
248
287
|
AZERBAIJAN: {
|
|
249
288
|
id: number;
|
|
250
289
|
prefix: string;
|
|
290
|
+
mask: string;
|
|
291
|
+
maskWithZero: string;
|
|
292
|
+
length: number;
|
|
251
293
|
text: string;
|
|
252
294
|
timezone: string;
|
|
253
295
|
};
|
|
254
296
|
BAHAMAS: {
|
|
255
297
|
id: number;
|
|
256
298
|
prefix: string;
|
|
299
|
+
mask: string;
|
|
300
|
+
maskWithZero: string;
|
|
301
|
+
length: number;
|
|
257
302
|
text: string;
|
|
258
303
|
timezone: string;
|
|
259
304
|
};
|
|
260
305
|
BAHRAIN: {
|
|
261
306
|
id: number;
|
|
262
307
|
prefix: string;
|
|
308
|
+
mask: string;
|
|
309
|
+
maskWithZero: string;
|
|
310
|
+
length: number;
|
|
263
311
|
text: string;
|
|
264
312
|
timezone: string;
|
|
265
313
|
};
|
|
@@ -272,6 +320,9 @@ export declare const PhonePrefix: {
|
|
|
272
320
|
BARBADOS: {
|
|
273
321
|
id: number;
|
|
274
322
|
prefix: string;
|
|
323
|
+
mask: string;
|
|
324
|
+
maskWithZero: string;
|
|
325
|
+
length: number;
|
|
275
326
|
text: string;
|
|
276
327
|
timezone: string;
|
|
277
328
|
};
|
|
@@ -332,18 +383,27 @@ export declare const PhonePrefix: {
|
|
|
332
383
|
BRUNEIDARUSSALAM: {
|
|
333
384
|
id: number;
|
|
334
385
|
prefix: string;
|
|
386
|
+
mask: string;
|
|
387
|
+
maskWithZero: string;
|
|
388
|
+
length: number;
|
|
335
389
|
text: string;
|
|
336
390
|
timezone: string;
|
|
337
391
|
};
|
|
338
392
|
BURKINAFASO: {
|
|
339
393
|
id: number;
|
|
340
394
|
prefix: string;
|
|
395
|
+
mask: string;
|
|
396
|
+
maskWithZero: string;
|
|
397
|
+
length: number;
|
|
341
398
|
text: string;
|
|
342
399
|
timezone: string;
|
|
343
400
|
};
|
|
344
401
|
BURUNDI: {
|
|
345
402
|
id: number;
|
|
346
403
|
prefix: string;
|
|
404
|
+
mask: string;
|
|
405
|
+
maskWithZero: string;
|
|
406
|
+
length: number;
|
|
347
407
|
text: string;
|
|
348
408
|
timezone: string;
|
|
349
409
|
};
|
|
@@ -368,6 +428,9 @@ export declare const PhonePrefix: {
|
|
|
368
428
|
CAPEVERDE: {
|
|
369
429
|
id: number;
|
|
370
430
|
prefix: string;
|
|
431
|
+
mask: string;
|
|
432
|
+
maskWithZero: string;
|
|
433
|
+
length: number;
|
|
371
434
|
text: string;
|
|
372
435
|
timezone: string;
|
|
373
436
|
};
|
|
@@ -386,6 +449,9 @@ export declare const PhonePrefix: {
|
|
|
386
449
|
CYPRUS: {
|
|
387
450
|
id: number;
|
|
388
451
|
prefix: string;
|
|
452
|
+
mask: string;
|
|
453
|
+
maskWithZero: string;
|
|
454
|
+
length: number;
|
|
389
455
|
text: string;
|
|
390
456
|
timezone: string;
|
|
391
457
|
};
|
|
@@ -398,6 +464,9 @@ export declare const PhonePrefix: {
|
|
|
398
464
|
COMOROS: {
|
|
399
465
|
id: number;
|
|
400
466
|
prefix: string;
|
|
467
|
+
mask: string;
|
|
468
|
+
maskWithZero: string;
|
|
469
|
+
length: number;
|
|
401
470
|
text: string;
|
|
402
471
|
timezone: string;
|
|
403
472
|
};
|
|
@@ -410,6 +479,9 @@ export declare const PhonePrefix: {
|
|
|
410
479
|
CONGO: {
|
|
411
480
|
id: number;
|
|
412
481
|
prefix: string;
|
|
482
|
+
mask: string;
|
|
483
|
+
maskWithZero: string;
|
|
484
|
+
length: number;
|
|
413
485
|
text: string;
|
|
414
486
|
timezone: string;
|
|
415
487
|
};
|
|
@@ -434,6 +506,9 @@ export declare const PhonePrefix: {
|
|
|
434
506
|
CÔTEDIVOIRE: {
|
|
435
507
|
id: number;
|
|
436
508
|
prefix: string;
|
|
509
|
+
mask: string;
|
|
510
|
+
maskWithZero: string;
|
|
511
|
+
length: number;
|
|
437
512
|
text: string;
|
|
438
513
|
timezone: string;
|
|
439
514
|
};
|
|
@@ -446,12 +521,18 @@ export declare const PhonePrefix: {
|
|
|
446
521
|
DJIBOUTI: {
|
|
447
522
|
id: number;
|
|
448
523
|
prefix: string;
|
|
524
|
+
mask: string;
|
|
525
|
+
maskWithZero: string;
|
|
526
|
+
length: number;
|
|
449
527
|
text: string;
|
|
450
528
|
timezone: string;
|
|
451
529
|
};
|
|
452
530
|
DOMINICA: {
|
|
453
531
|
id: number;
|
|
454
532
|
prefix: string;
|
|
533
|
+
mask: string;
|
|
534
|
+
maskWithZero: string;
|
|
535
|
+
length: number;
|
|
455
536
|
text: string;
|
|
456
537
|
timezone: string;
|
|
457
538
|
};
|
|
@@ -476,6 +557,9 @@ export declare const PhonePrefix: {
|
|
|
476
557
|
ERITREA: {
|
|
477
558
|
id: number;
|
|
478
559
|
prefix: string;
|
|
560
|
+
mask: string;
|
|
561
|
+
maskWithZero: string;
|
|
562
|
+
length: number;
|
|
479
563
|
text: string;
|
|
480
564
|
timezone: string;
|
|
481
565
|
};
|
|
@@ -488,12 +572,18 @@ export declare const PhonePrefix: {
|
|
|
488
572
|
UNITEDSTATES: {
|
|
489
573
|
id: number;
|
|
490
574
|
prefix: string;
|
|
575
|
+
mask: string;
|
|
576
|
+
maskWithZero: string;
|
|
577
|
+
length: number;
|
|
491
578
|
text: string;
|
|
492
579
|
timezone: string;
|
|
493
580
|
};
|
|
494
581
|
ETHIOPIA: {
|
|
495
582
|
id: number;
|
|
496
583
|
prefix: string;
|
|
584
|
+
mask: string;
|
|
585
|
+
maskWithZero: string;
|
|
586
|
+
length: number;
|
|
497
587
|
text: string;
|
|
498
588
|
timezone: string;
|
|
499
589
|
};
|
|
@@ -512,12 +602,18 @@ export declare const PhonePrefix: {
|
|
|
512
602
|
GAMBIA: {
|
|
513
603
|
id: number;
|
|
514
604
|
prefix: string;
|
|
605
|
+
mask: string;
|
|
606
|
+
maskWithZero: string;
|
|
607
|
+
length: number;
|
|
515
608
|
text: string;
|
|
516
609
|
timezone: string;
|
|
517
610
|
};
|
|
518
611
|
GEORGIA: {
|
|
519
612
|
id: number;
|
|
520
613
|
prefix: string;
|
|
614
|
+
mask: string;
|
|
615
|
+
maskWithZero: string;
|
|
616
|
+
length: number;
|
|
521
617
|
text: string;
|
|
522
618
|
timezone: string;
|
|
523
619
|
};
|
|
@@ -530,24 +626,36 @@ export declare const PhonePrefix: {
|
|
|
530
626
|
GIBRALTAR: {
|
|
531
627
|
id: number;
|
|
532
628
|
prefix: string;
|
|
629
|
+
mask: string;
|
|
630
|
+
maskWithZero: string;
|
|
631
|
+
length: number;
|
|
533
632
|
text: string;
|
|
534
633
|
timezone: string;
|
|
535
634
|
};
|
|
536
635
|
GRENADA: {
|
|
537
636
|
id: number;
|
|
538
637
|
prefix: string;
|
|
638
|
+
mask: string;
|
|
639
|
+
maskWithZero: string;
|
|
640
|
+
length: number;
|
|
539
641
|
text: string;
|
|
540
642
|
timezone: string;
|
|
541
643
|
};
|
|
542
644
|
GREENLAND: {
|
|
543
645
|
id: number;
|
|
544
646
|
prefix: string;
|
|
647
|
+
mask: string;
|
|
648
|
+
maskWithZero: string;
|
|
649
|
+
length: number;
|
|
545
650
|
text: string;
|
|
546
651
|
timezone: string;
|
|
547
652
|
};
|
|
548
653
|
GUAM: {
|
|
549
654
|
id: number;
|
|
550
655
|
prefix: string;
|
|
656
|
+
mask: string;
|
|
657
|
+
maskWithZero: string;
|
|
658
|
+
length: number;
|
|
551
659
|
text: string;
|
|
552
660
|
timezone: string;
|
|
553
661
|
};
|
|
@@ -572,12 +680,18 @@ export declare const PhonePrefix: {
|
|
|
572
680
|
EQUATORIALGUINEA: {
|
|
573
681
|
id: number;
|
|
574
682
|
prefix: string;
|
|
683
|
+
mask: string;
|
|
684
|
+
maskWithZero: string;
|
|
685
|
+
length: number;
|
|
575
686
|
text: string;
|
|
576
687
|
timezone: string;
|
|
577
688
|
};
|
|
578
689
|
HAITI: {
|
|
579
690
|
id: number;
|
|
580
691
|
prefix: string;
|
|
692
|
+
mask: string;
|
|
693
|
+
maskWithZero: string;
|
|
694
|
+
length: number;
|
|
581
695
|
text: string;
|
|
582
696
|
timezone: string;
|
|
583
697
|
};
|
|
@@ -626,6 +740,9 @@ export declare const PhonePrefix: {
|
|
|
626
740
|
JAMAICA: {
|
|
627
741
|
id: number;
|
|
628
742
|
prefix: string;
|
|
743
|
+
mask: string;
|
|
744
|
+
maskWithZero: string;
|
|
745
|
+
length: number;
|
|
629
746
|
text: string;
|
|
630
747
|
timezone: string;
|
|
631
748
|
};
|
|
@@ -680,12 +797,18 @@ export declare const PhonePrefix: {
|
|
|
680
797
|
LESOTHO: {
|
|
681
798
|
id: number;
|
|
682
799
|
prefix: string;
|
|
800
|
+
mask: string;
|
|
801
|
+
maskWithZero: string;
|
|
802
|
+
length: number;
|
|
683
803
|
text: string;
|
|
684
804
|
timezone: string;
|
|
685
805
|
};
|
|
686
806
|
LATVIA: {
|
|
687
807
|
id: number;
|
|
688
808
|
prefix: string;
|
|
809
|
+
mask: string;
|
|
810
|
+
maskWithZero: string;
|
|
811
|
+
length: number;
|
|
689
812
|
text: string;
|
|
690
813
|
timezone: string;
|
|
691
814
|
};
|
|
@@ -704,6 +827,9 @@ export declare const PhonePrefix: {
|
|
|
704
827
|
LIBYA: {
|
|
705
828
|
id: number;
|
|
706
829
|
prefix: string;
|
|
830
|
+
mask: string;
|
|
831
|
+
maskWithZero: string;
|
|
832
|
+
length: number;
|
|
707
833
|
text: string;
|
|
708
834
|
timezone: string;
|
|
709
835
|
};
|
|
@@ -716,6 +842,9 @@ export declare const PhonePrefix: {
|
|
|
716
842
|
LITHUANIA: {
|
|
717
843
|
id: number;
|
|
718
844
|
prefix: string;
|
|
845
|
+
mask: string;
|
|
846
|
+
maskWithZero: string;
|
|
847
|
+
length: number;
|
|
719
848
|
text: string;
|
|
720
849
|
timezone: string;
|
|
721
850
|
};
|
|
@@ -728,12 +857,18 @@ export declare const PhonePrefix: {
|
|
|
728
857
|
MACEDONIA: {
|
|
729
858
|
id: number;
|
|
730
859
|
prefix: string;
|
|
860
|
+
mask: string;
|
|
861
|
+
maskWithZero: string;
|
|
862
|
+
length: number;
|
|
731
863
|
text: string;
|
|
732
864
|
timezone: string;
|
|
733
865
|
};
|
|
734
866
|
MADAGASCAR: {
|
|
735
867
|
id: number;
|
|
736
868
|
prefix: string;
|
|
869
|
+
mask: string;
|
|
870
|
+
maskWithZero: string;
|
|
871
|
+
length: number;
|
|
737
872
|
text: string;
|
|
738
873
|
timezone: string;
|
|
739
874
|
};
|
|
@@ -758,18 +893,27 @@ export declare const PhonePrefix: {
|
|
|
758
893
|
MALI: {
|
|
759
894
|
id: number;
|
|
760
895
|
prefix: string;
|
|
896
|
+
mask: string;
|
|
897
|
+
maskWithZero: string;
|
|
898
|
+
length: number;
|
|
761
899
|
text: string;
|
|
762
900
|
timezone: string;
|
|
763
901
|
};
|
|
764
902
|
MARSHALLISLANDS: {
|
|
765
903
|
id: number;
|
|
766
904
|
prefix: string;
|
|
905
|
+
mask: string;
|
|
906
|
+
maskWithZero: string;
|
|
907
|
+
length: number;
|
|
767
908
|
text: string;
|
|
768
909
|
timezone: string;
|
|
769
910
|
};
|
|
770
911
|
MAURITANIA: {
|
|
771
912
|
id: number;
|
|
772
913
|
prefix: string;
|
|
914
|
+
mask: string;
|
|
915
|
+
maskWithZero: string;
|
|
916
|
+
length: number;
|
|
773
917
|
text: string;
|
|
774
918
|
timezone: string;
|
|
775
919
|
};
|
|
@@ -782,18 +926,27 @@ export declare const PhonePrefix: {
|
|
|
782
926
|
MEXICO: {
|
|
783
927
|
id: number;
|
|
784
928
|
prefix: string;
|
|
929
|
+
mask: string;
|
|
930
|
+
maskWithZero: string;
|
|
931
|
+
length: number;
|
|
785
932
|
text: string;
|
|
786
933
|
timezone: string;
|
|
787
934
|
};
|
|
788
935
|
MICRONESIA: {
|
|
789
936
|
id: number;
|
|
790
937
|
prefix: string;
|
|
938
|
+
mask: string;
|
|
939
|
+
maskWithZero: string;
|
|
940
|
+
length: number;
|
|
791
941
|
text: string;
|
|
792
942
|
timezone: string;
|
|
793
943
|
};
|
|
794
944
|
MOLDOVA: {
|
|
795
945
|
id: number;
|
|
796
946
|
prefix: string;
|
|
947
|
+
mask: string;
|
|
948
|
+
maskWithZero: string;
|
|
949
|
+
length: number;
|
|
797
950
|
text: string;
|
|
798
951
|
timezone: string;
|
|
799
952
|
};
|
|
@@ -818,6 +971,9 @@ export declare const PhonePrefix: {
|
|
|
818
971
|
MOROCCO: {
|
|
819
972
|
id: number;
|
|
820
973
|
prefix: string;
|
|
974
|
+
mask: string;
|
|
975
|
+
maskWithZero: string;
|
|
976
|
+
length: number;
|
|
821
977
|
text: string;
|
|
822
978
|
timezone: string;
|
|
823
979
|
};
|
|
@@ -842,6 +998,9 @@ export declare const PhonePrefix: {
|
|
|
842
998
|
NAURU: {
|
|
843
999
|
id: number;
|
|
844
1000
|
prefix: string;
|
|
1001
|
+
mask: string;
|
|
1002
|
+
maskWithZero: string;
|
|
1003
|
+
length: number;
|
|
845
1004
|
text: string;
|
|
846
1005
|
timezone: string;
|
|
847
1006
|
};
|
|
@@ -860,12 +1019,18 @@ export declare const PhonePrefix: {
|
|
|
860
1019
|
NICARAGUA: {
|
|
861
1020
|
id: number;
|
|
862
1021
|
prefix: string;
|
|
1022
|
+
mask: string;
|
|
1023
|
+
maskWithZero: string;
|
|
1024
|
+
length: number;
|
|
863
1025
|
text: string;
|
|
864
1026
|
timezone: string;
|
|
865
1027
|
};
|
|
866
1028
|
NIGER: {
|
|
867
1029
|
id: number;
|
|
868
1030
|
prefix: string;
|
|
1031
|
+
mask: string;
|
|
1032
|
+
maskWithZero: string;
|
|
1033
|
+
length: number;
|
|
869
1034
|
text: string;
|
|
870
1035
|
timezone: string;
|
|
871
1036
|
};
|
|
@@ -890,6 +1055,9 @@ export declare const PhonePrefix: {
|
|
|
890
1055
|
PALAU: {
|
|
891
1056
|
id: number;
|
|
892
1057
|
prefix: string;
|
|
1058
|
+
mask: string;
|
|
1059
|
+
maskWithZero: string;
|
|
1060
|
+
length: number;
|
|
893
1061
|
text: string;
|
|
894
1062
|
timezone: string;
|
|
895
1063
|
};
|
|
@@ -926,6 +1094,9 @@ export declare const PhonePrefix: {
|
|
|
926
1094
|
PORTUGAL: {
|
|
927
1095
|
id: number;
|
|
928
1096
|
prefix: string;
|
|
1097
|
+
mask: string;
|
|
1098
|
+
maskWithZero: string;
|
|
1099
|
+
length: number;
|
|
929
1100
|
text: string;
|
|
930
1101
|
timezone: string;
|
|
931
1102
|
};
|
|
@@ -950,18 +1121,27 @@ export declare const PhonePrefix: {
|
|
|
950
1121
|
SAINTKITTSANDNEVIS: {
|
|
951
1122
|
id: number;
|
|
952
1123
|
prefix: string;
|
|
1124
|
+
mask: string;
|
|
1125
|
+
maskWithZero: string;
|
|
1126
|
+
length: number;
|
|
953
1127
|
text: string;
|
|
954
1128
|
timezone: string;
|
|
955
1129
|
};
|
|
956
1130
|
SAINTLUCIA: {
|
|
957
1131
|
id: number;
|
|
958
1132
|
prefix: string;
|
|
1133
|
+
mask: string;
|
|
1134
|
+
maskWithZero: string;
|
|
1135
|
+
length: number;
|
|
959
1136
|
text: string;
|
|
960
1137
|
timezone: string;
|
|
961
1138
|
};
|
|
962
1139
|
SAINTVINCENTANDTHEGRENADINES: {
|
|
963
1140
|
id: number;
|
|
964
1141
|
prefix: string;
|
|
1142
|
+
mask: string;
|
|
1143
|
+
maskWithZero: string;
|
|
1144
|
+
length: number;
|
|
965
1145
|
text: string;
|
|
966
1146
|
timezone: string;
|
|
967
1147
|
};
|
|
@@ -980,24 +1160,36 @@ export declare const PhonePrefix: {
|
|
|
980
1160
|
SAOTOMEANDPRINCIPE: {
|
|
981
1161
|
id: number;
|
|
982
1162
|
prefix: string;
|
|
1163
|
+
mask: string;
|
|
1164
|
+
maskWithZero: string;
|
|
1165
|
+
length: number;
|
|
983
1166
|
text: string;
|
|
984
1167
|
timezone: string;
|
|
985
1168
|
};
|
|
986
1169
|
SENEGAL: {
|
|
987
1170
|
id: number;
|
|
988
1171
|
prefix: string;
|
|
1172
|
+
mask: string;
|
|
1173
|
+
maskWithZero: string;
|
|
1174
|
+
length: number;
|
|
989
1175
|
text: string;
|
|
990
1176
|
timezone: string;
|
|
991
1177
|
};
|
|
992
1178
|
SEYCHELLES: {
|
|
993
1179
|
id: number;
|
|
994
1180
|
prefix: string;
|
|
1181
|
+
mask: string;
|
|
1182
|
+
maskWithZero: string;
|
|
1183
|
+
length: number;
|
|
995
1184
|
text: string;
|
|
996
1185
|
timezone: string;
|
|
997
1186
|
};
|
|
998
1187
|
SIERRALEONE: {
|
|
999
1188
|
id: number;
|
|
1000
1189
|
prefix: string;
|
|
1190
|
+
mask: string;
|
|
1191
|
+
maskWithZero: string;
|
|
1192
|
+
length: number;
|
|
1001
1193
|
text: string;
|
|
1002
1194
|
timezone: string;
|
|
1003
1195
|
};
|
|
@@ -1034,18 +1226,27 @@ export declare const PhonePrefix: {
|
|
|
1034
1226
|
SOUTHSDAN: {
|
|
1035
1227
|
id: number;
|
|
1036
1228
|
prefix: string;
|
|
1229
|
+
mask: string;
|
|
1230
|
+
maskWithZero: string;
|
|
1231
|
+
length: number;
|
|
1037
1232
|
text: string;
|
|
1038
1233
|
timezone: string;
|
|
1039
1234
|
};
|
|
1040
1235
|
SRILANKA: {
|
|
1041
1236
|
id: number;
|
|
1042
1237
|
prefix: string;
|
|
1238
|
+
mask: string;
|
|
1239
|
+
maskWithZero: string;
|
|
1240
|
+
length: number;
|
|
1043
1241
|
text: string;
|
|
1044
1242
|
timezone: string;
|
|
1045
1243
|
};
|
|
1046
1244
|
SUDAN: {
|
|
1047
1245
|
id: number;
|
|
1048
1246
|
prefix: string;
|
|
1247
|
+
mask: string;
|
|
1248
|
+
maskWithZero: string;
|
|
1249
|
+
length: number;
|
|
1049
1250
|
text: string;
|
|
1050
1251
|
timezone: string;
|
|
1051
1252
|
};
|
|
@@ -1070,12 +1271,18 @@ export declare const PhonePrefix: {
|
|
|
1070
1271
|
TAJIKISTAN: {
|
|
1071
1272
|
id: number;
|
|
1072
1273
|
prefix: string;
|
|
1274
|
+
mask: string;
|
|
1275
|
+
maskWithZero: string;
|
|
1276
|
+
length: number;
|
|
1073
1277
|
text: string;
|
|
1074
1278
|
timezone: string;
|
|
1075
1279
|
};
|
|
1076
1280
|
TANZANIA: {
|
|
1077
1281
|
id: number;
|
|
1078
1282
|
prefix: string;
|
|
1283
|
+
mask: string;
|
|
1284
|
+
maskWithZero: string;
|
|
1285
|
+
length: number;
|
|
1079
1286
|
text: string;
|
|
1080
1287
|
timezone: string;
|
|
1081
1288
|
};
|
|
@@ -1094,6 +1301,9 @@ export declare const PhonePrefix: {
|
|
|
1094
1301
|
TOGO: {
|
|
1095
1302
|
id: number;
|
|
1096
1303
|
prefix: string;
|
|
1304
|
+
mask: string;
|
|
1305
|
+
maskWithZero: string;
|
|
1306
|
+
length: number;
|
|
1097
1307
|
text: string;
|
|
1098
1308
|
timezone: string;
|
|
1099
1309
|
};
|
|
@@ -1106,12 +1316,18 @@ export declare const PhonePrefix: {
|
|
|
1106
1316
|
TRINIDADANDTOBAGO: {
|
|
1107
1317
|
id: number;
|
|
1108
1318
|
prefix: string;
|
|
1319
|
+
mask: string;
|
|
1320
|
+
maskWithZero: string;
|
|
1321
|
+
length: number;
|
|
1109
1322
|
text: string;
|
|
1110
1323
|
timezone: string;
|
|
1111
1324
|
};
|
|
1112
1325
|
TUNISIA: {
|
|
1113
1326
|
id: number;
|
|
1114
1327
|
prefix: string;
|
|
1328
|
+
mask: string;
|
|
1329
|
+
maskWithZero: string;
|
|
1330
|
+
length: number;
|
|
1115
1331
|
text: string;
|
|
1116
1332
|
timezone: string;
|
|
1117
1333
|
};
|
|
@@ -1124,6 +1340,9 @@ export declare const PhonePrefix: {
|
|
|
1124
1340
|
TURKMENISTAN: {
|
|
1125
1341
|
id: number;
|
|
1126
1342
|
prefix: string;
|
|
1343
|
+
mask: string;
|
|
1344
|
+
maskWithZero: string;
|
|
1345
|
+
length: number;
|
|
1127
1346
|
text: string;
|
|
1128
1347
|
timezone: string;
|
|
1129
1348
|
};
|
|
@@ -1136,12 +1355,18 @@ export declare const PhonePrefix: {
|
|
|
1136
1355
|
UGANDA: {
|
|
1137
1356
|
id: number;
|
|
1138
1357
|
prefix: string;
|
|
1358
|
+
mask: string;
|
|
1359
|
+
maskWithZero: string;
|
|
1360
|
+
length: number;
|
|
1139
1361
|
text: string;
|
|
1140
1362
|
timezone: string;
|
|
1141
1363
|
};
|
|
1142
1364
|
UNITEDSTATESOFAMERICA: {
|
|
1143
1365
|
id: number;
|
|
1144
1366
|
prefix: string;
|
|
1367
|
+
mask: string;
|
|
1368
|
+
maskWithZero: string;
|
|
1369
|
+
length: number;
|
|
1145
1370
|
text: string;
|
|
1146
1371
|
timezone: string;
|
|
1147
1372
|
};
|
|
@@ -1154,6 +1379,9 @@ export declare const PhonePrefix: {
|
|
|
1154
1379
|
UZBEKISTAN: {
|
|
1155
1380
|
id: number;
|
|
1156
1381
|
prefix: string;
|
|
1382
|
+
mask: string;
|
|
1383
|
+
maskWithZero: string;
|
|
1384
|
+
length: number;
|
|
1157
1385
|
text: string;
|
|
1158
1386
|
timezone: string;
|
|
1159
1387
|
};
|
|
@@ -1166,6 +1394,9 @@ export declare const PhonePrefix: {
|
|
|
1166
1394
|
VENEZUELA: {
|
|
1167
1395
|
id: number;
|
|
1168
1396
|
prefix: string;
|
|
1397
|
+
mask: string;
|
|
1398
|
+
maskWithZero: string;
|
|
1399
|
+
length: number;
|
|
1169
1400
|
text: string;
|
|
1170
1401
|
timezone: string;
|
|
1171
1402
|
};
|
|
@@ -1184,6 +1415,9 @@ export declare const PhonePrefix: {
|
|
|
1184
1415
|
ZAMBIA: {
|
|
1185
1416
|
id: number;
|
|
1186
1417
|
prefix: string;
|
|
1418
|
+
mask: string;
|
|
1419
|
+
maskWithZero: string;
|
|
1420
|
+
length: number;
|
|
1187
1421
|
text: string;
|
|
1188
1422
|
timezone: string;
|
|
1189
1423
|
};
|