Skip to content

Commit e69c9ee

Browse files
author
Dmitry Shirokov
authored
Merge pull request #9 from horgh/horgh/mcc-mnc
feat: Add MCC/MNC outputs
2 parents 71ed90f + c2c3962 commit e69c9ee

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/reader/response.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ interface TraitsRecord {
7373
readonly is_satellite_provider?: boolean;
7474
readonly is_tor_exit_node?: boolean;
7575
readonly isp?: string;
76+
readonly mobile_country_code?: string;
77+
readonly mobile_network_code?: string;
7678
readonly organization?: string;
7779
readonly user_type?:
7880
| 'business'
@@ -136,6 +138,8 @@ export interface DomainResponse {
136138

137139
export interface IspResponse extends AsnResponse {
138140
readonly isp: string;
141+
readonly mobile_country_code?: string;
142+
readonly mobile_network_code?: string;
139143
readonly organization: string;
140144
}
141145

0 commit comments

Comments
 (0)