Skip to content

Commit f0e79cd

Browse files
release: 0.135.0
1 parent fd9278e commit f0e79cd

7 files changed

Lines changed: 36 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.134.0"
2+
".": "0.135.0"
33
}

CHANGELOG.md

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

3+
## 0.135.0 (2026-03-23)
4+
5+
Full Changelog: [v0.134.0...v0.135.0](https://github.com/lithic-com/lithic-node/compare/v0.134.0...v0.135.0)
6+
7+
### Features
8+
9+
* **api:** add card_age/account_age attributes to auth rules v2 ([37971d6](https://github.com/lithic-com/lithic-node/commit/37971d6f89e503b4e7cdc0425ac7ae3c2ebf80c4))
10+
* **api:** add override_company_name parameter to external payments create ([868f064](https://github.com/lithic-com/lithic-node/commit/868f064eec2ebc0a5aaa1d22ee6aae5b860b9219))
11+
* **api:** add service location fields to auth rules v2 and merchant models ([c364f7b](https://github.com/lithic-com/lithic-node/commit/c364f7b5924ee351a1a30f65bd79abfec12848d2))
12+
13+
14+
### Chores
15+
16+
* **internal:** fix MCP server TS errors that occur with required client options ([42fb3a8](https://github.com/lithic-com/lithic-node/commit/42fb3a8cd1fb71ab45617036d96a70e57cf1a7af))
17+
* **internal:** switch from steady to prism for mock server ([90699a3](https://github.com/lithic-com/lithic-node/commit/90699a32f04947398a9ca20308a477a88cf589c9))
18+
* **internal:** update gitignore ([b49bfc6](https://github.com/lithic-com/lithic-node/commit/b49bfc659568b0a11a097def35e053985144d386))
19+
* **tests:** bump steady to v0.19.4 ([9491eb7](https://github.com/lithic-com/lithic-node/commit/9491eb75d9b0618688f2dc66fb4d2930c959ad51))
20+
* **tests:** bump steady to v0.19.5 ([37b04df](https://github.com/lithic-com/lithic-node/commit/37b04dfd4ac5ef9fee33d19cfb396cd8dbccc1d4))
21+
* **tests:** bump steady to v0.19.6 ([f9125f0](https://github.com/lithic-com/lithic-node/commit/f9125f0c12d7b6d66c6ebb50a2f5f1ab96cfe70a))
22+
23+
24+
### Documentation
25+
26+
* **api:** update nature_of_business and qr_code_url field descriptions ([3f262d6](https://github.com/lithic-com/lithic-node/commit/3f262d6318c01ab2c1535387bd8bc98361c615bb))
27+
28+
29+
### Refactors
30+
31+
* **tests:** switch from prism to steady ([5d648e0](https://github.com/lithic-com/lithic-node/commit/5d648e0e62eb55e2c27e252d120054ec3878e37e))
32+
333
## 0.134.0 (2026-03-17)
434

535
Full Changelog: [v0.133.0...v0.134.0](https://github.com/lithic-com/lithic-node/compare/v0.133.0...v0.134.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.134.0",
3+
"version": "0.135.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.134.0",
4+
"version": "0.135.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.134.0",
3+
"version": "0.135.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.134.0',
24+
version: '0.135.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.134.0'; // x-release-please-version
1+
export const VERSION = '0.135.0'; // x-release-please-version

0 commit comments

Comments
 (0)