From c4b51b26e4dfcf1a3849292c459942585d902d55 Mon Sep 17 00:00:00 2001 From: Alexandru Nica Date: Thu, 7 May 2026 23:34:24 +0300 Subject: [PATCH] docs(uipath-platform): revert --all-fields PascalCase note PR #612 (merged) added a note saying `--all-fields` returns PascalCase keys, matching the curated casing convention. The corresponding CLI change was reverted in cli/PR#1884 (the helper sat under core-cli ownership and the cross-team approval requirement wasn't worth the casing-consistency win), so `--all-fields` returns raw camelCase API DTO again. Drop the now-inaccurate note. Co-Authored-By: Claude Opus 4.7 (1M context) --- skills/uipath-platform/references/orchestrator/orchestrator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skills/uipath-platform/references/orchestrator/orchestrator.md b/skills/uipath-platform/references/orchestrator/orchestrator.md index 4afcb3318..450482f24 100644 --- a/skills/uipath-platform/references/orchestrator/orchestrator.md +++ b/skills/uipath-platform/references/orchestrator/orchestrator.md @@ -17,7 +17,7 @@ All `uip or` commands share a set of cross-cutting options: | `--limit ` | List commands | Number of items to return (default 50). | | `--offset ` | List commands | Number of items to skip for pagination. | | `--order-by ` | List commands | OData-style sort (e.g., `'Name asc'`, `'Id desc'`). | -| `--all-fields` | Most get/list commands | Return the full API DTO (PascalCase keys) instead of the curated summary. Output casing matches the curated default — no casing flip when toggling the flag. Use when you need a field not in the default output. | +| `--all-fields` | Most get/list commands | Return the full API DTO instead of the curated summary. Use when you need a field not in the default output. | | `--output-filter ` | All commands | JMESPath expression to filter/reshape JSON output (e.g., `--output-filter "Data[].Key"`). | **Pagination pattern.** List responses include a `Pagination` block with `Returned`, `Limit`, `Offset`, and `HasMore`. When `HasMore` is `true`, increment `--offset` by `--limit` and fetch again. Continue until `HasMore` is `false` or `Returned < Limit`.