Skip to content

Commit

Permalink
feat: Add more features to Bullhorn Connector
Browse files Browse the repository at this point in the history
docs: update readme

docs: update docs
  • Loading branch information
Abdellahitech committed Aug 30, 2024
1 parent 8c624dc commit 6c171d8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def make_token_request(data):
f"Token request failed with status code {response.status_code}: {response.text}"
)


def login_to_bullhorn(access_token):
"""
Log in to Bullhorn using the obtained access token.
Expand Down
21 changes: 21 additions & 0 deletions src/hrflow_connectors/connectors/bullhorn/warehouse.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,27 @@ class WriteApplicationsParameters(BaseParameters):
field_type=FieldType.Auth,
)

last_modified_date: str = Field(
...,
description="Last Modified Date",
repr=False,
field_type=FieldType.Auth,
)

fields: str = Field(
...,
description="Fields to be retrieved from Bullhorn",
repr=False,
field_type=FieldType.Auth,
)

query: str = Field(
...,
description="the query parameters",
repr=False,
field_type=FieldType.Auth,
)


class ReadJobsParameters(BaseParameters):
last_modified_date: str = Field(
Expand Down

0 comments on commit 6c171d8

Please sign in to comment.