daytona_api_client 0.107.0rc2__py3-none-any.whl → 0.108.0__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.

@@ -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.models.create_snapshot import CreateSnapshot
24
- from daytona_api_client.models.paginated_snapshots_dto import PaginatedSnapshotsDto
24
+ from daytona_api_client.models.paginated_snapshots import PaginatedSnapshots
25
25
  from daytona_api_client.models.set_snapshot_general_status_dto import SetSnapshotGeneralStatusDto
26
26
  from daytona_api_client.models.snapshot_dto import SnapshotDto
27
27
 
@@ -1160,8 +1160,11 @@ class SnapshotsApi:
1160
1160
  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 = self.api_client.call_api(
1223
1235
  *_param,
@@ -1234,8 +1246,11 @@ class SnapshotsApi:
1234
1246
  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 = self.api_client.call_api(
1297
1321
  *_param,
@@ -1308,8 +1332,11 @@ class SnapshotsApi:
1308
1332
  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 = 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.models.organization_suspension import OrganizationSuspen
94
94
  from daytona_api_client.models.organization_usage_overview import OrganizationUsageOverview
95
95
  from daytona_api_client.models.organization_user import OrganizationUser
96
96
  from daytona_api_client.models.paginated_audit_logs import PaginatedAuditLogs
97
- from daytona_api_client.models.paginated_snapshots_dto import PaginatedSnapshotsDto
97
+ from daytona_api_client.models.paginated_sandboxes import PaginatedSandboxes
98
+ from daytona_api_client.models.paginated_snapshots import PaginatedSnapshots
98
99
  from daytona_api_client.models.port_preview_url import PortPreviewUrl
99
100
  from daytona_api_client.models.position import Position
100
101
  from daytona_api_client.models.posthog_config import PosthogConfig
@@ -109,6 +110,7 @@ from daytona_api_client.models.pty_list_response import PtyListResponse
109
110
  from daytona_api_client.models.pty_resize_request import PtyResizeRequest
110
111
  from daytona_api_client.models.pty_session_info import PtySessionInfo
111
112
  from daytona_api_client.models.range import Range
113
+ from daytona_api_client.models.region import Region
112
114
  from daytona_api_client.models.region_screenshot_response import RegionScreenshotResponse
113
115
  from daytona_api_client.models.registry_push_access_dto import RegistryPushAccessDto
114
116
  from daytona_api_client.models.replace_request import ReplaceRequest
@@ -37,11 +37,10 @@ class CreateRunner(BaseModel):
37
37
  gpu: Union[StrictFloat, StrictInt]
38
38
  gpu_type: StrictStr = Field(alias="gpuType")
39
39
  var_class: StrictStr = Field(alias="class")
40
- capacity: Union[StrictFloat, StrictInt]
41
40
  region: StrictStr
42
41
  version: StrictStr
43
42
  additional_properties: Dict[str, Any] = {}
44
- __properties: ClassVar[List[str]] = ["domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memoryGiB", "diskGiB", "gpu", "gpuType", "class", "capacity", "region", "version"]
43
+ __properties: ClassVar[List[str]] = ["domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memoryGiB", "diskGiB", "gpu", "gpuType", "class", "region", "version"]
45
44
 
46
45
  @field_validator('var_class')
47
46
  def var_class_validate_enum(cls, value):
@@ -118,7 +117,6 @@ class CreateRunner(BaseModel):
118
117
  "gpu": obj.get("gpu"),
119
118
  "gpuType": obj.get("gpuType"),
120
119
  "class": obj.get("class"),
121
- "capacity": obj.get("capacity"),
122
120
  "region": obj.get("region"),
123
121
  "version": obj.get("version")
124
122
  })
@@ -40,8 +40,6 @@ class Runner(BaseModel):
40
40
  gpu: Union[StrictFloat, StrictInt] = Field(description="The GPU capacity of the runner")
41
41
  gpu_type: StrictStr = Field(description="The type of GPU", alias="gpuType")
42
42
  var_class: SandboxClass = Field(description="The class of the runner", alias="class")
43
- used: Union[StrictFloat, StrictInt] = Field(description="The current usage of the runner")
44
- capacity: Union[StrictFloat, StrictInt] = Field(description="The capacity of the runner")
45
43
  current_cpu_usage_percentage: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Current CPU usage percentage", alias="currentCpuUsagePercentage")
46
44
  current_memory_usage_percentage: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Current RAM usage percentage", alias="currentMemoryUsagePercentage")
