wandelbots_api_client 26.6.0.dev51__py3-none-any.whl → 26.6.0.dev52__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.
@@ -13,7 +13,7 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
- __version__ = "26.6.0.dev51"
16
+ __version__ = "26.6.0.dev52"
17
17
 
18
18
  from . import api
19
19
  from . import api_client
@@ -29,6 +29,7 @@ from wandelbots_api_client.v2.models.cloud_config_status import CloudConfigStatu
29
29
  from wandelbots_api_client.v2.models.cloud_connection_request import CloudConnectionRequest
30
30
  from wandelbots_api_client.v2.models.cloud_disconnection_status_disconnected import CloudDisconnectionStatusDisconnected
31
31
  from wandelbots_api_client.v2.models.cloud_registration_success_response import CloudRegistrationSuccessResponse
32
+ from wandelbots_api_client.v2.models.cloud_status import CloudStatus
32
33
 
33
34
  from wandelbots_api_client.v2.api_client import ApiClient, RequestSerialized
34
35
  from wandelbots_api_client.v2.api_response import ApiResponse
@@ -561,6 +562,204 @@ class NOVACloudApi:
561
562
  _request_auth=_request_auth,
562
563
  )
563
564
 
565
+ @validate_call
566
+ async def get_cloud_status(
567
+ self,
568
+ _request_timeout: Union[
569
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
570
+ ] = None,
571
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
572
+ _content_type: Optional[StrictStr] = None,
573
+ _headers: Optional[Dict[StrictStr, Any]] = None,
574
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
575
+ ) -> CloudStatus:
576
+ """Get Connection Status
577
+
578
+ **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
579
+
580
+ :param _request_timeout: timeout setting for this request. If one
581
+ number provided, it will be total request
582
+ timeout. It can also be a pair (tuple) of
583
+ (connection, read) timeouts.
584
+ :type _request_timeout: int, tuple(int, int), optional
585
+ :param _request_auth: set to override the auth_settings for an a single
586
+ request; this effectively ignores the
587
+ authentication in the spec for a single request.
588
+ :type _request_auth: dict, optional
589
+ :param _content_type: force content-type for the request.
590
+ :type _content_type: str, Optional
591
+ :param _headers: set to override the headers for a single
592
+ request; this effectively ignores the headers
593
+ in the spec for a single request.
594
+ :type _headers: dict, optional
595
+ :param _host_index: set to override the host_index for a single
596
+ request; this effectively ignores the host_index
597
+ in the spec for a single request.
598
+ :type _host_index: int, optional
599
+ :return: Returns the result object.
600
+ """ # noqa: E501
601
+
602
+ _param = self._get_cloud_status_serialize(
603
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
604
+ )
605
+
606
+ _response_types_map: Dict[str, Optional[str]] = {
607
+ "200": "CloudStatus",
608
+ }
609
+
610
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
611
+ await response_data.read()
612
+ return self.api_client.response_deserialize(
613
+ response_data=response_data,
614
+ response_types_map=_response_types_map,
615
+ ).data
616
+
617
+ @validate_call
618
+ async def get_cloud_status_with_http_info(
619
+ self,
620
+ _request_timeout: Union[
621
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
622
+ ] = None,
623
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
624
+ _content_type: Optional[StrictStr] = None,
625
+ _headers: Optional[Dict[StrictStr, Any]] = None,
626
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
627
+ ) -> ApiResponse[CloudStatus]:
628
+ """Get Connection Status
629
+
630
+ **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
631
+
632
+ :param _request_timeout: timeout setting for this request. If one
633
+ number provided, it will be total request
634
+ timeout. It can also be a pair (tuple) of
635
+ (connection, read) timeouts.
636
+ :type _request_timeout: int, tuple(int, int), optional
637
+ :param _request_auth: set to override the auth_settings for an a single
638
+ request; this effectively ignores the
639
+ authentication in the spec for a single request.
640
+ :type _request_auth: dict, optional
641
+ :param _content_type: force content-type for the request.
642
+ :type _content_type: str, Optional
643
+ :param _headers: set to override the headers for a single
644
+ request; this effectively ignores the headers
645
+ in the spec for a single request.
646
+ :type _headers: dict, optional
647
+ :param _host_index: set to override the host_index for a single
648
+ request; this effectively ignores the host_index
649
+ in the spec for a single request.
650
+ :type _host_index: int, optional
651
+ :return: Returns the result object.
652
+ """ # noqa: E501
653
+
654
+ _param = self._get_cloud_status_serialize(
655
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
656
+ )
657
+
658
+ _response_types_map: Dict[str, Optional[str]] = {
659
+ "200": "CloudStatus",
660
+ }
661
+
662
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
663
+ await response_data.read()
664
+ return self.api_client.response_deserialize(
665
+ response_data=response_data,
666
+ response_types_map=_response_types_map,
667
+ )
668
+
669
+ @validate_call
670
+ async def get_cloud_status_without_preload_content(
671
+ self,
672
+ _request_timeout: Union[
673
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
674
+ ] = None,
675
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
676
+ _content_type: Optional[StrictStr] = None,
677
+ _headers: Optional[Dict[StrictStr, Any]] = None,
678
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
679
+ ) -> RESTResponseType:
680
+ """Get Connection Status
681
+
682
+ **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
683
+
684
+ :param _request_timeout: timeout setting for this request. If one
685
+ number provided, it will be total request
686
+ timeout. It can also be a pair (tuple) of
687
+ (connection, read) timeouts.
688
+ :type _request_timeout: int, tuple(int, int), optional
689
+ :param _request_auth: set to override the auth_settings for an a single
690
+ request; this effectively ignores the
691
+ authentication in the spec for a single request.
692
+ :type _request_auth: dict, optional
693
+ :param _content_type: force content-type for the request.
694
+ :type _content_type: str, Optional
695
+ :param _headers: set to override the headers for a single
696
+ request; this effectively ignores the headers
697
+ in the spec for a single request.
698
+ :type _headers: dict, optional
699
+ :param _host_index: set to override the host_index for a single
700
+ request; this effectively ignores the host_index
701
+ in the spec for a single request.
702
+ :type _host_index: int, optional
703
+ :return: Returns the result object.
704
+ """ # noqa: E501
705
+
706
+ _param = self._get_cloud_status_serialize(
707
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
708
+ )
709
+
710
+ _response_types_map: Dict[str, Optional[str]] = {
711
+ "200": "CloudStatus",
712
+ }
713
+
714
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
715
+ return response_data.response
716
+
717
+ def _get_cloud_status_serialize(
718
+ self,
719
+ _request_auth,
720
+ _content_type,
721
+ _headers,
722
+ _host_index,
723
+ ) -> RequestSerialized:
724
+
725
+ _host = None
726
+
727
+ _collection_formats: Dict[str, str] = {}
728
+
729
+ _path_params: Dict[str, str] = {}
730
+ _query_params: List[Tuple[str, str]] = []
731
+ _header_params: Dict[str, Optional[str]] = _headers or {}
732
+ _form_params: List[Tuple[str, str]] = []
733
+ _files: Dict[str, Union[str, bytes]] = {}
734
+ _body_params: Optional[bytes] = None
735
+
736
+ # process the path parameters
737
+ # process the query parameters
738
+ # process the header parameters
739
+ # process the form parameters
740
+ # process the body parameter
741
+
742
+ # set the HTTP header `Accept`
743
+ _header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
744
+
745
+ # authentication setting
746
+ _auth_settings: List[str] = ["BearerAuth"]
747
+
748
+ return self.api_client.param_serialize(
749
+ method="GET",
750
+ resource_path="/experimental/cloud/status",
751
+ path_params=_path_params,
752
+ query_params=_query_params,
753
+ header_params=_header_params,
754
+ body=_body_params,
755
+ post_params=_form_params,
756
+ files=_files,
757
+ auth_settings=_auth_settings,
758
+ collection_formats=_collection_formats,
759
+ _host=_host,
760
+ _request_auth=_request_auth,
761
+ )
762
+
564
763
  @validate_call
