client

package
v0.1.847 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 20, 2026 License: MIT Imports: 17 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AgentCreateRequest

type AgentCreateRequest struct {
	Password string `json:"password,omitempty"`
}

type AgentRegisterRequest

type AgentRegisterRequest struct {
	ID       string `json:"id"`
	Password string `json:"password"`
}

type AgentRequest

type AgentRequest struct {
	ID              string  `json:"id"`
	Password        string  `json:"password"`
	ProjectID       int64   `json:"project_id,omitempty"`
	TicketID        *string `json:"ticket_id,omitempty"`
	DryRun          bool    `json:"dry_run,omitempty"`
	ConfigUpdatedAt string  `json:"config_updated_at,omitempty"`
}

type AgentTicketUpdateRequest

type AgentTicketUpdateRequest struct {
	ID       string `json:"id"`
	Password string `json:"password"`
	Result   string `json:"result"`
}

type AgentUpdateRequest

type AgentUpdateRequest struct {
	Password *string `json:"password,omitempty"`
}

type AgentWorkResponse

type AgentWorkResponse struct {
	Status          string                `json:"status"`
	Project         *store.Project        `json:"project"`
	Ticket          *store.Ticket         `json:"ticket"`
	Parents         []store.Ticket        `json:"parents"`
	Sdlc            *store.SdlcWithStages `json:"sdlc,omitempty"`
	Role            *store.Role           `json:"role,omitempty"`
	Config          map[string]string     `json:"config,omitempty"`
	ConfigUpdatedAt string                `json:"config_updated_at,omitempty"`
}

type AuthResponse

type AuthResponse struct {
	Token string     `json:"token"`
	User  store.User `json:"user"`
}

type Client

type Client struct {
	// contains filtered or unexported fields
}

func New

func New(cfg config.Config) *Client

func (*Client) AddComment

func (c *Client) AddComment(ctx context.Context, id string, comment string) (store.Comment, error)

func (*Client) AddDependency

func (c *Client) AddDependency(ctx context.Context, request DependencyRequest) (store.Dependency, error)

func (*Client) AddProjectMember

func (c *Client) AddProjectMember(ctx context.Context, projectID int64, request ProjectMemberRequest) (store.ProjectMember, error)

func (*Client) AddProjectTeamMember

func (c *Client) AddProjectTeamMember(ctx context.Context, projectID int64, request ProjectTeamMemberRequest) (store.ProjectTeamMember, error)

func (*Client) AddSdlcStage added in v0.1.842

func (c *Client) AddSdlcStage(ctx context.Context, sdlcID int64, request SdlcStageRequest) (store.SdlcStage, error)

func (*Client) AddSdlcStageRole added in v0.1.842

func (c *Client) AddSdlcStageRole(ctx context.Context, sdlcID, stageID, roleID int64) error

func (*Client) AddTeamAgent

func (c *Client) AddTeamAgent(ctx context.Context, teamID int64, agentID string) (store.TeamAgent, error)

func (*Client) AddTeamMember

func (c *Client) AddTeamMember(ctx context.Context, teamID int64, request TeamMemberRequest) (store.TeamMember, error)

func (*Client) AddTicketLabel

func (c *Client) AddTicketLabel(ctx context.Context, ticketID string, labelID int64) error

func (*Client) AgentUpdateTicket

func (c *Client) AgentUpdateTicket(ctx context.Context, id string, request AgentTicketUpdateRequest) (store.Ticket, error)

func (*Client) ArchiveTicket

func (c *Client) ArchiveTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) CloneTicket

func (c *Client) CloneTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) CloseTicket

func (c *Client) CloseTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) CompleteTicket added in v0.1.842

func (c *Client) CompleteTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) Count

func (c *Client) Count(ctx context.Context, projectID *int64) (CountSummary, error)

func (*Client) CreateAgent

func (c *Client) CreateAgent(ctx context.Context, request AgentCreateRequest) (store.Agent, string, error)

func (*Client) CreateLabel

func (c *Client) CreateLabel(ctx context.Context, projectID int64, request LabelRequest) (store.Label, error)

func (*Client) CreateProject

func (c *Client) CreateProject(ctx context.Context, request ProjectCreateRequest) (store.Project, error)

func (*Client) CreateRole

