Documentation ¶
Index ¶
- type CreateDynamicTableParams
- type CreateDynamicTableVariableParams
- type CreateTokenParams
- type DBTX
- type DeleteWorkflowParams
- type DynamicTable
- type DynamicTableVariable
- type FetchDynamicTableVariablesByDynamicTableRow
- type FetchDynamicTableVariablesRow
- type FetchRunByRequestIDRow
- type FetchRunByWorkflowRow
- type FetchRunsRow
- type GetTokenByValueRow
- type GetTokenRow
- type ListTokensRow
- type ListUserTokensByNameRow
- type ListUserTokensRow
- type Queries
- func (q *Queries) CreateDynamicTable(ctx context.Context, arg CreateDynamicTableParams) (string, error)
- func (q *Queries) CreateDynamicTableVariable(ctx context.Context, arg CreateDynamicTableVariableParams) (string, error)
- func (q *Queries) CreateToken(ctx context.Context, arg CreateTokenParams) (string, error)
- func (q *Queries) DeleteDynamicTable(ctx context.Context, dollar_1 []string) error
- func (q *Queries) DeleteDynamicTableVariables(ctx context.Context, dollar_1 []string) error
- func (q *Queries) DeleteTokenByValue(ctx context.Context, value string) error
- func (q *Queries) DeleteUser(ctx context.Context, id string) error
- func (q *Queries) DeleteWorkflow(ctx context.Context, arg DeleteWorkflowParams) error
- func (q *Queries) DeleteWorkflowChildren(ctx context.Context, workflowID string) error
- func (q *Queries) FetchAllWorkflows(ctx context.Context) ([]Workflow, error)
- func (q *Queries) FetchByIDs(ctx context.Context, dollar_1 []string) ([]User, error)
- func (q *Queries) FetchDynamicTableVariables(ctx context.Context, dollar_1 []string) ([]FetchDynamicTableVariablesRow, error)
- func (q *Queries) FetchDynamicTableVariablesByDynamicTable(ctx context.Context, id string) ([]FetchDynamicTableVariablesByDynamicTableRow, error)
- func (q *Queries) FetchDynamicTables(ctx context.Context, dollar_1 []string) ([]DynamicTable, error)
- func (q *Queries) FetchRunByRequestID(ctx context.Context, requestID pgtype.Text) (FetchRunByRequestIDRow, error)
- func (q *Queries) FetchRunByWorkflow(ctx context.Context, workflowID string) ([]FetchRunByWorkflowRow, error)
- func (q *Queries) FetchRunLog(ctx context.Context, id string) (RunLog, error)
- func (q *Queries) FetchRunLogsByRun(ctx context.Context, runID string) ([]RunLog, error)
- func (q *Queries) FetchRuns(ctx context.Context, dollar_1 []string) ([]FetchRunsRow, error)
- func (q *Queries) FetchUser(ctx context.Context, id string) (User, error)
- func (q *Queries) FetchUserByName(ctx context.Context, username string) (User, error)
- func (q *Queries) FetchWorkflow(ctx context.Context, id string) (Workflow, error)
- func (q *Queries) GetToken(ctx context.Context, id string) (GetTokenRow, error)
- func (q *Queries) GetTokenByValue(ctx context.Context, value string) (GetTokenByValueRow, error)
- func (q *Queries) ListTokens(ctx context.Context) ([]ListTokensRow, error)
- func (q *Queries) ListUserTokens(ctx context.Context, userID string) ([]ListUserTokensRow, error)
- func (q *Queries) ListUserTokensByName(ctx context.Context, username string) ([]ListUserTokensByNameRow, error)
- func (q *Queries) SaveRun(ctx context.Context, arg SaveRunParams) (string, error)
- func (q *Queries) SaveRunLog(ctx context.Context, arg SaveRunLogParams) (string, error)
- func (q *Queries) SaveUser(ctx context.Context, arg SaveUserParams) (User, error)
- func (q *Queries) SaveWorkflow(ctx context.Context, arg SaveWorkflowParams) (string, error)
- func (q *Queries) SaveWorkflowChildren(ctx context.Context, arg SaveWorkflowChildrenParams) error
- func (q *Queries) UpdatePassword(ctx context.Context, arg UpdatePasswordParams) (User, error)
- func (q *Queries) UpdateTokenValidity(ctx context.Context, arg UpdateTokenValidityParams) (Token, error)
- func (q *Queries) UpdateWorkflow(ctx context.Context, arg UpdateWorkflowParams) error
- func (q *Queries) WithTx(tx pgx.Tx) *Queries
- type Run
- type RunLog
- type SaveRunLogParams
- type SaveRunParams
- type SaveUserParams
- type SaveWorkflowChildrenParams
- type SaveWorkflowParams
- type Token
- type UpdatePasswordParams
- type UpdateTokenValidityParams
- type UpdateWorkflowParams
- type User
- type Workflow
- type WorkflowsChild
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateTokenParams ¶
type DeleteWorkflowParams ¶
type DynamicTable ¶
type DynamicTableVariable ¶
type FetchRunByRequestIDRow ¶
type FetchRunByRequestIDRow struct { ID string RequestID pgtype.Text WorkflowID string UserID string Error pgtype.Text StartTime pgtype.Timestamp FinishTime pgtype.Timestamp CreatedAt pgtype.Timestamp ModifiedAt pgtype.Timestamp CreatedBy string ModifiedBy string WorkflowName string UserName string }
type FetchRunByWorkflowRow ¶
type FetchRunByWorkflowRow struct { ID string RequestID pgtype.Text WorkflowID string UserID string Error pgtype.Text StartTime pgtype.Timestamp FinishTime pgtype.Timestamp CreatedAt pgtype.Timestamp ModifiedAt pgtype.Timestamp CreatedBy string ModifiedBy string WorkflowName string UserName string }
type FetchRunsRow ¶
type GetTokenByValueRow ¶
type GetTokenRow ¶
type ListTokensRow ¶
type ListUserTokensByNameRow ¶
type ListUserTokensRow ¶
type Queries ¶
type Queries struct {
// contains filtered or unexported fields
}
func (*Queries) CreateDynamicTable ¶
func (*Queries) CreateDynamicTableVariable ¶
func (*Queries) CreateToken ¶
func (*Queries) DeleteDynamicTable ¶
func (*Queries) DeleteDynamicTableVariables ¶
func (*Queries) DeleteTokenByValue ¶
func (*Queries) DeleteWorkflow ¶
func (q *Queries) DeleteWorkflow(ctx context.Context, arg DeleteWorkflowParams) error
func (*Queries) DeleteWorkflowChildren ¶
func (*Queries) FetchAllWorkflows ¶
func (*Queries) FetchByIDs ¶
func (*Queries) FetchDynamicTableVariables ¶
func (*Queries) FetchDynamicTableVariablesByDynamicTable ¶
func (*Queries) FetchDynamicTables ¶
func (*Queries) FetchRunByRequestID ¶
func (*Queries) FetchRunByWorkflow ¶
func (*Queries) FetchRunLog ¶
func (*Queries) FetchRunLogsByRun ¶
func (*Queries) FetchUserByName ¶
func (*Queries) FetchWorkflow ¶
func (*Queries) GetTokenByValue ¶
func (*Queries) ListTokens ¶
func (q *Queries) ListTokens(ctx context.Context) ([]ListTokensRow, error)
func (*Queries) ListUserTokens ¶
func (*Queries) ListUserTokensByName ¶
func (*Queries) SaveRunLog ¶
func (*Queries) SaveWorkflow ¶
func (*Queries) SaveWorkflowChildren ¶
func (q *Queries) SaveWorkflowChildren(ctx context.Context, arg SaveWorkflowChildrenParams) error
func (*Queries) UpdatePassword ¶
func (*Queries) UpdateTokenValidity ¶
func (*Queries) UpdateWorkflow ¶
func (q *Queries) UpdateWorkflow(ctx context.Context, arg UpdateWorkflowParams) error
type SaveRunLogParams ¶
type SaveRunParams ¶
type SaveUserParams ¶
type SaveWorkflowParams ¶
type UpdatePasswordParams ¶
type UpdateWorkflowParams ¶
type WorkflowsChild ¶
Click to show internal directories.
Click to hide internal directories.