Versions in this module Expand all Collapse all v0 v0.13.0 Apr 19, 2026 Changes in this version + type Client struct + func NewClient(baseURL, username, token string) *Client + func (c *Client) GetPageLabels(ctx context.Context, pageID string) ([]Label, error) + func (c *Client) GetPages(ctx context.Context, spaceID string) ([]Page, error) + func (c *Client) GetSpaces(ctx context.Context, keys []string) ([]Space, error) + type Config struct + BaseURL string + Exclude []string + Spaces []string + Token string + Username string + type Extractor struct + func New(logger log.Logger) *Extractor + func (e *Extractor) Extract(ctx context.Context, emit plugins.Emit) error + func (e *Extractor) Init(ctx context.Context, config plugins.Config) error + type Label struct + ID string + Name string + type Page struct + AuthorID string + Body struct{ ... } + CreatedAt time.Time + ID string + Labels struct{ ... } + Links struct{ ... } + ParentID string + SpaceID string + Status string + Title string + Version struct{ ... } + type Space struct + Description struct{ ... } + ID string + Key string + Links struct{ ... } + Name string + Status string + Type string