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.267.0"
".": "0.268.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-2965cbcf43d274ee029249246f9e3760a82372b9120a033bd651cad24765a4fb.yml
openapi_spec_hash: ae42e357b1bedbf992105c2a37f1b544
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-43d34b4805f305e7e2c71644ade73722d053018acd6009352360e8a87cbe2250.yml
openapi_spec_hash: cfff23de89960d895052350a33499cf1
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.268.0 (2025-07-21)

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

### Features

* **api:** api update ([0a022a0](https://github.com/Increase/increase-python/commit/0a022a05d21e84ac71338b321df01628a275fbfa))

## 0.267.0 (2025-07-21)

Full Changelog: [v0.266.0...v0.267.0](https://github.com/Increase/increase-python/compare/v0.266.0...v0.267.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.267.0"
version = "0.268.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.267.0" # x-release-please-version
__version__ = "0.268.0" # x-release-please-version
3 changes: 0 additions & 3 deletions src/increase/types/entity_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,9 +541,6 @@ class Joint(TypedDict, total=False):
individuals: Required[Iterable[JointIndividual]]
"""The two individuals that share control of the entity."""

name: str
"""The name of the joint entity."""


class NaturalPersonAddress(TypedDict, total=False):
city: Required[str]
Expand Down
6 changes: 2 additions & 4 deletions tests/api_resources/test_entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,7 @@ def test_method_create_with_all_params(self, client: Increase) -> None:
"name": "x",
"confirmed_no_us_tax_id": True,
}
],
"name": "x",
]
},
natural_person={
"address": {
Expand Down Expand Up @@ -960,8 +959,7 @@ async def test_method_create_with_all_params(self, async_client: AsyncIncrease)
"name": "x",
"confirmed_no_us_tax_id": True,
}
],
"name": "x",
]
},
natural_person={
"address": {
Expand Down