Skip to content

Commit f0ce7cd

Browse files
release: 0.145.0
1 parent 5185f3d commit f0ce7cd

7 files changed

Lines changed: 30 additions & 6 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.144.0"
2+
".": "0.145.0"
33
}

CHANGELOG.md

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

3+
## 0.145.0 (2026-07-21)
4+
5+
Full Changelog: [v0.144.0...v0.145.0](https://github.com/lithic-com/lithic-node/compare/v0.144.0...v0.145.0)
6+
7+
### Features
8+
9+
* **api:** add embed.session_generated and embed.viewed webhook event types ([11b01a3](https://github.com/lithic-com/lithic-node/commit/11b01a39d4e6d861ec9d344c307bd93217a0e2ce))
10+
* **api:** add PAYMENT enum value to category in book-transfers ([5336e09](https://github.com/lithic-com/lithic-node/commit/5336e09f4a90efeb39a9f8491fe1a82be988efd1))
11+
* **stlc:** configurable CI runner and private-production-repo support in workflow templates ([82e45d9](https://github.com/lithic-com/lithic-node/commit/82e45d9b890c8137b8bb6847a4728730b10d359f))
12+
13+
14+
### Bug Fixes
15+
16+
* **ci:** bump @arethetypeswrong/cli to ^0.18.0 and run CI workflows on Node 24 ([26e94a9](https://github.com/lithic-com/lithic-node/commit/26e94a90083a853ff7ff5ec8ae0f45ef05e8ed20))
17+
* **types:** make comment, created_at, fraud_type, updated_at nullable in fraud transactions ([942f058](https://github.com/lithic-com/lithic-node/commit/942f0586ac274cebbe2a1e7f8ae194d1e42aa16f))
18+
19+
20+
### Documentation
21+
22+
* **api:** expand dispute event descriptions in events resource ([6f33a7e](https://github.com/lithic-com/lithic-node/commit/6f33a7eac9ba69995d7cfdd4edba0e9844e0a2ec))
23+
* **api:** update category parameter description in externalPayments.list ([ffeabcb](https://github.com/lithic-com/lithic-node/commit/ffeabcba30c154d65bcf9c2fb3f74d8c90acd3cd))
24+
* **api:** update max duration in auth-rules v2 trailing window ([5185f3d](https://github.com/lithic-com/lithic-node/commit/5185f3dc6140363506626d135091e0a337f6ea79))
25+
* **api:** update simulate_clearing method documentation in transactions ([ce3f22c](https://github.com/lithic-com/lithic-node/commit/ce3f22c7e0a90684772cd4c82c361763c9fcc063))
26+
327
## 0.144.0 (2026-06-29)
428

529
Full Changelog: [v0.143.0...v0.144.0](https://github.com/lithic-com/lithic-node/compare/v0.143.0...v0.144.0)

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.144.0",
3+
"version": "0.145.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: 1 addition & 1 deletion
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.144.0",
4+
"version": "0.145.0",
55
"description": "The official MCP Server for the Lithic API",
66
"author": {
77
"name": "Lithic",

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.144.0",
3+
"version": "0.145.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
@@ -29,7 +29,7 @@ export const newMcpServer = async ({
2929
new McpServer(
3030
{
3131
name: 'lithic_api',
32-
version: '0.144.0',
32+
version: '0.145.0',
3333
},
3434
{
3535
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),

src/version.ts

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

0 commit comments

Comments
 (0)