33 lines
1.6 KiB
Go
33 lines
1.6 KiB
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.31.1
|
|
|
|
package dbgen
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/jackc/pgx/v5/pgtype"
|
|
)
|
|
|
|
type Querier interface {
|
|
CompleteStepRun(ctx context.Context, arg CompleteStepRunParams) (StepRun, error)
|
|
CreateKnowledgeBase(ctx context.Context, arg CreateKnowledgeBaseParams) (KnowledgeBasis, error)
|
|
CreateProject(ctx context.Context, arg CreateProjectParams) (Project, error)
|
|
CreateRAGTrace(ctx context.Context, arg CreateRAGTraceParams) (RagTrace, error)
|
|
CreateRAGTraceEvidence(ctx context.Context, arg CreateRAGTraceEvidenceParams) (RagTraceEvidence, error)
|
|
CreateStepRun(ctx context.Context, arg CreateStepRunParams) (StepRun, error)
|
|
CreateWorkflowRun(ctx context.Context, arg CreateWorkflowRunParams) (WorkflowRun, error)
|
|
DeleteExpiredRAGTraces(ctx context.Context) (int64, error)
|
|
FailStepRun(ctx context.Context, arg FailStepRunParams) (StepRun, error)
|
|
GetActiveReleaseByAlias(ctx context.Context, arg GetActiveReleaseByAliasParams) (Release, error)
|
|
GetKnowledgeBase(ctx context.Context, arg GetKnowledgeBaseParams) (KnowledgeBasis, error)
|
|
GetKnowledgeBaseByKey(ctx context.Context, arg GetKnowledgeBaseByKeyParams) (KnowledgeBasis, error)
|
|
GetProject(ctx context.Context, id pgtype.UUID) (Project, error)
|
|
GetProjectBySlug(ctx context.Context, slug string) (Project, error)
|
|
LeaseNextStepRun(ctx context.Context, arg LeaseNextStepRunParams) (StepRun, error)
|
|
ListProjects(ctx context.Context, arg ListProjectsParams) ([]Project, error)
|
|
MarkStepRunRunning(ctx context.Context, arg MarkStepRunRunningParams) (StepRun, error)
|
|
}
|
|
|
|
var _ Querier = (*Queries)(nil)
|