daytona_api_client_async 0.108.1__py3-none-any.whl → 0.109.0a1__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.

@@ -21,9 +21,9 @@ from pydantic import Field, StrictBool, StrictFloat, StrictInt, StrictStr
21
21
  from typing import List, Optional, Union
22
22
  from typing_extensions import Annotated
23
23
  from daytona_api_client_async.models.create_workspace import CreateWorkspace
24
- from daytona_api_client_async.models.port_preview_url import PortPreviewUrl
25
24
  from daytona_api_client_async.models.sandbox_labels import SandboxLabels
26
25
  from daytona_api_client_async.models.workspace import Workspace
26
+ from daytona_api_client_async.models.workspace_port_preview_url import WorkspacePortPreviewUrl
27
27
 
28
28
  from daytona_api_client_async.api_client import ApiClient, RequestSerialized
29
29
  from daytona_api_client_async.api_response import ApiResponse
@@ -1472,7 +1472,7 @@ class WorkspaceApi:
1472
1472
  _content_type: Optional[StrictStr] = None,
1473
1473
  _headers: Optional[Dict[StrictStr, Any]] = None,
1474
1474
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1475
- ) -> PortPreviewUrl:
1475
+ ) -> WorkspacePortPreviewUrl:
1476
1476
  """(Deprecated) [DEPRECATED] Get preview URL for a workspace port
1477
1477
 
1478
1478
 
@@ -1516,7 +1516,7 @@ class WorkspaceApi:
1516
1516
  )
1517
1517
 
1518
1518
  _response_types_map: Dict[str, Optional[str]] = {
1519
- '200': "PortPreviewUrl",
1519
+ '200': "WorkspacePortPreviewUrl",
1520
1520
  }
1521
1521
  response_data = await self.api_client.call_api(
1522
1522
  *_param,
@@ -1547,7 +1547,7 @@ class WorkspaceApi:
1547
1547
  _content_type: Optional[StrictStr] = None,
1548
1548
  _headers: Optional[Dict[StrictStr, Any]] = None,
1549
1549
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1550
- ) -> ApiResponse[PortPreviewUrl]:
1550
+ ) -> ApiResponse[WorkspacePortPreviewUrl]:
1551
1551
  """(Deprecated) [DEPRECATED] Get preview URL for a workspace port
1552
1552
 
1553
1553
 
@@ -1591,7 +1591,7 @@ class WorkspaceApi:
1591
1591
  )
1592
1592
 
1593
1593
  _response_types_map: Dict[str, Optional[str]] = {
1594
- '200': "PortPreviewUrl",
1594
+ '200': "WorkspacePortPreviewUrl",
1595
1595
  }
1596
1596
  response_data = await self.api_client.call_api(
1597
1597
  *_param,
@@ -1666,7 +1666,7 @@ class WorkspaceApi:
1666
1666
  )
1667
1667
 
1668
1668
  _response_types_map: Dict[str, Optional[str]] = {
1669
- '200': "PortPreviewUrl",
1669
+ '200': "WorkspacePortPreviewUrl",
1670
1670
  }
