diff --git a/lib/ResponseDefinitions.php b/lib/ResponseDefinitions.php index 0470af3e255..2d0c766b805 100644 --- a/lib/ResponseDefinitions.php +++ b/lib/ResponseDefinitions.php @@ -103,6 +103,7 @@ * isReplyable: bool, * markdown: bool, * reactions: array|\stdClass, + * reactionsSelf?: string[], * referenceId: string, * timestamp: int, * token: string, diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 5d0c6b6c42c..0110456944c 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -308,6 +308,12 @@ "format": "int64" } }, + "reactionsSelf": { + "type": "array", + "items": { + "type": "string" + } + }, "referenceId": { "type": "string" }, diff --git a/openapi-federation.json b/openapi-federation.json index eb255d8044b..1fcab6197c6 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -308,6 +308,12 @@ "format": "int64" } }, + "reactionsSelf": { + "type": "array", + "items": { + "type": "string" + } + }, "referenceId": { "type": "string" }, diff --git a/openapi-full.json b/openapi-full.json index f5c7033e3e5..78bf283ec3f 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -506,6 +506,12 @@ "format": "int64" } }, + "reactionsSelf": { + "type": "array", + "items": { + "type": "string" + } + }, "referenceId": { "type": "string" }, diff --git a/openapi.json b/openapi.json index 0028d1154d5..cd0f449cf2b 100644 --- a/openapi.json +++ b/openapi.json @@ -447,6 +447,12 @@ "format": "int64" } }, + "reactionsSelf": { + "type": "array", + "items": { + "type": "string" + } + }, "referenceId": { "type": "string" }, diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index e2032d5648a..f7c859b20c0 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -117,6 +117,7 @@ export type components = { reactions: { [key: string]: number; }; + reactionsSelf?: string[]; referenceId: string; /** Format: int64 */ timestamp: number; diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index 164ac921749..27b299c533f 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -132,6 +132,7 @@ export type components = { reactions: { [key: string]: number; }; + reactionsSelf?: string[]; referenceId: string; /** Format: int64 */ timestamp: number; diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 08f2b6aa0c9..f44fa4585dd 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -679,6 +679,7 @@ export type components = { reactions: { [key: string]: number; }; + reactionsSelf?: string[]; referenceId: string; /** Format: int64 */ timestamp: number; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 57fb073a147..7158c684aa3 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -518,6 +518,7 @@ export type components = { reactions: { [key: string]: number; }; + reactionsSelf?: string[]; referenceId: string; /** Format: int64 */ timestamp: number;