daytona_api_client 0.24.4__py3-none-any.whl → 0.25.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.
- daytona_api_client/api/runners_api.py +26 -26
- daytona_api_client/api/users_api.py +244 -0
- {daytona_api_client-0.24.4.dist-info → daytona_api_client-0.25.0.dist-info}/METADATA +1 -1
- {daytona_api_client-0.24.4.dist-info → daytona_api_client-0.25.0.dist-info}/RECORD +7 -7
- {daytona_api_client-0.24.4.dist-info → daytona_api_client-0.25.0.dist-info}/WHEEL +0 -0
- {daytona_api_client-0.24.4.dist-info → daytona_api_client-0.25.0.dist-info}/licenses/LICENSE +0 -0
- {daytona_api_client-0.24.4.dist-info → daytona_api_client-0.25.0.dist-info}/top_level.txt +0 -0
|
@@ -567,9 +567,9 @@ class RunnersApi:
|
|
|
567
567
|
|
|
568
568
|
|
|
569
569
|
@validate_call
|
|
570
|
-
def
|
|
570
|
+
def get_runners_by_snapshot_ref(
|
|
571
571
|
self,
|
|
572
|
-
|
|
572
|
+
ref: Annotated[StrictStr, Field(description="Snapshot ref")],
|
|
573
573
|
_request_timeout: Union[
|
|
574
574
|
None,
|
|
575
575
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -583,11 +583,11 @@ class RunnersApi:
|
|
|
583
583
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
584
584
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
585
585
|
) -> List[RunnerSnapshotDto]:
|
|
586
|
-
"""Get runners by snapshot
|
|
586
|
+
"""Get runners by snapshot ref
|
|
587
587
|
|
|
588
588
|
|
|
589
|
-
:param
|
|
590
|
-
:type
|
|
589
|
+
:param ref: Snapshot ref (required)
|
|
590
|
+
:type ref: str
|
|
591
591
|
:param _request_timeout: timeout setting for this request. If one
|
|
592
592
|
number provided, it will be total request
|
|
593
593
|
timeout. It can also be a pair (tuple) of
|
|
@@ -610,8 +610,8 @@ class RunnersApi:
|
|
|
610
610
|
:return: Returns the result object.
|
|
611
611
|
""" # noqa: E501
|
|
612
612
|
|
|
613
|
-
_param = self.
|
|
614
|
-
|
|
613
|
+
_param = self._get_runners_by_snapshot_ref_serialize(
|
|
614
|
+
ref=ref,
|
|
615
615
|
_request_auth=_request_auth,
|
|
616
616
|
_content_type=_content_type,
|
|
617
617
|
_headers=_headers,
|
|
@@ -633,9 +633,9 @@ class RunnersApi:
|
|
|
633
633
|
|
|
634
634
|
|
|
635
635
|
@validate_call
|
|
636
|
-
def
|
|
636
|
+
def get_runners_by_snapshot_ref_with_http_info(
|
|
637
637
|
self,
|
|
638
|
-
|
|
638
|
+
ref: Annotated[StrictStr, Field(description="Snapshot ref")],
|
|
639
639
|
_request_timeout: Union[
|
|
640
640
|
None,
|
|
641
641
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -649,11 +649,11 @@ class RunnersApi:
|
|
|
649
649
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
650
650
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
651
651
|
) -> ApiResponse[List[RunnerSnapshotDto]]:
|
|
652
|
-
"""Get runners by snapshot
|
|
652
|
+
"""Get runners by snapshot ref
|
|
653
653
|
|
|
654
654
|
|
|
655
|
-
:param
|
|
656
|
-
:type
|
|
655
|
+
:param ref: Snapshot ref (required)
|
|
656
|
+
:type ref: str
|
|
657
657
|
:param _request_timeout: timeout setting for this request. If one
|
|
658
658
|
number provided, it will be total request
|
|
659
659
|
timeout. It can also be a pair (tuple) of
|
|
@@ -676,8 +676,8 @@ class RunnersApi:
|
|
|
676
676
|
:return: Returns the result object.
|
|
677
677
|
""" # noqa: E501
|
|
678
678
|
|
|
679
|
-
_param = self.
|
|
680
|
-
|
|
679
|
+
_param = self._get_runners_by_snapshot_ref_serialize(
|
|
680
|
+
ref=ref,
|
|
681
681
|
_request_auth=_request_auth,
|
|
682
682
|
_content_type=_content_type,
|
|
683
683
|
_headers=_headers,
|
|
@@ -699,9 +699,9 @@ class RunnersApi:
|
|
|
699
699
|
|
|
700
700
|
|
|
701
701
|
@validate_call
|
|
702
|
-
def
|
|
702
|
+
def get_runners_by_snapshot_ref_without_preload_content(
|
|
703
703
|
self,
|
|
704
|
-
|
|
704
|
+
ref: Annotated[StrictStr, Field(description="Snapshot ref")],
|
|
705
705
|
_request_timeout: Union[
|
|
706
706
|
None,
|
|
707
707
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -715,11 +715,11 @@ class RunnersApi:
|
|
|
715
715
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
716
716
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
717
717
|
) -> RESTResponseType:
|
|
718
|
-
"""Get runners by snapshot
|
|
718
|
+
"""Get runners by snapshot ref
|
|
719
719
|
|
|
720
720
|
|
|
721
|
-
:param
|
|
722
|
-
:type
|
|
721
|
+
:param ref: Snapshot ref (required)
|
|
722
|
+
:type ref: str
|
|
723
723
|
:param _request_timeout: timeout setting for this request. If one
|
|
724
724
|
number provided, it will be total request
|
|
725
725
|
timeout. It can also be a pair (tuple) of
|
|
@@ -742,8 +742,8 @@ class RunnersApi:
|
|
|
742
742
|
:return: Returns the result object.
|
|
743
743
|
""" # noqa: E501
|
|
744
744
|
|
|
745
|
-
_param = self.
|
|
746
|
-
|
|
745
|
+
_param = self._get_runners_by_snapshot_ref_serialize(
|
|
746
|
+
ref=ref,
|
|
747
747
|
_request_auth=_request_auth,
|
|
748
748
|
_content_type=_content_type,
|
|
749
749
|
_headers=_headers,
|
|
@@ -760,9 +760,9 @@ class RunnersApi:
|
|
|
760
760
|
return response_data.response
|
|
761
761
|
|
|
762
762
|
|
|
763
|
-
def
|
|
763
|
+
def _get_runners_by_snapshot_ref_serialize(
|
|
764
764
|
self,
|
|
765
|
-
|
|
765
|
+
ref,
|
|
766
766
|
_request_auth,
|
|
767
767
|
_content_type,
|
|
768
768
|
_headers,
|
|
@@ -785,9 +785,9 @@ class RunnersApi:
|
|
|
785
785
|
|
|
786
786
|
# process the path parameters
|
|
787
787
|
# process the query parameters
|
|
788
|
-
if
|
|
788
|
+
if ref is not None:
|
|
789
789
|
|
|
790
|
-
_query_params.append(('
|
|
790
|
+
_query_params.append(('ref', ref))
|
|
791
791
|
|
|
792
792
|
# process the header parameters
|
|
793
793
|
# process the form parameters
|
|
@@ -811,7 +811,7 @@ class RunnersApi:
|
|
|
811
811
|
|
|
812
812
|
return self.api_client.param_serialize(
|
|
813
813
|
method='GET',
|
|
814
|
-
resource_path='/runners/by-snapshot',
|
|
814
|
+
resource_path='/runners/by-snapshot-ref',
|
|
815
815
|
path_params=_path_params,
|
|
816
816
|
query_params=_query_params,
|
|
817
817
|
header_params=_header_params,
|
|
@@ -307,6 +307,250 @@ class UsersApi:
|
|
|
307
307
|
|
|
308
308
|
|
|
309
309
|
|
|
310
|
+
@validate_call
|
|
311
|
+
def enroll_in_sms_mfa(
|
|
312
|
+
self,
|
|
313
|
+
_request_timeout: Union[
|
|
314
|
+
None,
|
|
315
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
316
|
+
Tuple[
|
|
317
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
318
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
319
|
+
]
|
|
320
|
+
] = None,
|
|
321
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
322
|
+
_content_type: Optional[StrictStr] = None,
|
|
323
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
324
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
325
|
+
) -> str:
|
|
326
|
+
"""Enroll in SMS MFA
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
330
|
+
number provided, it will be total request
|
|
331
|
+
timeout. It can also be a pair (tuple) of
|
|
332
|
+
(connection, read) timeouts.
|
|
333
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
334
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
335
|
+
request; this effectively ignores the
|
|
336
|
+
authentication in the spec for a single request.
|
|
337
|
+
:type _request_auth: dict, optional
|
|
338
|
+
:param _content_type: force content-type for the request.
|
|
339
|
+
:type _content_type: str, Optional
|
|
340
|
+
:param _headers: set to override the headers for a single
|
|
341
|
+
request; this effectively ignores the headers
|
|
342
|
+
in the spec for a single request.
|
|
343
|
+
:type _headers: dict, optional
|
|
344
|
+
:param _host_index: set to override the host_index for a single
|
|
345
|
+
request; this effectively ignores the host_index
|
|
346
|
+
in the spec for a single request.
|
|
347
|
+
:type _host_index: int, optional
|
|
348
|
+
:return: Returns the result object.
|
|
349
|
+
""" # noqa: E501
|
|
350
|
+
|
|
351
|
+
_param = self._enroll_in_sms_mfa_serialize(
|
|
352
|
+
_request_auth=_request_auth,
|
|
353
|
+
_content_type=_content_type,
|
|
354
|
+
_headers=_headers,
|
|
355
|
+
_host_index=_host_index
|
|
356
|
+
)
|
|
357
|
+
|
|
358
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
359
|
+
'200': "str",
|
|
360
|
+
}
|
|
361
|
+
response_data = self.api_client.call_api(
|
|
362
|
+
*_param,
|
|
363
|
+
_request_timeout=_request_timeout
|
|
364
|
+
)
|
|
365
|
+
response_data.read()
|
|
366
|
+
return self.api_client.response_deserialize(
|
|
367
|
+
response_data=response_data,
|
|
368
|
+
response_types_map=_response_types_map,
|
|
369
|
+
).data
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
@validate_call
|
|
373
|
+
def enroll_in_sms_mfa_with_http_info(
|
|
374
|
+
self,
|
|
375
|
+
_request_timeout: Union[
|
|
376
|
+
None,
|
|
377
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
378
|
+
Tuple[
|
|
379
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
380
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
381
|
+
]
|
|
382
|
+
] = None,
|
|
383
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
384
|
+
_content_type: Optional[StrictStr] = None,
|
|
385
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
386
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
387
|
+
) -> ApiResponse[str]:
|
|
388
|
+
"""Enroll in SMS MFA
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
392
|
+
number provided, it will be total request
|
|
393
|
+
timeout. It can also be a pair (tuple) of
|
|
394
|
+
(connection, read) timeouts.
|
|
395
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
396
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
397
|
+
request; this effectively ignores the
|
|
398
|
+
authentication in the spec for a single request.
|
|
399
|
+
:type _request_auth: dict, optional
|
|
400
|
+
:param _content_type: force content-type for the request.
|
|
401
|
+
:type _content_type: str, Optional
|
|
402
|
+
:param _headers: set to override the headers for a single
|
|
403
|
+
request; this effectively ignores the headers
|
|
404
|
+
in the spec for a single request.
|
|
405
|
+
:type _headers: dict, optional
|
|
406
|
+
:param _host_index: set to override the host_index for a single
|
|
407
|
+
request; this effectively ignores the host_index
|
|
408
|
+
in the spec for a single request.
|
|
409
|
+
:type _host_index: int, optional
|
|
410
|
+
:return: Returns the result object.
|
|
411
|
+
""" # noqa: E501
|
|
412
|
+
|
|
413
|
+
_param = self._enroll_in_sms_mfa_serialize(
|
|
414
|
+
_request_auth=_request_auth,
|
|
415
|
+
_content_type=_content_type,
|
|
416
|
+
_headers=_headers,
|
|
417
|
+
_host_index=_host_index
|
|
418
|
+
)
|
|
419
|
+
|
|
420
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
421
|
+
'200': "str",
|
|
422
|
+
}
|
|
423
|
+
response_data = self.api_client.call_api(
|
|
424
|
+
*_param,
|
|
425
|
+
_request_timeout=_request_timeout
|
|
426
|
+
)
|
|
427
|
+
response_data.read()
|
|
428
|
+
return self.api_client.response_deserialize(
|
|
429
|
+
response_data=response_data,
|
|
430
|
+
response_types_map=_response_types_map,
|
|
431
|
+
)
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
@validate_call
|
|
435
|
+
def enroll_in_sms_mfa_without_preload_content(
|
|
436
|
+
self,
|
|
437
|
+
_request_timeout: Union[
|
|
438
|
+
None,
|
|
439
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
440
|
+
Tuple[
|
|
441
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
442
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
443
|
+
]
|
|
444
|
+
] = None,
|
|
445
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
446
|
+
_content_type: Optional[StrictStr] = None,
|
|
447
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
448
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
449
|
+
) -> RESTResponseType:
|
|
450
|
+
"""Enroll in SMS MFA
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
454
|
+
number provided, it will be total request
|
|
455
|
+
timeout. It can also be a pair (tuple) of
|
|
456
|
+
(connection, read) timeouts.
|
|
457
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
458
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
459
|
+
request; this effectively ignores the
|
|
460
|
+
authentication in the spec for a single request.
|
|
461
|
+
:type _request_auth: dict, optional
|
|
462
|
+
:param _content_type: force content-type for the request.
|
|
463
|
+
:type _content_type: str, Optional
|
|
464
|
+
:param _headers: set to override the headers for a single
|
|
465
|
+
request; this effectively ignores the headers
|
|
466
|
+
in the spec for a single request.
|
|
467
|
+
:type _headers: dict, optional
|
|
468
|
+
:param _host_index: set to override the host_index for a single
|
|
469
|
+
request; this effectively ignores the host_index
|
|
470
|
+
in the spec for a single request.
|
|
471
|
+
:type _host_index: int, optional
|
|
472
|
+
:return: Returns the result object.
|
|
473
|
+
""" # noqa: E501
|
|
474
|
+
|
|
475
|
+
_param = self._enroll_in_sms_mfa_serialize(
|
|
476
|
+
_request_auth=_request_auth,
|
|
477
|
+
_content_type=_content_type,
|
|
478
|
+
_headers=_headers,
|
|
479
|
+
_host_index=_host_index
|
|
480
|
+
)
|
|
481
|
+
|
|
482
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
483
|
+
'200': "str",
|
|
484
|
+
}
|
|
485
|
+
response_data = self.api_client.call_api(
|
|
486
|
+
*_param,
|
|
487
|
+
_request_timeout=_request_timeout
|
|
488
|
+
)
|
|
489
|
+
return response_data.response
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
def _enroll_in_sms_mfa_serialize(
|
|
493
|
+
self,
|
|
494
|
+
_request_auth,
|
|
495
|
+
_content_type,
|
|
496
|
+
_headers,
|
|
497
|
+
_host_index,
|
|
498
|
+
) -> RequestSerialized:
|
|
499
|
+
|
|
500
|
+
_host = None
|
|
501
|
+
|
|
502
|
+
_collection_formats: Dict[str, str] = {
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
_path_params: Dict[str, str] = {}
|
|
506
|
+
_query_params: List[Tuple[str, str]] = []
|
|
507
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
508
|
+
_form_params: List[Tuple[str, str]] = []
|
|
509
|
+
_files: Dict[
|
|
510
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
511
|
+
] = {}
|
|
512
|
+
_body_params: Optional[bytes] = None
|
|
513
|
+
|
|
514
|
+
# process the path parameters
|
|
515
|
+
# process the query parameters
|
|
516
|
+
# process the header parameters
|
|
517
|
+
# process the form parameters
|
|
518
|
+
# process the body parameter
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
# set the HTTP header `Accept`
|
|
522
|
+
if 'Accept' not in _header_params:
|
|
523
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
524
|
+
[
|
|
525
|
+
'application/json'
|
|
526
|
+
]
|
|
527
|
+
)
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
# authentication setting
|
|
531
|
+
_auth_settings: List[str] = [
|
|
532
|
+
'bearer',
|
|
533
|
+
'oauth2'
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
return self.api_client.param_serialize(
|
|
537
|
+
method='POST',
|
|
538
|
+
resource_path='/users/mfa/sms/enroll',
|
|
539
|
+
path_params=_path_params,
|
|
540
|
+
query_params=_query_params,
|
|
541
|
+
header_params=_header_params,
|
|
542
|
+
body=_body_params,
|
|
543
|
+
post_params=_form_params,
|
|
544
|
+
files=_files,
|
|
545
|
+
auth_settings=_auth_settings,
|
|
546
|
+
collection_formats=_collection_formats,
|
|
547
|
+
_host=_host,
|
|
548
|
+
_request_auth=_request_auth
|
|
549
|
+
)
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
|
|
310
554
|
@validate_call
|
|
311
555
|
def get_authenticated_user(
|
|
312
556
|
self,
|
|
@@ -12,11 +12,11 @@ daytona_api_client/api/docker_registry_api.py,sha256=ids7YUbqX4s2uwv7ROhqFqNzHzd
|
|
|
12
12
|
daytona_api_client/api/object_storage_api.py,sha256=wvOdTUjvlChxzwwzA-49iwjl46F0uFt06Axfcb_BX4Q,11605
|
|
13
13
|
daytona_api_client/api/organizations_api.py,sha256=v54UhVnCbP_UJWayO5b5yC_y-LIjvlB3g2xVllTOQIg,266572
|
|
14
14
|
daytona_api_client/api/preview_api.py,sha256=_cYR0xaBKtYBFUKIRezvR0d6swN7yKkmVkJ5yBLk_ro,31054
|
|
15
|
-
daytona_api_client/api/runners_api.py,sha256=
|
|
15
|
+
daytona_api_client/api/runners_api.py,sha256=kl74Mg19G71Kcj9dNK9xeJCaZ2upk4z-DS7Ul70n-Ww,49018
|
|
16
16
|
daytona_api_client/api/sandbox_api.py,sha256=HIcVHneL_fcHF867FMb5kou9zXDKhZvTWKlowr59Zb4,175269
|
|
17
17
|
daytona_api_client/api/snapshots_api.py,sha256=uUfjAnmzkxWplBcOhhCCjRfWL4MXdITOoGzgoTUmScU,104580
|
|
18
18
|
daytona_api_client/api/toolbox_api.py,sha256=izj9K1CqTATLepFrFqrgJ0rAZ3TlBXYlcuXkZij1EPQ,720094
|
|
19
|
-
daytona_api_client/api/users_api.py,sha256=
|
|
19
|
+
daytona_api_client/api/users_api.py,sha256=KR4cw2mfRp06QV2b0UXXQ1Jcx59TyuS0c7yGRr2Sodk,86402
|
|
20
20
|
daytona_api_client/api/volumes_api.py,sha256=N9kxZzhfaZxC_YQ-Vi1QksoTIzqp_dFADywgQup1oSk,56613
|
|
21
21
|
daytona_api_client/api/workspace_api.py,sha256=mjn4jlTtMbKfuqxcr9goo-01RJX-hFjVLT1rF8K5uKI,169328
|
|
22
22
|
daytona_api_client/models/__init__.py,sha256=LQiNH45dMLgCyA8ThwSCAO1YK-hs4FUS9mv5avhiXhY,8848
|
|
@@ -150,8 +150,8 @@ daytona_api_client/models/volume_dto.py,sha256=NL6A6xpc9liR_zlVZKGCoHLlz6r4LAHrM
|
|
|
150
150
|
daytona_api_client/models/volume_state.py,sha256=AaOsyPygY58fquvIkrwFndsXMrG0dCYcGKd8HRZhulg,848
|
|
151
151
|
daytona_api_client/models/windows_response.py,sha256=1fW2GYVSjFbipfQupU2MjfhUlcEyawzwtnWnwGngsFs,3295
|
|
152
152
|
daytona_api_client/models/workspace.py,sha256=9ORG3s149qLI_7RSAAPf7j6WR1AZAgpkS37BFWQJ1Qk,11017
|
|
153
|
-
daytona_api_client-0.
|
|
154
|
-
daytona_api_client-0.
|
|
155
|
-
daytona_api_client-0.
|
|
156
|
-
daytona_api_client-0.
|
|
157
|
-
daytona_api_client-0.
|
|
153
|
+
daytona_api_client-0.25.0.dist-info/licenses/LICENSE,sha256=Qrw_9vreBpJ9mUMcB5B7ALDecZHgRciuOqS0BPfpihc,10752
|
|
154
|
+
daytona_api_client-0.25.0.dist-info/METADATA,sha256=nB5wcTAzl3vTV5kon1Ub1h28gUeJM2StJ7YXxGIpbU0,618
|
|
155
|
+
daytona_api_client-0.25.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
156
|
+
daytona_api_client-0.25.0.dist-info/top_level.txt,sha256=sDZKAfxKnAQYvOLS9vAOx88EYH3wV5Wx897pODDupuE,19
|
|
157
|
+
daytona_api_client-0.25.0.dist-info/RECORD,,
|
|
File without changes
|
{daytona_api_client-0.24.4.dist-info → daytona_api_client-0.25.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|