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.40.0"
".": "1.41.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: 34
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/moderation-api/moderation-api-ed38c0519aa62ea0320bb4d46fad0e5255aebfd460b3dd6baa03b9af4ef7f18a.yml
openapi_spec_hash: d38359acb0ce2ba95b4ab991b47ca47b
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/moderation-api/moderation-api-4e324c5b209f6b1e2451e0fbafd20b35ba5fe2b57e3c70dd082faad332c3b779.yml
openapi_spec_hash: e974a7107729bb684c55008102a17754
config_hash: 6e090a71f4d354167d93b4534a0e7f05
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.41.0 (2026-08-28)

Full Changelog: [v1.40.0...v1.41.0](https://github.com/moderation-api/sdk-python/compare/v1.40.0...v1.41.0)

### Features

* **api:** api update ([11d5dda](https://github.com/moderation-api/sdk-python/commit/11d5ddabeceefa2a22ec92147ab8f7b24fd56421))

## 1.40.0 (2026-08-27)

Full Changelog: [v1.39.0...v1.40.0](https://github.com/moderation-api/sdk-python/compare/v1.39.0...v1.40.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "moderation_api"
version = "1.40.0"
version = "1.41.0"
description = "The official Python library for the moderation-api API"
dynamic = ["readme"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/moderation_api/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "moderation_api"
__version__ = "1.40.0" # x-release-please-version
__version__ = "1.41.0" # x-release-please-version
8 changes: 6 additions & 2 deletions src/moderation_api/types/queue_retrieve_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@ class QueueFilter(BaseModel):

before_date: Optional[str] = FieldInfo(alias="beforeDate", default=None)

casebook_handled: Optional[Literal["ALL", "ALLOWED", "REJECTED", "OVERRULED"]] = FieldInfo(
alias="casebookHandled", default=None
casebook_agreement: Optional[Literal["ALL", "OVERRULED", "AGREED"]] = FieldInfo(
alias="casebookAgreement", default=None
)

casebook_answer: Optional[Literal["ALL", "ALLOWED", "REJECTED", "NO_ANSWER"]] = FieldInfo(
alias="casebookAnswer", default=None
)

check_status: Optional[Literal["all", "checked", "unchecked"]] = FieldInfo(alias="checkStatus", default=None)
Expand Down
Loading