47
45
  current_disk_usage_percentage: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Current disk usage percentage", alias="currentDiskUsagePercentage")
@@ -58,7 +56,7 @@ class Runner(BaseModel):
58
56
  updated_at: StrictStr = Field(description="The last update timestamp of the runner", alias="updatedAt")
59
57
  version: StrictStr = Field(description="The version of the runner")
60
58
  additional_properties: Dict[str, Any] = {}
61
- __properties: ClassVar[List[str]] = ["id", "domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memory", "disk", "gpu", "gpuType", "class", "used", "capacity", "currentCpuUsagePercentage", "currentMemoryUsagePercentage", "currentDiskUsagePercentage", "currentAllocatedCpu", "currentAllocatedMemoryGiB", "currentAllocatedDiskGiB", "currentSnapshotCount", "availabilityScore", "region", "state", "lastChecked", "unschedulable", "createdAt", "updatedAt", "version"]
59
+ __properties: ClassVar[List[str]] = ["id", "domain", "apiUrl", "proxyUrl", "apiKey", "cpu", "memory", "disk", "gpu", "gpuType", "class", "currentCpuUsagePercentage", "currentMemoryUsagePercentage", "currentDiskUsagePercentage", "currentAllocatedCpu", "currentAllocatedMemoryGiB", "currentAllocatedDiskGiB", "currentSnapshotCount", "availabilityScore", "region", "state", "lastChecked", "unschedulable", "createdAt", "updatedAt", "version"]
62
60
 
