npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@uipath/node-red-contrib-uipath-orchestrator

v2.2.1

Published

A wrapper for the UiPath Orchestrator

Downloads

64

Readme

Orchestrator-RED

A Node-RED wrapper for the UiPath Orchestrator API

Release Notes

v2.2.0

  • SUPPORT FOR FOLDERS: Orchestrator version 19.10 brought the concept of Folders, which sequester resources within a tenant. Now, our Request and Start-Job nodes support this with a Folder field in which users can specify a folder by name.
  • Users with Orchestrators below v19.10 who still want to use Organization Units can specify an org unit by putting X-UiPath-OrganizationUnitId in the parameter list of a node. Note that the Default folder ID is different for every tenant. Use the Orchestrator API to retrieve this ID.

v2.1.1

  • The Request node now wraps the 2019.12 API, which includes several new calls.

v2.0.0

  • Now supports both Cloud and On-Premise Orchestrators, which use different authentication schemes. For more information, see the official UiPath documentation here.
  • BREAKING CHANGE: The URL field no longer defaults to https://platform.uipath.com. Connection nodes without a value in the URL field will fail.

Install

  1. Install Node.js and node-RED.

  2. Navigate to your node-RED directory and run npm install @uipath/node-red-contrib-uipath-orchestrator OR

  3. Start node-RED, navigate to the hamburger menu in the top right corner, select Manage Palette, and add the UiPath Orchestrator nodes.

Nodes

Connection

A configuration node that authenticates all calls made to Orchestrator and automatically refreshes API tokens when needed.

ON PREMISE

  • URL: The URL of your Orchestrator instance.
  • Tenant: Your tenant
  • Username: Your username
  • Password: Your password. This value is encrypted when the flow is saved.

CLOUD

  • User Key: The secret key that identifies your user.
  • Account: The logical name of your account at https://platform.uipath.com.
  • Tenant: The logical name of the tenant (AKA service) to which you want to connect. Each account may support multiple tenants
  • Client ID: The unique identifier of https://platform.uipath.com.

Request

A wrapper of the full Orchestrator API allowing any request to be made. Currently configured for v2019.12.

  • Login: The connection node used to authenticate all calls.
  • Folder: The name of the folder in which to operate (defaults to "Default").
  • Category: The targeted Orchestrator element (e.g. robots, queues, assets)
  • Action: The list of actions available in the selected category (e.g. Get All, Add to queue, Delete Asset)
  • Parameters: optional Input parameters for the specified action. Formatted as per the Swagger guidelines

Start Job

A convenience node that starts a Job.

  • Login: The connection node used to authenticate.
  • Folder: The name of the folder in which to operate (defaults to "Default").
  • Process: The name and environment of the process to be run. If no environment is provided, the first one found to contain the selected process will be used. As of 2018.3, input parameters are available when starting a Job.
  • Robot(s): The robot scheme used to run the job. You may specify robots by name, quantity, or run on all robots. If an incorrect robot name is specified, no jobs will run. If a larger number of robots than are available is specified to run, the job will proceed on all robots.

Output Messages

The raw JSON output of each API call is included in the msg.payload in order to expose all details.