Versions in this module Expand all Collapse all v0 v0.12.0 Dec 29, 2024 v0.11.0 Oct 20, 2024 Changes in this version type IssueChanges + func GetIssueChanges(context context.Context, cmd *cobra.Command, issueID string) (changes IssueChanges, err error) v0.10.2 Jun 14, 2024 v0.10.1 Feb 12, 2024 v0.10.0 Feb 3, 2024 v0.9.0 Jan 24, 2024 v0.8.0 Dec 30, 2023 v0.7.0 Dec 29, 2023 v0.6.0 Dec 21, 2023 v0.5.0 Dec 20, 2023 Changes in this version + var Command = &cobra.Command + func GetIssueIDs(context context.Context, cmd *cobra.Command, currentProfile *profile.Profile) (ids []string) + type Change struct + New string + Old string + func (change Change) String() string + type ChangeSet struct + Assignee *Change + Component *Change + Content *Change + Kind *Change + Milestone *Change + Priority *Change + State *Change + Title *Change + Version *Change + func (changeSet ChangeSet) String() string + type Issue struct + Assignee user.Account + Component *component.Component + Content common.RenderedText + CreatedOn time.Time + EditedOn time.Time + ID int + Kind string + Links common.Links + Milestone *common.Entity + Priority string + Reporter user.Account + Repository repository.Repository + State string + Title string + Type string + UpdatedOn time.Time + Votes int + Watchers int + func (issue *Issue) Validate() error + func (issue Issue) GetHeader(short bool) []string + func (issue Issue) GetRow(headers []string) []string + func (issue Issue) MarshalJSON() (data []byte, err error) + func (issue Issue) String() string + type IssueChange struct + Changes ChangeSet + CreatedOn time.Time + ID int + Issue Issue + Links common.Links + Message common.RenderedText + Name string + Type string + User user.Account + func (change IssueChange) MarshalJSON() (data []byte, err error) + func (issueChange IssueChange) GetHeader(short bool) []string + func (issueChange IssueChange) GetRow(headers []string) []string + type IssueChanges []IssueChange + func (issueChanges IssueChanges) GetHeader() []string + func (issueChanges IssueChanges) GetRowAt(index int) []string + func (issueChanges IssueChanges) Size() int + type IssueCreator struct + Assignee *user.Account + Content *common.RenderedText + Kind string + Priority string + Title string + type IssueUpdator struct + Assignee *user.Account + Content *common.RenderedText + Kind string + Priority string + Title string + Version *common.Entity + type Issues []Issue + func (issues Issues) GetHeader() []string + func (issues Issues) GetRowAt(index int) []string + func (issues Issues) Size() int