wandelbots_api_client 26.6.0.dev63__py3-none-any.whl → 26.6.0.dev65__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/v2/__init__.py +1 -1
- wandelbots_api_client/v2/api_client.py +1 -1
- wandelbots_api_client/v2/configuration.py +1 -1
- wandelbots_api_client/v2/models/merge_trajectories_segment.py +1 -1
- wandelbots_api_client/v2/models/motion_command.py +1 -1
- wandelbots_api_client/v2_pydantic/__init__.py +1 -1
- 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/__init__.py +2 -2
- wandelbots_api_client/v2_pydantic/models/models.py +7 -3
- {wandelbots_api_client-26.6.0.dev63.dist-info → wandelbots_api_client-26.6.0.dev65.dist-info}/METADATA +2 -2
- {wandelbots_api_client-26.6.0.dev63.dist-info → wandelbots_api_client-26.6.0.dev65.dist-info}/RECORD +13 -13
- {wandelbots_api_client-26.6.0.dev63.dist-info → wandelbots_api_client-26.6.0.dev65.dist-info}/WHEEL +0 -0
|
@@ -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.
|
|
88
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev65"
|
|
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.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev65".format(env=sys.platform, pyversion=sys.version)
|
|
516
516
|
)
|
|
517
517
|
|
|
518
518
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -37,7 +37,7 @@ class MergeTrajectoriesSegment(BaseModel):
|
|
|
37
37
|
)
|
|
38
38
|
limits_override: Optional[LimitsOverride] = Field(
|
|
39
39
|
default=None,
|
|
40
|
-
description="Limits override
|
|
40
|
+
description="Limits override defines additional limits for the blending at the end of this segment. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit. ",
|
|
41
41
|
)
|
|
42
42
|
blending: Optional[BlendingPosition] = Field(
|
|
43
43
|
default=None,
|
|
@@ -34,7 +34,7 @@ class MotionCommand(BaseModel):
|
|
|
34
34
|
blending: Optional[MotionCommandBlending] = None
|
|
35
35
|
limits_override: Optional[LimitsOverride] = Field(
|
|
36
36
|
default=None,
|
|
37
|
-
description="Limits override
|
|
37
|
+
description="Limits override defines additional limits for this segment of the motion. These limits do not replace the global limits of the motion group. Instead, they are merged with the global limits so that the most restrictive value applies for each limit. ",
|
|
38
38
|
)
|
|
39
39
|
path: MotionCommandPath
|
|
40
40
|
__properties: ClassVar[List[str]] = ["blending", "limits_override", "path"]
|
|
@@ -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.
|
|
88
|
+
self.user_agent = "Wandelbots-Nova-API-Python-Client/26.6.0.dev65"
|
|
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.
|
|
515
|
+
"SDK Package Version: 26.6.0.dev65".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
2
|
# filename: models.yaml
|
|
3
|
-
# timestamp: 2026-07-
|
|
3
|
+
# timestamp: 2026-07-09T10:47:10+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
|
|
@@ -3555,7 +3555,9 @@ class MotionCommand(BaseModel):
|
|
|
3555
3555
|
"""
|
|
3556
3556
|
limits_override: LimitsOverride | None = None
|
|
3557
3557
|
"""
|
|
3558
|
-
Limits override
|
|
3558
|
+
Limits override defines additional limits for this segment of the motion.
|
|
3559
|
+
These limits do not replace the global limits of the motion group. Instead, they are
|
|
3560
|
+
merged with the global limits so that the most restrictive value applies for each limit.
|
|
3559
3561
|
|
|
3560
3562
|
"""
|
|
3561
3563
|
path: (
|
|
@@ -4522,7 +4524,9 @@ class MergeTrajectoriesSegment(BaseModel):
|
|
|
4522
4524
|
"""
|
|
4523
4525
|
limits_override: LimitsOverride | None = None
|
|
4524
4526
|
"""
|
|
4525
|
-
Limits override
|
|
4527
|
+
Limits override defines additional limits for the blending at the end of this segment.
|
|
4528
|
+
These limits do not replace the global limits of the motion group. Instead, they are
|
|
4529
|
+
merged with the global limits so that the most restrictive value applies for each limit.
|
|
4526
4530
|
|
|
4527
4531
|
"""
|
|
4528
4532
|
blending: BlendingPosition | None = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: wandelbots_api_client
|
|
3
|
-
Version: 26.6.0.
|
|
3
|
+
Version: 26.6.0.dev65
|
|
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.
|
|
34
|
+
- Package version: 26.6.0.dev65
|
|
35
35
|
|
|
36
36
|
## Requirements.
|
|
37
37
|
Python >=3.9, Python < 4.0
|
{wandelbots_api_client-26.6.0.dev63.dist-info → wandelbots_api_client-26.6.0.dev65.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
wandelbots_api_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
wandelbots_api_client/authorization.py,sha256=QNd828qdNPI-ctZ2hteyFgqLnd7zpIfEehxbfxJ75-U,7979
|
|
3
|
-
wandelbots_api_client/v2/__init__.py,sha256=
|
|
3
|
+
wandelbots_api_client/v2/__init__.py,sha256=LhYkzQjWzOAsk_C_KBPypw6sfJixifLj9tESQrsoWT4,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
|
|
@@ -27,9 +27,9 @@ 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=
|
|
30
|
+
wandelbots_api_client/v2/api_client.py,sha256=M_a6j6C6VZi6TQI6Vk3bzAgG29TDDid9zmAVP9pKotA,27803
|
|
31
31
|
wandelbots_api_client/v2/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
|
32
|
-
wandelbots_api_client/v2/configuration.py,sha256=
|
|
32
|
+
wandelbots_api_client/v2/configuration.py,sha256=kjPos7kpF6IlLcldGQ3dq7gjFDsAXH9cWmRPF-Hq08E,18047
|
|
33
33
|
wandelbots_api_client/v2/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
|
|
34
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
|
|
@@ -266,7 +266,7 @@ wandelbots_api_client/v2/models/merge_trajectories_error_error_feedback.py,sha25
|
|
|
266
266
|
wandelbots_api_client/v2/models/merge_trajectories_request.py,sha256=VA-9tT43qobGTDu_ri7DQz28c5IP-cwNITrNmYl634s,4025
|
|
267
267
|
wandelbots_api_client/v2/models/merge_trajectories_response.py,sha256=IrD6EelVIGkwDkcfjpU3lhLLyC5fwMM7HtC6A_eJAtI,4363
|
|
268
268
|
wandelbots_api_client/v2/models/merge_trajectories_response_feedback_inner.py,sha256=c0x7kqXCOM4lTqrh79UR_lTogEcz7nIfQeiSvXFsBZ8,5835
|
|
269
|
-
wandelbots_api_client/v2/models/merge_trajectories_segment.py,sha256=
|
|
269
|
+
wandelbots_api_client/v2/models/merge_trajectories_segment.py,sha256=A1IyOQFQwUQ-VUQx45LqGz2eGFwMywzB4ed0KEIf7YY,5557
|
|
270
270
|
wandelbots_api_client/v2/models/merge_trajectories_validation_error.py,sha256=PHJDGQfcjzvjTH3fWMmDbDM3MNEUsVdlCMcCsskc6eA,3726
|
|
271
271
|
wandelbots_api_client/v2/models/midpoint_insertion_algorithm.py,sha256=rCukqaHghgm4rm2yJhYs8VB6owle0ERrCFiobGisbMw,3558
|
|
272
272
|
wandelbots_api_client/v2/models/modbus_io.py,sha256=KZjaqe3xoDBIkFdm672a6zQJH9qI82ras72YeDiUAUQ,3991
|
|
@@ -274,7 +274,7 @@ wandelbots_api_client/v2/models/modbus_io_area.py,sha256=H7a4UbzzTpW76EQKPNfvEEW
|
|
|
274
274
|
wandelbots_api_client/v2/models/modbus_io_byte_order.py,sha256=4K91NoBg0eVO0DgpLD3gPBwdzqVVfKQwYhhl41-8-Ks,1045
|
|
275
275
|
wandelbots_api_client/v2/models/modbus_io_data.py,sha256=ODfS3cFYg3dI3Zf-7qNHxTaMe9s3l4Pv1UEm82804dc,3763
|
|
276
276
|
wandelbots_api_client/v2/models/modbus_io_type_enum.py,sha256=Ok8zAhRp880yIMmrloNtFgVKi5dVgVnvjBtU3FWscU8,945
|
|
277
|
-
wandelbots_api_client/v2/models/motion_command.py,sha256=
|
|
277
|
+
wandelbots_api_client/v2/models/motion_command.py,sha256=0AjebL6RC7BMPO02bEfu8RHWjcahtvJlq8rdGGlYykg,3978
|
|
278
278
|
wandelbots_api_client/v2/models/motion_command_blending.py,sha256=OagbqpBKZIngWkzNG7qOeqfwLjntUe85HAXBGH6H3Gk,6336
|
|
279
279
|
wandelbots_api_client/v2/models/motion_command_path.py,sha256=qw5dxdoD_SIBGjZT_cYn4kCjYb144fwICSdKfnPC7wg,11990
|
|
280
280
|
wandelbots_api_client/v2/models/motion_group_configuration.py,sha256=jUrLoRAFpJqCrsQla-OjwEqWzmMQejKHPhT8EPOgiJY,3333
|
|
@@ -440,7 +440,7 @@ wandelbots_api_client/v2/models/zod_validation_error_error_details_inner.py,sha2
|
|
|
440
440
|
wandelbots_api_client/v2/models/zod_validation_error_error_details_inner_path_inner.py,sha256=BJFV1ZqYKcQauiUfZ10UhbRxVhOL0DjQyHzHhlQ-hUA,5652
|
|
441
441
|
wandelbots_api_client/v2/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
442
442
|
wandelbots_api_client/v2/rest.py,sha256=pzalGbo_80nNBxbupQKYjZjOpOgPbYrEJtCfm236vL4,7253
|
|
443
|
-
wandelbots_api_client/v2_pydantic/__init__.py,sha256=
|
|
443
|
+
wandelbots_api_client/v2_pydantic/__init__.py,sha256=3sNrM8nbcDM4UA8nuaHIk10U0M1j51jCZsdCsmo_YJo,1041
|
|
444
444
|
wandelbots_api_client/v2_pydantic/api/__init__.py,sha256=P0yGp2xWLeEPi0maOq33OfqhAM3pyWPwtc5AJpdTp8Y,1967
|
|
445
445
|
wandelbots_api_client/v2_pydantic/api/application_api.py,sha256=vU-xA4SdVSJuXu7EAO7tTK9yJjSkMR1Y5_76RZdBp-E,69591
|
|
446
446
|
wandelbots_api_client/v2_pydantic/api/bus_inputs_outputs_api.py,sha256=CKmqk0PsMcT0Cp-2zEQDIS65dTWJJonJ83vkCAWEjn8,267356
|
|
@@ -467,14 +467,14 @@ wandelbots_api_client/v2_pydantic/api/version_api.py,sha256=TTJwo3cWTBgxpeDO2S-S
|
|
|
467
467
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_api.py,sha256=rdrD4YOLnKKg_ILuzc37Ku_VMMJh2MUsR2a8frZraXc,291365
|
|
468
468
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_behavior_api.py,sha256=3mNzqQUb8JM_E7iZ4MJGg7rnEGdL9VFFqjLlrMa6bss,41027
|
|
469
469
|
wandelbots_api_client/v2_pydantic/api/virtual_controller_inputs_outputs_api.py,sha256=LItWYQPUCu8mh2XAA9gOudhYTNMzIjtzY1ijXoV4w2E,42039
|
|
470
|
-
wandelbots_api_client/v2_pydantic/api_client.py,sha256=
|
|
470
|
+
wandelbots_api_client/v2_pydantic/api_client.py,sha256=Gf_8PeitCPBbMBhMlnmZD7yXA16IKQQYDE9BkndMQgo,27857
|
|
471
471
|
wandelbots_api_client/v2_pydantic/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
|
|
472
|
-
wandelbots_api_client/v2_pydantic/configuration.py,sha256=
|
|
472
|
+
wandelbots_api_client/v2_pydantic/configuration.py,sha256=gOWjtEK-o4KjS_B8XwGFYqEqvS1AtbJKZbhMkUlZmZI,18056
|
|
473
473
|
wandelbots_api_client/v2_pydantic/exceptions.py,sha256=7XIPwMCrxI3N-TgSYabwGXMOROXRQdrJA2wOpyaRC1A,6393
|
|
474
|
-
wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=
|
|
475
|
-
wandelbots_api_client/v2_pydantic/models/models.py,sha256=
|
|
474
|
+
wandelbots_api_client/v2_pydantic/models/__init__.py,sha256=ylJnVxor53dMAz8Gn1owMMWCPj9bhlsCYb5aGtiSmZk,22659
|
|
475
|
+
wandelbots_api_client/v2_pydantic/models/models.py,sha256=sTtOTjPvVHmUTfQaWaczUSYRLCjGPcXKPMa-x4HSHF0,213058
|
|
476
476
|
wandelbots_api_client/v2_pydantic/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
477
477
|
wandelbots_api_client/v2_pydantic/rest.py,sha256=EDM0lK-GKehCIR2PgMyO_5a5MGlOHws5c7Ue3j0FeSc,7262
|
|
478
|
-
wandelbots_api_client-26.6.0.
|
|
479
|
-
wandelbots_api_client-26.6.0.
|
|
480
|
-
wandelbots_api_client-26.6.0.
|
|
478
|
+
wandelbots_api_client-26.6.0.dev65.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
|
|
479
|
+
wandelbots_api_client-26.6.0.dev65.dist-info/METADATA,sha256=cTyiNYYpwuxF7adbVpLKK6C-GBZ-yJ-BnxoYhQau80g,1411
|
|
480
|
+
wandelbots_api_client-26.6.0.dev65.dist-info/RECORD,,
|
{wandelbots_api_client-26.6.0.dev63.dist-info → wandelbots_api_client-26.6.0.dev65.dist-info}/WHEEL
RENAMED
|
File without changes
|