Skip to content
Merged
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
6 changes: 4 additions & 2 deletions src/finch/resources/sandbox/connections/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ def create(

Args:
employee_size: Optional: the size of the employer to be created with this connection. Defaults
to 20
to 20. Note that if this is higher than 100, historical payroll data will not be
generated, and instead only one pay period will be created.

extra_headers: Send extra headers

Expand Down Expand Up @@ -125,7 +126,8 @@ async def create(

Args:
employee_size: Optional: the size of the employer to be created with this connection. Defaults
to 20
to 20. Note that if this is higher than 100, historical payroll data will not be
generated, and instead only one pay period will be created.

extra_headers: Send extra headers

Expand Down
3 changes: 2 additions & 1 deletion src/finch/types/sandbox/connection_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ class ConnectionCreateParams(TypedDict, total=False):
employee_size: int
"""Optional: the size of the employer to be created with this connection.

Defaults to 20
Defaults to 20. Note that if this is higher than 100, historical payroll data
will not be generated, and instead only one pay period will be created.
"""

products: List[str]