From 5f60c3dc23b044c5f00e6bf7412fee9808bd3991 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 20:02:19 +0000 Subject: [PATCH 1/6] codegen metadata --- .stats.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.stats.yml b/.stats.yml index 2817e54f..2f897074 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c125ce952e66ce3ea3b9a4d1c5a2449584ec7290497e3b6bba8358960713fb79.yml openapi_spec_hash: 1ed3f6bc7b08ca891adea5fab74430c9 -config_hash: 25d7d7aa4882db6189b4b53e8e249e80 +config_hash: 0997ade8b52ec04e82d5b0c3b61bb51e From d2bcaaa8794ba875326356febc7bfdefb14b50e3 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 21:39:34 +0000 Subject: [PATCH 2/6] codegen metadata --- .stats.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 2f897074..7d1e0e6c 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-c125ce952e66ce3ea3b9a4d1c5a2449584ec7290497e3b6bba8358960713fb79.yml -openapi_spec_hash: 1ed3f6bc7b08ca891adea5fab74430c9 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9087e34382028c4280cc85971d3157d33b0157853d8e71a3801db9856aa1d2c3.yml +openapi_spec_hash: 8a0bfcef9a0f9ec3e3398493de20d98c config_hash: 0997ade8b52ec04e82d5b0c3b61bb51e From 0d24f96a805ebcf649fba6eb5d7cf1d7cc617a54 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 15:22:03 +0000 Subject: [PATCH 3/6] chore(ci): skip lint on metadata-only changes Note that we still want to run tests, as these depend on the metadata. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b2b4443f..8728e0cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: timeout-minutes: 10 name: lint runs-on: ${{ github.repository == 'stainless-sdks/increase-python' && 'depot-ubuntu-24.04' || 'ubuntu-latest' }} - if: github.event_name == 'push' || github.event.pull_request.head.repo.fork + if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') steps: - uses: actions/checkout@v6 @@ -38,7 +38,7 @@ jobs: run: ./scripts/lint build: - if: github.event_name == 'push' || github.event.pull_request.head.repo.fork + if: (github.event_name == 'push' || github.event.pull_request.head.repo.fork) && (github.event_name != 'push' || github.event.head_commit.message != 'codegen metadata') timeout-minutes: 10 name: build permissions: From 2e2288caecb277f9b41f6aea2023e0bb72f0ad8a Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 15:49:01 +0000 Subject: [PATCH 4/6] chore(tests): bump steady to v0.19.7 --- scripts/mock | 6 +++--- scripts/test | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/mock b/scripts/mock index 1983fb9b..5f1bb802 100755 --- a/scripts/mock +++ b/scripts/mock @@ -22,9 +22,9 @@ echo "==> Starting mock server with URL ${URL}" # Run steady mock on the given spec if [ "$1" == "--daemon" ]; then # Pre-install the package so the download doesn't eat into the startup timeout - npm exec --package=@stdy/cli@0.19.6 -- steady --version + npm exec --package=@stdy/cli@0.19.7 -- steady --version - npm exec --package=@stdy/cli@0.19.6 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=dots --validator-query-object-format=dots "$URL" &> .stdy.log & + npm exec --package=@stdy/cli@0.19.7 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=dots --validator-query-object-format=dots "$URL" &> .stdy.log & # Wait for server to come online via health endpoint (max 30s) echo -n "Waiting for server" @@ -48,5 +48,5 @@ if [ "$1" == "--daemon" ]; then echo else - npm exec --package=@stdy/cli@0.19.6 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=dots --validator-query-object-format=dots "$URL" + npm exec --package=@stdy/cli@0.19.7 -- steady --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=dots --validator-query-object-format=dots "$URL" fi diff --git a/scripts/test b/scripts/test index ee1d1e9b..3fcc3ef9 100755 --- a/scripts/test +++ b/scripts/test @@ -43,7 +43,7 @@ elif ! steady_is_running ; then echo -e "To run the server, pass in the path or url of your OpenAPI" echo -e "spec to the steady command:" echo - echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.6 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=dots --validator-query-object-format=dots${NC}" + echo -e " \$ ${YELLOW}npm exec --package=@stdy/cli@0.19.7 -- steady path/to/your.openapi.yml --host 127.0.0.1 -p 4010 --validator-form-array-format=comma --validator-query-array-format=comma --validator-form-object-format=dots --validator-query-object-format=dots${NC}" echo exit 1 From 2309e8314442e130cbb72545c3a2d32d0f08fd3b Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 18:32:22 +0000 Subject: [PATCH 5/6] feat(api): api update --- .stats.yml | 4 ++-- src/increase/types/entity_create_params.py | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.stats.yml b/.stats.yml index 7d1e0e6c..c8c73881 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 236 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-9087e34382028c4280cc85971d3157d33b0157853d8e71a3801db9856aa1d2c3.yml -openapi_spec_hash: 8a0bfcef9a0f9ec3e3398493de20d98c +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-b95cd103dded0963ab1ae960b10846a8640c538d12beefb085cfcccd40e4e374.yml +openapi_spec_hash: 4cea779180b9bcdc631ae2cbc3aa9c4c config_hash: 0997ade8b52ec04e82d5b0c3b61bb51e diff --git a/src/increase/types/entity_create_params.py b/src/increase/types/entity_create_params.py index a8f9bb97..e14f4a70 100644 --- a/src/increase/types/entity_create_params.py +++ b/src/increase/types/entity_create_params.py @@ -545,7 +545,7 @@ class JointIndividualIdentificationPassport(TypedDict, total=False): country: Required[str] """ The two-character ISO 3166-1 code representing the country that issued the - passport (e.g., `US`). + document (e.g., `US`). """ expiration_date: Required[Annotated[Union[str, date], PropertyInfo(format="iso8601")]] @@ -718,7 +718,7 @@ class NaturalPersonIdentificationPassport(TypedDict, total=False): country: Required[str] """ The two-character ISO 3166-1 code representing the country that issued the - passport (e.g., `US`). + document (e.g., `US`). """ expiration_date: Required[Annotated[Union[str, date], PropertyInfo(format="iso8601")]] @@ -969,7 +969,7 @@ class TrustTrusteeIndividualIdentificationPassport(TypedDict, total=False): country: Required[str] """ The two-character ISO 3166-1 code representing the country that issued the - passport (e.g., `US`). + document (e.g., `US`). """ expiration_date: Required[Annotated[Union[str, date], PropertyInfo(format="iso8601")]] @@ -1152,7 +1152,7 @@ class TrustGrantorIdentificationPassport(TypedDict, total=False): country: Required[str] """ The two-character ISO 3166-1 code representing the country that issued the - passport (e.g., `US`). + document (e.g., `US`). """ expiration_date: Required[Annotated[Union[str, date], PropertyInfo(format="iso8601")]] From 6fd73a845b9cca44378fddfeb03a78e2e2e88e54 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 24 Mar 2026 18:32:48 +0000 Subject: [PATCH 6/6] release: 0.455.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ pyproject.toml | 2 +- src/increase/_version.py | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e29156ed..efc1a443 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.454.0" + ".": "0.455.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 79bdddc8..71563e4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.455.0 (2026-03-24) + +Full Changelog: [v0.454.0...v0.455.0](https://github.com/Increase/increase-python/compare/v0.454.0...v0.455.0) + +### Features + +* **api:** api update ([2309e83](https://github.com/Increase/increase-python/commit/2309e8314442e130cbb72545c3a2d32d0f08fd3b)) + + +### Chores + +* **ci:** skip lint on metadata-only changes ([0d24f96](https://github.com/Increase/increase-python/commit/0d24f96a805ebcf649fba6eb5d7cf1d7cc617a54)) +* **tests:** bump steady to v0.19.7 ([2e2288c](https://github.com/Increase/increase-python/commit/2e2288caecb277f9b41f6aea2023e0bb72f0ad8a)) + ## 0.454.0 (2026-03-23) Full Changelog: [v0.453.0...v0.454.0](https://github.com/Increase/increase-python/compare/v0.453.0...v0.454.0) diff --git a/pyproject.toml b/pyproject.toml index 24d7abb4..2d81dad5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "increase" -version = "0.454.0" +version = "0.455.0" description = "The official Python library for the increase API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/increase/_version.py b/src/increase/_version.py index beae46b3..e3604e44 100644 --- a/src/increase/_version.py +++ b/src/increase/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "increase" -__version__ = "0.454.0" # x-release-please-version +__version__ = "0.455.0" # x-release-please-version