565
764
  async def get_nova_cloud_config(
566
765
  self,
@@ -85,7 +85,7 @@ class ApiClient:
85
85
  self.default_headers[header_name] = header_value
86
86
  self.cookie = cookie
87
87
  # Set default User-Agent.
88
- self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev51"
88
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev52"
89
89
  self.client_side_validation = configuration.client_side_validation
90
90
 
91
91
  async def __aenter__(self):
@@ -512,7 +512,7 @@ class Configuration:
512
512
  "OS: {env}\n"
513
513
  "Python Version: {pyversion}\n"
514
514
  "Version of the API: 2.6.0 dev\n"
515
- "SDK Package Version: 26.6.0.dev51".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev52".format(env=sys.platform, pyversion=sys.version)
516
516
  )
517
517
 
518
518
  def get_host_settings(self) -> List[HostSetting]:
@@ -84,6 +84,9 @@ from wandelbots_api_client.v2.models.cloud_disconnection_error import CloudDisco
84
84
  from wandelbots_api_client.v2.models.cloud_disconnection_status_disconnected import CloudDisconnectionStatusDisconnected
85
85
  from wandelbots_api_client.v2.models.cloud_disconnection_status_disconnecting import CloudDisconnectionStatusDisconnecting
86
86
  from wandelbots_api_client.v2.models.cloud_registration_success_response import CloudRegistrationSuccessResponse
87
+ from wandelbots_api_client.v2.models.cloud_status import CloudStatus
88
+ from wandelbots_api_client.v2.models.cloud_status_checks import CloudStatusChecks
89
+ from wandelbots_api_client.v2.models.cloud_status_errors import CloudStatusErrors
87
90
  from wandelbots_api_client.v2.models.collider import Collider
88
91
  from wandelbots_api_client.v2.models.collider_shape import ColliderShape
89
92
  from wandelbots_api_client.v2.models.collider_value import ColliderValue
