wandelbots-api-client 25.11.0.dev17__py3-none-any.whl → 25.11.0.dev27__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.
- wandelbots_api_client/__init__.py +1 -1
- wandelbots_api_client/api_client.py +1 -1
- wandelbots_api_client/configuration.py +1 -1
- wandelbots_api_client/v2/__init__.py +1 -1
- wandelbots_api_client/v2/api/bus_inputs_outputs_api.py +579 -0
- wandelbots_api_client/v2/api_client.py +1 -1
- wandelbots_api_client/v2/configuration.py +1 -1
- wandelbots_api_client/v2/models/motion_group_description.py +4 -2
- wandelbots_api_client/v2_pydantic/__init__.py +1 -1
- wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py +585 -0
- wandelbots_api_client/v2_pydantic/api_client.py +1 -1
- wandelbots_api_client/v2_pydantic/configuration.py +1 -1
- wandelbots_api_client/v2_pydantic/models.py +6 -1
- {wandelbots_api_client-25.11.0.dev17.dist-info → wandelbots_api_client-25.11.0.dev27.dist-info}/METADATA +2 -2
- {wandelbots_api_client-25.11.0.dev17.dist-info → wandelbots_api_client-25.11.0.dev27.dist-info}/RECORD +18 -18
- {wandelbots_api_client-25.11.0.dev17.dist-info → wandelbots_api_client-25.11.0.dev27.dist-info}/WHEEL +0 -0
- {wandelbots_api_client-25.11.0.dev17.dist-info → wandelbots_api_client-25.11.0.dev27.dist-info}/licenses/LICENSE +0 -0
- {wandelbots_api_client-25.11.0.dev17.dist-info → wandelbots_api_client-25.11.0.dev27.dist-info}/top_level.txt +0 -0
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'Wandelbots-Nova-API-Python-Client/25.11.0.
|
|
94
|
+
self.user_agent = 'Wandelbots-Nova-API-Python-Client/25.11.0.dev27'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
async def __aenter__(self):
|
|
@@ -535,7 +535,7 @@ conf = wandelbots_api_client.Configuration(
|
|
|
535
535
|
"OS: {env}\n"\
|
|
536
536
|
"Python Version: {pyversion}\n"\
|
|
537
537
|
"Version of the API: 1.1.0\n"\
|
|
538
|
-
"SDK Package Version: 25.11.0.
|
|
538
|
+
"SDK Package Version: 25.11.0.dev27".\
|
|
539
539
|
format(env=sys.platform, pyversion=sys.version)
|
|
540
540
|
|
|
541
541
|
def get_host_settings(self) -> List[HostSetting]:
|