Skip to content

Commit 8f34baa

Browse files
Add avatar & logo url
1 parent 80fb90e commit 8f34baa

5 files changed

Lines changed: 8 additions & 1 deletion

File tree

linkedapi/types/company.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class Company(LinkedApiModel):
3838
year_founded: int | None = None
3939
venture_financing: bool | None = None
4040
jobs_count: int | None = None
41+
logo_url: str | None = None
4142
employees: list[StCompanyEmployee] | None = None
4243
dms: list[StCompanyDm] | None = None
4344
posts: list[Post] | None = None
@@ -103,6 +104,7 @@ class NvCompany(LinkedApiModel):
103104
website: str | None = None
104105
employees_count: int | None = None
105106
year_founded: int | None = None
107+
logo_url: str | None = None
106108
employees: list[NvCompanyEmployee] | None = None
107109
dms: list[NvCompanyDm] | None = None
108110

linkedapi/types/person.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ class Person(BaseActionParams):
9393
company_hashed_url: str | None = None
9494
followers_count: int | None = None
9595
about: str | None = None
96+
avatar_url: str | None = None
9697
experiences: list[PersonExperience] | None = None
9798
education: list[PersonEducation] | None = None
9899
skills: list[PersonSkill] | None = None

linkedapi/types/search_companies.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ class SearchCompanyResult(LinkedApiModel):
4848
public_url: str | None = None
4949
industry: str | None = None
5050
location: str | None = None
51+
logo_url: str | None = None
5152

5253

5354
class AnnualRevenueFilter(LinkedApiModel):
@@ -70,3 +71,4 @@ class NvSearchCompanyResult(LinkedApiModel):
7071
hashed_url: str | None = None
7172
industry: str | None = None
7273
employees_count: int | None = None
74+
logo_url: str | None = None

linkedapi/types/search_people.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class SearchPeopleResult(LinkedApiModel):
2727
public_url: str | None = None
2828
headline: str | None = None
2929
location: str | None = None
30+
avatar_url: str | None = None
3031

3132

3233
class NvSearchPeopleFilter(SearchPeopleFilter):
@@ -44,3 +45,4 @@ class NvSearchPeopleResult(LinkedApiModel):
4445
hashed_url: str | None = None
4546
position: str | None = None
4647
location: str | None = None
48+
avatar_url: str | None = None

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "linkedapi"
7-
version = "1.3.0"
7+
version = "1.3.1"
88
description = "Official synchronous Python SDK for Linked API."
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)