63
61
  model_config = ConfigDict(
64
62
  populate_by_name=True,
@@ -129,8 +127,6 @@ class Runner(BaseModel):
129
127
  "gpu": obj.get("gpu"),
130
128
  "gpuType": obj.get("gpuType"),
131
129
  "class": obj.get("class"),
132
- "used": obj.get("used"),
133
- "capacity": obj.get("capacity"),
134
130
  "currentCpuUsagePercentage": obj.get("currentCpuUsagePercentage"),
135
131
  "currentMemoryUsagePercentage": obj.get("currentMemoryUsagePercentage"),
136
132
  "currentDiskUsagePercentage": obj.get("currentDiskUsagePercentage"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: daytona_api_client
3
- Version: 0.107.0rc2
3
+ Version: 0.108.0
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=HQg-IpZy6bVngT6veqjfugCjKN6NzP1Nd7yOq6KmeZI,12206
1
+ daytona_api_client/__init__.py,sha256=QP6K97ePl_YiDqNRtTRUyX6KXA3C1d_k9QAUao8lFis,12328
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
@@ -7,7 +7,7 @@ daytona_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  daytona_api_client/rest.py,sha256=H40AJj0ztQ4zkYCrH7-rJXFZ59kQUFm79CHO7UA5bgQ,9425
8
8
  daytona_api_client/api/__init__.py,sha256=3fWn1epDo94muacOWWdUt1Keqy5k2uhrS87I-CYYqEg,1015
9
9
  daytona_api_client/api/api_keys_api.py,sha256=ukjLCI7795BzYYiSBtq1oeWPyDaHY-G4_xCDFbHcxv0,65578
10
- daytona_api_client/api/audit_api.py,sha256=5vx-1YZfKZmOmOhRHBtz4JGtRbiNDAKq4wpjHIe3iNw,34208
10
+ daytona_api_client/api/audit_api.py,sha256=5kEams6y6fkxpXxVgHMIuDuO2hmnnuh6TCVsA8O7crc,34904
11
11
  daytona_api_client/api/config_api.py,sha256=yI2MFFZrMThchVBYQGrGrsmaOLHs7cksnHbt7CcwZvk,10278
12
12
  daytona_api_client/api/default_api.py,sha256=4-VA8V8k3HRRMrs94ANAwkyDKVAZWmNlm2g1X87WOrA,74162
13
13
  daytona_api_client/api/docker_registry_api.py,sha256=ids7YUbqX4s2uwv7ROhqFqNzHzdYa7nK9wOPQ5rgB8U,78838
@@ -16,14 +16,14 @@ daytona_api_client/api/object_storage_api.py,sha256=wvOdTUjvlChxzwwzA-49iwjl46F0
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=UyDKUTSMD779cU2zRM2Le2O7iLTFR0xpBCAe5OpoRN8,235703
20
- daytona_api_client/api/snapshots_api.py,sha256=rt0h_XOyGay-JEaqw69-JqiJEq0GbG1U-MKJtg3Ez0c,103174
19
+ daytona_api_client/api/sandbox_api.py,sha256=W4jTpigzpTiIxueFjQmxVYFGvnJDOuplg41LZ5GpWgY,274311
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
25
  daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
26
- daytona_api_client/models/__init__.py,sha256=IglTNPKDlUkCJl1l9aROMO_MRrIdaNWyE1Xy9EQ8fEo,10655
26
+ daytona_api_client/models/__init__.py,sha256=YofZp7W09y-gUoRe2J7uAV00bcgBu0a8j5Hld9mFMyg,10777
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
@@ -47,7 +47,7 @@ daytona_api_client/models/create_organization.py,sha256=0sDPZBYWzMT5pc0edRwPRnDZ
47
47
  daytona_api_client/models/create_organization_invitation.py,sha256=U5uLVrI3b5kfVqffuwzuqaAsZ-Ml-1xGM5RndmIz-Gk,4016
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
- daytona_api_client/models/create_runner.py,sha256=vbNmuFuefPIdhatTu6qALi8GUT0AyP6quf-ZhL1jzdc,4530
50
+ daytona_api_client/models/create_runner.py,sha256=1dGs6EB7BhoGrMwMQPFMfZMwbGyHj08hTINLJlhb1ok,4429
51
51
  daytona_api_client/models/create_sandbox.py,sha256=Fpw-r_W4Navki333EBbSjqK2YRrjvWgiwnzV-WhyUzo,7571
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
@@ -131,7 +131,7 @@ daytona_api_client/models/region_screenshot_response.py,sha256=SCWHyJSAwC26cCxSK
131
131
  daytona_api_client/models/registry_push_access_dto.py,sha256=gTWfFynNH4DTuenBBp6C6CZDABa7lAVtUrP9qYHe4Rs,3862
132
132
  daytona_api_client/models/replace_request.py,sha256=6y6osWGrtr3flOYYW5LK0PCw6dV2QthRlKlwFWoCTWs,3222
133
133
  daytona_api_client/models/replace_result.py,sha256=yqqFWHo2NgsOqTPR-xcOxBPEIVkkSh8Rjzs1rtdoEek,3236
134
- daytona_api_client/models/runner.py,sha256=1IfxPT2n-jmHW3yrtO1gHYmofyX9Lktvn6uP0QXQU_8,8124
134
+ daytona_api_client/models/runner.py,sha256=LMarXEdCzSJUg7A6OKMiyO7tlDHPdMBLKF5gTOTyQUE,7833
135
135
  daytona_api_client/models/runner_region.py,sha256=Lkxx3kYTx8m4w3ntEiaOafMrUknhtNMfk00oD92kXZE,716
136
136
  daytona_api_client/models/runner_snapshot_dto.py,sha256=ZBv1j3_4huI-z4GWbCqxOOT85OSyNYX3FHVAHQU6rbo,3447
137
137
  daytona_api_client/models/runner_state.py,sha256=_cGjUiDdFZtUQjPc76YKgawOdxV1BDq0ehyKqWFMjD4,819
@@ -193,8 +193,8 @@ daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcE
193
193
  daytona_api_client/models/work_dir_response.py,sha256=1dndjWYnDSMDeLiY8pxQDX1viESoAGF_fegSiMx3i40,3047
194
194
  daytona_api_client/models/workdir_response.py,sha256=geBhfQDR7LK0uPlmJF6Ple1eQMCzhSb4qK-9UfhqV7k,3047
195
195
  daytona_api_client/models/workspace.py,sha256=uwAStXOLrVJzbxdTfPZokrcMr4Dp4ghgH8V5fy5r0gY,11488
196
- daytona_api_client-0.107.0rc2.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
197
- daytona_api_client-0.107.0rc2.dist-info/METADATA,sha256=IIAy2kaXlG7IQ3rZpL4e3doEGdm2x4K5TZunLt7jBOg,622
198
- daytona_api_client-0.107.0rc2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
199
- daytona_api_client-0.107.0rc2.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
200
- daytona_api_client-0.107.0rc2.dist-info/RECORD,,
196
+ daytona_api_client-0.108.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
197
+ daytona_api_client-0.108.0.dist-info/METADATA,sha256=EwzPPLI9Pa6BOVh1Bdw6GdnCzyf5RpUX1NoalmdWFHs,619
198
+ daytona_api_client-0.108.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
199
+ daytona_api_client-0.108.0.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
200
+ daytona_api_client-0.108.0.dist-info/RECORD,,