File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
5354class 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
Original file line number Diff line number Diff 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
3233class 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " linkedapi"
7- version = " 1.3.0 "
7+ version = " 1.3.1 "
88description = " Official synchronous Python SDK for Linked API."
99readme = " README.md"
1010requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments