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 .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.281.0"
".": "0.282.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 202
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-65d55098340df71e6f5c251c62e6853ad5184102c603d9f74622e8b33581c800.yml
openapi_spec_hash: 9f772e02b53a65c6e8ada7ac684117fb
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-37ce9b56dd0adf1b5dce2b5135f6fe1cf22244fab923c8934dd98488f69c3ae3.yml
openapi_spec_hash: a478c8758b24bbf44a6a6a262f5c0a63
config_hash: a185e9a72778cc4658ea73fb3a7f1354
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.282.0 (2025-08-11)

Full Changelog: [v0.281.0...v0.282.0](https://github.com/Increase/increase-python/compare/v0.281.0...v0.282.0)

### Features

* **api:** api update ([9037f87](https://github.com/Increase/increase-python/commit/9037f8733cef617a9ddefd32f712272e12b1fd3d))

## 0.281.0 (2025-08-11)

Full Changelog: [v0.280.0...v0.281.0](https://github.com/Increase/increase-python/compare/v0.280.0...v0.281.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "increase"
version = "0.281.0"
version = "0.282.0"
description = "The official Python library for the increase API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/increase/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "increase"
__version__ = "0.281.0" # x-release-please-version
__version__ = "0.282.0" # x-release-please-version
12 changes: 12 additions & 0 deletions src/increase/resources/event_subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ def create(
"intrafi_account_enrollment.updated",
"intrafi_exclusion.created",
"intrafi_exclusion.updated",
"legacy_card_dispute.created",
"legacy_card_dispute.updated",
"lockbox.created",
"lockbox.updated",
"oauth_connection.created",
Expand Down Expand Up @@ -257,6 +259,10 @@ def create(
Enrollment is updated.
- `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
- `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
- `legacy_card_dispute.created` - Occurs whenever a Legacy Card Dispute is
created.
- `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
updated.
- `lockbox.created` - Occurs whenever a Lockbox is created.
- `lockbox.updated` - Occurs whenever a Lockbox is updated.
- `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
Expand Down Expand Up @@ -589,6 +595,8 @@ async def create(
"intrafi_account_enrollment.updated",
"intrafi_exclusion.created",
"intrafi_exclusion.updated",
"legacy_card_dispute.created",
"legacy_card_dispute.updated",
"lockbox.created",
"lockbox.updated",
"oauth_connection.created",
Expand Down Expand Up @@ -736,6 +744,10 @@ async def create(
Enrollment is updated.
- `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
- `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
- `legacy_card_dispute.created` - Occurs whenever a Legacy Card Dispute is
created.
- `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
updated.
- `lockbox.created` - Occurs whenever a Lockbox is created.
- `lockbox.updated` - Occurs whenever a Lockbox is updated.
- `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
Expand Down
6 changes: 6 additions & 0 deletions src/increase/types/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ class Event(BaseModel):
"intrafi_account_enrollment.updated",
"intrafi_exclusion.created",
"intrafi_exclusion.updated",
"legacy_card_dispute.created",
"legacy_card_dispute.updated",
"lockbox.created",
"lockbox.updated",
"oauth_connection.created",
Expand Down Expand Up @@ -209,6 +211,10 @@ class Event(BaseModel):
Enrollment is updated.
- `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
- `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
- `legacy_card_dispute.created` - Occurs whenever a Legacy Card Dispute is
created.
- `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
updated.
- `lockbox.created` - Occurs whenever a Lockbox is created.
- `lockbox.updated` - Occurs whenever a Lockbox is updated.
- `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
Expand Down
2 changes: 2 additions & 0 deletions src/increase/types/event_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ class EventListParams(TypedDict, total=False):
"intrafi_account_enrollment.updated",
"intrafi_exclusion.created",
"intrafi_exclusion.updated",
"legacy_card_dispute.created",
"legacy_card_dispute.updated",
"lockbox.created",
"lockbox.updated",
"oauth_connection.created",
Expand Down
6 changes: 6 additions & 0 deletions src/increase/types/event_subscription.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ class EventSubscription(BaseModel):
"intrafi_account_enrollment.updated",
"intrafi_exclusion.created",
"intrafi_exclusion.updated",
"legacy_card_dispute.created",
"legacy_card_dispute.updated",
"lockbox.created",
"lockbox.updated",
"oauth_connection.created",
Expand Down Expand Up @@ -222,6 +224,10 @@ class EventSubscription(BaseModel):
Enrollment is updated.
- `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
- `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
- `legacy_card_dispute.created` - Occurs whenever a Legacy Card Dispute is
created.
- `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
updated.
- `lockbox.created` - Occurs whenever a Lockbox is created.
- `lockbox.updated` - Occurs whenever a Lockbox is updated.
- `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
Expand Down
6 changes: 6 additions & 0 deletions src/increase/types/event_subscription_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,8 @@ class EventSubscriptionCreateParams(TypedDict, total=False):
"intrafi_account_enrollment.updated",
"intrafi_exclusion.created",
"intrafi_exclusion.updated",
"legacy_card_dispute.created",
"legacy_card_dispute.updated",
"lockbox.created",
"lockbox.updated",
"oauth_connection.created",
Expand Down Expand Up @@ -207,6 +209,10 @@ class EventSubscriptionCreateParams(TypedDict, total=False):
Enrollment is updated.
- `intrafi_exclusion.created` - Occurs whenever an IntraFi Exclusion is created.
- `intrafi_exclusion.updated` - Occurs whenever an IntraFi Exclusion is updated.
- `legacy_card_dispute.created` - Occurs whenever a Legacy Card Dispute is
created.
- `legacy_card_dispute.updated` - Occurs whenever a Legacy Card Dispute is
updated.
- `lockbox.created` - Occurs whenever a Lockbox is created.
- `lockbox.updated` - Occurs whenever a Lockbox is updated.
- `oauth_connection.created` - Occurs whenever an OAuth Connection is created.
Expand Down