daytona_api_client_async 0.108.0rc1__py3-none-any.whl → 0.108.1rc1__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.

@@ -17,11 +17,11 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
17
17
  from typing import Any, Dict, List, Optional, Tuple, Union
18
18
  from typing_extensions import Annotated
19
19
 
20
- from pydantic import Field, StrictBool, StrictFloat, StrictInt, StrictStr
20
+ from pydantic import Field, StrictBool, StrictStr, field_validator
21
21
  from typing import Optional, Union
22
22
  from typing_extensions import Annotated
23
23
  from daytona_api_client_async.models.create_snapshot import CreateSnapshot
24
- from daytona_api_client_async.models.paginated_snapshots_dto import PaginatedSnapshotsDto
24
+ from daytona_api_client_async.models.paginated_snapshots import PaginatedSnapshots
25
25
  from daytona_api_client_async.models.set_snapshot_general_status_dto import SetSnapshotGeneralStatusDto
26
26
  from daytona_api_client_async.models.snapshot_dto import SnapshotDto
27
27
 
@@ -1160,8 +1160,11 @@ class SnapshotsApi:
1160
1160
  async def get_all_snapshots(
1161
1161
  self,
1162
1162
  x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
1163
- limit: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Number of items per page")] = None,
1164
- page: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Page number")] = None,
1163
+ page: Annotated[Optional[Union[Annotated[float, Field(strict=True, ge=1)], Annotated[int, Field(strict=True, ge=1)]]], Field(description="Page number of the results")] = None,
1164
+ limit: Annotated[Optional[Union[Annotated[float, Field(le=200, strict=True, ge=1)], Annotated[int, Field(le=200, strict=True, ge=1)]]], Field(description="Number of results per page")] = None,
1165
+ name: Annotated[Optional[StrictStr], Field(description="Filter by partial name match")] = None,
1166
+ sort: Annotated[Optional[StrictStr], Field(description="Field to sort by")] = None,
1167
+ order: Annotated[Optional[StrictStr], Field(description="Direction to sort by")] = None,
1165
1168
  _request_timeout: Union[
1166
1169
  None,
1167
1170
  Annotated[StrictFloat, Field(gt=0)],
@@ -1174,16 +1177,22 @@ class SnapshotsApi:
1174
1177
  _content_type: Optional[StrictStr] = None,
1175
1178
  _headers: Optional[Dict[StrictStr, Any]] = None,
1176
1179
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1177
- ) -> PaginatedSnapshotsDto:
1180
+ ) -> PaginatedSnapshots:
1178
1181
  """List all snapshots
1179
1182
 
1180
1183
 
1181
1184
  :param x_daytona_organization_id: Use with JWT to specify the organization ID
1182
1185
  :type x_daytona_organization_id: str
1183
- :param limit: Number of items per page
1184
- :type limit: float
1185
- :param page: Page number
1186
+ :param page: Page number of the results
1186
1187
  :type page: float
1188
+ :param limit: Number of results per page
1189
+ :type limit: float
1190
+ :param name: Filter by partial name match
1191
+ :type name: str
1192
+ :param sort: Field to sort by
1193
+ :type sort: str
1194
+ :param order: Direction to sort by
1195
+ :type order: str
1187
1196
  :param _request_timeout: timeout setting for this request. If one
1188
1197
  number provided, it will be total request
1189
1198
  timeout. It can also be a pair (tuple) of
@@ -1208,8 +1217,11 @@ class SnapshotsApi:
1208
1217
 
1209
1218
  _param = self._get_all_snapshots_serialize(
1210
1219
  x_daytona_organization_id=x_daytona_organization_id,
1211
- limit=limit,
1212
1220
  page=page,
1221
+ limit=limit,
1222
+ name=name,
1223
+ sort=sort,
1224
+ order=order,
1213
1225
  _request_auth=_request_auth,
1214
1226
  _content_type=_content_type,
1215
1227
  _headers=_headers,
@@ -1217,7 +1229,7 @@ class SnapshotsApi:
1217
1229
  )
1218
1230
 
1219
1231
  _response_types_map: Dict[str, Optional[str]] = {
1220
- '200': "PaginatedSnapshotsDto",
1232
+ '200': "PaginatedSnapshots",
1221
1233
  }
1222
1234
  response_data = await self.api_client.call_api(
1223
1235
  *_param,
@@ -1234,8 +1246,11 @@ class SnapshotsApi:
1234
1246
  async def get_all_snapshots_with_http_info(
1235
1247
  self,
1236
1248
  x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
1237
- limit: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Number of items per page")] = None,
1238
- page: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Page number")] = None,
1249
+ page: Annotated[Optional[Union[Annotated[float, Field(strict=True, ge=1)], Annotated[int, Field(strict=True, ge=1)]]], Field(description="Page number of the results")] = None,
1250
+ limit: Annotated[Optional[Union[Annotated[float, Field(le=200, strict=True, ge=1)], Annotated[int, Field(le=200, strict=True, ge=1)]]], Field(description="Number of results per page")] = None,
1251
+ name: Annotated[Optional[StrictStr], Field(description="Filter by partial name match")] = None,
1252
+ sort: Annotated[Optional[StrictStr], Field(description="Field to sort by")] = None,
1253
+ order: Annotated[Optional[StrictStr], Field(description="Direction to sort by")] = None,
1239
1254
  _request_timeout: Union[
1240
1255
  None,
1241
1256
  Annotated[StrictFloat, Field(gt=0)],
@@ -1248,16 +1263,22 @@ class SnapshotsApi:
1248
1263
  _content_type: Optional[StrictStr] = None,
1249
1264
  _headers: Optional[Dict[StrictStr, Any]] = None,
1250
1265
  _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
1251
- ) -> ApiResponse[PaginatedSnapshotsDto]:
1266
+ ) -> ApiResponse[PaginatedSnapshots]:
1252
1267
  """List all snapshots