@@ -0,0 +1,104 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wandelbots NOVA API
5
+
6
+ Interact with robots in an easy and intuitive way.
7
+
8
+ The version of the OpenAPI document: 2.6.0 dev
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+ from __future__ import annotations
15
+ import pprint
16
+ import re # noqa: F401
17
+ import json
18
+
19
+ from datetime import datetime
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool
21
+ from typing import Any, ClassVar, Dict, List
22
+ from wandelbots_api_client.v2.models.cloud_status_checks import CloudStatusChecks
23
+ from wandelbots_api_client.v2.models.cloud_status_errors import CloudStatusErrors
24
+ from typing import Optional, Set
25
+ from typing_extensions import Self
26
+ from pydantic_core import to_jsonable_python
27
+
28
+
29
+ class CloudStatus(BaseModel):
30
+ """
31
+ CloudStatus
32
+ """ # noqa: E501
33
+
34
+ ready: StrictBool = Field(
35
+ description="Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails."
36
+ )
37
+ checks: CloudStatusChecks
38
+ errors: CloudStatusErrors
39
+ checked_at: datetime = Field(description="Timestamp at which the reachability checks were performed (RFC 3339).")
40
+ __properties: ClassVar[List[str]] = ["ready", "checks", "errors", "checked_at"]
41
+
42
+ model_config = ConfigDict(
43
+ validate_by_name=True,
44
+ validate_by_alias=True,
45
+ validate_assignment=True,
46
+ protected_namespaces=(),
47
+ )
48
+
49
+ def to_str(self) -> str:
50
+ """Returns the string representation of the model using alias"""
51
+ return pprint.pformat(self.model_dump(by_alias=True))
52
+
53
+ def to_json(self) -> str:
54
+ """Returns the JSON representation of the model using alias"""
55
+ return json.dumps(to_jsonable_python(self.to_dict()))
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> Optional[Self]:
59
+ """Create an instance of CloudStatus from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self) -> Dict[str, Any]:
63
+ """Return the dictionary representation of the model using alias.
64
+
65
+ This has the following differences from calling pydantic's
66
+ `self.model_dump(by_alias=True)`:
67
+
68
+ * `None` is only added to the output dict for nullable fields that
69
+ were set at model initialization. Other fields with value `None`
70
+ are ignored.
71
+ """
72
+ excluded_fields: Set[str] = set([])
73
+
74
+ _dict = self.model_dump(
75
+ by_alias=True,
76
+ exclude=excluded_fields,
77
+ exclude_none=True,
78
+ )
79
+ # override the default output from pydantic by calling `to_dict()` of checks
80
+ if self.checks:
81
+ _dict["checks"] = self.checks.to_dict()
82
+ # override the default output from pydantic by calling `to_dict()` of errors
83
+ if self.errors:
84
+ _dict["errors"] = self.errors.to_dict()
85
+ return _dict
86
+
87
+ @classmethod
88
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
89
+ """Create an instance of CloudStatus from a dict"""
90
+ if obj is None:
91
+ return None
92
+
93
+ if not isinstance(obj, dict):
94
+ return cls.model_validate(obj)
95
+
96
+ _obj = cls.model_validate(
97
+ {
98
+ "ready": obj.get("ready"),
99
+ "checks": CloudStatusChecks.from_dict(obj["checks"]) if obj.get("checks") is not None else None,
100
+ "errors": CloudStatusErrors.from_dict(obj["errors"]) if obj.get("errors") is not None else None,
101
+ "checked_at": obj.get("checked_at"),
102
+ }
103
+ )
104
+ return _obj
@@ -0,0 +1,93 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wandelbots NOVA API
5
+
6
+ Interact with robots in an easy and intuitive way.
7
+
8
+ The version of the OpenAPI document: 2.6.0 dev
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+ from __future__ import annotations
15
+ import pprint
16
+ import re # noqa: F401
17
+ import json
18
+
19
+ from pydantic import BaseModel, ConfigDict, StrictBool
20
+ from typing import Any, ClassVar, Dict, List, Optional
21
+ from typing import Optional, Set
22
+ from typing_extensions import Self
23
+ from pydantic_core import to_jsonable_python
24
+
25
+
26
+ class CloudStatusChecks(BaseModel):
27
+ """
28
+ Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
29
+ """ # noqa: E501
30
+
31
+ is_configured: Optional[StrictBool] = None
32
+ can_connect_nats: Optional[StrictBool] = None
33
+ can_ping_nats: Optional[StrictBool] = None
34
+ can_reach_openfga: Optional[StrictBool] = None
35
+ __properties: ClassVar[List[str]] = ["is_configured", "can_connect_nats", "can_ping_nats", "can_reach_openfga"]
36
+
37
+ model_config = ConfigDict(
38
+ validate_by_name=True,
39
+ validate_by_alias=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ return json.dumps(to_jsonable_python(self.to_dict()))
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of CloudStatusChecks 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
+ """
67
+ excluded_fields: Set[str] = set([])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
78
+ """Create an instance of CloudStatusChecks from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return cls.model_validate(obj)
84
+
85
+ _obj = cls.model_validate(
86
+ {
87
+ "is_configured": obj.get("is_configured"),
88
+ "can_connect_nats": obj.get("can_connect_nats"),
89
+ "can_ping_nats": obj.get("can_ping_nats"),
90
+ "can_reach_openfga": obj.get("can_reach_openfga"),
91
+ }
92
+ )
93
+ return _obj
@@ -0,0 +1,93 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Wandelbots NOVA API
5
+
6
+ Interact with robots in an easy and intuitive way.
7
+
8
+ The version of the OpenAPI document: 2.6.0 dev
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+ from __future__ import annotations
15
+ import pprint
16
+ import re # noqa: F401
17
+ import json
18
+
19
+ from pydantic import BaseModel, ConfigDict, StrictStr
20
+ from typing import Any, ClassVar, Dict, List, Optional
21
+ from typing import Optional, Set
22
+ from typing_extensions import Self
23
+ from pydantic_core import to_jsonable_python
24
+
25
+
26
+ class CloudStatusErrors(BaseModel):
27
+ """
28
+ Failure reason for each failed check, to help diagnose what is wrong.
29
+ """ # noqa: E501
30
+
31
+ is_configured: Optional[StrictStr] = None
32
+ can_connect_nats: Optional[StrictStr] = None
33
+ can_ping_nats: Optional[StrictStr] = None
34
+ can_reach_openfga: Optional[StrictStr] = None
35
+ __properties: ClassVar[List[str]] = ["is_configured", "can_connect_nats", "can_ping_nats", "can_reach_openfga"]
36
+
37
+ model_config = ConfigDict(
38
+ validate_by_name=True,
39
+ validate_by_alias=True,
40
+ validate_assignment=True,
41
+ protected_namespaces=(),
42
+ )
43
+
44
+ def to_str(self) -> str:
45
+ """Returns the string representation of the model using alias"""
46
+ return pprint.pformat(self.model_dump(by_alias=True))
47
+
48
+ def to_json(self) -> str:
49
+ """Returns the JSON representation of the model using alias"""
50
+ return json.dumps(to_jsonable_python(self.to_dict()))
51
+
52
+ @classmethod
53
+ def from_json(cls, json_str: str) -> Optional[Self]:
54
+ """Create an instance of CloudStatusErrors 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
+ """
67
+ excluded_fields: Set[str] = set([])
68
+
69
+ _dict = self.model_dump(
70
+ by_alias=True,
71
+ exclude=excluded_fields,
72
+ exclude_none=True,
73
+ )
74
+ return _dict
75
+
76
+ @classmethod
77
+ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
78
+ """Create an instance of CloudStatusErrors from a dict"""
79
+ if obj is None:
80
+ return None
81
+
82
+ if not isinstance(obj, dict):
83
+ return cls.model_validate(obj)
84
+
85
+ _obj = cls.model_validate(
86
+ {
87
+ "is_configured": obj.get("is_configured"),
88
+ "can_connect_nats": obj.get("can_connect_nats"),
89
+ "can_ping_nats": obj.get("can_ping_nats"),
90
+ "can_reach_openfga": obj.get("can_reach_openfga"),
91
+ }
92
+ )
93
+ return _obj
@@ -13,7 +13,7 @@ Generated by OpenAPI Generator (https://openapi-generator.tech)
13
13
  Do not edit the class manually.
14
14
  """ # noqa: E501
