From 1b8516d7b1ee215299f11a174aa6af6157d98a19 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 18:28:18 +0000 Subject: [PATCH 1/2] feat(api): api update --- .stats.yml | 4 ++-- src/profound/types/report_citations_params.py | 12 ++++++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/.stats.yml b/.stats.yml index 136d244..c2dea54 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 21 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-9763f8d3ad06588eb2cbf8c4423d3a5110879bd99f7863d6814102a0996a3afa.yml -openapi_spec_hash: bd9dea031643e4d3eda34c356ed3a6bd +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/profound%2Fprofound-60fd3573b25e712010987a81465389796030091f4050b445672d11a544a9188b.yml +openapi_spec_hash: b1bbf1d8c7da5a691c60c1089d466a44 config_hash: 21703d42103a7b9c01f9331e6864f8dc diff --git a/src/profound/types/report_citations_params.py b/src/profound/types/report_citations_params.py index 7820430..75ae62f 100644 --- a/src/profound/types/report_citations_params.py +++ b/src/profound/types/report_citations_params.py @@ -11,6 +11,7 @@ from .topic_name_filter_param import TopicNameFilterParam from .shared_params.pagination import Pagination from .shared_params.path_filter import PathFilter +from .shared_params.prompt_filter import PromptFilter from .shared_params.tag_id_filter import TagIDFilter from .shared_params.model_id_filter import ModelIDFilter from .shared_params.topic_id_filter import TopicIDFilter @@ -25,6 +26,7 @@ "FilterRootDomainFilter", "FilterPromptTypeFilter", "FilterCitationCategoryFilter", + "FilterPromptIDFilter", ] @@ -197,6 +199,14 @@ class FilterCitationCategoryFilter(TypedDict, total=False): value: Required[Union[str, SequenceNotStr[str]]] +class FilterPromptIDFilter(TypedDict, total=False): + field: Required[Literal["prompt_id"]] + + operator: Required[Literal["is", "not_is", "in", "not_in"]] + + value: Required[Union[str, SequenceNotStr[str]]] + + Filter: TypeAlias = Union[ FilterHostnameFilter, PathFilter, @@ -210,4 +220,6 @@ class FilterCitationCategoryFilter(TypedDict, total=False): FilterPromptTypeFilter, PersonaIDFilter, FilterCitationCategoryFilter, + PromptFilter, + FilterPromptIDFilter, ] From 925fc7f8f9b3428de49ccd65d92b4c05a3af83f7 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Thu, 26 Feb 2026 18:29:44 +0000 Subject: [PATCH 2/2] release: 0.28.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- src/profound/_version.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0ac3c2a..8935e93 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.27.1" + ".": "0.28.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 12b61e5..008e6e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.28.0 (2026-02-26) + +Full Changelog: [v0.27.1...v0.28.0](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.27.1...v0.28.0) + +### Features + +* **api:** api update ([1b8516d](https://github.com/cooper-square-technologies/profound-python-sdk/commit/1b8516d7b1ee215299f11a174aa6af6157d98a19)) + ## 0.27.1 (2026-02-25) Full Changelog: [v0.27.0...v0.27.1](https://github.com/cooper-square-technologies/profound-python-sdk/compare/v0.27.0...v0.27.1) diff --git a/pyproject.toml b/pyproject.toml index 9c4771f..ad05f29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "profound" -version = "0.27.1" +version = "0.28.0" description = "The official Python library for the profound API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/src/profound/_version.py b/src/profound/_version.py index 69712a8..4fdb377 100644 --- a/src/profound/_version.py +++ b/src/profound/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "profound" -__version__ = "0.27.1" # x-release-please-version +__version__ = "0.28.0" # x-release-please-version