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 @@
{
".": "1.0.1"
".": "1.1.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: 30
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/parallel-web/parallel-sdk-ffc54f0dafed1e8e209559eee680a2c1968a9a17e7e74a49d2f45b6470449be2.yml
openapi_spec_hash: d953a6e7b41db65161edc059ca84257b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/parallel-web/parallel-sdk-3001a018c926803bb713f19d99c3d5d39ed44ce3fe670bebefc326fd252b8821.yml
openapi_spec_hash: 0883a98aa5b566818f5910d01c831c4a
config_hash: 8572a2d7a5ede9ade3be8ad4d8aafd7d
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.1.0 (2026-06-08)

Full Changelog: [v1.0.1...v1.1.0](https://github.com/parallel-web/parallel-sdk-typescript/compare/v1.0.1...v1.1.0)

### Features

* **api:** add turbo mode to search ([7973be4](https://github.com/parallel-web/parallel-sdk-typescript/commit/7973be4e885648aa9bb3a736ddbac8c89e6d66f4))

## 1.0.1 (2026-06-03)

Full Changelog: [v1.0.0...v1.0.1](https://github.com/parallel-web/parallel-sdk-typescript/compare/v1.0.0...v1.0.1)
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": "parallel-web",
"version": "1.0.1",
"version": "1.1.0",
"description": "The official TypeScript library for the Parallel API",
"author": "Parallel <support@parallel.ai>",
"types": "dist/index.d.ts",
Expand Down
2 changes: 0 additions & 2 deletions src/resources/beta/findall.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,6 @@ export class FindAll extends APIResource {
/**
* Transforms a natural language search objective into a structured FindAll spec.
*
* Note: Access to this endpoint requires the parallel-beta header.
*
* The generated specification serves as a suggested starting point and can be
* further customized by the user.
*
Expand Down
14 changes: 12 additions & 2 deletions src/resources/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,14 @@ export interface UpdateMonitorEventStreamSettings {
* Advanced monitor configuration.
*/
advanced_settings?: AdvancedMonitorSettings | null;

/**
* Updated search query for the monitor. Use this for minor updates to prompts and
* instructions only. Major changes to the query may lead to unexpected results in
* change detection, as the monitor compares new results with what was previously
* seen.
*/
query?: string | null;
}

/**
Expand All @@ -571,8 +579,10 @@ export interface UpdateMonitorEventStreamSettings {
* Only fields that are explicitly included in the request body are updated. Pass
* `null` for `webhook` or `metadata` to clear those fields. To update
* type-specific settings on an `event_stream` monitor, include `type` and
* `settings`; pass `null` for `settings.advanced_settings` to clear it. At least
* one non-`type` field must be provided.
* `settings`; pass `settings.query` to update the prompt, or `null` for
* `settings.advanced_settings` to clear it. If `settings` is provided, `type` is
* required to identify the settings shape. The request must still include at least
* one field to update; empty updates fail validation.
*/
export interface UpdateMonitorRequest {
/**
Expand Down
11 changes: 6 additions & 5 deletions src/resources/top-level.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,12 +342,13 @@ export interface SearchParams {
max_chars_total?: number | null;

/**
* Search mode preset: supported values are `basic` and `advanced`. Basic mode
* offers the lowest latency and works best with 2-3 high-quality search_queries.
* Advanced mode provides higher quality with more advanced retrieval and
* compression. Defaults to `advanced` when omitted.
* Search mode preset: supported values are `turbo`, `basic`, and `advanced`. Turbo
* mode is optimized for the fastest responses. Basic mode offers low latency and
* works best with 2-3 high-quality search_queries. Advanced mode provides higher
* quality with more advanced retrieval and compression. Defaults to `advanced`
* when omitted.
*/
mode?: 'basic' | 'advanced' | null;
mode?: 'turbo' | 'basic' | 'advanced' | null;

/**
* Natural-language description of the underlying question or goal driving the
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '1.0.1'; // x-release-please-version
export const VERSION = '1.1.0'; // x-release-please-version
2 changes: 1 addition & 1 deletion tests/api-resources/top-level.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('top level methods', () => {
},
client_model: 'claude-opus-4-7',
max_chars_total: 0,
mode: 'basic',
mode: 'turbo',
objective: 'objective',
session_id: 'session_id',
});
Expand Down
Loading