Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
configured_endpoints: 238
openapi_spec_hash: 244db0c7a39ae8fff699dccda50b79bd
openapi_spec_hash: 19ef63a60d3c7abac26492062c409bc0
config_hash: 2ae0d8aaecf01b38cbf9f9e112822c23
2 changes: 1 addition & 1 deletion scripts/mock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/increase/resources/simulations/programs.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create(
self,
*,
name: str,
bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank", "twin_city_bank"] | Omit = omit,
bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank", "increase_bank"] | Omit = omit,
lending_maximum_extendable_credit: int | Omit = omit,
reserve_account_id: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
Expand All @@ -73,7 +73,7 @@ def create(
- `core_bank` - Core Bank
- `first_internet_bank` - First Internet Bank of Indiana
- `grasshopper_bank` - Grasshopper Bank
- `twin_city_bank` - Twin City Bank
- `increase_bank` - Twin City Bank

lending_maximum_extendable_credit: The maximum extendable credit of the program being added.

Expand Down Expand Up @@ -135,7 +135,7 @@ async def create(
self,
*,
name: str,
bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank", "twin_city_bank"] | Omit = omit,
bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank", "increase_bank"] | Omit = omit,
lending_maximum_extendable_credit: int | Omit = omit,
reserve_account_id: str | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
Expand All @@ -161,7 +161,7 @@ async def create(
- `core_bank` - Core Bank
- `first_internet_bank` - First Internet Bank of Indiana
- `grasshopper_bank` - Grasshopper Bank
- `twin_city_bank` - Twin City Bank
- `increase_bank` - Twin City Bank

lending_maximum_extendable_credit: The maximum extendable credit of the program being added.

Expand Down
4 changes: 2 additions & 2 deletions src/increase/types/simulations/program_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ class ProgramCreateParams(TypedDict, total=False):
name: Required[str]
"""The name of the program being added."""

bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank", "twin_city_bank"]
bank: Literal["core_bank", "first_internet_bank", "grasshopper_bank", "increase_bank"]
"""The bank for the program's accounts, defaults to First Internet Bank.

- `core_bank` - Core Bank
- `first_internet_bank` - First Internet Bank of Indiana
- `grasshopper_bank` - Grasshopper Bank
- `twin_city_bank` - Twin City Bank
- `increase_bank` - Twin City Bank
"""

lending_maximum_extendable_credit: int
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading