Skip to content

Commit fd64edb

Browse files
author
Apideck Mirror Bot
committed
release: v0.2.7
### Bug Fixes * **runtime:** expand object/array query params (deepObject style) ([#140](https://github.com/apideck-libraries/mcp/issues/140)) ([1eedd58](1eedd58))
1 parent 29a541e commit fd64edb

9 files changed

Lines changed: 36 additions & 10 deletions

File tree

CHANGELOG.md

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

3+
## [0.2.7](https://github.com/apideck-libraries/mcp/compare/v0.2.6...v0.2.7) (2026-05-08)
4+
5+
6+
### Bug Fixes
7+
8+
* **runtime:** expand object/array query params (deepObject style) ([#140](https://github.com/apideck-libraries/mcp/issues/140)) ([1eedd58](https://github.com/apideck-libraries/mcp/commit/1eedd588aa1ff992fca1459c396fc88ee4d99825))
9+
310
## [0.2.6](https://github.com/apideck-libraries/mcp/compare/v0.2.5...v0.2.6) (2026-05-08)
411

512

dist/src/runtime.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/runtime.js

Lines changed: 21 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/runtime.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/tools.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/types.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,11 @@ export type BinaryInput = string | {
4747
data: string | Uint8Array;
4848
mimeType: string;
4949
};
50+
export type QueryValue = unknown;
5051
export interface RuntimeRequest {
5152
method: HttpMethod;
5253
path: string;
53-
query?: Record<string, string | number | boolean | undefined>;
54+
query?: Record<string, QueryValue>;
5455
headers?: Record<string, string>;
5556
body?: unknown;
5657
context: CallContext;

dist/src/types.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/src/types.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apideck/mcp",
3-
"version": "0.2.6",
3+
"version": "0.2.7",
44
"type": "module",
55
"packageManager": "pnpm@9.15.4",
66
"repository": {

0 commit comments

Comments
 (0)