func (c *Client) CreateRole(ctx context.Context, request RoleRequest) (store.Role, error)

func (*Client) CreateSdlc added in v0.1.842

func (c *Client) CreateSdlc(ctx context.Context, request SdlcRequest) (store.Sdlc, error)

func (*Client) CreateStory

func (c *Client) CreateStory(ctx context.Context, projectID int64, title, description string) (store.Story, error)

func (*Client) CreateStoryWithRequest added in v0.1.842

func (c *Client) CreateStoryWithRequest(ctx context.Context, request StoryCreateRequest) (store.Story, error)

func (*Client) CreateTeam

func (c *Client) CreateTeam(ctx context.Context, request TeamRequest) (store.Team, error)

func (*Client) CreateTicket

func (c *Client) CreateTicket(ctx context.Context, request TicketCreateRequest) (store.Ticket, error)

func (*Client) CreateUser

func (c *Client) CreateUser(ctx context.Context, username, password string) (store.User, error)

func (*Client) DeleteAgent

func (c *Client) DeleteAgent(ctx context.Context, id string) error

func (*Client) DeleteAgentConfig

func (c *Client) DeleteAgentConfig(ctx context.Context, agentID string, key string) error

func (*Client) DeleteLabel

func (c *Client) DeleteLabel(ctx context.Context, id int64) error

func (*Client) DeleteProject

func (c *Client) DeleteProject(ctx context.Context, id int64) error

func (*Client) DeleteRole

func (c *Client) DeleteRole(ctx context.Context, id int64) error

func (*Client) DeleteSdlc added in v0.1.842

func (c *Client) DeleteSdlc(ctx context.Context, id int64) error

func (*Client) DeleteStory

func (c *Client) DeleteStory(ctx context.Context, id int64) error

func (*Client) DeleteTeam

func (c *Client) DeleteTeam(ctx context.Context, id int64) error

func (*Client) DeleteTicket

func (c *Client) DeleteTicket(ctx context.Context, id string) error

func (*Client) DeleteTimeEntry

func (c *Client) DeleteTimeEntry(ctx context.Context, id int64) error

func (*Client) DeleteUser

func (c *Client) DeleteUser(ctx context.Context, username string) error

func (*Client) DraftTicket added in v0.1.842

func (c *Client) DraftTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) ExportSdlc added in v0.1.842

func (c *Client) ExportSdlc(ctx context.Context, id int64) (store.SdlcExport, error)

func (*Client) GetProject

func (c *Client) GetProject(ctx context.Context, id string) (store.Project, error)

func (*Client) GetSdlc added in v0.1.842

func (c *Client) GetSdlc(ctx context.Context, id int64) (store.SdlcWithStages, error)

func (*Client) GetSdlcStage added in v0.1.842

func (c *Client) GetSdlcStage(ctx context.Context, stageID int64) (store.SdlcStage, error)

func (*Client) GetStory

func (c *Client) GetStory(ctx context.Context, id int64) (store.Story, error)

func (*Client) GetTicket

func (c *Client) GetTicket(ctx context.Context, ref string) (store.Ticket, error)

func (*Client) GetTicketByID

func (c *Client) GetTicketByID(ctx context.Context, id string) (store.Ticket, error)

func (*Client) HeartbeatAgent

func (c *Client) HeartbeatAgent(ctx context.Context, agentID, password, status string) error

func (*Client) ImportSdlc added in v0.1.842

func (c *Client) ImportSdlc(ctx context.Context, export store.SdlcExport) (store.Sdlc, error)

func (*Client) ListAgentConfig

func (c *Client) ListAgentConfig(ctx context.Context, agentID string) ([]store.AgentConfigEntry, error)

func (*Client) ListAgentStatuses

func (c *Client) ListAgentStatuses(ctx context.Context) ([]store.AgentStatus, error)

func (*Client) ListAgents

func (c *Client) ListAgents(ctx context.Context) ([]store.Agent, error)

func (*Client) ListComments

func (c *Client) ListComments(ctx context.Context, id string) ([]store.Comment, error)

func (*Client) ListDependencies

func (c *Client) ListDependencies(ctx context.Context, id string) ([]store.Dependency, error)

func (*Client) ListHistory

func (c *Client) ListHistory(ctx context.Context, id string) ([]store.HistoryEvent, error)