1253
1268
 
1254
1269
 
1255
1270
  :param x_daytona_organization_id: Use with JWT to specify the organization ID
1256
1271
  :type x_daytona_organization_id: str
1257
- :param limit: Number of items per page
1258
- :type limit: float
1259
- :param page: Page number
1272
+ :param page: Page number of the results
1260
1273
  :type page: float
1274
+ :param limit: Number of results per page
1275
+ :type limit: float
1276
+ :param name: Filter by partial name match
1277
+ :type name: str
1278
+ :param sort: Field to sort by
1279
+ :type sort: str
1280
+ :param order: Direction to sort by
1281
+ :type order: str
1261
1282
  :param _request_timeout: timeout setting for this request. If one
1262
1283
  number provided, it will be total request
1263
1284
  timeout. It can also be a pair (tuple) of
@@ -1282,8 +1303,11 @@ class SnapshotsApi:
1282
1303
 
1283
1304
  _param = self._get_all_snapshots_serialize(
1284
1305
  x_daytona_organization_id=x_daytona_organization_id,
1285
- limit=limit,
1286
1306
  page=page,
1307
+ limit=limit,
1308
+ name=name,
1309
+ sort=sort,
1310
+ order=order,
1287
1311
  _request_auth=_request_auth,
1288
1312
  _content_type=_content_type,
1289
1313
  _headers=_headers,
@@ -1291,7 +1315,7 @@ class SnapshotsApi:
1291
1315
  )
1292
1316
 
1293
1317
  _response_types_map: Dict[str, Optional[str]] = {
1294
- '200': "PaginatedSnapshotsDto",
1318
+ '200': "PaginatedSnapshots",
1295
1319
  }