15
15
 
16
- __version__ = "26.6.0.dev51"
16
+ __version__ = "26.6.0.dev52"
17
17
 
18
18
  from . import api
19
19
  from . import api_client
@@ -29,6 +29,7 @@ from wandelbots_api_client.v2_pydantic.models import CloudConfigStatus
29
29
  from wandelbots_api_client.v2_pydantic.models import CloudConnectionRequest
30
30
  from wandelbots_api_client.v2_pydantic.models import CloudDisconnectionStatusDisconnected
31
31
  from wandelbots_api_client.v2_pydantic.models import CloudRegistrationSuccessResponse
32
+ from wandelbots_api_client.v2_pydantic.models import CloudStatus
32
33
 
33
34
  from wandelbots_api_client.v2_pydantic.api_client import ApiClient, RequestSerialized
34
35
  from wandelbots_api_client.v2_pydantic.api_response import ApiResponse
@@ -561,6 +562,204 @@ class NOVACloudApi:
561
562
  _request_auth=_request_auth,
562
563
  )
563
564
 
565
+ @validate_call
566
+ async def get_cloud_status(
567
+ self,
568
+ _request_timeout: Union[
569
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
570
+ ] = None,
571
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
572
+ _content_type: Optional[StrictStr] = None,
573
+ _headers: Optional[Dict[StrictStr, Any]] = None,
574
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
575
+ ) -> CloudStatus:
576
+ """Get Connection Status
577
+
578
+ **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
579
+
580
+ :param _request_timeout: timeout setting for this request. If one
581
+ number provided, it will be total request
582
+ timeout. It can also be a pair (tuple) of
583
+ (connection, read) timeouts.
584
+ :type _request_timeout: int, tuple(int, int), optional
585
+ :param _request_auth: set to override the auth_settings for an a single
586
+ request; this effectively ignores the
587
+ authentication in the spec for a single request.
588
+ :type _request_auth: dict, optional
589
+ :param _content_type: force content-type for the request.
590
+ :type _content_type: str, Optional
591
+ :param _headers: set to override the headers for a single
592
+ request; this effectively ignores the headers
593
+ in the spec for a single request.
594
+ :type _headers: dict, optional
595
+ :param _host_index: set to override the host_index for a single
596
+ request; this effectively ignores the host_index
597
+ in the spec for a single request.
598
+ :type _host_index: int, optional
599
+ :return: Returns the result object.
600
+ """ # noqa: E501
601
+
602
+ _param = self._get_cloud_status_serialize(
603
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
604
+ )
605
+
606
+ _response_types_map: Dict[str, Optional[str]] = {
607
+ "200": "CloudStatus",
608
+ }
609
+
610
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
611
+ await response_data.read()
612
+ return self.api_client.response_deserialize(
613
+ response_data=response_data,
614
+ response_types_map=_response_types_map,
615
+ ).data
616
+
617
+ @validate_call
618
+ async def get_cloud_status_with_http_info(
619
+ self,
620
+ _request_timeout: Union[
621
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
622
+ ] = None,
623
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
624
+ _content_type: Optional[StrictStr] = None,
625
+ _headers: Optional[Dict[StrictStr, Any]] = None,
626
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
627
+ ) -> ApiResponse[CloudStatus]:
628
+ """Get Connection Status
629
+
630
+ **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
631
+
632
+ :param _request_timeout: timeout setting for this request. If one
633
+ number provided, it will be total request
634
+ timeout. It can also be a pair (tuple) of
635
+ (connection, read) timeouts.
636
+ :type _request_timeout: int, tuple(int, int), optional
637
+ :param _request_auth: set to override the auth_settings for an a single
638
+ request; this effectively ignores the
639
+ authentication in the spec for a single request.
640
+ :type _request_auth: dict, optional
641
+ :param _content_type: force content-type for the request.
642
+ :type _content_type: str, Optional
643
+ :param _headers: set to override the headers for a single
644
+ request; this effectively ignores the headers
645
+ in the spec for a single request.
646
+ :type _headers: dict, optional
647
+ :param _host_index: set to override the host_index for a single
648
+ request; this effectively ignores the host_index
649
+ in the spec for a single request.
650
+ :type _host_index: int, optional
651
+ :return: Returns the result object.
652
+ """ # noqa: E501
653
+
654
+ _param = self._get_cloud_status_serialize(
655
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
656
+ )
657
+
658
+ _response_types_map: Dict[str, Optional[str]] = {
659
+ "200": "CloudStatus",
660
+ }
661
+
662
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
663
+ await response_data.read()
664
+ return self.api_client.response_deserialize(
665
+ response_data=response_data,
666
+ response_types_map=_response_types_map,
667
+ )
668
+
669
+ @validate_call
670
+ async def get_cloud_status_without_preload_content(
671
+ self,
672
+ _request_timeout: Union[
673
+ None, Annotated[StrictFloat, Field(gt=0)], Tuple[Annotated[StrictFloat, Field(gt=0)], Annotated[StrictFloat, Field(gt=0)]]
674
+ ] = None,
675
+ _request_auth: Optional[Dict[StrictStr, Any]] = None,
676
+ _content_type: Optional[StrictStr] = None,
677
+ _headers: Optional[Dict[StrictStr, Any]] = None,
678
+ _host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
679
+ ) -> RESTResponseType:
680
+ """Get Connection Status
681
+
682
+ **Required permissions:** `can_access_system` - View system status and metadata ___ <!-- theme: danger --> > **Experimental** Get the current NOVA Cloud connection status for this instance, including whether the configured cloud deployment is currently reachable.
683
+
684
+ :param _request_timeout: timeout setting for this request. If one
685
+ number provided, it will be total request
686
+ timeout. It can also be a pair (tuple) of
687
+ (connection, read) timeouts.
688
+ :type _request_timeout: int, tuple(int, int), optional
689
+ :param _request_auth: set to override the auth_settings for an a single
690
+ request; this effectively ignores the
691
+ authentication in the spec for a single request.
692
+ :type _request_auth: dict, optional
693
+ :param _content_type: force content-type for the request.
694
+ :type _content_type: str, Optional
695
+ :param _headers: set to override the headers for a single
696
+ request; this effectively ignores the headers
697
+ in the spec for a single request.
698
+ :type _headers: dict, optional
699
+ :param _host_index: set to override the host_index for a single
700
+ request; this effectively ignores the host_index
701
+ in the spec for a single request.
702
+ :type _host_index: int, optional
703
+ :return: Returns the result object.
704
+ """ # noqa: E501
705
+
706
+ _param = self._get_cloud_status_serialize(
707
+ _request_auth=_request_auth, _content_type=_content_type, _headers=_headers, _host_index=_host_index
708
+ )
709
+
710
+ _response_types_map: Dict[str, Optional[str]] = {
711
+ "200": "CloudStatus",
712
+ }
713
+
714
+ response_data = await self.api_client.call_api(*_param, _request_timeout=_request_timeout)
715
+ return response_data.response
716
+
717
+ def _get_cloud_status_serialize(
718
+ self,
719
+ _request_auth,
720
+ _content_type,
721
+ _headers,
722
+ _host_index,
723
+ ) -> RequestSerialized:
724
+
725
+ _host = None
726
+
727
+ _collection_formats: Dict[str, str] = {}
728
+
729
+ _path_params: Dict[str, str] = {}
730
+ _query_params: List[Tuple[str, str]] = []
731
+ _header_params: Dict[str, Optional[str]] = _headers or {}
732
+ _form_params: List[Tuple[str, str]] = []
733
+ _files: Dict[str, Union[str, bytes]] = {}
734
+ _body_params: Optional[bytes] = None
735
+
736
+ # process the path parameters
737
+ # process the query parameters
738
+ # process the header parameters
739
+ # process the form parameters
740
+ # process the body parameter
741
+
742
+ # set the HTTP header `Accept`
743
+ _header_params["Accept"] = self.api_client.select_header_accept(["application/json"])
744
+
745
+ # authentication setting
746
+ _auth_settings: List[str] = ["BearerAuth"]
747
+
748
+ return self.api_client.param_serialize(
749
+ method="GET",
750
+ resource_path="/experimental/cloud/status",
751
+ path_params=_path_params,
752
+ query_params=_query_params,
753
+ header_params=_header_params,
754
+ body=_body_params,
755
+ post_params=_form_params,
756
+ files=_files,
757
+ auth_settings=_auth_settings,
758
+ collection_formats=_collection_formats,
759
+ _host=_host,
760
+ _request_auth=_request_auth,
761
+ )
762
+
564
763
  @validate_call