func (*Client) ListHistoryPaged added in v0.1.842

func (c *Client) ListHistoryPaged(ctx context.Context, id string, limit, offset int) ([]store.HistoryEvent, error)

func (*Client) ListLabels

func (c *Client) ListLabels(ctx context.Context, projectID int64) ([]store.Label, error)

func (*Client) ListProjectHistory

func (c *Client) ListProjectHistory(ctx context.Context, projectID int64, limit int) ([]store.HistoryEvent, error)

func (*Client) ListProjectHistoryFiltered added in v0.1.733

func (c *Client) ListProjectHistoryFiltered(ctx context.Context, projectID int64, limit int, filter store.HistoryFilter) ([]store.HistoryEvent, error)

func (*Client) ListProjectMembers

func (c *Client) ListProjectMembers(ctx context.Context, projectID int64) ([]store.ProjectMember, error)

func (*Client) ListProjectTeamMembers

func (c *Client) ListProjectTeamMembers(ctx context.Context, projectID int64) ([]store.ProjectTeamMember, error)

func (*Client) ListProjects

func (c *Client) ListProjects(ctx context.Context) ([]store.Project, error)

func (*Client) ListRoles

func (c *Client) ListRoles(ctx context.Context) ([]store.Role, error)

func (*Client) ListSdlcStages added in v0.1.842

func (c *Client) ListSdlcStages(ctx context.Context, sdlcID int64) ([]store.SdlcStage, error)

func (*Client) ListSdlcs added in v0.1.842

func (c *Client) ListSdlcs(ctx context.Context) ([]store.Sdlc, error)

func (*Client) ListStories

func (c *Client) ListStories(ctx context.Context, projectID int64) ([]store.Story, error)

func (*Client) ListTeamAgents

func (c *Client) ListTeamAgents(ctx context.Context, teamID int64) ([]store.TeamAgent, error)

func (*Client) ListTeamMembers

func (c *Client) ListTeamMembers(ctx context.Context, teamID int64) ([]store.TeamMember, error)

func (*Client) ListTeams

func (c *Client) ListTeams(ctx context.Context) ([]store.Team, error)

func (*Client) ListTicketLabels

func (c *Client) ListTicketLabels(ctx context.Context, ticketID string) ([]store.Label, error)

func (*Client) ListTickets

func (c *Client) ListTickets(ctx context.Context, projectID int64) ([]store.Ticket, error)

func (*Client) ListTicketsFiltered

func (c *Client) ListTicketsFiltered(ctx context.Context, projectID int64, ticketType, stage, state, status, search, assignee string, limit int, includeArchived bool) ([]store.Ticket, error)

func (*Client) ListTimeEntries

func (c *Client) ListTimeEntries(ctx context.Context, ticketID string) ([]store.TimeEntry, error)

func (*Client) ListUsers

func (c *Client) ListUsers(ctx context.Context) ([]store.User, error)

func (*Client) LogTime

func (c *Client) LogTime(ctx context.Context, ticketID string, request TimeEntryRequest) (store.TimeEntry, error)

func (*Client) Login

func (c *Client) Login(ctx context.Context, username, password string) (AuthResponse, error)

func (*Client) Logout

func (c *Client) Logout(ctx context.Context) error

func (*Client) NextTicket added in v0.1.842

func (c *Client) NextTicket(ctx context.Context, id string) (store.Ticket, error)

func (*Client) NotReadyTicket

func (c *Client) NotReadyTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) OpenTicket

func (c *Client) OpenTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) PreviousTicket added in v0.1.842

func (c *Client) PreviousTicket(ctx context.Context, id string) (store.Ticket, error)

func (*Client) ReadyTicket

func (c *Client) ReadyTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) Register

func (c *Client) Register(ctx context.Context, username, password string) (store.User, error)

func (*Client) RegisterAgent

func (c *Client) RegisterAgent(ctx context.Context, request AgentRegisterRequest) (store.Agent, error)

func (*Client) RemoveDependency

func (c *Client) RemoveDependency(ctx context.Context, request DependencyRequest) error

func (*Client) RemoveProjectMember

func (c *Client) RemoveProjectMember(ctx context.Context, projectID int64, userID string) error

func (*Client) RemoveProjectTeamMember

