@uipath/flow-tool 0.1.8 → 0.1.10

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.
package/README.md CHANGED
@@ -334,11 +334,11 @@ uip flow registry get "uipath.connector.slack.send-message" \
334
334
  uip flow registry pull --output-filter "NodesCount"
335
335
  ```
336
336
 
337
- Combine with `--format json` to get clean JSON output:
337
+ Combine with `--output json` to get clean JSON output:
338
338
 
339
339
  ```bash
340
340
  uip flow registry get "uipath.connector.slack.send-message" \
341
- --output-filter "Node.inputDefinition.fields" --format json
341
+ --output-filter "Node.inputDefinition.fields" --output json
342
342
  ```
343
343
 
344
344
  ---
@@ -357,11 +357,11 @@ uip flow registry search slack --filter "displayname:contains=send" \
357
357
  # Pick the uipath.connector.* variant for direct flow use.
358
358
 
359
359
  # 3. Inspect the full schema (with IS enrichment if logged in)
360
- uip flow registry get "uipath.connector.slack.send-message" --format json
360
+ uip flow registry get "uipath.connector.slack.send-message" --output json
361
361
 
362
362
  # 4. Extract just the input fields to build a request body
363
363
  uip flow registry get "uipath.connector.slack.send-message" \
364
- --output-filter "Node.inputDefinition.fields" --format json
364
+ --output-filter "Node.inputDefinition.fields" --output json
365
365
  ```
366
366
 
367
367
  ---