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"
}
4 changes: 2 additions & 2 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-2fd773786951b723a5d7d7342bf1c6ab46f08bd2851e916d188faae379d5aa4c.yml
openapi_spec_hash: 7515d1e5fe3130b9f5411f7aacbc8a64
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cas-parser/cas-parser-e572d88c2af6e4d7bc4f7e119357fd3f68b1e67d612fd1d3a657d916cde0087c.yml
openapi_spec_hash: a9fc7d947111bffa9184f8ca8be4a579
config_hash: 5509bb7a961ae2e79114b24c381606d4
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 1.13.0 (2026-05-07)

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

### Features

* **api:** api update ([0116ca5](https://github.com/CASParser/cas-parser-node/commit/0116ca5490a4dcc51738a366f5664cdb6c6ee973))
* **api:** api update ([e997de1](https://github.com/CASParser/cas-parser-node/commit/e997de1bf4b9578656c61393865da3deb365a1db))


### Documentation

* clarify forwards compat behavior ([978bb0b](https://github.com/CASParser/cas-parser-node/commit/978bb0b17d57a90b1071a83d46b8a1f1aa417eaa))
* update logging docs ([6024e55](https://github.com/CASParser/cas-parser-node/commit/6024e55d27dee093886f8d99efdab0f0002a4871))
* update with proxy auth info ([1164937](https://github.com/CASParser/cas-parser-node/commit/11649372a063f6dd9c92ad70b017abbaf9fa3b6f))

## 1.12.0 (2026-05-01)

Full Changelog: [v1.11.0...v1.12.0](https://github.com/CASParser/cas-parser-node/compare/v1.11.0...v1.12.0)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cas-parser-node",
"version": "1.12.0",
"version": "1.13.0",
"description": "The official TypeScript library for the Cas Parser API",
"author": "Cas Parser <sameer@casparser.in>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "cas-parser-node-mcp",
"version": "1.12.0",
"version": "1.13.0",
"description": "The official MCP Server for the Cas Parser API",
"author": {
"name": "Cas Parser",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cas-parser-node-mcp",
"version": "1.12.0",
"version": "1.13.0",
"description": "The official MCP Server for the Cas Parser API",
"author": "Cas Parser <sameer@casparser.in>",
"types": "dist/index.d.ts",
Expand Down
10 changes: 5 additions & 5 deletions packages/mcp-server/src/local-docs-search.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const newMcpServer = async ({
new McpServer(
{
name: 'cas_parser_node_api',
version: '1.12.0',
version: '1.13.0',
},
{
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
Expand Down
42 changes: 21 additions & 21 deletions src/resources/inbound-email.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class InboundEmail extends APIResource {
}

/**
* Retrieve details of a specific mailbox including statistics.
* Retrieve details of a specific inbound email including statistics.
*
* @example
* ```ts
Expand All @@ -63,8 +63,8 @@ export class InboundEmail extends APIResource {
}

/**
* List all mailboxes associated with your API key. Returns active and inactive
* mailboxes (deleted mailboxes are excluded).
* List all inbound emails associated with your API key. Returns active and paused
* inbound emails (deleted ones are excluded).
*
* @example
* ```ts
Expand Down Expand Up @@ -106,13 +106,13 @@ export interface InboundEmailCreateResponse {
allowed_sources?: Array<'cdsl' | 'nsdl' | 'cams' | 'kfintech'>;

/**
* Webhook URL for email notifications. `null` means files are only retrievable via
* `GET /v4/inbound-email/{id}/files` (pull delivery).
* Webhook URL for email notifications. If set, we POST each parsed email here. If
* omitted, files are only retrievable via `GET /v4/inbound-email/{id}/files`.
*/
callback_url?: string | null;
callback_url?: string;

/**
* When the mailbox was created
* When the inbound email was created
*/
created_at?: string;

Expand All @@ -137,12 +137,12 @@ export interface InboundEmailCreateResponse {
reference?: string | null;

/**
* Current mailbox status
* Current inbound email lifecycle status
*/
status?: 'active' | 'paused';

/**
* When the mailbox was last updated
* When the inbound email was last updated
*/
updated_at?: string;
}
Expand All @@ -157,13 +157,13 @@ export interface InboundEmailRetrieveResponse {
allowed_sources?: Array<'cdsl' | 'nsdl' | 'cams' | 'kfintech'>;

/**
* Webhook URL for email notifications. `null` means files are only retrievable via
* `GET /v4/inbound-email/{id}/files` (pull delivery).
* Webhook URL for email notifications. If set, we POST each parsed email here. If
* omitted, files are only retrievable via `GET /v4/inbound-email/{id}/files`.
*/
callback_url?: string | null;
callback_url?: string;

/**
* When the mailbox was created
* When the inbound email was created
*/
created_at?: string;

Expand All @@ -188,12 +188,12 @@ export interface InboundEmailRetrieveResponse {
reference?: string | null;

/**
* Current mailbox status
* Current inbound email lifecycle status
*/
status?: 'active' | 'paused';

/**
* When the mailbox was last updated
* When the inbound email was last updated
*/
updated_at?: string;
}
Expand Down Expand Up @@ -224,13 +224,13 @@ export namespace InboundEmailListResponse {
allowed_sources?: Array<'cdsl' | 'nsdl' | 'cams' | 'kfintech'>;

/**
* Webhook URL for email notifications. `null` means files are only retrievable via
* `GET /v4/inbound-email/{id}/files` (pull delivery).
* Webhook URL for email notifications. If set, we POST each parsed email here. If
* omitted, files are only retrievable via `GET /v4/inbound-email/{id}/files`.
*/
callback_url?: string | null;
callback_url?: string;

/**
* When the mailbox was created
* When the inbound email was created
*/
created_at?: string;

Expand All @@ -255,12 +255,12 @@ export namespace InboundEmailListResponse {
reference?: string | null;

/**
* Current mailbox status
* Current inbound email lifecycle status
*/
status?: 'active' | 'paused';

/**
* When the mailbox was last updated
* When the inbound email was last updated
*/
updated_at?: string;
}
Expand Down
6 changes: 5 additions & 1 deletion src/resources/inbox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,11 @@ export namespace InboxListCasFilesResponse {
cas_type?: 'cdsl' | 'nsdl' | 'cams' | 'kfintech';

/**
* URL expiration time in seconds (default 86400 = 24 hours)
* URL expiration time in seconds. Defaults vary by source:
*
* - Gmail Inbox Import: 86400 (24h)
* - Inbound Email with `callback_url` set: 172800 (48h)
* - Inbound Email without `callback_url`: aligned with the session TTL (~30 min)
*/
expires_in?: number;

Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.12.0'; // x-release-please-version
export const VERSION = '1.13.0'; // x-release-please-version
Loading