Skip to content
Merged
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 @@
{
".": "2.7.0"
".": "2.8.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 37
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-960cb623c7ec84bf4dc0f5945cbc19eec9cca48271071f400d96066eaa55dbd6.yml
openapi_spec_hash: 84fd39e3f4dc964bf0c32d4e95da1b34
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-758c3a2fbd5b7be61c8e6e0ad2e6a5ec30695747bb675960d888c497647d13d7.yml
openapi_spec_hash: 00002d90bde02f67e174368ae470c597
config_hash: 2bea1743c84d63bd61f8501a6ea63065
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 2.8.0 (2026-08-01)

Full Changelog: [v2.7.0...v2.8.0](https://github.com/context-dot-dev/context-typescript-sdk/compare/v2.7.0...v2.8.0)

### Features

* **api:** api update ([25fb630](https://github.com/context-dot-dev/context-typescript-sdk/commit/25fb6308fc3014add60d93b50cef3798faba6228))
* **api:** api update ([085497a](https://github.com/context-dot-dev/context-typescript-sdk/commit/085497a10fec2c8751c2fb05d9874d250f5db21e))
* **api:** api update ([a7943e0](https://github.com/context-dot-dev/context-typescript-sdk/commit/a7943e0755ae10cec275d64884d2cac98313049b))

## 2.7.0 (2026-07-31)

Full Changelog: [v2.6.0...v2.7.0](https://github.com/context-dot-dev/context-typescript-sdk/compare/v2.6.0...v2.7.0)
Expand Down
6 changes: 4 additions & 2 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,10 @@ Methods:

Types:

- <code><a href="./src/resources/batch.ts">ErrorCount</a></code>
- <code><a href="./src/resources/batch.ts">Error</a></code>
- <code><a href="./src/resources/batch.ts">PageErrorCount</a></code>
- <code><a href="./src/resources/batch.ts">Failure</a></code>
- <code><a href="./src/resources/batch.ts">CrawlControls</a></code>
- <code><a href="./src/resources/batch.ts">Intake</a></code>
- <code><a href="./src/resources/batch.ts">BatchRetrieveResponse</a></code>
- <code><a href="./src/resources/batch.ts">BatchListResponse</a></code>
- <code><a href="./src/resources/batch.ts">BatchCancelResponse</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": "context.dev",
"version": "2.7.0",
"version": "2.8.0",
"description": "The official TypeScript library for the Context Dev API",
"author": "Context Dev <hello@context.dev>",
"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": "context.dev-mcp",
"version": "2.7.0",
"version": "2.8.0",
"description": "The official MCP Server for the Context Dev API",
"author": {
"name": "Context Dev",
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": "context.dev-mcp",
"version": "2.7.0",
"version": "2.8.0",
"description": "The official MCP Server for the Context Dev API",
"author": "Context Dev <hello@context.dev>",
"types": "dist/index.d.ts",
Expand Down
28 changes: 13 additions & 15 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 @@ -28,7 +28,7 @@ export const newMcpServer = async ({
new McpServer(
{
name: 'context_dev_api',
version: '2.7.0',
version: '2.8.0',
},
{
instructions: await getInstructions({ stainlessApiKey, customInstructionsPath }),
Expand Down
12 changes: 8 additions & 4 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ import {
BatchRetrieveResponse,
BatchSubmitParams,
BatchSubmitResponse,
Error,
ErrorCount,
CrawlControls,
Failure,
Intake,
PageErrorCount,
} from './resources/batch';
import {
Brand,
Expand Down Expand Up @@ -935,8 +937,10 @@ export declare namespace ContextDev {

export {
Batch as Batch,
type ErrorCount as ErrorCount,
type Error as Error,
type PageErrorCount as PageErrorCount,
type Failure as Failure,
type CrawlControls as CrawlControls,
type Intake as Intake,
type BatchRetrieveResponse as BatchRetrieveResponse,
type BatchListResponse as BatchListResponse,
type BatchCancelResponse as BatchCancelResponse,
Expand Down
Loading
Loading