Update api spec (#145)

* YOYO NEW API SPEC!

* updates

Signed-off-by: Jess Frazelle <github@jessfraz.com>

---------

Signed-off-by: Jess Frazelle <github@jessfraz.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
Jess Frazelle
2023-09-29 15:51:03 -07:00
committed by GitHub
parent ba3fb82a86
commit 29b0200c4c
155 changed files with 4306 additions and 7842 deletions

View File

@ -2,11 +2,12 @@ from typing import Any, Dict, List, Type, TypeVar, Union
import attr
from ..models.angle import Angle
from ..models.point2d import Point2d
from ..models.point3d import Point3d
from ..types import UNSET, Unset
KR = TypeVar("KR", bound="line")
EQ = TypeVar("EQ", bound="line")
@attr.s(auto_attribs=True)
@ -14,6 +15,7 @@ class line:
"""A straight line segment. Goes from the current path "pen" to the given endpoint.""" # noqa: E501
end: Union[Unset, Point3d] = UNSET
relative: Union[Unset, bool] = False
type: str = "line"
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
@ -21,6 +23,7 @@ class line:
def to_dict(self) -> Dict[str, Any]:
if not isinstance(self.end, Unset):
end = self.end
relative = self.relative
type = self.type
field_dict: Dict[str, Any] = {}
@ -28,12 +31,14 @@ class line:
field_dict.update({})
if end is not UNSET:
field_dict["end"] = end
if relative is not UNSET:
field_dict["relative"] = relative
field_dict["type"] = type
return field_dict
@classmethod
def from_dict(cls: Type[KR], src_dict: Dict[str, Any]) -> KR:
def from_dict(cls: Type[EQ], src_dict: Dict[str, Any]) -> EQ:
d = src_dict.copy()
_end = d.pop("end", UNSET)
end: Union[Unset, Point3d]
@ -42,10 +47,13 @@ class line:
else:
end = _end # type: ignore[arg-type]
relative = d.pop("relative", UNSET)
type = d.pop("type", UNSET)
line = cls(
end=end,
relative=relative,
type=type,
)
@ -69,7 +77,7 @@ class line:
return key in self.additional_properties
MG = TypeVar("MG", bound="arc")
UW = TypeVar("UW", bound="arc")
@attr.s(auto_attribs=True)
@ -80,6 +88,7 @@ class arc:
angle_start: Union[Unset, float] = UNSET
center: Union[Unset, Point2d] = UNSET
radius: Union[Unset, float] = UNSET
relative: Union[Unset, bool] = False
type: str = "arc"
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
@ -90,6 +99,7 @@ class arc:
if not isinstance(self.center, Unset):
center = self.center
radius = self.radius
relative = self.relative
type = self.type
field_dict: Dict[str, Any] = {}
@ -103,12 +113,14 @@ class arc:
field_dict["center"] = center
if radius is not UNSET:
field_dict["radius"] = radius
if relative is not UNSET:
field_dict["relative"] = relative
field_dict["type"] = type
return field_dict
@classmethod
def from_dict(cls: Type[MG], src_dict: Dict[str, Any]) -> MG:
def from_dict(cls: Type[UW], src_dict: Dict[str, Any]) -> UW:
d = src_dict.copy()
angle_end = d.pop("angle_end", UNSET)
@ -123,6 +135,8 @@ class arc:
radius = d.pop("radius", UNSET)
relative = d.pop("relative", UNSET)
type = d.pop("type", UNSET)
arc = cls(
@ -130,6 +144,7 @@ class arc:
angle_start=angle_start,
center=center,
radius=radius,
relative=relative,
type=type,
)
@ -153,7 +168,7 @@ class arc:
return key in self.additional_properties
UE = TypeVar("UE", bound="bezier")
MD = TypeVar("MD", bound="bezier")
@attr.s(auto_attribs=True)
@ -163,6 +178,7 @@ class bezier:
control1: Union[Unset, Point3d] = UNSET
control2: Union[Unset, Point3d] = UNSET
end: Union[Unset, Point3d] = UNSET
relative: Union[Unset, bool] = False
type: str = "bezier"
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
@ -174,6 +190,7 @@ class bezier:
control2 = self.control2
if not isinstance(self.end, Unset):
end = self.end
relative = self.relative
type = self.type
field_dict: Dict[str, Any] = {}
@ -185,12 +202,14 @@ class bezier:
field_dict["control2"] = control2
if end is not UNSET:
field_dict["end"] = end
if relative is not UNSET:
field_dict["relative"] = relative
field_dict["type"] = type
return field_dict
@classmethod
def from_dict(cls: Type[UE], src_dict: Dict[str, Any]) -> UE:
def from_dict(cls: Type[MD], src_dict: Dict[str, Any]) -> MD:
d = src_dict.copy()
_control1 = d.pop("control1", UNSET)
control1: Union[Unset, Point3d]
@ -213,12 +232,15 @@ class bezier:
else:
end = _end # type: ignore[arg-type]
relative = d.pop("relative", UNSET)
type = d.pop("type", UNSET)
bezier = cls(
control1=control1,
control2=control2,
end=end,
relative=relative,
type=type,
)
@ -242,4 +264,150 @@ class bezier:
return key in self.additional_properties
PathSegment = Union[line, arc, bezier]
HD = TypeVar("HD", bound="tangential_arc")
@attr.s(auto_attribs=True)
class tangential_arc:
"""Adds a tangent arc from current pen position with the given radius and angle.""" # noqa: E501
offset: Union[Unset, Angle] = UNSET
radius: Union[Unset, float] = UNSET
type: str = "tangential_arc"
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
def to_dict(self) -> Dict[str, Any]:
if not isinstance(self.offset, Unset):
offset = self.offset
radius = self.radius
type = self.type
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update({})
if offset is not UNSET:
field_dict["offset"] = offset
if radius is not UNSET:
field_dict["radius"] = radius
field_dict["type"] = type
return field_dict
@classmethod
def from_dict(cls: Type[HD], src_dict: Dict[str, Any]) -> HD:
d = src_dict.copy()
_offset = d.pop("offset", UNSET)
offset: Union[Unset, Angle]
if isinstance(_offset, Unset):
offset = UNSET
else:
offset = _offset # type: ignore[arg-type]
radius = d.pop("radius", UNSET)
type = d.pop("type", UNSET)
tangential_arc = cls(
offset=offset,
radius=radius,
type=type,
)
tangential_arc.additional_properties = d
return tangential_arc
@property
def additional_keys(self) -> List[str]:
return list(self.additional_properties.keys())
def __getitem__(self, key: str) -> Any:
return self.additional_properties[key]
def __setitem__(self, key: str, value: Any) -> None:
self.additional_properties[key] = value
def __delitem__(self, key: str) -> None:
del self.additional_properties[key]
def __contains__(self, key: str) -> bool:
return key in self.additional_properties
UJ = TypeVar("UJ", bound="tangential_arc_to")
@attr.s(auto_attribs=True)
class tangential_arc_to:
"""Adds a tangent arc from current pen position to the new position.""" # noqa: E501
angle_snap_increment: Union[Unset, Angle] = UNSET
to: Union[Unset, Point3d] = UNSET
type: str = "tangential_arc_to"
additional_properties: Dict[str, Any] = attr.ib(init=False, factory=dict)
def to_dict(self) -> Dict[str, Any]:
if not isinstance(self.angle_snap_increment, Unset):
angle_snap_increment = self.angle_snap_increment
if not isinstance(self.to, Unset):
to = self.to
type = self.type
field_dict: Dict[str, Any] = {}
field_dict.update(self.additional_properties)
field_dict.update({})
if angle_snap_increment is not UNSET:
field_dict["angle_snap_increment"] = angle_snap_increment
if to is not UNSET:
field_dict["to"] = to
field_dict["type"] = type
return field_dict
@classmethod
def from_dict(cls: Type[UJ], src_dict: Dict[str, Any]) -> UJ:
d = src_dict.copy()
_angle_snap_increment = d.pop("angle_snap_increment", UNSET)
angle_snap_increment: Union[Unset, Angle]
if isinstance(_angle_snap_increment, Unset):
angle_snap_increment = UNSET
else:
angle_snap_increment = _angle_snap_increment # type: ignore[arg-type]
_to = d.pop("to", UNSET)
to: Union[Unset, Point3d]
if isinstance(_to, Unset):
to = UNSET
else:
to = _to # type: ignore[arg-type]
type = d.pop("type", UNSET)
tangential_arc_to = cls(
angle_snap_increment=angle_snap_increment,
to=to,
type=type,
)
tangential_arc_to.additional_properties = d
return tangential_arc_to
@property
def additional_keys(self) -> List[str]:
return list(self.additional_properties.keys())
def __getitem__(self, key: str) -> Any:
return self.additional_properties[key]
def __setitem__(self, key: str, value: Any) -> None:
self.additional_properties[key] = value
def __delitem__(self, key: str) -> None:
del self.additional_properties[key]
def __contains__(self, key: str) -> bool:
return key in self.additional_properties
PathSegment = Union[line, arc, bezier, tangential_arc, tangential_arc_to]