2020-04-10 04:40:22 +02:00
|
|
|
// Code generated by sqlc. DO NOT EDIT.
|
|
|
|
|
|
|
|
package pg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Querier interface {
|
2020-05-27 23:18:50 +02:00
|
|
|
CreateLabelColor(ctx context.Context, arg CreateLabelColorParams) (LabelColor, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
CreateOrganization(ctx context.Context, arg CreateOrganizationParams) (Organization, error)
|
|
|
|
CreateProject(ctx context.Context, arg CreateProjectParams) (Project, error)
|
2020-04-21 01:04:27 +02:00
|
|
|
CreateProjectLabel(ctx context.Context, arg CreateProjectLabelParams) (ProjectLabel, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
CreateRefreshToken(ctx context.Context, arg CreateRefreshTokenParams) (RefreshToken, error)
|
|
|
|
CreateTask(ctx context.Context, arg CreateTaskParams) (Task, error)
|
2020-04-20 05:02:55 +02:00
|
|
|
CreateTaskAssigned(ctx context.Context, arg CreateTaskAssignedParams) (TaskAssigned, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
CreateTaskGroup(ctx context.Context, arg CreateTaskGroupParams) (TaskGroup, error)
|
2020-04-20 05:02:55 +02:00
|
|
|
CreateTaskLabelForTask(ctx context.Context, arg CreateTaskLabelForTaskParams) (TaskLabel, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
CreateTeam(ctx context.Context, arg CreateTeamParams) (Team, error)
|
|
|
|
CreateUserAccount(ctx context.Context, arg CreateUserAccountParams) (UserAccount, error)
|
|
|
|
DeleteExpiredTokens(ctx context.Context) error
|
2020-05-28 03:12:50 +02:00
|
|
|
DeleteProjectLabelByID(ctx context.Context, projectLabelID uuid.UUID) error
|
2020-04-10 04:40:22 +02:00
|
|
|
DeleteRefreshTokenByID(ctx context.Context, tokenID uuid.UUID) error
|
|
|
|
DeleteRefreshTokenByUserID(ctx context.Context, userID uuid.UUID) error
|
2020-04-21 01:04:27 +02:00
|
|
|
DeleteTaskAssignedByID(ctx context.Context, arg DeleteTaskAssignedByIDParams) (TaskAssigned, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
DeleteTaskByID(ctx context.Context, taskID uuid.UUID) error
|
2020-04-11 21:24:45 +02:00
|
|
|
DeleteTaskGroupByID(ctx context.Context, taskGroupID uuid.UUID) (int64, error)
|
2020-05-31 06:11:19 +02:00
|
|
|
DeleteTaskLabelByID(ctx context.Context, taskLabelID uuid.UUID) error
|
|
|
|
DeleteTaskLabelForTaskByProjectLabelID(ctx context.Context, arg DeleteTaskLabelForTaskByProjectLabelIDParams) error
|
2020-04-11 21:24:45 +02:00
|
|
|
DeleteTasksByTaskGroupID(ctx context.Context, taskGroupID uuid.UUID) (int64, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
DeleteTeamByID(ctx context.Context, teamID uuid.UUID) error
|
|
|
|
GetAllOrganizations(ctx context.Context) ([]Organization, error)
|
|
|
|
GetAllProjects(ctx context.Context) ([]Project, error)
|
|
|
|
GetAllProjectsForTeam(ctx context.Context, teamID uuid.UUID) ([]Project, error)
|
|
|
|
GetAllTaskGroups(ctx context.Context) ([]TaskGroup, error)
|
|
|
|
GetAllTasks(ctx context.Context) ([]Task, error)
|
|
|
|
GetAllTeams(ctx context.Context) ([]Team, error)
|
|
|
|
GetAllUserAccounts(ctx context.Context) ([]UserAccount, error)
|
2020-04-20 05:02:55 +02:00
|
|
|
GetAssignedMembersForTask(ctx context.Context, taskID uuid.UUID) ([]TaskAssigned, error)
|
|
|
|
GetLabelColorByID(ctx context.Context, labelColorID uuid.UUID) (LabelColor, error)
|
2020-05-27 23:18:50 +02:00
|
|
|
GetLabelColors(ctx context.Context) ([]LabelColor, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
GetProjectByID(ctx context.Context, projectID uuid.UUID) (Project, error)
|
2020-04-21 01:04:27 +02:00
|
|
|
GetProjectLabelByID(ctx context.Context, projectLabelID uuid.UUID) (ProjectLabel, error)
|
|
|
|
GetProjectLabelsForProject(ctx context.Context, projectID uuid.UUID) ([]ProjectLabel, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
GetRefreshTokenByID(ctx context.Context, tokenID uuid.UUID) (RefreshToken, error)
|
2020-04-20 05:02:55 +02:00
|
|
|
GetTaskByID(ctx context.Context, taskID uuid.UUID) (Task, error)
|
2020-04-11 04:22:22 +02:00
|
|
|
GetTaskGroupByID(ctx context.Context, taskGroupID uuid.UUID) (TaskGroup, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
GetTaskGroupsForProject(ctx context.Context, projectID uuid.UUID) ([]TaskGroup, error)
|
2020-05-31 06:11:19 +02:00
|
|
|
GetTaskLabelByID(ctx context.Context, taskLabelID uuid.UUID) (TaskLabel, error)
|
|
|
|
GetTaskLabelForTaskByProjectLabelID(ctx context.Context, arg GetTaskLabelForTaskByProjectLabelIDParams) (TaskLabel, error)
|
2020-04-20 05:02:55 +02:00
|
|
|
GetTaskLabelsForTaskID(ctx context.Context, taskID uuid.UUID) ([]TaskLabel, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
GetTasksForTaskGroupID(ctx context.Context, taskGroupID uuid.UUID) ([]Task, error)
|
|
|
|
GetTeamByID(ctx context.Context, teamID uuid.UUID) (Team, error)
|
|
|
|
GetTeamsForOrganization(ctx context.Context, organizationID uuid.UUID) ([]Team, error)
|
|
|
|
GetUserAccountByID(ctx context.Context, userID uuid.UUID) (UserAccount, error)
|
|
|
|
GetUserAccountByUsername(ctx context.Context, username string) (UserAccount, error)
|
2020-05-28 03:12:50 +02:00
|
|
|
UpdateProjectLabel(ctx context.Context, arg UpdateProjectLabelParams) (ProjectLabel, error)
|
|
|
|
UpdateProjectLabelColor(ctx context.Context, arg UpdateProjectLabelColorParams) (ProjectLabel, error)
|
|
|
|
UpdateProjectLabelName(ctx context.Context, arg UpdateProjectLabelNameParams) (ProjectLabel, error)
|
2020-05-31 06:11:19 +02:00
|
|
|
UpdateProjectNameByID(ctx context.Context, arg UpdateProjectNameByIDParams) (Project, error)
|
2020-04-20 05:02:55 +02:00
|
|
|
UpdateTaskDescription(ctx context.Context, arg UpdateTaskDescriptionParams) (Task, error)
|
2020-04-11 04:47:43 +02:00
|
|
|
UpdateTaskGroupLocation(ctx context.Context, arg UpdateTaskGroupLocationParams) (TaskGroup, error)
|
2020-04-10 04:40:22 +02:00
|
|
|
UpdateTaskLocation(ctx context.Context, arg UpdateTaskLocationParams) (Task, error)
|
|
|
|
UpdateTaskName(ctx context.Context, arg UpdateTaskNameParams) (Task, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Querier = (*Queries)(nil)
|