FIX - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: МАТРИЦА ДОСТУПОВ OPERATIONAL CORE

This commit is contained in:
DCCONSTRUCTIONS
2026-05-08 08:59:52 +03:00
parent 784b3ca5c3
commit 652a6ef0c5
7 changed files with 588 additions and 91 deletions
+7
View File
@@ -1,6 +1,12 @@
export type ClientType = "company" | "person";
export type ClientStatus = "active" | "suspended" | "demo" | "expired";
export interface ClientTaskManagerWorkspaceBinding {
slug: string;
name?: string | null;
isPrimary?: boolean;
}
export interface Client {
id: string;
type: ClientType;
@@ -18,6 +24,7 @@ export interface Client {
taskManager?: {
workspaceSlug?: string | null;
workspaceName?: string | null;
workspaces?: ClientTaskManagerWorkspaceBinding[];
};
};
notes?: string | null;