mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-17 21:12:16 +01:00
chore: add documentation of openapi
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
parent
624d959fb4
commit
0c5461f16c
4 changed files with 22 additions and 8 deletions
|
|
@ -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)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue