Skip to content

Commit 19ff0db

Browse files
authored
Merge pull request #18 from sentdm/release-please--branches--main--changes--next
release: 0.13.0
2 parents fd58ecb + cf1d9a2 commit 19ff0db

29 files changed

+58
-50
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-
".": "0.12.0"
2+
".": "0.13.0"
33
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 40
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/sent%2Fsent-dm-294831f61f7890b2cdb89d181f26297732387d5e1288f446c0138e46fb1a4608.yml
33
openapi_spec_hash: a7f20451621ee678fbe09ff7a297b3ea
4-
config_hash: 497506d9e2e66cd0573bd9c1f1242462
4+
config_hash: 478a49d5520c8bb64b43272de11c2872

CHANGELOG.md

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

3+
## 0.13.0 (2026-03-12)
4+
5+
Full Changelog: [v0.12.0...v0.13.0](https://github.com/sentdm/sent-dm-python/compare/v0.12.0...v0.13.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([fd07a7a](https://github.com/sentdm/sent-dm-python/commit/fd07a7aa83630147e58ddd1bbbc86534aa9a9e6e))
10+
311
## 0.12.0 (2026-03-12)
412

513
Full Changelog: [v0.11.0...v0.12.0](https://github.com/sentdm/sent-dm-python/compare/v0.11.0...v0.12.0)

api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Types:
44

55
```python
66
from sent_dm.types import (
7-
APIError,
87
APIMeta,
98
APIResponseWebhook,
9+
ErrorDetail,
1010
MutationRequest,
1111
PaginationMeta,
1212
WebhookResponse,

pyproject.toml

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

src/sent_dm/_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__ = "sent_dm"
4-
__version__ = "0.12.0" # x-release-please-version
4+
__version__ = "0.13.0" # x-release-please-version

src/sent_dm/types/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .api_meta import APIMeta as APIMeta
66
from .template import Template as Template
7-
from .api_error import APIError as APIError
7+
from .error_detail import ErrorDetail as ErrorDetail
88
from .tcr_vertical import TcrVertical as TcrVertical
99
from .user_response import UserResponse as UserResponse
1010
from .profile_detail import ProfileDetail as ProfileDetail

src/sent_dm/types/api_response_of_contact.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .._models import BaseModel
66
from .api_meta import APIMeta
7-
from .api_error import APIError
7+
from .error_detail import ErrorDetail
88
from .contact_response import ContactResponse
99

1010
__all__ = ["APIResponseOfContact"]
@@ -16,7 +16,7 @@ class APIResponseOfContact(BaseModel):
1616
data: Optional[ContactResponse] = None
1717
"""Contact response for v3 API Uses snake_case for JSON property names"""
1818

19-
error: Optional[APIError] = None
19+
error: Optional[ErrorDetail] = None
2020
"""Error information"""
2121

2222
meta: Optional[APIMeta] = None

src/sent_dm/types/api_response_of_profile_detail.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .._models import BaseModel
66
from .api_meta import APIMeta
7-
from .api_error import APIError
7+
from .error_detail import ErrorDetail
88
from .profile_detail import ProfileDetail
99

1010
__all__ = ["APIResponseOfProfileDetail"]
@@ -16,7 +16,7 @@ class APIResponseOfProfileDetail(BaseModel):
1616
data: Optional[ProfileDetail] = None
1717
"""Detailed profile response for v3 API"""
1818

19-
error: Optional[APIError] = None
19+
error: Optional[ErrorDetail] = None
2020
"""Error information"""
2121

2222
meta: Optional[APIMeta] = None

src/sent_dm/types/api_response_of_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .._models import BaseModel
66
from .api_meta import APIMeta
7-
from .api_error import APIError
7+
from .error_detail import ErrorDetail
88
from .user_response import UserResponse
99

1010
__all__ = ["APIResponseOfUser"]
@@ -16,7 +16,7 @@ class APIResponseOfUser(BaseModel):
1616
data: Optional[UserResponse] = None
1717
"""User response for v3 API"""
1818

19-
error: Optional[APIError] = None
19+
error: Optional[ErrorDetail] = None
2020
"""Error information"""
2121

2222
meta: Optional[APIMeta] = None

0 commit comments

Comments
 (0)