Skip to content

Commit 20d20ac

Browse files
authored
Merge pull request #8 from ppl-ai/release-please--branches--main--changes--next--components--perplexity_ai
2 parents 5c6225e + b1abf43 commit 20d20ac

File tree

7 files changed

+13
-29
lines changed

7 files changed

+13
-29
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.4.0"
2+
".": "0.5.0"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 5
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/perplexity-ai%2Fperplexity-c521eee7c440c9b8a6262ec75d47eb3f52a2735f1c3f733b80bff8ca1f98b153.yml
3-
openapi_spec_hash: 7b5a570eb6f33531a1174509877830d4
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/perplexity-ai%2Fperplexity-deb5905eb84985f1017bc9a16c10bbca104ea0b85b46e05b68693a4f8de1aff8.yml
3+
openapi_spec_hash: 9224a8248d0a30a2d79baac3833d67d2
44
config_hash: 5eb378664dbbf04226c3eeb86103761d

CHANGELOG.md

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

3+
## 0.5.0 (2025-09-19)
4+
5+
Full Changelog: [v0.4.0...v0.5.0](https://github.com/ppl-ai/perplexity-node/compare/v0.4.0...v0.5.0)
6+
7+
### Features
8+
9+
* **api:** manual updates ([1abd01a](https://github.com/ppl-ai/perplexity-node/commit/1abd01a085300544dd07a5d3417dab4c919ade25))
10+
311
## 0.4.0 (2025-09-17)
412

513
Full Changelog: [v0.3.0...v0.4.0](https://github.com/ppl-ai/perplexity-node/compare/v0.3.0...v0.4.0)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@perplexity-ai/perplexity_ai",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "The official TypeScript library for the Perplexity API",
55
"author": "Perplexity <>",
66
"types": "dist/index.d.ts",

src/resources/search.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -36,29 +36,13 @@ export namespace SearchCreateResponse {
3636
export interface SearchCreateParams {
3737
query: string | Array<string>;
3838

39-
country?: string | null;
40-
41-
last_updated_after_filter?: string | null;
42-
43-
last_updated_before_filter?: string | null;
44-
4539
max_results?: number;
4640

4741
max_tokens?: number;
4842

4943
max_tokens_per_page?: number;
5044

51-
safe_search?: boolean | null;
52-
53-
search_after_date_filter?: string | null;
54-
55-
search_before_date_filter?: string | null;
56-
57-
search_domain_filter?: Array<string> | null;
58-
5945
search_mode?: 'web' | 'academic' | 'sec' | null;
60-
61-
search_recency_filter?: 'hour' | 'day' | 'week' | 'month' | 'year' | null;
6246
}
6347

6448
export declare namespace Search {

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '0.4.0'; // x-release-please-version
1+
export const VERSION = '0.5.0'; // x-release-please-version

tests/api-resources/search.test.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,10 @@ describe('resource search', () => {
2424
test.skip('create: required and optional params', async () => {
2525
const response = await client.search.create({
2626
query: 'string',
27-
country: 'country',
28-
last_updated_after_filter: 'last_updated_after_filter',
29-
last_updated_before_filter: 'last_updated_before_filter',
3027
max_results: 0,
3128
max_tokens: 0,
3229
max_tokens_per_page: 0,
33-
safe_search: true,
34-
search_after_date_filter: 'search_after_date_filter',
35-
search_before_date_filter: 'search_before_date_filter',
36-
search_domain_filter: ['string'],
3730
search_mode: 'web',
38-
search_recency_filter: 'hour',
3931
});
4032
});
4133
});

0 commit comments

Comments
 (0)