ФУНКЦИИ - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: корректная обработка русских Voice Tasker задач
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user