New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

peopledatalabs

Package Overview
Dependencies
Maintainers
0
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

peopledatalabs - npm Package Compare versions

Comparing version

to
9.1.0

30

dist/types/api-types.d.ts

@@ -8,11 +8,11 @@ export interface APISettings {

export interface RateLimit {
callCreditsSpent?: number;
callCreditsType?: string;
lifetimeUsed?: number;
rateLimitLimit?: RateLimitLimit;
rateLimitRemaining?: RateLimitRemaining;
rateLimitReset?: string;
totalLimitOveragesRemaining?: number;
totalLimitPurchasedRemaining?: number;
totalLimitRemaining?: number;
callCreditsSpent?: number | null;
callCreditsType?: string | null;
lifetimeUsed?: number | null;
rateLimitLimit?: RateLimitLimit | null;
rateLimitRemaining?: RateLimitRemaining | null;
rateLimitReset?: string | null;
totalLimitOveragesRemaining?: number | null;
totalLimitPurchasedRemaining?: number | null;
totalLimitRemaining?: number | null;
}

@@ -24,11 +24,11 @@ export interface BaseResponse {

export interface RateLimitRemaining {
day?: number;
minute?: number;
month?: number;
day?: number | null;
minute?: number | null;
month?: number | null;
}
export interface RateLimitLimit {
day?: number;
minute?: number;
month?: number;
day?: number | null;
minute?: number | null;
month?: number | null;
}
//# sourceMappingURL=api-types.d.ts.map

@@ -12,20 +12,20 @@ import { BaseResponse } from './api-types.js';

data?: Array<{
count: number;
count: number | null;
meta?: {
alternative_names?: Array<string>;
country?: string;
display_name?: string;
display_name_history?: Array<string>;
id?: string;
industry?: string;
locality?: string;
location_name?: string;
region?: string;
role?: string;
website?: string;
};
name: string;
alternative_names?: Array<string> | null;
country?: string | null;
display_name?: string | null;
display_name_history?: Array<string> | null;
id?: string | null;
industry?: string | null;
locality?: string | null;
location_name?: string | null;
region?: string | null;
role?: string | null;
website?: string | null;
} | null;
name?: string | null;
}>;
fields?: Array<string>;
fields?: Array<string> | null;
}
//# sourceMappingURL=autocomplete-types.d.ts.map

@@ -13,16 +13,16 @@ import { BaseResponse } from './api-types.js';

export interface CompanyCleanerResponse extends BaseResponse {
facebook_url: string;
founded?: number;
fuzzy_match: boolean;
id?: string;
industry?: string;
linkedin_id: string;
linkedin_url: string;
location?: Omit<LocationResponse, 'metro'>;
name?: string;
size?: string;
ticker?: string;
twitter_url: string;
type?: string;
website: string;
facebook_url: string | null;
founded?: number | null;
fuzzy_match: boolean | null;
id?: string | null;
industry?: string | null;
linkedin_id: string | null;
linkedin_url: string | null;
location?: Omit<LocationResponse, 'metro'> | null;
name?: string | null;
size?: string | null;
ticker?: string | null;
twitter_url: string | null;
type?: string | null;
website: string | null;
}

@@ -37,18 +37,18 @@ export type SchoolCleanerParams = RequireAtLeastOne<{

export interface SchoolCleanerResponse extends BaseResponse {
domain?: string;
facebook_url?: null;
id?: string;
linkedin_id?: string;
linkedin_url?: string;
domain?: string | null;
facebook_url?: string | null;
id?: string | null;
linkedin_id?: string | null;
linkedin_url?: string | null;
location: {
continent?: string;
country?: string;
locality?: string;
name?: string;
region?: string;
};
name?: string;
twitter_url?: null;
type?: string;
website?: string;
continent?: string | null;
country?: string | null;
locality?: string | null;
name?: string | null;
region?: string | null;
} | null;
name?: string | null;
twitter_url?: string | null;
type?: string | null;
website?: string | null;
}

