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 @@
{
".": "4.3.0"
".": "4.4.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: 27
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/moderation-api/moderation-api-9c5291067ec36cba0c9ef772c5c8eb10238fb332f1f25d0e31f3f2ad87c24e5e.yml
openapi_spec_hash: 790cc0a36d6ed693c06a285c441ab977
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/moderation-api/moderation-api-e2abce1482c148fbbce5c7a7048691afc45935d1bde7feddea11c522ad47a3a1.yml
openapi_spec_hash: 3b3b86090b2243f865bc5aea8554c737
config_hash: 9d144cc6c49d3fd53e5b4472c1e22165
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 4.4.0 (2026-06-02)

Full Changelog: [v4.3.0...v4.4.0](https://github.com/moderation-api/sdk-typescript/compare/v4.3.0...v4.4.0)

### Features

* **api:** api update ([3f27be1](https://github.com/moderation-api/sdk-typescript/commit/3f27be13d92b5690ee8c87874b05c59018796da9))

## 4.3.0 (2026-06-02)

Full Changelog: [v4.2.0...v4.3.0](https://github.com/moderation-api/sdk-typescript/compare/v4.2.0...v4.3.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": "@moderation-api/sdk",
"version": "4.3.0",
"version": "4.4.0",
"description": "The official TypeScript library for the Moderation API API",
"author": "Moderation API <support@moderationapi.com>",
"types": "dist/index.d.ts",
Expand Down
24 changes: 24 additions & 0 deletions src/resources/queue/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1470,6 +1470,12 @@ export namespace WebhookEvent {
*/
flagged: boolean | null;

/**
* For object content, the field keys (e.g. "bio") that triggered a flag. Empty
* when no fields were flagged or the content is not an object.
*/
flagged_fields: Array<string>;

/**
* Moderation labels applied to the content
*/
Expand Down Expand Up @@ -2182,6 +2188,12 @@ export namespace WebhookEvent {
*/
flagged: boolean | null;

/**
* For object content, the field keys (e.g. "bio") that triggered a flag. Empty
* when no fields were flagged or the content is not an object.
*/
flagged_fields: Array<string>;

/**
* Moderation labels applied to the content
*/
Expand Down Expand Up @@ -2735,6 +2747,12 @@ export namespace WebhookEvent {
*/
flagged: boolean | null;

/**
* For object content, the field keys (e.g. "bio") that triggered a flag. Empty
* when no fields were flagged or the content is not an object.
*/
flagged_fields: Array<string>;

/**
* Moderation labels applied to the content
*/
Expand Down Expand Up @@ -3288,6 +3306,12 @@ export namespace WebhookEvent {
*/
flagged: boolean | null;

/**
* For object content, the field keys (e.g. "bio") that triggered a flag. Empty
* when no fields were flagged or the content is not an object.
*/
flagged_fields: Array<string>;

/**
* Moderation labels applied to the content
*/
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 = '4.3.0'; // x-release-please-version
export const VERSION = '4.4.0'; // x-release-please-version
Loading