1671
1671
  response_data = await self.api_client.call_api(
1672
1672
  *_param,
@@ -154,3 +154,4 @@ from daytona_api_client_async.models.webhook_initialization_status import Webhoo
154
154
  from daytona_api_client_async.models.windows_response import WindowsResponse
155
155
  from daytona_api_client_async.models.work_dir_response import WorkDirResponse
156
156
  from daytona_api_client_async.models.workspace import Workspace
157
+ from daytona_api_client_async.models.workspace_port_preview_url import WorkspacePortPreviewUrl
@@ -29,6 +29,7 @@ class CreateSandbox(BaseModel):
29
29
  """
30
30
  CreateSandbox
31
31
  """ # noqa: E501
32
+ name: Optional[StrictStr] = Field(default=None, description="The name of the sandbox. If not provided, the sandbox ID will be used as the name")
32
33
  snapshot: Optional[StrictStr] = Field(default=None, description="The ID or name of the snapshot used for the sandbox")
33
34
  user: Optional[StrictStr] = Field(default=None, description="The user associated with the project")
34
35
  env: Optional[Dict[str, StrictStr]] = Field(default=None, description="Environment variables for the sandbox")
@@ -48,7 +49,7 @@ class CreateSandbox(BaseModel):
48
49
  volumes: Optional[List[SandboxVolume]] = Field(default=None, description="Array of volumes to attach to the sandbox")
49
50
  build_info: Optional[CreateBuildInfo] = Field(default=None, description="Build information for the sandbox", alias="buildInfo")
50
51
  additional_properties: Dict[str, Any] = {}
51
- __properties: ClassVar[List[str]] = ["snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "class", "target", "cpu", "gpu", "memory", "disk", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "volumes", "buildInfo"]
52
+ __properties: ClassVar[List[str]] = ["name", "snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "class", "target", "cpu", "gpu", "memory", "disk", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "volumes", "buildInfo"]
52
53
 
53
54
  @field_validator('var_class')
54
55
  def var_class_validate_enum(cls, value):
@@ -128,6 +129,7 @@ class CreateSandbox(BaseModel):
128
129
  return cls.model_validate(obj)
129
130
 
130
131
  _obj = cls.model_validate({
132
+ "name": obj.get("name"),
131
133
  "snapshot": obj.get("snapshot"),
132
134
  "user": obj.get("user"),
133
135
  "env": obj.get("env"),
@@ -27,11 +27,12 @@ class PortPreviewUrl(BaseModel):
27
27
  """
28
28
  PortPreviewUrl
29
29
  """ # noqa: E501
30
+ sandbox_id: StrictStr = Field(description="ID of the sandbox", alias="sandboxId")
30
31
  url: StrictStr = Field(description="Preview url")
31
32
  token: StrictStr = Field(description="Access token")
32
33
  legacy_proxy_url: Optional[StrictStr] = Field(default=None, description="Legacy preview url using runner domain", alias="legacyProxyUrl")
33
34
  additional_properties: Dict[str, Any] = {}
34
- __properties: ClassVar[List[str]] = ["url", "token", "legacyProxyUrl"]
35
+ __properties: ClassVar[List[str]] = ["sandboxId", "url", "token", "legacyProxyUrl"]
35
36
 
36
37
  model_config = ConfigDict(
37
38
  populate_by_name=True,
@@ -91,6 +92,7 @@ class PortPreviewUrl(BaseModel):
91
92
  return cls.model_validate(obj)
92
93
 
93
94
  _obj = cls.model_validate({
95
+ "sandboxId": obj.get("sandboxId"),
94
96
  "url": obj.get("url"),
95
97
  "token": obj.get("token"),
96
98
  "legacyProxyUrl": obj.get("legacyProxyUrl")
@@ -33,6 +33,7 @@ class Sandbox(BaseModel):
33
33
  """ # noqa: E501
34
34
  id: StrictStr = Field(description="The ID of the sandbox")
35
35
  organization_id: StrictStr = Field(description="The organization ID of the sandbox", alias="organizationId")
36
+ name: StrictStr = Field(description="The name of the sandbox")
36
37
  snapshot: Optional[StrictStr] = Field(default=None, description="The snapshot used for the sandbox")
37
38
  user: StrictStr = Field(description="The user associated with the project")
38
39
  env: Dict[str, StrictStr] = Field(description="Environment variables for the sandbox")
@@ -61,7 +62,7 @@ class Sandbox(BaseModel):
61
62
  var_class: Optional[StrictStr] = Field(default=None, description="The class of the sandbox", alias="class")
62
63
  daemon_version: Optional[StrictStr] = Field(default=None, description="The version of the daemon running in the sandbox", alias="daemonVersion")
63
64
  additional_properties: Dict[str, Any] = {}
64
- __properties: ClassVar[List[str]] = ["id", "organizationId", "snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "target", "cpu", "gpu", "memory", "disk", "state", "desiredState", "errorReason", "backupState", "backupCreatedAt", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "runnerDomain", "volumes", "buildInfo", "createdAt", "updatedAt", "class", "daemonVersion"]
65
+ __properties: ClassVar[List[str]] = ["id", "organizationId", "name", "snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "target", "cpu", "gpu", "memory", "disk", "state", "desiredState", "errorReason", "backupState", "backupCreatedAt", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "runnerDomain", "volumes", "buildInfo", "createdAt", "updatedAt", "class", "daemonVersion"]
65
66
 
66
67
  @field_validator('backup_state')
67
68
  def backup_state_validate_enum(cls, value):
@@ -153,6 +154,7 @@ class Sandbox(BaseModel):
153
154
  _obj = cls.model_validate({
154
155
  "id": obj.get("id"),
155
156
  "organizationId": obj.get("organizationId"),
157
+ "name": obj.get("name"),
156
158
  "snapshot": obj.get("snapshot"),
157
159
  "user": obj.get("user"),
158
160
  "env": obj.get("env"),
@@ -34,6 +34,7 @@ class Workspace(BaseModel):
34
34
  """ # noqa: E501
35
35
  id: StrictStr = Field(description="The ID of the sandbox")
36
36
  organization_id: StrictStr = Field(description="The organization ID of the sandbox", alias="organizationId")
37
+ name: StrictStr = Field(description="The name of the sandbox")
37
38
  snapshot: Optional[StrictStr] = Field(default=None, description="The snapshot used for the sandbox")
38
39
  user: StrictStr = Field(description="The user associated with the project")
39
40
  env: Dict[str, StrictStr] = Field(description="Environment variables for the sandbox")
@@ -61,13 +62,12 @@ class Workspace(BaseModel):
61
62
  updated_at: Optional[StrictStr] = Field(default=None, description="The last update timestamp of the sandbox", alias="updatedAt")
62
63
  var_class: Optional[StrictStr] = Field(default=None, description="The class of the sandbox", alias="class")
63
64
  daemon_version: Optional[StrictStr] = Field(default=None, description="The version of the daemon running in the sandbox", alias="daemonVersion")
64
- name: StrictStr = Field(description="The name of the workspace")
65
65
  image: Optional[StrictStr] = Field(default=None, description="The image used for the workspace")
66
66
  snapshot_state: Optional[StrictStr] = Field(default=None, description="The state of the snapshot", alias="snapshotState")
67
67
  snapshot_created_at: Optional[StrictStr] = Field(default=None, description="The creation timestamp of the last snapshot", alias="snapshotCreatedAt")
68
68
  info: Optional[SandboxInfo] = Field(default=None, description="Additional information about the sandbox")
69
69
  additional_properties: Dict[str, Any] = {}
70
- __properties: ClassVar[List[str]] = ["id", "organizationId", "snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "target", "cpu", "gpu", "memory", "disk", "state", "desiredState", "errorReason", "backupState", "backupCreatedAt", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "runnerDomain", "volumes", "buildInfo", "createdAt", "updatedAt", "class", "daemonVersion", "name", "image", "snapshotState", "snapshotCreatedAt", "info"]
70
+ __properties: ClassVar[List[str]] = ["id", "organizationId", "name", "snapshot", "user", "env", "labels", "public", "networkBlockAll", "networkAllowList", "target", "cpu", "gpu", "memory", "disk", "state", "desiredState", "errorReason", "backupState", "backupCreatedAt", "autoStopInterval", "autoArchiveInterval", "autoDeleteInterval", "runnerDomain", "volumes", "buildInfo", "createdAt", "updatedAt", "class", "daemonVersion", "image", "snapshotState", "snapshotCreatedAt", "info"]
71
71
 
72
72
  @field_validator('backup_state')
73
73
  def backup_state_validate_enum(cls, value):
@@ -172,6 +172,7 @@ class Workspace(BaseModel):
172
172
  _obj = cls.model_validate({
173
173
  "id": obj.get("id"),
174
174
  "organizationId": obj.get("organizationId"),
175
+ "name": obj.get("name"),
175
176
  "snapshot": obj.get("snapshot"),
176
177
  "user": obj.get("user"),
177
178
  "env": obj.get("env"),
@@ -199,7 +200,6 @@ class Workspace(BaseModel):
199
200
  "updatedAt": obj.get("updatedAt"),
200
201
  "class": obj.get("class"),
201
202
  "daemonVersion": obj.get("daemonVersion"),
202
- "name": obj.get("name") if obj.get("name") is not None else '',
203
203
  "image": obj.get("image"),
204
204
  "snapshotState": obj.get("snapshotState"),
205
205
  "snapshotCreatedAt": obj.get("snapshotCreatedAt"),
@@ -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, 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 WorkspacePortPreviewUrl(BaseModel):
27
+ """
28
+ WorkspacePortPreviewUrl
29
+ """ # noqa: E501
30
+ url: StrictStr = Field(description="Preview url")
31
+ token: StrictStr = Field(description="Access token")
32
+ legacy_proxy_url: Optional[StrictStr] = Field(default=None, description="Legacy preview url using runner domain", alias="legacyProxyUrl")
33
+ additional_properties: Dict[str, Any] = {}
34
+ __properties: ClassVar[List[str]] = ["url", "token", "legacyProxyUrl"]
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 WorkspacePortPreviewUrl 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 WorkspacePortPreviewUrl 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
+ "url": obj.get("url"),
95
+ "token": obj.get("token"),
96
+ "legacyProxyUrl": obj.get("legacyProxyUrl")
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
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client_async
3
- Version: 0.108.1
3
+ Version: 0.109.0a1
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=elmBh771LoRbs1044uj2aO_yT8i5Qfux-f5vkgUB1Ug,13312
1
+ daytona_api_client_async/__init__.py,sha256=RzfrHOHYgUDmnUDQ6my1kL-QXfvcE_UbiZAYmM-S4Pc,13407
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,14 +16,14 @@ daytona_api_client_async/api/object_storage_api.py,sha256=QoK9uj0nHB-2TWnbDNIj0d
16
16
  daytona_api_client_async/api/organizations_api.py,sha256=y3BoFTUBFzrEKZNT7XGveCwPD4S9CI6Y9zZlx7fJyGQ,277689
17
17
  daytona_api_client_async/api/preview_api.py,sha256=tflnMN3QXSTx-tI1GZf70VY714MQTx1DX2edNFbemb8,31216
18
18
  daytona_api_client_async/api/runners_api.py,sha256=DjL55SHmiIG1CkNrhiNGiiW9tBMrkLo1DiqAmNhpDoI,49294
19
- daytona_api_client_async/api/sandbox_api.py,sha256=QeCMYSEyC8IHc_0E7XKhVmNeDgUjaZ8VXu8mMjk6czI,275439
19
+ daytona_api_client_async/api/sandbox_api.py,sha256=Dlv-X0aLcvOEhzPpa4h5ZtaeJ4porejZ5ROeX9hRofA,280807
20
20
  daytona_api_client_async/api/snapshots_api.py,sha256=VM9BdkKs9EnarrWZFH3zyT2lF9-sXLJWGepeUb_oPXE,106203
21
21
  daytona_api_client_async/api/toolbox_api.py,sha256=fOCSs_qjpBeBBqR91-bS_xYMfbsBPwEE8hi4yZN9Z2Y,818704
22
22
  daytona_api_client_async/api/users_api.py,sha256=5vpJFiutNo-ygzejbkOz3iPMT4mLjNyvBZdNWTaQSFw,86876
23
23
  daytona_api_client_async/api/volumes_api.py,sha256=Hhmny-51SBZhvm3Vztaud1ImEY3p14c3VdjeZN8SP7M,56883
24
24
  daytona_api_client_async/api/webhooks_api.py,sha256=JTMBBtbcPLpy1OsUX9aELWu67iA8HR-UsLRGSPCKav4,69846
25
- daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
26
- daytona_api_client_async/models/__init__.py,sha256=AsDZZdJdXZ4a4gTLTL2NcFwkF0AwhWe8Lm8UcEyKR4E,11611
25
+ daytona_api_client_async/api/workspace_api.py,sha256=YD89RTZgw2KqgS21qxSA3xBaxe29Pr8OslpT-SVW6pw,170106
26
+ daytona_api_client_async/models/__init__.py,sha256=MpgxzJcvIPNt_QwGS2CRplezSG5ZbYpZGTG-b0blp6Y,11706
27
27
  daytona_api_client_async/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
28
28
  daytona_api_client_async/models/announcement.py,sha256=zO3Wa5yUYP2BDJ_3Weemiob_eMNXUZ1B_np-lQSLSgM,3283
29
29
  daytona_api_client_async/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
@@ -49,7 +49,7 @@ daytona_api_client_async/models/create_organization_invitation.py,sha256=U5uLVrI
49
49
  daytona_api_client_async/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
50
50
  daytona_api_client_async/models/create_organization_role.py,sha256=vQai9U9x82hVCfRCotP1UKtaDz3yehtHxOqVEIhG_Ds,4069
51
51
  daytona_api_client_async/models/create_runner.py,sha256=1dGs6EB7BhoGrMwMQPFMfZMwbGyHj08hTINLJlhb1ok,4429
52
- daytona_api_client_async/models/create_sandbox.py,sha256=bZnN9zmtlR9XpQyn2jtvpojvsoL-aBmjoGKnlFCZ2O4,7583
52
+ daytona_api_client_async/models/create_sandbox.py,sha256=SXKvXjfO-qwYfnT10BXsMPuAbJU1N4EetEjvo5Tot3U,7777
53
53
  daytona_api_client_async/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
54
54
  daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0MDARjzHp3fSfRmeAtgVXc,4774
55
55
  daytona_api_client_async/models/create_user.py,sha256=Amtw3BopSp20zD9QlpZnQHunhSO_yCyKaq3bYBGxJvc,4396
@@ -113,7 +113,7 @@ daytona_api_client_async/models/paginated_sandboxes.py,sha256=jrUkXENPWoczwyZOiL
113
113
  daytona_api_client_async/models/paginated_snapshots.py,sha256=UzRopvfhULBx0UxudciaVcK697OMOm5aDIwlTXKQoVI,3853
114
114
  daytona_api_client_async/models/paginated_snapshots_dto.py,sha256=hg5tAos3X3gg0fF5TWqElq3iw7crm5Yb7KqlST_sXi0,3865
115
115
  daytona_api_client_async/models/paginated_workspaces.py,sha256=ECLRafugmQ3p1ZkvFs9_kTcmSdUlj7-1unJQpQZfQqI,3848
116
- daytona_api_client_async/models/port_preview_url.py,sha256=QnOqJ0-wu7Zy_WiPRG-FeBRTaTZQTUvJrqlSsULQ8rU,3390
116
+ daytona_api_client_async/models/port_preview_url.py,sha256=8g3D1bSUfrczpDST0ykV3W0-Sc6L8GN4n9NgbR-Zqcg,3536
117
117
  daytona_api_client_async/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
118
118
  daytona_api_client_async/models/posthog_config.py,sha256=G_bxf3xbxeikp1jbtJbfFCsjHl8CI61DyTc-VSjOmP4,3192
119
119
  daytona_api_client_async/models/process_errors_response.py,sha256=VOT39yX9nhISVfqW4v690bxW0u7wYebUu1cWH8S9uwg,3336
@@ -136,7 +136,7 @@ daytona_api_client_async/models/runner.py,sha256=kZehQBmOj7uc3f5zdjjmTfC3N9VYbM8
136
136
  daytona_api_client_async/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
137
137
  daytona_api_client_async/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
138
138
  daytona_api_client_async/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
139
- daytona_api_client_async/models/sandbox.py,sha256=xTOSMqimyPDvUSvd0C7NJ2Sev7p5t6hrPdzD645IeGY,9939
139
+ daytona_api_client_async/models/sandbox.py,sha256=YcxAG-UHCzhiG7NNgBvQcVVPJcQ0gEouJiy7UKUgL6M,10051
140
140
  daytona_api_client_async/models/sandbox_class.py,sha256=Suwn9F4jLgtEdLtCWV86PpCtcfZ653h4bMYrmzrwBBc,731
141
141
  daytona_api_client_async/models/sandbox_created_post_request.py,sha256=JqlrmmLBOvoEfwMdkTwPkxzHtvN75dBdhL4na8B5_dA,3667
142
142
  daytona_api_client_async/models/sandbox_created_post_request_data.py,sha256=Z0YpC0MPxUIhghxqY3dXSG-HSCXStiY4QK3l29SXts0,5931
@@ -193,9 +193,10 @@ daytona_api_client_async/models/webhook_initialization_status.py,sha256=zmw2g68m
193
193
  daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
194
194
  daytona_api_client_async/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
195
195
  daytona_api_client_async/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
196
- daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
197
- daytona_api_client_async-0.108.1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
198
- daytona_api_client_async-0.108.1.dist-info/METADATA,sha256=k_ruD8eUHRaQBBkEFjJW-dIJXfsHHXNkmBKNTBUwDMQ,691
199
- daytona_api_client_async-0.108.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
200
- daytona_api_client_async-0.108.1.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
201
- daytona_api_client_async-0.108.1.dist-info/RECORD,,
196
+ daytona_api_client_async/models/workspace.py,sha256=ufPg0dGuxpD-r8xsk1xE6TWe_EHc2KKirZKstnSul68,11477
197
+ daytona_api_client_async/models/workspace_port_preview_url.py,sha256=4PwSkVyEBwmi40NJXJCUJT63b5g5-wpD54ezDZ0QwKM,3426
198
+ daytona_api_client_async-0.109.0a1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
199
+ daytona_api_client_async-0.109.0a1.dist-info/METADATA,sha256=lPBrrKzpOUA0CW2fLbQIAy4yGgKS3h04CpnyvAaoWRk,693
200
+ daytona_api_client_async-0.109.0a1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
201
+ daytona_api_client_async-0.109.0a1.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
202
+ daytona_api_client_async-0.109.0a1.dist-info/RECORD,,