latest
This commit is contained in:
+3
-3
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user