From e957a83e290041ce63fa391c0864da5e2884b62e Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Tue, 2 Sep 2025 14:26:15 +0200 Subject: [PATCH] chore(assets): Recompile assets Signed-off-by: Joas Schilling --- openapi-backend-sipbridge.json | 7 +++++++ openapi-federation.json | 7 +++++++ openapi-full.json | 7 +++++++ openapi.json | 7 +++++++ src/types/openapi/openapi-backend-sipbridge.ts | 3 +++ src/types/openapi/openapi-federation.ts | 3 +++ src/types/openapi/openapi-full.ts | 3 +++ src/types/openapi/openapi.ts | 3 +++ 8 files changed, 40 insertions(+) diff --git a/openapi-backend-sipbridge.json b/openapi-backend-sipbridge.json index 8e614df51f..fe8c8593a8 100644 --- a/openapi-backend-sipbridge.json +++ b/openapi-backend-sipbridge.json @@ -439,6 +439,13 @@ }, "isThread": { "type": "boolean" + }, + "threadTitle": { + "type": "string" + }, + "threadReplies": { + "type": "integer", + "format": "int64" } } } diff --git a/openapi-federation.json b/openapi-federation.json index 3dc02e2bc5..252caebe40 100644 --- a/openapi-federation.json +++ b/openapi-federation.json @@ -439,6 +439,13 @@ }, "isThread": { "type": "boolean" + }, + "threadTitle": { + "type": "string" + }, + "threadReplies": { + "type": "integer", + "format": "int64" } } } diff --git a/openapi-full.json b/openapi-full.json index 769d5b5921..19da250d1a 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -639,6 +639,13 @@ }, "isThread": { "type": "boolean" + }, + "threadTitle": { + "type": "string" + }, + "threadReplies": { + "type": "integer", + "format": "int64" } } } diff --git a/openapi.json b/openapi.json index e27ba971d1..01030d80d8 100644 --- a/openapi.json +++ b/openapi.json @@ -598,6 +598,13 @@ }, "isThread": { "type": "boolean" + }, + "threadTitle": { + "type": "string" + }, + "threadReplies": { + "type": "integer", + "format": "int64" } } } diff --git a/src/types/openapi/openapi-backend-sipbridge.ts b/src/types/openapi/openapi-backend-sipbridge.ts index f451ca4361..a5ce639287 100644 --- a/src/types/openapi/openapi-backend-sipbridge.ts +++ b/src/types/openapi/openapi-backend-sipbridge.ts @@ -248,6 +248,9 @@ export type components = { /** Format: int64 */ threadId?: number; isThread?: boolean; + threadTitle?: string; + /** Format: int64 */ + threadReplies?: number; }; ChatProxyMessage: components["schemas"]["BaseMessage"]; OCSMeta: { diff --git a/src/types/openapi/openapi-federation.ts b/src/types/openapi/openapi-federation.ts index e13ece6926..62c4e8d47c 100644 --- a/src/types/openapi/openapi-federation.ts +++ b/src/types/openapi/openapi-federation.ts @@ -259,6 +259,9 @@ export type components = { /** Format: int64 */ threadId?: number; isThread?: boolean; + threadTitle?: string; + /** Format: int64 */ + threadReplies?: number; }; ChatProxyMessage: components["schemas"]["BaseMessage"]; FederationInvite: { diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index 7bf0512893..3449628793 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -2417,6 +2417,9 @@ export type components = { /** Format: int64 */ threadId?: number; isThread?: boolean; + threadTitle?: string; + /** Format: int64 */ + threadReplies?: number; }; ChatMessageWithParent: components["schemas"]["ChatMessage"] & { parent?: components["schemas"]["ChatMessage"] | components["schemas"]["DeletedChatMessage"]; diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index 05575a78d0..6af54752c8 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -1895,6 +1895,9 @@ export type components = { /** Format: int64 */ threadId?: number; isThread?: boolean; + threadTitle?: string; + /** Format: int64 */ + threadReplies?: number; }; ChatMessageWithParent: components["schemas"]["ChatMessage"] & { parent?: components["schemas"]["ChatMessage"] | components["schemas"]["DeletedChatMessage"];