# Versión 141855

**Se ha lanzado una nueva versión de Sherpa Orchestrator: Versión 141855.**

1\. En el Constructor de Acciones (Form Designer), en la pantalla de Acciones (Actions), se ha introducido un nuevo tipo de widget — HTML/JavaScript, que permite implementar elementos de interfaz personalizados con apariencia y comportamiento únicos.

Por ejemplo, si se completa la ventana de configuración del elemento:

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXcvm5QdSjtBpqcchZlpLxGLgS_2jarTDU-AAkejTCMt-Q5_vxhboycyMpo0fa-z3WtsVQLe413x0hp-nwEmD4eTf_oEdAteXVFUqy-fxkUR8MK5FYJzBCuSyL2UDYdPw4iq776ChQ?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

Entonces en la pantalla de Acciones (Actions) aparecerá lo siguiente:

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXdoThFpBKmP1yJOnTGNf2AGEt3XJUkYrqCKzvw9F2r69dwPXV_1RQkqWun-L9kVr1bDu3d0iA_a67OmtiGKjS-2rgkEFVBc_AAnUwt2u2i0qbosdw57pUBvxx4ntFm0QTw2yyMFdA?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

A continuación se presenta un ejemplo con elementos de control añadidos (por ejemplo, radio y select) y el atributo name, para seleccionar entre opciones y realizar el procesamiento según el valor seleccionado:

```html
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Selección de opción</title>
</head>
<body>

  <h2>Seleccione una opción</h2>
  <!-- Botones de radio con el mismo atributo name -->
  <label>
    <input type="radio" name="variant" value="1" checked /> Opción 1
  </label>
  <label>
    <input type="radio" name="variant" value="2" /> Opción 2
  </label>

  <h3>Ingrese su nombre</h3>
  <input type="text" id="userNameInput" placeholder="Su nombre" />

  <button id="showGreeting">Mostrar saludo</button>

  <div id="greetingArea" style="margin-top:20px; font-weight: bold;"></div>

  <script>
    // Opciones de plantillas
    const templates = {
      '1': '<p>Opción 1: ¡Hola, {{ user_name }}! Esta es la primera opción.</p>',
      '2': '<p>Opción 2: ¡Hola, {{ user_name }}! Esta es la segunda opción.</p>'
    };

    document.getElementById('showGreeting').addEventListener('click', () => {
      // Obtenemos la opción seleccionada por el atributo name
      const selectedRadio = document.querySelector('input[name="variant"]:checked');
      const variant = selectedRadio ? selectedRadio.value : '1';

      // Obtenemos el nombre del Usuario
      const userName = document.getElementById('userNameInput').value.trim() || 'usuario';

      // Elegimos la plantilla según la opción
      const template = templates[variant];

      // Reemplazamos el placeholder
      const html = template.replace('{{ user_name }}', userName);

      // Insertamos el resultado
      document.getElementById('greetingArea').innerHTML = html;
    });
  </script>

</body>
</html>
```

Al ejecutar este código, podrá alternar entre las opciones de salida del mensaje:

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXe3zSAWBIlHIWtBbAHZVb-HwVtQ-ule-cVHY2praRDrSu2C5-KVf7DmwnELjKjQFpVe35DWOURRsmvDFDUp_QSK5ivtvxqN8WP1S17cczLU5mAeChb9qGzRNUqqqYmzJM8e5cVSjQ?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXd0O_YwRDbj7247yXqdol3FDiEMdvG7b1WGK0j8IQxh8sHJgICytb31afq3pd75psy10pijzN6_XRznQb0cb6nYktLMAU7tnPt5hszGlaZNXkgw3TtAulL2SSJDtqdnGk4N_xmXJQ?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

> El código que escriba en este campo puede modificar la apariencia de la interfaz del Orquestador. Utilice esta funcionalidad con precaución para evitar efectos no deseados.

Para indicar o vincular una propiedad de objeto en HTML se utiliza la sintaxis de dobles llaves con espacio: {{ property }}. La condición obligatoria para todos los elementos de control de entrada (input, radio, checkbox, select), relacionados con objetos anidados, es que el atributo name coincida con el nombre de la clave.

2\. En la pantalla de Auditoría (Audit) se ha añadido una nueva columna “Object GUID”, que muestra el GUID del objeto mencionado en el registro.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXcxZ9y04BufQ2Cp-PsYs1dSi9gajrmBjetYDgKPKq5CAkI4JJr9G4N8oVhSEclkHXNLJ7hIHFyJ2iVXQCXzjGC5IKWKiZGqL6nmq6tlPD9Kyb51NSjkqkMZQaxK3CuIFpZCTNXf?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

