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.2.0"
".": "1.3.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: 33
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/parallel-web/parallel-sdk-e72f6dcf18ffc713480444feef670bbbe754221e0a68336823642b474c20ec93.yml
openapi_spec_hash: ae8c3c62a78f2413f52c240c2a5d68a8
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/parallel-web/parallel-sdk-bc41f3e04b7d50e2bc4cc7844a81b5e2035c0409506d34af6f9722aebe5561bf.yml
openapi_spec_hash: 305d7d32c612fc989f722b21ddeb9da5
config_hash: d4f69197dba970d05757624fe3f7b373
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.3.0 (2026-08-12)

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

### Features

* **api:** manual updates ([3dddb8d](https://github.com/parallel-web/parallel-sdk-typescript/commit/3dddb8d3d3b31ab2115c71a46b14bba520c700dc))

## 1.2.0 (2026-08-10)

Full Changelog: [v1.1.0...v1.2.0](https://github.com/parallel-web/parallel-sdk-typescript/compare/v1.1.0...v1.2.0)
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.2.0",
"version": "1.3.0",
"description": "The official TypeScript library for the Parallel API",
"author": "Parallel <support@parallel.ai>",
"types": "dist/index.d.ts",
Expand Down
15 changes: 8 additions & 7 deletions src/resources/top-level.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,14 @@ export interface SearchParams {
max_chars_total?: number | null;

/**
* 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?: 'turbo' | 'basic' | 'advanced' | null;
* Search mode preset: supported values are `turbo`, `fast`, `basic`, and
* `advanced`. Turbo mode is optimized for the fastest responses. Use Fast mode for
* high quality search within a 1-second latency budget. 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?: 'turbo' | 'fast' | '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.2.0'; // x-release-please-version
export const VERSION = '1.3.0'; // x-release-please-version
Loading