feat: переименование доменной области

This commit is contained in:
Artem Tsyrulnikov
2025-12-14 12:21:35 +03:00
parent 3cb3da4dbe
commit f3e09a08eb
75 changed files with 1624 additions and 1417 deletions

View File

@@ -2,16 +2,29 @@ __all__ = (
'User',
'Workspace',
'WorkspaceUser',
'TargetChannel',
'ExternalChannel',
'WorkspaceInvite',
'WorkspaceInviteStatus',
'WorkspaceUserStatus',
'WorkspaceUserPermission',
'WorkspaceUserPermissionScope',
'PermissionKey',
'PermissionScopeType',
'Channel',
'ChannelVerificationStatus',
'Project',
'ProjectStatus',
'PurchasePlan',
'PurchasePlanChannel',
'PurchasePlanStatus',
'PurchasePlanChannelStatus',
'Creative',
'Placement',
'Subscription',
'Subscriber',
'PlacementViewsHistory',
'TelegramState',
'TelegramStateEnum',
'TargetChannelStatus',
'ChannelNotFound',
'ProjectNotFound',
'CreativeStatus',
'PlacementStatus',
'SubscriptionStatus',
@@ -24,40 +37,57 @@ __all__ = (
'LoginTokenNotFound',
'LoginTokenExpired',
'LoginTokenAlreadyUsed',
'TargetChannelNotFound',
'ProjectNotFound',
'PurchasePlanNotFound',
'PurchasePlanChannelNotFound',
'ChannelNotFound',
'ChannelAlreadyExists',
'ChannelNoAdminRights',
'ExternalChannelNotFound',
'ExternalChannelAlreadyExists',
'CreativeNotFound',
'CreativeInUse',
'PlacementNotFound',
)
from .channel import Channel, ChannelVerificationStatus
from .creative import Creative, CreativeStatus
from .error import (
ChannelAlreadyExists,
ChannelNoAdminRights,
ChannelNotFound,
CreativeInUse,
CreativeNotFound,
ExternalChannelAlreadyExists,
ExternalChannelNotFound,
LoginTokenAlreadyUsed,
LoginTokenExpired,
LoginTokenNotFound,
PlacementNotFound,
TargetChannelNotFound,
ProjectNotFound,
PurchasePlanChannelNotFound,
PurchasePlanNotFound,
UserNotFound,
WorkspaceAccessDenied,
WorkspaceNotFound,
)
from .external_channel import ExternalChannel
from .login_token import LoginToken
from .placement import InviteLinkType, Placement, PlacementStatus, PostViewsAvailability
from .placement_views_history import PlacementViewsHistory
from .subscriber import Subscriber
from .project import Project, ProjectStatus
from .purchase_plan import (
PurchasePlan,
PurchasePlanChannel,
PurchasePlanChannelStatus,
PurchasePlanStatus,
)
from .subscription import Subscription, SubscriptionStatus
from .target_channel import TargetChannel, TargetChannelStatus
from .telegram_state import TelegramState, TelegramStateEnum
from .user import User
from .workspace import Workspace, WorkspaceUser
from .workspace import (
PermissionKey,
PermissionScopeType,
Workspace,
WorkspaceInvite,
WorkspaceInviteStatus,
WorkspaceUser,
WorkspaceUserPermission,
WorkspaceUserPermissionScope,
WorkspaceUserStatus,
)