Al hacer clic en este campo en la fila correspondiente de la tabla de Auditoría (Audit), se puede acceder a la pantalla del objeto mencionado, donde será destacado:

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXeBPfsOfForLWc_mlgdWfvqU2wK-jpQX4Afg3xGb9dxNgp2TV1k62w4IWJJaoPhAtgya86HMv0mi-6BKgvBxE1hln2BYr-x8_8YvlNTw4aJ8LeeVv24h4OwycCilHowT-etrjdv7w?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXeKZkJkwvs0mgh5o_s70oJeYoCSX9PigmUzUsGgR6tU4U_sMSmioo2aGXal4fdIAcW8k1n2msKRzf71TCJRsMRaXYVlsfodCNPLB3S9CK4cPajIcJboCbWq2_Quony8ApGyr6yzRw?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

3\. Además, ahora todas las acciones realizadas a través de la API también se registran en Auditoría (Audit).

4\. En todas las tablas en las pantallas del Orquestador se ha cambiado el formato de visualización de la hora a \<dd-mm-yyyy 00:00:00>, lo que mejora la legibilidad de la información y hace que trabajar con los datos sea más simple y comprensible para el Usuario.

Por ejemplo,

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXelzlLFZiGkvSppStVmY3Ge9hvasMRxNyGnFtxXnC_YA8HAD5u7yvDntuCz8hN94FzUBgBss3NgvBa5x1XRvZoI8hYilAZ7tWCSpcYE0TFyzQ59rwB45lRfzCNPRc-db5uqHARP?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

5\. En la pantalla de Disparadores (Triggers), al crear y editar Disparadores, se ha añadido la configuración "Máximo número de ejecuciones por mes" (Max monthly runs), que permite limitar el número de activaciones del Disparador en un mes. Por ejemplo, si se establece 1 en el campo, al aplicar la opción de programación "Cada N-ésimo día del mes", el Disparador se activará una vez y solo en el día N especificado.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXetKKA2tzpcuIRImO_gmYoQYRhBkq6gA5ekNgTNbyaRS53SCp7UMEt7oD8OqKU1FXJJOQ-0UKtxGSywQCaHQnoYPo7KfdUy869o5bbxgq6gnYY2Mz_WgAwQJOP5Ojvoyd8GJe05-A?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

6\. Se ha añadido un registro opcional del historial de estados de los Robots. Para ello, en la configuración (`backend/config/config.ini`) es necesario añadir el parámetro: `robot_status_logging=1`.

La tabla de Registros está disponible en: `su-dirección-orquestador/main/robot-status-logs`.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXd5jbe3hKF64LWh7aBq7S1U4fuxxsxLs2JZWaLF78aFG2QdtOmsCQ8Og1a0xvB8Zse62YoQBYPq2qH_YnBHqOo5IWiwm8hhCKviI1gZsuBzivcpaRZG0UuI3HNaLcH1qH6KHkGNig?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

7\. En la pantalla de Licencias (Licenses), en la configuración de licencias, las opciones "Denegar la ejecución de código C#, VB, Python y PowerShell en scripts" (Deny C#, VB, Python and PowerShell code execution within process) y "Forzar el registro en todos los bloques" (Force logging in all blocks) ahora también están disponibles para el modo Unattended.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXex9zs7aAsrM2cBKQZkftjUtNVjWsSRI6EKll23m7KVLeDOFA4ZtMGdtHsFj7RnzG22gj5A_gy2SBeB1izF6mOgGEXOoL8c-WKmKLpjsIW62k_OnDEQMYF1ZxxueXVVbuxV940uBA?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

8\. En la pantalla de Trabajos (Jobs), se ha añadido una columna "Último mensaje" (Last message) en la tabla, que muestra el último mensaje del Robot que está ejecutando dicho Trabajo.

<figure><img src="https://lh7-rt.googleusercontent.com/docsz/AD_4nXeD7mFq_k1c4ZbBGt2ur1Gtb-IqZBVWRvaUetE6O-7MR1EniRDktsRtHitJ-buvVfxLg3xSELI7ajvqS2ZBZhNGUKak4r20ToRoVQuK-ccfSVKgcWGvIzsIjYVaQOPO0ZNevDn4DA?key=O1W9738DYevyQCZnmilgrw" alt=""><figcaption></figcaption></figure>

9\. Se han realizado múltiples mejoras que aumentan la seguridad del sistema.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sherparpa.ru/es/obnovleniya/obnovleniya-sherpa-orchestrator/versiya-141855.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
