daytona_toolbox_api_client 0.128.2a1__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 (97) hide show
  1. daytona_toolbox_api_client/__init__.py +113 -0
  2. daytona_toolbox_api_client/api/__init__.py +12 -0
  3. daytona_toolbox_api_client/api/computer_use_api.py +6011 -0
  4. daytona_toolbox_api_client/api/file_system_api.py +3584 -0
  5. daytona_toolbox_api_client/api/git_api.py +2970 -0
  6. daytona_toolbox_api_client/api/info_api.py +774 -0
  7. daytona_toolbox_api_client/api/interpreter_api.py +1076 -0
  8. daytona_toolbox_api_client/api/lsp_api.py +1972 -0
  9. daytona_toolbox_api_client/api/port_api.py +544 -0
  10. daytona_toolbox_api_client/api/process_api.py +3784 -0
  11. daytona_toolbox_api_client/api_client.py +797 -0
  12. daytona_toolbox_api_client/api_response.py +21 -0
  13. daytona_toolbox_api_client/configuration.py +572 -0
  14. daytona_toolbox_api_client/exceptions.py +216 -0
  15. daytona_toolbox_api_client/models/__init__.py +89 -0
  16. daytona_toolbox_api_client/models/command.py +104 -0
  17. daytona_toolbox_api_client/models/completion_context.py +102 -0
  18. daytona_toolbox_api_client/models/completion_item.py +112 -0
  19. daytona_toolbox_api_client/models/completion_list.py +110 -0
  20. daytona_toolbox_api_client/models/computer_use_start_response.py +115 -0
  21. daytona_toolbox_api_client/models/computer_use_status_response.py +100 -0
  22. daytona_toolbox_api_client/models/computer_use_stop_response.py +115 -0
  23. daytona_toolbox_api_client/models/create_context_request.py +102 -0
  24. daytona_toolbox_api_client/models/create_context_response.py +108 -0
  25. daytona_toolbox_api_client/models/create_session_request.py +100 -0
  26. daytona_toolbox_api_client/models/display_info.py +110 -0
  27. daytona_toolbox_api_client/models/display_info_response.py +108 -0
  28. daytona_toolbox_api_client/models/execute_request.py +104 -0
  29. daytona_toolbox_api_client/models/execute_response.py +102 -0
  30. daytona_toolbox_api_client/models/file_info.py +114 -0
  31. daytona_toolbox_api_client/models/file_status.py +107 -0
  32. daytona_toolbox_api_client/models/files_download_request.py +100 -0
  33. daytona_toolbox_api_client/models/git_add_request.py +102 -0
  34. daytona_toolbox_api_client/models/git_branch_request.py +102 -0
  35. daytona_toolbox_api_client/models/git_checkout_request.py +102 -0
  36. daytona_toolbox_api_client/models/git_clone_request.py +110 -0
  37. daytona_toolbox_api_client/models/git_commit_info.py +108 -0
  38. daytona_toolbox_api_client/models/git_commit_request.py +108 -0
  39. daytona_toolbox_api_client/models/git_commit_response.py +100 -0
  40. daytona_toolbox_api_client/models/git_git_delete_branch_request.py +102 -0
  41. daytona_toolbox_api_client/models/git_repo_request.py +104 -0
  42. daytona_toolbox_api_client/models/git_status.py +116 -0
  43. daytona_toolbox_api_client/models/interpreter_context.py +108 -0
  44. daytona_toolbox_api_client/models/interpreter_context_info.py +108 -0
  45. daytona_toolbox_api_client/models/is_port_in_use_response.py +100 -0
  46. daytona_toolbox_api_client/models/keyboard_hotkey_request.py +100 -0
  47. daytona_toolbox_api_client/models/keyboard_press_request.py +102 -0
  48. daytona_toolbox_api_client/models/keyboard_type_request.py +102 -0
  49. daytona_toolbox_api_client/models/list_branch_response.py +100 -0
  50. daytona_toolbox_api_client/models/list_contexts_response.py +108 -0
  51. daytona_toolbox_api_client/models/lsp_completion_params.py +116 -0
  52. daytona_toolbox_api_client/models/lsp_document_request.py +104 -0
  53. daytona_toolbox_api_client/models/lsp_location.py +106 -0
  54. daytona_toolbox_api_client/models/lsp_position.py +102 -0
  55. daytona_toolbox_api_client/models/lsp_range.py +109 -0
  56. daytona_toolbox_api_client/models/lsp_server_request.py +102 -0
  57. daytona_toolbox_api_client/models/lsp_symbol.py +108 -0
  58. daytona_toolbox_api_client/models/match.py +104 -0
  59. daytona_toolbox_api_client/models/mouse_click_request.py +106 -0
  60. daytona_toolbox_api_client/models/mouse_click_response.py +102 -0
  61. daytona_toolbox_api_client/models/mouse_drag_request.py +108 -0
  62. daytona_toolbox_api_client/models/mouse_drag_response.py +102 -0
  63. daytona_toolbox_api_client/models/mouse_move_request.py +102 -0
  64. daytona_toolbox_api_client/models/mouse_position_response.py +102 -0
  65. daytona_toolbox_api_client/models/mouse_scroll_request.py +106 -0
  66. daytona_toolbox_api_client/models/port_list.py +100 -0
  67. daytona_toolbox_api_client/models/position.py +102 -0
  68. daytona_toolbox_api_client/models/process_errors_response.py +102 -0
  69. daytona_toolbox_api_client/models/process_logs_response.py +102 -0
  70. daytona_toolbox_api_client/models/process_restart_response.py +102 -0
  71. daytona_toolbox_api_client/models/process_status.py +106 -0
  72. daytona_toolbox_api_client/models/process_status_response.py +102 -0
  73. daytona_toolbox_api_client/models/pty_create_request.py +110 -0
  74. daytona_toolbox_api_client/models/pty_create_response.py +100 -0
  75. daytona_toolbox_api_client/models/pty_list_response.py +108 -0
  76. daytona_toolbox_api_client/models/pty_resize_request.py +103 -0
  77. daytona_toolbox_api_client/models/pty_session_info.py +114 -0
  78. daytona_toolbox_api_client/models/replace_request.py +104 -0
  79. daytona_toolbox_api_client/models/replace_result.py +104 -0
  80. daytona_toolbox_api_client/models/screenshot_response.py +108 -0
  81. daytona_toolbox_api_client/models/scroll_response.py +100 -0
  82. daytona_toolbox_api_client/models/search_files_response.py +100 -0
  83. daytona_toolbox_api_client/models/session.py +110 -0
  84. daytona_toolbox_api_client/models/session_execute_request.py +104 -0
  85. daytona_toolbox_api_client/models/session_execute_response.py +108 -0
  86. daytona_toolbox_api_client/models/status.py +43 -0
  87. daytona_toolbox_api_client/models/user_home_dir_response.py +100 -0
  88. daytona_toolbox_api_client/models/window_info.py +112 -0
  89. daytona_toolbox_api_client/models/windows_response.py +108 -0
  90. daytona_toolbox_api_client/models/work_dir_response.py +100 -0
  91. daytona_toolbox_api_client/py.typed +0 -0
  92. daytona_toolbox_api_client/rest.py +258 -0
  93. daytona_toolbox_api_client-0.128.2a1.dist-info/METADATA +25 -0
  94. daytona_toolbox_api_client-0.128.2a1.dist-info/RECORD +97 -0
  95. daytona_toolbox_api_client-0.128.2a1.dist-info/WHEEL +5 -0
  96. daytona_toolbox_api_client-0.128.2a1.dist-info/licenses/LICENSE +190 -0
  97. daytona_toolbox_api_client-0.128.2a1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,258 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona Daemon API