565
764
  async def get_nova_cloud_config(
566
765
  self,
@@ -85,7 +85,7 @@ class ApiClient:
85
85
  self.default_headers[header_name] = header_value
86
86
  self.cookie = cookie
87
87
  # Set default User-Agent.
88
- self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev51"
88
+ self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev52"
89
89
  self.client_side_validation = configuration.client_side_validation
90
90
 
91
91
  async def __aenter__(self):
@@ -512,7 +512,7 @@ class Configuration:
512
512
  "OS: {env}\n"
513
513
  "Python Version: {pyversion}\n"
514
514
  "Version of the API: 2.6.0 dev\n"
515
- "SDK Package Version: 26.6.0.dev51".format(env=sys.platform, pyversion=sys.version)
515
+ "SDK Package Version: 26.6.0.dev52".format(env=sys.platform, pyversion=sys.version)
516
516
  )
517
517
 
518
518
  def get_host_settings(self) -> List[HostSetting]:
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
- # filename: tmp6vx2rtqg
3
- # timestamp: 2026-07-02T10:52:13+00:00
2
+ # filename: tmppu3vbf8x
3
+ # timestamp: 2026-07-02T16:45:03+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -72,6 +72,9 @@ from .models import (
72
72
  CloudRegistrationSuccessResponse,
