daytona_api_client 0.21.8__py3-none-any.whl → 0.22.0a6__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 might be problematic. Click here for more details.

Files changed (36) hide show
  1. daytona_api_client/__init__.py +24 -0
  2. daytona_api_client/api/toolbox_api.py +8022 -1640
  3. daytona_api_client/models/__init__.py +24 -0
  4. daytona_api_client/models/compressed_screenshot_response.py +105 -0
  5. daytona_api_client/models/computer_use_start_response.py +103 -0
  6. daytona_api_client/models/computer_use_status_response.py +108 -0
  7. daytona_api_client/models/computer_use_stop_response.py +103 -0
  8. daytona_api_client/models/display_info_response.py +101 -0
  9. daytona_api_client/models/empty_response.py +101 -0
  10. daytona_api_client/models/keyboard_hotkey_request.py +101 -0
  11. daytona_api_client/models/keyboard_hotkey_response.py +103 -0
  12. daytona_api_client/models/keyboard_press_request.py +103 -0
  13. daytona_api_client/models/keyboard_press_response.py +105 -0
  14. daytona_api_client/models/keyboard_type_request.py +103 -0
  15. daytona_api_client/models/keyboard_type_response.py +103 -0
  16. daytona_api_client/models/mouse_click_request.py +107 -0
  17. daytona_api_client/models/mouse_click_response.py +103 -0
  18. daytona_api_client/models/mouse_drag_request.py +109 -0
  19. daytona_api_client/models/mouse_drag_response.py +103 -0
  20. daytona_api_client/models/mouse_move_request.py +103 -0
  21. daytona_api_client/models/mouse_move_response.py +103 -0
  22. daytona_api_client/models/mouse_position.py +103 -0
  23. daytona_api_client/models/mouse_scroll_request.py +107 -0
  24. daytona_api_client/models/mouse_scroll_response.py +101 -0
  25. daytona_api_client/models/process_errors_response.py +103 -0
  26. daytona_api_client/models/process_logs_response.py +103 -0
  27. daytona_api_client/models/process_restart_response.py +103 -0
  28. daytona_api_client/models/process_status_response.py +103 -0
  29. daytona_api_client/models/region_screenshot_response.py +105 -0
  30. daytona_api_client/models/screenshot_response.py +105 -0
  31. daytona_api_client/models/windows_response.py +103 -0
  32. {daytona_api_client-0.21.8.dist-info → daytona_api_client-0.22.0a6.dist-info}/METADATA +1 -1
  33. {daytona_api_client-0.21.8.dist-info → daytona_api_client-0.22.0a6.dist-info}/RECORD +36 -8
  34. {daytona_api_client-0.21.8.dist-info → daytona_api_client-0.22.0a6.dist-info}/WHEEL +0 -0
  35. {daytona_api_client-0.21.8.dist-info → daytona_api_client-0.22.0a6.dist-info}/licenses/LICENSE +0 -0
  36. {daytona_api_client-0.21.8.dist-info → daytona_api_client-0.22.0a6.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,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, StrictFloat, StrictInt
22
+ from typing import Any, ClassVar, Dict, List, Union
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
+ count: Union[StrictFloat, StrictInt] = Field(description="The total number of windows found")
32
+ additional_properties: Dict[str, Any] = {}
33
+ __properties: ClassVar[List[str]] = ["windows", "count"]
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 WindowsResponse 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 WindowsResponse 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
+ "windows": obj.get("windows"),
94
+ "count": obj.get("count")
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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client
3
- Version: 0.21.8
3
+ Version: 0.22.0a6
4
4
  Summary: Daytona
5
5
  Home-page:
6
6
  Author: Daytona Platforms Inc.
@@ -1,4 +1,4 @@
1
- daytona_api_client/__init__.py,sha256=ERjF2t_5oxsOATnkzsobLA_fFYNmiKYJsruoI1N4QYw,8085
1
+ daytona_api_client/__init__.py,sha256=L8XNwSpmNtVZHyOBUU3wj3RUc4YzQWdAJ9bN3y8vbfY,10033
2
2
  daytona_api_client/api_client.py,sha256=9EKcRsveS2okE5kTbp212LVTY6LJATDZEqA8Rj77vXY,27455
3
3
  daytona_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
4
  daytona_api_client/configuration.py,sha256=Dz7AXjEZ4BCCCUoGQZLfXUTtuH1PUuo3KrlwLO5Dlsk,18241
@@ -14,11 +14,11 @@ daytona_api_client/api/preview_api.py,sha256=_cYR0xaBKtYBFUKIRezvR0d6swN7yKkmVkJ
14
14
  daytona_api_client/api/runners_api.py,sha256=0K7i2QQPKrNL5pPlq2J0HoDJM5BUSQGa7oIzvYz1Mto,49405
15
15
  daytona_api_client/api/sandbox_api.py,sha256=mnEDztxcWQxKPV4E4qYtqUOpm-I99uRr88vvUVh9NKQ,163102
16
16
  daytona_api_client/api/snapshots_api.py,sha256=UhLekaiOn8Y1qE9Qb9HbE3sjcxMWDwBK7iV4wZY8474,93385
17
- daytona_api_client/api/toolbox_api.py,sha256=nbac3Pl2-U-wqKoZEaGeWAGwTuYFQzktNE2W2FODXvU,466187
17
+ daytona_api_client/api/toolbox_api.py,sha256=izj9K1CqTATLepFrFqrgJ0rAZ3TlBXYlcuXkZij1EPQ,720094
18
18
  daytona_api_client/api/users_api.py,sha256=9CGl0p-jXLkwbJv05ddVjnvaHEesQL3NArEKSkdGmNc,77265
19
19
  daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
20
20
  daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
21
- daytona_api_client/models/__init__.py,sha256=NFFdXODwYKauNTPYaaoNE2GolsMRVwUDI0W-kxy6Sjs,6760
21
+ daytona_api_client/models/__init__.py,sha256=2rjmJa6G7GAPFEP08uRXN9vxYUPiBLNBRO8zus2vSeY,8708
22
22
  daytona_api_client/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
23
23
  daytona_api_client/models/account_provider_dto.py,sha256=__7634O02yfv49jLLzvadJlF1YodOeZmWzjZKUmtd2Y,3154
24
24
  daytona_api_client/models/api_key_list.py,sha256=rJd1xwxcyWA_rRT_FXJvoDnB1xM4l1zUSXDRPuW-r9Y,4967
@@ -29,6 +29,10 @@ daytona_api_client/models/command.py,sha256=BSsm6JDZ3gX7EfhFMzhsgv_r1q4ycJmN4ba0
29
29
  daytona_api_client/models/completion_context.py,sha256=ulDPkPYnVGiBMzcTDdyGrq9sPwb4ZYECJ8XvC9-rrvc,3330
30
30
  daytona_api_client/models/completion_item.py,sha256=fnIhRNLvf0jaB_RXpS28QQyB1DvUMvFl7YLh49r88pk,3803
31
31
  daytona_api_client/models/completion_list.py,sha256=2h38gNg4B8J1HOhV_yt16YPyKvR-qCE1HqOchxNB0s0,3641
32
+ daytona_api_client/models/compressed_screenshot_response.py,sha256=kyXtOVA01vDm8UUVNdOWFwj92fKvrpW4QfRL8NpHBMU,3694
33
+ daytona_api_client/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw1ajHFsVbkO0s3Wile4tsWJSf_8I,3336
34
+ daytona_api_client/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
35
+ daytona_api_client/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
32
36
  daytona_api_client/models/create_api_key.py,sha256=E8jDqiPudlMWHyuZNRMR1dPoAgnmrZpr58nzu5qrKoI,4313
33
37
  daytona_api_client/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
34
38
  daytona_api_client/models/create_docker_registry.py,sha256=pOdS9twot2wjKWcf3-fxq4UuzmUUCFBcPdIIqKynR7c,4322
@@ -44,8 +48,10 @@ daytona_api_client/models/create_snapshot.py,sha256=WGea9750qOcwwAjSjFRYFhlA3H0m
44
48
  daytona_api_client/models/create_user.py,sha256=__5zKvbJCtB44mALgvZBPlYghxlcdPUjLCDiIITKJiM,4390
45
49
  daytona_api_client/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKPqF94OiL0Dygj4,3012
46
50
  daytona_api_client/models/create_workspace.py,sha256=Gu60Pe7tkpiObaZbABenpRPpPduI47RwbcgFJrvCCr0,7082
51
+ daytona_api_client/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
47
52
  daytona_api_client/models/docker_registry.py,sha256=ZvO8zbXkgoQBrIogjBkGWlHnnRwd7CCq_DbdG92o6N4,4326
48
53
  daytona_api_client/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
54
+ daytona_api_client/models/empty_response.py,sha256=pzQ97N0yWuJfgQ-iLXAaI8wTsLUBFyAbBQtCveYNnho,3097
49
55
  daytona_api_client/models/execute_request.py,sha256=pqLiipYbNty2zaiQNfhc9B1zZwQPeqaBtwwlAIEdakU,3401
50
56
  daytona_api_client/models/execute_response.py,sha256=fj3cyel-sUbHO61VebQM5j4RHT17k2GEHgNDThicvj8,3261
51
57
  daytona_api_client/models/file_info.py,sha256=XjAMg_C64Or2UqYeABmkupuL91x_lQ_lwEVrt6I8oQY,3624
@@ -61,6 +67,12 @@ daytona_api_client/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7axt6nQR
61
67
  daytona_api_client/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
62
68
  daytona_api_client/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
63
69
  daytona_api_client/models/git_status.py,sha256=-ubQZHin6YprTKXO8eWzjLix3vQuutQ33e3yEca-v-A,4140
70
+ daytona_api_client/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
71
+ daytona_api_client/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
72
+ daytona_api_client/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
73
+ daytona_api_client/models/keyboard_press_response.py,sha256=_IWKFwa6i4VxdKu_8nzW2d-_L8q2ZeT-4WT8ZhHwgUI,3225
74
+ daytona_api_client/models/keyboard_type_request.py,sha256=EInMIZtMjQPzpwmwaxPtaDdCJohXOrCBIW7yGyOVbPE,3339
75
+ daytona_api_client/models/keyboard_type_response.py,sha256=XlpMMOXyT8vZYYe8a4kfiXExcopHcGyPNgsjyOFLPCA,3138
64
76
  daytona_api_client/models/list_branch_response.py,sha256=xGsMf4O7UtthJWbPxxX8WuN8aUch9Pdn0PbLiV_3UUs,3058
65
77
  daytona_api_client/models/lsp_completion_params.py,sha256=K3i1OUz_p2PBC-Y0MUpLultOFhegdDN22nsJ0wyj2Lw,4188
66
78
  daytona_api_client/models/lsp_document_request.py,sha256=E3ZQdeykxfDWjyx5jpqDxMNFrkwJIim81FCaM_4hQc0,3397
@@ -68,6 +80,15 @@ daytona_api_client/models/lsp_location.py,sha256=UHW4ppgmZpYMS54ZvQojUjNZRIzhA0R
68
80
  daytona_api_client/models/lsp_server_request.py,sha256=jqA17U7j4aXDuBkosNqKdnWbeM7u8QrxTDThOGsUJoc,3292
69
81
  daytona_api_client/models/lsp_symbol.py,sha256=zZTnzBw-lgdRI_IP6vjxgmWJgVNewG6LB1kE4RQnKdI,3495
70
82
  daytona_api_client/models/match.py,sha256=h0OT21plFQwIyK2fD3LClSyeW43L46oztO4oNuRtuzI,3177
83
+ daytona_api_client/models/mouse_click_request.py,sha256=9fGa_XGz-Y1YvaHU9TfgeNGi42aqf8bFgGdtUDUYhac,3686
84
+ daytona_api_client/models/mouse_click_response.py,sha256=tjW-nIfdKanWmGbje7xT6wleCWLXgKbOUs95kbDAkm4,3288
85
+ daytona_api_client/models/mouse_drag_request.py,sha256=mH8Lnr6py8cdvYHNEIXhPMD-gYYr-MnPzwgn0RxC-bg,3912
86
+ daytona_api_client/models/mouse_drag_response.py,sha256=mGyOSOxqzHK5eHL3V0jOVGZVaWQzt_OvJeZxoqzMY9I,3276
87
+ daytona_api_client/models/mouse_move_request.py,sha256=GDeX86NxkTZSaxsKd03tMCz7TcIIUp9RG9uAJcCe-14,3286
88
+ daytona_api_client/models/mouse_move_response.py,sha256=8dNZRVGwou0z5Hnm8qgcpH-Ms5e5NNilXkutTt2QLnY,3298
89
+ daytona_api_client/models/mouse_position.py,sha256=7SihmxntHoebKBqFus3FCThvOAc95zYtnDVsKOY29Cs,3262
90
+ daytona_api_client/models/mouse_scroll_request.py,sha256=k8gy6A4zgfA-s1_pcJ6Ju53E-WpfU68uiT370IoxiK0,3653
91
+ daytona_api_client/models/mouse_scroll_response.py,sha256=8jjnRrSdfynLVoJY5YpG4nKnum0FpV6JoWMsLHuQ5-w,3134
71
92
  daytona_api_client/models/organization.py,sha256=ld6jkgn1DyXHTM1R635toY8JMDYlayAua9sFQLfJh_4,4411
72
93
  daytona_api_client/models/organization_invitation.py,sha256=LXPDanRJHU6bfXD-wanIY2Ise7VakZoRLgqhYrOu_Vk,5722
73
94
  daytona_api_client/models/organization_role.py,sha256=CuPMczKxNUpHeJPPaqBX7i72__T4PX7f_lQgZhtqoxI,4533
@@ -76,8 +97,13 @@ daytona_api_client/models/organization_user.py,sha256=t4rkA-cpCRLgLqDMplg1yv2JYU
76
97
  daytona_api_client/models/paginated_snapshots_dto.py,sha256=v0b9U3XZUjQ2AVJE0Vv-2Do9rCuy2aN4ZwU8s_L8fUw,3859
77
98
  daytona_api_client/models/port_preview_url.py,sha256=QnOqJ0-wu7Zy_WiPRG-FeBRTaTZQTUvJrqlSsULQ8rU,3390
78
99
  daytona_api_client/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
100
+ daytona_api_client/models/process_errors_response.py,sha256=VOT39yX9nhISVfqW4v690bxW0u7wYebUu1cWH8S9uwg,3336
101
+ daytona_api_client/models/process_logs_response.py,sha256=dyg9HqPdnjbqxe3n8hMga9lKk3eRCuoU8SdLtaYKQUw,3308
102
+ daytona_api_client/models/process_restart_response.py,sha256=XnuTZl2bu5YTVfZ8Pi2h41MRRKR-6eymHfBcBpT13jk,3337
103
+ daytona_api_client/models/process_status_response.py,sha256=fnal7pllEO0Q_qiZ9rhz2EJnDfD-s7IaA3sr1otTzxI,3338
79
104
  daytona_api_client/models/project_dir_response.py,sha256=o0Ibu6QIWgNay-YZqgJp5qSAiTemZbPnkhNiOLBGrE8,3059
80
105
  daytona_api_client/models/range.py,sha256=qb71JL5J_Ry_IOf7V5etxrCqqF70SPWtwLJ9KoJUHPc,3512
106
+ daytona_api_client/models/region_screenshot_response.py,sha256=SCWHyJSAwC26cCxSKrBcgSqrQo7yD1E1V-0QRrffijg,3676
81
107
  daytona_api_client/models/registry_push_access_dto.py,sha256=gTWfFynNH4DTuenBBp6C6CZDABa7lAVtUrP9qYHe4Rs,3862
82
108
  daytona_api_client/models/replace_request.py,sha256=6y6osWGrtr3flOYYW5LK0PCw6dV2QthRlKlwFWoCTWs,3222
83
109
  daytona_api_client/models/replace_result.py,sha256=yqqFWHo2NgsOqTPR-xcOxBPEIVkkSh8Rjzs1rtdoEek,3236
@@ -92,6 +118,7 @@ daytona_api_client/models/sandbox_info.py,sha256=u8wFXAS36AyRIwEfcPphUEBxjOLmtZT
92
118
  daytona_api_client/models/sandbox_labels.py,sha256=szanqeO42NwBygvKOq8EZtp6-ExERvumB42II24maUY,3091
93
119
  daytona_api_client/models/sandbox_state.py,sha256=PDvt8EowYJrte0vov6MQafNEU9XaHGLS7xTgpRPybqY,1136
94
120
  daytona_api_client/models/sandbox_volume.py,sha256=R-cNh7LCK6IWjEcAXA6bS_JVkmd54X6tCcAEtJtijKE,3260
121
+ daytona_api_client/models/screenshot_response.py,sha256=n-K-Zpk92a3tFY665fcNDJQxDF80YOhLHVzDRbAl_aE,3621
95
122
  daytona_api_client/models/search_files_response.py,sha256=3m7itQRgoeqJ8I6PyW-BbRthN5oLEP4pMr4HZsB8uqU,3050
96
123
  daytona_api_client/models/session.py,sha256=dg-bsVQRCgL7bIMUYXCufpJfF_QYfLLc88cwDfZKfcE,3944
97
124
  daytona_api_client/models/session_execute_request.py,sha256=_okMRsfmRsIeUe9tUSg06doA9t_FtzPJmh0_IV3Yw4c,3545
@@ -117,9 +144,10 @@ daytona_api_client/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8y
117
144
  daytona_api_client/models/volume.py,sha256=asBdm16e6uaBZKs00f-TMYVRVHyJaNuZquxdYSMcqEo,4465
118
145
  daytona_api_client/models/volume_dto.py,sha256=NL6A6xpc9liR_zlVZKGCoHLlz6r4LAHrMW2uL0TClnI,4594
119
146
  daytona_api_client/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
147
+ daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
120
148
  daytona_api_client/models/workspace.py,sha256=yfqeQg6Sv4hNBHrMnhKRCMTwKoOzCWa4JJ3rxjhZvqs,10693
121
- daytona_api_client-0.21.8.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
122
- daytona_api_client-0.21.8.dist-info/METADATA,sha256=K55z1QD_COeqqUcZ4Mm0GVvG3IDVtRZ3nmSr3ZRk36E,618
123
- daytona_api_client-0.21.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
124
- daytona_api_client-0.21.8.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
125
- daytona_api_client-0.21.8.dist-info/RECORD,,
149
+ daytona_api_client-0.22.0a6.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
150
+ daytona_api_client-0.22.0a6.dist-info/METADATA,sha256=YwTT0FWUJKrX_YRFWApqdIlW8oGlz0vWnfdSRBmQ6Fg,620
151
+ daytona_api_client-0.22.0a6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
152
+ daytona_api_client-0.22.0a6.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
153
+ daytona_api_client-0.22.0a6.dist-info/RECORD,,