mirror of
https://github.com/remnawave/python-sdk.git
synced 2026-08-31 14:21:05 +00:00
- Bump version to 2.4.4 and update description in pyproject.toml - Refactor RemnawaveSDK to include SubscriptionPageConfigController - Introduce new subscription page management endpoints: - Get, create, update, delete, reorder, and clone subscription page configs - Remove deprecated NodesUsageHistoryController and UsersStatsController - Add new bandwidth stats models and endpoints for legacy and new stats - Enhance tests for bandwidth stats and subscription page management - Ensure backward compatibility with legacy endpoints while introducing new stats models
59 lines
2.2 KiB
Python
59 lines
2.2 KiB
Python
from .api_tokens_management import APITokensManagementController
|
|
from .auth import AuthController
|
|
from .bandwidthstats import BandWidthStatsController
|
|
from .config_profiles import ConfigProfilesController
|
|
from .hosts import HostsController
|
|
from .hosts_bulk_actions import HostsBulkActionsController
|
|
from .hwid import HWIDUserController
|
|
from .inbounds import InboundsController
|
|
from .inbounds_bulk_actions import InboundsBulkActionsController
|
|
from .infra_billing import InfraBillingController
|
|
from .internal_squads import InternalSquadsController
|
|
from .keygen import KeygenController
|
|
from .nodes import NodesController
|
|
from .subscription import SubscriptionController
|
|
from .subscriptions_controller import SubscriptionsController
|
|
from .subscriptions_settings import SubscriptionsSettingsController
|
|
from .subscriptions_template import SubscriptionsTemplateController
|
|
from .system import SystemController
|
|
from .users import UsersController
|
|
from .users_bulk_actions import UsersBulkActionsController
|
|
from .webhooks import WebhookUtility
|
|
from .xray_config import XrayConfigController
|
|
from .subscriptions_request import SubscriptionRequestHistoryController
|
|
from .passkeys import PasskeysController
|
|
from .external_squads import ExternalSquadsController
|
|
from .snippets import SnippetsController
|
|
from .remnawave_settings import RemnawaveSettingsController
|
|
from .subscription_page import SubscriptionPageConfigController
|
|
|
|
__all__ = [
|
|
"APITokensManagementController",
|
|
"AuthController",
|
|
"BandWidthStatsController",
|
|
"ConfigProfilesController",
|
|
"HostsController",
|
|
"HostsBulkActionsController",
|
|
"HWIDUserController",
|
|
"InboundsController",
|
|
"InboundsBulkActionsController",
|
|
"InfraBillingController",
|
|
"InternalSquadsController",
|
|
"KeygenController",
|
|
"NodesController",
|
|
"SubscriptionController",
|
|
"SubscriptionsController",
|
|
"SubscriptionsSettingsController",
|
|
"SubscriptionsTemplateController",
|
|
"SystemController",
|
|
"UsersController",
|
|
"UsersBulkActionsController",
|
|
"WebhookUtility",
|
|
"XrayConfigController",
|
|
"SubscriptionRequestHistoryController",
|
|
"PasskeysController",
|
|
"ExternalSquadsController",
|
|
"SnippetsController",
|
|
"RemnawaveSettingsController",
|
|
"SubscriptionPageConfigController"
|
|
]
|