country-codes-list 2.0.0 → 2.1.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/README.md CHANGED
@@ -2,12 +2,13 @@
2
2
 
3
3
  Module with list of codes per country, including country codes, currency codes, and more.
4
4
 
5
- > [!WARNING]
5
+ > [!WARNING]
6
6
  > Release v2.0.0 introduces breaking changes with full TypeScript support and automated testing/publishing.
7
7
 
8
8
  ## Features
9
9
 
10
- - Country code (ISO 3166-1 alpha-2): Obtained from [Wikipedia](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
10
+ - 2 digit country code (ISO 3166-1 alpha-2): Obtained from [Wikipedia](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)
11
+ - 3 digit country code (ISO 3166-1 alpha-3): Obtained from [Wikipedia](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-3)
11
12
  - Country Name: Each name in english and in the local country language
12
13
  - Currency Code (ISO 4217): Obtained from [Wikipedia](https://en.wikipedia.org/wiki/ISO_4217)
13
14
  - Currency Name (ISO 4217): Obtained from [Wikipedia](https://en.wikipedia.org/wiki/ISO_4217)
@@ -2,6 +2,7 @@ type CountryData = {
2
2
  countryNameEn: string;
3
3
  countryNameLocal: string;
4
4
  countryCode: string;
5
+ countryCodeAlpha3: string;
5
6
  currencyCode: string;
6
7
  currencyNameEn: string;
7
8
  tinType: string;