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.345.0"
".": "0.346.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: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-e80a254e816bc69ee8d058b340f791b9f4229b07ff2b460e6cd0ceb4406a7604.yml
openapi_spec_hash: 81b87e83af702cfd8bce31f2d449ee15
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-24ddca9eb65b72b527002775880ca10d5f0e13426f076fb983761c44df2429a9.yml
openapi_spec_hash: 32d6ee149133e0cc8026079cc29c0991
config_hash: a143293c5450ae8f52acad08f3102575
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.346.0 (2025-09-29)

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

### Features

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

## 0.345.0 (2025-09-26)

Full Changelog: [v0.344.0...v0.345.0](https://github.com/Increase/increase-python/compare/v0.344.0...v0.345.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.345.0"
version = "0.346.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.345.0" # x-release-please-version
__version__ = "0.346.0" # x-release-please-version
4 changes: 2 additions & 2 deletions src/increase/resources/oauth_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def create(

client_id: The public identifier for your application.

client_secret: The secret that confirms you own the application. This is redundent given that
client_secret: The secret that confirms you own the application. This is redundant given that
the request is made with your API key but it's a required component of OAuth
2.0.

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

client_id: The public identifier for your application.

client_secret: The secret that confirms you own the application. This is redundent given that
client_secret: The secret that confirms you own the application. This is redundant given that
the request is made with your API key but it's a required component of OAuth
2.0.

Expand Down
2 changes: 1 addition & 1 deletion src/increase/types/oauth_token_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class OAuthTokenCreateParams(TypedDict, total=False):
client_secret: str
"""The secret that confirms you own the application.

This is redundent given that the request is made with your API key but it's a
This is redundant given that the request is made with your API key but it's a
required component of OAuth 2.0.
"""

Expand Down