From 44ba1065817708a268b35164b90b83b5d577a223 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 20:27:04 +0000 Subject: [PATCH 1/2] docs(api): update cash_amount field description in card authorizations --- .stats.yml | 4 ++-- src/resources/card-authorizations.ts | 11 ++++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.stats.yml b/.stats.yml index d092e24a..e05fda1e 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 214 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-47e9f78d22682623e313f1689f5fa7e3420575ff285a14a2f4704c49ffb6b72e.yml -openapi_spec_hash: 4797fe46d942cb32e648a79015783d01 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-d83e3ddb148bc0c81ff97bd31b82027d5b37efc110f5981103e7b9a2ae281c86.yml +openapi_spec_hash: f607b0571c4ed82a93a3df7bc9e9351b config_hash: 5bb913c05ebeb301ec925b16e75bb251 diff --git a/src/resources/card-authorizations.ts b/src/resources/card-authorizations.ts index 56c44608..4b17784f 100644 --- a/src/resources/card-authorizations.ts +++ b/src/resources/card-authorizations.ts @@ -81,12 +81,13 @@ export interface CardAuthorization { cardholder_currency: string; /** - * The portion of the transaction requested as cash back by the cardholder, and - * does not include any acquirer fees. The amount field includes the purchase - * amount, the requested cash back amount, and any acquirer fees. + * The amount of cash requested by the cardholder, in the cardholder billing + * currency's smallest unit. For purchase-with-cashback transactions this is the + * cashback portion only; for ATM transactions this is the full amount. This amount + * includes all acquirer fees. * - * If no cash back was requested, the value of this field will be 0, and the field - * will always be present. + * If no cash was requested, the value of this field will be 0, and the field will + * always be present. */ cash_amount: number; From 28dda6a63446748d541c3d3d68f096880965dbda Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 20:27:37 +0000 Subject: [PATCH 2/2] release: 0.143.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ package.json | 2 +- packages/mcp-server/manifest.json | 2 +- packages/mcp-server/package.json | 2 +- packages/mcp-server/src/server.ts | 2 +- src/version.ts | 2 +- 7 files changed, 14 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d147a1aa..ce37f01a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.143.0" + ".": "0.143.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index fd5baa02..846a7d69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.143.1 (2026-06-25) + +Full Changelog: [v0.143.0...v0.143.1](https://github.com/lithic-com/lithic-node/compare/v0.143.0...v0.143.1) + +### Documentation + +* **api:** update cash_amount field description in card authorizations ([44ba106](https://github.com/lithic-com/lithic-node/commit/44ba1065817708a268b35164b90b83b5d577a223)) + ## 0.143.0 (2026-06-23) Full Changelog: [v0.142.0...v0.143.0](https://github.com/lithic-com/lithic-node/compare/v0.142.0...v0.143.0) diff --git a/package.json b/package.json index 32f491da..451dcff8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lithic", - "version": "0.143.0", + "version": "0.143.1", "description": "The official TypeScript library for the Lithic API", "author": "Lithic ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/manifest.json b/packages/mcp-server/manifest.json index 0ac8889b..c51c4901 100644 --- a/packages/mcp-server/manifest.json +++ b/packages/mcp-server/manifest.json @@ -1,7 +1,7 @@ { "dxt_version": "0.2", "name": "lithic-mcp", - "version": "0.143.0", + "version": "0.143.1", "description": "The official MCP Server for the Lithic API", "author": { "name": "Lithic", diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index b0c47f26..ffa5671c 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "lithic-mcp", - "version": "0.143.0", + "version": "0.143.1", "description": "The official MCP Server for the Lithic API", "author": "Lithic ", "types": "dist/index.d.ts", diff --git a/packages/mcp-server/src/server.ts b/packages/mcp-server/src/server.ts index b398f9b9..84fb6ee7 100644 --- a/packages/mcp-server/src/server.ts +++ b/packages/mcp-server/src/server.ts @@ -29,7 +29,7 @@ export const newMcpServer = async ({ new McpServer( { name: 'lithic_api', - version: '0.143.0', + version: '0.143.1', }, { instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }), diff --git a/src/version.ts b/src/version.ts index 3a6782e3..f7c61890 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = '0.143.0'; // x-release-please-version +export const VERSION = '0.143.1'; // x-release-please-version