stillbox/pkg/gordio/database/querier.go

34 lines
1.3 KiB
Go
Raw Normal View History

2024-07-28 19:51:23 -04:00
// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.26.0
package database
import (
"context"
"github.com/google/uuid"
"github.com/jackc/pgx/v5/pgtype"
)
type Querier interface {
AddCall(ctx context.Context, arg AddCallParams) (uuid.UUID, error)
CreateAPIKey(ctx context.Context, owner int, expires pgtype.Timestamp, disabled *bool) (ApiKey, error)
CreateUser(ctx context.Context, arg CreateUserParams) (User, error)
2024-08-03 00:05:02 -04:00
DeleteAPIKey(ctx context.Context, apiKey string) error
2024-07-28 19:51:23 -04:00
DeleteUser(ctx context.Context, username string) error
2024-08-03 00:05:02 -04:00
GetAPIKey(ctx context.Context, apiKey string) (ApiKey, error)
2024-07-28 23:07:04 -04:00
GetTalkgroupTags(ctx context.Context, systemID int, tgid int) ([]string, error)
GetTalkgroupsWithAllTags(ctx context.Context, tags []string) ([]Talkgroup, error)
GetTalkgroupsWithAnyTags(ctx context.Context, tags []string) ([]Talkgroup, error)
2024-07-28 19:51:23 -04:00
GetUserByID(ctx context.Context, id int32) (User, error)
GetUserByUID(ctx context.Context, id int32) (User, error)
GetUserByUsername(ctx context.Context, username string) (User, error)
GetUsers(ctx context.Context) ([]User, error)
SetCallTranscript(ctx context.Context, iD uuid.UUID, transcript *string) error
2024-07-28 23:07:04 -04:00
SetTalkgroupTags(ctx context.Context, tags []string, tgid int) error
2024-07-28 19:51:23 -04:00
UpdatePassword(ctx context.Context, username string, password string) error
}
var _ Querier = (*Queries)(nil)