Skip to content

Commit 5687e46

Browse files
committed
add new fields for autocomplete
1 parent 5d49f34 commit 5687e46

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "peopledatalabs"
3-
version = "6.2.0"
3+
version = "6.3.0"
44
description = "Official Python client for the People Data Labs API"
55
homepage = "https://www.peopledatalabs.com"
66
repository = "https://github.com/peopledatalabs/peopledatalabs-python"

src/peopledatalabs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
from .main import PDLPY
66

77

8-
__version__ = "6.2.0"
8+
__version__ = "6.3.0"
99

1010
__all__ = ["PDLPY"]

src/peopledatalabs/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,13 @@ class FieldEnum(str, Enum):
7474
Valid values for 'field' parameter of autocomplete API.
7575
"""
7676

77+
all_location = "all_location"
7778
class_ = "class"
7879
company = "company"
7980
country = "country"
8081
industry = "industry"
8182
location = "location"
83+
location_name = "location_name"
8284
major = "major"
8385
region = "region"
8486
role = "role"

tests/client/test_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def test_version():
1919
"""
2020
Version check.
2121
"""
22-
assert __version__ == "6.2.0"
22+
assert __version__ == "6.3.0"
2323

2424

2525
@pytest.mark.usefixtures("fake_api_key")

0 commit comments

Comments
 (0)