mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
fix(OpenAPI): Add missing reactionsSelf to ChatMessage
Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
parent
0bdcdd63db
commit
42e782a709
9 changed files with 29 additions and 0 deletions
|
|
@ -110,6 +110,7 @@ namespace OCA\Talk;
|
|||
* isReplyable: bool,
|
||||
* markdown: bool,
|
||||
* reactions: array<string, integer>|\stdClass,
|
||||
* reactionsSelf?: string[],
|
||||
* referenceId: string,
|
||||
* timestamp: int,
|
||||
* token: string,
|
||||
|
|
|
|||
|
|
@ -308,6 +308,12 @@
|
|||
"format": "int64"
|
||||
}
|
||||
},
|
||||
"reactionsSelf": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"referenceId": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -308,6 +308,12 @@
|
|||
"format": "int64"
|
||||
}
|
||||
},
|
||||
"reactionsSelf": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"referenceId": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -469,6 +469,12 @@
|
|||
"format": "int64"
|
||||
}
|
||||
},
|
||||
"reactionsSelf": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"referenceId": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -410,6 +410,12 @@
|
|||
"format": "int64"
|
||||
}
|
||||
},
|
||||
"reactionsSelf": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"referenceId": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -117,6 +117,7 @@ export type components = {
|
|||
reactions: {
|
||||
[key: string]: number;
|
||||
};
|
||||
reactionsSelf?: string[];
|
||||
referenceId: string;
|
||||
/** Format: int64 */
|
||||
timestamp: number;
|
||||
|
|
|
|||
|
|
@ -132,6 +132,7 @@ export type components = {
|
|||
reactions: {
|
||||
[key: string]: number;
|
||||
};
|
||||
reactionsSelf?: string[];
|
||||
referenceId: string;
|
||||
/** Format: int64 */
|
||||
timestamp: number;
|
||||
|
|
|
|||
|
|
@ -651,6 +651,7 @@ export type components = {
|
|||
reactions: {
|
||||
[key: string]: number;
|
||||
};
|
||||
reactionsSelf?: string[];
|
||||
referenceId: string;
|
||||
/** Format: int64 */
|
||||
timestamp: number;
|
||||
|
|
|
|||
|
|
@ -490,6 +490,7 @@ export type components = {
|
|||
reactions: {
|
||||
[key: string]: number;
|
||||
};
|
||||
reactionsSelf?: string[];
|
||||
referenceId: string;
|
||||
/** Format: int64 */
|
||||
timestamp: number;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue