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.378.0"
".": "0.379.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: 228
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-f07048979577d746042198f73c1bac07529dd48f26402f60def922a12b6e01e0.yml
openapi_spec_hash: 6d1ca8aa0b64f414db957540bbeab5ee
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e9e51b3c9b5c8d9e6e0267b62a12a00fedbce419b765192aa4e2470984192e1f.yml
openapi_spec_hash: 84bc91dd8b8a80edf447dddad15c23fc
config_hash: eb2035151c7b49c2f12caf55469b8f9a
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.379.0 (2025-10-31)

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

### Features

* **api:** api update ([e44827d](https://github.com/Increase/increase-python/commit/e44827d17007b5ff4cebf2bc16a9b7c9baf184e8))

## 0.378.0 (2025-10-31)

Full Changelog: [v0.377.0...v0.378.0](https://github.com/Increase/increase-python/compare/v0.377.0...v0.378.0)
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,21 @@ for account in first_page.data:
# Remove `await` for non-async usage.
```

## Nested params

Nested parameters are dictionaries, typed using `TypedDict`, for example:

```python
from increase import Increase

client = Increase()

account = client.accounts.create(
name="New Account!",
)
print(account.id)
```

## File uploads

Request parameters that correspond to file uploads can be passed as `bytes`, or a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
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.378.0"
version = "0.379.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.378.0" # x-release-please-version
__version__ = "0.379.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/increase/resources/exports.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def create(
bookkeeping_account_balance_csv: export_create_params.BookkeepingAccountBalanceCsv | Omit = omit,
entity_csv: export_create_params.EntityCsv | Omit = omit,
transaction_csv: export_create_params.TransactionCsv | Omit = omit,
vendor_csv: object | Omit = omit,
vendor_csv: export_create_params.VendorCsv | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand Down Expand Up @@ -279,7 +279,7 @@ async def create(
bookkeeping_account_balance_csv: export_create_params.BookkeepingAccountBalanceCsv | Omit = omit,
entity_csv: export_create_params.EntityCsv | Omit = omit,
transaction_csv: export_create_params.TransactionCsv | Omit = omit,
vendor_csv: object | Omit = omit,
vendor_csv: export_create_params.VendorCsv | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
Expand Down
Loading