Skip to content

Commit 3d0ae2a

Browse files
pyansys-ci-bottfs_caslserviceRobPasMue
authored
sync: file sync performed by ansys-tools-repo-sync (#163)
Co-authored-by: tfs_caslservice <tfs_caslservice@cdcw22cslbld02> Co-authored-by: Roberto Pastor Muela <37798125+RobPasMue@users.noreply.github.com>
1 parent 45d2802 commit 3d0ae2a

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

ansys/api/geometry/v0/bodies.proto

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ service Bodies
105105
rpc GetClosestSeparation(GetClosestSeparationRequest) returns (Separation);
106106

107107
rpc GetTessellationWithOptions(GetTessellationRequest) returns(GetTessellationResponse);
108+
109+
rpc ExportAndDownloadBody(ExportAndDownloadBodyRequest) returns (ExportAndDownloadBodyResponse);
108110
}
109111

110112
message CreateSurfaceBodyFromTrimmedCurvesRequest {
@@ -358,4 +360,13 @@ message GetClosestSeparationRequest {
358360
message GetTessellationRequest{
359361
ansys.api.dbu.v0.EntityIdentifier id=1;
360362
TessellationOptions options =2;
363+
}
364+
365+
message ExportAndDownloadBodyRequest{
366+
ansys.api.dbu.v0.EntityIdentifier id=1;
367+
ansys.api.dbu.v0.BodyExportFormat format = 2;
368+
}
369+
370+
message ExportAndDownloadBodyResponse{
371+
bytes data=1;
361372
}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ requires = [
33
"setuptools >= 42.0.0",
44
"wheel",
55
"ansys_tools_protoc_helper>=0.4.0",
6-
"ansys-api-dbu==0.3.18",
6+
"ansys-api-dbu==0.3.19",
77
]
88
build-backend = "setuptools.build_meta:__legacy__"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
url=f"https://github.com/ansys/{package_name}",
4040
license="MIT",
4141
python_requires=">=3.10",
42-
install_requires=["grpcio~=1.44", "protobuf>=3.19,<7", "ansys-api-dbu==0.3.18"],
42+
install_requires=["grpcio~=1.44", "protobuf>=3.19,<7", "ansys-api-dbu==0.3.19"],
4343
packages=setuptools.find_namespace_packages(".", include=("ansys.*",)),
4444
package_data={
4545
"": ["*.proto", "*.pyi", "py.typed", "VERSION"],

0 commit comments

Comments
 (0)