Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .mock/definition/hris/dependents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ service:
cursor:
type: optional<string>
docs: The pagination cursor value.
employee_id:
type: optional<string>
docs: If provided, will only return dependents for this employee.
include_deleted_data:
type: optional<boolean>
docs: >-
Expand Down
3 changes: 3 additions & 0 deletions .mock/definition/hris/employees.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1183,6 +1183,9 @@ service:
display_full_name:
type: optional<string>
docs: If provided, will only return employees with this display name.
employee_number:
type: optional<string>
docs: If provided, will only return employees with this employee number.
employment_status:
type: optional<EmployeesListRequestEmploymentStatus>
docs: >-
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ from merge import Merge
client = Merge(
...,
httpx_client=httpx.Client(
proxies="http://my.test.proxy.example.com",
proxy="http://my.test.proxy.example.com",
transport=httpx.HTTPTransport(local_address="0.0.0.0"),
),
)
Expand Down Expand Up @@ -233,3 +233,4 @@ while response.next is not None:




Loading