Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c5475ef
fix(types): make fields nullable in account-holders, accounts, and cards
stainless-app[bot] Apr 21, 2026
5e2ba1b
codegen metadata
stainless-app[bot] Apr 21, 2026
bb95c1f
chore(internal): update docs ordering
stainless-app[bot] Apr 22, 2026
eb0bf7c
chore(internal): more robust bootstrap script
stainless-app[bot] Apr 22, 2026
f64d754
chore: restructure docs search code
stainless-app[bot] Apr 24, 2026
d0f5362
feat(api): add AMEX to network enum in settlement reports
stainless-app[bot] Apr 24, 2026
d78245b
chore(formatter): run prettier and eslint separately
stainless-app[bot] Apr 24, 2026
c38ad4c
chore(internal): codegen related update
stainless-app[bot] Apr 27, 2026
7031267
feat: Update card expiration from 6 years to 5 years
stainless-app[bot] Apr 27, 2026
2406cf7
feat: support setting headers via env
stainless-app[bot] Apr 27, 2026
17f1170
chore(internal): codegen related update
stainless-app[bot] Apr 28, 2026
da614e0
codegen metadata
stainless-app[bot] Apr 28, 2026
10aa40f
chore(format): run eslint and prettier separately
stainless-app[bot] Apr 28, 2026
062a350
chore: avoid formatting file that gets changed during releases
stainless-app[bot] Apr 29, 2026
9d3d4a8
codegen metadata
stainless-app[bot] Apr 29, 2026
8ab2d75
codegen metadata
stainless-app[bot] Apr 30, 2026
4d4db79
docs(api): improve SettlementDetail event_tokens and transaction_toke…
stainless-app[bot] May 1, 2026
6d4c205
docs: clarify forwards compat behavior
stainless-app[bot] May 4, 2026
ec4f6ca
docs: update with proxy auth info
stainless-app[bot] May 5, 2026
f2b26de
feat(api): add IS_NEW_MERCHANT metric to auth rules v2
stainless-app[bot] May 5, 2026
63b51b8
feat(api): add CARD_TRANSACTION_UPDATE support to auth rules v2
stainless-app[bot] May 6, 2026
e4ee6ee
docs: update http mcp docs
stainless-app[bot] May 6, 2026
0121676
docs: update logging docs
stainless-app[bot] May 6, 2026
f749542
release: 0.138.0
stainless-app[bot] May 6, 2026
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
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ CHANGELOG.md
/ecosystem-tests/*/**
/node_modules
/deno
/packages/mcp-server/manifest.json

# don't format tsc output, will break source maps
dist
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.137.0"
".": "0.138.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: 191
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic%2Flithic-d29b68bb85936070878d8badaa8a7c5991313285e70a990bc812c838eba85373.yml
openapi_spec_hash: 54b44da68df22eb0ea99f2bc564667a2
config_hash: ac8326134e692f3f3bdec82396bbec80
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/lithic/lithic-0f374e78a0212145a2f55a55dfc39a612de19094d5152ae26b1bc74b01b9e343.yml
openapi_spec_hash: ec888cdaebea979a2cd6231ca04c346c
config_hash: 01dfc901bb6d54b0f582155d779bcbe0
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## 0.138.0 (2026-05-06)

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

### Features

* **api:** add AMEX to network enum in settlement reports ([d0f5362](https://github.com/lithic-com/lithic-node/commit/d0f5362f7bc061d07058f1fd39cd5f843615ed7a))
* **api:** add CARD_TRANSACTION_UPDATE support to auth rules v2 ([63b51b8](https://github.com/lithic-com/lithic-node/commit/63b51b81215e634bbfe0ec4e75155fa0f200e8f5))
* **api:** add IS_NEW_MERCHANT metric to auth rules v2 ([f2b26de](https://github.com/lithic-com/lithic-node/commit/f2b26de0a41a087240c9214c2dc433f9a0cd85e4))
* support setting headers via env ([2406cf7](https://github.com/lithic-com/lithic-node/commit/2406cf738dafa08c8c0e09a833c25b079c3c4887))
* Update card expiration from 6 years to 5 years ([7031267](https://github.com/lithic-com/lithic-node/commit/7031267707c21414d050657426d5a0dcdfe7318e))


### Bug Fixes

* **types:** make fields nullable in account-holders, accounts, and cards ([c5475ef](https://github.com/lithic-com/lithic-node/commit/c5475ef1525294e6a50e47637e3479ae5b4c6866))


### Chores

* avoid formatting file that gets changed during releases ([062a350](https://github.com/lithic-com/lithic-node/commit/062a350217e39bf8b054c4bdfb3054cbfa7137ac))
* **format:** run eslint and prettier separately ([10aa40f](https://github.com/lithic-com/lithic-node/commit/10aa40fd72fd0933d2bc331dfbec23ce97b6c62f))
* **formatter:** run prettier and eslint separately ([d78245b](https://github.com/lithic-com/lithic-node/commit/d78245b7aad796549148adcf228d0077233d0419))
* **internal:** codegen related update ([17f1170](https://github.com/lithic-com/lithic-node/commit/17f1170f306b327ae2766e6f55d0fa64cc9f7b62))
* **internal:** codegen related update ([c38ad4c](https://github.com/lithic-com/lithic-node/commit/c38ad4c69e7bdaefbc8f6288b29206ec5157650a))
* **internal:** more robust bootstrap script ([eb0bf7c](https://github.com/lithic-com/lithic-node/commit/eb0bf7c3e099e87bca8f2997d582fdb10a2b796c))
* **internal:** update docs ordering ([bb95c1f](https://github.com/lithic-com/lithic-node/commit/bb95c1f529a85c3e04eab6783b1f7301e6085670))
* restructure docs search code ([f64d754](https://github.com/lithic-com/lithic-node/commit/f64d75431f41bef55ed246bf3da3d8a1183fd327))


### Documentation

* **api:** improve SettlementDetail event_tokens and transaction_token descriptions ([4d4db79](https://github.com/lithic-com/lithic-node/commit/4d4db79662318ed08590ff8ab40e1f6d7ab0a8be))
* clarify forwards compat behavior ([6d4c205](https://github.com/lithic-com/lithic-node/commit/6d4c205c664de06157fe7f8db7ed04fdab8625b2))
* update http mcp docs ([e4ee6ee](https://github.com/lithic-com/lithic-node/commit/e4ee6ee7992ebca94156456cc8fc1e1dd904373c))
* update logging docs ([0121676](https://github.com/lithic-com/lithic-node/commit/0121676332dd550c327a397f91b61aa7f7aff875))
* update with proxy auth info ([ec4f6ca](https://github.com/lithic-com/lithic-node/commit/ec4f6ca8dfaefc3fe230109d3a09fdb53c1a3812))

## 0.137.0 (2026-04-20)

Full Changelog: [v0.136.0...v0.137.0](https://github.com/lithic-com/lithic-node/compare/v0.136.0...v0.137.0)
Expand Down
3 changes: 3 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,21 @@ Types:
- <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">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">ConditionalBlockParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalCardTransactionUpdateActionParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalOperation</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalTokenizationActionParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ConditionalValue</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">EventStream</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">MerchantLockParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">ReportStats</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">RuleFeature</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">SpendVelocityFilters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">TypescriptCodeParameters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">VelocityLimitFilters</a></code>
- <code><a href="./src/resources/auth-rules/v2/v2.ts">VelocityLimitParams</a></code>
Expand Down
3 changes: 0 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// @ts-check
import tseslint from 'typescript-eslint';
import unusedImports from 'eslint-plugin-unused-imports';
import prettier from 'eslint-plugin-prettier';

export default tseslint.config(
{
Expand All @@ -14,11 +13,9 @@ export default tseslint.config(
plugins: {
'@typescript-eslint': tseslint.plugin,
'unused-imports': unusedImports,
prettier,
},
rules: {
'no-unused-vars': 'off',
'prettier/prettier': 'error',
'unused-imports/no-unused-imports': 'error',
'no-restricted-imports': [
'error',
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lithic",
"version": "0.137.0",
"version": "0.138.0",
"description": "The official TypeScript library for the Lithic API",
"author": "Lithic <sdk-feedback@lithic.com>",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -38,7 +38,6 @@
"@typescript-eslint/eslint-plugin": "8.31.1",
"@typescript-eslint/parser": "8.31.1",
"eslint": "^9.39.1",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-unused-imports": "^4.1.4",
"iconv-lite": "^0.6.3",
"jest": "^29.4.0",
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.137.0",
"version": "0.138.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.137.0",
"version": "0.138.0",
"description": "The official MCP Server for the Lithic API",
"author": "Lithic <sdk-feedback@lithic.com>",
"types": "dist/index.d.ts",
Expand Down
Loading
Loading