Skip to content

Commit 1eb375d

Browse files
release: 0.141.0
1 parent 095eba1 commit 1eb375d

7 files changed

Lines changed: 33 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.140.0"
2+
".": "0.141.0"
33
}

CHANGELOG.md

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

3+
## 0.141.0 (2026-06-16)
4+
5+
Full Changelog: [v0.140.0...v0.141.0](https://github.com/lithic-com/lithic-node/compare/v0.140.0...v0.141.0)
6+
7+
### Features
8+
9+
* **api:** add CARD_TRANSACTION feature type to auth rules ([b0a0853](https://github.com/lithic-com/lithic-node/commit/b0a08535053d12a9ccfbdb087ca70877e180aee8))
10+
* **api:** add condition attributes and parameters to auth rules v2 ([7723499](https://github.com/lithic-com/lithic-node/commit/7723499e44b8191fa1b0b1738baac2b474e8e9c4))
11+
* **api:** Add created field and make completed_at nullable in latest_challenge ([a346991](https://github.com/lithic-com/lithic-node/commit/a346991c4221e91a0ca9745c8d16af4ed4c5cbd4))
12+
* **api:** add day_of_period field to loan tapes response ([68b8a9d](https://github.com/lithic-com/lithic-node/commit/68b8a9d3d1d1cd18d8adeb50546a5e805e6c05b4))
13+
* **api:** add hold adjustment action option to auth_rules.v2 ([a5646fa](https://github.com/lithic-com/lithic-node/commit/a5646face60183e7d600d5004d0e202b69152d00))
14+
* **api:** add name_validation field to card authorizations ([648f48a](https://github.com/lithic-com/lithic-node/commit/648f48aedafe4f636947ec86e70b5d1ab0e37426))
15+
* **api:** add route method to transactions ([543639a](https://github.com/lithic-com/lithic-node/commit/543639ac51ca316a0c2d5f23331dbbea1153aa82))
16+
* **api:** add tags field to payment responses ([527bd29](https://github.com/lithic-com/lithic-node/commit/527bd292b5baf8f564ba84abf27d40dd4227a937))
17+
* **api:** add transactionMonitoring resource with cases/queues/comments/files endpoints ([a156e4d](https://github.com/lithic-com/lithic-node/commit/a156e4d97d05084c8eefbb31da50a17a4e119bef))
18+
19+
20+
### Bug Fixes
21+
22+
* **client:** send content-type header for requests with an omitted optional body ([7d5d03d](https://github.com/lithic-com/lithic-node/commit/7d5d03d08f8d686740cdda7888a14efcadc4f565))
23+
* **mcp:** use `pure-lockfile` when building mcp server ([52fcdae](https://github.com/lithic-com/lithic-node/commit/52fcdae2df3264e79c2a9550630f2cca1f3c563b))
24+
25+
26+
### Documentation
27+
28+
* **api:** update support contact from email to URL ([6d084ee](https://github.com/lithic-com/lithic-node/commit/6d084ee96a3684fcb9bb70d08a5574193fa906ce))
29+
330
## 0.140.0 (2026-05-26)
431

532
Full Changelog: [v0.139.0...v0.140.0](https://github.com/lithic-com/lithic-node/compare/v0.139.0...v0.140.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.140.0",
3+
"version": "0.141.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.140.0",
4+
"version": "0.141.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.140.0",
3+
"version": "0.141.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.140.0',
32+
version: '0.141.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.140.0'; // x-release-please-version
1+
export const VERSION = '0.141.0'; // x-release-please-version

0 commit comments

Comments
 (0)