Skip to content

Commit

Permalink
Merge pull request #12386 from nextcloud/fix/openapi/chat-message-rea…
Browse files Browse the repository at this point in the history
…ctions-self
  • Loading branch information
provokateurin authored May 22, 2024
2 parents 47f0449 + 0bfe8f1 commit aea691b
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/ResponseDefinitions.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@
* isReplyable: bool,
* markdown: bool,
* reactions: array<string, integer>|\stdClass,
* reactionsSelf?: string[],
* referenceId: string,
* timestamp: int,
* token: string,
Expand Down
6 changes: 6 additions & 0 deletions openapi-backend-sipbridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},
Expand Down
6 changes: 6 additions & 0 deletions openapi-federation.json
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},
Expand Down
6 changes: 6 additions & 0 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -506,6 +506,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},
Expand Down
6 changes: 6 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -447,6 +447,12 @@
"format": "int64"
}
},
"reactionsSelf": {
"type": "array",
"items": {
"type": "string"
}
},
"referenceId": {
"type": "string"
},
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi-backend-sipbridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -679,6 +679,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
Expand Down
1 change: 1 addition & 0 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -518,6 +518,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
Expand Down

0 comments on commit aea691b

Please sign in to comment.