chore: add documentation of openapi

Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
Vitor Mattos 2025-12-16 20:52:16 -03:00
parent 624d959fb4
commit 0c5461f16c
No known key found for this signature in database
GPG key ID: 6FECE2AD4809003A
4 changed files with 22 additions and 8 deletions

View file

@ -2987,12 +2987,17 @@
"schema": {
"type": "object",
"required": [
"mode"
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to force a signature flow for all documents"
},
"mode": {
"type": "string",
"description": "Signature flow mode: 'parallel' or 'ordered_numeric'"
"nullable": true,
"description": "Signature flow mode: 'parallel' or 'ordered_numeric' (only used when enabled is true)"
}
}
}

View file

@ -11504,12 +11504,17 @@
"schema": {
"type": "object",
"required": [
"mode"
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether to force a signature flow for all documents"
},
"mode": {
"type": "string",
"description": "Signature flow mode: 'parallel' or 'ordered_numeric'"
"nullable": true,
"description": "Signature flow mode: 'parallel' or 'ordered_numeric' (only used when enabled is true)"
}
}
}

View file

@ -1635,8 +1635,10 @@ export interface operations {
requestBody: {
content: {
"application/json": {
/** @description Signature flow mode: 'parallel' or 'ordered_numeric' */
mode: string;
/** @description Whether to force a signature flow for all documents */
enabled: boolean;
/** @description Signature flow mode: 'parallel' or 'ordered_numeric' (only used when enabled is true) */
mode?: string | null;
};
};
};

View file

@ -6048,8 +6048,10 @@ export interface operations {
requestBody: {
content: {
"application/json": {
/** @description Signature flow mode: 'parallel' or 'ordered_numeric' */
mode: string;
/** @description Whether to force a signature flow for all documents */
enabled: boolean;
/** @description Signature flow mode: 'parallel' or 'ordered_numeric' (only used when enabled is true) */
mode?: string | null;
};
};
};