daytona_api_client 0.109.0__py3-none-any.whl → 0.109.0a2__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.

@@ -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.models.create_workspace import CreateWorkspace
24
- from daytona_api_client.models.port_preview_url import PortPreviewUrl
25
24
  from daytona_api_client.models.sandbox_labels import SandboxLabels
26
25
  from daytona_api_client.models.workspace import Workspace
26
+ from daytona_api_client.models.workspace_port_preview_url import WorkspacePortPreviewUrl
27
27
 
28
28
  from daytona_api_client.api_client import ApiClient, RequestSerialized
29
29
  from daytona_api_client.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 = 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 = 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 = self.api_client.call_api(
1672
1672
  *_param,
@@ -154,3 +154,4 @@ from daytona_api_client.models.webhook_initialization_status import WebhookIniti
154
154
  from daytona_api_client.models.windows_response import WindowsResponse
155
155
  from daytona_api_client.models.work_dir_response import WorkDirResponse
156
156
  from daytona_api_client.models.workspace import Workspace
157
+ from daytona_api_client.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"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client
3
- Version: 0.109.0
3
+ Version: 0.109.0a2
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=QP6K97ePl_YiDqNRtTRUyX6KXA3C1d_k9QAUao8lFis,12328
1
+ daytona_api_client/__init__.py,sha256=5W91nrQVKIRlO-_k2_BuhQJmUwblsc5l8e-D8RO4lbU,12417
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
@@ -16,14 +16,14 @@ daytona_api_client/api/object_storage_api.py,sha256=aliX_Jj8omBsm-H82lf10L4jnPvF
16
16
  daytona_api_client/api/organizations_api.py,sha256=ve8cb9Oa6fAeKgcysbl4MVZ6I6_0pI51vYs_3g9Yn4g,276339
17
17
  daytona_api_client/api/preview_api.py,sha256=_cYR0xaBKtYBFUKIRezvR0d6swN7yKkmVkJ5yBLk_ro,31054
18
18
  daytona_api_client/api/runners_api.py,sha256=kl74Mg19G71Kcj9dNK9xeJCaZ2upk4z-DS7Ul70n-Ww,49018
19
- daytona_api_client/api/sandbox_api.py,sha256=W4jTpigzpTiIxueFjQmxVYFGvnJDOuplg41LZ5GpWgY,274311
19
+ daytona_api_client/api/sandbox_api.py,sha256=gh_KWdglZKLf-JboKbVb5clnwVoVVcoPapOW-exLTfk,279679
20
20
  daytona_api_client/api/snapshots_api.py,sha256=I95ano5XaE6EOMX40lIuhC1JTBtHO-ktwye4JwD6nd0,105729
21
21
  daytona_api_client/api/toolbox_api.py,sha256=Vf1ADiXdmlQ2O76ZnJlfj3BXNRvlL8I7SzvkKV1Mbkg,815056
22
22
  daytona_api_client/api/users_api.py,sha256=KR4cw2mfRp06QV2b0UXXQ1Jcx59TyuS0c7yGRr2Sodk,86402
23
23
  daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
24
24
  daytona_api_client/api/webhooks_api.py,sha256=epxKIYqZfebDapzSvqUVlJct1KfVr_T3ZnAc9YyiZX8,69516
25
- daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
26
- daytona_api_client/models/__init__.py,sha256=YofZp7W09y-gUoRe2J7uAV00bcgBu0a8j5Hld9mFMyg,10777
25
+ daytona_api_client/api/workspace_api.py,sha256=3zBOCWxNrOqktkdRw655uGVqbl3CfT7dWdov3D86Fpg,169392
26
+ daytona_api_client/models/__init__.py,sha256=sa4hM8FEWhGqGKGigjiD4R7cqT2nbqiD1ZFaPTVKYF8,10866
27
27
  daytona_api_client/models/account_provider.py,sha256=yKJ_dMGnxGalNYuVTmo4CoFHpj1PIssSE1rnUaQeOKY,3154
28
28
  daytona_api_client/models/announcement.py,sha256=zO3Wa5yUYP2BDJ_3Weemiob_eMNXUZ1B_np-lQSLSgM,3283
29
29
  daytona_api_client/models/api_key_list.py,sha256=Q0NYG_KlqZgscz7WpkhTns6z1hYUaZH8yut8X40mQ1A,5166
@@ -48,7 +48,7 @@ daytona_api_client/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfV
48
48
  daytona_api_client/models/create_organization_quota.py,sha256=HERVvV6pRerMtV05dPTwEec82HcSJ_tKFpEcYfLlLrQ,4716
49
49
  daytona_api_client/models/create_organization_role.py,sha256=vQai9U9x82hVCfRCotP1UKtaDz3yehtHxOqVEIhG_Ds,4069
50
50
  daytona_api_client/models/create_runner.py,sha256=1dGs6EB7BhoGrMwMQPFMfZMwbGyHj08hTINLJlhb1ok,4429
51
- daytona_api_client/models/create_sandbox.py,sha256=Fpw-r_W4Navki333EBbSjqK2YRrjvWgiwnzV-WhyUzo,7571
51
+ daytona_api_client/models/create_sandbox.py,sha256=Vb3-lwJs_gWUC7UbiQ7j2y9rhGdU87UjIZeDCTd64Mc,7765
52
52
  daytona_api_client/models/create_session_request.py,sha256=8Zv23ZXzrW6v2GmygwTUz5bTugAikCT-T8eHwwYRLxc,3136
53
53
  daytona_api_client/models/create_snapshot.py,sha256=WGea9750qOcwwAjSjFRYFhlA3H0m5SUotrGgJm3z6Is,4768
54
54
  daytona_api_client/models/create_user.py,sha256=__5zKvbJCtB44mALgvZBPlYghxlcdPUjLCDiIITKJiM,4390
@@ -111,7 +111,7 @@ daytona_api_client/models/paginated_audit_logs.py,sha256=CThN80Prqq93G6w6GqFxAA6
111
111
  daytona_api_client/models/paginated_sandboxes.py,sha256=W4c3DkdTecRNGwA_JcsRUyTliuzOc3tq85IoDpCLw4w,3830
112
112
  daytona_api_client/models/paginated_snapshots.py,sha256=JR1uNBGE_GhCWSROnpL1BRxQt4FaOOb56yDfYLUh5O0,3847
113
113
  daytona_api_client/models/paginated_snapshots_dto.py,sha256=v0b9U3XZUjQ2AVJE0Vv-2Do9rCuy2aN4ZwU8s_L8fUw,3859
114
- daytona_api_client/models/port_preview_url.py,sha256=QnOqJ0-wu7Zy_WiPRG-FeBRTaTZQTUvJrqlSsULQ8rU,3390
114
+ daytona_api_client/models/port_preview_url.py,sha256=8g3D1bSUfrczpDST0ykV3W0-Sc6L8GN4n9NgbR-Zqcg,3536
115
115
  daytona_api_client/models/position.py,sha256=cdJuHMmQrTCxYhKwFbi7NODF7W4fbIxuu4rjw5pJjF0,3141
116
116
  daytona_api_client/models/posthog_config.py,sha256=G_bxf3xbxeikp1jbtJbfFCsjHl8CI61DyTc-VSjOmP4,3192
117
117
  daytona_api_client/models/process_errors_response.py,sha256=VOT39yX9nhISVfqW4v690bxW0u7wYebUu1cWH8S9uwg,3336
@@ -134,7 +134,7 @@ daytona_api_client/models/runner.py,sha256=LMarXEdCzSJUg7A6OKMiyO7tlDHPdMBLKF5gT
134
134
  daytona_api_client/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
135
135
  daytona_api_client/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
136
136
  daytona_api_client/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
137
- daytona_api_client/models/sandbox.py,sha256=gJu6wT5iPE2Pl5lVrTFUxxCqL-49UpbXdAS-Li13uvQ,9915
137
+ daytona_api_client/models/sandbox.py,sha256=n-xDR9NjVN0n6GeXU8TdEKSwYkMU8SKg2bwGllfbZz0,10027
138
138
  daytona_api_client/models/sandbox_class.py,sha256=Suwn9F4jLgtEdLtCWV86PpCtcfZ653h4bMYrmzrwBBc,731
139
139
  daytona_api_client/models/sandbox_created_post_request.py,sha256=V1WO2DYyN96kvSum-MbokTw70QpwR3bM_03xGmsVb0g,3661
140
140
  daytona_api_client/models/sandbox_created_post_request_data.py,sha256=Z0YpC0MPxUIhghxqY3dXSG-HSCXStiY4QK3l29SXts0,5931
@@ -189,10 +189,10 @@ daytona_api_client/models/webhook_initialization_status.py,sha256=zmw2g68mZfYXND
189
189
  daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
190
190
  daytona_api_client/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
191
191
  daytona_api_client/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
192
- daytona_api_client/models/workspace.py,sha256=uwAStXOLrVJzbxdTfPZokrcMr4Dp4ghgH8V5fy5r0gY,11488
192
+ daytona_api_client/models/workspace.py,sha256=ZevUloA5J3RQtq3IW_6_nCGnSg6O-3yN3U7Z-8g9ca4,11447
193
193
  daytona_api_client/models/workspace_port_preview_url.py,sha256=4PwSkVyEBwmi40NJXJCUJT63b5g5-wpD54ezDZ0QwKM,3426
194
- daytona_api_client-0.109.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
195
- daytona_api_client-0.109.0.dist-info/METADATA,sha256=407KqcrljsnYIZE9lbj_PXsWUycOmjJMovfYwdF3kug,619
196
- daytona_api_client-0.109.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
197
- daytona_api_client-0.109.0.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
198
- daytona_api_client-0.109.0.dist-info/RECORD,,
194
+ daytona_api_client-0.109.0a2.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
195
+ daytona_api_client-0.109.0a2.dist-info/METADATA,sha256=VjB-i_dPgzciUjnRii9K8oamJrbECk794CksPP6wx6c,621
196
+ daytona_api_client-0.109.0a2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
197
+ daytona_api_client-0.109.0a2.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
198
+ daytona_api_client-0.109.0a2.dist-info/RECORD,,