daytona_api_client_async 0.21.8__py3-none-any.whl → 0.22.0a5__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.

Potentially problematic release.


This version of daytona_api_client_async might be problematic. Click here for more details.

Files changed (36) hide show
  1. daytona_api_client_async/__init__.py +24 -0
  2. daytona_api_client_async/api/toolbox_api.py +8022 -1640
  3. daytona_api_client_async/models/__init__.py +24 -0
  4. daytona_api_client_async/models/compressed_screenshot_response.py +105 -0
  5. daytona_api_client_async/models/computer_use_start_response.py +103 -0
  6. daytona_api_client_async/models/computer_use_status_response.py +108 -0
  7. daytona_api_client_async/models/computer_use_stop_response.py +103 -0
  8. daytona_api_client_async/models/display_info_response.py +101 -0
  9. daytona_api_client_async/models/empty_response.py +101 -0
  10. daytona_api_client_async/models/keyboard_hotkey_request.py +101 -0
  11. daytona_api_client_async/models/keyboard_hotkey_response.py +103 -0
  12. daytona_api_client_async/models/keyboard_press_request.py +103 -0
  13. daytona_api_client_async/models/keyboard_press_response.py +105 -0
  14. daytona_api_client_async/models/keyboard_type_request.py +103 -0
  15. daytona_api_client_async/models/keyboard_type_response.py +103 -0
  16. daytona_api_client_async/models/mouse_click_request.py +107 -0
  17. daytona_api_client_async/models/mouse_click_response.py +103 -0
  18. daytona_api_client_async/models/mouse_drag_request.py +109 -0
  19. daytona_api_client_async/models/mouse_drag_response.py +103 -0
  20. daytona_api_client_async/models/mouse_move_request.py +103 -0
  21. daytona_api_client_async/models/mouse_move_response.py +103 -0
  22. daytona_api_client_async/models/mouse_position.py +103 -0
  23. daytona_api_client_async/models/mouse_scroll_request.py +107 -0
  24. daytona_api_client_async/models/mouse_scroll_response.py +101 -0
  25. daytona_api_client_async/models/process_errors_response.py +103 -0
  26. daytona_api_client_async/models/process_logs_response.py +103 -0
  27. daytona_api_client_async/models/process_restart_response.py +103 -0
  28. daytona_api_client_async/models/process_status_response.py +103 -0
  29. daytona_api_client_async/models/region_screenshot_response.py +105 -0
  30. daytona_api_client_async/models/screenshot_response.py +105 -0
  31. daytona_api_client_async/models/windows_response.py +101 -0
  32. {daytona_api_client_async-0.21.8.dist-info → daytona_api_client_async-0.22.0a5.dist-info}/METADATA +1 -1
  33. {daytona_api_client_async-0.21.8.dist-info → daytona_api_client_async-0.22.0a5.dist-info}/RECORD +36 -8
  34. {daytona_api_client_async-0.21.8.dist-info → daytona_api_client_async-0.22.0a5.dist-info}/WHEEL +0 -0
  35. {daytona_api_client_async-0.21.8.dist-info → daytona_api_client_async-0.22.0a5.dist-info}/licenses/LICENSE +0 -0
  36. {daytona_api_client_async-0.21.8.dist-info → daytona_api_client_async-0.22.0a5.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,103 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona
5
+
6
+ Daytona AI platform API Docs
7
+
8
+ The version of the OpenAPI document: 1.0
9
+ Contact: support@daytona.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ProcessStatusResponse(BaseModel):
27
+ """
28
+ ProcessStatusResponse
29
+ """ # noqa: E501
30
+ process_name: StrictStr = Field(description="The name of the VNC process being checked", alias="processName")
31
+ running: StrictBool = Field(description="Whether the specified VNC process is currently running")
32
+ additional_properties: Dict[str, Any] = {}
33
+ __properties: ClassVar[List[str]] = ["processName", "running"]
34
+
35
+ model_config = ConfigDict(
36
+ populate_by_name=True,
37
+ validate_assignment=True,
38
+ protected_namespaces=(),
39
+ )
40
+
41
+
42
+ def to_str(self) -> str:
43
+ """Returns the string representation of the model using alias"""
44
+ return pprint.pformat(self.model_dump(by_alias=True))
45
+
46
+ def to_json(self) -> str:
47
+ """Returns the JSON representation of the model using alias"""
48
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
+ return json.dumps(self.to_dict())
50
+
51
+ @classmethod
52
+ def from_json(cls, json_str: str) -> Optional[Self]:
53
+ """Create an instance of ProcessStatusResponse from a JSON string"""
54
+ return cls.from_dict(json.loads(json_str))
55
+
56
+ def to_dict(self) -> Dict[str, Any]:
57
+ """Return the dictionary representation of the model using alias.
58
+
59
+ This has the following differences from calling pydantic's
60
+ `self.model_dump(by_alias=True)`:
61
+
62
+ * `None` is only added to the output dict for nullable fields that
63
+ were set at model initialization. Other fields with value `None`
64
+ are ignored.
65
+ * Fields in `self.additional_properties` are added to the output dict.
66
+ """
67
+ excluded_fields: Set[str] = set([
68
+ "additional_properties",
69
+ ])
70
+
71
+ _dict = self.model_dump(
72
+ by_alias=True,
73
+ exclude=excluded_fields,
74
+ exclude_none=True,
75
+ )
76
+ # puts key-value pairs in additional_properties in the top level
77
+ if self.additional_properties is not None:
78
+ for _key, _value in self.additional_properties.items():
79
+ _dict[_key] = _value
80
+
81
+ return _dict
82
+
83
+ @classmethod
84
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
85
+ """Create an instance of ProcessStatusResponse from a dict"""
86
+ if obj is None:
87
+ return None
88
+
89
+ if not isinstance(obj, dict):
90
+ return cls.model_validate(obj)
91
+
92
+ _obj = cls.model_validate({
93
+ "processName": obj.get("processName"),
94
+ "running": obj.get("running")
95
+ })
96
+ # store additional fields in additional_properties
97
+ for _key in obj.keys():
98
+ if _key not in cls.__properties:
99
+ _obj.additional_properties[_key] = obj.get(_key)
100
+
101
+ return _obj
102
+
103
+
@@ -0,0 +1,105 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona
5
+
6
+ Daytona AI platform API Docs
7
+
8
+ The version of the OpenAPI document: 1.0
9
+ Contact: support@daytona.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class RegionScreenshotResponse(BaseModel):
27
+ """
28
+ RegionScreenshotResponse
29
+ """ # noqa: E501
30
+ screenshot: StrictStr = Field(description="Base64 encoded screenshot image data of the specified region")
31
+ cursor_position: Optional[Dict[str, Any]] = Field(default=None, description="The current cursor position when the region screenshot was taken", alias="cursorPosition")
32
+ size_bytes: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The size of the screenshot data in bytes", alias="sizeBytes")
33
+ additional_properties: Dict[str, Any] = {}
34
+ __properties: ClassVar[List[str]] = ["screenshot", "cursorPosition", "sizeBytes"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of RegionScreenshotResponse from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ * Fields in `self.additional_properties` are added to the output dict.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ "additional_properties",
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ # puts key-value pairs in additional_properties in the top level
78
+ if self.additional_properties is not None:
79
+ for _key, _value in self.additional_properties.items():
80
+ _dict[_key] = _value
81
+
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of RegionScreenshotResponse from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate({
94
+ "screenshot": obj.get("screenshot"),
95
+ "cursorPosition": obj.get("cursorPosition"),
96
+ "sizeBytes": obj.get("sizeBytes")
97
+ })
98
+ # store additional fields in additional_properties
99
+ for _key in obj.keys():
100
+ if _key not in cls.__properties:
101
+ _obj.additional_properties[_key] = obj.get(_key)
102
+
103
+ return _obj
104
+
105
+
@@ -0,0 +1,105 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona
5
+
6
+ Daytona AI platform API Docs
7
+
8
+ The version of the OpenAPI document: 1.0
9
+ Contact: support@daytona.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt, StrictStr
22
+ from typing import Any, ClassVar, Dict, List, Optional, Union
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class ScreenshotResponse(BaseModel):
27
+ """
28
+ ScreenshotResponse
29
+ """ # noqa: E501
30
+ screenshot: StrictStr = Field(description="Base64 encoded screenshot image data")
31
+ cursor_position: Optional[Dict[str, Any]] = Field(default=None, description="The current cursor position when the screenshot was taken", alias="cursorPosition")
32
+ size_bytes: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="The size of the screenshot data in bytes", alias="sizeBytes")
33
+ additional_properties: Dict[str, Any] = {}
34
+ __properties: ClassVar[List[str]] = ["screenshot", "cursorPosition", "sizeBytes"]
35
+
36
+ model_config = ConfigDict(
37
+ populate_by_name=True,
38
+ validate_assignment=True,
39
+ protected_namespaces=(),
40
+ )
41
+
42
+
43
+ def to_str(self) -> str:
44
+ """Returns the string representation of the model using alias"""
45
+ return pprint.pformat(self.model_dump(by_alias=True))
46
+
47
+ def to_json(self) -> str:
48
+ """Returns the JSON representation of the model using alias"""
49
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
50
+ return json.dumps(self.to_dict())
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of ScreenshotResponse from a JSON string"""
55
+ return cls.from_dict(json.loads(json_str))
56
+
57
+ def to_dict(self) -> Dict[str, Any]:
58
+ """Return the dictionary representation of the model using alias.
59
+
60
+ This has the following differences from calling pydantic's
61
+ `self.model_dump(by_alias=True)`:
62
+
63
+ * `None` is only added to the output dict for nullable fields that
64
+ were set at model initialization. Other fields with value `None`
65
+ are ignored.
66
+ * Fields in `self.additional_properties` are added to the output dict.
67
+ """
68
+ excluded_fields: Set[str] = set([
69
+ "additional_properties",
70
+ ])
71
+
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude=excluded_fields,
75
+ exclude_none=True,
76
+ )
77
+ # puts key-value pairs in additional_properties in the top level
78
+ if self.additional_properties is not None:
79
+ for _key, _value in self.additional_properties.items():
80
+ _dict[_key] = _value
81
+
82
+ return _dict
83
+
84
+ @classmethod
85
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
86
+ """Create an instance of ScreenshotResponse from a dict"""
87
+ if obj is None:
88
+ return None
89
+
90
+ if not isinstance(obj, dict):
91
+ return cls.model_validate(obj)
92
+
93
+ _obj = cls.model_validate({
94
+ "screenshot": obj.get("screenshot"),
95
+ "cursorPosition": obj.get("cursorPosition"),
96
+ "sizeBytes": obj.get("sizeBytes")
97
+ })
98
+ # store additional fields in additional_properties
99
+ for _key in obj.keys():
100
+ if _key not in cls.__properties:
101
+ _obj.additional_properties[_key] = obj.get(_key)
102
+
103
+ return _obj
104
+
105
+
@@ -0,0 +1,101 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Daytona
5
+
6
+ Daytona AI platform API Docs
7
+
8
+ The version of the OpenAPI document: 1.0
9
+ Contact: support@daytona.com
10
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
11
+
12
+ Do not edit the class manually.
13
+ """ # noqa: E501
14
+
15
+
16
+ from __future__ import annotations
17
+ import pprint
18
+ import re # noqa: F401
19
+ import json
20
+
21
+ from pydantic import BaseModel, ConfigDict, Field
22
+ from typing import Any, ClassVar, Dict, List
23
+ from typing import Optional, Set
24
+ from typing_extensions import Self
25
+
26
+ class WindowsResponse(BaseModel):
27
+ """
28
+ WindowsResponse
29
+ """ # noqa: E501
30
+ windows: List[Dict[str, Any]] = Field(description="Array of window information for all visible windows")
31
+ additional_properties: Dict[str, Any] = {}
32
+ __properties: ClassVar[List[str]] = ["windows"]
33
+
34
+ model_config = ConfigDict(
35
+ populate_by_name=True,
36
+ validate_assignment=True,
37
+ protected_namespaces=(),
38
+ )
39
+
40
+
41
+ def to_str(self) -> str:
42
+ """Returns the string representation of the model using alias"""
43
+ return pprint.pformat(self.model_dump(by_alias=True))
44
+
45
+ def to_json(self) -> str:
46
+ """Returns the JSON representation of the model using alias"""
47
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
+ return json.dumps(self.to_dict())
49
+
50
+ @classmethod
51
+ def from_json(cls, json_str: str) -> Optional[Self]:
52
+ """Create an instance of WindowsResponse from a JSON string"""
53
+ return cls.from_dict(json.loads(json_str))
54
+
55
+ def to_dict(self) -> Dict[str, Any]:
56
+ """Return the dictionary representation of the model using alias.
57
+
58
+ This has the following differences from calling pydantic's
59
+ `self.model_dump(by_alias=True)`:
60
+
61
+ * `None` is only added to the output dict for nullable fields that
62
+ were set at model initialization. Other fields with value `None`
63
+ are ignored.
64
+ * Fields in `self.additional_properties` are added to the output dict.
65
+ """
66
+ excluded_fields: Set[str] = set([
67
+ "additional_properties",
68
+ ])
69
+
70
+ _dict = self.model_dump(
71
+ by_alias=True,
72
+ exclude=excluded_fields,
73
+ exclude_none=True,
74
+ )
75
+ # puts key-value pairs in additional_properties in the top level
76
+ if self.additional_properties is not None:
77
+ for _key, _value in self.additional_properties.items():
78
+ _dict[_key] = _value
79
+
80
+ return _dict
81
+
82
+ @classmethod
83
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
84
+ """Create an instance of WindowsResponse from a dict"""
85
+ if obj is None:
86
+ return None
87
+
88
+ if not isinstance(obj, dict):
89
+ return cls.model_validate(obj)
90
+
91
+ _obj = cls.model_validate({
92
+ "windows": obj.get("windows")
93
+ })
94
+ # store additional fields in additional_properties
95
+ for _key in obj.keys():
96
+ if _key not in cls.__properties:
97
+ _obj.additional_properties[_key] = obj.get(_key)
98
+
99
+ return _obj
100
+
101
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client_async
3
- Version: 0.21.8
3
+ Version: 0.22.0a5
4
4
  Summary: Daytona
5
5
  Home-page:
6
6
  Author: Daytona Platforms Inc.
@@ -1,4 +1,4 @@
1
- daytona_api_client_async/__init__.py,sha256=URpdBBghz02iBx8o02wq-XPRYlR7T5R1n5TayGfqdC0,8751
1
+ daytona_api_client_async/__init__.py,sha256=ML3h1jB22nHI0yRidt7wyeafSAqagpI92bCntbd1NuQ,10843
2
2
  daytona_api_client_async/api_client.py,sha256=FrpVLztK7lFu1O0ZPkojl5l-tB_jGIKmDAc5k-VOWJg,27598
3
3
  daytona_api_client_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
4
  daytona_api_client_async/configuration.py,sha256=hWTtQJ-3aR2SzZScWV02gUUaOt1-L99egXbDD6X692Y,17963
@@ -16,11 +16,11 @@ daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQT
16
16
  daytona_api_client_async/api/runners_api.py,sha256=EopjMktc1SAnW5NB7KN5Ypte4G9HPReaC6hxb02980I,49681
17
17
  daytona_api_client_async/api/sandbox_api.py,sha256=Mii7P4oWsjfgpHXGivI5LKt-uifiiT-L929xa-JV9ss,163816
18
18
  daytona_api_client_async/api/snapshots_api.py,sha256=Y0gDKN6TtWyzALRCB0d3taV1otEOFgK8YHldGhovoI4,93817
19
- daytona_api_client_async/api/toolbox_api.py,sha256=iQ1f33pX92rUTIGeTIDotf9UA_SO3l3CoYVX1T68jJg,468251
19
+ daytona_api_client_async/api/toolbox_api.py,sha256=plhAImkMRhqC4qcCvlRUpjiLD3Uli5HwBWNX1FTuAYM,723310
20
20
  daytona_api_client_async/api/users_api.py,sha256=m-20QIRMPlDnEn9WLwTQZeT3IcoQkpMyxYixm_R4Xn8,77691
21
21
  daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
22
22
  daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
23
- daytona_api_client_async/models/__init__.py,sha256=3lG4n4SIO3PmDDo7Ov24CfeDVrfMNAqKQLN8qa9WfW0,7300
23
+ daytona_api_client_async/models/__init__.py,sha256=5WHbAJIRXiiVZrbos5dzMPNW1n4HVYDKvNP0CIRHuRY,9392
24
24
  daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
25
25
  daytona_api_client_async/models/api_key_list.py,sha256=rJd1xwxcyWA_rRT_FXJvoDnB1xM4l1zUSXDRPuW-r9Y,4967
26
26
  daytona_api_client_async/models/api_key_response.py,sha256=OIXwvgE2XgJod_KmMOIsnW2VlotYImFTHQzAWm_A3pc,4573
@@ -31,6 +31,10 @@ daytona_api_client_async/models/command.py,sha256=BSsm6JDZ3gX7EfhFMzhsgv_r1q4ycJ
31
31
  daytona_api_client_async/models/completion_context.py,sha256=ulDPkPYnVGiBMzcTDdyGrq9sPwb4ZYECJ8XvC9-rrvc,3330
32
32
  daytona_api_client_async/models/completion_item.py,sha256=fnIhRNLvf0jaB_RXpS28QQyB1DvUMvFl7YLh49r88pk,3803
33
33
  daytona_api_client_async/models/completion_list.py,sha256=oWsIwnJ0WklFSQaIWFmyuok251GkjIPClJ0KdilWbc4,3647
34
+ daytona_api_client_async/models/compressed_screenshot_response.py,sha256=kyXtOVA01vDm8UUVNdOWFwj92fKvrpW4QfRL8NpHBMU,3694
35
+ daytona_api_client_async/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw1ajHFsVbkO0s3Wile4tsWJSf_8I,3336
36
+ daytona_api_client_async/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
37
+ daytona_api_client_async/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
34
38
  daytona_api_client_async/models/create_api_key.py,sha256=E8jDqiPudlMWHyuZNRMR1dPoAgnmrZpr58nzu5qrKoI,4313
35
39
  daytona_api_client_async/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
36
40
  daytona_api_client_async/models/create_docker_registry.py,sha256=pOdS9twot2wjKWcf3-fxq4UuzmUUCFBcPdIIqKynR7c,4322
@@ -48,8 +52,10 @@ daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0
48
52
  daytona_api_client_async/models/create_user.py,sha256=Amtw3BopSp20zD9QlpZnQHunhSO_yCyKaq3bYBGxJvc,4396
49
53
  daytona_api_client_async/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKPqF94OiL0Dygj4,3012
50
54
  daytona_api_client_async/models/create_workspace.py,sha256=e7uJNdwV9SRW0Jxew2A4PuB9VVQ0FlP5votvv9cUiRE,7094
55
+ daytona_api_client_async/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
51
56
  daytona_api_client_async/models/docker_registry.py,sha256=ZvO8zbXkgoQBrIogjBkGWlHnnRwd7CCq_DbdG92o6N4,4326
52
57
  daytona_api_client_async/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
58
+ daytona_api_client_async/models/empty_response.py,sha256=pzQ97N0yWuJfgQ-iLXAaI8wTsLUBFyAbBQtCveYNnho,3097
53
59
  daytona_api_client_async/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
54
60
  daytona_api_client_async/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
55
61
  daytona_api_client_async/models/file_info.py,sha256=XjAMg_C64Or2UqYeABmkupuL91x_lQ_lwEVrt6I8oQY,3624
@@ -66,6 +72,12 @@ daytona_api_client_async/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3
66
72
  daytona_api_client_async/models/git_status.py,sha256=wiJuRX5Y1hb0V9t8jvonT3c-vDyFgqZMIQhEDRGFCOM,4146
67
73
  daytona_api_client_async/models/image_dto.py,sha256=6LMXMuObi2HH82ybY2qILl121Xy9a5XqXYSc46NlUMA,5164
68
74
  daytona_api_client_async/models/image_state.py,sha256=y71lehJMB4DjFKYxCrQ_-su4Rd-y7PQUEzocS8v-LII,918
75
+ daytona_api_client_async/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
76
+ daytona_api_client_async/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
77
+ daytona_api_client_async/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
78
+ daytona_api_client_async/models/keyboard_press_response.py,sha256=_IWKFwa6i4VxdKu_8nzW2d-_L8q2ZeT-4WT8ZhHwgUI,3225
79
+ daytona_api_client_async/models/keyboard_type_request.py,sha256=EInMIZtMjQPzpwmwaxPtaDdCJohXOrCBIW7yGyOVbPE,3339
80
+ daytona_api_client_async/models/keyboard_type_response.py,sha256=XlpMMOXyT8vZYYe8a4kfiXExcopHcGyPNgsjyOFLPCA,3138
69
81
  daytona_api_client_async/models/list_branch_response.py,sha256=xGsMf4O7UtthJWbPxxX8WuN8aUch9Pdn0PbLiV_3UUs,3058
70
82
  daytona_api_client_async/models/lsp_completion_params.py,sha256=NLalMGgtovPKHIs2FuSByykeVrcvRiUFyyaKFV3TfT8,4200
71
83
  daytona_api_client_async/models/lsp_document_request.py,sha256=E3ZQdeykxfDWjyx5jpqDxMNFrkwJIim81FCaM_4hQc0,3397
@@ -73,6 +85,15 @@ daytona_api_client_async/models/lsp_location.py,sha256=vm-l4CjDz_q6JdBHedv0FXJ9Y
73
85
  daytona_api_client_async/models/lsp_server_request.py,sha256=jqA17U7j4aXDuBkosNqKdnWbeM7u8QrxTDThOGsUJoc,3292
74
86
  daytona_api_client_async/models/lsp_symbol.py,sha256=84tJY46PFQh87WEYoWVll1CvzoWQqP3lF4qpV4gzOlE,3501
75
87
  daytona_api_client_async/models/match.py,sha256=h0OT21plFQwIyK2fD3LClSyeW43L46oztO4oNuRtuzI,3177
88
+ daytona_api_client_async/models/mouse_click_request.py,sha256=9fGa_XGz-Y1YvaHU9TfgeNGi42aqf8bFgGdtUDUYhac,3686
89
+ daytona_api_client_async/models/mouse_click_response.py,sha256=tjW-nIfdKanWmGbje7xT6wleCWLXgKbOUs95kbDAkm4,3288
90
+ daytona_api_client_async/models/mouse_drag_request.py,sha256=mH8Lnr6py8cdvYHNEIXhPMD-gYYr-MnPzwgn0RxC-bg,3912
91
+ daytona_api_client_async/models/mouse_drag_response.py,sha256=mGyOSOxqzHK5eHL3V0jOVGZVaWQzt_OvJeZxoqzMY9I,3276
92
+ daytona_api_client_async/models/mouse_move_request.py,sha256=GDeX86NxkTZSaxsKd03tMCz7TcIIUp9RG9uAJcCe-14,3286
93
+ daytona_api_client_async/models/mouse_move_response.py,sha256=8dNZRVGwou0z5Hnm8qgcpH-Ms5e5NNilXkutTt2QLnY,3298
94
+ daytona_api_client_async/models/mouse_position.py,sha256=7SihmxntHoebKBqFus3FCThvOAc95zYtnDVsKOY29Cs,3262
95
+ daytona_api_client_async/models/mouse_scroll_request.py,sha256=k8gy6A4zgfA-s1_pcJ6Ju53E-WpfU68uiT370IoxiK0,3653
96
+ daytona_api_client_async/models/mouse_scroll_response.py,sha256=8jjnRrSdfynLVoJY5YpG4nKnum0FpV6JoWMsLHuQ5-w,3134
76
97
  daytona_api_client_async/models/organization.py,sha256=ld6jkgn1DyXHTM1R635toY8JMDYlayAua9sFQLfJh_4,4411
77
98
  daytona_api_client_async/models/organization_invitation.py,sha256=vnnZ5zx05weSLymc4IQMtaJEnnxFLrQcG74AmqOMW6Q,5728
78
99
  daytona_api_client_async/models/organization_role.py,sha256=CuPMczKxNUpHeJPPaqBX7i72__T4PX7f_lQgZhtqoxI,4533
@@ -82,8 +103,13 @@ daytona_api_client_async/models/paginated_images_dto.py,sha256=3I2PVVW6j3dlvBQep
82
103
  daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
83
104
  daytona_api_client_async/models/port_preview_url.py,sha256=QnOqJ0-wu7Zy_WiPRG-FeBRTaTZQTUvJrqlSsULQ8rU,3390
84
105
  daytona_api_client_async/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
106
+ daytona_api_client_async/models/process_errors_response.py,sha256=VOT39yX9nhISVfqW4v690bxW0u7wYebUu1cWH8S9uwg,3336
107
+ daytona_api_client_async/models/process_logs_response.py,sha256=dyg9HqPdnjbqxe3n8hMga9lKk3eRCuoU8SdLtaYKQUw,3308
108
+ daytona_api_client_async/models/process_restart_response.py,sha256=XnuTZl2bu5YTVfZ8Pi2h41MRRKR-6eymHfBcBpT13jk,3337
109
+ daytona_api_client_async/models/process_status_response.py,sha256=fnal7pllEO0Q_qiZ9rhz2EJnDfD-s7IaA3sr1otTzxI,3338
85
110
  daytona_api_client_async/models/project_dir_response.py,sha256=o0Ibu6QIWgNay-YZqgJp5qSAiTemZbPnkhNiOLBGrE8,3059
86
111
  daytona_api_client_async/models/range.py,sha256=F48OUblVs_QhZ4FfNr_IIgWC42FXAXVDwX0I1z-9Gds,3518
112
+ daytona_api_client_async/models/region_screenshot_response.py,sha256=SCWHyJSAwC26cCxSKrBcgSqrQo7yD1E1V-0QRrffijg,3676
87
113
  daytona_api_client_async/models/registry_push_access_dto.py,sha256=gTWfFynNH4DTuenBBp6C6CZDABa7lAVtUrP9qYHe4Rs,3862
88
114
  daytona_api_client_async/models/replace_request.py,sha256=6y6osWGrtr3flOYYW5LK0PCw6dV2QthRlKlwFWoCTWs,3222
89
115
  daytona_api_client_async/models/replace_result.py,sha256=yqqFWHo2NgsOqTPR-xcOxBPEIVkkSh8Rjzs1rtdoEek,3236
@@ -98,6 +124,7 @@ daytona_api_client_async/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxj
98
124
  daytona_api_client_async/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
99
125
  daytona_api_client_async/models/sandbox_state.py,sha256=PDvt8EowYJrte0vov6MQafNEU9XaHGLS7xTgpRPybqY,1136
100
126
  daytona_api_client_async/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
127
+ daytona_api_client_async/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
101
128
  daytona_api_client_async/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
102
129
  daytona_api_client_async/models/session.py,sha256=Y1paKlj2B_yt6mDI_g0aNGLu5mLXmEmuSa6CxBba4rc,3950
103
130
  daytona_api_client_async/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
@@ -119,13 +146,14 @@ daytona_api_client_async/models/user.py,sha256=VQVYrcI4T_MUz21_rweYVcHEpBsjlhBam
119
146
  daytona_api_client_async/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
120
147
  daytona_api_client_async/models/volume_dto.py,sha256=yqEdmaSVOLfHdF5nMXJUzbVChRh2K2lmpjfUi5vbJnA,4600
121
148
  daytona_api_client_async/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
149
+ daytona_api_client_async/models/windows_response.py,sha256=ZmazTV0mhwyq18D65OTvL3f4_RycrRccpu5Ix4xM4o4,3118
122
150
  daytona_api_client_async/models/workspace.py,sha256=WDDwrW2C5tkw1uzx40cry2gYQYduSbKaEF1kjygyf7E,10723
123
151
  daytona_api_client_async/models/workspace_info.py,sha256=aO9EkS6E4LhjrFAY25FJZYnhI6VZt2wQVS-Rj0ptILQ,3503
124
152
  daytona_api_client_async/models/workspace_labels.py,sha256=aMjsVYM4rezpMD6jLVbPqdi72DIIltjqPP0kuGueUsg,3099
125
153
  daytona_api_client_async/models/workspace_state.py,sha256=AqPukjpvYLhkThzx8T4WsKKSuXOOxLwFZ8385AtNVtE,1108
126
154
  daytona_api_client_async/models/workspace_volume.py,sha256=Suo2yiRw80i_24Yp5lFsWpQoykTOxqjHYVQPnx84vGc,3268
127
- daytona_api_client_async-0.21.8.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
128
- daytona_api_client_async-0.21.8.dist-info/METADATA,sha256=yCKzn_y9YHwFVwmhenHNEyHR7xz-nWz_NIifRIeY7yQ,690
129
- daytona_api_client_async-0.21.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
130
- daytona_api_client_async-0.21.8.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
131
- daytona_api_client_async-0.21.8.dist-info/RECORD,,
155
+ daytona_api_client_async-0.22.0a5.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
156
+ daytona_api_client_async-0.22.0a5.dist-info/METADATA,sha256=OKj86JRsB8zADoIg7X5MLKN8JjBO3qyyKr4K-NLjfkw,692
157
+ daytona_api_client_async-0.22.0a5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
158
+ daytona_api_client_async-0.22.0a5.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
159
+ daytona_api_client_async-0.22.0a5.dist-info/RECORD,,