Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.141.0"
".": "0.142.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 214
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-a4afc884f86f30a87445552888031ac1ca18aed0476d7120da555bf457627e65.yml
openapi_spec_hash: ce8d0830986c702f0c7a693b1c3cc5a2
config_hash: 4b618a1df59e555cebe6aa13e8c0218f
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-8e691d2dedaea1906ebbe28b28c978855d5e4fe5fe595a8d23917df851123400.yml
openapi_spec_hash: c33e82abb4d7c979d05386ca230464d3
config_hash: 5bb913c05ebeb301ec925b16e75bb251
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.142.0 (2026-06-19)

Full Changelog: [v0.141.0...v0.142.0](https://github.com/lithic-com/lithic-node/compare/v0.141.0...v0.142.0)

### Features

* **api:** add ACH payment update support to auth_rules v2 ([de080ce](https://github.com/lithic-com/lithic-node/commit/de080ce7c0d196f5e338ed45241730a7a18606c1))

## 0.141.0 (2026-06-16)

Full Changelog: [v0.140.0...v0.141.0](https://github.com/lithic-com/lithic-node/compare/v0.140.0...v0.141.0)
Expand Down
2 changes: 2 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,15 @@ Types:

Types:

- <code><a href="./src/resources/auth-rules/v2/v2.ts">ACHPaymentUpdateAction</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">AuthRule</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">AuthRuleCondition</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">AuthRuleVersion</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">BacktestStats</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">CardTransactionUpdateAction</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">Conditional3DSActionParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalACHActionParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalACHPaymentUpdateActionParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalAttribute</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalAuthorizationActionParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalAuthorizationAdjustmentParameters</a></code>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lithic",
"version": "0.141.0",
"version": "0.142.0",
"description": "The official TypeScript library for the Lithic API",
"author": "Lithic <sdk-feedback@lithic.com>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"dxt_version": "0.2",
"name": "lithic-mcp",
"version": "0.141.0",
"version": "0.142.0",
"description": "The official MCP Server for the Lithic API",
"author": {
"name": "Lithic",
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lithic-mcp",
"version": "0.141.0",
"version": "0.142.0",
"description": "The official MCP Server for the Lithic API",
"author": "Lithic <sdk-feedback@lithic.com>",
"types": "dist/index.d.ts",
Expand Down
33 changes: 16 additions & 17 deletions packages/mcp-server/src/local-docs-search.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/mcp-server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const newMcpServer = async ({
new McpServer(
{
name: 'lithic_api',
version: '0.141.0',
version: '0.142.0',
},
{
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
Expand Down
4 changes: 4 additions & 0 deletions src/resources/auth-rules/auth-rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import { APIResource } from '../../core/resource';
import * as V2API from './v2/v2';
import {
ACHPaymentUpdateAction,
AuthRule,
AuthRuleCondition,
AuthRuleVersion,
Expand All @@ -11,6 +12,7 @@ import {
CardTransactionUpdateAction,
Conditional3DSActionParameters,
ConditionalACHActionParameters,
ConditionalACHPaymentUpdateActionParameters,
ConditionalAttribute,
ConditionalAuthorizationActionParameters,
ConditionalAuthorizationAdjustmentParameters,
Expand Down Expand Up @@ -259,13 +261,15 @@ export declare namespace AuthRules {

export {
V2 as V2,
type ACHPaymentUpdateAction as ACHPaymentUpdateAction,
type AuthRule as AuthRule,
type AuthRuleCondition as AuthRuleCondition,
type AuthRuleVersion as AuthRuleVersion,
type BacktestStats as BacktestStats,
type CardTransactionUpdateAction as CardTransactionUpdateAction,
type Conditional3DSActionParameters as Conditional3DSActionParameters,
type ConditionalACHActionParameters as ConditionalACHActionParameters,
type ConditionalACHPaymentUpdateActionParameters as ConditionalACHPaymentUpdateActionParameters,
type ConditionalAttribute as ConditionalAttribute,
type ConditionalAuthorizationActionParameters as ConditionalAuthorizationActionParameters,
type ConditionalAuthorizationAdjustmentParameters as ConditionalAuthorizationAdjustmentParameters,
Expand Down
2 changes: 2 additions & 0 deletions src/resources/auth-rules/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
export { AuthRules, type SignalsResponse } from './auth-rules';
export {
V2,
type ACHPaymentUpdateAction,
type AuthRule,
type AuthRuleCondition,
type AuthRuleVersion,
type BacktestStats,
type CardTransactionUpdateAction,
type Conditional3DSActionParameters,
type ConditionalACHActionParameters,
type ConditionalACHPaymentUpdateActionParameters,
type ConditionalAttribute,
type ConditionalAuthorizationActionParameters,
type ConditionalAuthorizationAdjustmentParameters,
Expand Down
2 changes: 2 additions & 0 deletions src/resources/auth-rules/v2/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ export {
} from './backtests';
export {
V2,
type ACHPaymentUpdateAction,
type AuthRule,
type AuthRuleCondition,
type AuthRuleVersion,
type BacktestStats,
type CardTransactionUpdateAction,
type Conditional3DSActionParameters,
type ConditionalACHActionParameters,
type ConditionalACHPaymentUpdateActionParameters,
type ConditionalAttribute,
type ConditionalAuthorizationActionParameters,
type ConditionalAuthorizationAdjustmentParameters,
Expand Down
Loading
Loading