- Visão geral
- Introdução
- Conceitos
- Usando o UiPath CLI
- Guias de instruções
- Receitas de CI/CD
- Referência de comando
- Visão geral
- Códigos de saída
- Opções globais
- Agente de código uip
- uip coder
- uip context-grounding
- Documento da UIP
- uip function
- uip guardrails
- uip llm-configuration
- uip llm-gateway
- uip model-hub
- adicionar-tipo-dados-de-teste
- adicionar-dados-de-teste-fila
- adicionar-teste-variação de dados
- Analisar
- Criar
- criar projeto
- Comparação
- encontrar atividades
- obter-analisador-regras
- obter-padrão-atividade-xaml
- obter-erros
- obter-casos-de-teste-manuais
- obter-etapas-de-teste-manual
- get-library-object-repository
- get-object-repository
- Obter versões
- obter-fluxo-de-trabalho-exemplo
- indicar aplicativo
- indicar elemento
- inspecionar pacote
- instalar-data-fabric-entities
- instalar-ou-atualizar pacotes
- listar-data-fabric-entities
- list-instances
- listar-exemplos-de-fluxo-de-trabalho
- Empacotar
- Publicar
- remote
- restore
- run, debug & execution
- arquivo de execução
- modelos-pesquisar
- Iniciar Studio
- interromper a execução
- tm
- UIA
- uip tasks
- Traces da UIP
- uip traces feedback
- Migração
- Referência e suporte
Syntax and options for `uip maestro bpmn refresh`, which regenerates a Maestro project's package metadata files to match its .bpmn file.
uip maestro bpmn refresh updates a project's package metadata files (entry-points.json, bindings_v2.json, operate.json, package-descriptor.json) so they match the current state of the project's .bpmn file. This is the current, non-deprecated replacement for update-metadata. It's registered under the bpmn branch.
Resumo
uip maestro bpmn refresh <project-path>
uip maestro bpmn refresh <project-path>
Recebe opções globais. Os códigos de saída seguem o contrato padrão.
Argumentos
<project-path>(required) — path to the Maestro Process Orchestration project directory (not a single.bpmnfile).
Exemplos
uip maestro bpmn refresh ./invoice-orchestration
uip maestro bpmn refresh ./invoice-orchestration
Formato dos dados (--output json)
{
"Code": "BpmnRefresh",
"Data": {
"Status": "Updated BPMN package files",
"ProjectPath": "/workspace/invoice-orchestration",
"BpmnFile": "invoice-orchestration.bpmn",
"WrittenFiles": ["entry-points.json", "bindings_v2.json", "operate.json", "package-descriptor.json"],
"UnchangedFiles": []
}
}
{
"Code": "BpmnRefresh",
"Data": {
"Status": "Updated BPMN package files",
"ProjectPath": "/workspace/invoice-orchestration",
"BpmnFile": "invoice-orchestration.bpmn",
"WrittenFiles": ["entry-points.json", "bindings_v2.json", "operate.json", "package-descriptor.json"],
"UnchangedFiles": []
}
}
WrittenFiles lists only the metadata files that actually changed; files already matching the .bpmn file's current state are listed in UnchangedFiles instead.
On failure, the response uses Code: "BpmnRefreshFailed" with Message/Instructions.
Veja também
uip maestro bpmn update-metadata— deprecated predecessor of this commanduip maestro bpmn validate— structurally validate the.bpmnfile firstuip maestro bpmn pack— pack the project once metadata is current- Visão geral do Maestro