73
73
  CloudResponse,
74
74
  CloudResponse1,
75
+ CloudStatus,
76
+ CloudStatusChecks,
77
+ CloudStatusErrors,
75
78
  Collider,
76
79
  ColliderDictionary,
77
80
  ColliderValue,
@@ -510,6 +513,9 @@ __all__ = [
510
513
  "CloudRegistrationSuccessResponse",
511
514
  "CloudResponse",
512
515
  "CloudResponse1",
516
+ "CloudStatus",
517
+ "CloudStatusChecks",
518
+ "CloudStatusErrors",
513
519
  "Collider",
514
520
  "ColliderDictionary",
515
521
  "ColliderValue",
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: models.yaml
3
- # timestamp: 2026-07-02T10:52:13+00:00
3
+ # timestamp: 2026-07-02T16:45:03+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
  from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
@@ -6019,6 +6019,41 @@ class CloudDisconnectionError(BaseModel):
6019
6019
  error: CloudConnectionErrorLeafnodeRestartTimeout
6020
6020
 
6021
6021
 
6022
+ class CloudStatusChecks(BaseModel):
6023
+ """
6024
+ Result of each reachability check. A check is absent when a prerequisite check failed and it was not run.
6025
+ """
6026
+
6027
+ is_configured: bool | None = None
6028
+ can_connect_nats: bool | None = None
6029
+ can_ping_nats: bool | None = None
6030
+ can_reach_openfga: bool | None = None
6031
+
6032
+
6033
+ class CloudStatusErrors(BaseModel):
6034
+ """
6035
+ Failure reason for each failed check, to help diagnose what is wrong.
6036
+ """
6037
+
6038
+ is_configured: str | None = None
6039
+ can_connect_nats: str | None = None
6040
+ can_ping_nats: str | None = None
6041
+ can_reach_openfga: str | None = None
6042
+
6043
+
6044
+ class CloudStatus(BaseModel):
6045
+ ready: bool = Field(..., examples=[False])
6046
+ """
6047
+ Whether NOVA Cloud is fully reachable, i.e. every reachability check passed. `false` when the instance is not configured or any check fails.
6048
+ """
6049
+ checks: CloudStatusChecks
6050
+ errors: CloudStatusErrors
6051
+ checked_at: AwareDatetime = Field(..., examples=["2026-06-23T12:34:56.000Z"])
6052
+ """
6053
+ Timestamp at which the reachability checks were performed (RFC 3339).
6054
+ """
6055
+
6056
+
6022
6057
  class MotionGroupInfo(BaseModel):
6023
6058
  motion_group: str
6024
6059
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wandelbots_api_client
3
- Version: 26.6.0.dev51
3
+ Version: 26.6.0.dev52
4
4
  Summary: Wandelbots Python Client: Interact with robots in an easy and intuitive way.
5
5
  Author: Copyright (c) 2025 Wandelbots GmbH
6
6
  Author-email: Copyright (c) 2025 Wandelbots GmbH <contact@wandelbots.com>
@@ -31,7 +31,7 @@ Description-Content-Type: text/markdown
31
31
  Interact with robots in an easy and intuitive way.
32
32
 
33
33
  - Compatible API version: 2.6.0 dev (can be found at the home screen of your instance -> API)
34
- - Package version: 26.6.0.dev51
34
+ - Package version: 26.6.0.dev52
35
35
 
36
36
  ## Requirements.
37
37
  Python >=3.9, Python < 4.0
@@ -1,6 +1,6 @@
1
1
  wandelbots_api_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  wandelbots_api_client/authorization.py,sha256=9AuS2mZ4a5fmbumMuK52rhgMvCj_hPrfaAIayj1Ecks,7914
3
- wandelbots_api_client/v2/__init__.py,sha256=Rq5uTh9_4oaQapHXHrNyQfPObKuNXns7ZRh1HqNe5-M,1032
3
+ wandelbots_api_client/v2/__init__.py,sha256=7iNxj1NMNpNVZwAviqRueQZKQOV_CQTnQPJn2hu1Dw4,1032
4
4
  wandelbots_api_client/v2/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
5
5
  wandelbots_api_client/v2/api/application_api.py,sha256=nVY1ZFCeazTJOou0UKhtAaFURbixCIFAl-AIAFvn4-8,69559
6
6
  wandelbots_api_client/v2/api/bus_inputs_outputs_api.py,sha256=3V_7OHnjzC0LnS-jAnEhb_Yv90TGnAP-egURffcUIcs,267414
@@ -12,7 +12,7 @@ wandelbots_api_client/v2/api/kinematics_api.py,sha256=F_utXvXRXBghgTxvFmrT3b9j3s
12
12
  wandelbots_api_client/v2/api/license_api.py,sha256=7o_JyRCOvC0_Wdh6_rnm9C2bts8-vTUJR5iI8Yq05Gs,39538
13
13
  wandelbots_api_client/v2/api/motion_group_api.py,sha256=CByNFNC4GrQTyXlQbltQ2vC9PZpyBn4sWtRYykRdNJQ,32988
14
14
  wandelbots_api_client/v2/api/motion_group_models_api.py,sha256=C6DZken6vr23QD9kL9-dAe4Vi4xFX3A9jme50uFDZ6I,156302
15
- wandelbots_api_client/v2/api/nova_cloud_api.py,sha256=AapfBM9R6cr5RtCh3S80EEoqkpmaUHpHfzrgLAEbd1w,39135
15
+ wandelbots_api_client/v2/api/nova_cloud_api.py,sha256=ZLo3BE0gk79salFAN8iFnUoy9QZHi8G2mpj28uXLtQY,48633
16
16
  wandelbots_api_client/v2/api/program_api.py,sha256=8wzRU05gL_6Gjezm9yJ3e4wHq7ADeKL0yCCaNQGL4A4,44678
17
17
  wandelbots_api_client/v2/api/robot_configurations_api.py,sha256=6klutuPMM7Hi4fmp1v5wnoNrYGuQ-d2kHpq7hwVS7zw,22115
18
18
  wandelbots_api_client/v2/api/session_api.py,sha256=qXBZyKdhP3Xpe8DxlbtbiVW8wAGoaIc_oydZL7jjlZY,11450
@@ -27,11 +27,11 @@ wandelbots_api_client/v2/api/version_api.py,sha256=1dAhtFz73CmB6F8fMOgsLGjCWq4w6
27
27
  wandelbots_api_client/v2/api/virtual_controller_api.py,sha256=nQ_rkwRufKGKGHB3QIjm7i771tqKRJGlt8nGxWupMPI,291431
28
28
  wandelbots_api_client/v2/api/virtual_controller_behavior_api.py,sha256=ByeJFFto88jrhAu8LpXAuHosXXIKpks5rSY8ZOWUdG4,41046
29
29
  wandelbots_api_client/v2/api/virtual_controller_inputs_outputs_api.py,sha256=OcQg8mxoQqZLHpByvSY3iqWNLia8rsxlvdpwlc02wb0,42027
30
- wandelbots_api_client/v2/api_client.py,sha256=j9NF46yLkPADaDKSD4Mzgg3qG4ThIgD-SuMPIplUNZM,27803
30
+ wandelbots_api_client/v2/api_client.py,sha256=wZw1SkEoL6U6uo6FUfpIiK2nXiWc_zgJo1__rwYZyzU,27803
31
31
  wandelbots_api_client/v2/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
32
- wandelbots_api_client/v2/configuration.py,sha256=pMw2Xk8N0eTQoIGjQ7iR6ZUv_V8knGxtcrvRA9qZZbM,18047
32
+ wandelbots_api_client/v2/configuration.py,sha256=9p0B3mkRbXfkzGuTKhGObkrtP46l0Xcoa3ub9OIUjEY,18047
33
33
  wandelbots_api_client/v2/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
34
- wandelbots_api_client/v2/models/__init__.py,sha256=FCz0wNdHnamp-8ByecRs_XtpLpdx25u6D_iE-xqmJYE,36668
34
+ wandelbots_api_client/v2/models/__init__.py,sha256=ThlfWpgeycjbjxIS-pi-GWE5DoATVWPDq2L8E3sTIiQ,36901
35
35
  wandelbots_api_client/v2/models/abb_confdata.py,sha256=lXK9rOsDRyCc2urbmVISftopF5LEbANjZ1R-1jXeLNg,3378
36
36
  wandelbots_api_client/v2/models/abb_configured_pose.py,sha256=Lg-eaUD80RzyQRshY3vm5BIq3_qFPZdz3kQk0ue9w_w,3144
37
37
  wandelbots_api_client/v2/models/abb_controller.py,sha256=P7QY_bKvz5fbW_nub4o2yROATVzb8xNr4cBetw5reSk,3741
@@ -97,6 +97,9 @@ wandelbots_api_client/v2/models/cloud_disconnection_error.py,sha256=XG7BHHfyDHPx
97
97
  wandelbots_api_client/v2/models/cloud_disconnection_status_disconnected.py,sha256=xCM0pQDhe6NC0Eh1OTdLQS20DppGYzvRQbd8oMimCG0,2748
98
98
  wandelbots_api_client/v2/models/cloud_disconnection_status_disconnecting.py,sha256=2_cqQkdGDMUSWWiwj5XNTpb-1wvJV_TCAxs0tIx6kFE,2754
99
99
  wandelbots_api_client/v2/models/cloud_registration_success_response.py,sha256=PxRYoJrT_CKAK1TvzXKGuFNCgwzYsIX4RuKEPh_atUE,2615
100
+ wandelbots_api_client/v2/models/cloud_status.py,sha256=Q-r-7D2BXDYo9ntlQ4lXHMkh__b-SW40ykmMxa_cft4,3623
101
+ wandelbots_api_client/v2/models/cloud_status_checks.py,sha256=GlAhhswvThnLpoICtMVOt-rQDbIj8zPgxnt4cpA7aV4,2999
102
+ wandelbots_api_client/v2/models/cloud_status_errors.py,sha256=zuUElXBz6P6eRqauV_-5dsjW7SH31z3os4RkCeIdFjU,2958
100
103
  wandelbots_api_client/v2/models/collider.py,sha256=2Kj9-IIJyZLSJizJ2G7qhojgRjYHrQuJfqIsSwkKG4w,3868
101
104
  wandelbots_api_client/v2/models/collider_shape.py,sha256=lNAo31_AwAk5qeY26y8R9ZYYpSPrHs7oUX-3nG2niBA,11012
102
105
  wandelbots_api_client/v2/models/collider_value.py,sha256=TdUMBJMv8rAzeOR-XNCxONaUkS1pxO865BLYWUf_0Mg,3204
@@ -437,7 +440,7 @@ wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py,sha2
437
440
  wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py,sha256=BJFV1ZqYKcQauiUfZ10UhbRxVhOL0DjQyHzHhlQ-hUA,5652
438
441
  wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
439
442
  wandelbots_api_client/v2/rest.py,sha256=pzalGbo_80nNBxbupQKYjZjOpOgPbYrEJtCfm236vL4,7253
440
- wandelbots_api_client/v2_pydantic/__init__.py,sha256=VUdoaZlidoLyzkCROToqeIrOWwRRAUi1hzmlm0uyDAU,1041
443
+ wandelbots_api_client/v2_pydantic/__init__.py,sha256=D7OyrpoRELOXB3WsuStP_pwV-Nn5QWN0RsYKKbQ1sWI,1041
441
444
  wandelbots_api_client/v2_pydantic/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
442
445
  wandelbots_api_client/v2_pydantic/api/application_api.py,sha256=vU-xA4SdVSJuXu7EAO7tTK9yJjSkMR1Y5_76RZdBp-E,69591
443
446
  wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py,sha256=CKmqk0PsMcT0Cp-2zEQDIS65dTWJJonJ83vkCAWEjn8,267356
@@ -449,7 +452,7 @@ wandelbots_api_client/v2_pydantic/api/kinematics_api.py,sha256=kbOn-NaGtHtPoEJeF
449
452
  wandelbots_api_client/v2_pydantic/api/license_api.py,sha256=YIglT4yT4C_Rl4UIegWXwPpD2T7vGaGOaJha8POQ02U,39544
450
453
  wandelbots_api_client/v2_pydantic/api/motion_group_api.py,sha256=X8yc2jwOB87mh1XkGJLyKXverOWrBkElNzSoC1qefQU,32989
451
454
  wandelbots_api_client/v2_pydantic/api/motion_group_models_api.py,sha256=G2oBtaa1eLwSmfAPUDpgQoBos85zZY8jNxGI0TkAslU,156246
452
- wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py,sha256=Ax33qal6yu1Flgh6JfBA5SokJxLCUnpzqFZivlRVO1A,39077
455
+ wandelbots_api_client/v2_pydantic/api/nova_cloud_api.py,sha256=IbJPl6EPuq1SNWLAyRFFLpPBFE601YVgr_t_vg3nsIo,48571
453
456
  wandelbots_api_client/v2_pydantic/api/program_api.py,sha256=3NkIGAfWvKNNocckgH-672f_RLa9_oUYv5zS_fBCxR4,44690
454
457
  wandelbots_api_client/v2_pydantic/api/robot_configurations_api.py,sha256=dcNwNhPc8uf6SOOPUH30eODK4sO1R611fdnR62Gs0AY,22104
455
458
  wandelbots_api_client/v2_pydantic/api/session_api.py,sha256=wPHSQJnGbNlnZSx1Ljffm30C412oCJdJWFydd_LmNmo,11469
@@ -464,14 +467,14 @@ wandelbots_api_client/v2_pydantic/api/version_api.py,sha256=TTJwo3cWTBgxpeDO2S-S
464
467
  wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py,sha256=rdrD4YOLnKKg_ILuzc37Ku_VMMJh2MUsR2a8frZraXc,291365
465
468
  wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py,sha256=3mNzqQUb8JM_E7iZ4MJGg7rnEGdL9VFFqjLlrMa6bss,41027
466
469
  wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py,sha256=LItWYQPUCu8mh2XAA9gOudhYTNMzIjtzY1ijXoV4w2E,42039
467
- wandelbots_api_client/v2_pydantic/api_client.py,sha256=gZdcXmLMXc6E_WRxVEwOeoikXKBbhYQDYrROl09LFKQ,27857
470
+ wandelbots_api_client/v2_pydantic/api_client.py,sha256=VQUL0nHwVZEcf1-lu-LVKxdhKAnCAea_H2F0bS9DSjI,27857
468
471
  wandelbots_api_client/v2_pydantic/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
469
- wandelbots_api_client/v2_pydantic/configuration.py,sha256=wczzQp9qTnx0WpgMtbWWZRTpbAbYF3Zp1PovCbjWRbU,18056
472
+ wandelbots_api_client/v2_pydantic/configuration.py,sha256=U0alGa5blNxdfcxANWAb1VhGSlWbNjOhFr5YL7s_4Go,18056
470
473
  wandelbots_api_client/v2_pydantic/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
471
- wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=17LXX6utzM4ARRtwQvMH4pzhT7GCz4C_66h-SsB0cUc,22527
472
- wandelbots_api_client/v2_pydantic/models/models.py,sha256=xTOzwNhPgRkpq4Mvm3wnfLKzCTpwFqfuDytVtq80nQw,211031
474
+ wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=FxTwqiVMeRHzOJnr41P1cJ65MgoOKLu1_sGrKXqGg-g,22659
475
+ wandelbots_api_client/v2_pydantic/models/models.py,sha256=lye19NBoQ9iUFhbwzublNJkPbg_koAtBMLf1uZB0C78,212111
473
476
  wandelbots_api_client/v2_pydantic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
474
477
  wandelbots_api_client/v2_pydantic/rest.py,sha256=EDM0lK-GKehCIR2PgMyO_5a5MGlOHws5c7Ue3j0FeSc,7262
475
- wandelbots_api_client-26.6.0.dev51.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
476
- wandelbots_api_client-26.6.0.dev51.dist-info/METADATA,sha256=n-QJ86KLEmh5HU4MV_-Uaw1kcba0Xb_Xvi2HPcawg5k,1411
477
- wandelbots_api_client-26.6.0.dev51.dist-info/RECORD,,
478
+ wandelbots_api_client-26.6.0.dev52.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
479
+ wandelbots_api_client-26.6.0.dev52.dist-info/METADATA,sha256=vy2TNI7FZ7_OTU6TmUemHJgjBip0e4-EbmZaznEUtNg,1411
480
+ wandelbots_api_client-26.6.0.dev52.dist-info/RECORD,,