wandelbots_api_client 26.6.0.dev52__py3-none-any.whl → 26.6.0.dev54__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/cartesian_limits.py +10 -6
- wandelbots_api_client/v2/models/joint_limits.py +6 -5
- wandelbots_api_client/v2/models/limit_range.py +3 -3
- 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 +37 -1
- {wandelbots_api_client-26.6.0.dev52.dist-info → wandelbots_api_client-26.6.0.dev54.dist-info}/METADATA +2 -2
- {wandelbots_api_client-26.6.0.dev52.dist-info → wandelbots_api_client-26.6.0.dev54.dist-info}/RECORD +14 -14
- {wandelbots_api_client-26.6.0.dev52.dist-info → wandelbots_api_client-26.6.0.dev54.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.dev54"
|
|
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.dev54".format(env=sys.platform, pyversion=sys.version)
|
|
516
516
|
)
|
|
517
517
|
|
|
518
518
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -28,15 +28,19 @@ class CartesianLimits(BaseModel):
|
|
|
28
28
|
CartesianLimits
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
|
|
31
|
-
velocity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
32
|
-
acceleration: Optional[Union[StrictFloat, StrictInt]] = None
|
|
31
|
+
velocity: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Cartesian velocity limit in mm/s.")
|
|
32
|
+
acceleration: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Cartesian acceleration limit in mm/s².")
|
|
33
33
|
jerk: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
34
|
-
default=None,
|
|
34
|
+
default=None,
|
|
35
|
+
description="Cartesian jerk limit in mm/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases. ",
|
|
36
|
+
)
|
|
37
|
+
orientation_velocity: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Orientation velocity limit in rad/s.")
|
|
38
|
+
orientation_acceleration: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
39
|
+
default=None, description="Orientation acceleration limit in rad/s²."
|
|
35
40
|
)
|
|
36
|
-
orientation_velocity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
37
|
-
orientation_acceleration: Optional[Union[StrictFloat, StrictInt]] = None
|
|
38
41
|
orientation_jerk: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
39
|
-
default=None,
|
|
42
|
+
default=None,
|
|
43
|
+
description="Orientation jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases. ",
|
|
40
44
|
)
|
|
41
45
|
__properties: ClassVar[List[str]] = [
|
|
42
46
|
"velocity",
|
|
@@ -29,13 +29,14 @@ class JointLimits(BaseModel):
|
|
|
29
29
|
JointLimits
|
|
30
30
|
""" # noqa: E501
|
|
31
31
|
|
|
32
|
-
position: Optional[LimitRange] = None
|
|
33
|
-
velocity: Optional[Union[StrictFloat, StrictInt]] = None
|
|
34
|
-
acceleration: Optional[Union[StrictFloat, StrictInt]] = None
|
|
32
|
+
position: Optional[LimitRange] = Field(default=None, description="Joint position limits in rad.")
|
|
33
|
+
velocity: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Joint velocity limit in rad/s.")
|
|
34
|
+
acceleration: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Joint acceleration limit in rad/s².")
|
|
35
35
|
jerk: Optional[Union[StrictFloat, StrictInt]] = Field(
|
|
36
|
-
default=None,
|
|
36
|
+
default=None,
|
|
37
|
+
description="Joint jerk limit in rad/s³. > **NOTE** > > This limit type is experimental and its behavior may change in future releases. ",
|
|
37
38
|
)
|
|
38
|
-
torque: Optional[Union[StrictFloat, StrictInt]] = None
|
|
39
|
+
torque: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Joint torque limit in Nm.")
|
|
39
40
|
__properties: ClassVar[List[str]] = ["position", "velocity", "acceleration", "jerk", "torque"]
|
|
40
41
|
|
|
41
42
|
model_config = ConfigDict(
|
|
@@ -16,7 +16,7 @@ import pprint
|
|
|
16
16
|
import re # noqa: F401
|
|
17
17
|
import json
|
|
18
18
|
|
|
19
|
-
from pydantic import BaseModel, ConfigDict, StrictFloat, StrictInt
|
|
19
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictFloat, StrictInt
|
|
20
20
|
from typing import Any, ClassVar, Dict, List, Optional, Union
|
|
21
21
|
from typing import Optional, Set
|
|
22
22
|
from typing_extensions import Self
|
|
@@ -28,8 +28,8 @@ class LimitRange(BaseModel):
|
|
|
28
28
|
The upper_limit must be greater then the lower_limit.
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
|
|
31
|
-
lower_limit: Optional[Union[StrictFloat, StrictInt]] = None
|
|
32
|
-
upper_limit: Optional[Union[StrictFloat, StrictInt]] = None
|
|
31
|
+
lower_limit: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Lower position limit in rad.")
|
|
32
|
+
upper_limit: Optional[Union[StrictFloat, StrictInt]] = Field(default=None, description="Upper position limit in rad.")
|
|
33
33
|
__properties: ClassVar[List[str]] = ["lower_limit", "upper_limit"]
|
|
34
34
|
|
|
35
35
|
model_config = ConfigDict(
|
|
@@ -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.dev54"
|
|
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.dev54".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-03T12:51:12+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
from pydantic import AnyUrl, AwareDatetime, BaseModel, EmailStr, Field, RootModel
|
|
@@ -1914,37 +1914,73 @@ class LimitRange(BaseModel):
|
|
|
1914
1914
|
"""
|
|
1915
1915
|
|
|
1916
1916
|
lower_limit: float | None = None
|
|
1917
|
+
"""
|
|
1918
|
+
Lower position limit in rad.
|
|
1919
|
+
"""
|
|
1917
1920
|
upper_limit: float | None = None
|
|
1921
|
+
"""
|
|
1922
|
+
Upper position limit in rad.
|
|
1923
|
+
"""
|
|
1918
1924
|
|
|
1919
1925
|
|
|
1920
1926
|
class JointLimits(BaseModel):
|
|
1921
1927
|
position: LimitRange | None = None
|
|
1928
|
+
"""
|
|
1929
|
+
Joint position limits in rad.
|
|
1930
|
+
"""
|
|
1922
1931
|
velocity: float | None = None
|
|
1932
|
+
"""
|
|
1933
|
+
Joint velocity limit in rad/s.
|
|
1934
|
+
"""
|
|
1923
1935
|
acceleration: float | None = None
|
|
1936
|
+
"""
|
|
1937
|
+
Joint acceleration limit in rad/s².
|
|
1938
|
+
"""
|
|
1924
1939
|
jerk: float | None = None
|
|
1925
1940
|
"""
|
|
1941
|
+
Joint jerk limit in rad/s³.
|
|
1942
|
+
|
|
1926
1943
|
> **NOTE**
|
|
1927
1944
|
>
|
|
1928
1945
|
> This limit type is experimental and its behavior may change in future releases.
|
|
1929
1946
|
|
|
1930
1947
|
"""
|
|
1931
1948
|
torque: float | None = None
|
|
1949
|
+
"""
|
|
1950
|
+
Joint torque limit in Nm.
|
|
1951
|
+
"""
|
|
1932
1952
|
|
|
1933
1953
|
|
|
1934
1954
|
class CartesianLimits(BaseModel):
|
|
1935
1955
|
velocity: float | None = None
|
|
1956
|
+
"""
|
|
1957
|
+
Cartesian velocity limit in mm/s.
|
|
1958
|
+
"""
|
|
1936
1959
|
acceleration: float | None = None
|
|
1960
|
+
"""
|
|
1961
|
+
Cartesian acceleration limit in mm/s².
|
|
1962
|
+
"""
|
|
1937
1963
|
jerk: float | None = None
|
|
1938
1964
|
"""
|
|
1965
|
+
Cartesian jerk limit in mm/s³.
|
|
1966
|
+
|
|
1939
1967
|
> **NOTE**
|
|
1940
1968
|
>
|
|
1941
1969
|
> This limit type is experimental and its behavior may change in future releases.
|
|
1942
1970
|
|
|
1943
1971
|
"""
|
|
1944
1972
|
orientation_velocity: float | None = None
|
|
1973
|
+
"""
|
|
1974
|
+
Orientation velocity limit in rad/s.
|
|
1975
|
+
"""
|
|
1945
1976
|
orientation_acceleration: float | None = None
|
|
1977
|
+
"""
|
|
1978
|
+
Orientation acceleration limit in rad/s².
|
|
1979
|
+
"""
|
|
1946
1980
|
orientation_jerk: float | None = None
|
|
1947
1981
|
"""
|
|
1982
|
+
Orientation jerk limit in rad/s³.
|
|
1983
|
+
|
|
1948
1984
|
> **NOTE**
|
|
1949
1985
|
>
|
|
1950
1986
|
> This limit type is experimental and its behavior may change in future releases.
|
|
@@ -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.dev54
|
|
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.dev54
|
|
35
35
|
|
|
36
36
|
## Requirements.
|
|
37
37
|
Python >=3.9, Python < 4.0
|
{wandelbots_api_client-26.6.0.dev52.dist-info → wandelbots_api_client-26.6.0.dev54.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=9AuS2mZ4a5fmbumMuK52rhgMvCj_hPrfaAIayj1Ecks,7914
|
|
3
|
-
wandelbots_api_client/v2/__init__.py,sha256=
|
|
3
|
+
wandelbots_api_client/v2/__init__.py,sha256=Mw9KiumE1XAxlR4bu1SMzvzud6ECfR4X_6Ihscs0Wmc,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=MlnvO5uowTQxvtOjeNMsnhOTrB8zr-vZLUEMMomHKNc,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=evjHQWN48zB9cLrE5TgjzfnsG8GIjZq23pwo8XIRAsc,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
|
|
@@ -71,7 +71,7 @@ wandelbots_api_client/v2/models/bus_ios_state.py,sha256=st831QL96BOETvr1rIZdtN0M
|
|
|
71
71
|
wandelbots_api_client/v2/models/bus_ios_state_enum.py,sha256=qoB4vwa_spVIz3tCp9MTmYWNR7vAsTdAmQc0-wSf1NM,914
|
|
72
72
|
wandelbots_api_client/v2/models/capability_entry.py,sha256=Ywsx3KkQbo3o7GyQKvf7fh9iy6PvZvl0cAhs5NVCDWY,2943
|
|
73
73
|
wandelbots_api_client/v2/models/capsule.py,sha256=dXpffO6bfkaB42noxwZ0ZLVDzA7XA0UvyNGt4bTFlfY,3156
|
|
74
|
-
wandelbots_api_client/v2/models/cartesian_limits.py,sha256=
|
|
74
|
+
wandelbots_api_client/v2/models/cartesian_limits.py,sha256=_dbhDq1YPr1Ir6CnoEKwNyf8vaYcckXmdRt0tp65-f0,3995
|
|
75
75
|
wandelbots_api_client/v2/models/cartesian_velocity.py,sha256=N5vDStSHZq9UapPi1SPdfMTlV-mO32WO8XmA34BBxgo,3017
|
|
76
76
|
wandelbots_api_client/v2/models/cell.py,sha256=SLSGOxSjNHjfcsovR8IXJX35eZGdfbHBDM7TkG0ANkU,5615
|
|
77
77
|
wandelbots_api_client/v2/models/cloud_config_status.py,sha256=3ekBU8MA8h7vLC8xMhTrQFhhmqjfGI_VkH1GTGcoOik,6716
|
|
@@ -229,7 +229,7 @@ wandelbots_api_client/v2/models/jogging_paused_near_singularity.py,sha256=kQMj1E
|
|
|
229
229
|
wandelbots_api_client/v2/models/jogging_paused_on_io.py,sha256=QTea7znfVtneFQP6_1QUAS31hGexTnorDgggv17llKc,2686
|
|
230
230
|
wandelbots_api_client/v2/models/jogging_running.py,sha256=2kfib7qWWn7MpxguvPsrOlL2xadWdOckeuT-UfO_cVE,2642
|
|
231
231
|
wandelbots_api_client/v2/models/joint_limit_exceeded_error.py,sha256=aADZMwn8pY3yYlxrVbB1pjLJtc8h6xvNn7E3Cq4iLyY,3377
|
|
232
|
-
wandelbots_api_client/v2/models/joint_limits.py,sha256=
|
|
232
|
+
wandelbots_api_client/v2/models/joint_limits.py,sha256=aNop7lkaMNWPns12XABCLLPxJsLo_dOH_0eECxjX-1Y,3698
|
|
233
233
|
wandelbots_api_client/v2/models/joint_ptp_motion.py,sha256=zxcg1RQrFgMntZnmaY4_UwPWf8H_WfpcIxwRU5SweyE,3784
|
|
234
234
|
wandelbots_api_client/v2/models/joint_trajectory.py,sha256=S6I2q6zl4GYmTgHO2zBKhygfzgirsc5NEjvhgAll0VU,3061
|
|
235
235
|
wandelbots_api_client/v2/models/joint_type_enum.py,sha256=-lNqYhM-IdqO5woXrdv9TzZFQIbTH9ufo8Bf7k2_lTo,723
|
|
@@ -252,7 +252,7 @@ wandelbots_api_client/v2/models/kuka_status_and_turn_bits.py,sha256=Iow1RV8fhpVs
|
|
|
252
252
|
wandelbots_api_client/v2/models/license.py,sha256=5E8t2S2IEPb4SHEQwQ4Ms38plOJHp8TkmRaahvFMI6Y,4591
|
|
253
253
|
wandelbots_api_client/v2/models/license_status.py,sha256=F5CIzHj88A9lSJUKQAdb8CdIDIgBgo_SmTDUUpviFkM,2552
|
|
254
254
|
wandelbots_api_client/v2/models/license_status_enum.py,sha256=XrhkLwPTbQOTPzj5S8cLxsHaXDBZp3nQiFwJckUsTzg,795
|
|
255
|
-
wandelbots_api_client/v2/models/limit_range.py,sha256=
|
|
255
|
+
wandelbots_api_client/v2/models/limit_range.py,sha256=SeLp7a08p2DPY31cPdwb74XrcMg9-zGXFYqIjxoBIQE,2749
|
|
256
256
|
wandelbots_api_client/v2/models/limit_set.py,sha256=aXg4feOVDlmmANpDUb7CsmkfuMI2foTlYIpM6GftfEY,4490
|
|
257
257
|
wandelbots_api_client/v2/models/limits_override.py,sha256=_aC4-UGq7YOn0ns06CbghnaywEDA_k6lU4v9HlgLtAY,5533
|
|
258
258
|
wandelbots_api_client/v2/models/link_chain_value.py,sha256=RJCt4rBgWRoeYIqKhlzbUL8hRfjjzTZN5N_ZORBub5Q,3712
|
|
@@ -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=Xkg_6jNISB4R6wq1N4RFaiJgohcduH9ua5bUO3Cdom8,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=0mHTp9WQGZZTDRA6DT-7Yg7ZnAFEkCxw0z2yQ5v35R0,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=Q6MUak2tCJjuklIPjvPxKn2bz_aPlIiOPeV8f-BNMWA,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=0B2dqmGHHzof4c2ew-u3YrpSKB-JwOaDQx4y5Dq-EqQ,22659
|
|
475
|
+
wandelbots_api_client/v2_pydantic/models/models.py,sha256=DxnaA9zyZ6KZ5ebPb-ExyHFi2D_Zjqg1pwtkBjqX9ZM,212758
|
|
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.dev54.dist-info/WHEEL,sha256=WvwXFgRajeoYkfRVmDhkP4Qlqo31Mk687zIO2QQoFmw,80
|
|
479
|
+
wandelbots_api_client-26.6.0.dev54.dist-info/METADATA,sha256=l6JcI9A91cEqD7Jz6B1MD3kzF8_DPhaDTpRiGnJFEss,1411
|
|
480
|
+
wandelbots_api_client-26.6.0.dev54.dist-info/RECORD,,
|
{wandelbots_api_client-26.6.0.dev52.dist-info → wandelbots_api_client-26.6.0.dev54.dist-info}/WHEEL
RENAMED
|
File without changes
|