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
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
configured_endpoints: 139
configured_endpoints: 142
22 changes: 15 additions & 7 deletions api.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# Shared Types

```python
from increase.types import PointOfServiceEntryMode
```

# Accounts

Types:
Expand Down Expand Up @@ -405,7 +399,8 @@ Methods:

Methods:

- <code title="post /entities/{entity_id}/beneficial_owners">client.entities.beneficial_owners.<a href="./src/increase/resources/entities/beneficial_owners.py">create</a>(entity_id, \*\*<a href="src/increase/types/entities/beneficial_owner_create_params.py">params</a>) -> <a href="./src/increase/types/entity.py">Entity</a></code>
- <code title="post /entity_beneficial_owners">client.entities.beneficial_owners.<a href="./src/increase/resources/entities/beneficial_owners.py">create</a>(\*\*<a href="src/increase/types/entities/beneficial_owner_create_params.py">params</a>) -> <a href="./src/increase/types/entity.py">Entity</a></code>
- <code title="post /entity_beneficial_owners/archive">client.entities.beneficial_owners.<a href="./src/increase/resources/entities/beneficial_owners.py">archive</a>(\*\*<a href="src/increase/types/entities/beneficial_owner_archive_params.py">params</a>) -> <a href="./src/increase/types/entity.py">Entity</a></code>

## SupplementalDocuments

Expand All @@ -420,6 +415,19 @@ Methods:
- <code title="post /entities/{entity_id}/supplemental_documents">client.entities.supplemental_documents.<a href="./src/increase/resources/entities/supplemental_documents.py">create</a>(entity_id, \*\*<a href="src/increase/types/entities/supplemental_document_create_params.py">params</a>) -> <a href="./src/increase/types/entity.py">Entity</a></code>
- <code title="get /entity_supplemental_documents">client.entities.supplemental_documents.<a href="./src/increase/resources/entities/supplemental_documents.py">list</a>(\*\*<a href="src/increase/types/entities/supplemental_document_list_params.py">params</a>) -> <a href="./src/increase/types/entities/supplemental_document.py">SyncPage[SupplementalDocument]</a></code>

# InboundACHTransfers

Types:

```python
from increase.types import InboundACHTransfer
```

Methods:

- <code title="get /inbound_ach_transfers/{inbound_ach_transfer_id}">client.inbound_ach_transfers.<a href="./src/increase/resources/inbound_ach_transfers.py">retrieve</a>(inbound_ach_transfer_id) -> <a href="./src/increase/types/inbound_ach_transfer.py">InboundACHTransfer</a></code>
- <code title="get /inbound_ach_transfers">client.inbound_ach_transfers.<a href="./src/increase/resources/inbound_ach_transfers.py">list</a>(\*\*<a href="src/increase/types/inbound_ach_transfer_list_params.py">params</a>) -> <a href="./src/increase/types/inbound_ach_transfer.py">SyncPage[InboundACHTransfer]</a></code>

# InboundWireDrawdownRequests

