Make support packet composable with plugins (#26403)

---------

Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
Этот коммит содержится в:
Ibrahim Serdar Acikgoz
2024-04-12 10:05:58 +02:00
коммит произвёл GitHub
родитель 165b5ea821
Коммит 92f11f8971
19 изменённых файлов: 505 добавлений и 158 удалений

Просмотреть файл

@@ -125,3 +125,11 @@ export type SchemaMigration = {
version: number;
name: string;
};
export type SupportPacketContent = {
id: string;
translation_id?: string;
label: string;
selected: boolean;
mandatory: boolean;
}