func (c *Client) RemoveProjectTeamMember(ctx context.Context, projectID, teamID int64) error

func (*Client) RemoveSdlcStage added in v0.1.842

func (c *Client) RemoveSdlcStage(ctx context.Context, stageID int64) error

func (*Client) RemoveSdlcStageRole added in v0.1.842

func (c *Client) RemoveSdlcStageRole(ctx context.Context, sdlcID, stageID, roleID int64) error

func (*Client) RemoveTeamAgent

func (c *Client) RemoveTeamAgent(ctx context.Context, teamID int64, agentID string) error

func (*Client) RemoveTeamMember

func (c *Client) RemoveTeamMember(ctx context.Context, teamID int64, userID string) error

func (*Client) RemoveTicketLabel

func (c *Client) RemoveTicketLabel(ctx context.Context, ticketID string, labelID int64) error

func (*Client) ReopenTicket added in v0.1.842

func (c *Client) ReopenTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) ReorderSdlcStageRoles added in v0.1.842

func (c *Client) ReorderSdlcStageRoles(ctx context.Context, sdlcID, stageID int64, roleIDs []int64) error

func (*Client) ReorderSdlcStages added in v0.1.842

func (c *Client) ReorderSdlcStages(ctx context.Context, sdlcID int64, stageIDs []int64) error

func (*Client) RequestAgentWork

func (c *Client) RequestAgentWork(ctx context.Context, request AgentRequest) (AgentWorkResponse, error)

func (*Client) RequestTicket

func (c *Client) RequestTicket(ctx context.Context, request TicketRequest) (TicketRequestResponse, error)

func (*Client) ResetUserPassword

func (c *Client) ResetUserPassword(ctx context.Context, username, newPassword string) (store.User, error)

func (*Client) SetAgentConfig

func (c *Client) SetAgentConfig(ctx context.Context, agentID string, key, value string) error

func (*Client) SetAgentEnabled

func (c *Client) SetAgentEnabled(ctx context.Context, id string, enabled bool) (store.Agent, error)

func (*Client) SetProjectDefaultDraft added in v0.1.842

func (c *Client) SetProjectDefaultDraft(ctx context.Context, projectID int64, draft bool) error

func (*Client) SetProjectEnabled

func (c *Client) SetProjectEnabled(ctx context.Context, id int64, enabled bool) (store.Project, error)

func (*Client) SetRegistrationEnabled

func (c *Client) SetRegistrationEnabled(ctx context.Context, enabled bool) error

func (*Client) SetTicketHealth

func (c *Client) SetTicketHealth(ctx context.Context, id string, score int) (store.Ticket, error)

func (*Client) SetTicketParent

func (c *Client) SetTicketParent(ctx context.Context, id, parentID string, message string) (store.Ticket, error)

func (*Client) SetTicketSdlc added in v0.1.842

func (c *Client) SetTicketSdlc(ctx context.Context, id string, sdlcID int64) (store.Ticket, error)

func (*Client) SetUserEnabled

func (c *Client) SetUserEnabled(ctx context.Context, username string, enabled bool) error

func (*Client) Status

func (c *Client) Status(ctx context.Context) (StatusResponse, error)

func (*Client) TotalTimeForTicket

func (c *Client) TotalTimeForTicket(ctx context.Context, ticketID string) (int, error)

func (*Client) UnarchiveTicket

func (c *Client) UnarchiveTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) UndraftTicket added in v0.1.842

func (c *Client) UndraftTicket(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) UnsetTicketParent

func (c *Client) UnsetTicketParent(ctx context.Context, id string, message string) (store.Ticket, error)

func (*Client) UnsetTicketSdlc added in v0.1.842

func (c *Client) UnsetTicketSdlc(ctx context.Context, id string) (store.Ticket, error)

func (*Client) UpdateAgent

func (c *Client) UpdateAgent(ctx context.Context, id string, request AgentUpdateRequest) (store.Agent, error)

func (*Client) UpdateProject

func (c *Client) UpdateProject(ctx context.Context, id int64, request ProjectUpdateRequest) (store.Project, error)

func (*Client) UpdateRole

func (c *Client) UpdateRole(ctx context.Context, id int64, request RoleRequest) (store.Role, error)

func (*Client) UpdateSdlcStage added in v0.1.842

