unrealon 1.0.9__py3-none-any.whl → 1.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unrealon/__init__.py +23 -21
- unrealon-1.1.0.dist-info/METADATA +164 -0
- unrealon-1.1.0.dist-info/RECORD +82 -0
- {unrealon-1.0.9.dist-info → unrealon-1.1.0.dist-info}/WHEEL +1 -1
- unrealon-1.1.0.dist-info/entry_points.txt +9 -0
- {unrealon-1.0.9.dist-info → unrealon-1.1.0.dist-info/licenses}/LICENSE +1 -1
- unrealon_bridge/__init__.py +114 -0
- unrealon_bridge/cli.py +316 -0
- unrealon_bridge/client/__init__.py +93 -0
- unrealon_bridge/client/base.py +78 -0
- unrealon_bridge/client/commands.py +89 -0
- unrealon_bridge/client/connection.py +90 -0
- unrealon_bridge/client/events.py +65 -0
- unrealon_bridge/client/health.py +38 -0
- unrealon_bridge/client/html_parser.py +146 -0
- unrealon_bridge/client/logging.py +139 -0
- unrealon_bridge/client/proxy.py +70 -0
- unrealon_bridge/client/scheduler.py +450 -0
- unrealon_bridge/client/session.py +70 -0
- unrealon_bridge/configs/__init__.py +14 -0
- unrealon_bridge/configs/bridge_config.py +212 -0
- unrealon_bridge/configs/bridge_config.yaml +39 -0
- unrealon_bridge/models/__init__.py +138 -0
- unrealon_bridge/models/base.py +28 -0
- unrealon_bridge/models/command.py +41 -0
- unrealon_bridge/models/events.py +40 -0
- unrealon_bridge/models/html_parser.py +79 -0
- unrealon_bridge/models/logging.py +55 -0
- unrealon_bridge/models/parser.py +63 -0
- unrealon_bridge/models/proxy.py +41 -0
- unrealon_bridge/models/requests.py +95 -0
- unrealon_bridge/models/responses.py +88 -0
- unrealon_bridge/models/scheduler.py +592 -0
- unrealon_bridge/models/session.py +28 -0
- unrealon_bridge/server/__init__.py +91 -0
- unrealon_bridge/server/base.py +171 -0
- unrealon_bridge/server/handlers/__init__.py +23 -0
- unrealon_bridge/server/handlers/command.py +110 -0
- unrealon_bridge/server/handlers/html_parser.py +139 -0
- unrealon_bridge/server/handlers/logging.py +95 -0
- unrealon_bridge/server/handlers/parser.py +95 -0
- unrealon_bridge/server/handlers/proxy.py +75 -0
- unrealon_bridge/server/handlers/scheduler.py +545 -0
- unrealon_bridge/server/handlers/session.py +66 -0
- unrealon_browser/__init__.py +61 -18
- unrealon_browser/{src/cli → cli}/browser_cli.py +6 -13
- unrealon_browser/{src/cli → cli}/cookies_cli.py +5 -1
- unrealon_browser/{src/core → core}/browser_manager.py +2 -2
- unrealon_browser/{src/managers → managers}/captcha.py +1 -1
- unrealon_browser/{src/managers → managers}/cookies.py +1 -1
- unrealon_browser/managers/logger_bridge.py +231 -0
- unrealon_browser/{src/managers → managers}/profile.py +1 -1
- unrealon_driver/__init__.py +73 -19
- unrealon_driver/browser/__init__.py +8 -0
- unrealon_driver/browser/config.py +74 -0
- unrealon_driver/browser/manager.py +416 -0
- unrealon_driver/exceptions.py +28 -0
- unrealon_driver/parser/__init__.py +55 -0
- unrealon_driver/parser/cli_manager.py +141 -0
- unrealon_driver/parser/daemon_manager.py +227 -0
- unrealon_driver/parser/managers/__init__.py +46 -0
- unrealon_driver/parser/managers/browser.py +51 -0
- unrealon_driver/parser/managers/config.py +281 -0
- unrealon_driver/parser/managers/error.py +412 -0
- unrealon_driver/parser/managers/html.py +732 -0
- unrealon_driver/parser/managers/logging.py +609 -0
- unrealon_driver/parser/managers/result.py +321 -0
- unrealon_driver/parser/parser_manager.py +628 -0
- unrealon/sdk_config.py +0 -88
- unrealon-1.0.9.dist-info/METADATA +0 -810
- unrealon-1.0.9.dist-info/RECORD +0 -246
- unrealon_browser/pyproject.toml +0 -182
- unrealon_browser/src/__init__.py +0 -62
- unrealon_browser/src/managers/logger_bridge.py +0 -395
- unrealon_driver/README.md +0 -204
- unrealon_driver/pyproject.toml +0 -187
- unrealon_driver/src/__init__.py +0 -90
- unrealon_driver/src/cli/__init__.py +0 -10
- unrealon_driver/src/cli/main.py +0 -66
- unrealon_driver/src/cli/simple.py +0 -510
- unrealon_driver/src/config/__init__.py +0 -11
- unrealon_driver/src/config/auto_config.py +0 -478
- unrealon_driver/src/core/__init__.py +0 -18
- unrealon_driver/src/core/exceptions.py +0 -289
- unrealon_driver/src/core/parser.py +0 -638
- unrealon_driver/src/dto/__init__.py +0 -66
- unrealon_driver/src/dto/cli.py +0 -119
- unrealon_driver/src/dto/config.py +0 -18
- unrealon_driver/src/dto/events.py +0 -237
- unrealon_driver/src/dto/execution.py +0 -313
- unrealon_driver/src/dto/services.py +0 -311
- unrealon_driver/src/execution/__init__.py +0 -23
- unrealon_driver/src/execution/daemon_mode.py +0 -317
- unrealon_driver/src/execution/interactive_mode.py +0 -88
- unrealon_driver/src/execution/modes.py +0 -45
- unrealon_driver/src/execution/scheduled_mode.py +0 -209
- unrealon_driver/src/execution/test_mode.py +0 -250
- unrealon_driver/src/logging/__init__.py +0 -24
- unrealon_driver/src/logging/driver_logger.py +0 -512
- unrealon_driver/src/services/__init__.py +0 -24
- unrealon_driver/src/services/browser_service.py +0 -726
- unrealon_driver/src/services/llm/__init__.py +0 -15
- unrealon_driver/src/services/llm/browser_llm_service.py +0 -363
- unrealon_driver/src/services/llm/llm.py +0 -195
- unrealon_driver/src/services/logger_service.py +0 -232
- unrealon_driver/src/services/metrics_service.py +0 -185
- unrealon_driver/src/services/scheduler_service.py +0 -489
- unrealon_driver/src/services/websocket_service.py +0 -362
- unrealon_driver/src/utils/__init__.py +0 -16
- unrealon_driver/src/utils/service_factory.py +0 -317
- unrealon_driver/src/utils/time_formatter.py +0 -338
- unrealon_llm/README.md +0 -44
- unrealon_llm/__init__.py +0 -26
- unrealon_llm/pyproject.toml +0 -154
- unrealon_llm/src/__init__.py +0 -228
- unrealon_llm/src/cli/__init__.py +0 -0
- unrealon_llm/src/core/__init__.py +0 -11
- unrealon_llm/src/core/smart_client.py +0 -438
- unrealon_llm/src/dto/__init__.py +0 -155
- unrealon_llm/src/dto/models/__init__.py +0 -0
- unrealon_llm/src/dto/models/config.py +0 -343
- unrealon_llm/src/dto/models/core.py +0 -328
- unrealon_llm/src/dto/models/enums.py +0 -123
- unrealon_llm/src/dto/models/html_analysis.py +0 -345
- unrealon_llm/src/dto/models/statistics.py +0 -473
- unrealon_llm/src/dto/models/translation.py +0 -383
- unrealon_llm/src/dto/models/type_conversion.py +0 -462
- unrealon_llm/src/dto/schemas/__init__.py +0 -0
- unrealon_llm/src/exceptions.py +0 -392
- unrealon_llm/src/llm_config/__init__.py +0 -20
- unrealon_llm/src/llm_config/logging_config.py +0 -178
- unrealon_llm/src/llm_logging/__init__.py +0 -42
- unrealon_llm/src/llm_logging/llm_events.py +0 -107
- unrealon_llm/src/llm_logging/llm_logger.py +0 -466
- unrealon_llm/src/managers/__init__.py +0 -15
- unrealon_llm/src/managers/cache_manager.py +0 -67
- unrealon_llm/src/managers/cost_manager.py +0 -107
- unrealon_llm/src/managers/request_manager.py +0 -298
- unrealon_llm/src/modules/__init__.py +0 -0
- unrealon_llm/src/modules/html_processor/__init__.py +0 -25
- unrealon_llm/src/modules/html_processor/base_processor.py +0 -415
- unrealon_llm/src/modules/html_processor/details_processor.py +0 -85
- unrealon_llm/src/modules/html_processor/listing_processor.py +0 -91
- unrealon_llm/src/modules/html_processor/models/__init__.py +0 -20
- unrealon_llm/src/modules/html_processor/models/processing_models.py +0 -40
- unrealon_llm/src/modules/html_processor/models/universal_model.py +0 -56
- unrealon_llm/src/modules/html_processor/processor.py +0 -102
- unrealon_llm/src/modules/llm/__init__.py +0 -0
- unrealon_llm/src/modules/translator/__init__.py +0 -0
- unrealon_llm/src/provider.py +0 -116
- unrealon_llm/src/utils/__init__.py +0 -95
- unrealon_llm/src/utils/common.py +0 -64
- unrealon_llm/src/utils/data_extractor.py +0 -188
- unrealon_llm/src/utils/html_cleaner.py +0 -767
- unrealon_llm/src/utils/language_detector.py +0 -308
- unrealon_llm/src/utils/models_cache.py +0 -592
- unrealon_llm/src/utils/smart_counter.py +0 -229
- unrealon_llm/src/utils/token_counter.py +0 -189
- unrealon_sdk/README.md +0 -25
- unrealon_sdk/__init__.py +0 -30
- unrealon_sdk/pyproject.toml +0 -231
- unrealon_sdk/src/__init__.py +0 -150
- unrealon_sdk/src/cli/__init__.py +0 -12
- unrealon_sdk/src/cli/commands/__init__.py +0 -22
- unrealon_sdk/src/cli/commands/benchmark.py +0 -42
- unrealon_sdk/src/cli/commands/diagnostics.py +0 -573
- unrealon_sdk/src/cli/commands/health.py +0 -46
- unrealon_sdk/src/cli/commands/integration.py +0 -498
- unrealon_sdk/src/cli/commands/reports.py +0 -43
- unrealon_sdk/src/cli/commands/security.py +0 -36
- unrealon_sdk/src/cli/commands/server.py +0 -483
- unrealon_sdk/src/cli/commands/servers.py +0 -56
- unrealon_sdk/src/cli/commands/tests.py +0 -55
- unrealon_sdk/src/cli/main.py +0 -126
- unrealon_sdk/src/cli/utils/reporter.py +0 -519
- unrealon_sdk/src/clients/openapi.yaml +0 -3347
- unrealon_sdk/src/clients/python_http/__init__.py +0 -3
- unrealon_sdk/src/clients/python_http/api_config.py +0 -228
- unrealon_sdk/src/clients/python_http/models/BaseModel.py +0 -12
- unrealon_sdk/src/clients/python_http/models/BroadcastDeliveryStats.py +0 -33
- unrealon_sdk/src/clients/python_http/models/BroadcastMessage.py +0 -17
- unrealon_sdk/src/clients/python_http/models/BroadcastMessageRequest.py +0 -35
- unrealon_sdk/src/clients/python_http/models/BroadcastPriority.py +0 -10
- unrealon_sdk/src/clients/python_http/models/BroadcastResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/BroadcastResultResponse.py +0 -33
- unrealon_sdk/src/clients/python_http/models/BroadcastTarget.py +0 -11
- unrealon_sdk/src/clients/python_http/models/ConnectionStats.py +0 -27
- unrealon_sdk/src/clients/python_http/models/ConnectionsResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/DeveloperMessageResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ErrorResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/HTTPValidationError.py +0 -16
- unrealon_sdk/src/clients/python_http/models/HealthResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/HealthStatus.py +0 -33
- unrealon_sdk/src/clients/python_http/models/LogLevel.py +0 -10
- unrealon_sdk/src/clients/python_http/models/LoggingRequest.py +0 -27
- unrealon_sdk/src/clients/python_http/models/LoggingResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/MaintenanceMode.py +0 -9
- unrealon_sdk/src/clients/python_http/models/MaintenanceModeRequest.py +0 -33
- unrealon_sdk/src/clients/python_http/models/MaintenanceStatusResponse.py +0 -39
- unrealon_sdk/src/clients/python_http/models/ParserCommandRequest.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ParserMessageResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationRequest.py +0 -28
- unrealon_sdk/src/clients/python_http/models/ParserRegistrationResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ParserType.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyBlockRequest.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyEndpointResponse.py +0 -20
- unrealon_sdk/src/clients/python_http/models/ProxyListResponse.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyProvider.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyPurchaseRequest.py +0 -25
- unrealon_sdk/src/clients/python_http/models/ProxyResponse.py +0 -47
- unrealon_sdk/src/clients/python_http/models/ProxyRotationRequest.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ProxyStatus.py +0 -10
- unrealon_sdk/src/clients/python_http/models/ProxyUsageRequest.py +0 -19
- unrealon_sdk/src/clients/python_http/models/ProxyUsageStatsResponse.py +0 -26
- unrealon_sdk/src/clients/python_http/models/ServiceRegistrationDto.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ServiceStatsResponse.py +0 -31
- unrealon_sdk/src/clients/python_http/models/SessionStartRequest.py +0 -23
- unrealon_sdk/src/clients/python_http/models/SuccessResponse.py +0 -25
- unrealon_sdk/src/clients/python_http/models/SystemNotificationResponse.py +0 -23
- unrealon_sdk/src/clients/python_http/models/ValidationError.py +0 -18
- unrealon_sdk/src/clients/python_http/models/ValidationErrorResponse.py +0 -21
- unrealon_sdk/src/clients/python_http/models/WebSocketMetrics.py +0 -21
- unrealon_sdk/src/clients/python_http/models/__init__.py +0 -44
- unrealon_sdk/src/clients/python_http/services/None_service.py +0 -35
- unrealon_sdk/src/clients/python_http/services/ParserManagement_service.py +0 -190
- unrealon_sdk/src/clients/python_http/services/ProxyManagement_service.py +0 -289
- unrealon_sdk/src/clients/python_http/services/SocketLogging_service.py +0 -187
- unrealon_sdk/src/clients/python_http/services/SystemHealth_service.py +0 -119
- unrealon_sdk/src/clients/python_http/services/WebSocketAPI_service.py +0 -198
- unrealon_sdk/src/clients/python_http/services/__init__.py +0 -0
- unrealon_sdk/src/clients/python_http/services/admin_service.py +0 -125
- unrealon_sdk/src/clients/python_http/services/async_None_service.py +0 -35
- unrealon_sdk/src/clients/python_http/services/async_ParserManagement_service.py +0 -190
- unrealon_sdk/src/clients/python_http/services/async_ProxyManagement_service.py +0 -289
- unrealon_sdk/src/clients/python_http/services/async_SocketLogging_service.py +0 -189
- unrealon_sdk/src/clients/python_http/services/async_SystemHealth_service.py +0 -123
- unrealon_sdk/src/clients/python_http/services/async_WebSocketAPI_service.py +0 -200
- unrealon_sdk/src/clients/python_http/services/async_admin_service.py +0 -125
- unrealon_sdk/src/clients/python_websocket/__init__.py +0 -28
- unrealon_sdk/src/clients/python_websocket/client.py +0 -490
- unrealon_sdk/src/clients/python_websocket/events.py +0 -732
- unrealon_sdk/src/clients/python_websocket/example.py +0 -136
- unrealon_sdk/src/clients/python_websocket/types.py +0 -871
- unrealon_sdk/src/core/__init__.py +0 -64
- unrealon_sdk/src/core/client.py +0 -556
- unrealon_sdk/src/core/config.py +0 -465
- unrealon_sdk/src/core/exceptions.py +0 -239
- unrealon_sdk/src/core/metadata.py +0 -191
- unrealon_sdk/src/core/models.py +0 -142
- unrealon_sdk/src/core/types.py +0 -68
- unrealon_sdk/src/dto/__init__.py +0 -268
- unrealon_sdk/src/dto/authentication.py +0 -108
- unrealon_sdk/src/dto/cache.py +0 -208
- unrealon_sdk/src/dto/common.py +0 -19
- unrealon_sdk/src/dto/concurrency.py +0 -393
- unrealon_sdk/src/dto/events.py +0 -108
- unrealon_sdk/src/dto/health.py +0 -339
- unrealon_sdk/src/dto/load_balancing.py +0 -336
- unrealon_sdk/src/dto/logging.py +0 -230
- unrealon_sdk/src/dto/performance.py +0 -165
- unrealon_sdk/src/dto/rate_limiting.py +0 -295
- unrealon_sdk/src/dto/resource_pooling.py +0 -128
- unrealon_sdk/src/dto/structured_logging.py +0 -112
- unrealon_sdk/src/dto/task_scheduling.py +0 -121
- unrealon_sdk/src/dto/websocket.py +0 -55
- unrealon_sdk/src/enterprise/__init__.py +0 -59
- unrealon_sdk/src/enterprise/authentication.py +0 -401
- unrealon_sdk/src/enterprise/cache_manager.py +0 -578
- unrealon_sdk/src/enterprise/error_recovery.py +0 -494
- unrealon_sdk/src/enterprise/event_system.py +0 -549
- unrealon_sdk/src/enterprise/health_monitor.py +0 -747
- unrealon_sdk/src/enterprise/load_balancer.py +0 -964
- unrealon_sdk/src/enterprise/logging/__init__.py +0 -68
- unrealon_sdk/src/enterprise/logging/cleanup.py +0 -156
- unrealon_sdk/src/enterprise/logging/development.py +0 -744
- unrealon_sdk/src/enterprise/logging/service.py +0 -410
- unrealon_sdk/src/enterprise/multithreading_manager.py +0 -853
- unrealon_sdk/src/enterprise/performance_monitor.py +0 -539
- unrealon_sdk/src/enterprise/proxy_manager.py +0 -696
- unrealon_sdk/src/enterprise/rate_limiter.py +0 -652
- unrealon_sdk/src/enterprise/resource_pool.py +0 -763
- unrealon_sdk/src/enterprise/task_scheduler.py +0 -709
- unrealon_sdk/src/internal/__init__.py +0 -10
- unrealon_sdk/src/internal/command_router.py +0 -497
- unrealon_sdk/src/internal/connection_manager.py +0 -397
- unrealon_sdk/src/internal/http_client.py +0 -446
- unrealon_sdk/src/internal/websocket_client.py +0 -420
- unrealon_sdk/src/provider.py +0 -471
- unrealon_sdk/src/utils.py +0 -234
- /unrealon_browser/{src/cli → cli}/__init__.py +0 -0
- /unrealon_browser/{src/cli → cli}/interactive_mode.py +0 -0
- /unrealon_browser/{src/cli → cli}/main.py +0 -0
- /unrealon_browser/{src/core → core}/__init__.py +0 -0
- /unrealon_browser/{src/dto → dto}/__init__.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/config.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/core.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/dataclasses.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/detection.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/enums.py +0 -0
- /unrealon_browser/{src/dto → dto}/models/statistics.py +0 -0
- /unrealon_browser/{src/managers → managers}/__init__.py +0 -0
- /unrealon_browser/{src/managers → managers}/stealth.py +0 -0
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class MaintenanceModeRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
MaintenanceModeRequest model
|
|
9
|
-
Request to manage maintenance mode.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
admin_context: Optional[Union[Dict[str, Any]]] = Field(validation_alias="admin_context", default=None)
|
|
16
|
-
|
|
17
|
-
affected_services: Optional[Union[List[str]]] = Field(validation_alias="affected_services", default=None)
|
|
18
|
-
|
|
19
|
-
enable: bool = Field(validation_alias="enable")
|
|
20
|
-
|
|
21
|
-
estimated_duration_minutes: Optional[int] = Field(
|
|
22
|
-
validation_alias="estimated_duration_minutes", default=None
|
|
23
|
-
)
|
|
24
|
-
|
|
25
|
-
grace_period_minutes: Optional[int] = Field(validation_alias="grace_period_minutes", default=None)
|
|
26
|
-
|
|
27
|
-
mode: Optional[Any] = Field(validation_alias="mode", default=None)
|
|
28
|
-
|
|
29
|
-
notify_users: Optional[bool] = Field(validation_alias="notify_users", default=None)
|
|
30
|
-
|
|
31
|
-
reason: str = Field(validation_alias="reason")
|
|
32
|
-
|
|
33
|
-
request_id: Optional[str] = Field(validation_alias="request_id", default=None)
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
from .MaintenanceMode import MaintenanceMode
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class MaintenanceStatusResponse(BaseModel):
|
|
9
|
-
"""
|
|
10
|
-
MaintenanceStatusResponse model
|
|
11
|
-
Current maintenance status response.
|
|
12
|
-
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
16
|
-
|
|
17
|
-
affected_services: Optional[List[str]] = Field(validation_alias="affected_services", default=None)
|
|
18
|
-
|
|
19
|
-
data: Optional[Union[Dict[str, Any]]] = Field(validation_alias="data", default=None)
|
|
20
|
-
|
|
21
|
-
estimated_end: Optional[str] = Field(validation_alias="estimated_end", default=None)
|
|
22
|
-
|
|
23
|
-
grace_period_remaining: Optional[int] = Field(validation_alias="grace_period_remaining", default=None)
|
|
24
|
-
|
|
25
|
-
maintenance_active: bool = Field(validation_alias="maintenance_active")
|
|
26
|
-
|
|
27
|
-
message: str = Field(validation_alias="message")
|
|
28
|
-
|
|
29
|
-
mode: Optional[Union[MaintenanceMode]] = Field(validation_alias="mode", default=None)
|
|
30
|
-
|
|
31
|
-
reason: Optional[str] = Field(validation_alias="reason", default=None)
|
|
32
|
-
|
|
33
|
-
request_id: Optional[str] = Field(validation_alias="request_id", default=None)
|
|
34
|
-
|
|
35
|
-
started_at: Optional[str] = Field(validation_alias="started_at", default=None)
|
|
36
|
-
|
|
37
|
-
success: Optional[bool] = Field(validation_alias="success", default=None)
|
|
38
|
-
|
|
39
|
-
timestamp: Optional[str] = Field(validation_alias="timestamp", default=None)
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ParserCommandRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ParserCommandRequest model
|
|
9
|
-
Request model for sending commands to parsers.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
callback_url: Optional[str] = Field(validation_alias="callback_url", default=None)
|
|
16
|
-
|
|
17
|
-
command: str = Field(validation_alias="command")
|
|
18
|
-
|
|
19
|
-
metadata: Optional[Union[Dict[str, Any]]] = Field(validation_alias="metadata", default=None)
|
|
20
|
-
|
|
21
|
-
parameters: Optional[Dict[str, Any]] = Field(validation_alias="parameters", default=None)
|
|
22
|
-
|
|
23
|
-
priority: Optional[str] = Field(validation_alias="priority", default=None)
|
|
24
|
-
|
|
25
|
-
timeout: Optional[int] = Field(validation_alias="timeout", default=None)
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ParserMessageResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ParserMessageResponse model
|
|
9
|
-
Response model for parser message operations.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
event: str = Field(validation_alias="event")
|
|
16
|
-
|
|
17
|
-
message_sent: bool = Field(validation_alias="message_sent")
|
|
18
|
-
|
|
19
|
-
parser_id: str = Field(validation_alias="parser_id")
|
|
20
|
-
|
|
21
|
-
success: bool = Field(validation_alias="success")
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
from .ParserType import ParserType
|
|
6
|
-
from .ServiceRegistrationDto import ServiceRegistrationDto
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class ParserRegistrationRequest(BaseModel):
|
|
10
|
-
"""
|
|
11
|
-
ParserRegistrationRequest model
|
|
12
|
-
Request DTO for parser registration.
|
|
13
|
-
|
|
14
|
-
"""
|
|
15
|
-
|
|
16
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
17
|
-
|
|
18
|
-
api_key: str = Field(validation_alias="api_key")
|
|
19
|
-
|
|
20
|
-
metadata: Optional[Dict[str, Any]] = Field(validation_alias="metadata", default=None)
|
|
21
|
-
|
|
22
|
-
parser_id: str = Field(validation_alias="parser_id")
|
|
23
|
-
|
|
24
|
-
parser_name: str = Field(validation_alias="parser_name")
|
|
25
|
-
|
|
26
|
-
parser_type: ParserType = Field(validation_alias="parser_type")
|
|
27
|
-
|
|
28
|
-
services: Optional[List[Optional[ServiceRegistrationDto]]] = Field(validation_alias="services", default=None)
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ParserRegistrationResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ParserRegistrationResponse model
|
|
9
|
-
Response DTO for parser registration.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
developer_id: Optional[str] = Field(validation_alias="developer_id", default=None)
|
|
16
|
-
|
|
17
|
-
error: Optional[str] = Field(validation_alias="error", default=None)
|
|
18
|
-
|
|
19
|
-
message: Optional[str] = Field(validation_alias="message", default=None)
|
|
20
|
-
|
|
21
|
-
parser_id: Optional[str] = Field(validation_alias="parser_id", default=None)
|
|
22
|
-
|
|
23
|
-
registered_services: Optional[List[str]] = Field(validation_alias="registered_services", default=None)
|
|
24
|
-
|
|
25
|
-
success: bool = Field(validation_alias="success")
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ProxyBlockRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ProxyBlockRequest model
|
|
9
|
-
Request to report blocked proxy.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
parser_id: str = Field(validation_alias="parser_id")
|
|
16
|
-
|
|
17
|
-
proxy_id: str = Field(validation_alias="proxy_id")
|
|
18
|
-
|
|
19
|
-
reason: Optional[str] = Field(validation_alias="reason", default=None)
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ProxyEndpointResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ProxyEndpointResponse model
|
|
9
|
-
|
|
10
|
-
"""
|
|
11
|
-
|
|
12
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
13
|
-
|
|
14
|
-
connection_string: Optional[str] = Field(validation_alias="connection_string", default=None)
|
|
15
|
-
|
|
16
|
-
host: str = Field(validation_alias="host")
|
|
17
|
-
|
|
18
|
-
port: int = Field(validation_alias="port")
|
|
19
|
-
|
|
20
|
-
protocol: str = Field(validation_alias="protocol")
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
from .ProxyResponse import ProxyResponse
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class ProxyListResponse(BaseModel):
|
|
9
|
-
"""
|
|
10
|
-
ProxyListResponse model
|
|
11
|
-
Response model for proxy list endpoint.
|
|
12
|
-
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
16
|
-
|
|
17
|
-
items: List[ProxyResponse] = Field(validation_alias="items")
|
|
18
|
-
|
|
19
|
-
total: int = Field(validation_alias="total")
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ProxyPurchaseRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ProxyPurchaseRequest model
|
|
9
|
-
Request to purchase proxies.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
count: int = Field(validation_alias="count")
|
|
16
|
-
|
|
17
|
-
country: str = Field(validation_alias="country")
|
|
18
|
-
|
|
19
|
-
description: Optional[str] = Field(validation_alias="description", default=None)
|
|
20
|
-
|
|
21
|
-
duration_days: int = Field(validation_alias="duration_days")
|
|
22
|
-
|
|
23
|
-
provider: str = Field(validation_alias="provider")
|
|
24
|
-
|
|
25
|
-
shared: Optional[bool] = Field(validation_alias="shared", default=None)
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
from .ProxyEndpointResponse import ProxyEndpointResponse
|
|
6
|
-
from .ProxyUsageStatsResponse import ProxyUsageStatsResponse
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
class ProxyResponse(BaseModel):
|
|
10
|
-
"""
|
|
11
|
-
ProxyResponse model
|
|
12
|
-
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
16
|
-
|
|
17
|
-
city: Optional[str] = Field(validation_alias="city", default=None)
|
|
18
|
-
|
|
19
|
-
country: Optional[str] = Field(validation_alias="country", default=None)
|
|
20
|
-
|
|
21
|
-
created_at: str = Field(validation_alias="created_at")
|
|
22
|
-
|
|
23
|
-
display_name: Optional[str] = Field(validation_alias="display_name", default=None)
|
|
24
|
-
|
|
25
|
-
endpoint: ProxyEndpointResponse = Field(validation_alias="endpoint")
|
|
26
|
-
|
|
27
|
-
expires_at: Optional[str] = Field(validation_alias="expires_at", default=None)
|
|
28
|
-
|
|
29
|
-
is_expired: Optional[bool] = Field(validation_alias="is_expired", default=None)
|
|
30
|
-
|
|
31
|
-
is_healthy: Optional[bool] = Field(validation_alias="is_healthy", default=None)
|
|
32
|
-
|
|
33
|
-
metadata: Optional[Dict[str, Any]] = Field(validation_alias="metadata", default=None)
|
|
34
|
-
|
|
35
|
-
provider: str = Field(validation_alias="provider")
|
|
36
|
-
|
|
37
|
-
provider_proxy_id: Optional[str] = Field(validation_alias="provider_proxy_id", default=None)
|
|
38
|
-
|
|
39
|
-
proxy_id: str = Field(validation_alias="proxy_id")
|
|
40
|
-
|
|
41
|
-
region: Optional[str] = Field(validation_alias="region", default=None)
|
|
42
|
-
|
|
43
|
-
status: str = Field(validation_alias="status")
|
|
44
|
-
|
|
45
|
-
tags: Optional[List[str]] = Field(validation_alias="tags", default=None)
|
|
46
|
-
|
|
47
|
-
usage_stats: ProxyUsageStatsResponse = Field(validation_alias="usage_stats")
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ProxyRotationRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ProxyRotationRequest model
|
|
9
|
-
Request for proxy rotation via API.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
country: Optional[str] = Field(validation_alias="country", default=None)
|
|
16
|
-
|
|
17
|
-
exclude_proxy_ids: Optional[List[str]] = Field(validation_alias="exclude_proxy_ids", default=None)
|
|
18
|
-
|
|
19
|
-
force_rotation: Optional[bool] = Field(validation_alias="force_rotation", default=None)
|
|
20
|
-
|
|
21
|
-
parser_id: str = Field(validation_alias="parser_id")
|
|
22
|
-
|
|
23
|
-
strategy: Optional[str] = Field(validation_alias="strategy", default=None)
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ProxyUsageRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ProxyUsageRequest model
|
|
9
|
-
Request to record proxy usage.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
error_reason: Optional[str] = Field(validation_alias="error_reason", default=None)
|
|
16
|
-
|
|
17
|
-
response_time_ms: Optional[float] = Field(validation_alias="response_time_ms", default=None)
|
|
18
|
-
|
|
19
|
-
success: bool = Field(validation_alias="success")
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ProxyUsageStatsResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ProxyUsageStatsResponse model
|
|
9
|
-
|
|
10
|
-
"""
|
|
11
|
-
|
|
12
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
13
|
-
|
|
14
|
-
avg_response_time_ms: Optional[float] = Field(validation_alias="avg_response_time_ms", default=None)
|
|
15
|
-
|
|
16
|
-
consecutive_failures: int = Field(validation_alias="consecutive_failures")
|
|
17
|
-
|
|
18
|
-
failed_requests: int = Field(validation_alias="failed_requests")
|
|
19
|
-
|
|
20
|
-
last_used_at: Optional[str] = Field(validation_alias="last_used_at", default=None)
|
|
21
|
-
|
|
22
|
-
success_rate: float = Field(validation_alias="success_rate")
|
|
23
|
-
|
|
24
|
-
successful_requests: int = Field(validation_alias="successful_requests")
|
|
25
|
-
|
|
26
|
-
total_requests: int = Field(validation_alias="total_requests")
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ServiceRegistrationDto(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ServiceRegistrationDto model
|
|
9
|
-
DTO for service registration.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
capabilities: Optional[Dict[str, Any]] = Field(validation_alias="capabilities", default=None)
|
|
16
|
-
|
|
17
|
-
config: Optional[Dict[str, Any]] = Field(validation_alias="config", default=None)
|
|
18
|
-
|
|
19
|
-
service_id: str = Field(validation_alias="service_id")
|
|
20
|
-
|
|
21
|
-
service_name: str = Field(validation_alias="service_name")
|
|
22
|
-
|
|
23
|
-
service_type: str = Field(validation_alias="service_type")
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ServiceStatsResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ServiceStatsResponse model
|
|
9
|
-
Base model for service statistics responses.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
additional_metrics: Optional[Dict[str, Any]] = Field(validation_alias="additional_metrics", default=None)
|
|
16
|
-
|
|
17
|
-
error_rate: Optional[float] = Field(validation_alias="error_rate", default=None)
|
|
18
|
-
|
|
19
|
-
errors_encountered: Optional[int] = Field(validation_alias="errors_encountered", default=None)
|
|
20
|
-
|
|
21
|
-
initialized: bool = Field(validation_alias="initialized")
|
|
22
|
-
|
|
23
|
-
last_operation: Optional[str] = Field(validation_alias="last_operation", default=None)
|
|
24
|
-
|
|
25
|
-
operations_performed: Optional[int] = Field(validation_alias="operations_performed", default=None)
|
|
26
|
-
|
|
27
|
-
service_name: str = Field(validation_alias="service_name")
|
|
28
|
-
|
|
29
|
-
status: Optional[str] = Field(validation_alias="status", default=None)
|
|
30
|
-
|
|
31
|
-
uptime_seconds: Optional[float] = Field(validation_alias="uptime_seconds", default=None)
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class SessionStartRequest(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
SessionStartRequest model
|
|
9
|
-
Request to start a new logging session.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
auto_expire: Optional[bool] = Field(validation_alias="auto_expire", default=None)
|
|
16
|
-
|
|
17
|
-
max_entries: Optional[int] = Field(validation_alias="max_entries", default=None)
|
|
18
|
-
|
|
19
|
-
metadata: Optional[Dict[str, Any]] = Field(validation_alias="metadata", default=None)
|
|
20
|
-
|
|
21
|
-
retention_hours: Optional[int] = Field(validation_alias="retention_hours", default=None)
|
|
22
|
-
|
|
23
|
-
tags: Optional[List[str]] = Field(validation_alias="tags", default=None)
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
from .BaseModel import BaseModel
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
class SuccessResponse(BaseModel):
|
|
9
|
-
"""
|
|
10
|
-
SuccessResponse model
|
|
11
|
-
Standard success response model with automatic Pydantic object serialization.
|
|
12
|
-
|
|
13
|
-
"""
|
|
14
|
-
|
|
15
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
16
|
-
|
|
17
|
-
data: Optional[Union[Dict[str, Any], BaseModel, List[BaseModel], List[Dict[str, Any]]]] = Field(
|
|
18
|
-
validation_alias="data", default=None
|
|
19
|
-
)
|
|
20
|
-
|
|
21
|
-
message: Optional[str] = Field(validation_alias="message", default=None)
|
|
22
|
-
|
|
23
|
-
success: Optional[bool] = Field(validation_alias="success", default=None)
|
|
24
|
-
|
|
25
|
-
timestamp: Optional[str] = Field(validation_alias="timestamp", default=None)
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class SystemNotificationResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
SystemNotificationResponse model
|
|
9
|
-
Response model for system notification broadcast.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
broadcasted: bool = Field(validation_alias="broadcasted")
|
|
16
|
-
|
|
17
|
-
content: str = Field(validation_alias="content")
|
|
18
|
-
|
|
19
|
-
priority: str = Field(validation_alias="priority")
|
|
20
|
-
|
|
21
|
-
success: bool = Field(validation_alias="success")
|
|
22
|
-
|
|
23
|
-
title: str = Field(validation_alias="title")
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ValidationError(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ValidationError model
|
|
9
|
-
|
|
10
|
-
"""
|
|
11
|
-
|
|
12
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
13
|
-
|
|
14
|
-
loc: List[Union[str, int]] = Field(validation_alias="loc")
|
|
15
|
-
|
|
16
|
-
msg: str = Field(validation_alias="msg")
|
|
17
|
-
|
|
18
|
-
type: str = Field(validation_alias="type")
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class ValidationErrorResponse(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
ValidationErrorResponse model
|
|
9
|
-
Validation error response for request validation failures.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
error: Optional[str] = Field(validation_alias="error", default=None)
|
|
16
|
-
|
|
17
|
-
error_code: Optional[str] = Field(validation_alias="error_code", default=None)
|
|
18
|
-
|
|
19
|
-
success: Optional[bool] = Field(validation_alias="success", default=None)
|
|
20
|
-
|
|
21
|
-
validation_errors: List[Dict[str, Any]] = Field(validation_alias="validation_errors")
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
from typing import *
|
|
2
|
-
|
|
3
|
-
from pydantic import BaseModel, Field
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
class WebSocketMetrics(BaseModel):
|
|
7
|
-
"""
|
|
8
|
-
WebSocketMetrics model
|
|
9
|
-
Pydantic model for WebSocket performance metrics.
|
|
10
|
-
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
model_config = {"populate_by_name": True, "validate_assignment": True}
|
|
14
|
-
|
|
15
|
-
connections_closed: Optional[int] = Field(validation_alias="connections_closed", default=None)
|
|
16
|
-
|
|
17
|
-
connections_opened: Optional[int] = Field(validation_alias="connections_opened", default=None)
|
|
18
|
-
|
|
19
|
-
messages_received: Optional[int] = Field(validation_alias="messages_received", default=None)
|
|
20
|
-
|
|
21
|
-
messages_sent: Optional[int] = Field(validation_alias="messages_sent", default=None)
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
from .BaseModel import *
|
|
2
|
-
from .BroadcastDeliveryStats import *
|
|
3
|
-
from .BroadcastMessage import *
|
|
4
|
-
from .BroadcastMessageRequest import *
|
|
5
|
-
from .BroadcastPriority import *
|
|
6
|
-
from .BroadcastResponse import *
|
|
7
|
-
from .BroadcastResultResponse import *
|
|
8
|
-
from .BroadcastTarget import *
|
|
9
|
-
from .ConnectionsResponse import *
|
|
10
|
-
from .ConnectionStats import *
|
|
11
|
-
from .DeveloperMessageResponse import *
|
|
12
|
-
from .ErrorResponse import *
|
|
13
|
-
from .HealthResponse import *
|
|
14
|
-
from .HealthStatus import *
|
|
15
|
-
from .HTTPValidationError import *
|
|
16
|
-
from .LoggingRequest import *
|
|
17
|
-
from .LoggingResponse import *
|
|
18
|
-
from .LogLevel import *
|
|
19
|
-
from .MaintenanceMode import *
|
|
20
|
-
from .MaintenanceModeRequest import *
|
|
21
|
-
from .MaintenanceStatusResponse import *
|
|
22
|
-
from .ParserCommandRequest import *
|
|
23
|
-
from .ParserMessageResponse import *
|
|
24
|
-
from .ParserRegistrationRequest import *
|
|
25
|
-
from .ParserRegistrationResponse import *
|
|
26
|
-
from .ParserType import *
|
|
27
|
-
from .ProxyBlockRequest import *
|
|
28
|
-
from .ProxyEndpointResponse import *
|
|
29
|
-
from .ProxyListResponse import *
|
|
30
|
-
from .ProxyProvider import *
|
|
31
|
-
from .ProxyPurchaseRequest import *
|
|
32
|
-
from .ProxyResponse import *
|
|
33
|
-
from .ProxyRotationRequest import *
|
|
34
|
-
from .ProxyStatus import *
|
|
35
|
-
from .ProxyUsageRequest import *
|
|
36
|
-
from .ProxyUsageStatsResponse import *
|
|
37
|
-
from .ServiceRegistrationDto import *
|
|
38
|
-
from .ServiceStatsResponse import *
|
|
39
|
-
from .SessionStartRequest import *
|
|
40
|
-
from .SuccessResponse import *
|
|
41
|
-
from .SystemNotificationResponse import *
|
|
42
|
-
from .ValidationError import *
|
|
43
|
-
from .ValidationErrorResponse import *
|
|
44
|
-
from .WebSocketMetrics import *
|