5
+
6
+ Daytona Daemon API
7
+
8
+ The version of the OpenAPI document: v0.0.0-dev
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ import io
16
+ import json
17
+ import re
18
+ import ssl
19
+
20
+ import urllib3
21
+
22
+ from daytona_toolbox_api_client.exceptions import ApiException, ApiValueError
23
+
24
+ SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
25
+ RESTResponseType = urllib3.HTTPResponse
26
+
27
+
28
+ def is_socks_proxy_url(url):
29
+ if url is None:
30
+ return False
31
+ split_section = url.split("://")
32
+ if len(split_section) < 2:
33
+ return False
34
+ else:
35
+ return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
36
+
37
+
38
+ class RESTResponse(io.IOBase):
39
+
40
+ def __init__(self, resp) -> None:
41
+ self.response = resp
42
+ self.status = resp.status
43
+ self.reason = resp.reason
44
+ self.data = None
45
+
46
+ def read(self):
47
+ if self.data is None:
48
+ self.data = self.response.data
49
+ return self.data
50
+
51
+ def getheaders(self):
52
+ """Returns a dictionary of the response headers."""
53
+ return self.response.headers
54
+
55
+ def getheader(self, name, default=None):
56
+ """Returns a given response header."""
57
+ return self.response.headers.get(name, default)
58
+
59
+
60
+ class RESTClientObject:
61
+
62
+ def __init__(self, configuration) -> None:
63
+ # urllib3.PoolManager will pass all kw parameters to connectionpool
64
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
65
+ # https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
66
+ # Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
67
+
68
+ # cert_reqs
69
+ if configuration.verify_ssl:
70
+ cert_reqs = ssl.CERT_REQUIRED
71
+ else:
72
+ cert_reqs = ssl.CERT_NONE
73
+
74
+ pool_args = {
75
+ "cert_reqs": cert_reqs,
76
+ "ca_certs": configuration.ssl_ca_cert,
77
+ "cert_file": configuration.cert_file,
78
+ "key_file": configuration.key_file,
79
+ "ca_cert_data": configuration.ca_cert_data,
80
+ }
81
+ if configuration.assert_hostname is not None:
82
+ pool_args['assert_hostname'] = (
83
+ configuration.assert_hostname
84
+ )
85
+
86
+ if configuration.retries is not None:
87
+ pool_args['retries'] = configuration.retries
88
+
89
+ if configuration.tls_server_name:
90
+ pool_args['server_hostname'] = configuration.tls_server_name
91
+
92
+
93
+ if configuration.socket_options is not None:
94
+ pool_args['socket_options'] = configuration.socket_options
95
+
96
+ if configuration.connection_pool_maxsize is not None:
97
+ pool_args['maxsize'] = configuration.connection_pool_maxsize
98
+
99
+ # https pool manager
100
+ self.pool_manager: urllib3.PoolManager
101
+
102
+ if configuration.proxy:
103
+ if is_socks_proxy_url(configuration.proxy):
104
+ from urllib3.contrib.socks import SOCKSProxyManager
105
+ pool_args["proxy_url"] = configuration.proxy
106
+ pool_args["headers"] = configuration.proxy_headers
107
+ self.pool_manager = SOCKSProxyManager(**pool_args)
108
+ else:
109
+ pool_args["proxy_url"] = configuration.proxy
110
+ pool_args["proxy_headers"] = configuration.proxy_headers
111
+ self.pool_manager = urllib3.ProxyManager(**pool_args)
112
+ else:
113
+ self.pool_manager = urllib3.PoolManager(**pool_args)
114
+
115
+ def request(
116
+ self,
117
+ method,
118
+ url,
119
+ headers=None,
120
+ body=None,
121
+ post_params=None,
122
+ _request_timeout=None
123
+ ):
124
+ """Perform requests.
125
+
126
+ :param method: http request method
127
+ :param url: http request url
128
+ :param headers: http request headers
129
+ :param body: request json body, for `application/json`
130
+ :param post_params: request post parameters,
131
+ `application/x-www-form-urlencoded`
132
+ and `multipart/form-data`
133
+ :param _request_timeout: timeout setting for this request. If one
134
+ number provided, it will be total request
135
+ timeout. It can also be a pair (tuple) of
136
+ (connection, read) timeouts.
137
+ """
138
+ method = method.upper()
139
+ assert method in [
140
+ 'GET',
141
+ 'HEAD',
142
+ 'DELETE',
143
+ 'POST',
144
+ 'PUT',
145
+ 'PATCH',
146
+ 'OPTIONS'
147
+ ]
148
+
149
+ if post_params and body:
150
+ raise ApiValueError(
151
+ "body parameter cannot be used with post_params parameter."
152
+ )
153
+
154
+ post_params = post_params or {}
155
+ headers = headers or {}
156
+
157
+ timeout = None
158
+ if _request_timeout:
159
+ if isinstance(_request_timeout, (int, float)):
160
+ timeout = urllib3.Timeout(total=_request_timeout)
161
+ elif (
162
+ isinstance(_request_timeout, tuple)
163
+ and len(_request_timeout) == 2
164
+ ):
165
+ timeout = urllib3.Timeout(
166
+ connect=_request_timeout[0],
167
+ read=_request_timeout[1]
168
+ )
169
+
170
+ try:
171
+ # For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
172
+ if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
173
+
174
+ # no content type provided or payload is json
175
+ content_type = headers.get('Content-Type')
176
+ if (
177
+ not content_type
178
+ or re.search('json', content_type, re.IGNORECASE)
179
+ ):
180
+ request_body = None
181
+ if body is not None:
182
+ request_body = json.dumps(body)
183
+ r = self.pool_manager.request(
184
+ method,
185
+ url,
186
+ body=request_body,
187
+ timeout=timeout,
188
+ headers=headers,
189
+ preload_content=False
190
+ )
191
+ elif content_type == 'application/x-www-form-urlencoded':
192
+ r = self.pool_manager.request(
193
+ method,
194
+ url,
195
+ fields=post_params,
196
+ encode_multipart=False,
197
+ timeout=timeout,
198
+ headers=headers,
199
+ preload_content=False
200
+ )
201
+ elif content_type == 'multipart/form-data':
202
+ # must del headers['Content-Type'], or the correct
203
+ # Content-Type which generated by urllib3 will be
204
+ # overwritten.
205
+ del headers['Content-Type']
206
+ # Ensures that dict objects are serialized
207
+ post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
208
+ r = self.pool_manager.request(
209
+ method,
210
+ url,
211
+ fields=post_params,
212
+ encode_multipart=True,
213
+ timeout=timeout,
214
+ headers=headers,
215
+ preload_content=False
216
+ )
217
+ # Pass a `string` parameter directly in the body to support
218
+ # other content types than JSON when `body` argument is
219
+ # provided in serialized form.
220
+ elif isinstance(body, str) or isinstance(body, bytes):
221
+ r = self.pool_manager.request(
222
+ method,
223
+ url,
224
+ body=body,
225
+ timeout=timeout,
226
+ headers=headers,
227
+ preload_content=False
228
+ )
229
+ elif headers['Content-Type'].startswith('text/') and isinstance(body, bool):
230
+ request_body = "true" if body else "false"
231
+ r = self.pool_manager.request(
232
+ method,
233
+ url,
234
+ body=request_body,
235
+ preload_content=False,
236
+ timeout=timeout,
237
+ headers=headers)
238
+ else:
239
+ # Cannot generate the request from given parameters
240
+ msg = """Cannot prepare a request message for provided
241
+ arguments. Please check that your arguments match
242
+ declared content type."""
243
+ raise ApiException(status=0, reason=msg)
244
+ # For `GET`, `HEAD`
245
+ else:
246
+ r = self.pool_manager.request(
247
+ method,
248
+ url,
249
+ fields={},
250
+ timeout=timeout,
251
+ headers=headers,
252
+ preload_content=False
253
+ )
254
+ except urllib3.exceptions.SSLError as e:
255
+ msg = "\n".join([type(e).__name__, str(e)])
256
+ raise ApiException(status=0, reason=msg)
257
+
258
+ return RESTResponse(r)
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: daytona_toolbox_api_client
3
+ Version: 0.128.2a1
4
+ Summary: Daytona Daemon API
5
+ Home-page:
6
+ Author: OpenAPI Generator community
7
+ Author-email: team@openapitools.org
8
+ Keywords: OpenAPI,OpenAPI-Generator,Daytona Daemon API
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: urllib3<3.0.0,>=2.1.0
12
+ Requires-Dist: python-dateutil>=2.8.2
13
+ Requires-Dist: pydantic>=2
14
+ Requires-Dist: typing-extensions>=4.7.1
15
+ Dynamic: author
16
+ Dynamic: author-email
17
+ Dynamic: description
18
+ Dynamic: description-content-type
19
+ Dynamic: keywords
20
+ Dynamic: license-file
21
+ Dynamic: requires-dist
22
+ Dynamic: summary
23
+
24
+ Daytona Daemon API
25
+
@@ -0,0 +1,97 @@
1
+ daytona_toolbox_api_client/__init__.py,sha256=WfqW4ht34aYzBbam8WLpt2AmeGoRsH8UOcjzoIGFcdY,7412
2
+ daytona_toolbox_api_client/api_client.py,sha256=KDHfzRIF_AU_8mlnfngFwRk-9Ti9os3rFYokE6nOUIo,27478
3
+ daytona_toolbox_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ daytona_toolbox_api_client/configuration.py,sha256=Ji1bGZ6Bt7ZMxzNmAm_xeitnJWErNQvlqvZuYM6-vak,17867
5
+ daytona_toolbox_api_client/exceptions.py,sha256=3vvt0530oTzin4bnBAUDObHhg6P4F6sc7jdfekKYufU,6399
6
+ daytona_toolbox_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ daytona_toolbox_api_client/rest.py,sha256=qWrlMPZhH_LG9-JJcvuDFQ619h1bLFs4r0Z8OmaQK4w,9408
8
+ daytona_toolbox_api_client/api/__init__.py,sha256=xPXfZ5U6RDq8wo-vHjO483iwzzHSP3LxYZuiC3yZVdY,572
9
+ daytona_toolbox_api_client/api/computer_use_api.py,sha256=Rmgxd-hz6jcW6-vARxFsPNrWBkG35YYCud1CS2XTm_I,233703
10
+ daytona_toolbox_api_client/api/file_system_api.py,sha256=X1mFeYVxBWZCKrddgKdSLA5Q6GyfO3c0SW5Kgpbx-Q0,138317
11
+ daytona_toolbox_api_client/api/git_api.py,sha256=Ulqa8DY7qEJOc2nw4znqfalf474-nEnd-Oj6-UXM-jU,113391
12
+ daytona_toolbox_api_client/api/info_api.py,sha256=NDZ4DPRIO5MyUwsFejT1Ljvpi_bcxc2kVqW94FiogIE,29143
13
+ daytona_toolbox_api_client/api/interpreter_api.py,sha256=U4iLLinhJ-X6EAe9dsSD4x2Xd8Z_fDUImiEyK-L4R7U,41750
14
+ daytona_toolbox_api_client/api/lsp_api.py,sha256=oriPP7_cnzglgsX3CUqiDE58_h2fdzDH2GCZdf3pfNU,75907
15
+ daytona_toolbox_api_client/api/port_api.py,sha256=cF4I2vXdatw2sW0j-1ttT3yrOM4Ie1FiLMS5c_IcWpE,20361
16
+ daytona_toolbox_api_client/api/process_api.py,sha256=83RC9BRMRSFIngdQ_Z2O-8t9D5PNyMhncBG4OYkAP0w,147030
17
+ daytona_toolbox_api_client/models/__init__.py,sha256=ASD9sfKzTyv40h2e9eDoJ5gm3tCSP49Opl0UgOUfJ_w,6232
18
+ daytona_toolbox_api_client/models/command.py,sha256=hELDQubDcHIHApc8wHPXxeY596ht6s_1vFZGpUhIZs0,3196
19
+ daytona_toolbox_api_client/models/completion_context.py,sha256=z1kphoaAp0t3z3uR0ModR1d-U7F8mpYxUJr4tqkShXw,3265
20
+ daytona_toolbox_api_client/models/completion_item.py,sha256=9kzSxH90pR7GFfQvtdUz4unFDrEWIkxh3eINrbxaujE,3738
21
+ daytona_toolbox_api_client/models/completion_list.py,sha256=uKhiiJRySV6Tsth1lOLfmyh8km3N_-4RcH0vY5A5mqg,3624
22
+ daytona_toolbox_api_client/models/computer_use_start_response.py,sha256=_G3zJdEsryEZlr-mXDJmSKvIb_3dk7LiMOcmKQw1OGo,3793
23
+ daytona_toolbox_api_client/models/computer_use_status_response.py,sha256=y6XfvwuAYRWechBM3S_pylsmiBsB1CNDHOEYHF32XHc,3074
24
+ daytona_toolbox_api_client/models/computer_use_stop_response.py,sha256=bo98HLxul3kjitz6hlkKhAE9IkiZjGVZB2rLMFYYUD0,3789
25
+ daytona_toolbox_api_client/models/create_context_request.py,sha256=fjQ9mIBVKz8OSz9T9ca6xxmzJ0t80d3R5VusKz1rJEU,3140
26
+ daytona_toolbox_api_client/models/create_context_response.py,sha256=ib4w68jbQyj2lXjtkOnZdPaMNQ7Za9HWjlb57HwdbFQ,3465
27
+ daytona_toolbox_api_client/models/create_session_request.py,sha256=QtpkEEX39bAHHY4pWwpeZv6SgXIporcCWkDObb4KrCc,3074
28
+ daytona_toolbox_api_client/models/display_info.py,sha256=dZfXH9acaa6tNkmelT_n1tHvoOG8JeKgn5l15FLNWDA,3470
29
+ daytona_toolbox_api_client/models/display_info_response.py,sha256=li5OfxYFLZDBAycOwftbIgGdsyjjaM4juCRuPiYfmVA,3547
30
+ daytona_toolbox_api_client/models/execute_request.py,sha256=yLVopg52YSvAsO1Z2mKkCxIbnLQD2v4ilRALbBwIJj0,3336
31
+ daytona_toolbox_api_client/models/execute_response.py,sha256=3qrKGADpuKAkfBx8iKI2TGnd-eK9ykwrAoaUPWq2AII,3167
32
+ daytona_toolbox_api_client/models/file_info.py,sha256=iqrdMORRG-f0BpFh0NWY1SKkWzPwOUmU_fP-101XPnk,3559
33
+ daytona_toolbox_api_client/models/file_status.py,sha256=vIvlPomjJAIbJShAQi2Aj1E6dxRylu_Buark4Pv3ZX4,3260
34
+ daytona_toolbox_api_client/models/files_download_request.py,sha256=w2eLbmTcb_rhOJHG0HTOAoCvC1STIQTr0izatLthY-A,3029
35
+ daytona_toolbox_api_client/models/git_add_request.py,sha256=NxW9BI1Fbroe5LCP3-57rK-JndgzTc-qOycky3lRaFE,3131
36
+ daytona_toolbox_api_client/models/git_branch_request.py,sha256=iFaIBS-QZHRCFMQ7k3Wxxbdhds9CQ0Y8l67uFyWgMcw,3068
37
+ daytona_toolbox_api_client/models/git_checkout_request.py,sha256=inkl0XXStWWN2sKT63P_CpS7gHFPEPwI-VccGOM8Ay0,3084
38
+ daytona_toolbox_api_client/models/git_clone_request.py,sha256=HOIDE2En0GgW_D9fKzpl0xf-G_OjTxT5HVJXgFv82w4,3458
39
+ daytona_toolbox_api_client/models/git_commit_info.py,sha256=s3pN5CHNrTV6EkvZfCaD6W8Piuw-RInVwj7kX31e9D4,3295
40
+ daytona_toolbox_api_client/models/git_commit_request.py,sha256=LKjsb5LwHwCDJnNhMSZb6F3wd48gM27vCTGHJXVdslk,3355
41
+ daytona_toolbox_api_client/models/git_commit_response.py,sha256=8JEDiBQi8_8okQOXlRTcpAKo4f9J6kZQhne6CPrS2Jg,3007
42
+ daytona_toolbox_api_client/models/git_git_delete_branch_request.py,sha256=i3993I_F2pAqBI73f6yoCBQb09O3_gQ44JV25raDgiU,3104
43
+ daytona_toolbox_api_client/models/git_repo_request.py,sha256=T4mPQepEkKmy-1m_VO6ziMfcKjZ2WBZIOd-qFQNkpVM,3201
44
+ daytona_toolbox_api_client/models/git_status.py,sha256=GJ4lWp1CwNWPsLWo5szKuFDKfWI6_yDMgiYAs_Ui4Ug,4063
45
+ daytona_toolbox_api_client/models/interpreter_context.py,sha256=Zjo1SaBjsgrGicSukeN-R6vGiidL8lIynHghu_vmZ5s,3351
46
+ daytona_toolbox_api_client/models/interpreter_context_info.py,sha256=v5Mu9n_mlEs346DGwAwp8gi394XnFpx_V8j_Bd7h00Y,3469
47
+ daytona_toolbox_api_client/models/is_port_in_use_response.py,sha256=YiGBXPDgL4A_tC0GZdRsJlaYzFdx1K8n-M8ca-Fcj10,3097
48
+ daytona_toolbox_api_client/models/keyboard_hotkey_request.py,sha256=sa_dhMY5saBM2iNvskWjXyqYcUKX10noMLG4cH7Yl5I,3115
49
+ daytona_toolbox_api_client/models/keyboard_press_request.py,sha256=xcA8oYeJ26iiAI0ZFEyB3ROFABhMvavZ3-bbtEpOvl8,3209
50
+ daytona_toolbox_api_client/models/keyboard_type_request.py,sha256=f1lpU_dmwmftYENl37BqMvxhIeZfzAAxLrI1k0FrQTU,3208
51
+ daytona_toolbox_api_client/models/list_branch_response.py,sha256=cVuIXJJ7FXD79pnJv3dqxog8k1AQ459CQb-Fy2DNAkw,3033
52
+ daytona_toolbox_api_client/models/list_contexts_response.py,sha256=mjZWW4ouvoYSqTVLNEWY-Cl8Bt0rpwwjtcYYfyTsy4k,3552
53
+ daytona_toolbox_api_client/models/lsp_completion_params.py,sha256=rE0eQfXL0cw1LHZS3MZceBz6TmLV2JRyuNRNFSnmGn0,4086
54
+ daytona_toolbox_api_client/models/lsp_document_request.py,sha256=A3Zkikdj81UwRw_OW_Xe1HtJL6r0ovr_rEx841xaiQM,3266
55
+ daytona_toolbox_api_client/models/lsp_location.py,sha256=dncOOgltLSdvCHPHJOyfBIL-sV4Pk7cJqmPO84EJEKs,3327
56
+ daytona_toolbox_api_client/models/lsp_position.py,sha256=mh2OS14oCp59cvq24fL5NHyt0R2JWB8irast8mE59OA,3068
57
+ daytona_toolbox_api_client/models/lsp_range.py,sha256=pHh_I2Nq3qov0kL4YnXW6Jb3TGpwAFnCh0wvoiPBh4c,3526
58
+ daytona_toolbox_api_client/models/lsp_server_request.py,sha256=DjP0uUfjIrxhqIE_VvascW8Z4vtZ2dYiFGLsVwtZY18,3197
59
+ daytona_toolbox_api_client/models/lsp_symbol.py,sha256=GYq9dQc7s8QV0jh92DAa1OBnZGbI6igKIRsAMAsvbmM,3438
60
+ daytona_toolbox_api_client/models/match.py,sha256=FvykaMUsXyxCALa5L05-V8sluPS0n9OkVyJeFjwVNLk,3112
61
+ daytona_toolbox_api_client/models/mouse_click_request.py,sha256=xKKpivoXt5d21MR9nSjp0Vjue6bYi4P1YdhO10ru2Gw,3353
62
+ daytona_toolbox_api_client/models/mouse_click_response.py,sha256=uPl3Ze4ToaI0CGrSQoYGE1eHeNriK1M4C3LcUQwM34U,3096
63
+ daytona_toolbox_api_client/models/mouse_drag_request.py,sha256=Am4MimgfHaJxti6rbrPL2z4P-49OvfBwW8tb-4-FIvY,3524
64
+ daytona_toolbox_api_client/models/mouse_drag_response.py,sha256=W-qzaB1qKVX1Afm2Pba_FzNLfd7iLV10obK9xug6o4s,3092
65
+ daytona_toolbox_api_client/models/mouse_move_request.py,sha256=rWQq1X1Ft-S-sEXbRnH-vNjQVh_4G1uKPVIdnJquxgc,3088
66
+ daytona_toolbox_api_client/models/mouse_position_response.py,sha256=UJaHHWPK7PiEliAoPL8kkHlw3zltV4yb_9ZVX0iQIcE,3108
67
+ daytona_toolbox_api_client/models/mouse_scroll_request.py,sha256=T1IBrpTUwcq14N9UlZr93mQVhnvw0dqJUMxQstz9Rd4,3345
68
+ daytona_toolbox_api_client/models/port_list.py,sha256=OYOHwzoU3jmF9eewvvxD37Kfu6_Ny21_w7yr4rvojrI,3008
69
+ daytona_toolbox_api_client/models/position.py,sha256=E3XFBBm20NVEWBubRmRaL5OOWAzuU39VQ3BYXjEC5YU,3056
70
+ daytona_toolbox_api_client/models/process_errors_response.py,sha256=zRCBhcmaVavaBfNaxLUpTlqrFCJyZeQbjmdG20EiUqk,3212
71
+ daytona_toolbox_api_client/models/process_logs_response.py,sha256=coEttz8O-jzKtrQC6zQO_I5v4WsT2xYzENGpZ_0dpOo,3196
72
+ daytona_toolbox_api_client/models/process_restart_response.py,sha256=e8B-2nuF4NbEzDu-tGxSbSutS8dwWG4U7s2JeOdcQzQ,3220
73
+ daytona_toolbox_api_client/models/process_status.py,sha256=a3iELuwqrDfmvuRWmt_ykmcr-zdg5ZW2P9PUKFkGAPM,3374
74
+ daytona_toolbox_api_client/models/process_status_response.py,sha256=GG_BV59EH2N4wpG1zHGKuq1nbWKmXNp8Q2wiAkNqdbs,3229
75
+ daytona_toolbox_api_client/models/pty_create_request.py,sha256=Tu2y8yQqDhmFCmQk8agnc8YWaJzb7xhzryqgiIy8vZY,3584
76
+ daytona_toolbox_api_client/models/pty_create_response.py,sha256=xLHwODTn0X4GgXgHzvsST639wMJYld1DxgBIuR5mY_A,3096
77
+ daytona_toolbox_api_client/models/pty_list_response.py,sha256=7nkRJmBOk4n9vLcC9qeWgibjz3FfRTtM7GA0sziFg5g,3544
78
+ daytona_toolbox_api_client/models/pty_resize_request.py,sha256=MHqx8xv82LGxXwPF99VMQShrK5j0n-Yw2o9QkwgiRT8,3184
79
+ daytona_toolbox_api_client/models/pty_session_info.py,sha256=UzsE9CyNhPHPM4YZvQhAFFTvQdmRbhU3ritLIkySYzs,3797
80
+ daytona_toolbox_api_client/models/replace_request.py,sha256=QEweDoBDAiiu4ztGeNJDxSG4LTn0puXoriTTr1sFJbE,3197
81
+ daytona_toolbox_api_client/models/replace_result.py,sha256=lcIDxhxfiJn2d-xOR_Pe6Zsgy2EZqU-vhGBkeHHUuhU,3211
82
+ daytona_toolbox_api_client/models/screenshot_response.py,sha256=2Uxkp8eS2iijzFydH4-x9BwQEtswWV2WYu4uKq6e1LM,3705
83
+ daytona_toolbox_api_client/models/scroll_response.py,sha256=LFi-oX-o2G2XnDg5p_MS7kCGmFO9JMoS_GG6yAbNDgE,3036
84
+ daytona_toolbox_api_client/models/search_files_response.py,sha256=Q1j66epfwYa24Z5kptafX653AkCs86swf0yKr5MrrgM,3025
85
+ daytona_toolbox_api_client/models/session.py,sha256=QRVtwpGaLZfO_u4BV-RJPBYLSpw5gX5scwJbCq_og7w,3586
86
+ daytona_toolbox_api_client/models/session_execute_request.py,sha256=2Lk9PvyUhnnn-EjeBUtYdqQSUYV715I0qEBVHUg0nAQ,3318
87
+ daytona_toolbox_api_client/models/session_execute_response.py,sha256=8zEh5_mtt6SNNLNm8OZo0QHTkQGT3CjRpFBPW_sjcRU,3509
88
+ daytona_toolbox_api_client/models/status.py,sha256=ELrg4yNtLqYyfJXmRIbBFlVxslxtTaVQQs3ZV4JYCVs,839
89
+ daytona_toolbox_api_client/models/user_home_dir_response.py,sha256=Fwjvh67y7rimuNeJIWOBqewM2oGS1Yhm-KytOCpU25E,3038
90
+ daytona_toolbox_api_client/models/window_info.py,sha256=j51qmsoQLjdaca33_3U6NjIOfICSEFaOJzuZ5F3LQMY,3563
91
+ daytona_toolbox_api_client/models/windows_response.py,sha256=pdtlIUbVn4pST1zNtjeKFpTxxc3Bmvx_b2HlAx2Qv_A,3515
92
+ daytona_toolbox_api_client/models/work_dir_response.py,sha256=fo2exc7KkiCekkd7nD0NKw4JF6upU5cifTGz4mh9IQI,3022
93
+ daytona_toolbox_api_client-0.128.2a1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
94
+ daytona_toolbox_api_client-0.128.2a1.dist-info/METADATA,sha256=UXKUTagkmaSFuSq8FQuje0oLxlzDPm_ILqmE0cVAPJM,647
95
+ daytona_toolbox_api_client-0.128.2a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
96
+ daytona_toolbox_api_client-0.128.2a1.dist-info/top_level.txt,sha256=6P9d7uhHPBMBZ3jxE69ZPiaAkXqaSpXdG-nNWNbjXZg,27
97
+ daytona_toolbox_api_client-0.128.2a1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,190 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2025 Daytona
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1 @@
1
+ daytona_toolbox_api_client