Types:
Expand Down
4 changes: 4 additions & 0 deletions src/increase/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ class Increase(SyncAPIClient):
wire_transfers: resources.WireTransfers
check_transfers: resources.CheckTransfers
entities: resources.Entities
inbound_ach_transfers: resources.InboundACHTransfers
inbound_wire_drawdown_requests: resources.InboundWireDrawdownRequests
wire_drawdown_requests: resources.WireDrawdownRequests
events: resources.Events
Expand Down Expand Up @@ -185,6 +186,7 @@ def __init__(
self.wire_transfers = resources.WireTransfers(self)
self.check_transfers = resources.CheckTransfers(self)
self.entities = resources.Entities(self)
self.inbound_ach_transfers = resources.InboundACHTransfers(self)
self.inbound_wire_drawdown_requests = resources.InboundWireDrawdownRequests(self)
self.wire_drawdown_requests = resources.WireDrawdownRequests(self)
self.events = resources.Events(self)
Expand Down Expand Up @@ -362,6 +364,7 @@ class AsyncIncrease(AsyncAPIClient):
wire_transfers: resources.AsyncWireTransfers
check_transfers: resources.AsyncCheckTransfers
entities: resources.AsyncEntities
inbound_ach_transfers: resources.AsyncInboundACHTransfers
inbound_wire_drawdown_requests: resources.AsyncInboundWireDrawdownRequests
wire_drawdown_requests: resources.AsyncWireDrawdownRequests
events: resources.AsyncEvents
Expand Down Expand Up @@ -467,6 +470,7 @@ def __init__(
self.wire_transfers = resources.AsyncWireTransfers(self)
self.check_transfers = resources.AsyncCheckTransfers(self)
self.entities = resources.AsyncEntities(self)
self.inbound_ach_transfers = resources.AsyncInboundACHTransfers(self)
self.inbound_wire_drawdown_requests = resources.AsyncInboundWireDrawdownRequests(self)
self.wire_drawdown_requests = resources.AsyncWireDrawdownRequests(self)
self.events = resources.AsyncEvents(self)
Expand Down
3 changes: 3 additions & 0 deletions src/increase/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
from .pending_transactions import PendingTransactions, AsyncPendingTransactions
from .declined_transactions import DeclinedTransactions, AsyncDeclinedTransactions
from .digital_wallet_tokens import DigitalWalletTokens, AsyncDigitalWalletTokens
from .inbound_ach_transfers import InboundACHTransfers, AsyncInboundACHTransfers
from .bookkeeping_entry_sets import BookkeepingEntrySets, AsyncBookkeepingEntrySets
from .wire_drawdown_requests import WireDrawdownRequests, AsyncWireDrawdownRequests
from .card_purchase_supplements import (
Expand Down Expand Up @@ -109,6 +110,8 @@
"AsyncCheckTransfers",
"Entities",
"AsyncEntities",
"InboundACHTransfers",
"AsyncInboundACHTransfers",
"InboundWireDrawdownRequests",
"AsyncInboundWireDrawdownRequests",
"WireDrawdownRequests",
Expand Down
4 changes: 2 additions & 2 deletions src/increase/resources/account_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def create(

require_approval: Whether the transfer requires explicit approval via the dashboard or API.

unique_identifier: A unique identifier you choose for the transfer. Reusing this identifer for
unique_identifier: A unique identifier you choose for the transfer. Reusing this identifier for
another transfer will result in an error. You can query for the transfer
associated with this identifier using the List endpoint.

Expand Down Expand Up @@ -291,7 +291,7 @@ async def create(

require_approval: Whether the transfer requires explicit approval via the dashboard or API.

unique_identifier: A unique identifier you choose for the transfer. Reusing this identifer for
unique_identifier: A unique identifier you choose for the transfer. Reusing this identifier for
another transfer will result in an error. You can query for the transfer
associated with this identifier using the List endpoint.

Expand Down
4 changes: 2 additions & 2 deletions src/increase/resources/ach_prenotifications.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def create(
effective_date: The transfer effective date in
[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.

individual_id: Your identifer for the transfer recipient.
individual_id: Your identifier for the transfer recipient.

individual_name: The name of the transfer recipient. This value is information and not verified
by the recipient's bank.
Expand Down Expand Up @@ -262,7 +262,7 @@ async def create(
effective_date: The transfer effective date in
[ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.

individual_id: Your identifer for the transfer recipient.
individual_id: Your identifier for the transfer recipient.

individual_name: The name of the transfer recipient. This value is information and not verified
by the recipient's bank.
Expand Down
8 changes: 4 additions & 4 deletions src/increase/resources/ach_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def create(
- `checking` - A checking account.
- `savings` - A savings account.

individual_id: Your identifer for the transfer recipient.
individual_id: Your identifier for the transfer recipient.

individual_name: The name of the transfer recipient. This value is informational and not verified
by the recipient's bank.
Expand All @@ -110,7 +110,7 @@ def create(
- `prearranged_payments_and_deposit` - Prearranged Payments and Deposits (PPD).
- `internet_initiated` - Internet Initiated (WEB).

unique_identifier: A unique identifier you choose for the transfer. Reusing this identifer for
unique_identifier: A unique identifier you choose for the transfer. Reusing this identifier for
another transfer will result in an error. You can query for the transfer
associated with this identifier using the List endpoint.

Expand Down Expand Up @@ -413,7 +413,7 @@ async def create(
- `checking` - A checking account.
- `savings` - A savings account.

individual_id: Your identifer for the transfer recipient.
individual_id: Your identifier for the transfer recipient.

individual_name: The name of the transfer recipient. This value is informational and not verified
by the recipient's bank.
Expand All @@ -429,7 +429,7 @@ async def create(
- `prearranged_payments_and_deposit` - Prearranged Payments and Deposits (PPD).
- `internet_initiated` - Internet Initiated (WEB).

unique_identifier: A unique identifier you choose for the transfer. Reusing this identifer for
unique_identifier: A unique identifier you choose for the transfer. Reusing this identifier for
another transfer will result in an error. You can query for the transfer
associated with this identifier using the List endpoint.

Expand Down
4 changes: 2 additions & 2 deletions src/increase/resources/check_transfers.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def create(
source_account_number_id: The identifier of the Account Number from which to send the transfer and print
on the check.

unique_identifier: A unique identifier you choose for the transfer. Reusing this identifer for
unique_identifier: A unique identifier you choose for the transfer. Reusing this identifier for
another transfer will result in an error. You can query for the transfer
associated with this identifier using the List endpoint.

Expand Down Expand Up @@ -362,7 +362,7 @@ async def create(
source_account_number_id: The identifier of the Account Number from which to send the transfer and print
on the check.

unique_identifier: A unique identifier you choose for the transfer. Reusing this identifer for
unique_identifier: A unique identifier you choose for the transfer. Reusing this identifier for
another transfer will result in an error. You can query for the transfer
associated with this identifier using the List endpoint.

Expand Down
4 changes: 4 additions & 0 deletions src/increase/resources/declined_transactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def list(
self,
*,
account_id: str | NotGiven = NOT_GIVEN,
category: declined_transaction_list_params.Category | NotGiven = NOT_GIVEN,
created_at: declined_transaction_list_params.CreatedAt | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -93,6 +94,7 @@ def list(
query=maybe_transform(
{
"account_id": account_id,
"category": category,
"created_at": created_at,
"cursor": cursor,
"limit": limit,
Expand Down Expand Up @@ -143,6 +145,7 @@ def list(
self,
*,
account_id: str | NotGiven = NOT_GIVEN,
category: declined_transaction_list_params.Category | NotGiven = NOT_GIVEN,
created_at: declined_transaction_list_params.CreatedAt | NotGiven = NOT_GIVEN,
cursor: str | NotGiven = NOT_GIVEN,
limit: int | NotGiven = NOT_GIVEN,
Expand Down Expand Up @@ -186,6 +189,7 @@ def list(
query=maybe_transform(
{
"account_id": account_id,
"category": category,
"created_at": created_at,
"cursor": cursor,
"limit": limit,
Expand Down
Loading