@mailwoman/codex 5.8.0 → 5.10.0
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/out/address-system-conventions.d.ts +1 -1
- package/out/au/index.d.ts +4 -4
- package/out/ca/index.d.ts +3 -3
- package/out/ca/postal-code.d.ts +1 -1
- package/out/country/codes.d.ts +252 -251
- package/out/country/codes.d.ts.map +1 -1
- package/out/country/codes.js +251 -252
- package/out/country/codes.js.map +1 -1
- package/out/country/country.d.ts +2 -2
- package/out/country/index.d.ts +6 -6
- package/out/country/official-languages.d.ts +1 -1
- package/out/country/official-languages.js +1 -1
- package/out/country/reference-data.d.ts +1 -1
- package/out/country/reference-data.js +1 -1
- package/out/de/index.d.ts +3 -3
- package/out/fr/code-postal.d.ts +2 -2
- package/out/fr/departement.d.ts +1 -1
- package/out/fr/index.d.ts +5 -5
- package/out/gb/index.d.ts +4 -4
- package/out/gb/postcode-area.d.ts +1 -1
- package/out/index.d.ts +10 -10
- package/out/jp/index.d.ts +3 -3
- package/out/nz/index.d.ts +2 -2
- package/out/tools/generate-country-reference.d.ts +28 -0
- package/out/tools/generate-country-reference.d.ts.map +1 -0
- package/out/tools/generate-country-reference.js +105 -0
- package/out/tools/generate-country-reference.js.map +1 -0
- package/out/tools/generate-official-languages.d.ts +38 -0
- package/out/tools/generate-official-languages.d.ts.map +1 -0
- package/out/tools/generate-official-languages.js +142 -0
- package/out/tools/generate-official-languages.js.map +1 -0
- package/out/tools/index.d.ts +12 -0
- package/out/tools/index.d.ts.map +1 -0
- package/out/tools/index.js +12 -0
- package/out/tools/index.js.map +1 -0
- package/out/us/index.d.ts +8 -8
- package/out/us/street-directional.d.ts +23 -22
- package/out/us/street-directional.d.ts.map +1 -1
- package/out/us/street-directional.js +10 -11
- package/out/us/street-directional.js.map +1 -1
- package/out/us/zipcode.d.ts +1 -1
- package/package.json +93 -12
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* postcode repair pass. Both triggered only when the system is detected confidently (or supplied
|
|
18
18
|
* by the caller) — an undetected system parses exactly as before.
|
|
19
19
|
*/
|
|
20
|
-
import type { SystemCode } from "./postcode-systems.
|
|
20
|
+
import type { SystemCode } from "./postcode-systems.ts";
|
|
21
21
|
export interface AddressSystemConventions {
|
|
22
22
|
/**
|
|
23
23
|
* Component tags that are NOT grammatical in this address system (names from the core `ComponentTag` union; codex
|
package/out/au/index.d.ts
CHANGED
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
* AMAS / AS 4590.1 floor/level designators (Level 3, Ground Floor, Mezzanine), states and
|
|
9
9
|
* territories, and the 4-digit postcode.
|
|
10
10
|
*/
|
|
11
|
-
export * from "./delivery-service.
|
|
12
|
-
export * from "./level-designator.
|
|
13
|
-
export * from "./postcode.
|
|
14
|
-
export * from "./state.
|
|
11
|
+
export * from "./delivery-service.ts";
|
|
12
|
+
export * from "./level-designator.ts";
|
|
13
|
+
export * from "./postcode.ts";
|
|
14
|
+
export * from "./state.ts";
|
|
15
15
|
//# sourceMappingURL=index.d.ts.map
|
package/out/ca/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* The Canadian address system (Canada Post / ISO 3166-2:CA): bilingual street types, alphanumeric
|
|
7
7
|
* postal codes, and the provinces and territories.
|
|
8
8
|
*/
|
|
9
|
-
export * from "./postal-code.
|
|
10
|
-
export * from "./province.
|
|
11
|
-
export * from "./street-type.
|
|
9
|
+
export * from "./postal-code.ts";
|
|
10
|
+
export * from "./province.ts";
|
|
11
|
+
export * from "./street-type.ts";
|
|
12
12
|
//# sourceMappingURL=index.d.ts.map
|
package/out/ca/postal-code.d.ts
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
* the bridge to the wider, lower-density delivery zones.
|
|
26
26
|
*/
|
|
27
27
|
import type { Tagged } from "type-fest";
|
|
28
|
-
import type { CanadianProvinceCode } from "./province.
|
|
28
|
+
import type { CanadianProvinceCode } from "./province.ts";
|
|
29
29
|
/**
|
|
30
30
|
* A Canadian postal code: `A1A 1A1`. Six alphanumeric characters in a strict Letter-Digit-Letter-Digit-Letter-Digit
|
|
31
31
|
* pattern, conventionally written with a single space after the third. Unlike the other systems' bare five digits, the
|
package/out/country/codes.d.ts
CHANGED
|
@@ -8,257 +8,258 @@
|
|
|
8
8
|
* @title Country ISO 3166-1 Alpha-2 code
|
|
9
9
|
* @public
|
|
10
10
|
*/
|
|
11
|
-
export declare
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"American Samoa"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"Antigua and Barbuda"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
"Bonaire, Sint Eustatius and Saba"
|
|
39
|
-
"Bosnia and Herzegovina"
|
|
40
|
-
|
|
41
|
-
"Bouvet Island"
|
|
42
|
-
|
|
43
|
-
"British Indian Ocean Territory"
|
|
44
|
-
"Brunei Darussalam"
|
|
45
|
-
|
|
46
|
-
"Burkina Faso"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"Cape Verde"
|
|
52
|
-
"Cayman Islands"
|
|
53
|
-
"Central African Republic"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
"Christmas Island"
|
|
58
|
-
"Cocos (Keeling) Islands"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"Congo, the Democratic Republic of the"
|
|
63
|
-
"Cook Islands"
|
|
64
|
-
"Costa Rica"
|
|
65
|
-
"Cote DIvoire"
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"Czech Republic"
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"Dominican Republic"
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"El Salvador"
|
|
78
|
-
"Equatorial Guinea"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"Falkland Islands (Malvinas)"
|
|
83
|
-
"Faroe Islands"
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
"French Guiana"
|
|
88
|
-
"French Polynesia"
|
|
89
|
-
"French Southern Territories"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"Guinea-Bissau"
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
"Heard Island and Mcdonald Islands"
|
|
108
|
-
"Holy See (Vatican City State)"
|
|
109
|
-
|
|
110
|
-
"Hong Kong"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"Iran, Islamic Republic of"
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"Isle of Man"
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"Korea, Democratic People's Republic of"
|
|
129
|
-
"Korea, Republic of"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
"Lao People's Democratic Republic"
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"Macedonia, the Former Yugoslav Republic of"
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
"Marshall Islands"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
"Micronesia, Federated States of"
|
|
156
|
-
"Moldova, Republic of"
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
"New Caledonia"
|
|
169
|
-
"New Zealand"
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"Norfolk Island"
|
|
175
|
-
"Northern Mariana Islands"
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
"Palestine, State of"
|
|
181
|
-
|
|
182
|
-
"Papua New Guinea"
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
"Puerto Rico"
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
"Russian Federation"
|
|
194
|
-
|
|
195
|
-
"Saint
|
|
196
|
-
"Saint Helena, Ascension and Tristan da Cunha"
|
|
197
|
-
"Saint Kitts and Nevis"
|
|
198
|
-
"Saint Lucia"
|
|
199
|
-
"Saint Martin (French part)"
|
|
200
|
-
"Saint Pierre and Miquelon"
|
|
201
|
-
"Saint Vincent and the Grenadines"
|
|
202
|
-
|
|
203
|
-
"San Marino"
|
|
204
|
-
"Sao Tome and Principe"
|
|
205
|
-
"Saudi Arabia"
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
"Sierra Leone"
|
|
210
|
-
|
|
211
|
-
"Sint Maarten (Dutch part)"
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
"Solomon Islands"
|
|
215
|
-
|
|
216
|
-
"South Africa"
|
|
217
|
-
"South Georgia and the South Sandwich Islands"
|
|
218
|
-
"South Sudan"
|
|
219
|
-
|
|
220
|
-
"Sri Lanka"
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
"Svalbard and Jan Mayen"
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
"Syrian Arab Republic"
|
|
228
|
-
"Taiwan (Province of China)"
|
|
229
|
-
|
|
230
|
-
"Tanzania, United Republic of"
|
|
231
|
-
|
|
232
|
-
"Timor-Leste"
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
"Trinidad and Tobago"
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
"Turks and Caicos Islands"
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
"United Arab Emirates"
|
|
245
|
-
"United Kingdom"
|
|
246
|
-
"United States"
|
|
247
|
-
"United States Minor Outlying Islands"
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
"Viet Nam"
|
|
253
|
-
"Virgin Islands (British)"
|
|
254
|
-
"Virgin Islands (U.S.)"
|
|
255
|
-
"Wallis and Futuna"
|
|
256
|
-
"Western Sahara"
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
"
|
|
261
|
-
}
|
|
11
|
+
export declare const CountryISO2: {
|
|
12
|
+
readonly Afghanistan: "AF";
|
|
13
|
+
readonly Albania: "AL";
|
|
14
|
+
readonly Algeria: "DZ";
|
|
15
|
+
readonly "American Samoa": "AS";
|
|
16
|
+
readonly Andorra: "AD";
|
|
17
|
+
readonly Angola: "AO";
|
|
18
|
+
readonly Anguilla: "AI";
|
|
19
|
+
readonly Antarctica: "AQ";
|
|
20
|
+
readonly "Antigua and Barbuda": "AG";
|
|
21
|
+
readonly Argentina: "AR";
|
|
22
|
+
readonly Armenia: "AM";
|
|
23
|
+
readonly Aruba: "AW";
|
|
24
|
+
readonly Australia: "AU";
|
|
25
|
+
readonly Austria: "AT";
|
|
26
|
+
readonly Azerbaijan: "AZ";
|
|
27
|
+
readonly Bahamas: "BS";
|
|
28
|
+
readonly Bahrain: "BH";
|
|
29
|
+
readonly Bangladesh: "BD";
|
|
30
|
+
readonly Barbados: "BB";
|
|
31
|
+
readonly Belarus: "BY";
|
|
32
|
+
readonly Belgium: "BE";
|
|
33
|
+
readonly Belize: "BZ";
|
|
34
|
+
readonly Benin: "BJ";
|
|
35
|
+
readonly Bermuda: "BM";
|
|
36
|
+
readonly Bhutan: "BT";
|
|
37
|
+
readonly Bolivia: "BO";
|
|
38
|
+
readonly "Bonaire, Sint Eustatius and Saba": "BQ";
|
|
39
|
+
readonly "Bosnia and Herzegovina": "BA";
|
|
40
|
+
readonly Botswana: "BW";
|
|
41
|
+
readonly "Bouvet Island": "BV";
|
|
42
|
+
readonly Brazil: "BR";
|
|
43
|
+
readonly "British Indian Ocean Territory": "IO";
|
|
44
|
+
readonly "Brunei Darussalam": "BN";
|
|
45
|
+
readonly Bulgaria: "BG";
|
|
46
|
+
readonly "Burkina Faso": "BF";
|
|
47
|
+
readonly Burundi: "BI";
|
|
48
|
+
readonly Cambodia: "KH";
|
|
49
|
+
readonly Cameroon: "CM";
|
|
50
|
+
readonly Canada: "CA";
|
|
51
|
+
readonly "Cape Verde": "CV";
|
|
52
|
+
readonly "Cayman Islands": "KY";
|
|
53
|
+
readonly "Central African Republic": "CF";
|
|
54
|
+
readonly Chad: "TD";
|
|
55
|
+
readonly Chile: "CL";
|
|
56
|
+
readonly China: "CN";
|
|
57
|
+
readonly "Christmas Island": "CX";
|
|
58
|
+
readonly "Cocos (Keeling) Islands": "CC";
|
|
59
|
+
readonly Colombia: "CO";
|
|
60
|
+
readonly Comoros: "KM";
|
|
61
|
+
readonly Congo: "CG";
|
|
62
|
+
readonly "Congo, the Democratic Republic of the": "CD";
|
|
63
|
+
readonly "Cook Islands": "CK";
|
|
64
|
+
readonly "Costa Rica": "CR";
|
|
65
|
+
readonly "Cote DIvoire": "CI";
|
|
66
|
+
readonly Croatia: "HR";
|
|
67
|
+
readonly Cuba: "CU";
|
|
68
|
+
readonly Curaçao: "CW";
|
|
69
|
+
readonly Cyprus: "CY";
|
|
70
|
+
readonly "Czech Republic": "CZ";
|
|
71
|
+
readonly Denmark: "DK";
|
|
72
|
+
readonly Djibouti: "DJ";
|
|
73
|
+
readonly Dominica: "DM";
|
|
74
|
+
readonly "Dominican Republic": "DO";
|
|
75
|
+
readonly Ecuador: "EC";
|
|
76
|
+
readonly Egypt: "EG";
|
|
77
|
+
readonly "El Salvador": "SV";
|
|
78
|
+
readonly "Equatorial Guinea": "GQ";
|
|
79
|
+
readonly Eritrea: "ER";
|
|
80
|
+
readonly Estonia: "EE";
|
|
81
|
+
readonly Ethiopia: "ET";
|
|
82
|
+
readonly "Falkland Islands (Malvinas)": "FK";
|
|
83
|
+
readonly "Faroe Islands": "FO";
|
|
84
|
+
readonly Fiji: "FJ";
|
|
85
|
+
readonly Finland: "FI";
|
|
86
|
+
readonly France: "FR";
|
|
87
|
+
readonly "French Guiana": "GF";
|
|
88
|
+
readonly "French Polynesia": "PF";
|
|
89
|
+
readonly "French Southern Territories": "TF";
|
|
90
|
+
readonly Gabon: "GA";
|
|
91
|
+
readonly Gambia: "GM";
|
|
92
|
+
readonly Georgia: "GE";
|
|
93
|
+
readonly Germany: "DE";
|
|
94
|
+
readonly Ghana: "GH";
|
|
95
|
+
readonly Gibraltar: "GI";
|
|
96
|
+
readonly Greece: "GR";
|
|
97
|
+
readonly Greenland: "GL";
|
|
98
|
+
readonly Grenada: "GD";
|
|
99
|
+
readonly Guadeloupe: "GP";
|
|
100
|
+
readonly Guam: "GU";
|
|
101
|
+
readonly Guatemala: "GT";
|
|
102
|
+
readonly Guernsey: "GG";
|
|
103
|
+
readonly Guinea: "GN";
|
|
104
|
+
readonly "Guinea-Bissau": "GW";
|
|
105
|
+
readonly Guyana: "GY";
|
|
106
|
+
readonly Haiti: "HT";
|
|
107
|
+
readonly "Heard Island and Mcdonald Islands": "HM";
|
|
108
|
+
readonly "Holy See (Vatican City State)": "VA";
|
|
109
|
+
readonly Honduras: "HN";
|
|
110
|
+
readonly "Hong Kong": "HK";
|
|
111
|
+
readonly Hungary: "HU";
|
|
112
|
+
readonly Iceland: "IS";
|
|
113
|
+
readonly India: "IN";
|
|
114
|
+
readonly Indonesia: "ID";
|
|
115
|
+
readonly "Iran, Islamic Republic of": "IR";
|
|
116
|
+
readonly Iraq: "IQ";
|
|
117
|
+
readonly Ireland: "IE";
|
|
118
|
+
readonly "Isle of Man": "IM";
|
|
119
|
+
readonly Israel: "IL";
|
|
120
|
+
readonly Italy: "IT";
|
|
121
|
+
readonly Jamaica: "JM";
|
|
122
|
+
readonly Japan: "JP";
|
|
123
|
+
readonly Jersey: "JE";
|
|
124
|
+
readonly Jordan: "JO";
|
|
125
|
+
readonly Kazakhstan: "KZ";
|
|
126
|
+
readonly Kenya: "KE";
|
|
127
|
+
readonly Kiribati: "KI";
|
|
128
|
+
readonly "Korea, Democratic People's Republic of": "KP";
|
|
129
|
+
readonly "Korea, Republic of": "KR";
|
|
130
|
+
readonly Kuwait: "KW";
|
|
131
|
+
readonly Kyrgyzstan: "KG";
|
|
132
|
+
readonly "Lao People's Democratic Republic": "LA";
|
|
133
|
+
readonly Latvia: "LV";
|
|
134
|
+
readonly Lebanon: "LB";
|
|
135
|
+
readonly Lesotho: "LS";
|
|
136
|
+
readonly Liberia: "LR";
|
|
137
|
+
readonly Libya: "LY";
|
|
138
|
+
readonly Liechtenstein: "LI";
|
|
139
|
+
readonly Lithuania: "LT";
|
|
140
|
+
readonly Luxembourg: "LU";
|
|
141
|
+
readonly Macao: "MO";
|
|
142
|
+
readonly "Macedonia, the Former Yugoslav Republic of": "MK";
|
|
143
|
+
readonly Madagascar: "MG";
|
|
144
|
+
readonly Malawi: "MW";
|
|
145
|
+
readonly Malaysia: "MY";
|
|
146
|
+
readonly Maldives: "MV";
|
|
147
|
+
readonly Mali: "ML";
|
|
148
|
+
readonly Malta: "MT";
|
|
149
|
+
readonly "Marshall Islands": "MH";
|
|
150
|
+
readonly Martinique: "MQ";
|
|
151
|
+
readonly Mauritania: "MR";
|
|
152
|
+
readonly Mauritius: "MU";
|
|
153
|
+
readonly Mayotte: "YT";
|
|
154
|
+
readonly Mexico: "MX";
|
|
155
|
+
readonly "Micronesia, Federated States of": "FM";
|
|
156
|
+
readonly "Moldova, Republic of": "MD";
|
|
157
|
+
readonly Monaco: "MC";
|
|
158
|
+
readonly Mongolia: "MN";
|
|
159
|
+
readonly Montenegro: "ME";
|
|
160
|
+
readonly Montserrat: "MS";
|
|
161
|
+
readonly Morocco: "MA";
|
|
162
|
+
readonly Mozambique: "MZ";
|
|
163
|
+
readonly Myanmar: "MM";
|
|
164
|
+
readonly Namibia: "NA";
|
|
165
|
+
readonly Nauru: "NR";
|
|
166
|
+
readonly Nepal: "NP";
|
|
167
|
+
readonly Netherlands: "NL";
|
|
168
|
+
readonly "New Caledonia": "NC";
|
|
169
|
+
readonly "New Zealand": "NZ";
|
|
170
|
+
readonly Nicaragua: "NI";
|
|
171
|
+
readonly Niger: "NE";
|
|
172
|
+
readonly Nigeria: "NG";
|
|
173
|
+
readonly Niue: "NU";
|
|
174
|
+
readonly "Norfolk Island": "NF";
|
|
175
|
+
readonly "Northern Mariana Islands": "MP";
|
|
176
|
+
readonly Norway: "NO";
|
|
177
|
+
readonly Oman: "OM";
|
|
178
|
+
readonly Pakistan: "PK";
|
|
179
|
+
readonly Palau: "PW";
|
|
180
|
+
readonly "Palestine, State of": "PS";
|
|
181
|
+
readonly Panama: "PA";
|
|
182
|
+
readonly "Papua New Guinea": "PG";
|
|
183
|
+
readonly Paraguay: "PY";
|
|
184
|
+
readonly Peru: "PE";
|
|
185
|
+
readonly Philippines: "PH";
|
|
186
|
+
readonly Pitcairn: "PN";
|
|
187
|
+
readonly Poland: "PL";
|
|
188
|
+
readonly Portugal: "PT";
|
|
189
|
+
readonly "Puerto Rico": "PR";
|
|
190
|
+
readonly Qatar: "QA";
|
|
191
|
+
readonly Reunion: "RE";
|
|
192
|
+
readonly Romania: "RO";
|
|
193
|
+
readonly "Russian Federation": "RU";
|
|
194
|
+
readonly Rwanda: "RW";
|
|
195
|
+
readonly "Saint Barth\u00E9lemy": "BL";
|
|
196
|
+
readonly "Saint Helena, Ascension and Tristan da Cunha": "SH";
|
|
197
|
+
readonly "Saint Kitts and Nevis": "KN";
|
|
198
|
+
readonly "Saint Lucia": "LC";
|
|
199
|
+
readonly "Saint Martin (French part)": "MF";
|
|
200
|
+
readonly "Saint Pierre and Miquelon": "PM";
|
|
201
|
+
readonly "Saint Vincent and the Grenadines": "VC";
|
|
202
|
+
readonly Samoa: "WS";
|
|
203
|
+
readonly "San Marino": "SM";
|
|
204
|
+
readonly "Sao Tome and Principe": "ST";
|
|
205
|
+
readonly "Saudi Arabia": "SA";
|
|
206
|
+
readonly Senegal: "SN";
|
|
207
|
+
readonly Serbia: "RS";
|
|
208
|
+
readonly Seychelles: "SC";
|
|
209
|
+
readonly "Sierra Leone": "SL";
|
|
210
|
+
readonly Singapore: "SG";
|
|
211
|
+
readonly "Sint Maarten (Dutch part)": "SX";
|
|
212
|
+
readonly Slovakia: "SK";
|
|
213
|
+
readonly Slovenia: "SI";
|
|
214
|
+
readonly "Solomon Islands": "SB";
|
|
215
|
+
readonly Somalia: "SO";
|
|
216
|
+
readonly "South Africa": "ZA";
|
|
217
|
+
readonly "South Georgia and the South Sandwich Islands": "GS";
|
|
218
|
+
readonly "South Sudan": "SS";
|
|
219
|
+
readonly Spain: "ES";
|
|
220
|
+
readonly "Sri Lanka": "LK";
|
|
221
|
+
readonly Sudan: "SD";
|
|
222
|
+
readonly Suriname: "SR";
|
|
223
|
+
readonly "Svalbard and Jan Mayen": "SJ";
|
|
224
|
+
readonly Swaziland: "SZ";
|
|
225
|
+
readonly Sweden: "SE";
|
|
226
|
+
readonly Switzerland: "CH";
|
|
227
|
+
readonly "Syrian Arab Republic": "SY";
|
|
228
|
+
readonly "Taiwan (Province of China)": "TW";
|
|
229
|
+
readonly Tajikistan: "TJ";
|
|
230
|
+
readonly "Tanzania, United Republic of": "TZ";
|
|
231
|
+
readonly Thailand: "TH";
|
|
232
|
+
readonly "Timor-Leste": "TL";
|
|
233
|
+
readonly Togo: "TG";
|
|
234
|
+
readonly Tokelau: "TK";
|
|
235
|
+
readonly Tonga: "TO";
|
|
236
|
+
readonly "Trinidad and Tobago": "TT";
|
|
237
|
+
readonly Tunisia: "TN";
|
|
238
|
+
readonly Turkey: "TR";
|
|
239
|
+
readonly Turkmenistan: "TM";
|
|
240
|
+
readonly "Turks and Caicos Islands": "TC";
|
|
241
|
+
readonly Tuvalu: "TV";
|
|
242
|
+
readonly Uganda: "UG";
|
|
243
|
+
readonly Ukraine: "UA";
|
|
244
|
+
readonly "United Arab Emirates": "AE";
|
|
245
|
+
readonly "United Kingdom": "GB";
|
|
246
|
+
readonly "United States": "US";
|
|
247
|
+
readonly "United States Minor Outlying Islands": "UM";
|
|
248
|
+
readonly Uruguay: "UY";
|
|
249
|
+
readonly Uzbekistan: "UZ";
|
|
250
|
+
readonly Vanuatu: "VU";
|
|
251
|
+
readonly Venezuela: "VE";
|
|
252
|
+
readonly "Viet Nam": "VN";
|
|
253
|
+
readonly "Virgin Islands (British)": "VG";
|
|
254
|
+
readonly "Virgin Islands (U.S.)": "VI";
|
|
255
|
+
readonly "Wallis and Futuna": "WF";
|
|
256
|
+
readonly "Western Sahara": "EH";
|
|
257
|
+
readonly Yemen: "YE";
|
|
258
|
+
readonly Zambia: "ZM";
|
|
259
|
+
readonly Zimbabwe: "ZW";
|
|
260
|
+
readonly "\u00C5land Islands": "AX";
|
|
261
|
+
};
|
|
262
|
+
export type CountryISO2 = (typeof CountryISO2)[keyof typeof CountryISO2];
|
|
262
263
|
/**
|
|
263
264
|
* ISO 3166-1 alpha-3 country codes to country names.
|
|
264
265
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codes.d.ts","sourceRoot":"","sources":["../../country/codes.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;;;GAIG;AACH,
|
|
1
|
+
{"version":3,"file":"codes.d.ts","sourceRoot":"","sources":["../../country/codes.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH;;;;GAIG;AACH,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0Pd,CAAA;AAEV,MAAM,MAAM,WAAW,GAAG,CAAC,OAAO,WAAW,CAAC,CAAC,MAAM,OAAO,WAAW,CAAC,CAAA;AAExE;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0Pc,CAAA;AAEhD;;;;;;;GAOG;AACH,MAAM,MAAM,WAAW,GAAG,MAAM,OAAO,qBAAqB,CAAA"}
|