Skip to content

Commit

Permalink
Merge pull request #12472 from nextcloud/backport/12386/stable29
Browse files Browse the repository at this point in the history
  • Loading branch information
provokateurin authored Jun 7, 2024
2 parents 0bdcdd6 + 42e782a commit aa7c047
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 @@ -110,6 +110,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 @@ -469,6 +469,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 @@ -410,6 +410,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 @@ -651,6 +651,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 @@ -490,6 +490,7 @@ export type components = {
reactions: {
[key: string]: number;
};
reactionsSelf?: string[];
referenceId: string;
/** Format: int64 */
timestamp: number;
Expand Down

0 comments on commit aa7c047

Please sign in to comment.