Skip to content

Commit 0c20c29

Browse files
authored
Merge pull request #72 from openintegrations/release-please--branches--main--changes--next
release: 2.2.0
2 parents 4ff6ecd + 62f1756 commit 0c20c29

File tree

7 files changed

+24
-18
lines changed

7 files changed

+24
-18
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.1.0"
2+
".": "2.2.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 10
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openint%2Fopenint-bacbc8c9cbe5ff0643c5413e7f1ef80fe15094393e788142b84075998fc7ad85.yml
3-
openapi_spec_hash: 044dac4816a3a8fed6a303cf2eb65ed4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openint%2Fopenint-f609a321e789149b1cb414372f1268e2ac1eede19f8dc07221e3d5bec501f956.yml
3+
openapi_spec_hash: 79a1c348d6ce94d5e6e0e23d1da456ab
44
config_hash: be212d1ce37acf5836869f40d1654c82

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 2.2.0 (2025-05-19)
4+
5+
Full Changelog: [v2.1.0...v2.2.0](https://github.com/openintegrations/python-sdk/compare/v2.1.0...v2.2.0)
6+
7+
### Features
8+
9+
* **docs:** updating documented docs for stainless ([df87cf1](https://github.com/openintegrations/python-sdk/commit/df87cf1bd25609ff6451e4c83cb2510e9b93aac4))
10+
311
## 2.1.0 (2025-05-19)
412

513
Full Changelog: [v2.0.0...v2.1.0](https://github.com/openintegrations/python-sdk/compare/v2.0.0...v2.1.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openint"
3-
version = "2.1.0"
3+
version = "2.2.0"
44
description = "The official Python library for the Openint API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/openint/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "openint"
4-
__version__ = "2.1.0" # x-release-please-version
4+
__version__ = "2.2.0" # x-release-please-version

src/openint/types/client_get_message_template_params.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@
22

33
from __future__ import annotations
44

5-
from typing_extensions import Literal, Required, Annotated, TypedDict
6-
7-
from .._utils import PropertyInfo
5+
from typing_extensions import Literal, Required, TypedDict
86

97
__all__ = ["ClientGetMessageTemplateParams"]
108

119

1210
class ClientGetMessageTemplateParams(TypedDict, total=False):
13-
customer_id: Required[Annotated[str, PropertyInfo(alias="customerId")]]
11+
customer_id: Required[str]
1412

1513
language: Literal["javascript"]
1614

17-
use_environment_variables: Annotated[bool, PropertyInfo(alias="useEnvironmentVariables")]
15+
use_environment_variables: bool

tests/api_resources/test_client.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -329,15 +329,15 @@ def test_streaming_response_get_current_user(self, client: Openint) -> None:
329329
@parametrize
330330
def test_method_get_message_template(self, client: Openint) -> None:
331331
client_ = client.get_message_template(
332-
customer_id="customerId",
332+
customer_id="customer_id",
333333
)
334334
assert_matches_type(GetMessageTemplateResponse, client_, path=["response"])
335335

336336
@pytest.mark.skip()
337337
@parametrize
338338
def test_method_get_message_template_with_all_params(self, client: Openint) -> None:
339339
client_ = client.get_message_template(
340-
customer_id="customerId",
340+
customer_id="customer_id",
341341
language="javascript",
342342
use_environment_variables=True,
343343
)
@@ -347,7 +347,7 @@ def test_method_get_message_template_with_all_params(self, client: Openint) -> N
347347
@parametrize
348348
def test_raw_response_get_message_template(self, client: Openint) -> None:
349349
response = client.with_raw_response.get_message_template(
350-
customer_id="customerId",
350+
customer_id="customer_id",
351351
)
352352

353353
assert response.is_closed is True
@@ -359,7 +359,7 @@ def test_raw_response_get_message_template(self, client: Openint) -> None:
359359
@parametrize
360360
def test_streaming_response_get_message_template(self, client: Openint) -> None:
361361
with client.with_streaming_response.get_message_template(
362-
customer_id="customerId",
362+
customer_id="customer_id",
363363
) as response:
364364
assert not response.is_closed
365365
assert response.http_request.headers.get("X-Stainless-Lang") == "python"
@@ -795,15 +795,15 @@ async def test_streaming_response_get_current_user(self, async_client: AsyncOpen
795795
@parametrize
796796
async def test_method_get_message_template(self, async_client: AsyncOpenint) -> None:
797797
client = await async_client.get_message_template(
798-
customer_id="customerId",
798+
customer_id="customer_id",
799799
)
800800
assert_matches_type(GetMessageTemplateResponse, client, path=["response"])
801801

802802
@pytest.mark.skip()
803803
@parametrize
804804
async def test_method_get_message_template_with_all_params(self, async_client: AsyncOpenint) -> None:
805805
client = await async_client.get_message_template(
806-
customer_id="customerId",
806+
customer_id="customer_id",
807807
language="javascript",
808808
use_environment_variables=True,
809809
)
@@ -813,7 +813,7 @@ async def test_method_get_message_template_with_all_params(self, async_client: A
813813
@parametrize
814814
async def test_raw_response_get_message_template(self, async_client: AsyncOpenint) -> None:
815815
response = await async_client.with_raw_response.get_message_template(
816-
customer_id="customerId",
816+
customer_id="customer_id",
817817
)
818818

819819
assert response.is_closed is True
@@ -825,7 +825,7 @@ async def test_raw_response_get_message_template(self, async_client: AsyncOpenin
825825
@parametrize
826826
async def test_streaming_response_get_message_template(self, async_client: AsyncOpenint) -> None:
827827
async with async_client.with_streaming_response.get_message_template(
828-
customer_id="customerId",
828+
customer_id="customer_id",
829829
) as response:
830830
assert not response.is_closed
831831
assert response.http_request.headers.get("X-Stainless-Lang") == "python"

0 commit comments

Comments
 (0)