ФУНКЦИИ - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: корректная обработка русских Voice Tasker задач

This commit is contained in:
DCCONSTRUCTIONS
2026-04-26 14:35:16 +03:00
parent 8b230d2670
commit ee8b5123d8
3 changed files with 258 additions and 45 deletions
+10 -7
View File
@@ -104,13 +104,8 @@ export type TVoiceTaskDraft = {
export type TVoiceTaskResolution = {
project: TVoiceTaskResolvedProject | null;
assignee: {
id: string;
name: string;
email: string | null;
confidence: number;
source: string | null;
} | null;
assignee: TVoiceTaskResolvedAssignee | null;
assignees?: TVoiceTaskResolvedAssignee[];
labels: {
id: string;
name: string;
@@ -149,6 +144,14 @@ export type TVoiceTaskResolvedProject = {
source: string | null;
};
export type TVoiceTaskResolvedAssignee = {
id: string;
name: string;
email: string | null;
confidence: number;
source: string | null;
};
export type TVoiceTaskUploadResult = {
ok: boolean;
status?: "uploaded" | "parsed";