daytona_toolbox_api_client 0.113.0__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.
- daytona_toolbox_api_client-0.113.0/LICENSE +190 -0
- daytona_toolbox_api_client-0.113.0/PKG-INFO +25 -0
- daytona_toolbox_api_client-0.113.0/README.md +231 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/__init__.py +109 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/__init__.py +11 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/computer_use_api.py +6011 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/file_system_api.py +3584 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/git_api.py +2970 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/info_api.py +774 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/lsp_api.py +1972 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/port_api.py +544 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api/process_api.py +3784 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api_client.py +797 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/api_response.py +21 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/configuration.py +572 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/exceptions.py +216 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/__init__.py +86 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/command.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/completion_context.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/completion_item.py +112 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/completion_list.py +110 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/computer_use_start_response.py +115 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/computer_use_status_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/computer_use_stop_response.py +115 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/create_session_request.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/display_info.py +110 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/display_info_response.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/execute_request.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/execute_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/file_download_request.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/file_info.py +114 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/file_status.py +107 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/files_download_request.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_add_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_branch_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_checkout_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_clone_request.py +110 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_commit_info.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_commit_request.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_commit_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_git_delete_branch_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_repo_request.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/git_status.py +116 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/is_port_in_use_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/keyboard_hotkey_request.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/keyboard_press_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/keyboard_type_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/list_branch_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_completion_params.py +116 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_document_request.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_location.py +106 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_position.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_range.py +109 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_server_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/lsp_symbol.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/match.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_click_request.py +106 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_click_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_drag_request.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_drag_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_move_request.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_position_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/mouse_scroll_request.py +106 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/port_list.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/position.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/process_errors_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/process_logs_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/process_restart_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/process_status.py +106 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/process_status_response.py +102 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/project_dir_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/pty_create_request.py +110 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/pty_create_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/pty_list_response.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/pty_resize_request.py +103 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/pty_session_info.py +114 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/replace_request.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/replace_result.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/screenshot_response.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/scroll_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/search_files_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/session.py +110 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/session_execute_request.py +104 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/session_execute_response.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/status.py +43 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/user_home_dir_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/window_info.py +112 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/windows_response.py +108 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/models/work_dir_response.py +100 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/py.typed +0 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client/rest.py +258 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client.egg-info/PKG-INFO +25 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client.egg-info/SOURCES.txt +186 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client.egg-info/dependency_links.txt +1 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client.egg-info/requires.txt +4 -0
- daytona_toolbox_api_client-0.113.0/daytona_toolbox_api_client.egg-info/top_level.txt +1 -0
- daytona_toolbox_api_client-0.113.0/pyproject.toml +89 -0
- daytona_toolbox_api_client-0.113.0/setup.cfg +11 -0
- daytona_toolbox_api_client-0.113.0/setup.py +49 -0
|
@@ -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,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: daytona_toolbox_api_client
|
|
3
|
+
Version: 0.113.0
|
|
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,231 @@
|
|
|
1
|
+
# daytona_toolbox_api_client
|
|
2
|
+
|
|
3
|
+
Daytona Daemon Toolbox API for file operations, process execution, git operations, LSP, computer use, and more.
|
|
4
|
+
|
|
5
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
6
|
+
|
|
7
|
+
- API version: v0.0.0-dev
|
|
8
|
+
- Package version: 0.0.0-dev
|
|
9
|
+
- Generator version: 7.12.0
|
|
10
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
11
|
+
|
|
12
|
+
## Requirements
|
|
13
|
+
|
|
14
|
+
Python 3.8+
|
|
15
|
+
|
|
16
|
+
## Installation & Usage
|
|
17
|
+
|
|
18
|
+
### pip install
|
|
19
|
+
|
|
20
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
21
|
+
|
|
22
|
+
```sh
|
|
23
|
+
pip install git+https://github.com/daytonaio/daytona.git
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/daytonaio/daytona.git`)
|
|
27
|
+
|
|
28
|
+
Then import the package:
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
import daytona_toolbox_api_client
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
### Setuptools
|
|
35
|
+
|
|
36
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
37
|
+
|
|
38
|
+
```sh
|
|
39
|
+
python setup.py install --user
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
43
|
+
|
|
44
|
+
Then import the package:
|
|
45
|
+
|
|
46
|
+
```python
|
|
47
|
+
import daytona_toolbox_api_client
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Tests
|
|
51
|
+
|
|
52
|
+
Execute `pytest` to run the tests.
|
|
53
|
+
|
|
54
|
+
## Getting Started
|
|
55
|
+
|
|
56
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
57
|
+
|
|
58
|
+
```python
|
|
59
|
+
|
|
60
|
+
import daytona_toolbox_api_client
|
|
61
|
+
from daytona_toolbox_api_client.rest import ApiException
|
|
62
|
+
from pprint import pprint
|
|
63
|
+
|
|
64
|
+
# Defining the host is optional and defaults to http://localhost:22221
|
|
65
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
66
|
+
configuration = daytona_toolbox_api_client.Configuration(
|
|
67
|
+
host = "http://localhost:22221"
|
|
68
|
+
)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
# Enter a context with an instance of the API client
|
|
73
|
+
with daytona_toolbox_api_client.ApiClient(configuration) as api_client:
|
|
74
|
+
# Create an instance of the API class
|
|
75
|
+
api_instance = daytona_toolbox_api_client.ComputerUseApi(api_client)
|
|
76
|
+
request = daytona_toolbox_api_client.MouseClickRequest() # MouseClickRequest | Mouse click request
|
|
77
|
+
|
|
78
|
+
try:
|
|
79
|
+
# Click mouse button
|
|
80
|
+
api_response = api_instance.click(request)
|
|
81
|
+
print("The response of ComputerUseApi->click:\n")
|
|
82
|
+
pprint(api_response)
|
|
83
|
+
except ApiException as e:
|
|
84
|
+
print("Exception when calling ComputerUseApi->click: %s\n" % e)
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
## Documentation for API Endpoints
|
|
89
|
+
|
|
90
|
+
All URIs are relative to _http://localhost:22221_
|
|
91
|
+
|
|
92
|
+
| Class | Method | HTTP request | Description |
|
|
93
|
+
| ---------------- | ------------------------------------------------------------------------------------------------- | ------------------------------------------------------------- | ----------------------------------- |
|
|
94
|
+
| _ComputerUseApi_ | [**click**](docs/ComputerUseApi.md#click) | **POST** /computeruse/mouse/click | Click mouse button |
|
|
95
|
+
| _ComputerUseApi_ | [**drag**](docs/ComputerUseApi.md#drag) | **POST** /computeruse/mouse/drag | Drag mouse |
|
|
96
|
+
| _ComputerUseApi_ | [**get_computer_use_status**](docs/ComputerUseApi.md#get_computer_use_status) | **GET** /computeruse/process-status | Get computer use process status |
|
|
97
|
+
| _ComputerUseApi_ | [**get_computer_use_system_status**](docs/ComputerUseApi.md#get_computer_use_system_status) | **GET** /computeruse/status | Get computer use status |
|
|
98
|
+
| _ComputerUseApi_ | [**get_display_info**](docs/ComputerUseApi.md#get_display_info) | **GET** /computeruse/display/info | Get display information |
|
|
99
|
+
| _ComputerUseApi_ | [**get_mouse_position**](docs/ComputerUseApi.md#get_mouse_position) | **GET** /computeruse/mouse/position | Get mouse position |
|
|
100
|
+
| _ComputerUseApi_ | [**get_process_errors**](docs/ComputerUseApi.md#get_process_errors) | **GET** /computeruse/process/{processName}/errors | Get process errors |
|
|
101
|
+
| _ComputerUseApi_ | [**get_process_logs**](docs/ComputerUseApi.md#get_process_logs) | **GET** /computeruse/process/{processName}/logs | Get process logs |
|
|
102
|
+
| _ComputerUseApi_ | [**get_process_status**](docs/ComputerUseApi.md#get_process_status) | **GET** /computeruse/process/{processName}/status | Get specific process status |
|
|
103
|
+
| _ComputerUseApi_ | [**get_windows**](docs/ComputerUseApi.md#get_windows) | **GET** /computeruse/display/windows | Get windows information |
|
|
104
|
+
| _ComputerUseApi_ | [**move_mouse**](docs/ComputerUseApi.md#move_mouse) | **POST** /computeruse/mouse/move | Move mouse cursor |
|
|
105
|
+
| _ComputerUseApi_ | [**press_hotkey**](docs/ComputerUseApi.md#press_hotkey) | **POST** /computeruse/keyboard/hotkey | Press hotkey |
|
|
106
|
+
| _ComputerUseApi_ | [**press_key**](docs/ComputerUseApi.md#press_key) | **POST** /computeruse/keyboard/key | Press key |
|
|
107
|
+
| _ComputerUseApi_ | [**restart_process**](docs/ComputerUseApi.md#restart_process) | **POST** /computeruse/process/{processName}/restart | Restart specific process |
|
|
108
|
+
| _ComputerUseApi_ | [**scroll**](docs/ComputerUseApi.md#scroll) | **POST** /computeruse/mouse/scroll | Scroll mouse wheel |
|
|
109
|
+
| _ComputerUseApi_ | [**start_computer_use**](docs/ComputerUseApi.md#start_computer_use) | **POST** /computeruse/start | Start computer use processes |
|
|
110
|
+
| _ComputerUseApi_ | [**stop_computer_use**](docs/ComputerUseApi.md#stop_computer_use) | **POST** /computeruse/stop | Stop computer use processes |
|
|
111
|
+
| _ComputerUseApi_ | [**take_compressed_region_screenshot**](docs/ComputerUseApi.md#take_compressed_region_screenshot) | **GET** /computeruse/screenshot/region/compressed | Take a compressed region screenshot |
|
|
112
|
+
| _ComputerUseApi_ | [**take_compressed_screenshot**](docs/ComputerUseApi.md#take_compressed_screenshot) | **GET** /computeruse/screenshot/compressed | Take a compressed screenshot |
|
|
113
|
+
| _ComputerUseApi_ | [**take_region_screenshot**](docs/ComputerUseApi.md#take_region_screenshot) | **GET** /computeruse/screenshot/region | Take a region screenshot |
|
|
114
|
+
| _ComputerUseApi_ | [**take_screenshot**](docs/ComputerUseApi.md#take_screenshot) | **GET** /computeruse/screenshot | Take a screenshot |
|
|
115
|
+
| _ComputerUseApi_ | [**type_text**](docs/ComputerUseApi.md#type_text) | **POST** /computeruse/keyboard/type | Type text |
|
|
116
|
+
| _FileSystemApi_ | [**create_folder**](docs/FileSystemApi.md#create_folder) | **POST** /files/folder | Create a folder |
|
|
117
|
+
| _FileSystemApi_ | [**delete_file**](docs/FileSystemApi.md#delete_file) | **DELETE** /files | Delete a file or directory |
|
|
118
|
+
| _FileSystemApi_ | [**download_file**](docs/FileSystemApi.md#download_file) | **GET** /files/download | Download a file |
|
|
119
|
+
| _FileSystemApi_ | [**find_in_files**](docs/FileSystemApi.md#find_in_files) | **GET** /files/find | Find text in files |
|
|
120
|
+
| _FileSystemApi_ | [**get_file_info**](docs/FileSystemApi.md#get_file_info) | **GET** /files/info | Get file information |
|
|
121
|
+
| _FileSystemApi_ | [**list_files**](docs/FileSystemApi.md#list_files) | **GET** /files | List files and directories |
|
|
122
|
+
| _FileSystemApi_ | [**move_file**](docs/FileSystemApi.md#move_file) | **POST** /files/move | Move or rename file/directory |
|
|
123
|
+
| _FileSystemApi_ | [**replace_in_files**](docs/FileSystemApi.md#replace_in_files) | **POST** /files/replace | Replace text in files |
|
|
124
|
+
| _FileSystemApi_ | [**search_files**](docs/FileSystemApi.md#search_files) | **GET** /files/search | Search files by pattern |
|
|
125
|
+
| _FileSystemApi_ | [**set_file_permissions**](docs/FileSystemApi.md#set_file_permissions) | **POST** /files/permissions | Set file permissions |
|
|
126
|
+
| _FileSystemApi_ | [**upload_file**](docs/FileSystemApi.md#upload_file) | **POST** /files/upload | Upload a file |
|
|
127
|
+
| _FileSystemApi_ | [**upload_files**](docs/FileSystemApi.md#upload_files) | **POST** /files/bulk-upload | Upload multiple files |
|
|
128
|
+
| _GitApi_ | [**add_files**](docs/GitApi.md#add_files) | **POST** /git/add | Add files to Git staging |
|
|
129
|
+
| _GitApi_ | [**checkout_branch**](docs/GitApi.md#checkout_branch) | **POST** /git/checkout | Checkout branch or commit |
|
|
130
|
+
| _GitApi_ | [**clone_repository**](docs/GitApi.md#clone_repository) | **POST** /git/clone | Clone a Git repository |
|
|
131
|
+
| _GitApi_ | [**commit_changes**](docs/GitApi.md#commit_changes) | **POST** /git/commit | Commit changes |
|
|
132
|
+
| _GitApi_ | [**create_branch**](docs/GitApi.md#create_branch) | **POST** /git/branches | Create a new branch |
|
|
133
|
+
| _GitApi_ | [**delete_branch**](docs/GitApi.md#delete_branch) | **DELETE** /git/branches | Delete a branch |
|
|
134
|
+
| _GitApi_ | [**get_commit_history**](docs/GitApi.md#get_commit_history) | **GET** /git/history | Get commit history |
|
|
135
|
+
| _GitApi_ | [**get_status**](docs/GitApi.md#get_status) | **GET** /git/status | Get Git status |
|
|
136
|
+
| _GitApi_ | [**list_branches**](docs/GitApi.md#list_branches) | **GET** /git/branches | List branches |
|
|
137
|
+
| _GitApi_ | [**pull_changes**](docs/GitApi.md#pull_changes) | **POST** /git/pull | Pull changes from remote |
|
|
138
|
+
| _GitApi_ | [**push_changes**](docs/GitApi.md#push_changes) | **POST** /git/push | Push changes to remote |
|
|
139
|
+
| _InfoApi_ | [**get_project_dir**](docs/InfoApi.md#get_project_dir) | **GET** /project-dir | Get project directory |
|
|
140
|
+
| _InfoApi_ | [**get_version**](docs/InfoApi.md#get_version) | **GET** /version | Get version |
|
|
141
|
+
| _LspApi_ | [**completions**](docs/LspApi.md#completions) | **POST** /lsp/completions | Get code completions |
|
|
142
|
+
| _LspApi_ | [**did_close**](docs/LspApi.md#did_close) | **POST** /lsp/did-close | Notify document closed |
|
|
143
|
+
| _LspApi_ | [**did_open**](docs/LspApi.md#did_open) | **POST** /lsp/did-open | Notify document opened |
|
|
144
|
+
| _LspApi_ | [**document_symbols**](docs/LspApi.md#document_symbols) | **GET** /lsp/document-symbols | Get document symbols |
|
|
145
|
+
| _LspApi_ | [**start**](docs/LspApi.md#start) | **POST** /lsp/start | Start LSP server |
|
|
146
|
+
| _LspApi_ | [**stop**](docs/LspApi.md#stop) | **POST** /lsp/stop | Stop LSP server |
|
|
147
|
+
| _LspApi_ | [**workspace_symbols**](docs/LspApi.md#workspace_symbols) | **GET** /lsp/workspaceSymbols | Get workspace symbols |
|
|
148
|
+
| _PortApi_ | [**get_ports**](docs/PortApi.md#get_ports) | **GET** /port | Get active ports |
|
|
149
|
+
| _PortApi_ | [**is_port_in_use**](docs/PortApi.md#is_port_in_use) | **GET** /port/{port}/in-use | Check if port is in use |
|
|
150
|
+
| _ProcessApi_ | [**create_session**](docs/ProcessApi.md#create_session) | **POST** /process/session | Create a new session |
|
|
151
|
+
| _ProcessApi_ | [**delete_session**](docs/ProcessApi.md#delete_session) | **DELETE** /process/session/{sessionId} | Delete a session |
|
|
152
|
+
| _ProcessApi_ | [**execute_command**](docs/ProcessApi.md#execute_command) | **POST** /process/execute | Execute a command |
|
|
153
|
+
| _ProcessApi_ | [**get_session**](docs/ProcessApi.md#get_session) | **GET** /process/session/{sessionId} | Get session details |
|
|
154
|
+
| _ProcessApi_ | [**get_session_command**](docs/ProcessApi.md#get_session_command) | **GET** /process/session/{sessionId}/command/{commandId} | Get session command details |
|
|
155
|
+
| _ProcessApi_ | [**get_session_command_logs**](docs/ProcessApi.md#get_session_command_logs) | **GET** /process/session/{sessionId}/command/{commandId}/logs | Get session command logs |
|
|
156
|
+
| _ProcessApi_ | [**list_sessions**](docs/ProcessApi.md#list_sessions) | **GET** /process/session | List all sessions |
|
|
157
|
+
| _ProcessApi_ | [**session_execute_command**](docs/ProcessApi.md#session_execute_command) | **POST** /process/session/{sessionId}/exec | Execute command in session |
|
|
158
|
+
|
|
159
|
+
## Documentation For Models
|
|
160
|
+
|
|
161
|
+
- [Command](docs/Command.md)
|
|
162
|
+
- [CompletionContext](docs/CompletionContext.md)
|
|
163
|
+
- [CompletionItem](docs/CompletionItem.md)
|
|
164
|
+
- [CompletionList](docs/CompletionList.md)
|
|
165
|
+
- [ComputerUseStartResponse](docs/ComputerUseStartResponse.md)
|
|
166
|
+
- [ComputerUseStatusResponse](docs/ComputerUseStatusResponse.md)
|
|
167
|
+
- [ComputerUseStopResponse](docs/ComputerUseStopResponse.md)
|
|
168
|
+
- [CreateSessionRequest](docs/CreateSessionRequest.md)
|
|
169
|
+
- [DisplayInfo](docs/DisplayInfo.md)
|
|
170
|
+
- [DisplayInfoResponse](docs/DisplayInfoResponse.md)
|
|
171
|
+
- [ExecuteRequest](docs/ExecuteRequest.md)
|
|
172
|
+
- [ExecuteResponse](docs/ExecuteResponse.md)
|
|
173
|
+
- [FileInfo](docs/FileInfo.md)
|
|
174
|
+
- [FileStatus](docs/FileStatus.md)
|
|
175
|
+
- [GitAddRequest](docs/GitAddRequest.md)
|
|
176
|
+
- [GitBranchRequest](docs/GitBranchRequest.md)
|
|
177
|
+
- [GitCheckoutRequest](docs/GitCheckoutRequest.md)
|
|
178
|
+
- [GitCloneRequest](docs/GitCloneRequest.md)
|
|
179
|
+
- [GitCommitInfo](docs/GitCommitInfo.md)
|
|
180
|
+
- [GitCommitRequest](docs/GitCommitRequest.md)
|
|
181
|
+
- [GitCommitResponse](docs/GitCommitResponse.md)
|
|
182
|
+
- [GitGitDeleteBranchRequest](docs/GitGitDeleteBranchRequest.md)
|
|
183
|
+
- [GitRepoRequest](docs/GitRepoRequest.md)
|
|
184
|
+
- [GitStatus](docs/GitStatus.md)
|
|
185
|
+
- [IsPortInUseResponse](docs/IsPortInUseResponse.md)
|
|
186
|
+
- [KeyboardHotkeyRequest](docs/KeyboardHotkeyRequest.md)
|
|
187
|
+
- [KeyboardPressRequest](docs/KeyboardPressRequest.md)
|
|
188
|
+
- [KeyboardTypeRequest](docs/KeyboardTypeRequest.md)
|
|
189
|
+
- [ListBranchResponse](docs/ListBranchResponse.md)
|
|
190
|
+
- [LspCompletionParams](docs/LspCompletionParams.md)
|
|
191
|
+
- [LspDocumentRequest](docs/LspDocumentRequest.md)
|
|
192
|
+
- [LspLocation](docs/LspLocation.md)
|
|
193
|
+
- [LspPosition](docs/LspPosition.md)
|
|
194
|
+
- [LspRange](docs/LspRange.md)
|
|
195
|
+
- [LspServerRequest](docs/LspServerRequest.md)
|
|
196
|
+
- [LspSymbol](docs/LspSymbol.md)
|
|
197
|
+
- [Match](docs/Match.md)
|
|
198
|
+
- [MouseClickRequest](docs/MouseClickRequest.md)
|
|
199
|
+
- [MouseClickResponse](docs/MouseClickResponse.md)
|
|
200
|
+
- [MouseDragRequest](docs/MouseDragRequest.md)
|
|
201
|
+
- [MouseDragResponse](docs/MouseDragResponse.md)
|
|
202
|
+
- [MouseMoveRequest](docs/MouseMoveRequest.md)
|
|
203
|
+
- [MousePositionResponse](docs/MousePositionResponse.md)
|
|
204
|
+
- [MouseScrollRequest](docs/MouseScrollRequest.md)
|
|
205
|
+
- [PortList](docs/PortList.md)
|
|
206
|
+
- [Position](docs/Position.md)
|
|
207
|
+
- [ProcessErrorsResponse](docs/ProcessErrorsResponse.md)
|
|
208
|
+
- [ProcessLogsResponse](docs/ProcessLogsResponse.md)
|
|
209
|
+
- [ProcessRestartResponse](docs/ProcessRestartResponse.md)
|
|
210
|
+
- [ProcessStatus](docs/ProcessStatus.md)
|
|
211
|
+
- [ProcessStatusResponse](docs/ProcessStatusResponse.md)
|
|
212
|
+
- [ProjectDirResponse](docs/ProjectDirResponse.md)
|
|
213
|
+
- [ReplaceRequest](docs/ReplaceRequest.md)
|
|
214
|
+
- [ReplaceResult](docs/ReplaceResult.md)
|
|
215
|
+
- [ScreenshotResponse](docs/ScreenshotResponse.md)
|
|
216
|
+
- [ScrollResponse](docs/ScrollResponse.md)
|
|
217
|
+
- [SearchFilesResponse](docs/SearchFilesResponse.md)
|
|
218
|
+
- [Session](docs/Session.md)
|
|
219
|
+
- [SessionExecuteRequest](docs/SessionExecuteRequest.md)
|
|
220
|
+
- [SessionExecuteResponse](docs/SessionExecuteResponse.md)
|
|
221
|
+
- [Status](docs/Status.md)
|
|
222
|
+
- [WindowInfo](docs/WindowInfo.md)
|
|
223
|
+
- [WindowsResponse](docs/WindowsResponse.md)
|
|
224
|
+
|
|
225
|
+
<a id="documentation-for-authorization"></a>
|
|
226
|
+
|
|
227
|
+
## Documentation For Authorization
|
|
228
|
+
|
|
229
|
+
Endpoints do not require authorization.
|
|
230
|
+
|
|
231
|
+
## Author
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Daytona Daemon API
|
|
7
|
+
|
|
8
|
+
Daytona Daemon API
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: v0.0.0-dev
|
|
11
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
|
+
|
|
13
|
+
Do not edit the class manually.
|
|
14
|
+
""" # noqa: E501
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
__version__ = "0.0.0-dev"
|
|
18
|
+
|
|
19
|
+
# import apis into sdk package
|
|
20
|
+
from daytona_toolbox_api_client.api.computer_use_api import ComputerUseApi
|
|
21
|
+
from daytona_toolbox_api_client.api.file_system_api import FileSystemApi
|
|
22
|
+
from daytona_toolbox_api_client.api.git_api import GitApi
|
|
23
|
+
from daytona_toolbox_api_client.api.info_api import InfoApi
|
|
24
|
+
from daytona_toolbox_api_client.api.lsp_api import LspApi
|
|
25
|
+
from daytona_toolbox_api_client.api.port_api import PortApi
|
|
26
|
+
from daytona_toolbox_api_client.api.process_api import ProcessApi
|
|
27
|
+
|
|
28
|
+
# import ApiClient
|
|
29
|
+
from daytona_toolbox_api_client.api_response import ApiResponse
|
|
30
|
+
from daytona_toolbox_api_client.api_client import ApiClient
|
|
31
|
+
from daytona_toolbox_api_client.configuration import Configuration
|
|
32
|
+
from daytona_toolbox_api_client.exceptions import OpenApiException
|
|
33
|
+
from daytona_toolbox_api_client.exceptions import ApiTypeError
|
|
34
|
+
from daytona_toolbox_api_client.exceptions import ApiValueError
|
|
35
|
+
from daytona_toolbox_api_client.exceptions import ApiKeyError
|
|
36
|
+
from daytona_toolbox_api_client.exceptions import ApiAttributeError
|
|
37
|
+
from daytona_toolbox_api_client.exceptions import ApiException
|
|
38
|
+
|
|
39
|
+
# import models into sdk package
|
|
40
|
+
from daytona_toolbox_api_client.models.command import Command
|
|
41
|
+
from daytona_toolbox_api_client.models.completion_context import CompletionContext
|
|
42
|
+
from daytona_toolbox_api_client.models.completion_item import CompletionItem
|
|
43
|
+
from daytona_toolbox_api_client.models.completion_list import CompletionList
|
|
44
|
+
from daytona_toolbox_api_client.models.computer_use_start_response import ComputerUseStartResponse
|
|
45
|
+
from daytona_toolbox_api_client.models.computer_use_status_response import ComputerUseStatusResponse
|
|
46
|
+
from daytona_toolbox_api_client.models.computer_use_stop_response import ComputerUseStopResponse
|
|
47
|
+
from daytona_toolbox_api_client.models.create_session_request import CreateSessionRequest
|
|
48
|
+
from daytona_toolbox_api_client.models.display_info import DisplayInfo
|
|
49
|
+
from daytona_toolbox_api_client.models.display_info_response import DisplayInfoResponse
|
|
50
|
+
from daytona_toolbox_api_client.models.execute_request import ExecuteRequest
|
|
51
|
+
from daytona_toolbox_api_client.models.execute_response import ExecuteResponse
|
|
52
|
+
from daytona_toolbox_api_client.models.file_info import FileInfo
|
|
53
|
+
from daytona_toolbox_api_client.models.file_status import FileStatus
|
|
54
|
+
from daytona_toolbox_api_client.models.files_download_request import FilesDownloadRequest
|
|
55
|
+
from daytona_toolbox_api_client.models.git_add_request import GitAddRequest
|
|
56
|
+
from daytona_toolbox_api_client.models.git_branch_request import GitBranchRequest
|
|
57
|
+
from daytona_toolbox_api_client.models.git_checkout_request import GitCheckoutRequest
|
|
58
|
+
from daytona_toolbox_api_client.models.git_clone_request import GitCloneRequest
|
|
59
|
+
from daytona_toolbox_api_client.models.git_commit_info import GitCommitInfo
|
|
60
|
+
from daytona_toolbox_api_client.models.git_commit_request import GitCommitRequest
|
|
61
|
+
from daytona_toolbox_api_client.models.git_commit_response import GitCommitResponse
|
|
62
|
+
from daytona_toolbox_api_client.models.git_git_delete_branch_request import GitGitDeleteBranchRequest
|
|
63
|
+
from daytona_toolbox_api_client.models.git_repo_request import GitRepoRequest
|
|
64
|
+
from daytona_toolbox_api_client.models.git_status import GitStatus
|
|
65
|
+
from daytona_toolbox_api_client.models.is_port_in_use_response import IsPortInUseResponse
|
|
66
|
+
from daytona_toolbox_api_client.models.keyboard_hotkey_request import KeyboardHotkeyRequest
|
|
67
|
+
from daytona_toolbox_api_client.models.keyboard_press_request import KeyboardPressRequest
|
|
68
|
+
from daytona_toolbox_api_client.models.keyboard_type_request import KeyboardTypeRequest
|
|
69
|
+
from daytona_toolbox_api_client.models.list_branch_response import ListBranchResponse
|
|
70
|
+
from daytona_toolbox_api_client.models.lsp_completion_params import LspCompletionParams
|
|
71
|
+
from daytona_toolbox_api_client.models.lsp_document_request import LspDocumentRequest
|
|
72
|
+
from daytona_toolbox_api_client.models.lsp_location import LspLocation
|
|
73
|
+
from daytona_toolbox_api_client.models.lsp_position import LspPosition
|
|
74
|
+
from daytona_toolbox_api_client.models.lsp_range import LspRange
|
|
75
|
+
from daytona_toolbox_api_client.models.lsp_server_request import LspServerRequest
|
|
76
|
+
from daytona_toolbox_api_client.models.lsp_symbol import LspSymbol
|
|
77
|
+
from daytona_toolbox_api_client.models.match import Match
|
|
78
|
+
from daytona_toolbox_api_client.models.mouse_click_request import MouseClickRequest
|
|
79
|
+
from daytona_toolbox_api_client.models.mouse_click_response import MouseClickResponse
|
|
80
|
+
from daytona_toolbox_api_client.models.mouse_drag_request import MouseDragRequest
|
|
81
|
+
from daytona_toolbox_api_client.models.mouse_drag_response import MouseDragResponse
|
|
82
|
+
from daytona_toolbox_api_client.models.mouse_move_request import MouseMoveRequest
|
|
83
|
+
from daytona_toolbox_api_client.models.mouse_position_response import MousePositionResponse
|
|
84
|
+
from daytona_toolbox_api_client.models.mouse_scroll_request import MouseScrollRequest
|
|
85
|
+
from daytona_toolbox_api_client.models.port_list import PortList
|
|
86
|
+
from daytona_toolbox_api_client.models.position import Position
|
|
87
|
+
from daytona_toolbox_api_client.models.process_errors_response import ProcessErrorsResponse
|
|
88
|
+
from daytona_toolbox_api_client.models.process_logs_response import ProcessLogsResponse
|
|
89
|
+
from daytona_toolbox_api_client.models.process_restart_response import ProcessRestartResponse
|
|
90
|
+
from daytona_toolbox_api_client.models.process_status import ProcessStatus
|
|
91
|
+
from daytona_toolbox_api_client.models.process_status_response import ProcessStatusResponse
|
|
92
|
+
from daytona_toolbox_api_client.models.pty_create_request import PtyCreateRequest
|
|
93
|
+
from daytona_toolbox_api_client.models.pty_create_response import PtyCreateResponse
|
|
94
|
+
from daytona_toolbox_api_client.models.pty_list_response import PtyListResponse
|
|
95
|
+
from daytona_toolbox_api_client.models.pty_resize_request import PtyResizeRequest
|
|
96
|
+
from daytona_toolbox_api_client.models.pty_session_info import PtySessionInfo
|
|
97
|
+
from daytona_toolbox_api_client.models.replace_request import ReplaceRequest
|
|
98
|
+
from daytona_toolbox_api_client.models.replace_result import ReplaceResult
|
|
99
|
+
from daytona_toolbox_api_client.models.screenshot_response import ScreenshotResponse
|
|
100
|
+
from daytona_toolbox_api_client.models.scroll_response import ScrollResponse
|
|
101
|
+
from daytona_toolbox_api_client.models.search_files_response import SearchFilesResponse
|
|
102
|
+
from daytona_toolbox_api_client.models.session import Session
|
|
103
|
+
from daytona_toolbox_api_client.models.session_execute_request import SessionExecuteRequest
|
|
104
|
+
from daytona_toolbox_api_client.models.session_execute_response import SessionExecuteResponse
|
|
105
|
+
from daytona_toolbox_api_client.models.status import Status
|
|
106
|
+
from daytona_toolbox_api_client.models.user_home_dir_response import UserHomeDirResponse
|
|
107
|
+
from daytona_toolbox_api_client.models.window_info import WindowInfo
|
|
108
|
+
from daytona_toolbox_api_client.models.windows_response import WindowsResponse
|
|
109
|
+
from daytona_toolbox_api_client.models.work_dir_response import WorkDirResponse
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from daytona_toolbox_api_client.api.computer_use_api import ComputerUseApi
|
|
5
|
+
from daytona_toolbox_api_client.api.file_system_api import FileSystemApi
|
|
6
|
+
from daytona_toolbox_api_client.api.git_api import GitApi
|
|
7
|
+
from daytona_toolbox_api_client.api.info_api import InfoApi
|
|
8
|
+
from daytona_toolbox_api_client.api.lsp_api import LspApi
|
|
9
|
+
from daytona_toolbox_api_client.api.port_api import PortApi
|
|
10
|
+
from daytona_toolbox_api_client.api.process_api import ProcessApi
|
|
11
|
+
|