chore(proxy): resync generated OpenAPI snapshot and dashboard schema

Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
Devin AI 2026-08-28 01:21:10 +00:00
parent 9cc5465a69
commit 122cc0f3a5
2 changed files with 17 additions and 0 deletions

View file

@ -11364,6 +11364,18 @@
"description": "Path to a JSON file containing ad-hoc recognizers for Presidio",
"title": "Presidio Ad Hoc Recognizers"
},
"presidio_analyze_chunk_size_bytes": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"description": "Maximum UTF-8 bytes of text sent in a single Presidio /analyze call. Longer texts are split into overlapping chunks of at most this size and the merged results are remapped onto the original text. Defaults to 500000; set it below your analyzer deployment's request body limit, leaving headroom for the rest of the analyze payload.",
"title": "Presidio Analyze Chunk Size Bytes"
},
"presidio_analyzer_api_base": {
"anyOf": [
{

View file

@ -29943,6 +29943,11 @@ export interface components {
* @description Path to a JSON file containing ad-hoc recognizers for Presidio
*/
presidio_ad_hoc_recognizers?: string | null;
/**
* Presidio Analyze Chunk Size Bytes
* @description Maximum UTF-8 bytes of text sent in a single Presidio /analyze call. Longer texts are split into overlapping chunks of at most this size and the merged results are remapped onto the original text. Defaults to 500000; set it below your analyzer deployment's request body limit, leaving headroom for the rest of the analyze payload.
*/
presidio_analyze_chunk_size_bytes?: number | null;
/**
* Presidio Analyzer Api Base
* @description Base URL for the Presidio analyzer API