asteroid-odyssey 0.1.22__py3-none-any.whl → 0.4.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.
Files changed (138) hide show
  1. asteroid_odyssey/__init__.py +28 -34
  2. asteroid_odyssey/agents_v1_gen/__init__.py +87 -0
  3. asteroid_odyssey/agents_v1_gen/api/__init__.py +7 -0
  4. asteroid_odyssey/agents_v1_gen/api/agent_profile_api.py +1696 -0
  5. asteroid_odyssey/agents_v1_gen/api/api_api.py +516 -0
  6. asteroid_odyssey/agents_v1_gen/api/execution_api.py +1734 -0
  7. asteroid_odyssey/agents_v1_gen/api_client.py +801 -0
  8. asteroid_odyssey/agents_v1_gen/api_response.py +21 -0
  9. asteroid_odyssey/agents_v1_gen/configuration.py +606 -0
  10. asteroid_odyssey/agents_v1_gen/exceptions.py +216 -0
  11. asteroid_odyssey/agents_v1_gen/models/__init__.py +34 -0
  12. asteroid_odyssey/agents_v1_gen/models/agent_profile.py +118 -0
  13. asteroid_odyssey/agents_v1_gen/models/browser_session_recording_response.py +87 -0
  14. asteroid_odyssey/agents_v1_gen/models/country_code.py +44 -0
  15. asteroid_odyssey/agents_v1_gen/models/create_agent_profile_request.py +112 -0
  16. asteroid_odyssey/agents_v1_gen/models/credential.py +95 -0
  17. asteroid_odyssey/agents_v1_gen/models/delete_agent_profile200_response.py +87 -0
  18. asteroid_odyssey/agents_v1_gen/models/error_response.py +87 -0
  19. asteroid_odyssey/agents_v1_gen/models/execution_response.py +87 -0
  20. asteroid_odyssey/agents_v1_gen/models/execution_result.py +101 -0
  21. asteroid_odyssey/agents_v1_gen/models/execution_result_response.py +100 -0
  22. asteroid_odyssey/agents_v1_gen/models/execution_status_response.py +95 -0
  23. asteroid_odyssey/agents_v1_gen/models/health_check200_response.py +87 -0
  24. asteroid_odyssey/agents_v1_gen/models/health_check500_response.py +87 -0
  25. asteroid_odyssey/agents_v1_gen/models/proxy_type.py +37 -0
  26. asteroid_odyssey/agents_v1_gen/models/status.py +43 -0
  27. asteroid_odyssey/agents_v1_gen/models/structured_agent_execution_request.py +89 -0
  28. asteroid_odyssey/agents_v1_gen/models/update_agent_profile_request.py +112 -0
  29. asteroid_odyssey/agents_v1_gen/models/upload_execution_files200_response.py +89 -0
  30. asteroid_odyssey/agents_v1_gen/rest.py +258 -0
  31. asteroid_odyssey/agents_v2_gen/__init__.py +99 -0
  32. asteroid_odyssey/agents_v2_gen/api/__init__.py +5 -0
  33. asteroid_odyssey/agents_v2_gen/api/execution_api.py +625 -0
  34. asteroid_odyssey/agents_v2_gen/api_client.py +801 -0
  35. asteroid_odyssey/agents_v2_gen/api_response.py +21 -0
  36. asteroid_odyssey/agents_v2_gen/configuration.py +612 -0
  37. asteroid_odyssey/agents_v2_gen/exceptions.py +216 -0
  38. asteroid_odyssey/agents_v2_gen/models/__init__.py +42 -0
  39. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_action_completed.py +100 -0
  40. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_action_failed.py +100 -0
  41. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_action_started.py +100 -0
  42. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_generic.py +100 -0
  43. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_status_changed.py +100 -0
  44. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_step_completed.py +100 -0
  45. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_step_started.py +100 -0
  46. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_terminal.py +100 -0
  47. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_transitioned_node.py +100 -0
  48. asteroid_odyssey/agents_v2_gen/models/activity_payload_union_user_message_received.py +100 -0
  49. asteroid_odyssey/agents_v2_gen/models/error.py +89 -0
  50. asteroid_odyssey/agents_v2_gen/models/execution_activity.py +98 -0
  51. asteroid_odyssey/agents_v2_gen/models/execution_activity_action_completed_payload.py +87 -0
  52. asteroid_odyssey/agents_v2_gen/models/execution_activity_action_failed_payload.py +87 -0
  53. asteroid_odyssey/agents_v2_gen/models/execution_activity_action_started_payload.py +87 -0
  54. asteroid_odyssey/agents_v2_gen/models/execution_activity_generic_payload.py +87 -0
  55. asteroid_odyssey/agents_v2_gen/models/execution_activity_payload_union.py +252 -0
  56. asteroid_odyssey/agents_v2_gen/models/execution_activity_status_changed_payload.py +88 -0
  57. asteroid_odyssey/agents_v2_gen/models/execution_activity_step_completed_payload.py +87 -0
  58. asteroid_odyssey/agents_v2_gen/models/execution_activity_step_started_payload.py +87 -0
  59. asteroid_odyssey/agents_v2_gen/models/execution_activity_transitioned_node_payload.py +89 -0
  60. asteroid_odyssey/agents_v2_gen/models/execution_activity_user_message_received_payload.py +89 -0
  61. asteroid_odyssey/agents_v2_gen/models/execution_status.py +43 -0
  62. asteroid_odyssey/agents_v2_gen/models/execution_terminal_payload.py +96 -0
  63. asteroid_odyssey/agents_v2_gen/models/execution_user_messages_add_text_body.py +87 -0
  64. asteroid_odyssey/agents_v2_gen/models/versions.py +37 -0
  65. asteroid_odyssey/agents_v2_gen/rest.py +258 -0
  66. asteroid_odyssey/client.py +881 -304
  67. asteroid_odyssey-0.4.0.dist-info/METADATA +213 -0
  68. asteroid_odyssey-0.4.0.dist-info/RECORD +72 -0
  69. {asteroid_odyssey-0.1.22.dist-info → asteroid_odyssey-0.4.0.dist-info}/WHEEL +1 -1
  70. asteroid_odyssey/api/generated/asteroid_agents_api_client/__init__.py +0 -8
  71. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/__init__.py +0 -1
  72. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/agent/get_agents.py +0 -127
  73. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/api/get_open_api.py +0 -79
  74. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/api/health_check.py +0 -131
  75. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/credentials/__init__.py +0 -0
  76. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/credentials/get_credentials_public_key.py +0 -127
  77. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/__init__.py +0 -0
  78. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/delete_execution.py +0 -156
  79. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/get_browser_session.py +0 -154
  80. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/get_execution.py +0 -154
  81. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/get_execution_files.py +0 -159
  82. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/get_execution_progress.py +0 -159
  83. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/get_executions_for_workflow.py +0 -156
  84. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/execution/update_execution_status.py +0 -115
  85. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/notifications/__init__.py +0 -0
  86. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/notifications/set_slack_channel.py +0 -107
  87. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/optimiser/__init__.py +0 -0
  88. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/optimiser/queue_optimisation_job.py +0 -103
  89. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/__init__.py +0 -0
  90. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/add_workflow_credential.py +0 -111
  91. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/create_workflow.py +0 -174
  92. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/delete_workflow.py +0 -156
  93. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/delete_workflow_credentials.py +0 -96
  94. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/execute_workflow.py +0 -179
  95. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/get_agent_workflow_executions.py +0 -155
  96. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/get_workflow.py +0 -154
  97. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/get_workflow_credentials.py +0 -154
  98. asteroid_odyssey/api/generated/asteroid_agents_api_client/api/workflow/get_workflow_versions.py +0 -159
  99. asteroid_odyssey/api/generated/asteroid_agents_api_client/client.py +0 -268
  100. asteroid_odyssey/api/generated/asteroid_agents_api_client/errors.py +0 -16
  101. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/__init__.py +0 -61
  102. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/agent.py +0 -90
  103. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/browser_session.py +0 -136
  104. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/create_workflow_request.py +0 -126
  105. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/create_workflow_request_fields.py +0 -48
  106. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/create_workflow_request_provider.py +0 -9
  107. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/credential.py +0 -66
  108. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/credentials_request.py +0 -72
  109. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/credentials_response.py +0 -80
  110. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/delete_execution_response_200.py +0 -58
  111. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/delete_execution_response_404.py +0 -58
  112. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/delete_workflow_response_200.py +0 -58
  113. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/delete_workflow_response_404.py +0 -58
  114. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/execution.py +0 -147
  115. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/execution_dynamic_data.py +0 -48
  116. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/execution_result.py +0 -43
  117. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/execution_status.py +0 -89
  118. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/file.py +0 -127
  119. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/health_check_response_200.py +0 -58
  120. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/health_check_response_500.py +0 -58
  121. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/optimisation_request.py +0 -59
  122. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/progress_update.py +0 -77
  123. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/result_schema.py +0 -51
  124. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/slack_channel_request.py +0 -58
  125. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/status.py +0 -13
  126. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/workflow.py +0 -152
  127. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/workflow_execution.py +0 -82
  128. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/workflow_execution_request.py +0 -48
  129. asteroid_odyssey/api/generated/asteroid_agents_api_client/models/workflow_fields.py +0 -48
  130. asteroid_odyssey/api/generated/asteroid_agents_api_client/py.typed +0 -1
  131. asteroid_odyssey/api/generated/asteroid_agents_api_client/types.py +0 -45
  132. asteroid_odyssey/exceptions.py +0 -15
  133. asteroid_odyssey-0.1.22.dist-info/METADATA +0 -31
  134. asteroid_odyssey-0.1.22.dist-info/RECORD +0 -72
  135. asteroid_odyssey-0.1.22.dist-info/entry_points.txt +0 -2
  136. /asteroid_odyssey/{api/generated/asteroid_agents_api_client/api/agent/__init__.py → agents_v1_gen/py.typed} +0 -0
  137. /asteroid_odyssey/{api/generated/asteroid_agents_api_client/api/api/__init__.py → agents_v2_gen/py.typed} +0 -0
  138. {asteroid_odyssey-0.1.22.dist-info → asteroid_odyssey-0.4.0.dist-info}/top_level.txt +0 -0