func (c *Client) UpdateSdlcStage(ctx context.Context, stageID int64, request SdlcStageRequest) (store.SdlcStage, error)

func (*Client) UpdateStory

func (c *Client) UpdateStory(ctx context.Context, id int64, title, description string) (store.Story, error)

func (*Client) UpdateTeam

func (c *Client) UpdateTeam(ctx context.Context, id int64, request TeamRequest) (store.Team, error)

func (*Client) UpdateTicket

func (c *Client) UpdateTicket(ctx context.Context, id string, request TicketUpdateRequest) (store.Ticket, error)

type CommentCreateRequest

type CommentCreateRequest struct {
	Comment string `json:"comment"`
}

type CountSummary

type CountSummary = store.CountSummary

type DependencyRequest

type DependencyRequest struct {
	ProjectID int64  `json:"project_id"`
	TicketID  string `json:"ticket_id"`
	DependsOn string `json:"depends_on"`
}

type LabelRequest added in v0.1.842

type LabelRequest struct {
	ID    *int64 `json:"id,omitempty"`
	Name  string `json:"name"`
	Color string `json:"color"`
}

type ProjectCreateRequest

type ProjectCreateRequest struct {
	ID                 *int64            `json:"id,omitempty"`
	Prefix             string            `json:"prefix"`
	Title              string            `json:"title"`
	Description        string            `json:"description"`
	AcceptanceCriteria string            `json:"acceptance_criteria"`
	DORMap             store.GuidanceMap `json:"dor_map,omitempty"`
	DODMap             store.GuidanceMap `json:"dod_map,omitempty"`
	ACMap              store.GuidanceMap `json:"ac_map,omitempty"`
	GitRepository      string            `json:"git_repository"`
	Notes              string            `json:"notes"`
	Visibility         string            `json:"visibility"`
	SdlcID             *int64            `json:"sdlc_id,omitempty"`
}

type ProjectMemberRequest

type ProjectMemberRequest struct {
	UserID string `json:"user_id"`
	Role   string `json:"role"`
}

type ProjectTeamMemberRequest

type ProjectTeamMemberRequest struct {
	TeamID int64  `json:"team_id"`
	Role   string `json:"role"`
}

type ProjectUpdateRequest

type ProjectUpdateRequest struct {
	Title              string            `json:"title"`
	Description        string            `json:"description"`
	AcceptanceCriteria string            `json:"acceptance_criteria"`
	DORMap             store.GuidanceMap `json:"dor_map,omitempty"`
	DODMap             store.GuidanceMap `json:"dod_map,omitempty"`
	ACMap              store.GuidanceMap `json:"ac_map,omitempty"`
	GitRepository      string            `json:"git_repository"`
	Notes              string            `json:"notes"`
	Status             string            `json:"status"`
	Visibility         string            `json:"visibility"`
	SdlcID             *int64            `json:"sdlc_id,omitempty"`
}

type RoleRequest

type RoleRequest struct {
	ID                 *int64            `json:"id,omitempty"`
	SdlcID             *int64            `json:"sdlc_id,omitempty"`
	Title              string            `json:"title"`
	Description        string            `json:"description"`
	AcceptanceCriteria string            `json:"acceptance_criteria"`
	DORMap             store.GuidanceMap `json:"dor_map,omitempty"`
	DODMap             store.GuidanceMap `json:"dod_map,omitempty"`
	ACMap              store.GuidanceMap `json:"ac_map,omitempty"`
}

type SdlcReorderRequest added in v0.1.842

type SdlcReorderRequest struct {
	StageIDs []int64 `json:"stage_ids"`
}

type SdlcRequest added in v0.1.842

type SdlcRequest struct {
	ID          *int64 `json:"id,omitempty"`
	Name        string `json:"name"`
	Description string `json:"description"`
}

type SdlcStageRequest added in v0.1.842

type SdlcStageRequest struct {
	StageName          string `json:"stage_name"`
	Description        string `json:"description"`
	AcceptanceCriteria string `json:"acceptance_criteria"`
	WaysOfWorking      string `json:"wow"`
	DefinitionOfReady  string `json:"dor"`
	DefinitionOfDone   string `json:"dod"`
	SortOrder          int    `json:"sort_order"`
}

type StatusResponse

