@our-llm/shared 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/workflow.types.ts +6 -0
package/package.json
CHANGED
package/workflow.types.ts
CHANGED
|
@@ -164,6 +164,12 @@ export interface WorkflowConfig {
|
|
|
164
164
|
edges: WorkflowEdge[]
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
+
// 工作流列表详情响应
|
|
168
|
+
export interface WorkflowListResponse {
|
|
169
|
+
list: Workflow[]
|
|
170
|
+
total: number
|
|
171
|
+
}
|
|
172
|
+
|
|
167
173
|
// 工作流实体 (包含数据库元数据)
|
|
168
174
|
export interface Workflow extends WorkflowConfig {
|
|
169
175
|
createdAt: string
|