clerk-sdk 0.5.6__tar.gz → 0.5.7__tar.gz
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.
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/PKG-INFO +1 -1
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/__init__.py +1 -1
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/client_actor/client_actor.py +0 -1
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/decorators/gui_automation.py +1 -6
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/pyproject.toml +1 -1
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/setup.py +1 -1
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/.github/workflows/ci.yaml +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/.github/workflows/pypi_publish.yml +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/.gitignore +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/LICENSE +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/MANIFEST.in +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/README.md +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/base.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/client.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/decorator/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/decorator/models.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/decorator/task_decorator.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/cli.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/code_runner.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/gui/graph_checker.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/gui/test_session.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/init_project.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/schema/fetch_schema.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/exceptions.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/launch.json.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/main_basic.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/main_gui.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/rollbacks.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/states.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/tasks.json.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/test_payload.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/development/templates/transitions.py.template +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/exceptions/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/exceptions/exceptions.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/exceptions/remote_device.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/action_model/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/action_model/model.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/action_model/utils.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/client.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/client_actor/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/client_actor/exception.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/client_actor/model.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/decorators/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/exceptions/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/exceptions/agent_manager.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/exceptions/modality/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/exceptions/modality/exc.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/exceptions/websocket.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/requirements.txt +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_actions/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_actions/actions.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_actions/base.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_actions/support.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_inspector/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_inspector/gui_vision.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_inspector/models.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_machine/Readme.md +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_machine/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_machine/ai_recovery.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_machine/decorators.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_machine/exceptions.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/gui_automation/ui_state_machine/state_machine.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/document.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/document_statuses.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/file.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/remote_device.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/response_model.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/models/ui_operator.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/utils/__init__.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/utils/logger.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/clerk/utils/save_artifact.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/requirements.txt +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/conftest.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_base.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_client.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_document_models.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_exceptions.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_file_models.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_gui_automation.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_task_decorator.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/tests/test_utils.py +0 -0
- {clerk_sdk-0.5.6 → clerk_sdk-0.5.7}/uv.lock +0 -0
|
@@ -45,7 +45,6 @@ async def before_retry(details: Any):
|
|
|
45
45
|
(ActionTimeoutError, AckTimeoutError),
|
|
46
46
|
interval=10,
|
|
47
47
|
max_tries=2,
|
|
48
|
-
on_backoff=before_retry,
|
|
49
48
|
)
|
|
50
49
|
async def _perform_action_ws(payload: Dict[str, Any]) -> PerformActionResponse:
|
|
51
50
|
"""Perform an action over a WebSocket connection.
|
|
@@ -1,18 +1,13 @@
|
|
|
1
1
|
import asyncio
|
|
2
2
|
import functools
|
|
3
3
|
import os
|
|
4
|
-
import time
|
|
5
4
|
from typing import Any, Callable, Dict, Sequence, Union
|
|
6
5
|
|
|
7
6
|
from websockets.asyncio.client import connect, ClientConnection
|
|
8
7
|
from websockets.protocol import State
|
|
9
8
|
|
|
10
9
|
from clerk.gui_automation.client import RPAClerk
|
|
11
|
-
|
|
12
|
-
ClientAvailabilityTimeout,
|
|
13
|
-
NoClientsAvailable,
|
|
14
|
-
)
|
|
15
|
-
from clerk.models.remote_device import RemoteDevice
|
|
10
|
+
|
|
16
11
|
from clerk.decorator.models import ClerkCodePayload
|
|
17
12
|
from clerk.utils import logger
|
|
18
13
|
from ..exceptions.websocket import WebSocketConnectionFailed
|
|
@@ -13,7 +13,7 @@ gui_requirements = get_requirements("./clerk/gui_automation")
|
|
|
13
13
|
|
|
14
14
|
setup(
|
|
15
15
|
name="clerk-sdk",
|
|
16
|
-
version="0.5.
|
|
16
|
+
version="0.5.7",
|
|
17
17
|
description="Library for interacting with Clerk",
|
|
18
18
|
long_description=open("README.md").read(),
|
|
19
19
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|