Skip to content

Commit 1d68a75

Browse files
Merge pull request #125 from exa-labs/websets/fix-missing-alias
websets: fix missing type
2 parents 6548ee3 + 09bc4a1 commit 1d68a75

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

exa_py/websets/types.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,7 +1473,7 @@ class WebsetItemArticleProperties(ExaBaseModel):
14731473
The text content for the article
14741474
"""
14751475
article: WebsetItemArticlePropertiesFields = Field(
1476-
..., title='WebsetItemArticlePropertiesFields'
1476+
..., title='WebsetItemArticlePropertiesFields', alias='article'
14771477
)
14781478
"""
14791479
The article fields
@@ -1506,7 +1506,7 @@ class WebsetItemCompanyProperties(ExaBaseModel):
15061506
The text content of the company website
15071507
"""
15081508
company: WebsetItemCompanyPropertiesFields = Field(
1509-
..., title='WebsetItemCompanyPropertiesFields'
1509+
..., title='WebsetItemCompanyPropertiesFields', alias='company'
15101510
)
15111511
"""
15121512
The company fields
@@ -1569,7 +1569,7 @@ class WebsetItemCustomProperties(ExaBaseModel):
15691569
The text content of the Item
15701570
"""
15711571
custom: WebsetItemCustomPropertiesFields = Field(
1572-
..., title='WebsetItemCustomPropertiesFields'
1572+
..., title='WebsetItemCustomPropertiesFields', alias='custom'
15731573
)
15741574
"""
15751575
The custom fields
@@ -1631,7 +1631,7 @@ class WebsetItemPersonProperties(ExaBaseModel):
16311631
Short description of the relevance of the person
16321632
"""
16331633
person: WebsetItemPersonPropertiesFields = Field(
1634-
..., title='WebsetItemPersonPropertiesFields'
1634+
..., title='WebsetItemPersonPropertiesFields', alias='person'
16351635
)
16361636
"""
16371637
The person fields
@@ -1687,7 +1687,7 @@ class WebsetItemResearchPaperProperties(ExaBaseModel):
16871687
The text content of the research paper
16881688
"""
16891689
research_paper: WebsetItemResearchPaperPropertiesFields = Field(
1690-
..., title='WebsetItemResearchPaperPropertiesFields'
1690+
..., title='WebsetItemResearchPaperPropertiesFields', alias='researchPaper'
16911691
)
16921692
"""
16931693
The research paper fields

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ build-backend = "poetry.core.masonry.api"
2323

2424
[project]
2525
name = "exa-py"
26-
version = "1.15.4"
26+
version = "1.15.5"
2727
description = "Python SDK for Exa API."
2828
readme = "README.md"
2929
requires-python = ">=3.9"

0 commit comments

Comments
 (0)