@@ -60,11 +60,11 @@ export interface LocationCleanerParams {

export interface LocationCleanerResponse extends BaseResponse {
continent?: string;
country?: string;
geo?: string;
locality?: string;
name?: string;
region?: string;
subregion?: string;
type?: string;
continent?: string | null;
country?: string | null;
geo?: string | null;
locality?: string | null;
name?: string | null;
region?: string | null;
subregion?: string | null;
type?: string | null;
}
//# sourceMappingURL=cleaner-types.d.ts.map
export interface LocationResponse {
address_line_2?: string;
continent?: string;
country?: string;
geo?: string;
locality?: string;
metro?: string;
name?: string;
postal_code?: string;
region?: string;
street_address?: string;
address_line_2?: string | null;
continent?: string | null;
country?: string | null;
geo?: string | null;
locality?: string | null;
metro?: string | null;
name?: string | null;
postal_code?: string | null;
region?: string | null;
street_address?: string | null;
}
export interface PersonEmailResponse {
address?: string;
first_seen?: string;
last_seen?: string;
num_sources?: number;
type?: string;
address?: string | null;
first_seen?: string | null;
last_seen?: string | null;
num_sources?: number | null;
type?: string | null;
}
export interface PersonExperienceResponse {
company?: {
facebook_url?: string;
founded?: number;
fuzzy_match?: boolean;
id?: string;
industry?: string;
linkedin_id?: string;
linkedin_url?: string;
location?: LocationResponse;
name?: string;
raw?: Array<string>;
size?: string;
ticker?: string;
twitter_url?: string;
type?: string;
website?: string;
};
end_date?: string;
first_seen?: string;
is_primary?: boolean;
last_seen?: string;
location_names?: Array<string>;
start_date?: string;
summary?: string;
facebook_url?: string | null;
founded?: number | null;
fuzzy_match?: boolean | null;
id?: string | null;
industry?: string | null;
linkedin_id?: string | null;
linkedin_url?: string | null;
location?: LocationResponse | null;
name?: string | null;
raw?: Array<string> | null;
size?: string | null;
ticker?: string | null;
twitter_url?: string | null;
type?: string | null;
website?: string | null;
} | null;
end_date?: string | null;
first_seen?: string | null;
is_primary?: boolean | null;
last_seen?: string | null;
location_names?: Array<string> | null;
num_sources?: number | null;
start_date?: string | null;
summary?: string | null;
title?: {
levels?: Array<string>;
name?: string;
raw?: Array<string>;
role?: string;
sub_role?: string;
class?: string | null;
levels?: Array<string> | null;
name?: string | null;
raw?: Array<string> | null;
role?: string | null;
sub_role?: string | null;
};
}
export interface PersonEducationResponse {
degrees?: Array<string>;
end_date?: string;
gpa?: string;
majors?: Array<string>;
minors?: Array<string>;
raw?: Array<string>;
degrees?: Array<string> | null;
end_date?: string | null;
gpa?: number | null;
majors?: Array<string> | null;
minors?: Array<string> | null;
raw?: Array<string> | null;
school?: {
domain?: string;
facebook_url?: string;
id?: string;
linkedin_id?: string;
linkedin_url?: string;
location?: LocationResponse;
name?: string;
raw?: Array<string>;
twitter_url?: string;
type?: string;
website?: string;
};
start_date?: string;
summary?: string;
domain?: string | null;
facebook_url?: string | null;
id?: string | null;
linkedin_id?: string | null;
linkedin_url?: string | null;
location?: LocationResponse | null;
name?: string | null;
raw?: Array<string> | null;
twitter_url?: string | null;
type?: string | null;
website?: string | null;
} | null;
start_date?: string | null;
summary?: string | null;
}
export interface PersonProfileResponse {
first_seen?: string;
id?: string;
last_seen?: string;
network?: string;
num_sources?: number;
url?: string;
username?: string;
first_seen?: string | null;
id?: string | null;
last_seen?: string | null;
network?: string | null;
num_sources?: number | null;
url?: string | null;
username?: string | null;
}
export interface PersonPhoneResponse {
first_seen?: string;
last_seen?: string;
num_sources?: number;
number?: string;
first_seen?: string | null;
last_seen?: string | null;
num_sources?: number | null;
number?: string | null;
}
export interface PersonStreetAddressResponse {
address_line_2?: string;
continent?: string;
country?: string;
first_seen?: string;
geo?: string;
last_seen?: string;
locality?: string;
metro?: string;
name?: string;
num_sources?: number;
postal_code?: string;
region?: string;
street_address?: string;
address_line_2?: string | null;
continent?: string | null;
country?: string | null;
first_seen?: string | null;
full_address?: string | null;
geo?: string | null;
last_seen?: string | null;
locality?: string | null;
metro?: string | null;
name?: string | null;
num_sources?: number | null;
postal_code?: string | null;
region?: string | null;
street_address?: string | null;
}
export interface PersonCertificateResponse {
end_date?: string;
name?: string;
organization?: string;
start_date?: string;
end_date?: string | null;
name?: string | null;
organization?: string | null;
start_date?: string | null;
}
export interface PersonBirthdateResponse {
day?: string;
month?: string;
year?: string;
day?: string | null;
month?: string | null;
year?: string | null;
}
export interface PersonLanguageResponse {
name?: string;
proficiency?: number;
name?: string | null;
proficiency?: number | null;
}
export interface PersonJobHistoryResponse {
company_id?: string;
company_name?: string;
first_seen?: string;
last_seen?: string;
num_sources?: number;
title?: string;
company_id?: string | null;
company_name?: string | null;
first_seen?: string | null;
last_seen?: string | null;
num_sources?: number | null;
title?: string | null;
}
export interface VersionStatus {
contains?: Array<string> | null;
current_version?: string | null;
previous_version?: string | null;
status?: string | null;
}
export interface PersonResponse {
birth_date?: string;
birth_year?: string;
certifications?: Array<PersonCertificateResponse>;
countries?: Array<string>;
dataset_version?: string;
education?: Array<PersonEducationResponse>;
emails?: Array<PersonEmailResponse>;
experience?: Array<PersonExperienceResponse>;
facebook_friends?: number;
facebook_id?: string;
facebook_url?: string;
facebook_username?: string;
first_name?: string;
first_seen?: string;
full_name?: string;
github_url?: string;
github_username?: string;
id?: string;
industry?: string;
inferred_salary?: string;
inferred_years_experience?: number;
interests?: Array<string>;
job_company_12mo_employee_growth_rate?: number;
job_company_employee_count?: number;
job_company_facebook_url?: string;
job_company_founded?: number;
job_company_id?: string;
job_company_industry?: string;
job_company_inferred_revenue?: string;
job_company_linkedin_id?: string;
job_company_linkedin_url?: string;
job_company_location_address_line_2?: string;
job_company_location_continent?: string;
job_company_location_country?: string;
job_company_location_geo?: string;
job_company_location_locality?: string;
job_company_location_metro?: string;
job_company_location_name?: string;
job_company_location_postal_code?: string;
job_company_location_region?: string;
job_company_location_street_address?: string;
job_company_name?: string;
job_company_size?: string;
job_company_ticker?: string;
job_company_total_funding_raised?: number;
job_company_twitter_url?: string;
job_company_type?: string;
job_company_website?: string;
job_history?: Array<PersonJobHistoryResponse>;
job_last_changed?: string;
job_last_verified?: string;
job_onet_broad_occupation?: string;
job_onet_code?: string;
job_onet_major_group?: string;
job_onet_minor_group?: string;
job_onet_specific_occupation?: string;
job_onet_specific_occupation_detail?: string;
job_start_date?: string;
job_summary?: string;
job_title?: string;
job_title_levels?: Array<string>;
job_title_role?: string;
job_title_sub_role?: string;
languages?: Array<PersonLanguageResponse>;
last_initial?: string;
last_name?: string;
linkedin_connections?: number;
linkedin_id?: string;
linkedin_url?: string;
linkedin_username?: string;
location_address_line_2?: string;
location_continent?: string;
location_country?: string;
location_geo?: string;
location_last_updated?: string;
location_locality?: string;
location_metro?: string;
location_name?: string;
location_names?: Array<string>;
location_postal_code?: string;
location_region?: string;
location_street_address?: string;
middle_initial?: string;
middle_name?: string;
mobile_phone?: string;
name_aliases?: Array<string>;
num_records?: number;
num_sources?: number;
personal_emails?: Array<string>;
phone_numbers?: Array<string>;
phones?: Array<PersonPhoneResponse>;
possible_birth_dates?: Array<PersonBirthdateResponse>;
possible_emails?: Array<PersonEmailResponse>;
possible_location_names?: Array<string>;
possible_phones?: Array<PersonPhoneResponse>;
possible_profiles?: Array<PersonProfileResponse>;
possible_street_addresses?: Array<PersonStreetAddressResponse>;
profiles?: Array<PersonProfileResponse>;
recommended_personal_email?: string;
regions?: Array<string>;
sex?: string;
skills?: Array<string>;
street_addresses?: Array<PersonStreetAddressResponse>;
summary?: string;
twitter_url?: string;
twitter_username?: string;
work_email?: string;
birth_date?: string | null;
birth_year?: number | null;
certifications?: Array<PersonCertificateResponse> | null;
countries?: Array<string> | null;
dataset_version?: string | null;
education?: Array<PersonEducationResponse> | null;
emails?: Array<PersonEmailResponse> | null;
experience?: Array<PersonExperienceResponse> | null;
facebook_friends?: number | null;
facebook_id?: string | null;
facebook_url?: string | null;
facebook_username?: string | null;
first_name?: string | null;
first_seen?: string | null;
full_name?: string | null;
github_url?: string | null;
github_username?: string | null;
id?: string | null;
industry?: string | null;
inferred_salary?: string | null;
inferred_years_experience?: number | null;
interests?: Array<string> | null;
job_company_12mo_employee_growth_rate?: number | null;
job_company_employee_count?: number | null;
job_company_facebook_url?: string | null;
job_company_founded?: number | null;
job_company_id?: string | null;
job_company_industry?: string | null;
job_company_inferred_revenue?: string | null;
job_company_linkedin_id?: string | null;
job_company_linkedin_url?: string | null;
job_company_location_address_line_2?: string | null;
job_company_location_continent?: string | null;
job_company_location_country?: string | null;
job_company_location_geo?: string | null;
job_company_location_locality?: string | null;
job_company_location_metro?: string | null;
job_company_location_name?: string | null;
job_company_location_postal_code?: string | null;
job_company_location_region?: string | null;
job_company_location_street_address?: string | null;
job_company_name?: string | null;
job_company_size?: string | null;
job_company_ticker?: string | null;
job_company_total_funding_raised?: number | null;
job_company_twitter_url?: string | null;
job_company_type?: string | null;
job_company_website?: string | null;
job_history?: Array<PersonJobHistoryResponse> | null;
job_last_changed?: string | null;
job_last_verified?: string | null;
job_onet_broad_occupation?: string | null;
job_onet_code?: string | null;
job_onet_major_group?: string | null;
job_onet_minor_group?: string | null;
job_onet_specific_occupation?: string | null;
job_onet_specific_occupation_detail?: string | null;
job_start_date?: string | null;
job_summary?: string | null;
job_title?: string | null;
job_title_class?: string | null;
job_title_levels?: Array<string> | null;
job_title_role?: string | null;
job_title_sub_role?: string | null;
languages?: Array<PersonLanguageResponse> | null;
last_initial?: string | null;
last_name?: string | null;
linkedin_connections?: number | null;
linkedin_id?: string | null;
linkedin_url?: string | null;
linkedin_username?: string | null;
location_address_line_2?: string | null;
location_continent?: string | null;
location_country?: string | null;
location_geo?: string | null;
location_last_updated?: string | null;
location_locality?: string | null;
location_metro?: string | null;
location_name?: string | null;
location_names?: Array<string> | null;
location_postal_code?: string | null;
location_region?: string | null;
location_street_address?: string | null;
middle_initial?: string | null;
middle_name?: string | null;
mobile_phone?: string | null;
name_aliases?: Array<string> | null;
num_records?: number | null;
num_sources?: number | null;
personal_emails?: Array<string> | null;
phone_numbers?: Array<string> | null;
phones?: Array<PersonPhoneResponse> | null;
possible_birth_dates?: Array<string> | null;
possible_emails?: Array<PersonEmailResponse> | null;
possible_location_names?: Array<string> | null;
possible_phones?: Array<PersonPhoneResponse> | null;
possible_profiles?: Array<PersonProfileResponse> | null;
possible_street_addresses?: Array<PersonStreetAddressResponse> | null;
profiles?: Array<PersonProfileResponse> | null;
recommended_personal_email?: string | null;
regions?: Array<string> | null;
sex?: string | null;
skills?: Array<string> | null;
street_addresses?: Array<PersonStreetAddressResponse> | null;
summary?: string | null;
twitter_url?: string | null;
twitter_username?: string | null;
version_status?: VersionStatus | null;
work_email?: string | null;
}
interface NaicsResponse {
industry_group?: string;
naics_code?: string;
naics_industry?: string;
national_industry?: string;
sector?: string;
sub_sector?: string;
industry_group?: string | null;
naics_code?: string | null;
naics_industry?: string | null;
national_industry?: string | null;
sector?: string | null;
sub_sector?: string | null;
}
export interface SicResponse {
industry_group?: string;
industry_sector?: string;
major_group?: string;
sic_code?: string;
industry_group?: string | null;
industry_sector?: string | null;
major_group?: string | null;
sic_code?: string | null;
}
export interface CompanyResponse {
affiliated_profiles?: Array<string>;
all_subsidiaries?: Array<string>;
alternative_domains?: Array<string>;
alternative_names?: Array<string>;
average_employee_tenure?: number;
affiliated_profiles?: Array<string> | null;
all_subsidiaries?: Array<string> | null;
alternative_domains?: Array<string> | null;
alternative_names?: Array<string> | null;
average_employee_tenure?: number | null;
average_tenure_by_level?: {
cxo?: number;
director?: number;
entry?: number;
manager?: number;
owner?: number;
partner?: number;
senior?: number;
training?: number;
unpaid?: number;
vp?: number;
};
cxo?: number | null;
director?: number | null;
entry?: number | null;
manager?: number | null;
owner?: number | null;
partner?: number | null;
senior?: number | null;
training?: number | null;
unpaid?: number | null;
vp?: number | null;
} | null;
average_tenure_by_role?: {
customer_service?: number;
design?: number;
education?: number;
engineering?: number;
finance?: number;
health?: number;
human_resources?: number;
legal?: number;
marketing?: number;
media?: number;
operations?: number;
public_relations?: number;
real_estate?: number;
sales?: number;
trades?: number;
};
dataset_version?: string;
direct_subsidiaries?: Array<string>;
display_name?: string;
customer_service?: number | null;
design?: number | null;
education?: number | null;
engineering?: number | null;
finance?: number | null;
health?: number | null;
human_resources?: number | null;
legal?: number | null;
marketing?: number | null;
media?: number | null;
operations?: number | null;
public_relations?: number | null;
real_estate?: number | null;
sales?: number | null;
trades?: number | null;
} | null;
dataset_version?: string | null;
direct_subsidiaries?: Array<string> | null;
display_name?: string | null;
employee_churn_rate: {
'3_month'?: number;
'6_month'?: number;
'12_month'?: number;
'24_month'?: number;
};
employee_count?: number;
employee_count_by_country?: object;
employee_count_by_month?: object;
employee_count_by_month_by_level?: object;
employee_count_by_month_by_role?: object;
'3_month'?: number | null;
'6_month'?: number | null;
'12_month'?: number | null;
'24_month'?: number | null;
} | null;
employee_count?: number | null;
employee_count_by_country?: object | null;
employee_count_by_month?: object | null;
employee_count_by_month_by_level?: object | null;
employee_count_by_month_by_role?: object | null;
employee_count_by_role?: {
'customer_service'?: number;
'design'?: number;
'education'?: number;
'engineering'?: number;
'finance'?: number;
'health'?: number;
'human_resources'?: number;
'legal'?: number;
'marketing'?: number;
'media'?: number;
'operations'?: number;
'other_uncategorized'?: number;
'public_relations'?: number;
'real_estate'?: number;
'sales'?: number;
'trades'?: number;
};
'customer_service'?: number | null;
'design'?: number | null;
'education'?: number | null;
'engineering'?: number | null;
'finance'?: number | null;
'health'?: number | null;
'human_resources'?: number | null;
'legal'?: number | null;
'marketing'?: number | null;
'media'?: number | null;
'operations'?: number | null;
'other_uncategorized'?: number | null;
'public_relations'?: number | null;
'real_estate'?: number | null;
'sales'?: number | null;
'trades'?: number | null;
} | null;
employee_growth_rate?: {
'3_month'?: number;
'6_month'?: number;
'12_month'?: number;
'24_month'?: number;
};
'3_month'?: number | null;
'6_month'?: number | null;
'12_month'?: number | null;
'24_month'?: number | null;
} | null;
employee_growth_rate_12_month_by_role?: {
'customer_service'?: number;
'design'?: number;
'education'?: number;
'engineering'?: number;
'finance'?: number;
'health'?: number;
'human_resources'?: number;
'legal'?: number;
'marketing'?: number;
'media'?: number;
'operations'?: number;
'other_uncategorized'?: number;
'public_relations'?: number;
'real_estate'?: number;
'sales'?: number;
'trades'?: number;
};
facebook_url?: string;
founded?: number;
'customer_service'?: number | null;
'design'?: number | null;
'education'?: number | null;
'engineering'?: number | null;
'finance'?: number | null;
'health'?: number | null;
'human_resources'?: number | null;
'legal'?: number | null;
'marketing'?: number | null;
'media'?: number | null;
'operations'?: number | null;
'other_uncategorized'?: number | null;
'public_relations'?: number | null;
'real_estate'?: number | null;
'sales'?: number | null;
'trades'?: number | null;
} | null;
facebook_url?: string | null;
founded?: number | null;
funding_details?: Array<{
funding_currency?: string;
funding_raised?: number;
funding_round_date?: string;
funding_type?: string;
investing_companies?: Array<string>;
investing_individuals?: Array<string>;
}>;
funding_stages?: Array<string>;
gics_sector?: string;
gross_additions_by_month?: object;
gross_departures_by_month?: object;
headline?: null;
id?: string;
immediate_parent?: string;
industry?: string;
inferred_revenue?: string;
last_funding_date?: string;
latest_funding_stage?: string;
likelihood?: number;
linkedin_employee_count?: number;
linkedin_follower_count?: number;
linkedin_id?: string;
linkedin_slug?: string;
linkedin_url?: string;
location?: LocationResponse;
matched?: Array<string>;
mic_exchange?: string;
naics?: Array<NaicsResponse>;
name?: string;
number_funding_rounds?: number;
profiles?: Array<string>;
funding_currency?: string | null;
funding_raised?: number | null;
funding_round_date?: string | null;
funding_type?: string | null;
investing_companies?: Array<string> | null;
investing_individuals?: Array<string> | null;
}> | null;
funding_stages?: Array<string> | null;
gics_sector?: string | null;
gross_additions_by_month?: object | null;
gross_departures_by_month?: object | null;
headline?: string | null;
id?: string | null;
immediate_parent?: string | null;
industry?: string | null;
inferred_revenue?: string | null;
last_funding_date?: string | null;
latest_funding_stage?: string | null;
likelihood?: number | null;
linkedin_employee_count?: number | null;
linkedin_follower_count?: number | null;
linkedin_id?: string | null;
linkedin_slug?: string | null;
linkedin_url?: string | null;
location?: LocationResponse | null;
matched?: Array<string> | null;
mic_exchange?: string | null;
naics?: Array<NaicsResponse> | null;
name?: string | null;
number_funding_rounds?: number | null;
profiles?: Array<string> | null;
recent_exec_departures?: Array<{
departed_date?: string;
job_title?: string;
job_title_levels?: Array<string>;
job_title_role?: string;
job_title_sub_role?: string;
new_company_id?: string;
new_company_job_title?: string;
new_company_job_title_levels?: Array<string>;
new_company_job_title_role?: string;
new_company_job_title_sub_role?: string;
pdl_id?: string;
}>;
departed_date?: string | null;
job_title?: string | null;
job_title_class?: string | null;
job_title_levels?: Array<string> | null;
job_title_role?: string | null;
job_title_sub_role?: string | null;
new_company_id?: string | null;
new_company_job_title?: string | null;
new_company_job_title_class?: string | null;
new_company_job_title_levels?: Array<string> | null;
new_company_job_title_role?: string | null;
new_company_job_title_sub_role?: string | null;
pdl_id?: string | null;
}> | null;
recent_exec_hires?: Array<{
job_title?: string;
job_title_levels?: Array<string>;
job_title_role?: string;
job_title_sub_role?: string;
joined_date?: string;
pdl_id?: string;
previous_company_id?: string;
previous_company_job_title?: string;
previous_company_job_title_levels?: Array<string>;
previous_company_job_title_role?: string;
previous_company_job_title_sub_role?: string;
}>;
sic?: Array<SicResponse>;
size?: string;
summary?: string;
tags?: Array<string>;
ticker?: string;
job_title?: string | null;
job_title_class?: string | null;
job_title_levels?: Array<string> | null;
job_title_role?: string | null;
job_title_sub_role?: string | null;
joined_date?: string | null;
pdl_id?: string | null;
previous_company_id?: string | null;
previous_company_job_title?: string | null;
previous_company_job_title_class?: string | null;
previous_company_job_title_levels?: Array<string> | null;
previous_company_job_title_role?: string | null;
previous_company_job_title_sub_role?: string | null;
}> | null;
sic?: Array<SicResponse> | null;
size?: string | null;
summary?: string | null;
tags?: Array<string> | null;
ticker?: string | null;
top_next_employers_by_role?: {
all?: object;
customer_service?: object;
design?: object;
education?: object;
engineering?: object;
finance?: object;
health?: object;
human_resources?: object;
legal?: object;
marketing?: object;
media?: object;
operations?: object;
public_relations?: object;
real_estate?: object;
sales?: object;
trades?: object;
};
all?: object | null;
customer_service?: object | null;
design?: object | null;
education?: object | null;
engineering?: object | null;
finance?: object | null;
health?: object | null;
human_resources?: object | null;
legal?: object | null;
marketing?: object | null;
media?: object | null;
operations?: object | null;
public_relations?: object | null;
real_estate?: object | null;
sales?: object | null;
trades?: object | null;
} | null;
top_previous_employers_by_role?: {
all?: object;
customer_service?: object;
design?: object;
education?: object;
engineering?: object;
finance?: object;
health?: object;
human_resources?: object;
legal?: object;
marketing?: object;
media?: object;
operations?: object;
public_relations?: object;
real_estate?: object;
sales?: object;
trades?: object;
};
top_us_employee_metros: object;
total_funding_raised?: number;
twitter_url?: string;
type?: string;
ultimate_parent?: string;
website?: string;
all?: object | null;
customer_service?: object | null;
design?: object | null;
education?: object | null;
engineering?: object | null;
finance?: object | null;
health?: object | null;
human_resources?: object | null;
legal?: object | null;
marketing?: object | null;
media?: object | null;
operations?: object | null;
public_relations?: object | null;
real_estate?: object | null;
sales?: object | null;
trades?: object | null;
} | null;
top_us_employee_metros: object | null;
total_funding_raised?: number | null;
twitter_url?: string | null;
type?: string | null;
ultimate_parent?: string | null;
website?: string | null;
}
export interface ErrorResponse {
message: string;
status?: number;
message: string | null;
status?: number | null;
}
export {};
//# sourceMappingURL=common-types.d.ts.map

@@ -42,3 +42,3 @@ import { BaseResponse } from './api-types.js';

export type PersonEnrichmentPreviewParams = PersonEnrichmentParams;
type PersonPreviewResponseVisibleKeys = 'id' | 'full_name' | 'sex' | 'linkedin_url' | 'industry' | 'job_title' | 'job_title_role' | 'job_title_sub_role' | 'job_title_levels' | 'job_company_name' | 'job_company_website' | 'location_name';
type PersonPreviewResponseVisibleKeys = 'id' | 'full_name' | 'sex' | 'linkedin_url' | 'industry' | 'job_title' | 'job_title_class' | 'job_title_role' | 'job_title_sub_role' | 'job_title_levels' | 'job_company_name' | 'job_company_website' | 'location_name';
type PersonPreviewResponseType = {

@@ -45,0 +45,0 @@ [K in keyof PersonResponse]: K extends PersonPreviewResponseVisibleKeys ? PersonResponse[K] : boolean;

@@ -15,58 +15,59 @@ import { BaseResponse } from './api-types.js';

confidence?: 'very high' | 'high' | 'moderate' | 'low' | 'very low';
display_name?: string;
employee_count?: number;
id?: string;
industry?: string;
inferred_revenue?: string;
display_name?: string | null;
employee_count?: number | null;
id?: string | null;
industry?: string | null;
inferred_revenue?: string | null;
location?: {
address_line_2?: string;
continent?: string;
country?: string;
geo?: string;
locality?: string;
metro?: string;
name?: string;
postal_code?: string;
region?: string;
address_line_2?: string | null;
continent?: string | null;
country?: string | null;
geo?: string | null;
locality?: string | null;
metro?: string | null;
name?: string | null;
postal_code?: string | null;
region?: string | null;
street_address?: string;
};
name?: string;
size?: string;
tags?: Array<string>;
website?: string;
};
dataset_version?: string;
} | null;
name?: string | null;
size?: string | null;
tags?: Array<string> | null;
website?: string | null;
} | null;
dataset_version?: string | null;
ip?: {
address?: string;
address?: string | null;
location?: {
continent?: string;
country?: string;
geo?: string;
locality?: string;
metro?: string;
name?: string;
postal_code?: string;
region?: string;
timezone?: string;
};
continent?: string | null;
country?: string | null;
geo?: string | null;
locality?: string | null;
metro?: string | null;
name?: string | null;
postal_code?: string | null;
region?: string | null;
timezone?: string | null;
} | null;
metadata?: {
asn_domain?: string;
hosting?: boolean;
mobile?: boolean;
proxy?: boolean;
relay?: boolean;
service?: string;
tor?: boolean;
version?: 4 | 6;
vpn?: boolean;
asn_domain?: string | null;
hosting?: boolean | null;
mobile?: boolean | null;
proxy?: boolean | null;
relay?: boolean | null;
service?: string | null;
tor?: boolean | null;
version?: 4 | 6 | null;
vpn?: boolean | null;
};
};
} | null;
person?: {
confidence?: 'very high' | 'high' | 'moderate' | 'low' | 'very low';
job_title_levels?: Array<string>;
job_title_role?: string;
job_title_sub_role?: string;
};
};
job_title_class?: string | null;
job_title_levels?: Array<string> | null;
job_title_role?: string | null;
job_title_sub_role?: string | null;
} | null;
} | null;
}
//# sourceMappingURL=ip-types.d.ts.map

@@ -9,7 +9,7 @@ import { BaseResponse } from './api-types.js';

data?: {
cleaned_job_title: string;
relevant_skills: Array<string>;
similar_job_titles: Array<string>;
cleaned_job_title?: string | null;
relevant_skills?: Array<string> | null;
similar_job_titles?: Array<string> | null;
};
}
//# sourceMappingURL=jobTitle-types.d.ts.map

@@ -9,7 +9,7 @@ import { BaseResponse } from './api-types.js';

data?: {
cleaned_skill: string;
relevant_job_titles: Array<string>;
similar_skills: Array<string>;
cleaned_skill?: string | null;
relevant_job_titles?: Array<string> | null;
similar_skills?: Array<string> | null;
};
}
//# sourceMappingURL=skill-types.d.ts.map
{
"name": "peopledatalabs",
"version": "9.0.2",
"version": "9.1.0",
"description": "JavaScript client with TypeScript support for the People Data Labs API",

@@ -5,0 +5,0 @@ "type": "module",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet