Skip to content
This repository was archived by the owner on Nov 2, 2025. It is now read-only.

Commit 1947131

Browse files
release: 0.18.0 (#19)
Automated Release PR --- ## 0.18.0 (2025-10-14) Full Changelog: [v0.17.0...v0.18.0](v0.17.0...v0.18.0) ### Features * **api:** manual updates ([a3862d6](a3862d6)) --- This pull request is managed by Stainless's [GitHub App](https://github.com/apps/stainless-app). The [semver version number](https://semver.org/#semantic-versioning-specification-semver) is based on included [commit messages](https://www.conventionalcommits.org/en/v1.0.0/). Alternatively, you can manually set the version number in the title of this pull request. For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request. 🔗 Stainless [website](https://www.stainlessapi.com) 📚 Read the [docs](https://app.stainlessapi.com/docs) 🙋 [Reach out](mailto:[email protected]) for help or questions --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 829740f commit 1947131

File tree

18 files changed

+45
-390
lines changed

18 files changed

+45
-390
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.17.0"
2+
".": "0.18.0"
33
}

.stats.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 44
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/inty%2Finty-795555ec3f57171d5ad528ffee370f5d345580197b3141547d604d297109e164.yml
3-
openapi_spec_hash: a82ba2bde7cf360c8b8fee06e421be02
4-
config_hash: 91f08aa33957c420c9a7eabc6951d3ff
1+
configured_endpoints: 43
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/inty%2Finty-89127d31b5fad61c910a682f7f88d7252ec3fd1d202ec1d89d377061d543a600.yml
3+
openapi_spec_hash: fd18c276ce08b3119804fd5f2d27bfcc
4+
config_hash: b89b885fbfc8304f6687a90b818606b2

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.18.0 (2025-10-14)
4+
5+
Full Changelog: [v0.17.0...v0.18.0](https://github.com/NascentCore/inty-python/compare/v0.17.0...v0.18.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([a3862d6](https://github.com/NascentCore/inty-python/commit/a3862d60cd6d09bc131656277b5eeb34c51ba76e))
10+
311
## 0.17.0 (2025-10-13)
412

513
Full Changelog: [v0.16.0...v0.17.0](https://github.com/NascentCore/inty-python/compare/v0.16.0...v0.17.0)

api.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,6 @@ Methods:
6262
- <code title="put /api/v1/users/profile">client.api.v1.users.profile.<a href="./src/inty/resources/api/v1/users/profile.py">update</a>(\*\*<a href="src/inty/types/api/v1/users/profile_update_params.py">params</a>) -> <a href="./src/inty/types/api/v1/users/profile_update_response.py">ProfileUpdateResponse</a></code>
6363
- <code title="get /api/v1/users/me">client.api.v1.users.profile.<a href="./src/inty/resources/api/v1/users/profile.py">me</a>() -> <a href="./src/inty/types/api/v1/users/profile_me_response.py">ProfileMeResponse</a></code>
6464

65-
#### Device
66-
67-
Types:
68-
69-
```python
70-
from inty.types.api.v1.users import APIResponse
71-
```
72-
73-
Methods:
74-
75-
- <code title="post /api/v1/users/device/register">client.api.v1.users.device.<a href="./src/inty/resources/api/v1/users/device.py">register</a>(\*\*<a href="src/inty/types/api/v1/users/device_register_params.py">params</a>) -> <a href="./src/inty/types/api/v1/users/api_response.py">APIResponse</a></code>
76-
7765
#### Deletion
7866

7967
Types:
@@ -91,12 +79,12 @@ Methods:
9179
Types:
9280

9381
```python
94-
from inty.types.api.v1 import APIResponseDict
82+
from inty.types.api.v1 import APIResponseDict, ReportCreateResponse
9583
```
9684

9785
Methods:
9886

99-
- <code title="post /api/v1/report/">client.api.v1.report.<a href="./src/inty/resources/api/v1/report.py">create</a>(\*\*<a href="src/inty/types/api/v1/report_create_params.py">params</a>) -> <a href="./src/inty/types/api/v1/users/api_response.py">APIResponse</a></code>
87+
- <code title="post /api/v1/report/">client.api.v1.report.<a href="./src/inty/resources/api/v1/report.py">create</a>(\*\*<a href="src/inty/types/api/v1/report_create_params.py">params</a>) -> <a href="./src/inty/types/api/v1/report_create_response.py">ReportCreateResponse</a></code>
10088

10189
### AI
10290

pyproject.toml

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

src/inty/_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__ = "inty"
4-
__version__ = "0.17.0" # x-release-please-version
4+
__version__ = "0.18.0" # x-release-please-version

src/inty/resources/api/v1/report.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
)
2020
from ...._base_client import make_request_options
2121
from ....types.api.v1 import report_create_params
22-
from ....types.api.v1.users.api_response import APIResponse
22+
from ....types.api.v1.report_create_response import ReportCreateResponse
2323

2424
__all__ = ["ReportResource", "AsyncReportResource"]
2525

@@ -59,7 +59,7 @@ def create(
5959
extra_query: Query | None = None,
6060
extra_body: Body | None = None,
6161
timeout: float | httpx.Timeout | None | NotGiven = not_given,
62-
) -> APIResponse:
62+
) -> ReportCreateResponse:
6363
"""
6464
Submit report
6565
@@ -88,7 +88,7 @@ def create(
8888
options=make_request_options(
8989
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
9090
),
91-
cast_to=APIResponse,
91+
cast_to=ReportCreateResponse,
9292
)
9393

9494

@@ -127,7 +127,7 @@ async def create(
127127
extra_query: Query | None = None,
128128
extra_body: Body | None = None,
129129
timeout: float | httpx.Timeout | None | NotGiven = not_given,
130-
) -> APIResponse:
130+
) -> ReportCreateResponse:
131131
"""
132132
Submit report
133133
@@ -156,7 +156,7 @@ async def create(
156156
options=make_request_options(
157157
extra_headers=extra_headers, extra_query=extra_query, extra_body=extra_body, timeout=timeout
158158
),
159-
cast_to=APIResponse,
159+
cast_to=ReportCreateResponse,
160160
)
161161

162162

src/inty/resources/api/v1/users/__init__.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@
88
UsersResourceWithStreamingResponse,
99
AsyncUsersResourceWithStreamingResponse,
1010
)
11-
from .device import (
12-
DeviceResource,
13-
AsyncDeviceResource,
14-
DeviceResourceWithRawResponse,
15-
AsyncDeviceResourceWithRawResponse,
16-
DeviceResourceWithStreamingResponse,
17-
AsyncDeviceResourceWithStreamingResponse,
18-
)
1911
from .profile import (
2012
ProfileResource,
2113
AsyncProfileResource,
@@ -40,12 +32,6 @@
4032
"AsyncProfileResourceWithRawResponse",
4133
"ProfileResourceWithStreamingResponse",
4234
"AsyncProfileResourceWithStreamingResponse",
43-
"DeviceResource",
44-
"AsyncDeviceResource",
45-
"DeviceResourceWithRawResponse",
46-
"AsyncDeviceResourceWithRawResponse",
47-
"DeviceResourceWithStreamingResponse",
48-
"AsyncDeviceResourceWithStreamingResponse",
4935
"DeletionResource",
5036
"AsyncDeletionResource",
5137
"DeletionResourceWithRawResponse",

src/inty/resources/api/v1/users/device.py

Lines changed: 0 additions & 179 deletions
This file was deleted.

0 commit comments

Comments
 (0)