daytona_api_client 0.27.0rc1__py3-none-any.whl → 0.27.1__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.
- daytona_api_client/__init__.py +5 -2
- daytona_api_client/api/__init__.py +1 -0
- daytona_api_client/api/api_keys_api.py +282 -0
- daytona_api_client/api/health_api.py +282 -0
- daytona_api_client/api/organizations_api.py +27 -330
- daytona_api_client/api/toolbox_api.py +17 -0
- daytona_api_client/models/__init__.py +4 -2
- daytona_api_client/models/api_key_list.py +4 -2
- daytona_api_client/models/create_audit_log.py +2 -2
- daytona_api_client/models/health_controller_check200_response.py +154 -0
- daytona_api_client/models/health_controller_check200_response_info_value.py +101 -0
- daytona_api_client/models/health_controller_check503_response.py +154 -0
- daytona_api_client/models/update_organization_member_access.py +110 -0
- daytona_api_client/models/user_home_dir_response.py +101 -0
- daytona_api_client/models/work_dir_response.py +101 -0
- daytona_api_client/models/workdir_response.py +101 -0
- {daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/METADATA +1 -1
- {daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/RECORD +21 -13
- {daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/WHEEL +0 -0
- {daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/top_level.txt +0 -0
|
@@ -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, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class WorkDirResponse(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
WorkDirResponse
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
dir: Optional[StrictStr] = None
|
|
31
|
+
additional_properties: Dict[str, Any] = {}
|
|
32
|
+
__properties: ClassVar[List[str]] = ["dir"]
|
|
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 WorkDirResponse 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 WorkDirResponse 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
|
+
"dir": obj.get("dir")
|
|
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
|
+
|
|
@@ -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, StrictStr
|
|
22
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class WorkdirResponse(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
WorkdirResponse
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
dir: Optional[StrictStr] = None
|
|
31
|
+
additional_properties: Dict[str, Any] = {}
|
|
32
|
+
__properties: ClassVar[List[str]] = ["dir"]
|
|
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 WorkdirResponse 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 WorkdirResponse 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
|
+
"dir": obj.get("dir")
|
|
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,29 +1,30 @@
|
|
|
1
|
-
daytona_api_client/__init__.py,sha256=
|
|
1
|
+
daytona_api_client/__init__.py,sha256=KLwzj2dFjpvgPVgRuaDEKdEWPeUn6107QvBWeHAQHco,11069
|
|
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
|
|
5
5
|
daytona_api_client/exceptions.py,sha256=3gaH4PrTgR6rYIRmHOcYlIDJ-mqS-M_Ut5wcEcVbtdU,6424
|
|
6
6
|
daytona_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
daytona_api_client/rest.py,sha256=H40AJj0ztQ4zkYCrH7-rJXFZ59kQUFm79CHO7UA5bgQ,9425
|
|
8
|
-
daytona_api_client/api/__init__.py,sha256=
|
|
9
|
-
daytona_api_client/api/api_keys_api.py,sha256=
|
|
8
|
+
daytona_api_client/api/__init__.py,sha256=Dq_s99POdbxoPGia-93Cl19QTg6jSeK331LuqiMpcYA,959
|
|
9
|
+
daytona_api_client/api/api_keys_api.py,sha256=ukjLCI7795BzYYiSBtq1oeWPyDaHY-G4_xCDFbHcxv0,65578
|
|
10
10
|
daytona_api_client/api/audit_api.py,sha256=5vx-1YZfKZmOmOhRHBtz4JGtRbiNDAKq4wpjHIe3iNw,34208
|
|
11
11
|
daytona_api_client/api/default_api.py,sha256=4-VA8V8k3HRRMrs94ANAwkyDKVAZWmNlm2g1X87WOrA,74162
|
|
12
12
|
daytona_api_client/api/docker_registry_api.py,sha256=ids7YUbqX4s2uwv7ROhqFqNzHzdYa7nK9wOPQ5rgB8U,78838
|
|
13
|
+
daytona_api_client/api/health_api.py,sha256=alnAhh9vQkpx2OmVre6dHmHTlcFldBfqsogNoUPzFsc,10533
|
|
13
14
|
daytona_api_client/api/object_storage_api.py,sha256=wvOdTUjvlChxzwwzA-49iwjl46F0uFt06Axfcb_BX4Q,11605
|
|
14
|
-
daytona_api_client/api/organizations_api.py,sha256=
|
|
15
|
+
daytona_api_client/api/organizations_api.py,sha256=lsI2ZOuAqYO3rAeNSHd-4UA7K5RJj_45_MqFw42V4VM,264232
|
|
15
16
|
daytona_api_client/api/preview_api.py,sha256=_cYR0xaBKtYBFUKIRezvR0d6swN7yKkmVkJ5yBLk_ro,31054
|
|
16
17
|
daytona_api_client/api/runners_api.py,sha256=kl74Mg19G71Kcj9dNK9xeJCaZ2upk4z-DS7Ul70n-Ww,49018
|
|
17
18
|
daytona_api_client/api/sandbox_api.py,sha256=yr4s9iuEYpu2mspxJC4WfkVJMpAlEAa1NEI38IwW6R4,210810
|
|
18
19
|
daytona_api_client/api/snapshots_api.py,sha256=rt0h_XOyGay-JEaqw69-JqiJEq0GbG1U-MKJtg3Ez0c,103174
|
|
19
|
-
daytona_api_client/api/toolbox_api.py,sha256=
|
|
20
|
+
daytona_api_client/api/toolbox_api.py,sha256=V-3ZUx_wdIe1z9GyWS_8z41SnL7keRGGXaysUWw34Qk,720904
|
|
20
21
|
daytona_api_client/api/users_api.py,sha256=KR4cw2mfRp06QV2b0UXXQ1Jcx59TyuS0c7yGRr2Sodk,86402
|
|
21
22
|
daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
|
|
22
23
|
daytona_api_client/api/webhooks_api.py,sha256=epxKIYqZfebDapzSvqUVlJct1KfVr_T3ZnAc9YyiZX8,69516
|
|
23
24
|
daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
|
|
24
|
-
daytona_api_client/models/__init__.py,sha256=
|
|
25
|
+
daytona_api_client/models/__init__.py,sha256=noGK3GQhRu5_XEIHVCJM5yQrX9wsl2k34JW7XggZ5sw,9574
|
|
25
26
|
daytona_api_client/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
|
|
26
|
-
daytona_api_client/models/api_key_list.py,sha256=
|
|
27
|
+
daytona_api_client/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
|
|
27
28
|
daytona_api_client/models/api_key_response.py,sha256=XWqJdKTMp1w8uoUpmeKn0tKeXeImTJElnTvLunZGX5Y,4611
|
|
28
29
|
daytona_api_client/models/audit_log.py,sha256=sEOzYMbo8D525RhvlbizaiDjcC9fKo0-v2LbkXyxC6A,4689
|
|
29
30
|
daytona_api_client/models/build_info.py,sha256=5mPYDwHA3pQ4fPbNuE3kC9DYUmebIncqc4Fj2BQR1ZQ,3735
|
|
@@ -36,7 +37,7 @@ daytona_api_client/models/computer_use_start_response.py,sha256=9VYe5UMBU-0EpGaw
|
|
|
36
37
|
daytona_api_client/models/computer_use_status_response.py,sha256=P2dNSx1Ot-szu4y5gk1GCEJixCxsXrVnMNetxeYMh54,3489
|
|
37
38
|
daytona_api_client/models/computer_use_stop_response.py,sha256=FUpPYsIMPXqCGKYqdvVozjHHthg5j0o8NOMCYXjp5lY,3332
|
|
38
39
|
daytona_api_client/models/create_api_key.py,sha256=GFv3d-rA2Mbr9UhP-0O0DKm-gvln_JSGFJjMyoSAc8A,4351
|
|
39
|
-
daytona_api_client/models/create_audit_log.py,sha256=
|
|
40
|
+
daytona_api_client/models/create_audit_log.py,sha256=NkEnWDpRRELoKER5kTmUE48J5UNv4uxV1aq8mfXKCf8,7031
|
|
40
41
|
daytona_api_client/models/create_build_info.py,sha256=hepmmgcZn199sgLksLm3ksJNSv-XLSgqL2BPdFnNAdg,3402
|
|
41
42
|
daytona_api_client/models/create_docker_registry.py,sha256=dyWgwtTu6RcbGgXyosFbwtvPJ55FjuK0duof-jK9o7Q,4337
|
|
42
43
|
daytona_api_client/models/create_linked_account.py,sha256=ar_cK_7Ep9iQ6zKeYDEMhQ5m3jc5EuomXj9SpdtWtSE,3289
|
|
@@ -68,6 +69,9 @@ daytona_api_client/models/git_commit_response.py,sha256=tnB4qIbD49vNfE2u7axt6nQR
|
|
|
68
69
|
daytona_api_client/models/git_delete_branch_request.py,sha256=HVsnHjofhwZOQKI0YGcVzzU_vMQJfDjF3-CEExFrxOg,3117
|
|
69
70
|
daytona_api_client/models/git_repo_request.py,sha256=xD6xbFjoNsRF6Y2oZI-T3YE039pTzUVrzIQQKU9AzU8,3226
|
|
70
71
|
daytona_api_client/models/git_status.py,sha256=-ubQZHin6YprTKXO8eWzjLix3vQuutQ33e3yEca-v-A,4140
|
|
72
|
+
daytona_api_client/models/health_controller_check200_response.py,sha256=IzZTeMWRKEwsvLykCxsakt99BaxKCCdDn-H3GS5RUMA,5726
|
|
73
|
+
daytona_api_client/models/health_controller_check200_response_info_value.py,sha256=R1GEl8QQr1qyOHAN5XJMGIpy1TfiBg42BwhkzgHsbZk,3136
|
|
74
|
+
daytona_api_client/models/health_controller_check503_response.py,sha256=Fbi67v_8IttsYsI42IVOeA0EJZaJ9yoD93uGI5IFFKE,5726
|
|
71
75
|
daytona_api_client/models/keyboard_hotkey_request.py,sha256=2TUiw1xzR-pnkejwBZ2CMBDukx1oZQXZFqD-gsrLWJU,3153
|
|
72
76
|
daytona_api_client/models/keyboard_hotkey_response.py,sha256=p2fUBgp1UV86eZRYOu8bvvUK59E3kTgcqEqeOuDh_I4,3150
|
|
73
77
|
daytona_api_client/models/keyboard_press_request.py,sha256=hjU2CJYDc0PBW0SWEgYiY_6aQW810dQTu7T6u1VprxE,3351
|
|
@@ -148,10 +152,12 @@ daytona_api_client/models/storage_access_dto.py,sha256=aivW_3ewAA5jcevSPyvsTaqqY
|
|
|
148
152
|
daytona_api_client/models/update_assigned_organization_roles.py,sha256=G8-T_36mlvj5o0QGO5rhXcMed86NaWyEc8kvhRm4Uho,3172
|
|
149
153
|
daytona_api_client/models/update_docker_registry.py,sha256=ya9FuZ3xvkUr0Dt69umaIJZjnH3Fy882qs82pt2iytw,3604
|
|
150
154
|
daytona_api_client/models/update_organization_invitation.py,sha256=_98DviKjGYq1h_zKngy0WphVyvi19d6kO8yiMgviX5A,3809
|
|
155
|
+
daytona_api_client/models/update_organization_member_access.py,sha256=I0q60678RqxDc_-ZWqNf2drqEmEB1FMPpJ60ZL7-MbY,3646
|
|
151
156
|
daytona_api_client/models/update_organization_member_role.py,sha256=-B8wsTJgQSkQTiYqD0nuc8yUXRRzIX5U0z5z94CTc5Q,3401
|
|
152
157
|
daytona_api_client/models/update_organization_quota.py,sha256=qfwgYkEKBJHhksdhbC0_LZUt5fBBFehQdtfq5seFSGc,6830
|
|
153
158
|
daytona_api_client/models/update_organization_role.py,sha256=-Z8oRpO3ebQRtlzMaeYKyfyNiFARD76kGvY_9-mF4os,4069
|
|
154
159
|
daytona_api_client/models/user.py,sha256=sXLeH2Rivv_Jls4rGcv3ihfX9B7-4pCZqk_JrSGBGmI,4060
|
|
160
|
+
daytona_api_client/models/user_home_dir_response.py,sha256=Hw3BXi_AdWuJRQ7lzncLSnBKW1iulBMSFD5rP92aoY8,3063
|
|
155
161
|
daytona_api_client/models/user_public_key.py,sha256=Y0_O7Sq8NP3XzCdKJJj7iTavEY8ytcBAf0Q3qOnJhbQ,3150
|
|
156
162
|
daytona_api_client/models/volume_created_post_request.py,sha256=chleMJEqyLN_mdwd7UpmLLr1bRMQnZnb-UkYtyyDqDk,3653
|
|
157
163
|
daytona_api_client/models/volume_created_post_request_data.py,sha256=MEqGnebIYVqY4-CqWCZ6LUx7OdPQZprAeqMwY9-nCmE,4487
|
|
@@ -166,9 +172,11 @@ daytona_api_client/models/webhook_controller_get_initialization_status200_respon
|
|
|
166
172
|
daytona_api_client/models/webhook_controller_get_status200_response.py,sha256=aRWG6gX4340N2Xhv6F3_5xr29zcNxLE8k-I7E7PSqVE,3153
|
|
167
173
|
daytona_api_client/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXNDGwvJmd5QewHJtJ5JsUUgwBrbMQ8Bw,4664
|
|
168
174
|
daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
|
|
175
|
+
daytona_api_client/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
|
|
176
|
+
daytona_api_client/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
|
|
169
177
|
daytona_api_client/models/workspace.py,sha256=uwAStXOLrVJzbxdTfPZokrcMr4Dp4ghgH8V5fy5r0gY,11488
|
|
170
|
-
daytona_api_client-0.27.
|
|
171
|
-
daytona_api_client-0.27.
|
|
172
|
-
daytona_api_client-0.27.
|
|
173
|
-
daytona_api_client-0.27.
|
|
174
|
-
daytona_api_client-0.27.
|
|
178
|
+
daytona_api_client-0.27.1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
179
|
+
daytona_api_client-0.27.1.dist-info/METADATA,sha256=5qOlOJ8gB40TiGdM616EHXWnd8vaicqzpa6gQeBuT4Y,618
|
|
180
|
+
daytona_api_client-0.27.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
181
|
+
daytona_api_client-0.27.1.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
|
|
182
|
+
daytona_api_client-0.27.1.dist-info/RECORD,,
|
|
File without changes
|
{daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
{daytona_api_client-0.27.0rc1.dist-info → daytona_api_client-0.27.1.dist-info}/top_level.txt
RENAMED
|
File without changes
|