Skip to content

DOCS-3769: Add clarification to UpdateRobot #4149

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/parse_flutter.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ def parse(self, type, viam_resources, args):
if resource not in unsupported_resources:

soup = make_soup(url)
if not soup:
print(f"DEBUG: No soup for {url}")
continue

if resource in flutter_resource_overrides:
flutter_resource = flutter_resource_overrides[resource]
Expand Down
2 changes: 2 additions & 0 deletions static/include/app/apis/generated/app.md
Original file line number Diff line number Diff line change
Expand Up @@ -1447,6 +1447,7 @@ For more information, see the [TypeScript SDK Docs](https://ts.viam.dev/classes/
### UpdateRobotPart

Change the name of and assign an optional new configuration to a machine {{< glossary_tooltip term_id="part" text="part" >}}.
You can only change the name and configuration of the machine part, not the location.

{{< tabs >}}
{{% tab name="Python" %}}
Expand Down Expand Up @@ -1855,6 +1856,7 @@ For more information, see the [TypeScript SDK Docs](https://ts.viam.dev/classes/
### UpdateRobot

Change the name of an existing machine.
You can only change the name of the machine, not the location.

{{< tabs >}}
{{% tab name="Python" %}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Change the name of an existing machine.
You can only change the name of the machine, not the location.
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Change the name of and assign an optional new configuration to a machine {{< glossary_tooltip term_id="part" text="part" >}}.
You can only change the name and configuration of the machine part, not the location.
Loading