* dev: initialize plane analytics * dev: plane analytics endpoint * dev: update endpoint to give data with segments as well * dev: analytics with count and effort paramters * feat: analytics endpoints * feat: saved analytics * dev: remove print logs * dev: rename x_axis to dimension in response * dev: remove color queries * dev: update query for None values * feat: analytics export * dev: update code structure send color when state or label and fix none count * dev: uncomment try catch block * dev: fix segment keyerror * dev: default analytics endpoint * dev: fix segmented results * dev: default analytics endpoint and colors for segment * dev: total issues and open issues by state * dev: segment colors * dev: fix total issue annotate * dev: effort segmentation * dev: total estimates and open estimates * fix: effort when not segmented * dev: send avatar for default analytics
71 lines
No EOL
1.3 KiB
Python
71 lines
No EOL
1.3 KiB
Python
from .base import BaseModel
|
|
|
|
from .user import User
|
|
|
|
from .workspace import (
|
|
Workspace,
|
|
WorkspaceMember,
|
|
Team,
|
|
WorkspaceMemberInvite,
|
|
TeamMember,
|
|
WorkspaceTheme,
|
|
)
|
|
|
|
from .project import (
|
|
Project,
|
|
ProjectMember,
|
|
ProjectBaseModel,
|
|
ProjectMemberInvite,
|
|
ProjectIdentifier,
|
|
ProjectFavorite,
|
|
)
|
|
|
|
from .issue import (
|
|
Issue,
|
|
IssueActivity,
|
|
TimelineIssue,
|
|
IssueProperty,
|
|
IssueComment,
|
|
IssueBlocker,
|
|
IssueLabel,
|
|
IssueAssignee,
|
|
Label,
|
|
IssueBlocker,
|
|
IssueLink,
|
|
IssueSequence,
|
|
IssueAttachment,
|
|
)
|
|
|
|
from .asset import FileAsset
|
|
|
|
from .social_connection import SocialLoginConnection
|
|
|
|
from .state import State
|
|
|
|
from .cycle import Cycle, CycleIssue, CycleFavorite
|
|
|
|
from .shortcut import Shortcut
|
|
|
|
from .view import IssueView, IssueViewFavorite
|
|
|
|
from .module import Module, ModuleMember, ModuleIssue, ModuleLink, ModuleFavorite
|
|
|
|
from .api_token import APIToken
|
|
|
|
from .integration import (
|
|
WorkspaceIntegration,
|
|
Integration,
|
|
GithubRepository,
|
|
GithubRepositorySync,
|
|
GithubIssueSync,
|
|
GithubCommentSync,
|
|
SlackProjectSync,
|
|
)
|
|
|
|
from .importer import Importer
|
|
|
|
from .page import Page, PageBlock, PageFavorite, PageLabel
|
|
|
|
from .estimate import Estimate, EstimatePoint
|
|
|
|
from .analytic import AnalyticView |