@@ -1,127 +0,0 @@
1
- from http import HTTPStatus
2
- from typing import Any, Dict, Optional, Union, cast
3
-
4
- import httpx
5
-
6
- from ... import errors
7
- from ...client import AuthenticatedClient, Client
8
- from ...types import Response
9
-
10
-
11
- def _get_kwargs() -> Dict[str, Any]:
12
- _kwargs: Dict[str, Any] = {
13
- "method": "get",
14
- "url": "/credentials/public_key",
15
- }
16
-
17
- return _kwargs
18
-
19
-
20
- def _parse_response(
21
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
22
- ) -> Optional[Union[Any, str]]:
23
- if response.status_code == 200:
24
- response_200 = cast(str, response.json())
25
- return response_200
26
- if response.status_code == 404:
27
- response_404 = cast(Any, None)
28
- return response_404
29
- if client.raise_on_unexpected_status:
30
- raise errors.UnexpectedStatus(response.status_code, response.content)
31
- else:
32
- return None
33
-
34
-
35
- def _build_response(
36
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
37
- ) -> Response[Union[Any, str]]:
38
- return Response(
39
- status_code=HTTPStatus(response.status_code),
40
- content=response.content,
41
- headers=response.headers,
42
- parsed=_parse_response(client=client, response=response),
43
- )
44
-
45
-
46
- def sync_detailed(
47
- *,
48
- client: Union[AuthenticatedClient, Client],
49
- ) -> Response[Union[Any, str]]:
50
- """Get the public key for credentials
51
-
52
- Raises:
53
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
54
- httpx.TimeoutException: If the request takes longer than Client.timeout.
55
-
56
- Returns:
57
- Response[Union[Any, str]]
58
- """
59
-
60
- kwargs = _get_kwargs()
61
-
62
- response = client.get_httpx_client().request(
63
- **kwargs,
64
- )
65
-
66
- return _build_response(client=client, response=response)
67
-
68
-
69
- def sync(
70
- *,
71
- client: Union[AuthenticatedClient, Client],
72
- ) -> Optional[Union[Any, str]]:
73
- """Get the public key for credentials
74
-
75
- Raises:
76
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
77
- httpx.TimeoutException: If the request takes longer than Client.timeout.
78
-
79
- Returns:
80
- Union[Any, str]
81
- """
82
-
83
- return sync_detailed(
84
- client=client,
85
- ).parsed
86
-
87
-
88
- async def asyncio_detailed(
89
- *,
90
- client: Union[AuthenticatedClient, Client],
91
- ) -> Response[Union[Any, str]]:
92
- """Get the public key for credentials
93
-
94
- Raises:
95
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
96
- httpx.TimeoutException: If the request takes longer than Client.timeout.
97
-
98
- Returns:
99
- Response[Union[Any, str]]
100
- """
101
-
102
- kwargs = _get_kwargs()
103
-
104
- response = await client.get_async_httpx_client().request(**kwargs)
105
-
106
- return _build_response(client=client, response=response)
107
-
108
-
109
- async def asyncio(
110
- *,
111
- client: Union[AuthenticatedClient, Client],
112
- ) -> Optional[Union[Any, str]]:
113
- """Get the public key for credentials
114
-
115
- Raises:
116
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
117
- httpx.TimeoutException: If the request takes longer than Client.timeout.
118
-
119
- Returns:
120
- Union[Any, str]
121
- """
122
-
123
- return (
124
- await asyncio_detailed(
125
- client=client,
126
- )
127
- ).parsed
@@ -1,156 +0,0 @@
1
- from http import HTTPStatus
2
- from typing import Any, Dict, Optional, Union
3
- from uuid import UUID
4
-
5
- import httpx
6
-
7
- from ... import errors
8
- from ...client import AuthenticatedClient, Client
9
- from ...models.delete_execution_response_200 import DeleteExecutionResponse200
10
- from ...models.delete_execution_response_404 import DeleteExecutionResponse404
11
- from ...types import Response
12
-
13
-
14
- def _get_kwargs(
15
- id: UUID,
16
- ) -> Dict[str, Any]:
17
- _kwargs: Dict[str, Any] = {
18
- "method": "delete",
19
- "url": f"/execution/{id}",
20
- }
21
-
22
- return _kwargs
23
-
24
-
25
- def _parse_response(
26
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
27
- ) -> Optional[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]:
28
- if response.status_code == 200:
29
- response_200 = DeleteExecutionResponse200.from_dict(response.json())
30
-
31
- return response_200
32
- if response.status_code == 404:
33
- response_404 = DeleteExecutionResponse404.from_dict(response.json())
34
-
35
- return response_404
36
- if client.raise_on_unexpected_status:
37
- raise errors.UnexpectedStatus(response.status_code, response.content)
38
- else:
39
- return None
40
-
41
-
42
- def _build_response(
43
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
44
- ) -> Response[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]:
45
- return Response(
46
- status_code=HTTPStatus(response.status_code),
47
- content=response.content,
48
- headers=response.headers,
49
- parsed=_parse_response(client=client, response=response),
50
- )
51
-
52
-
53
- def sync_detailed(
54
- id: UUID,
55
- *,
56
- client: Union[AuthenticatedClient, Client],
57
- ) -> Response[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]:
58
- """Delete an execution
59
-
60
- Args:
61
- id (UUID):
62
-
63
- Raises:
64
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
65
- httpx.TimeoutException: If the request takes longer than Client.timeout.
66
-
67
- Returns:
68
- Response[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]
69
- """
70
-
71
- kwargs = _get_kwargs(
72
- id=id,
73
- )
74
-
75
- response = client.get_httpx_client().request(
76
- **kwargs,
77
- )
78
-
79
- return _build_response(client=client, response=response)
80
-
81
-
82
- def sync(
83
- id: UUID,
84
- *,
85
- client: Union[AuthenticatedClient, Client],
86
- ) -> Optional[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]:
87
- """Delete an execution
88
-
89
- Args:
90
- id (UUID):
91
-
92
- Raises:
93
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
94
- httpx.TimeoutException: If the request takes longer than Client.timeout.
95
-
96
- Returns:
97
- Union[DeleteExecutionResponse200, DeleteExecutionResponse404]
98
- """
99
-
100
- return sync_detailed(
101
- id=id,
102
- client=client,
103
- ).parsed
104
-
105
-
106
- async def asyncio_detailed(
107
- id: UUID,
108
- *,
109
- client: Union[AuthenticatedClient, Client],
110
- ) -> Response[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]:
111
- """Delete an execution
112
-
113
- Args:
114
- id (UUID):
115
-
116
- Raises:
117
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
118
- httpx.TimeoutException: If the request takes longer than Client.timeout.
119
-
120
- Returns:
121
- Response[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]
122
- """
123
-
124
- kwargs = _get_kwargs(
125
- id=id,
126
- )
127
-
128
- response = await client.get_async_httpx_client().request(**kwargs)
129
-
130
- return _build_response(client=client, response=response)
131
-
132
-
133
- async def asyncio(
134
- id: UUID,
135
- *,
136
- client: Union[AuthenticatedClient, Client],
137
- ) -> Optional[Union[DeleteExecutionResponse200, DeleteExecutionResponse404]]:
138
- """Delete an execution
139
-
140
- Args:
141
- id (UUID):
142
-
143
- Raises:
144
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
145
- httpx.TimeoutException: If the request takes longer than Client.timeout.
146
-
147
- Returns:
148
- Union[DeleteExecutionResponse200, DeleteExecutionResponse404]
149
- """
150
-
151
- return (
152
- await asyncio_detailed(
153
- id=id,
154
- client=client,
155
- )
156
- ).parsed
@@ -1,154 +0,0 @@
1
- from http import HTTPStatus
2
- from typing import Any, Dict, Optional, Union, cast
3
- from uuid import UUID
4
-
5
- import httpx
6
-
7
- from ... import errors
8
- from ...client import AuthenticatedClient, Client
9
- from ...models.browser_session import BrowserSession
10
- from ...types import Response
11
-
12
-
13
- def _get_kwargs(
14
- id: UUID,
15
- ) -> Dict[str, Any]:
16
- _kwargs: Dict[str, Any] = {
17
- "method": "get",
18
- "url": f"/execution/{id}/browser_session",
19
- }
20
-
21
- return _kwargs
22
-
23
-
24
- def _parse_response(
25
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
26
- ) -> Optional[Union[Any, BrowserSession]]:
27
- if response.status_code == 200:
28
- response_200 = BrowserSession.from_dict(response.json())
29
-
30
- return response_200
31
- if response.status_code == 404:
32
- response_404 = cast(Any, None)
33
- return response_404
34
- if client.raise_on_unexpected_status:
35
- raise errors.UnexpectedStatus(response.status_code, response.content)
36
- else:
37
- return None
38
-
39
-
40
- def _build_response(
41
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
42
- ) -> Response[Union[Any, BrowserSession]]:
43
- return Response(
44
- status_code=HTTPStatus(response.status_code),
45
- content=response.content,
46
- headers=response.headers,
47
- parsed=_parse_response(client=client, response=response),
48
- )
49
-
50
-
51
- def sync_detailed(
52
- id: UUID,
53
- *,
54
- client: Union[AuthenticatedClient, Client],
55
- ) -> Response[Union[Any, BrowserSession]]:
56
- """Get the browser session for an execution
57
-
58
- Args:
59
- id (UUID):
60
-
61
- Raises:
62
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
63
- httpx.TimeoutException: If the request takes longer than Client.timeout.
64
-
65
- Returns:
66
- Response[Union[Any, BrowserSession]]
67
- """
68
-
69
- kwargs = _get_kwargs(
70
- id=id,
71
- )
72
-
73
- response = client.get_httpx_client().request(
74
- **kwargs,
75
- )
76
-
77
- return _build_response(client=client, response=response)
78
-
79
-
80
- def sync(
81
- id: UUID,
82
- *,
83
- client: Union[AuthenticatedClient, Client],
84
- ) -> Optional[Union[Any, BrowserSession]]:
85
- """Get the browser session for an execution
86
-
87
- Args:
88
- id (UUID):
89
-
90
- Raises:
91
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
92
- httpx.TimeoutException: If the request takes longer than Client.timeout.
93
-
94
- Returns:
95
- Union[Any, BrowserSession]
96
- """
97
-
98
- return sync_detailed(
99
- id=id,
100
- client=client,
101
- ).parsed
102
-
103
-
104
- async def asyncio_detailed(
105
- id: UUID,
106
- *,
107
- client: Union[AuthenticatedClient, Client],
108
- ) -> Response[Union[Any, BrowserSession]]:
109
- """Get the browser session for an execution
110
-
111
- Args:
112
- id (UUID):
113
-
114
- Raises:
115
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
116
- httpx.TimeoutException: If the request takes longer than Client.timeout.
117
-
118
- Returns:
119
- Response[Union[Any, BrowserSession]]
120
- """
121
-
122
- kwargs = _get_kwargs(
123
- id=id,
124
- )
125
-
126
- response = await client.get_async_httpx_client().request(**kwargs)
127
-
128
- return _build_response(client=client, response=response)
129
-
130
-
131
- async def asyncio(
132
- id: UUID,
133
- *,
134
- client: Union[AuthenticatedClient, Client],
135
- ) -> Optional[Union[Any, BrowserSession]]:
136
- """Get the browser session for an execution
137
-
138
- Args:
139
- id (UUID):
140
-
141
- Raises:
142
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
143
- httpx.TimeoutException: If the request takes longer than Client.timeout.
144
-
145
- Returns:
146
- Union[Any, BrowserSession]
147
- """
148
-
149
- return (
150
- await asyncio_detailed(
151
- id=id,
152
- client=client,
153
- )
154
- ).parsed
@@ -1,154 +0,0 @@
1
- from http import HTTPStatus
2
- from typing import Any, Dict, Optional, Union, cast
3
- from uuid import UUID
4
-
5
- import httpx
6
-
7
- from ... import errors
8
- from ...client import AuthenticatedClient, Client
9
- from ...models.execution import Execution
10
- from ...types import Response
11
-
12
-
13
- def _get_kwargs(
14
- id: UUID,
15
- ) -> Dict[str, Any]:
16
- _kwargs: Dict[str, Any] = {
17
- "method": "get",
18
- "url": f"/execution/{id}",
19
- }
20
-
21
- return _kwargs
22
-
23
-
24
- def _parse_response(
25
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
26
- ) -> Optional[Union[Any, Execution]]:
27
- if response.status_code == 200:
28
- response_200 = Execution.from_dict(response.json())
29
-
30
- return response_200
31
- if response.status_code == 404:
32
- response_404 = cast(Any, None)
33
- return response_404
34
- if client.raise_on_unexpected_status:
35
- raise errors.UnexpectedStatus(response.status_code, response.content)
36
- else:
37
- return None
38
-
39
-
40
- def _build_response(
41
- *, client: Union[AuthenticatedClient, Client], response: httpx.Response
42
- ) -> Response[Union[Any, Execution]]:
43
- return Response(
44
- status_code=HTTPStatus(response.status_code),
45
- content=response.content,
46
- headers=response.headers,
47
- parsed=_parse_response(client=client, response=response),
48
- )
49
-
50
-
51
- def sync_detailed(
52
- id: UUID,
53
- *,
54
- client: Union[AuthenticatedClient, Client],
55
- ) -> Response[Union[Any, Execution]]:
56
- """Get an execution
57
-
58
- Args:
59
- id (UUID):
60
-
61
- Raises:
62
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
63
- httpx.TimeoutException: If the request takes longer than Client.timeout.
64
-
65
- Returns:
66
- Response[Union[Any, Execution]]
67
- """
68
-
69
- kwargs = _get_kwargs(
70
- id=id,
71
- )
72
-
73
- response = client.get_httpx_client().request(
74
- **kwargs,
75
- )
76
-
77
- return _build_response(client=client, response=response)
78
-
79
-
80
- def sync(
81
- id: UUID,
82
- *,
83
- client: Union[AuthenticatedClient, Client],
84
- ) -> Optional[Union[Any, Execution]]:
85
- """Get an execution
86
-
87
- Args:
88
- id (UUID):
89
-
90
- Raises:
91
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
92
- httpx.TimeoutException: If the request takes longer than Client.timeout.
93
-
94
- Returns:
95
- Union[Any, Execution]
96
- """
97
-
98
- return sync_detailed(
99
- id=id,
100
- client=client,
101
- ).parsed
102
-
103
-
104
- async def asyncio_detailed(
105
- id: UUID,
106
- *,
107
- client: Union[AuthenticatedClient, Client],
108
- ) -> Response[Union[Any, Execution]]:
109
- """Get an execution
110
-
111
- Args:
112
- id (UUID):
113
-
114
- Raises:
115
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
116
- httpx.TimeoutException: If the request takes longer than Client.timeout.
117
-
118
- Returns:
119
- Response[Union[Any, Execution]]
120
- """
121
-
122
- kwargs = _get_kwargs(
123
- id=id,
124
- )
125
-
126
- response = await client.get_async_httpx_client().request(**kwargs)
127
-
128
- return _build_response(client=client, response=response)
129
-
130
-
131
- async def asyncio(
132
- id: UUID,
133
- *,
134
- client: Union[AuthenticatedClient, Client],
135
- ) -> Optional[Union[Any, Execution]]:
136
- """Get an execution
137
-
138
- Args:
139
- id (UUID):
140
-
141
- Raises:
142
- errors.UnexpectedStatus: If the server returns an undocumented status code and Client.raise_on_unexpected_status is True.
143
- httpx.TimeoutException: If the request takes longer than Client.timeout.
144
-
145
- Returns:
146
- Union[Any, Execution]
147
- """
148
-
149
- return (
150
- await asyncio_detailed(
151
- id=id,
152
- client=client,
153
- )
154
- ).parsed