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

@entaconsulting/rpaforms-connect-sdk

v2.1.2

Published

SDK for simplifing the use or RPA Forms Connect in JS apps.

Downloads

71

Readme

RPA Forms Connect SDK

Esta librería permite incorporar las funcionalidades de RPA Forms Connect en cualquier aplicación Javascript.

Instalación

Paquete Node

npm install @entaconsulting/rpaforms-connect-sdk

yarn add @entaconsulting/rpaforms-connect-sdk

Referencia global

<script src="https://unpkg.com/@entaconsulting/rpaforms-connect-sdk"></script>

En el caso de utilizar el sdk como referencia global, todas las funciones se encuentran disponibles dentro del espacio de nombres "rpaFormsConnectSdk". Por ejemplo:

rpaFormsConnectSdk.authentication.selectAccount();

Ver ejemplo de este tipo de uso en samples/html-static

Configurar autenticación Azure AD

Registrar una nueva aplicación Azure AD

  1. En el portal Azure, registrar una nueva aplicación en Azure AD
  2. Copiar el Client ID de la aplicación registrada, que se utilizará más adelante en la inicialización del SDK

Configurar autenticación SPA

  1. En la sección "Autenticación" de la configuración del registro de aplicación Azure AD, agregar plataforma "Single Page Application" y configurar la URL de redirección a la ruta de la aplicación. Esta ruta debe coincidir con la página en donde se inicializará el SDK.

    Por ejemplo: https://myconnectapp.entaconsulting.com/

Asignar permiso de acceso a la API RPA Forms

En la sección "Permisos de API" de la configuración del registro de aplicación Azure AD

  1. Agregar un permiso
  2. Seleccionar "APIs que usa mi organización"
  3. Buscar y seleccionar "RPA Forms" (b782e2e8-9682-4898-b211-a304714f4f6b)
  4. Seleccionar "Permisos delegados"
  5. Seleccionar permiso "access_as_user"
  6. Finalmente seleccionar "Otorgar consentimiento de administrador" (esto sólo puede hacerlo un administrador global de Azure)

Inicializar SDK

El SDK debe ser configurado al cargar la página donde será utilizado.

initialize({
    authentication: {
      clientId: "{0000000-0000-0000-000000000000}",
      authority: "https://login.microsoftonline.com/<ID tenant Azure>",
      redirectUri: "<URI de la página donde se inicializa el SDK>",
    }
  });

clientId

Es el ClientID de la app registrada anteriormente en el paso Registrar una nueva aplicación Azure AD.

authority

Es la URL de Microsoft Identity seguida del ID del tenant donde se registró tu aplicación

redirectUri

Es la URI de la página donde se inicializa el SDK, y debe coincidir con la URL de redirección configurada en el paso Configurar autenticación SPA.

Referencia

https://entaconsulting.github.io/rpaforms-connect-sdk/

Repositorio

https://github.com/entaconsulting/rpaforms-connect-sdk