feat: platform update

This commit is contained in:
ivannoskov
2026-02-09 13:10:08 +03:00
parent f7597270e5
commit 1826483750
15 changed files with 907 additions and 2796 deletions

View File

@@ -15,9 +15,10 @@ interface CreateChannelInput {
}
interface CreateChannelResult {
channel: {
id: string;
};
index: number;
status: "created" | "updated" | "failed";
channel: Channel | null;
error?: string;
}
interface CreateChannelsResponse {