Merge branch 'main' into feat/condition

This commit is contained in:
Fu Diwei
2025-05-27 05:36:42 +08:00
155 changed files with 3533 additions and 1659 deletions

View File

@@ -50,6 +50,8 @@ func (n *nodeOutputer) GetOutputs() map[string]any {
type certificateRepository interface {
GetByWorkflowNodeId(ctx context.Context, workflowNodeId string) (*domain.Certificate, error)
GetByWorkflowRunId(ctx context.Context, workflowRunId string) (*domain.Certificate, error)
Save(ctx context.Context, certificate *domain.Certificate) (*domain.Certificate, error)
}
type workflowOutputRepository interface {