- Información general
- Comience ya
- Conceptos
- Uso de UiPath CLI
- Guías prácticas
- Recetas de CI/CD
- Referencia de los comandos
- Información general
- Códigos de salida
- Opciones globales
- agente de código UIP
- uip coder
- uip context-grounding
- UIP Docsai
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- añadir-entidad-de-datos-de-prueba
- añadir-cola-de-datos-de-prueba
- añadir-variación-de-datos-de-prueba
- Analizar
- Crear
- Crear proyecto
- Diferencia
- Buscar actividades
- obtener-reglas-del-analizador
- obtener-predeterminado-actividad-xaml
- obtener-errores
- obtener-casos-de-prueba-manual
- obtener-pasos-de-prueba-manual
- get-library-object-repository
- get-object-repository
- obtener versiones
- get-workflow-example
- indicar-aplicación
- indicar-elemento
- inspeccionar-paquete
- install-data-fabric-entities
- instalar-o-actualizar-paquetes
- enumerar-data-fabric-entities
- list-instances
- ejemplos-de-flujo-de-trabajo-de-lista
- Paquete
- Publicar
- remote
- restore
- run, debug & execution
- archivo de ejecución
- plantillas-de-búsqueda
- iniciar-studio
- detener la ejecución
- tm
- UIA
- uip tasks
- Seguimientos de UIP
- uip traces feedback
- Migración
- Referencia y soporte
Syntax and options for `uip is typecache`, which lists connectors and activities from the Studio typecache for a given project type.
uip is typecache reads the Studio typecache — the curated activity catalog Studio itself uses for activity discovery — filtered by project type (for example Agent). It's a separate source from uip is connectors/uip is activities: those read the Integration Service connector catalog directly, while typecache reads the same catalog Studio's designer surfaces, scoped to what a given project type can use. Results are cached per-project-type-and-tenant; pass --refresh to re-fetch.
Sinopsis
uip is typecache <verb> [options]
uip is typecache <verb> [options]
Verbos
| Verbo | Propósito |
|---|---|
packages | List connectors available to a project type. |
activities | List activities for one connector, for a project type. |
uip is typecache packages
List the connectors available to a given project type.
Argumentos
Nada.
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
| — | --refresh | Marca | Desactivado | Fuerza la nueva recuperación desde la API, ignorando la caché. |
| — | --project-type | Tipo | Agent | Project type to query. |
Ejemplos
uip is typecache packages --project-type Agent
uip is typecache packages --project-type Agent
# Just the connector keys
uip is typecache packages --project-type Agent \
--output-filter 'Data[].Key'
# Just the connector keys
uip is typecache packages --project-type Agent \
--output-filter 'Data[].Key'
Forma de datos (--json de salida)
{
"Code": "ConnectorList",
"Data": [
{ "Key": "uipath-salesforce-sfdc", "Name": "Salesforce" }
]
}
{
"Code": "ConnectorList",
"Data": [
{ "Key": "uipath-salesforce-sfdc", "Name": "Salesforce" }
]
}
uip is typecache activities
List the activities available for one connector, for a given project type.
Argumentos
| Nombre | Obligatorio | Propósito |
|---|---|---|
<connector-key> | Sí | Clave del conector, por ejemplo uipath-salesforce-sfdc. Encuéntralo con typecache packages. |
Opciones
| Corto | Largo | Valor | Predeterminado | Descripción |
|---|---|---|---|---|
| — | --refresh | Marca | Desactivado | Fuerza la nueva recuperación desde la API, ignorando la caché. |
| — | --project-type | Tipo | Agent | Project type to query. Must match the project type the connector was looked up under — the command resolves the connector's package ID from the typecache packages list for the same project type. |
Ejemplos
uip is typecache activities uipath-salesforce-sfdc --project-type Agent
uip is typecache activities uipath-salesforce-sfdc --project-type Agent
Forma de datos (--json de salida)
{
"Code": "ActivityList",
"Data": [
{
"DisplayName": "Create Case",
"Description": "Create a Salesforce case",
"ObjectName": "create_case",
"MethodName": "POST",
"Operation": "N/A"
}
]
}
{
"Code": "ActivityList",
"Data": [
{
"DisplayName": "Create Case",
"Description": "Create a Salesforce case",
"ObjectName": "create_case",
"MethodName": "POST",
"Operation": "N/A"
}
]
}
Description, MethodName, and Operation fall back to "N/A" when the underlying activity configuration doesn't set them. If the connector isn't available for the given project type, the command returns an empty list with Instructions pointing at typecache packages --project-type <type> to see what is available — it does not error.
Relacionado
uip is connectors— the Integration Service connector catalog (a different source than the Studio typecache).uip is activities— the connector-catalog equivalent of this page'sactivitiesverb.