mirror of
https://github.com/LibreSign/libresign.git
synced 2025-12-18 05:20:45 +01:00
docs(files-app-integration): update openapi documentation
Signed-off-by: David Lima <antdavidlima@gmail.com>
This commit is contained in:
parent
d17e426f54
commit
79cb8dbf3e
4 changed files with 34 additions and 12 deletions
|
|
@ -334,6 +334,7 @@
|
|||
"required": [
|
||||
"type",
|
||||
"nodeId",
|
||||
"signedNodeId",
|
||||
"url"
|
||||
],
|
||||
"properties": {
|
||||
|
|
@ -345,6 +346,11 @@
|
|||
"format": "int64",
|
||||
"minimum": 0
|
||||
},
|
||||
"signedNodeId": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"minimum": 0
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
|
|
@ -3877,12 +3883,15 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "nodeId",
|
||||
"name": "nodeIds[]",
|
||||
"in": "query",
|
||||
"description": "The nodeId (also called fileId). Is the id of a file at Nextcloud",
|
||||
"description": "The list of nodeIds (also called fileIds). It's the ids of files at Nextcloud",
|
||||
"schema": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
"type": "array",
|
||||
"nullable": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
17
openapi.json
17
openapi.json
|
|
@ -264,6 +264,7 @@
|
|||
"required": [
|
||||
"type",
|
||||
"nodeId",
|
||||
"signedNodeId",
|
||||
"url"
|
||||
],
|
||||
"properties": {
|
||||
|
|
@ -275,6 +276,11 @@
|
|||
"format": "int64",
|
||||
"minimum": 0
|
||||
},
|
||||
"signedNodeId": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"minimum": 0
|
||||
},
|
||||
"url": {
|
||||
"type": "string"
|
||||
}
|
||||
|
|
@ -3727,12 +3733,15 @@
|
|||
}
|
||||
},
|
||||
{
|
||||
"name": "nodeId",
|
||||
"name": "nodeIds[]",
|
||||
"in": "query",
|
||||
"description": "The nodeId (also called fileId). Is the id of a file at Nextcloud",
|
||||
"description": "The list of nodeIds (also called fileIds). It's the ids of files at Nextcloud",
|
||||
"schema": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
"type": "array",
|
||||
"nullable": true,
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1445,6 +1445,8 @@ export type components = {
|
|||
type: string;
|
||||
/** Format: int64 */
|
||||
nodeId: number;
|
||||
/** Format: int64 */
|
||||
signedNodeId: number;
|
||||
url: string;
|
||||
};
|
||||
callback: string | null;
|
||||
|
|
@ -2886,8 +2888,8 @@ export interface operations {
|
|||
length?: number | null;
|
||||
/** @description Signer UUID */
|
||||
signer_uuid?: string | null;
|
||||
/** @description The nodeId (also called fileId). Is the id of a file at Nextcloud */
|
||||
nodeId?: string | null;
|
||||
/** @description The list of nodeIds (also called fileIds). It's the ids of files at Nextcloud */
|
||||
"nodeIds[]"?: string[] | null;
|
||||
/** @description Status could be none or many of 0 = draft, 1 = able to sign, 2 = partial signed, 3 = signed, 4 = deleted. */
|
||||
"status[]"?: number[] | null;
|
||||
/** @description Start date of signature request (UNIX timestamp) */
|
||||
|
|
|
|||
|
|
@ -1076,6 +1076,8 @@ export type components = {
|
|||
type: string;
|
||||
/** Format: int64 */
|
||||
nodeId: number;
|
||||
/** Format: int64 */
|
||||
signedNodeId: number;
|
||||
url: string;
|
||||
};
|
||||
callback: string | null;
|
||||
|
|
@ -2495,8 +2497,8 @@ export interface operations {
|
|||
length?: number | null;
|
||||
/** @description Signer UUID */
|
||||
signer_uuid?: string | null;
|
||||
/** @description The nodeId (also called fileId). Is the id of a file at Nextcloud */
|
||||
nodeId?: string | null;
|
||||
/** @description The list of nodeIds (also called fileIds). It's the ids of files at Nextcloud */
|
||||
"nodeIds[]"?: string[] | null;
|
||||
/** @description Status could be none or many of 0 = draft, 1 = able to sign, 2 = partial signed, 3 = signed, 4 = deleted. */
|
||||
"status[]"?: number[] | null;
|
||||
/** @description Start date of signature request (UNIX timestamp) */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue