Skip to content

Commit 5c3bb9f

Browse files
committed
Rebuild dist data
1 parent 5ebe32a commit 5c3bb9f

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

dist/cjs/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/countries.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
"KR","South Korea","대한민국","82","Asia","Seoul","KRW","ko"
124124
"KW","Kuwait","الكويت","965","Asia","Kuwait City","KWD","ar"
125125
"KY","Cayman Islands","Cayman Islands","1345","North America","George Town","KYD","en"
126-
"KZ","Kazakhstan","Қазақстан","76,77","Asia","Astana","KZT","kk,ru"
126+
"KZ","Kazakhstan","Қазақстан","7","Asia","Astana","KZT","kk,ru"
127127
"LA","Laos","ສປປລາວ","856","Asia","Vientiane","LAK","lo"
128128
"LB","Lebanon","لبنان","961","Asia","Beirut","LBP","ar,fr"
129129
"LC","Saint Lucia","Saint Lucia","1758","North America","Castries","XCD","en"

dist/countries.min.json

+1-1
Large diffs are not rendered by default.

dist/data.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ INSERT INTO `countries` (`code`, `name`, `native`, `phone`, `continent`, `capita
278278
('KR', 'South Korea', '대한민국', '82', 'AS', 'Seoul', 'KRW', 'ko'),
279279
('KW', 'Kuwait', 'الكويت', '965', 'AS', 'Kuwait City', 'KWD', 'ar'),
280280
('KY', 'Cayman Islands', 'Cayman Islands', '1345', 'NA', 'George Town', 'KYD', 'en'),
281-
('KZ', 'Kazakhstan', 'Қазақстан', '76,77', 'AS', 'Astana', 'KZT', 'kk,ru'),
281+
('KZ', 'Kazakhstan', 'Қазақстан', '7', 'AS', 'Astana', 'KZT', 'kk,ru'),
282282
('LA', 'Laos', 'ສປປລາວ', '856', 'AS', 'Vientiane', 'LAK', 'lo'),
283283
('LB', 'Lebanon', 'لبنان', '961', 'AS', 'Beirut', 'LBP', 'ar,fr'),
284284
('LC', 'Saint Lucia', 'Saint Lucia', '1758', 'NA', 'Castries', 'XCD', 'en'),

dist/index.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,20 @@ export interface ICountry {
3333
native: string
3434
/**
3535
* Specified in cases when entity is currently a part of another one.
36+
* Example: Åland is an autonomous and demilitarised region of Finland and has own ISO code.
37+
* @see: https://en.wikipedia.org/wiki/Åland
38+
* @todo: Type should be TCountryCode, but need to resolve cyclic referencing on dynamically generated type.
3639
*/
37-
parent?: TCountryCode
40+
partOf?: string
3841
/**
3942
* Calling phone codes.
4043
*/
4144
phone: number[]
45+
/**
46+
* Specified in cases when entity is not a part of the main ISO 3166-1 standart, but a User assigned code.
47+
* @see: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#User-assigned_code_elements
48+
*/
49+
userAssigned?: boolean
4250
}
4351

4452
export interface ILanguage {

dist/index.iife.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/mjs/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)