This commit is contained in:
2025-11-14 14:47:26 +00:00
parent 69ecf2c7c1
commit 3b4876793e
104 changed files with 231517 additions and 1029 deletions
+3 -3
View File
@@ -3,10 +3,10 @@ import { CCNodeTypes } from '../utils/tldraw/cc-base/cc-graph/cc-graph-types';
export interface NodeResponse {
node_data: {
__primarylabel__: keyof CCNodeTypes;
unique_id: string;
uuid_string: string;
title?: string;
name?: string;
tldraw_snapshot: string;
node_storage_path: string;
created: string;
merged: string;
[key: string]: unknown;
@@ -16,7 +16,7 @@ export interface NodeResponse {
export interface ConnectedNodeResponse {
id: string;
tldraw_snapshot: string;
node_storage_path: string;
label: string;
type: string;
}
+2 -2
View File
@@ -16,7 +16,7 @@ export type NodeData = {
backgroundColor: string;
isLocked: boolean;
__primarylabel__: string;
unique_id: string;
tldraw_snapshot: string;
uuid_string: string;
node_storage_path: string;
[key: string]: string | number | boolean | null | ShapeState | Record<string, unknown> | undefined;
}
+3 -3
View File
@@ -198,13 +198,13 @@ export interface ContextDefinition {
// Navigation Node Types
export interface NavigationNode {
id: string;
tldraw_snapshot: string;
node_storage_path: string;
label: string;
type: string;
context?: NavigationContextState;
data?: {
unique_id: string;
tldraw_snapshot: string;
uuid_string: string;
node_storage_path: string;
title?: string;
name?: string;
[key: string]: unknown;