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.173.0"
".": "0.174.0"
}
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 201
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-4bd84f4d9170653e443265bdf92c0520b008f613be5f60334e07b4151765e16a.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/increase%2Fincrease-3727ea0756f101eda42b91615cc93da10d2d197565b9522da8c018edc249ad10.yml
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.174.0 (2024-12-23)

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

### Features

* **api:** api update ([#888](https://github.com/Increase/increase-python/issues/888)) ([dec57fe](https://github.com/Increase/increase-python/commit/dec57fe28b60e2ad34af8ca1a2ea52887e095b1a))

## 0.173.0 (2024-12-23)

Full Changelog: [v0.172.0...v0.173.0](https://github.com/Increase/increase-python/compare/v0.172.0...v0.173.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.173.0"
version = "0.174.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.173.0" # x-release-please-version
__version__ = "0.174.0" # x-release-please-version
6 changes: 4 additions & 2 deletions src/increase/resources/oauth_connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ def list(
limit: Limit the size of the list that is returned. The default (and maximum) is 100
objects.

oauth_application_id: The identifier of the OAuth Application to filter by.
oauth_application_id: Filter results to only include OAuth Connections for a specific OAuth
Application.

extra_headers: Send extra headers

Expand Down Expand Up @@ -214,7 +215,8 @@ def list(
limit: Limit the size of the list that is returned. The default (and maximum) is 100
objects.

oauth_application_id: The identifier of the OAuth Application to filter by.
oauth_application_id: Filter results to only include OAuth Connections for a specific OAuth
Application.

extra_headers: Send extra headers

Expand Down
5 changes: 4 additions & 1 deletion src/increase/types/oauth_connection_list_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ class OAuthConnectionListParams(TypedDict, total=False):
"""

oauth_application_id: str
"""The identifier of the OAuth Application to filter by."""
"""
Filter results to only include OAuth Connections for a specific OAuth
Application.
"""

status: Status

Expand Down
Loading