fix: folder org

This commit is contained in:
2026-03-12 11:22:01 +01:00
parent 4184a60706
commit 7a6a4a43c5
10 changed files with 10 additions and 10 deletions

View File

@@ -4,7 +4,7 @@ import {
createAbstractNodeComponent, createAbstractNodeComponent,
useAbstractNode, useAbstractNode,
} from '@/lib/graph/abstractNode' } from '@/lib/graph/abstractNode'
import { getConfigContent } from '@/lib/configTypes' import { getConfigContent } from '@/lib/graph/configTypes'
import { import {
BaseNode, BaseNode,
BaseNodeContent, BaseNodeContent,

View File

@@ -3,7 +3,7 @@
* Update mode is manual (user clicks Run on the renderer). * Update mode is manual (user clicks Run on the renderer).
*/ */
import type { SourceRenderingLogic } from '@/lib/sourceRenderingLogic' import type { SourceRenderingLogic } from '@/lib/graph/sourceRenderingLogic'
export const agentRenderingLogic: SourceRenderingLogic = { export const agentRenderingLogic: SourceRenderingLogic = {
defaultUpdateMode: 'manual', defaultUpdateMode: 'manual',

View File

@@ -20,7 +20,7 @@ import {
getConfigTypeId, getConfigTypeId,
isGroup, isGroup,
type ConfigTypeId, type ConfigTypeId,
} from '@/lib/configTypes' } from '@/lib/graph/configTypes'
import { import {
BaseNode, BaseNode,
BaseNodeContent, BaseNodeContent,

View File

@@ -4,8 +4,8 @@
*/ */
import nunjucks from 'nunjucks' import nunjucks from 'nunjucks'
import type { ResolvedContentResult, SourceRenderingLogicContext } from '@/lib/sourceRenderingLogic' import type { ResolvedContentResult, SourceRenderingLogicContext } from '@/lib/graph/sourceRenderingLogic'
import { getConfigContent, getConfigTypeId, type ConfigTypeId } from '@/lib/configTypes' import { getConfigContent, getConfigTypeId, type ConfigTypeId } from '@/lib/graph/configTypes'
type Node = { id: string; type?: string; data?: unknown } type Node = { id: string; type?: string; data?: unknown }
type Edge = { id: string; source: string; target: string } type Edge = { id: string; source: string; target: string }

View File

@@ -8,8 +8,8 @@ import {
createAbstractNodeComponent, createAbstractNodeComponent,
useAbstractNode, useAbstractNode,
} from '@/lib/graph/abstractNode' } from '@/lib/graph/abstractNode'
import { getConfigContent, getConfigType, getConfigTypeId } from '@/lib/configTypes' import { getConfigContent, getConfigType, getConfigTypeId } from '@/lib/graph/configTypes'
import { getSourceRenderingLogic } from '@/lib/sourceRenderingLogic' import { getSourceRenderingLogic } from '@/lib/graph/sourceRenderingLogic'
import { useSyncConnectionStatus } from '@/lib/graph/nodeLifecycle' import { useSyncConnectionStatus } from '@/lib/graph/nodeLifecycle'
import { useResizeHeight } from '@/hooks/useResizeHeight' import { useResizeHeight } from '@/hooks/useResizeHeight'
import { plantumlLanguage } from '@/lib/plantumlLanguage' import { plantumlLanguage } from '@/lib/plantumlLanguage'

View File

@@ -5,8 +5,8 @@
*/ */
import type React from 'react' import type React from 'react'
import { registerSourceRenderingLogic } from '../sourceRenderingLogic' import { registerSourceRenderingLogic } from './sourceRenderingLogic'
import type { SourceRenderingLogic } from '../sourceRenderingLogic' import type { SourceRenderingLogic } from './sourceRenderingLogic'
/** Node classification for UI: Psyche, Pneuma, Physis, Archon (AI Agent). */ /** Node classification for UI: Psyche, Pneuma, Physis, Archon (AI Agent). */
export type NodeClassification = 'psyche' | 'pneuma' | 'physis' | 'archon' export type NodeClassification = 'psyche' | 'pneuma' | 'physis' | 'archon'

View File

@@ -19,7 +19,7 @@
import type React from 'react' import type React from 'react'
import type { NodeTypeDescriptor, NodeClassification, NodeHelpEntry } from './nodeRegistry' import type { NodeTypeDescriptor, NodeClassification, NodeHelpEntry } from './nodeRegistry'
import type { SourceRenderingLogic } from '../sourceRenderingLogic' import type { SourceRenderingLogic } from './sourceRenderingLogic'
type OptionalDescriptor = Partial< type OptionalDescriptor = Partial<
Omit< Omit<