Skip to content

Commit ca0b3d5

Browse files
release: 0.133.0
1 parent 53ee90c commit ca0b3d5

7 files changed

Lines changed: 41 additions & 8 deletions

File tree

.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.132.1"
2+
".": "0.133.0"
33
}

CHANGELOG.md

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

3+
## 0.133.0 (2026-03-16)
4+
5+
Full Changelog: [v0.132.1...v0.133.0](https://github.com/lithic-com/lithic-node/compare/v0.132.1...v0.133.0)
6+
7+
### Features
8+
9+
* **api:** add ACH_RECEIPT_RELEASED_EARLY event type to payments ([0bb4d95](https://github.com/lithic-com/lithic-node/commit/0bb4d953f34885a6803e4abfbee90d2839886f81))
10+
* **api:** add excluded_account_tokens to auth rules v2 ([30cfe26](https://github.com/lithic-com/lithic-node/commit/30cfe260a66896cab48aeb4f5c7abd884704dfce))
11+
* **api:** add mcp-server package, CI/CD workflows, build scripts, update README ([d942481](https://github.com/lithic-com/lithic-node/commit/d942481202af958f1a60a6584bec8803927b9a63))
12+
* **api:** add penalty_rates field to interest tier schedule ([aa412d0](https://github.com/lithic-com/lithic-node/commit/aa412d01a8256c187bf23275a5fb1a017793539e))
13+
* **api:** add versions field to auth rules v2 report response ([aa20bdb](https://github.com/lithic-com/lithic-node/commit/aa20bdbca0982173e9dff5f9fa56a5cc9162bdbb))
14+
* **api:** add WIRE category/events, remove remittance_information from payments ([8808ca2](https://github.com/lithic-com/lithic-node/commit/8808ca292e45a4a6e0479e8bfff9122fb58634b6))
15+
16+
17+
### Bug Fixes
18+
19+
* **api:** [breaking] unify webhook schemas for digital_wallet.tokenization_approval_request webhooks ([4166fbc](https://github.com/lithic-com/lithic-node/commit/4166fbc084b226872d7418c5d086fc7a156f6797))
20+
* **types:** make start/end required, remove auth_rule_token from backtests ([f61f218](https://github.com/lithic-com/lithic-node/commit/f61f21812b7ea528969ac97ceb0e3bbb72570e3c))
21+
22+
23+
### Chores
24+
25+
* **internal:** regenerate SDK with no functional changes ([1c21ea8](https://github.com/lithic-com/lithic-node/commit/1c21ea83d2d4e770561b18419da2f320a9cb6d69))
26+
27+
28+
### Documentation
29+
30+
* **api:** update disputes terminology to chargeback request ([2128851](https://github.com/lithic-com/lithic-node/commit/2128851ca772d5405e62ca4ede55a942b976cf3e))
31+
332
## 0.132.1 (2026-03-10)
433

534
Full Changelog: [v0.132.0...v0.132.1](https://github.com/lithic-com/lithic-node/compare/v0.132.0...v0.132.1)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lithic",
3-
"version": "0.132.1",
3+
"version": "0.133.0",
44
"description": "The official TypeScript library for the Lithic API",
55
"author": "Lithic <sdk-feedback@lithic.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/manifest.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dxt_version": "0.2",
33
"name": "lithic-mcp",
4-
"version": "0.132.1",
4+
"version": "0.133.0",
55
"description": "The official MCP Server for the Lithic API",
66
"author": {
77
"name": "Lithic",
@@ -18,7 +18,9 @@
1818
"entry_point": "index.js",
1919
"mcp_config": {
2020
"command": "node",
21-
"args": ["${__dirname}/index.js"],
21+
"args": [
22+
"${__dirname}/index.js"
23+
],
2224
"env": {
2325
"LITHIC_API_KEY": "${user_config.LITHIC_API_KEY}",
2426
"LITHIC_WEBHOOK_SECRET": "${user_config.LITHIC_WEBHOOK_SECRET}"
@@ -46,5 +48,7 @@
4648
"node": ">=18.0.0"
4749
}
4850
},
49-
"keywords": ["api"]
51+
"keywords": [
52+
"api"
53+
]
5054
}

packages/mcp-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lithic-mcp",
3-
"version": "0.132.1",
3+
"version": "0.133.0",
44
"description": "The official MCP Server for the Lithic API",
55
"author": "Lithic <sdk-feedback@lithic.com>",
66
"types": "dist/index.d.ts",

packages/mcp-server/src/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2121
new McpServer(
2222
{
2323
name: 'lithic_api',
24-
version: '0.132.1',
24+
version: '0.133.0',
2525
},
2626
{
2727
instructions: await getInstructions(stainlessApiKey),

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.132.1'; // x-release-please-version
1+
export const VERSION = '0.133.0'; // x-release-please-version

0 commit comments

Comments
 (0)