Skip to content

Commit d4141ef

Browse files
release: 0.1.0-alpha.30
1 parent 51c6c2c commit d4141ef

File tree

7 files changed

+24
-6
lines changed

7 files changed

+24
-6
lines changed

.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.1.0-alpha.29"
2+
".": "0.1.0-alpha.30"
33
}

CHANGELOG.md

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

3+
## 0.1.0-alpha.30 (2026-03-08)
4+
5+
Full Changelog: [v0.1.0-alpha.29...v0.1.0-alpha.30](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.29...v0.1.0-alpha.30)
6+
7+
### Bug Fixes
8+
9+
* **client:** preserve URL params already embedded in path ([6cbd733](https://github.com/Scan-Documents/node-sdk/commit/6cbd7337b0f0f2e187fc8123c7eef86704327372))
10+
11+
12+
### Chores
13+
14+
* **ci:** skip uploading artifacts on stainless-internal branches ([2aff58a](https://github.com/Scan-Documents/node-sdk/commit/2aff58a69e6caba41e7b9171781a53254f570fc5))
15+
* **internal:** codegen related update ([df64e3c](https://github.com/Scan-Documents/node-sdk/commit/df64e3c1d77cba0a7a3e43d154bd4ba0db69edc0))
16+
* **internal:** codegen related update ([5982213](https://github.com/Scan-Documents/node-sdk/commit/59822139383e80e2b5351c014ab9ced47cce5b6e))
17+
* **internal:** use x-stainless-mcp-client-envs header for MCP remote code tool calls ([807bfb7](https://github.com/Scan-Documents/node-sdk/commit/807bfb793c7ff25838c7b585b93494dcf2050b5a))
18+
* **mcp-server:** return access instructions for 404 without API key ([368d6f4](https://github.com/Scan-Documents/node-sdk/commit/368d6f4e8ace2d9bda932ae9307b827ef7741236))
19+
* update placeholder string ([28577d0](https://github.com/Scan-Documents/node-sdk/commit/28577d087ff00807ee92cb7a9ac36fc670b0f52e))
20+
321
## 0.1.0-alpha.29 (2026-02-27)
422

523
Full Changelog: [v0.1.0-alpha.28...v0.1.0-alpha.29](https://github.com/Scan-Documents/node-sdk/compare/v0.1.0-alpha.28...v0.1.0-alpha.29)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "scan-documents",
3-
"version": "0.1.0-alpha.29",
3+
"version": "0.1.0-alpha.30",
44
"description": "The official TypeScript library for the Scan Documents API",
55
"author": "Scan Documents <support@scan-documents.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": "scan-documents-mcp",
4-
"version": "0.1.0-alpha.29",
4+
"version": "0.1.0-alpha.30",
55
"description": "The official MCP Server for the Scan Documents API",
66
"author": {
77
"name": "Scan Documents",

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": "scan-documents-mcp",
3-
"version": "0.1.0-alpha.29",
3+
"version": "0.1.0-alpha.30",
44
"description": "The official MCP Server for the Scan Documents API",
55
"author": "Scan Documents <support@scan-documents.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
@@ -20,7 +20,7 @@ export const newMcpServer = async (stainlessApiKey: string | undefined) =>
2020
new McpServer(
2121
{
2222
name: 'scan_documents_api',
23-
version: '0.1.0-alpha.29',
23+
version: '0.1.0-alpha.30',
2424
},
2525
{
2626
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.1.0-alpha.29'; // x-release-please-version
1+
export const VERSION = '0.1.0-alpha.30'; // x-release-please-version

0 commit comments

Comments
 (0)