1296
1320
  response_data = await self.api_client.call_api(
1297
1321
  *_param,
@@ -1308,8 +1332,11 @@ class SnapshotsApi:
1308
1332
  async def get_all_snapshots_without_preload_content(
1309
1333
  self,
1310
1334
  x_daytona_organization_id: Annotated[Optional[StrictStr], Field(description="Use with JWT to specify the organization ID")] = None,
1311
- limit: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Number of items per page")] = None,
1312
- page: Annotated[Optional[Union[StrictFloat, StrictInt]], Field(description="Page number")] = None,
1335
+ page: Annotated[Optional[Union[Annotated[float, Field(strict=True, ge=1)], Annotated[int, Field(strict=True, ge=1)]]], Field(description="Page number of the results")] = None,
1336
+ limit: Annotated[Optional[Union[Annotated[float, Field(le=200, strict=True, ge=1)], Annotated[int, Field(le=200, strict=True, ge=1)]]], Field(description="Number of results per page")] = None,
1337
+ name: Annotated[Optional[StrictStr], Field(description="Filter by partial name match")] = None,
1338
+ sort: Annotated[Optional[StrictStr], Field(description="Field to sort by")] = None,
1339
+ order: Annotated[Optional[StrictStr], Field(description="Direction to sort by")] = None,
1313
1340
  _request_timeout: Union[
1314
1341
  None,
1315
1342
  Annotated[StrictFloat, Field(gt=0)],
@@ -1328,10 +1355,16 @@ class SnapshotsApi:
1328
1355
 
1329
1356
  :param x_daytona_organization_id: Use with JWT to specify the organization ID
1330
1357
  :type x_daytona_organization_id: str
1331
- :param limit: Number of items per page
1332
- :type limit: float
1333
- :param page: Page number
1358
+ :param page: Page number of the results
1334
1359
  :type page: float
1360
+ :param limit: Number of results per page
1361
+ :type limit: float
1362
+ :param name: Filter by partial name match
1363
+ :type name: str
1364
+ :param sort: Field to sort by
1365
+ :type sort: str
1366
+ :param order: Direction to sort by
1367
+ :type order: str
1335
1368
  :param _request_timeout: timeout setting for this request. If one
1336
1369
  number provided, it will be total request
1337
1370
  timeout. It can also be a pair (tuple) of
@@ -1356,8 +1389,11 @@ class SnapshotsApi:
1356
1389
 
1357
1390
  _param = self._get_all_snapshots_serialize(
1358
1391
  x_daytona_organization_id=x_daytona_organization_id,
1359
- limit=limit,
1360
1392
  page=page,
1393
+ limit=limit,
1394
+ name=name,
1395
+ sort=sort,
1396
+ order=order,
1361
1397
  _request_auth=_request_auth,
1362
1398
  _content_type=_content_type,
1363
1399
  _headers=_headers,
@@ -1365,7 +1401,7 @@ class SnapshotsApi:
1365
1401
  )
1366
1402
 
1367
1403
  _response_types_map: Dict[str, Optional[str]] = {
1368
- '200': "PaginatedSnapshotsDto",
1404
+ '200': "PaginatedSnapshots",
1369
1405
  }
1370
1406
  response_data = await self.api_client.call_api(
1371
1407
  *_param,
@@ -1377,8 +1413,11 @@ class SnapshotsApi:
1377
1413
  def _get_all_snapshots_serialize(
1378
1414
  self,
1379
1415
  x_daytona_organization_id,
1380
- limit,
1381
1416
  page,
1417
+ limit,
1418
+ name,
1419
+ sort,
1420
+ order,
1382
1421
  _request_auth,
1383
1422
  _content_type,
1384
1423
  _headers,
@@ -1401,13 +1440,25 @@ class SnapshotsApi:
1401
1440
 
1402
1441
  # process the path parameters
1403
1442
  # process the query parameters
1443
+ if page is not None:
1444
+
1445
+ _query_params.append(('page', page))
1446
+
1404
1447
  if limit is not None:
1405
1448
 
1406
1449
  _query_params.append(('limit', limit))
1407
1450
 
1408
- if page is not None:
1451
+ if name is not None:
1409
1452
 
1410
- _query_params.append(('page', page))
1453
+ _query_params.append(('name', name))
1454
+
1455
+ if sort is not None:
1456
+
1457
+ _query_params.append(('sort', sort))
1458
+
1459
+ if order is not None:
1460
+
1461
+ _query_params.append(('order', order))
1411
1462
 
1412
1463
  # process the header parameters
1413
1464
  if x_daytona_organization_id is not None:
@@ -94,7 +94,8 @@ from daytona_api_client_async.models.organization_suspension import Organization
94
94
  from daytona_api_client_async.models.organization_usage_overview import OrganizationUsageOverview
95
95
  from daytona_api_client_async.models.organization_user import OrganizationUser
96
96
  from daytona_api_client_async.models.paginated_audit_logs import PaginatedAuditLogs
97
- from daytona_api_client_async.models.paginated_snapshots_dto import PaginatedSnapshotsDto
97
+ from daytona_api_client_async.models.paginated_sandboxes import PaginatedSandboxes
98
+ from daytona_api_client_async.models.paginated_snapshots import PaginatedSnapshots
98
99
  from daytona_api_client_async.models.port_preview_url import PortPreviewUrl
99
100
  from daytona_api_client_async.models.position import Position
100
101
  from daytona_api_client_async.models.posthog_config import PosthogConfig
@@ -109,6 +110,7 @@ from daytona_api_client_async.models.pty_list_response import PtyListResponse
109
110
  from daytona_api_client_async.models.pty_resize_request import PtyResizeRequest
110
111
  from daytona_api_client_async.models.pty_session_info import PtySessionInfo
111
112
  from daytona_api_client_async.models.range import Range
113
+ from daytona_api_client_async.models.region import Region
112
114
  from daytona_api_client_async.models.region_screenshot_response import RegionScreenshotResponse
113
115
  from daytona_api_client_async.models.registry_push_access_dto import RegistryPushAccessDto
114
116
  from daytona_api_client_async.models.replace_request import ReplaceRequest
@@ -37,7 +37,6 @@ class DaytonaConfiguration(BaseModel):
37
37
  announcements: Dict[str, Announcement] = Field(description="System announcements")
38
38
  pylon_app_id: Optional[StrictStr] = Field(default=None, description="Pylon application ID", alias="pylonAppId")
39
39
  proxy_template_url: StrictStr = Field(description="Proxy template URL", alias="proxyTemplateUrl")
40
- proxy_toolbox_url: StrictStr = Field(description="Toolbox template URL", alias="proxyToolboxUrl")
41
40
  default_snapshot: StrictStr = Field(description="Default snapshot for sandboxes", alias="defaultSnapshot")
42
41
  dashboard_url: StrictStr = Field(description="Dashboard URL", alias="dashboardUrl")
43
42
  max_auto_archive_interval: Union[StrictFloat, StrictInt] = Field(description="Maximum auto-archive interval in minutes", alias="maxAutoArchiveInterval")
@@ -47,7 +46,7 @@ class DaytonaConfiguration(BaseModel):
47
46
  ssh_gateway_command: Optional[StrictStr] = Field(default=None, description="SSH Gateway command", alias="sshGatewayCommand")
48
47
  ssh_gateway_public_key: Optional[StrictStr] = Field(default=None, description="Base64 encoded SSH Gateway public key", alias="sshGatewayPublicKey")
49
48
  additional_properties: Dict[str, Any] = {}
50
- __properties: ClassVar[List[str]] = ["version", "posthog", "oidc", "linkedAccountsEnabled", "announcements", "pylonAppId", "proxyTemplateUrl", "proxyToolboxUrl", "defaultSnapshot", "dashboardUrl", "maxAutoArchiveInterval", "maintananceMode", "environment", "billingApiUrl", "sshGatewayCommand", "sshGatewayPublicKey"]
49
+ __properties: ClassVar[List[str]] = ["version", "posthog", "oidc", "linkedAccountsEnabled", "announcements", "pylonAppId", "proxyTemplateUrl", "defaultSnapshot", "dashboardUrl", "maxAutoArchiveInterval", "maintananceMode", "environment", "billingApiUrl", "sshGatewayCommand", "sshGatewayPublicKey"]
51
50
 
52
51
  model_config = ConfigDict(
53
52
  populate_by_name=True,
@@ -132,7 +131,6 @@ class DaytonaConfiguration(BaseModel):
132
131
  else None,
133
132
  "pylonAppId": obj.get("pylonAppId"),
134
133
  "proxyTemplateUrl": obj.get("proxyTemplateUrl"),
135
- "proxyToolboxUrl": obj.get("proxyToolboxUrl"),
136
134
  "defaultSnapshot": obj.get("defaultSnapshot"),
137
135
  "dashboardUrl": obj.get("dashboardUrl"),
138
136
  "maxAutoArchiveInterval": obj.get("maxAutoArchiveInterval"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client_async
3
- Version: 0.108.0rc1
3
+ Version: 0.108.1rc1
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=08AlOXofnxUUjx_pqkyU-f4TscB6p3mjxw5gnWDhbYM,13178
1
+ daytona_api_client_async/__init__.py,sha256=elmBh771LoRbs1044uj2aO_yT8i5Qfux-f5vkgUB1Ug,13312
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
@@ -7,23 +7,23 @@ daytona_api_client_async/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
7
7
  daytona_api_client_async/rest.py,sha256=AqeTEhjdo8wt1a1ngzVVRrzKiDhOkalF6LUM6z6RNqw,7255
8
8
  daytona_api_client_async/api/__init__.py,sha256=NlsGN-RyaavGmraSACiaOH2X8DX3cm0EtAPBPnKbocI,1111
9
9
  daytona_api_client_async/api/api_keys_api.py,sha256=heGX1DXmDSACSAOsgUAWaIohoCUG8QrNE-ImXCdLq2k,65902
10
- daytona_api_client_async/api/audit_api.py,sha256=U0tkNK3qcXG6hx_V51UNdTf0xRoZy3Qwn7Kbmg0MEnU,34388
10
+ daytona_api_client_async/api/audit_api.py,sha256=p6hQChUTJN5_0y9dXzCJ2XRfiHjITUGeeWnL-RIcflk,35084
11
11
  daytona_api_client_async/api/config_api.py,sha256=ava4ZsQfy3dMl6Oa7y-ualS5uIiRXNTfDCb8hgxrlf8,10350
12
12
  daytona_api_client_async/api/default_api.py,sha256=YpjsubeCZFBTknw8d94xZ4Otfy7FeE_Uj7SG9V2WdSw,74558
13
13
  daytona_api_client_async/api/docker_registry_api.py,sha256=AOX05uUPF7PNilvYJrhxse45JO3i1QXvXow3yXIYZGo,79216
14
14
  daytona_api_client_async/api/health_api.py,sha256=9VKj52XnQ20iu0rbuLlSBiUVIK_Odu5gsAH_juVXC8I,10605
15
- daytona_api_client_async/api/object_storage_api.py,sha256=gPhd3kPth8L26BV6C9QL3-VXax9W0S20_lZgEpoz02U,11677
15
+ daytona_api_client_async/api/object_storage_api.py,sha256=QoK9uj0nHB-2TWnbDNIj0dqNHk36tj13WR2z9ZCqOh8,11700
16
16
  daytona_api_client_async/api/organizations_api.py,sha256=y3BoFTUBFzrEKZNT7XGveCwPD4S9CI6Y9zZlx7fJyGQ,277689
17
- daytona_api_client_async/api/preview_api.py,sha256=PtBAUvWu8647b9jS3OQR3UC9h3FnD2cqCUJaEDTG6bs,31470
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=SQbk3ykEkGE2IfwqXRh4eSRTDo5pMwfG3vY_W0oP3nM,236723
20
- daytona_api_client_async/api/snapshots_api.py,sha256=8e6q5AKAhheGbJoMriLG_7-LmAuJoA_xafZtWh2nKPQ,103648
19
+ daytona_api_client_async/api/sandbox_api.py,sha256=QeCMYSEyC8IHc_0E7XKhVmNeDgUjaZ8VXu8mMjk6czI,275439
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
25
  daytona_api_client_async/api/workspace_api.py,sha256=krpDz2ro-e1QuQ8Bi4cnckymIEIlPJePBM6ieksguq8,170042
26
- daytona_api_client_async/models/__init__.py,sha256=eBv3VOq7RKT4rt3TRyVRSBjqcH22F1Snk4wV5Dht9sA,11477
26
+ daytona_api_client_async/models/__init__.py,sha256=AsDZZdJdXZ4a4gTLTL2NcFwkF0AwhWe8Lm8UcEyKR4E,11611
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
@@ -55,7 +55,7 @@ daytona_api_client_async/models/create_snapshot.py,sha256=wBhM3BVLDM_zUIcnln0tU0
55
55
  daytona_api_client_async/models/create_user.py,sha256=Amtw3BopSp20zD9QlpZnQHunhSO_yCyKaq3bYBGxJvc,4396
56
56
  daytona_api_client_async/models/create_volume.py,sha256=ClRnZzdkEWMIGlGbOix4pbhki7IcKPqF94OiL0Dygj4,3012
57
57
  daytona_api_client_async/models/create_workspace.py,sha256=e7uJNdwV9SRW0Jxew2A4PuB9VVQ0FlP5votvv9cUiRE,7094
58
- daytona_api_client_async/models/daytona_configuration.py,sha256=zUUvbai5kkwhv9xCvMiK2hBH_8d-Q3We7mb5ykDdpDM,7184
58
+ daytona_api_client_async/models/daytona_configuration.py,sha256=tpDzAxWcl7N4RBbS20ITJiIXXpkA2ysT5UtY1ulu_Mw,7004
59
59
  daytona_api_client_async/models/display_info_response.py,sha256=ScbtgcWdnqxoVf1UtqolCsDR908Be4VFTyEBaXT_bvc,3142
60
60
  daytona_api_client_async/models/docker_registry.py,sha256=vsV50KVZMVRHrm5O6ZkKvmbLlX0Lo_XVIzL3lyrRNOY,4326
61
61
  daytona_api_client_async/models/download_files.py,sha256=kOoubSJieTxqPoRECwDGtMpYZyDdXoMNybJWZ6Rek7Q,3094
@@ -194,8 +194,8 @@ daytona_api_client_async/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2Mj
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
196
  daytona_api_client_async/models/workspace.py,sha256=OaLAKPDmeJ0mRoisZg62smbc4GBBTYUZkLqQbIaCHZY,11518
197
- daytona_api_client_async-0.108.0rc1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
198
- daytona_api_client_async-0.108.0rc1.dist-info/METADATA,sha256=MgL2A4U3j-8BHJ7HczalKv2idzWaS6U0M9CyoSK6kmE,694
199
- daytona_api_client_async-0.108.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
200
- daytona_api_client_async-0.108.0rc1.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
201
- daytona_api_client_async-0.108.0rc1.dist-info/RECORD,,
197
+ daytona_api_client_async-0.108.1rc1.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
198
+ daytona_api_client_async-0.108.1rc1.dist-info/METADATA,sha256=tvIrm5LryT2ajJJHBwdtB6-LFaR2wHhoC6GiNgRpD6M,694
199
+ daytona_api_client_async-0.108.1rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
200
+ daytona_api_client_async-0.108.1rc1.dist-info/top_level.txt,sha256=PdOUDLVBJmZNDB8ak8FMMwmlyfRqUhQQ9SUDgNnbdZo,25
201
+ daytona_api_client_async-0.108.1rc1.dist-info/RECORD,,