Skip to content
Open
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 @@
{
".": "1.12.0"
".": "1.13.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 21
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-902b4d5af31c8c6bab33a08d9cea10f3444be221abf735466eb9fd58a14e0a87.yml
openapi_spec_hash: e333f46097f3a3a452cb4d6564a3db67
configured_endpoints: 20
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-26d0931f3488af784c16303683cbf24225c727615fd32ee071144974e7c59670.yml
openapi_spec_hash: 242a5f4d982645a25e0d66ef088940a5
config_hash: 5509bb7a961ae2e79114b24c381606d4
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.13.0 (2026-07-26)

Full Changelog: [v1.12.0...v1.13.0](https://github.com/CASParser/cas-parser-python/compare/v1.12.0...v1.13.0)

### Features

* **api:** api update ([44ff1a8](https://github.com/CASParser/cas-parser-python/commit/44ff1a82b8d15013bd67c3a189bc5dbe0f4b44c8))

## 1.12.0 (2026-07-18)

Full Changelog: [v1.11.0...v1.12.0](https://github.com/CASParser/cas-parser-python/compare/v1.11.0...v1.12.0)
Expand Down
12 changes: 0 additions & 12 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,18 +110,6 @@ Methods:
- <code title="post /v4/inbox/disconnect">client.inbox.<a href="./src/cas_parser/resources/inbox.py">disconnect_email</a>() -> <a href="./src/cas_parser/types/inbox_disconnect_email_response.py">InboxDisconnectEmailResponse</a></code>
- <code title="post /v4/inbox/cas">client.inbox.<a href="./src/cas_parser/resources/inbox.py">list_cas_files</a>(\*\*<a href="src/cas_parser/types/inbox_list_cas_files_params.py">params</a>) -> <a href="./src/cas_parser/types/inbox_list_cas_files_response.py">InboxListCasFilesResponse</a></code>

# Kfintech

Types:

```python
from cas_parser.types import KfintechGenerateCasResponse
```

Methods:

- <code title="post /v4/kfintech/generate">client.kfintech.<a href="./src/cas_parser/resources/kfintech.py">generate_cas</a>(\*\*<a href="src/cas_parser/types/kfintech_generate_cas_params.py">params</a>) -> <a href="./src/cas_parser/types/kfintech_generate_cas_response.py">KfintechGenerateCasResponse</a></code>

# Nsdl

Methods:
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 = "cas-parser-python"
version = "1.12.0"
version = "1.13.0"
description = "The official Python library for the cas-parser API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
44 changes: 0 additions & 44 deletions src/cas_parser/_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
inbox,
smart,
credits,
kfintech,
access_token,
verify_token,
cams_kfintech,
Expand All @@ -55,7 +54,6 @@
from .resources.inbox import InboxResource, AsyncInboxResource
from .resources.smart import SmartResource, AsyncSmartResource
from .resources.credits import CreditsResource, AsyncCreditsResource
from .resources.kfintech import KfintechResource, AsyncKfintechResource
from .resources.cdsl.cdsl import CdslResource, AsyncCdslResource
from .resources.access_token import AccessTokenResource, AsyncAccessTokenResource
from .resources.verify_token import VerifyTokenResource, AsyncVerifyTokenResource
Expand Down Expand Up @@ -226,13 +224,6 @@ def inbox(self) -> InboxResource:

return InboxResource(self)

@cached_property
def kfintech(self) -> KfintechResource:
"""Endpoints for generating new CAS documents via email mailback (KFintech)."""
from .resources.kfintech import KfintechResource

return KfintechResource(self)

@cached_property
def nsdl(self) -> NsdlResource:
"""Endpoints for parsing CAS PDF files from different sources."""
Expand Down Expand Up @@ -546,13 +537,6 @@ def inbox(self) -> AsyncInboxResource:

return AsyncInboxResource(self)

@cached_property
def kfintech(self) -> AsyncKfintechResource:
"""Endpoints for generating new CAS documents via email mailback (KFintech)."""
from .resources.kfintech import AsyncKfintechResource

return AsyncKfintechResource(self)

@cached_property
def nsdl(self) -> AsyncNsdlResource:
"""Endpoints for parsing CAS PDF files from different sources."""
Expand Down Expand Up @@ -808,13 +792,6 @@ def inbox(self) -> inbox.InboxResourceWithRawResponse:

return InboxResourceWithRawResponse(self._client.inbox)

@cached_property
def kfintech(self) -> kfintech.KfintechResourceWithRawResponse:
"""Endpoints for generating new CAS documents via email mailback (KFintech)."""
from .resources.kfintech import KfintechResourceWithRawResponse

return KfintechResourceWithRawResponse(self._client.kfintech)

@cached_property
def nsdl(self) -> nsdl.NsdlResourceWithRawResponse:
"""Endpoints for parsing CAS PDF files from different sources."""
Expand Down Expand Up @@ -951,13 +928,6 @@ def inbox(self) -> inbox.AsyncInboxResourceWithRawResponse:

return AsyncInboxResourceWithRawResponse(self._client.inbox)

@cached_property
def kfintech(self) -> kfintech.AsyncKfintechResourceWithRawResponse:
"""Endpoints for generating new CAS documents via email mailback (KFintech)."""
from .resources.kfintech import AsyncKfintechResourceWithRawResponse

return AsyncKfintechResourceWithRawResponse(self._client.kfintech)

@cached_property
def nsdl(self) -> nsdl.AsyncNsdlResourceWithRawResponse:
"""Endpoints for parsing CAS PDF files from different sources."""
Expand Down Expand Up @@ -1094,13 +1064,6 @@ def inbox(self) -> inbox.InboxResourceWithStreamingResponse:

return InboxResourceWithStreamingResponse(self._client.inbox)

@cached_property
def kfintech(self) -> kfintech.KfintechResourceWithStreamingResponse:
"""Endpoints for generating new CAS documents via email mailback (KFintech)."""
from .resources.kfintech import KfintechResourceWithStreamingResponse

return KfintechResourceWithStreamingResponse(self._client.kfintech)

@cached_property
def nsdl(self) -> nsdl.NsdlResourceWithStreamingResponse:
"""Endpoints for parsing CAS PDF files from different sources."""
Expand Down Expand Up @@ -1237,13 +1200,6 @@ def inbox(self) -> inbox.AsyncInboxResourceWithStreamingResponse:

return AsyncInboxResourceWithStreamingResponse(self._client.inbox)

@cached_property
def kfintech(self) -> kfintech.AsyncKfintechResourceWithStreamingResponse:
"""Endpoints for generating new CAS documents via email mailback (KFintech)."""
from .resources.kfintech import AsyncKfintechResourceWithStreamingResponse

return AsyncKfintechResourceWithStreamingResponse(self._client.kfintech)

@cached_property
def nsdl(self) -> nsdl.AsyncNsdlResourceWithStreamingResponse:
"""Endpoints for parsing CAS PDF files from different sources."""
Expand Down
2 changes: 1 addition & 1 deletion src/cas_parser/_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__ = "cas_parser"
__version__ = "1.12.0" # x-release-please-version
__version__ = "1.13.0" # x-release-please-version
14 changes: 0 additions & 14 deletions src/cas_parser/resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,6 @@
CreditsResourceWithStreamingResponse,
AsyncCreditsResourceWithStreamingResponse,
)
from .kfintech import (
KfintechResource,
AsyncKfintechResource,
KfintechResourceWithRawResponse,
AsyncKfintechResourceWithRawResponse,
KfintechResourceWithStreamingResponse,
AsyncKfintechResourceWithStreamingResponse,
)
from .access_token import (
AccessTokenResource,
AsyncAccessTokenResource,
Expand Down Expand Up @@ -146,12 +138,6 @@
"AsyncInboxResourceWithRawResponse",
"InboxResourceWithStreamingResponse",
"AsyncInboxResourceWithStreamingResponse",
"KfintechResource",
"AsyncKfintechResource",
"KfintechResourceWithRawResponse",
"AsyncKfintechResourceWithRawResponse",
"KfintechResourceWithStreamingResponse",
"AsyncKfintechResourceWithStreamingResponse",
"NsdlResource",
"AsyncNsdlResource",
"NsdlResourceWithRawResponse",
Expand Down
Loading
Loading