From 42e782a70932df3e6d4bbde584794cc943dd45d2 Mon Sep 17 00:00:00 2001 From: provokateurin Date: Fri, 17 May 2024 14:39:34 +0200 Subject: [PATCH] fix(OpenAPI): Add missing reactionsSelf to ChatMessage Signed-off-by: provokateurin --- lib/ResponseDefinitions.php | 1 + openapi-backend-sipbridge.json | 6 ++++++ openapi-federation.json | 6 ++++++ openapi-full.json | 6 ++++++ openapi.json | 6 ++++++ src/types/openapi/openapi-backend-sipbridge.ts | 1 + src/types/openapi/openapi-federation.ts | 1 + src/types/openapi/openapi-full.ts | 1 + src/types/openapi/openapi.ts | 1 + 9 files changed, 29 insertions(+) diff --git a/lib/ResponseDefinitions.php b/lib/ResponseDefinitions.php index 27495b16bc9..6f9437cbb64 100644 --- a/lib/ResponseDefinitions.php +++ b/lib/ResponseDefinitions.php @@ -110,6 +110,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 ef189714160..7c9f66328b8 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -469,6 +469,12 @@ "format": "int64" } }, + "reactionsSelf": { + "type": "array", + "items": { + "type": "string" + } + }, "referenceId": { "type": "string" }, diff --git a/openapi.json b/openapi.json index 661cd6e9831..7dce3c5b9fe 100644 --- a/openapi.json +++ b/openapi.json @@ -410,6 +410,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 65a818bf8d5..d3ef90a9ec0 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -651,6 +651,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 5ba97b49d73..78416ceabb3 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -490,6 +490,7 @@ export type components = { reactions: { [key: string]: number; }; + reactionsSelf?: string[]; referenceId: string; /** Format: int64 */ timestamp: number;