Skip to content

Commit 1c12761

Browse files
committed
Use XKX code for Kosovo
1 parent 272a229 commit 1c12761

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

dist/openapi.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3878,7 +3878,6 @@
38783878
"HUN",
38793879
"KAZ",
38803880
"KGZ",
3881-
"KOS",
38823881
"LTU",
38833882
"LVA",
38843883
"MDA",
@@ -3893,6 +3892,7 @@
38933892
"TUR",
38943893
"UKR",
38953894
"UZB",
3895+
"XKX",
38963896
"HKG",
38973897
"BGD",
38983898
"IND",
@@ -4926,6 +4926,7 @@
49264926
},
49274927
"post_county_id": {
49284928
"type": "string",
4929+
"nullable": true,
49294930
"description": "Post County ID",
49304931
"example": "10098783",
49314932
"maxLength": 10,

dist/openapi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3237,7 +3237,6 @@ components:
32373237
- HUN
32383238
- KAZ
32393239
- KGZ
3240-
- KOS
32413240
- LTU
32423241
- LVA
32433242
- MDA
@@ -3252,6 +3251,7 @@ components:
32523251
- TUR
32533252
- UKR
32543253
- UZB
3254+
- XKX
32553255
- HKG
32563256
- BGD
32573257
- IND
@@ -4269,6 +4269,7 @@ components:
42694269
minLength: 1
42704270
post_county_id:
42714271
type: string
4272+
nullable: true
42724273
description: Post County ID
42734274
example: '10098783'
42744275
maxLength: 10

openapi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,7 +1234,6 @@ export interface components {
12341234
| "HUN"
12351235
| "KAZ"
12361236
| "KGZ"
1237-
| "KOS"
12381237
| "LTU"
12391238
| "LVA"
12401239
| "MDA"
@@ -1249,6 +1248,7 @@ export interface components {
12491248
| "TUR"
12501249
| "UKR"
12511250
| "UZB"
1251+
| "XKX"
12521252
| "HKG"
12531253
| "BGD"
12541254
| "IND"
@@ -2141,7 +2141,7 @@ export interface components {
21412141
* @description Post County ID
21422142
* @example 10098783
21432143
*/
2144-
post_county_id?: string;
2144+
post_county_id?: string | null;
21452145
/**
21462146
* @description NUA means "non-unique address".
21472147
*

0 commit comments

Comments
 (0)