fix(OpenAPI): Add missing reactionsSelf to ChatMessage

Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
provokateurin 2024-05-17 14:39:34 +02:00 committed by backportbot[bot]
commit 42e782a709
9 changed files with 29 additions and 0 deletions

View file

@ -110,6 +110,7 @@ namespace OCA\Talk;
* isReplyable: bool,
* markdown: bool,
* reactions: array<string, integer>|\stdClass,
* reactionsSelf?: string[],
* referenceId: string,
* timestamp: int,
* token: string,

View file

@ -308,6 +308,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},

View file

@ -308,6 +308,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},

View file

@ -469,6 +469,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},

View file

@ -410,6 +410,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},

View file

@ -117,6 +117,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;

View file

@ -132,6 +132,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;

View file

@ -651,6 +651,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;

View file

@ -490,6 +490,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;