FIX - МЕЖПРОЕКТНАЯ КОММУНИКАЦИЯ: МАТРИЦА ДОСТУПОВ OPERATIONAL CORE
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user