feat: add workspace

This commit is contained in:
Artem Tsyrulnikov
2025-12-13 22:09:55 +03:00
parent 2fdd56c3e0
commit af32e2a507
55 changed files with 677 additions and 227 deletions

View File

@@ -53,6 +53,11 @@ __all__ = (
'ParserPostFoundEvent',
'ParserPostDeletedEvent',
'ParserViewsUpdatedEvent',
'WorkspaceMembershipOutput',
'GetWorkspacesOutput',
'CreateWorkspaceInput',
'CreateWorkspaceOutput',
'UpdateWorkspaceInput',
)
from .analytics import (
@@ -122,3 +127,10 @@ from .views import (
PlacementViewsHistoryOutput,
UpdateViewsManuallyInput,
)
from .workspace import (
CreateWorkspaceInput,
CreateWorkspaceOutput,
GetWorkspacesOutput,
UpdateWorkspaceInput,
WorkspaceMembershipOutput,
)