-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64cd248
commit 4cb4f7b
Showing
43 changed files
with
3,245 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from .resources import ( | ||
CreateOrUpdateCandidateRequest, | ||
CreateOrUpdateCandidateResponse, | ||
CreateOrUpdateDepartmentRequest, | ||
CreateOrUpdateDepartmentResponse, | ||
CreateOrUpdateJobRequest, | ||
CreateOrUpdateJobResponse, | ||
CreateOrUpdateOfferRequest, | ||
CreateOrUpdateOfferResponse, | ||
DeleteCandidateResponse, | ||
DeleteDepartmentResponse, | ||
DeleteJobResponse, | ||
DeleteOfferResponse, | ||
GetCandidateResponse, | ||
GetCandidatesResponse, | ||
GetDepartmentResponse, | ||
GetDepartmentsResponse, | ||
GetJobResponse, | ||
GetJobsResponse, | ||
GetOfferResponse, | ||
GetOffersResponse, | ||
PostProxyRequestBody, | ||
ProxyResponse, | ||
candidate, | ||
department, | ||
job, | ||
offer, | ||
proxy, | ||
) | ||
|
||
__all__ = [ | ||
"CreateOrUpdateCandidateRequest", | ||
"CreateOrUpdateCandidateResponse", | ||
"CreateOrUpdateDepartmentRequest", | ||
"CreateOrUpdateDepartmentResponse", | ||
"CreateOrUpdateJobRequest", | ||
"CreateOrUpdateJobResponse", | ||
"CreateOrUpdateOfferRequest", | ||
"CreateOrUpdateOfferResponse", | ||
"DeleteCandidateResponse", | ||
"DeleteDepartmentResponse", | ||
"DeleteJobResponse", | ||
"DeleteOfferResponse", | ||
"GetCandidateResponse", | ||
"GetCandidatesResponse", | ||
"GetDepartmentResponse", | ||
"GetDepartmentsResponse", | ||
"GetJobResponse", | ||
"GetJobsResponse", | ||
"GetOfferResponse", | ||
"GetOffersResponse", | ||
"PostProxyRequestBody", | ||
"ProxyResponse", | ||
"candidate", | ||
"department", | ||
"job", | ||
"offer", | ||
"proxy", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from ...core.client_wrapper import AsyncClientWrapper, SyncClientWrapper | ||
from .resources.candidate.client import AsyncCandidateClient, CandidateClient | ||
from .resources.department.client import AsyncDepartmentClient, DepartmentClient | ||
from .resources.job.client import AsyncJobClient, JobClient | ||
from .resources.offer.client import AsyncOfferClient, OfferClient | ||
from .resources.proxy.client import AsyncProxyClient, ProxyClient | ||
|
||
|
||
class AtsClient: | ||
def __init__(self, *, client_wrapper: SyncClientWrapper): | ||
self._client_wrapper = client_wrapper | ||
self.candidate = CandidateClient(client_wrapper=self._client_wrapper) | ||
self.department = DepartmentClient(client_wrapper=self._client_wrapper) | ||
self.job = JobClient(client_wrapper=self._client_wrapper) | ||
self.offer = OfferClient(client_wrapper=self._client_wrapper) | ||
self.proxy = ProxyClient(client_wrapper=self._client_wrapper) | ||
|
||
|
||
class AsyncAtsClient: | ||
def __init__(self, *, client_wrapper: AsyncClientWrapper): | ||
self._client_wrapper = client_wrapper | ||
self.candidate = AsyncCandidateClient(client_wrapper=self._client_wrapper) | ||
self.department = AsyncDepartmentClient(client_wrapper=self._client_wrapper) | ||
self.job = AsyncJobClient(client_wrapper=self._client_wrapper) | ||
self.offer = AsyncOfferClient(client_wrapper=self._client_wrapper) | ||
self.proxy = AsyncProxyClient(client_wrapper=self._client_wrapper) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from . import candidate, department, job, offer, proxy | ||
from .candidate import ( | ||
CreateOrUpdateCandidateRequest, | ||
CreateOrUpdateCandidateResponse, | ||
DeleteCandidateResponse, | ||
GetCandidateResponse, | ||
GetCandidatesResponse, | ||
) | ||
from .department import ( | ||
CreateOrUpdateDepartmentRequest, | ||
CreateOrUpdateDepartmentResponse, | ||
DeleteDepartmentResponse, | ||
GetDepartmentResponse, | ||
GetDepartmentsResponse, | ||
) | ||
from .job import CreateOrUpdateJobRequest, CreateOrUpdateJobResponse, DeleteJobResponse, GetJobResponse, GetJobsResponse | ||
from .offer import ( | ||
CreateOrUpdateOfferRequest, | ||
CreateOrUpdateOfferResponse, | ||
DeleteOfferResponse, | ||
GetOfferResponse, | ||
GetOffersResponse, | ||
) | ||
from .proxy import PostProxyRequestBody, ProxyResponse | ||
|
||
__all__ = [ | ||
"CreateOrUpdateCandidateRequest", | ||
"CreateOrUpdateCandidateResponse", | ||
"CreateOrUpdateDepartmentRequest", | ||
"CreateOrUpdateDepartmentResponse", | ||
"CreateOrUpdateJobRequest", | ||
"CreateOrUpdateJobResponse", | ||
"CreateOrUpdateOfferRequest", | ||
"CreateOrUpdateOfferResponse", | ||
"DeleteCandidateResponse", | ||
"DeleteDepartmentResponse", | ||
"DeleteJobResponse", | ||
"DeleteOfferResponse", | ||
"GetCandidateResponse", | ||
"GetCandidatesResponse", | ||
"GetDepartmentResponse", | ||
"GetDepartmentsResponse", | ||
"GetJobResponse", | ||
"GetJobsResponse", | ||
"GetOfferResponse", | ||
"GetOffersResponse", | ||
"PostProxyRequestBody", | ||
"ProxyResponse", | ||
"candidate", | ||
"department", | ||
"job", | ||
"offer", | ||
"proxy", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This file was auto-generated by Fern from our API Definition. | ||
|
||
from .types import ( | ||
CreateOrUpdateCandidateRequest, | ||
CreateOrUpdateCandidateResponse, | ||
DeleteCandidateResponse, | ||
GetCandidateResponse, | ||
GetCandidatesResponse, | ||
) | ||
|
||
__all__ = [ | ||
"CreateOrUpdateCandidateRequest", | ||
"CreateOrUpdateCandidateResponse", | ||
"DeleteCandidateResponse", | ||
"GetCandidateResponse", | ||
"GetCandidatesResponse", | ||
] |
Oops, something went wrong.