docs(files-app-integration): update openapi documentation

Signed-off-by: David Lima <antdavidlima@gmail.com>
This commit is contained in:
David Lima 2025-05-23 16:06:15 -03:00 committed by Vitor Mattos
parent d17e426f54
commit 79cb8dbf3e
No known key found for this signature in database
GPG key ID: 6FECE2AD4809003A
4 changed files with 34 additions and 12 deletions

View file

@ -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"
}
}
},
{

View file

@ -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"
}
}
},
{

View file

@ -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) */

View file

@ -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) */