Files
dify/web/models/snippet.ts
2026-05-22 18:27:37 +08:00

50 lines
1010 B
TypeScript

import type { Viewport } from 'reactflow'
import type { Edge, Node } from '@/app/components/workflow/types'
import type { Tag } from '@/contract/console/tags'
import type { InputVar } from '@/models/pipeline'
export type SnippetSection = 'orchestrate'
export type SnippetListItem = {
id: string
name: string
description: string
updatedAt: string
usage: string
tags: Tag[]
is_published?: boolean
status?: string
}
export type SnippetDetail = {
id: string
name: string
description: string
updatedAt: string
usage: string
tags: Tag[]
is_published?: boolean
status?: string
}
export type SnippetCanvasData = {
nodes: Node[]
edges: Edge[]
viewport: Viewport
}
export type SnippetInputField = InputVar
export type SnippetDetailUIModel = {
inputFieldCount: number
checklistCount: number
autoSavedAt: string
}
export type SnippetDetailPayload = {
snippet: SnippetDetail
graph: SnippetCanvasData
inputFields: SnippetInputField[]
uiMeta: SnippetDetailUIModel
}