type StatusResponse struct {
	Status              string      `json:"status"`
	Authenticated       bool        `json:"authenticated"`
	RegistrationEnabled bool        `json:"registration_enabled,omitempty"`
	ChatEnabled         bool        `json:"chat_enabled,omitempty"`
	ServerVersion       string      `json:"server_version"`
	User                *store.User `json:"user,omitempty"`
}

type StoryCreateRequest added in v0.1.842

type StoryCreateRequest struct {
	ID          *int64 `json:"id,omitempty"`
	ProjectID   int64  `json:"project_id"`
	Title       string `json:"title"`
	Description string `json:"description"`
}

type TeamMemberRequest

type TeamMemberRequest struct {
	UserID   string `json:"user_id"`
	Role     string `json:"role"`
	JobTitle string `json:"job_title"`
}

type TeamRequest

type TeamRequest struct {
	ID           *int64 `json:"id,omitempty"`
	Name         string `json:"name"`
	ParentTeamID *int64 `json:"parent_team_id,omitempty"`
}

type TicketCreateRequest

type TicketCreateRequest struct {
	ProjectID          int64             `json:"project_id"`
	ParentID           *string           `json:"parent_id,omitempty"`
	CloneOf            *string           `json:"clone_of,omitempty"`
	Type               string            `json:"type"`
	Title              string            `json:"title"`
	Description        string            `json:"description"`
	AcceptanceCriteria string            `json:"acceptance_criteria"`
	DORMap             store.GuidanceMap `json:"dor_map,omitempty"`
	DODMap             store.GuidanceMap `json:"dod_map,omitempty"`
	ACMap              store.GuidanceMap `json:"ac_map,omitempty"`
	GitRepository      string            `json:"git_repository"`
	GitBranch          string            `json:"git_branch"`
	Priority           int               `json:"priority"`
	EstimateEffort     int               `json:"estimate_effort"`
	EstimateComplete   string            `json:"estimate_complete,omitempty"`
	Assignee           string            `json:"assignee"`
	Status             string            `json:"status,omitempty"`
	Stage              string            `json:"stage,omitempty"`
	State              string            `json:"state,omitempty"`
	Message            string            `json:"message,omitempty"`
}

type TicketHealthRequest

type TicketHealthRequest struct {
	Score int `json:"score"`
}

type TicketRequest

type TicketRequest struct {
	ProjectID int64   `json:"project_id,omitempty"`
	TicketID  *string `json:"ticket_id,omitempty"`
	TicketRef string  `json:"ticket_ref,omitempty"`
	DryRun    bool    `json:"dry_run,omitempty"`
}

type TicketRequestResponse

type TicketRequestResponse struct {
	Status  string                `json:"status"`
	Ticket  *store.Ticket         `json:"ticket,omitempty"`
	Project *store.Project        `json:"project,omitempty"`
	Parents []store.Ticket        `json:"parents,omitempty"`
	Sdlc    *store.SdlcWithStages `json:"sdlc,omitempty"`
	Role    *store.Role           `json:"role,omitempty"`
}

type TicketUpdateRequest

type TicketUpdateRequest struct {
	Title              string            `json:"title"`
	Description        string            `json:"description"`
	AcceptanceCriteria string            `json:"acceptance_criteria"`
	DORMap             store.GuidanceMap `json:"dor_map,omitempty"`
	DODMap             store.GuidanceMap `json:"dod_map,omitempty"`
	ACMap              store.GuidanceMap `json:"ac_map,omitempty"`
	GitRepository      string            `json:"git_repository"`
	GitBranch          string            `json:"git_branch"`
	ParentID           *string           `json:"parent_id,omitempty"`
	Assignee           string            `json:"assignee"`
	Status             string            `json:"status,omitempty"`
	Stage              string            `json:"stage,omitempty"`
	State              string            `json:"state,omitempty"`
	Priority           int               `json:"priority"`
	Order              int               `json:"order"`
	EstimateEffort     int               `json:"estimate_effort"`
	EstimateComplete   string            `json:"estimate_complete,omitempty"`
	Message            string            `json:"message,omitempty"`
	Type               string            `json:"type,omitempty"`
}

type TimeEntryRequest added in v0.1.842

type TimeEntryRequest struct {
	Minutes int    `json:"minutes"`
	Note    string `json:"note"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL