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 @@
{
".": "0.30.0"
".": "0.30.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 11
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/perplexity-ai/perplexity-fff71875865f090e567436080392bfe633cefac2a82f5eba143ca6fcfed86a56.yml
openapi_spec_hash: 2cb780b456c70cbdcb1ba0182f424c9b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/perplexity-ai/perplexity-6f1190943034b93890a9c218eea0630d4b0de4018e3ca97a48fb467bdcf0c5a2.yml
openapi_spec_hash: 852b17614efb5895a656a42d5fa2f08a
config_hash: 059988c88f0dc18e9e393daed94b5eb6
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.30.1 (2026-05-27)

Full Changelog: [v0.30.0...v0.30.1](https://github.com/perplexityai/perplexity-node/compare/v0.30.0...v0.30.1)

### Bug Fixes

* **search:** remove search_context_size from search.create (premature) ([1c38fdb](https://github.com/perplexityai/perplexity-node/commit/1c38fdb841ddc425fa36e9ef136676b34033e59f))

## 0.30.0 (2026-05-27)

Full Changelog: [v0.29.1...v0.30.0](https://github.com/perplexityai/perplexity-node/compare/v0.29.1...v0.30.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": "@perplexity-ai/perplexity_ai",
"version": "0.30.0",
"version": "0.30.1",
"description": "The official TypeScript library for the Perplexity API",
"author": "Perplexity <api@perplexity.ai>",
"types": "dist/index.d.ts",
Expand Down
6 changes: 0 additions & 6 deletions src/resources/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ export interface SearchCreateParams {

search_before_date_filter?: string | null;

/**
* Controls how much search context is retrieved. Higher values return more content
* per result.
*/
search_context_size?: 'low' | 'medium' | 'high' | null;

search_domain_filter?: Array<string> | null;

search_language_filter?: Array<string> | null;
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 = '0.30.0'; // x-release-please-version
export const VERSION = '0.30.1'; // x-release-please-version
1 change: 0 additions & 1 deletion tests/api-resources/search.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ describe('resource search', () => {
max_tokens_per_page: 0,
search_after_date_filter: 'search_after_date_filter',
search_before_date_filter: 'search_before_date_filter',
search_context_size: 'low',
search_domain_filter: ['string'],
search_language_filter: ['string'],
search_mode: 'web',
Expand Down