@uipath/skills 1.195.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +33 -0
- package/.claude-plugin/plugin.json +34 -0
- package/CODEOWNERS +141 -0
- package/LICENSE +21 -0
- package/README.md +164 -0
- package/agents/uipath-project-discovery-agent.md +333 -0
- package/assets/cli-versions.json +15 -0
- package/assets/uip-catalog-snapshot.json +1275 -0
- package/commands/install-permissions.md +97 -0
- package/hooks/ensure-uip.sh +220 -0
- package/hooks/hooks.json +23 -0
- package/hooks/suggest-permissions.sh +36 -0
- package/hooks/validate-skill-descriptions.sh +58 -0
- package/package.json +44 -0
- package/skills/uipath-admin/SKILL.md +217 -0
- package/skills/uipath-admin/references/audit-commands.md +216 -0
- package/skills/uipath-admin/references/audit-workflow-guide.md +297 -0
- package/skills/uipath-admin/references/authorization/authorization-commands.md +443 -0
- package/skills/uipath-admin/references/authorization/check-access.md +139 -0
- package/skills/uipath-admin/references/authorization/grant-permissions.md +132 -0
- package/skills/uipath-admin/references/authorization/permission-catalog.md +62 -0
- package/skills/uipath-admin/references/authorization/role-assignment-management.md +178 -0
- package/skills/uipath-admin/references/authorization/role-management.md +308 -0
- package/skills/uipath-admin/references/external-app-management.md +142 -0
- package/skills/uipath-admin/references/group-management.md +67 -0
- package/skills/uipath-admin/references/identity-commands.md +662 -0
- package/skills/uipath-admin/references/ip-restriction/bypass-rule-management.md +80 -0
- package/skills/uipath-admin/references/ip-restriction/enforcement-management.md +86 -0
- package/skills/uipath-admin/references/ip-restriction/ip-range-management.md +125 -0
- package/skills/uipath-admin/references/ip-restriction/ip-restriction-commands.md +318 -0
- package/skills/uipath-admin/references/organization-management.md +146 -0
- package/skills/uipath-admin/references/organizations-commands.md +175 -0
- package/skills/uipath-admin/references/pat-management.md +73 -0
- package/skills/uipath-admin/references/robot-account-management.md +36 -0
- package/skills/uipath-admin/references/smtp-management.md +73 -0
- package/skills/uipath-admin/references/tenant-management.md +308 -0
- package/skills/uipath-admin/references/tenants-commands.md +354 -0
- package/skills/uipath-admin/references/user-management.md +105 -0
- package/skills/uipath-agents/SKILL.md +79 -0
- package/skills/uipath-agents/assets/solutions/metadata.json +199 -0
- package/skills/uipath-agents/references/authentication.md +83 -0
- package/skills/uipath-agents/references/coded/capabilities/batch-transform/api-reference.md +38 -0
- package/skills/uipath-agents/references/coded/capabilities/batch-transform/impl-python.md +115 -0
- package/skills/uipath-agents/references/coded/capabilities/batch-transform/planning.md +90 -0
- package/skills/uipath-agents/references/coded/capabilities/context-grounding.md +253 -0
- package/skills/uipath-agents/references/coded/capabilities/conversational-agents.md +86 -0
- package/skills/uipath-agents/references/coded/capabilities/deeprag/api-reference.md +38 -0
- package/skills/uipath-agents/references/coded/capabilities/deeprag/impl-python.md +117 -0
- package/skills/uipath-agents/references/coded/capabilities/deeprag/planning.md +58 -0
- package/skills/uipath-agents/references/coded/capabilities/file-attachments.md +99 -0
- package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails-recommend.md +284 -0
- package/skills/uipath-agents/references/coded/capabilities/guardrails/guardrails.md +250 -0
- package/skills/uipath-agents/references/coded/capabilities/human-in-the-loop.md +208 -0
- package/skills/uipath-agents/references/coded/capabilities/integration-service.md +318 -0
- package/skills/uipath-agents/references/coded/capabilities/process-invocation.md +131 -0
- package/skills/uipath-agents/references/coded/capabilities/sdk-services.md +244 -0
- package/skills/uipath-agents/references/coded/capabilities/tracing.md +247 -0
- package/skills/uipath-agents/references/coded/embedding-in-flows.md +97 -0
- package/skills/uipath-agents/references/coded/flow-integration.md +88 -0
- package/skills/uipath-agents/references/coded/frameworks/agent-patterns.md +411 -0
- package/skills/uipath-agents/references/coded/frameworks/coded-functions.md +240 -0
- package/skills/uipath-agents/references/coded/frameworks/langgraph-integration.md +411 -0
- package/skills/uipath-agents/references/coded/frameworks/llamaindex-integration.md +404 -0
- package/skills/uipath-agents/references/coded/frameworks/openai-agents-integration.md +365 -0
- package/skills/uipath-agents/references/coded/lifecycle/bindings-reference.md +1114 -0
- package/skills/uipath-agents/references/coded/lifecycle/build.md +54 -0
- package/skills/uipath-agents/references/coded/lifecycle/deployment.md +143 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluate.md +101 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/best-practices.md +222 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/creating-evaluations.md +187 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluation-sets.md +203 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/evaluators.md +321 -0
- package/skills/uipath-agents/references/coded/lifecycle/evaluations/running-evaluations.md +145 -0
- package/skills/uipath-agents/references/coded/lifecycle/file-sync.md +109 -0
- package/skills/uipath-agents/references/coded/lifecycle/local-workspace.md +67 -0
- package/skills/uipath-agents/references/coded/lifecycle/running-agents.md +92 -0
- package/skills/uipath-agents/references/coded/lifecycle/setup.md +126 -0
- package/skills/uipath-agents/references/coded/quickstart.md +333 -0
- package/skills/uipath-agents/references/coded-vs-lowcode-guide.md +115 -0
- package/skills/uipath-agents/references/context-grounding-patterns.md +52 -0
- package/skills/uipath-agents/references/lowcode/agent-definition.md +388 -0
- package/skills/uipath-agents/references/lowcode/agent-prompting-guide.md +149 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/analyze-attachments.md +115 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/api-reference.md +38 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/impl-json.md +97 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/batch-transform/planning.md +62 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/built-in-tools.md +75 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/api-reference.md +38 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/impl-json.md +84 -0
- package/skills/uipath-agents/references/lowcode/capabilities/built-in-tools/deeprag/planning.md +49 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/attachments.md +54 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/context.md +40 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/datafabric.md +52 -0
- package/skills/uipath-agents/references/lowcode/capabilities/context/index.md +264 -0
- package/skills/uipath-agents/references/lowcode/capabilities/escalation/escalation.md +268 -0
- package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails-recommend.md +227 -0
- package/skills/uipath-agents/references/lowcode/capabilities/guardrails/guardrails.md +1107 -0
- package/skills/uipath-agents/references/lowcode/capabilities/inline-in-flow/inline-in-flow.md +371 -0
- package/skills/uipath-agents/references/lowcode/capabilities/integration-service/integration-service.md +350 -0
- package/skills/uipath-agents/references/lowcode/capabilities/memory/memory.md +186 -0
- package/skills/uipath-agents/references/lowcode/capabilities/process/process.md +257 -0
- package/skills/uipath-agents/references/lowcode/capabilities/process/solution-files.md +548 -0
- package/skills/uipath-agents/references/lowcode/critical-rules.md +76 -0
- package/skills/uipath-agents/references/lowcode/evaluations/evaluate.md +91 -0
- package/skills/uipath-agents/references/lowcode/evaluations/evaluation-sets.md +153 -0
- package/skills/uipath-agents/references/lowcode/evaluations/evaluators.md +280 -0
- package/skills/uipath-agents/references/lowcode/evaluations/orchestrator-eval-run.md +210 -0
- package/skills/uipath-agents/references/lowcode/evaluations/running-evaluations.md +207 -0
- package/skills/uipath-agents/references/lowcode/lowcode.md +101 -0
- package/skills/uipath-agents/references/lowcode/model-selection-guide.md +69 -0
- package/skills/uipath-agents/references/lowcode/project-lifecycle.md +408 -0
- package/skills/uipath-agents/references/lowcode/solution-resources.md +290 -0
- package/skills/uipath-api-workflow/SKILL.md +313 -0
- package/skills/uipath-api-workflow/assets/templates/api-workflow-template.json +58 -0
- package/skills/uipath-api-workflow/assets/templates/conditional-workflow-example.json +276 -0
- package/skills/uipath-api-workflow/assets/templates/connector-call-example.json +125 -0
- package/skills/uipath-api-workflow/assets/templates/loop-aggregation-example.json +184 -0
- package/skills/uipath-api-workflow/assets/templates/nested-control-flow-example.json +292 -0
- package/skills/uipath-api-workflow/assets/templates/solution-connection-resource-template.json +28 -0
- package/skills/uipath-api-workflow/assets/templates/vendor-curated-call-example.json +105 -0
- package/skills/uipath-api-workflow/references/cli-reference.md +421 -0
- package/skills/uipath-api-workflow/references/connector-activity-discovery.md +750 -0
- package/skills/uipath-api-workflow/references/control-flow-patterns.md +265 -0
- package/skills/uipath-api-workflow/references/expressions-and-context.md +269 -0
- package/skills/uipath-api-workflow/references/http-retry-config.md +156 -0
- package/skills/uipath-api-workflow/references/task-types.md +482 -0
- package/skills/uipath-api-workflow/references/troubleshooting.md +628 -0
- package/skills/uipath-api-workflow/references/workflow-file-format.md +205 -0
- package/skills/uipath-coded-apps/SKILL.md +186 -0
- package/skills/uipath-coded-apps/assets/templates/action-app-template.md +303 -0
- package/skills/uipath-coded-apps/assets/templates/web-app-template.md +333 -0
- package/skills/uipath-coded-apps/references/commands-reference.md +284 -0
- package/skills/uipath-coded-apps/references/create-action-app.md +344 -0
- package/skills/uipath-coded-apps/references/create-web-app.md +212 -0
- package/skills/uipath-coded-apps/references/debug.md +513 -0
- package/skills/uipath-coded-apps/references/file-sync.md +165 -0
- package/skills/uipath-coded-apps/references/oauth-client-setup.md +671 -0
- package/skills/uipath-coded-apps/references/oauth-scopes.md +244 -0
- package/skills/uipath-coded-apps/references/pack-publish-deploy.md +342 -0
- package/skills/uipath-coded-apps/references/patterns.md +1023 -0
- package/skills/uipath-coded-apps/references/sdk/action-center.md +278 -0
- package/skills/uipath-coded-apps/references/sdk/conversational-agent.md +736 -0
- package/skills/uipath-coded-apps/references/sdk/data-fabric.md +244 -0
- package/skills/uipath-coded-apps/references/sdk/feedback.md +142 -0
- package/skills/uipath-coded-apps/references/sdk/imports.md +58 -0
- package/skills/uipath-coded-apps/references/sdk/maestro.md +391 -0
- package/skills/uipath-coded-apps/references/sdk/orchestrator.md +358 -0
- package/skills/uipath-coded-apps/references/sdk/pagination.md +84 -0
- package/skills/uipath-data-fabric/SKILL.md +241 -0
- package/skills/uipath-data-fabric/references/bulk-import.md +73 -0
- package/skills/uipath-data-fabric/references/choice-sets.md +138 -0
- package/skills/uipath-data-fabric/references/entity-schema.md +391 -0
- package/skills/uipath-data-fabric/references/file-attachments.md +65 -0
- package/skills/uipath-data-fabric/references/filter-platform-contract.md +55 -0
- package/skills/uipath-data-fabric/references/records-query.md +246 -0
- package/skills/uipath-feedback/SKILL.md +350 -0
- package/skills/uipath-governance/SKILL.md +91 -0
- package/skills/uipath-governance/references/access-policy/access-policy-commands.md +234 -0
- package/skills/uipath-governance/references/access-policy/access-policy-overview-guide.md +342 -0
- package/skills/uipath-governance/references/access-policy/planning-arch.md +314 -0
- package/skills/uipath-governance/references/access-policy/planning-impl.md +126 -0
- package/skills/uipath-governance/references/access-policy/plugins/actor/impl.md +203 -0
- package/skills/uipath-governance/references/access-policy/plugins/actor/planning.md +178 -0
- package/skills/uipath-governance/references/access-policy/plugins/executable/impl.md +167 -0
- package/skills/uipath-governance/references/access-policy/plugins/executable/planning.md +122 -0
- package/skills/uipath-governance/references/access-policy/plugins/selector/impl.md +169 -0
- package/skills/uipath-governance/references/access-policy/plugins/selector/planning.md +98 -0
- package/skills/uipath-governance/references/access-policy/plugins/tags/impl.md +153 -0
- package/skills/uipath-governance/references/access-policy/plugins/tags/planning.md +117 -0
- package/skills/uipath-governance/references/access-policy/policy-manage-guide.md +403 -0
- package/skills/uipath-governance/references/access-policy/resource-lookup-guide.md +289 -0
- package/skills/uipath-governance/references/access-policy/sample-policy-guide.md +119 -0
- package/skills/uipath-governance/references/aops-policy/aops-governance-recipes-guide.md +226 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-commands.md +463 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-deploy-guide.md +371 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-deployed-guide.md +135 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-manage-guide.md +425 -0
- package/skills/uipath-governance/references/aops-policy/aops-policy-overview-guide.md +280 -0
- package/skills/uipath-governance/references/aops-policy/configure-aops-policy-data-guide.md +375 -0
- package/skills/uipath-governance/references/disambiguation-guide.md +67 -0
- package/skills/uipath-human-in-the-loop/SKILL.md +322 -0
- package/skills/uipath-human-in-the-loop/references/hitl-node-apptask.md +412 -0
- package/skills/uipath-human-in-the-loop/references/hitl-node-coded-action-app.md +334 -0
- package/skills/uipath-human-in-the-loop/references/hitl-node-quickform.md +392 -0
- package/skills/uipath-human-in-the-loop/references/hitl-patterns.md +154 -0
- package/skills/uipath-ixp/SKILL.md +84 -0
- package/skills/uipath-ixp/references/cli-reference.md +113 -0
- package/skills/uipath-ixp/references/improve-prompts-guide.md +283 -0
- package/skills/uipath-ixp/references/label-documents-guide.md +175 -0
- package/skills/uipath-ixp/references/project-setup-guide.md +90 -0
- package/skills/uipath-maestro-bpmn/.maintenance/README.md +241 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-all.sh +41 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-anchors.sh +83 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-depth.sh +132 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-link-text.sh +123 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-links.sh +70 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-orphans.sh +93 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-plugin-pairs.sh +39 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-real-pack.sh +79 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-template.sh +42 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-uip-commands.sh +266 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.py +1255 -0
- package/skills/uipath-maestro-bpmn/.maintenance/check-validation-fixtures.sh +8 -0
- package/skills/uipath-maestro-bpmn/SKILL.md +75 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/README.md +94 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/agent-invocation.bpmn +62 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/bindings_v2.json +37 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/entry-points.json +21 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/agent-invocation/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/bindings_v2.json +68 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/contract-variants.bpmn +270 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/contract-variants/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/bindings_v2.json +19 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/gateway-boundary-error.bpmn +91 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/gateway-boundary-error/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/bindings_v2.json +4 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/imported-brownfield-preservation.bpmn +63 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/imported-brownfield-preservation/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/bindings_v2.json +52 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/entry-points.json +21 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/integration-service-enriched.bpmn +65 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/integration-service-enriched/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/bindings_v2.json +4 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/linear-process.bpmn +55 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/linear-process/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/bindings_v2.json +20 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/entry-points.json +17 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/registry-coverage-matrix/registry-coverage-matrix.bpmn +207 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/bindings_v2.json +4 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/entry-points.json +33 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/subprocess-multi-instance/subprocess-multi-instance.bpmn +94 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/bindings_v2.json +124 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/entry-points.json +25 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/operate.json +9 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/package-descriptor.json +10 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/project.uiproj +7 -0
- package/skills/uipath-maestro-bpmn/fixtures/validation/wrapper-family-contract/wrapper-family-contract.bpmn +151 -0
- package/skills/uipath-maestro-bpmn/references/author/CAPABILITY.md +141 -0
- package/skills/uipath-maestro-bpmn/references/author/references/brownfield.md +48 -0
- package/skills/uipath-maestro-bpmn/references/author/references/editing-operations.md +75 -0
- package/skills/uipath-maestro-bpmn/references/author/references/greenfield.md +41 -0
- package/skills/uipath-maestro-bpmn/references/author/references/planning-arch.md +82 -0
- package/skills/uipath-maestro-bpmn/references/author/references/planning-impl.md +104 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/impl.md +34 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/agents/planning.md +38 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/impl.md +37 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/api-workflows/planning.md +28 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/impl.md +36 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/business-rules/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/impl.md +67 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/call-activity-subprocess/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/impl.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/connectors/planning.md +33 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/impl.md +32 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/gateways/planning.md +34 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/impl.md +42 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/hitl/planning.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/impl.md +134 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/integration-service/planning.md +67 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/impl.md +50 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/multi-instance/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/impl.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/queues/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/impl.md +35 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/rpa-jobs/planning.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/impl.md +118 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/script/planning.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/impl.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/sequence-flows/planning.md +30 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/impl.md +33 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/service-tasks/planning.md +31 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/impl.md +33 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/signals/planning.md +46 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/impl.md +59 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/start-end-events/planning.md +37 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/impl.md +40 -0
- package/skills/uipath-maestro-bpmn/references/author/references/plugins/waits-triggers/planning.md +34 -0
- package/skills/uipath-maestro-bpmn/references/author/references/supported-elements.md +123 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/README.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/agent-job.md +36 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/api-workflow.md +29 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/business-rule.md +18 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/call-activity.md +56 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/hitl.md +17 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/http-request.md +119 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/queue.md +21 -0
- package/skills/uipath-maestro-bpmn/references/author/references/task-recipes/rpa-job.md +23 -0
- package/skills/uipath-maestro-bpmn/references/author/references/validation.md +118 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/CAPABILITY.md +91 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/references/failure-modes.md +129 -0
- package/skills/uipath-maestro-bpmn/references/diagnose/references/troubleshooting-guide.md +159 -0
- package/skills/uipath-maestro-bpmn/references/operate/CAPABILITY.md +91 -0
- package/skills/uipath-maestro-bpmn/references/operate/references/manage.md +71 -0
- package/skills/uipath-maestro-bpmn/references/operate/references/run.md +122 -0
- package/skills/uipath-maestro-bpmn/references/operate/references/ship.md +119 -0
- package/skills/uipath-maestro-bpmn/references/shared/bpmn-xml-contract.md +197 -0
- package/skills/uipath-maestro-bpmn/references/shared/cli-conventions.md +46 -0
- package/skills/uipath-maestro-bpmn/references/shared/error-handling.md +82 -0
- package/skills/uipath-maestro-bpmn/references/shared/expression-authoring.md +95 -0
- package/skills/uipath-maestro-bpmn/references/shared/local-metadata-regeneration-guide.md +181 -0
- package/skills/uipath-maestro-bpmn/references/shared/project-layout.md +58 -0
- package/skills/uipath-maestro-bpmn/references/shared/public-safety.md +29 -0
- package/skills/uipath-maestro-bpmn/references/shared/variables-bindings-expressions.md +150 -0
- package/skills/uipath-maestro-bpmn/references/shared/wrapper-shells.md +554 -0
- package/skills/uipath-maestro-case/SKILL.md +196 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-template-examples.md +489 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-template.md +524 -0
- package/skills/uipath-maestro-case/assets/templates/sdd-viewer.html +1519 -0
- package/skills/uipath-maestro-case/references/bindings-and-expressions.md +171 -0
- package/skills/uipath-maestro-case/references/bindings-v2-sync.md +142 -0
- package/skills/uipath-maestro-case/references/case-commands.md +476 -0
- package/skills/uipath-maestro-case/references/case-editing-operations.md +329 -0
- package/skills/uipath-maestro-case/references/case-schema.md +591 -0
- package/skills/uipath-maestro-case/references/case-spec-input-details.md +495 -0
- package/skills/uipath-maestro-case/references/connector-integration.md +157 -0
- package/skills/uipath-maestro-case/references/connector-trigger-common.md +477 -0
- package/skills/uipath-maestro-case/references/evals/evals.json +91 -0
- package/skills/uipath-maestro-case/references/implementation.md +327 -0
- package/skills/uipath-maestro-case/references/phase-0-interview.md +548 -0
- package/skills/uipath-maestro-case/references/phased-execution.md +263 -0
- package/skills/uipath-maestro-case/references/placeholder-tasks.md +195 -0
- package/skills/uipath-maestro-case/references/planning.md +374 -0
- package/skills/uipath-maestro-case/references/plugins/case/impl-json.md +369 -0
- package/skills/uipath-maestro-case/references/plugins/case/planning.md +78 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/impl-json.md +95 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/case-exit-conditions/planning.md +69 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/impl-json.md +90 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-entry-conditions/planning.md +60 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/impl-json.md +110 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/stage-exit-conditions/planning.md +74 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/impl-json.md +104 -0
- package/skills/uipath-maestro-case/references/plugins/conditions/task-entry-conditions/planning.md +55 -0
- package/skills/uipath-maestro-case/references/plugins/edges/impl-json.md +152 -0
- package/skills/uipath-maestro-case/references/plugins/edges/planning.md +93 -0
- package/skills/uipath-maestro-case/references/plugins/logging/impl-json.md +67 -0
- package/skills/uipath-maestro-case/references/plugins/sla/impl-json.md +164 -0
- package/skills/uipath-maestro-case/references/plugins/sla/planning.md +189 -0
- package/skills/uipath-maestro-case/references/plugins/stages/impl-json.md +164 -0
- package/skills/uipath-maestro-case/references/plugins/stages/planning.md +100 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/action/impl-json.md +90 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/action/planning.md +81 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/agent/impl-json.md +66 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/agent/planning.md +49 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/impl-json.md +64 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/api-workflow/planning.md +47 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/case-management/impl-json.md +66 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/case-management/planning.md +52 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/impl-json.md +271 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-activity/planning.md +202 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/impl-json.md +131 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/connector-trigger/planning.md +51 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/process/impl-json.md +64 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/process/planning.md +60 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/rpa/impl-json.md +65 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/rpa/planning.md +49 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/impl-json.md +97 -0
- package/skills/uipath-maestro-case/references/plugins/tasks/wait-for-timer/planning.md +70 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/event/impl-json.md +176 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/event/planning.md +55 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/manual/impl-json.md +139 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/manual/planning.md +38 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/timer/impl-json.md +127 -0
- package/skills/uipath-maestro-case/references/plugins/triggers/timer/planning.md +77 -0
- package/skills/uipath-maestro-case/references/plugins/variables/bindings/impl-json.md +141 -0
- package/skills/uipath-maestro-case/references/plugins/variables/global-vars/impl-json.md +437 -0
- package/skills/uipath-maestro-case/references/plugins/variables/global-vars/planning.md +119 -0
- package/skills/uipath-maestro-case/references/plugins/variables/io-binding/impl-json.md +255 -0
- package/skills/uipath-maestro-case/references/plugins/variables/io-binding/planning.md +80 -0
- package/skills/uipath-maestro-case/references/registry-discovery.md +170 -0
- package/skills/uipath-maestro-case/references/sdd-generation-rules.md +803 -0
- package/skills/uipath-maestro-case/references/troubleshooting-guide.md +119 -0
- package/skills/uipath-maestro-flow/.maintenance/README.md +258 -0
- package/skills/uipath-maestro-flow/.maintenance/check-all.sh +40 -0
- package/skills/uipath-maestro-flow/.maintenance/check-anchors.sh +83 -0
- package/skills/uipath-maestro-flow/.maintenance/check-depth.sh +132 -0
- package/skills/uipath-maestro-flow/.maintenance/check-link-text.sh +123 -0
- package/skills/uipath-maestro-flow/.maintenance/check-links.sh +70 -0
- package/skills/uipath-maestro-flow/.maintenance/check-orphans.sh +93 -0
- package/skills/uipath-maestro-flow/.maintenance/check-plugin-pairs.sh +39 -0
- package/skills/uipath-maestro-flow/.maintenance/check-template.sh +42 -0
- package/skills/uipath-maestro-flow/.maintenance/check-uip-commands.sh +270 -0
- package/skills/uipath-maestro-flow/.maintenance/check-versions.sh +160 -0
- package/skills/uipath-maestro-flow/SKILL.md +96 -0
- package/skills/uipath-maestro-flow/references/author/CAPABILITY.md +181 -0
- package/skills/uipath-maestro-flow/references/author/references/brownfield.md +77 -0
- package/skills/uipath-maestro-flow/references/author/references/editing-operations-cli.md +183 -0
- package/skills/uipath-maestro-flow/references/author/references/editing-operations-json.md +542 -0
- package/skills/uipath-maestro-flow/references/author/references/editing-operations.md +131 -0
- package/skills/uipath-maestro-flow/references/author/references/greenfield.md +345 -0
- package/skills/uipath-maestro-flow/references/author/references/planning-arch.md +557 -0
- package/skills/uipath-maestro-flow/references/author/references/planning-impl.md +302 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agent/impl.md +189 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agent/planning.md +83 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agentic-process/impl.md +111 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/agentic-process/planning.md +61 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/api-workflow/impl.md +111 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/api-workflow/planning.md +60 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/batch-transform/impl.md +174 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/batch-transform/planning.md +72 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/data-fabric/impl.md +683 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/data-fabric/planning.md +45 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/impl.md +681 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector/planning.md +135 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/impl.md +495 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/connector-trigger/planning.md +113 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/decision/impl.md +62 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/decision/planning.md +38 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/delay/impl.md +75 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/delay/planning.md +53 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/end/impl.md +65 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/end/planning.md +28 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/flow/impl.md +111 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/flow/planning.md +58 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/impl.md +204 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/hitl/planning.md +144 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/http/impl.md +196 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/http/planning.md +102 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/impl.md +479 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/inline-agent/planning.md +103 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/ixp/impl.md +326 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/ixp/planning.md +90 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/loop/impl.md +242 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/loop/planning.md +52 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/merge/impl.md +43 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/merge/planning.md +29 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/queue/impl.md +94 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/queue/planning.md +44 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/rpa/impl.md +120 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/rpa/planning.md +61 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/scheduled-trigger/impl.md +79 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/scheduled-trigger/planning.md +56 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/script/impl.md +90 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/script/planning.md +42 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/subflow/impl.md +234 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/subflow/planning.md +34 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/summarize/impl.md +198 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/summarize/planning.md +71 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/switch/impl.md +60 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/switch/planning.md +38 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/terminate/impl.md +45 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/terminate/planning.md +29 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/transform/impl.md +274 -0
- package/skills/uipath-maestro-flow/references/author/references/plugins/transform/planning.md +47 -0
- package/skills/uipath-maestro-flow/references/diagnose/CAPABILITY.md +69 -0
- package/skills/uipath-maestro-flow/references/diagnose/references/failure-modes.md +283 -0
- package/skills/uipath-maestro-flow/references/diagnose/references/troubleshooting-guide.md +115 -0
- package/skills/uipath-maestro-flow/references/evaluate/CAPABILITY.md +132 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/commands-reference.md +306 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/eval-sets-guide.md +226 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/evaluators-guide.md +143 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/running-guide.md +215 -0
- package/skills/uipath-maestro-flow/references/evaluate/references/upload-safety.md +82 -0
- package/skills/uipath-maestro-flow/references/operate/CAPABILITY.md +76 -0
- package/skills/uipath-maestro-flow/references/operate/references/manage.md +39 -0
- package/skills/uipath-maestro-flow/references/operate/references/run.md +99 -0
- package/skills/uipath-maestro-flow/references/operate/references/ship.md +57 -0
- package/skills/uipath-maestro-flow/references/shared/action-nodes.md +92 -0
- package/skills/uipath-maestro-flow/references/shared/cli-commands.md +369 -0
- package/skills/uipath-maestro-flow/references/shared/cli-conventions.md +168 -0
- package/skills/uipath-maestro-flow/references/shared/file-format.md +530 -0
- package/skills/uipath-maestro-flow/references/shared/node-output-wiring.md +138 -0
- package/skills/uipath-maestro-flow/references/shared/ux-narration-and-todos.md +150 -0
- package/skills/uipath-maestro-flow/references/shared/variables-and-expressions.md +726 -0
- package/skills/uipath-mcp-servers/SKILL.md +93 -0
- package/skills/uipath-mcp-servers/references/is-activity-workflow.md +158 -0
- package/skills/uipath-planner/SKILL.md +142 -0
- package/skills/uipath-planner/references/multi-skill-patterns-guide.md +143 -0
- package/skills/uipath-planner/references/non-pdd-lane-guide.md +184 -0
- package/skills/uipath-planner/references/pdd-driven-lane-guide.md +168 -0
- package/skills/uipath-planner/references/plan-and-tasks-format.md +228 -0
- package/skills/uipath-platform/SKILL.md +286 -0
- package/skills/uipath-platform/references/integration-service/activities.md +223 -0
- package/skills/uipath-platform/references/integration-service/agent-workflow.md +286 -0
- package/skills/uipath-platform/references/integration-service/connections.md +256 -0
- package/skills/uipath-platform/references/integration-service/connector-overrides/README.md +45 -0
- package/skills/uipath-platform/references/integration-service/connector-overrides/uipath-microsoft-teams.md +29 -0
- package/skills/uipath-platform/references/integration-service/connector-overrides/uipath-salesforce-slack.md +43 -0
- package/skills/uipath-platform/references/integration-service/connectors.md +121 -0
- package/skills/uipath-platform/references/integration-service/http-request.md +116 -0
- package/skills/uipath-platform/references/integration-service/integration-service.md +83 -0
- package/skills/uipath-platform/references/integration-service/reference-resolution.md +316 -0
- package/skills/uipath-platform/references/integration-service/resources.md +237 -0
- package/skills/uipath-platform/references/integration-service/triggers.md +235 -0
- package/skills/uipath-platform/references/licensing/consumables-report.md +217 -0
- package/skills/uipath-platform/references/licensing/licensing.md +103 -0
- package/skills/uipath-platform/references/licensing/tenant-allocations.md +152 -0
- package/skills/uipath-platform/references/licensing/user-licenses-allocations.md +323 -0
- package/skills/uipath-platform/references/llmgateway/byo-connections.md +226 -0
- package/skills/uipath-platform/references/orchestrator/manage-sessions.md +217 -0
- package/skills/uipath-platform/references/orchestrator/orchestrator.md +130 -0
- package/skills/uipath-platform/references/orchestrator/run-jobs.md +332 -0
- package/skills/uipath-platform/references/orchestrator/setup-environment.md +410 -0
- package/skills/uipath-platform/references/orchestrator/tenant-admin.md +225 -0
- package/skills/uipath-platform/references/resources/manage-assets.md +277 -0
- package/skills/uipath-platform/references/resources/process-queues.md +302 -0
- package/skills/uipath-platform/references/resources/resources.md +116 -0
- package/skills/uipath-platform/references/resources/triggers-and-webhooks.md +277 -0
- package/skills/uipath-platform/references/resources/work-with-storage.md +258 -0
- package/skills/uipath-platform/references/traces/feedback.md +144 -0
- package/skills/uipath-platform/references/traces/traces.md +50 -0
- package/skills/uipath-platform/references/uip-commands.md +127 -0
- package/skills/uipath-review/SKILL.md +535 -0
- package/skills/uipath-review/references/agents/agent-common-issues.md +359 -0
- package/skills/uipath-review/references/agents/agent-review-checklist.md +362 -0
- package/skills/uipath-review/references/architecture-assessment-guide.md +192 -0
- package/skills/uipath-review/references/coded-apps/coded-app-review-checklist.md +134 -0
- package/skills/uipath-review/references/devops-readiness-checklist.md +55 -0
- package/skills/uipath-review/references/document-understanding/du-review-checklist.md +227 -0
- package/skills/uipath-review/references/flows/flow-common-issues.md +280 -0
- package/skills/uipath-review/references/flows/flow-review-checklist.md +316 -0
- package/skills/uipath-review/references/platform/platform-resources-checklist.md +407 -0
- package/skills/uipath-review/references/review-workflow-guide.md +512 -0
- package/skills/uipath-review/references/rpa/long-running-workflow-issues.md +101 -0
- package/skills/uipath-review/references/rpa/modern-studio-issues.md +135 -0
- package/skills/uipath-review/references/rpa/rpa-advanced-checklist.md +338 -0
- package/skills/uipath-review/references/rpa/rpa-common-issues.md +748 -0
- package/skills/uipath-review/references/rpa/rpa-review-checklist.md +482 -0
- package/skills/uipath-review/references/solution-review-guide.md +392 -0
- package/skills/uipath-rpa/CLAUDE.md +86 -0
- package/skills/uipath-rpa/SKILL.md +460 -0
- package/skills/uipath-rpa/assets/before-after-hooks-template.md +115 -0
- package/skills/uipath-rpa/assets/codedworkflow-template.md +186 -0
- package/skills/uipath-rpa/assets/helper-utility-template.md +22 -0
- package/skills/uipath-rpa/assets/json-template.md +91 -0
- package/skills/uipath-rpa/assets/testcase-template.md +92 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/active-directory.md +118 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/api.md +569 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ActiveDirectory.Activities/1.7/coded/examples.md +393 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/amazon-web-services.md +314 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/api.md +998 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWebServices.Activities/2.9/coded/examples.md +417 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/amazon-workspaces.md +127 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/api.md +223 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AmazonWorkSpaces.Activities/1.5/coded/examples.md +249 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/api.md +1241 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/azure.md +109 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Azure.Activities/1.7/coded/examples.md +594 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/api.md +637 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/azure-active-directory.md +96 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureActiveDirectory.Activities/1.6/coded/examples.md +629 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/api.md +368 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/azure-wvd.md +257 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.AzureWVD.Activities/1.5/coded/examples.md +336 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Callout.Activities/26.0/README.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Callout.Activities/26.0/activities.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/api.md +452 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/citrix.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Citrix.Activities/1.5/coded/examples.md +549 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRange.md +16 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AppendRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFillX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/AutoFitX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangeDataRangeModification.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ChangePivotTableDataSourceX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ClearRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CopyPasteRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreatePivotTableXv2.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/CreateTableX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteColumnX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteRowsX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DeleteSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/DuplicateSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelApplicationCard.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelForEachRowX.md +26 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExcelProcessScopeX.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroArgumentX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExecuteMacroX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ExportExcelToCsvX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FillRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterPivotTableX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FilterX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindFirstLastDataRowX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FindReplaceValueX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ForEachRow.md +24 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ForEachSheetX.md +23 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/FormatRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertColumnX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertExcelChartX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertRowsX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InsertSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAArgumentX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/InvokeVBAX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/LookupX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/PivotTableFieldX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ProtectSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellFormulaX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadCellValueX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadRange.md +18 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/ReadRangeX.md +8 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RefreshPivotTableX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RemoveDuplicatesX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/RenameSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveAsPdfX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SaveExcelFileX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortColumnX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/SortX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UnprotectSheetX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/UpdateChartX.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/VLookupX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteCellX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteRange.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/WriteRangeX.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/activities/overview.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/examples.md +355 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/excel.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/portable-api.md +181 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.5/coded/windows-api.md +974 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AddSensitivityLabelX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendRange.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendRangeX.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AppendWriteCsvFile.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AutoFillX.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/AutoFitX.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ChangePivotTableDataSourceX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ClearRangeX.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CopyChartToClipboardX.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CopyPasteRangeX.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreateNewWorkbook.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreatePivotTable.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreatePivotTableXv2.md +106 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/CreateTableX.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteColumnX.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteRowsX.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DeleteSheetX.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/DuplicateSheetX.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelApplicationCard.md +97 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelForEachRowX.md +71 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExcelProcessScopeX.md +86 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExecuteMacroX.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ExportExcelToCsvX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FillRangeX.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FilterPivotTableX.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FilterX.md +97 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FindFirstLastDataRowX.md +65 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FindReplaceValueX.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ForEachSheetX.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/FormatRangeX.md +155 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetCellColor.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetCellColorX.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSelectedRangeX.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSensitivityLabelX.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetSheets.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/GetTableRange.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertChart.md +74 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertColumnX.md +87 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertExcelChartX.md +77 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertRowsX.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InsertSheetX.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/InvokeVBAX.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/LookupX.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/MatchFunctionX.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ProtectSheetX.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCell.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellFormula.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellFormulaX.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCellValueX.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadColumn.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadCsvFile.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRange.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRangeX.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/ReadRow.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RefreshDataConnectionsX.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RefreshPivotTableX.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RemoveDuplicatesX.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/RenameSheetX.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveAsPdfX.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveExcelFileAsX.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SaveExcelFileX.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SelectRangeX.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SetRangeColor.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/SortX.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/TextToColumnsX.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UnprotectSheetX.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UpdateChart.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/UpdateChartX.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/VLookupX.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteCell.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteCellX.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteRange.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/activities/WriteRangeX.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/coded-api.md +878 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Excel.Activities/3.6/overview.md +124 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/api.md +96 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/examples.md +170 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.ExchangeServer.Activities/1.4/coded/exchange-server.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/README.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/activities.md +147 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Forms.Activities/26.0/triggers.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ApplyEmailLabelsConnections.md +6 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ArchiveEmailConnections.md +6 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/CreateEventConnections.md +19 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/CreateSpreadsheetConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DeleteEmailConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DownloadAttachmentsConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/DownloadFileConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/EmailSent.md +8 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ForEachEmailConnections.md +12 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ForEachFileFolderConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetFileFolderConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetFileListConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/GetNewestEmailConnections.md +12 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/MarkAsReadUnreadConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/MoveEmailConnections.md +6 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEmailReceived.md +12 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEventCreated.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewEventInvitationReceived.md +7 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/NewFileCreated.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/ReadRangeConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/RemoveEmailLabelsConnections.md +5 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/RowAddedToSheetBottom.md +11 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/SendEmailConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/TurnOffAutomaticRepliesConnections.md +3 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/TurnOnAutomaticRepliesConnections.md +7 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/UploadFilesConnections.md +9 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/WriteRangeConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/WriteRowConnections.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/activities/overview.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/api.md +613 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/examples.md +660 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GSuite.Activities/3.8/coded/gsuite.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/api.md +524 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/examples.md +369 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.GoogleCloud.Activities/2.5/coded/google-cloud.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/api.md +436 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/examples.md +503 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.HyperV.Activities/1.4/coded/hyperv.md +85 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ClassifyDocument.md +166 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateClassificationValidationTask.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateClassificationValidationTaskAndWait.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateDocumentValidationArtifacts.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateValidationTask.md +86 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/CreateValidationTaskAndWait.md +84 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ExtractDocumentData/data-type-patterns.md +224 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/ExtractDocumentData.md +249 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/RetrieveDocumentValidationArtifacts.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/WaitForClassificationValidationTaskAndResume.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/activities/WaitForValidationTaskAndResume.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.IntelligentOCR.StudioWeb.Activities/3.1/overview.md +516 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/ForEachEmailX.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/GetOutlookMailMessages.md +26 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/MoveOutlookMessage.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/OutlookApplicationCard.md +23 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/SaveMailAttachments.md +18 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/SendOutlookMail.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/activities/overview.md +71 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/examples.md +487 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/mail.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/portable-api.md +285 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Mail.Activities/2.8/coded/windows-api.md +245 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/DownloadEmailAttachments.md +24 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/GetNewestEmail.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/NewEmailReceived.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/SendMailConnections.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/activities/overview.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/api.md +748 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/examples.md +709 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MicrosoftOffice365.Activities/3.8/coded/office365.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/DrawPattern.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ElementExists.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ExecuteCommand.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetAttribute.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetDeviceOrientation.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetLogTypes.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetLogs.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetPageSource.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSelectedItem.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSessionIdentifier.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetSystemTime.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/GetText.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/InstallApp.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ManageCurrentApp.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/ManageOtherApp.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/MobileDeviceConnection.md +88 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/OpenDeepLink.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/OpenUrl.md +30 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/PositionalSwipe.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/PressHardwareButton.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetDeviceGeoLocation.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetDeviceOrientation.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetSelectedItem.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/SetText.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/Swipe.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TakeScreenshot.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TakeScreenshotPart.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/Tap.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/activities/TypeText.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.MobileAutomation.Activities/25.10/overview.md +123 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/api.md +509 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/examples.md +361 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.NetIQeDirectory.Activities/1.6/coded/netiq-edirectory.md +109 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertEmailToPDF.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertHtmlToPDF.md +91 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ConvertTextToPDF.md +95 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExportPDFPageAsImage.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExtractImagesFromPDF.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ExtractPDFPageRange.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/GetPDFPageCount.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/JoinPDF.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ManagePDFPassword.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadPDFText.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadPDFWithOCR.md +146 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadXPSText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/activities/ReadXPSWithOCR.md +135 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.PDF.Activities/4.1/overview.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/ActivateSolutionDeployment.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Analyze.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Build.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Clone.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DeleteSolutionPackage.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DeploySolution.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadPackage.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadSolutionPackage.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/DownloadSolutionPackageConfiguration.md +62 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/PublishPackage.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/PublishSolutionPackage.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/ResyncSolutionProject.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/RunExistingTestSet.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/RunTests.md +74 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/Stage.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UninstallSolution.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UpdateProcess.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/activities/UploadSolutionPackage.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Pipelines.Activities/3.0/overview.md +72 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/CopyPasteSlide.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/DeleteSlide.md +10 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/FindAndReplaceTextInPresentation.md +18 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/InsertSlide.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/InsertTextInPresentation.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/PasteIntoSlide.md +11 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/PowerPointApplicationScope.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/ReplaceShapeWithDataTable.md +21 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/ReplaceShapeWithMedia.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/RunMacro.md +24 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/SavePresentationAsPdf.md +14 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/SavePresentationFileAs.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/activities/overview.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/examples.md +680 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/portable-api.md +196 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/powerpoint.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.5/coded/windows-api.md +416 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/AddSensitivityLabel.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/CopyPasteSlide.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/DeleteSlide.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/FindAndReplaceTextInPresentation.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/FormatSlideContent.md +72 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/GetSensitivityLabel.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertFile.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertSlide.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/InsertTextInPresentation.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PasteIntoSlide.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PowerPointApplicationScope.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentAddTextToSlide.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentCreateNew.md +77 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentDeleteSlide.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentFindAndReplaceTextInPresentation.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentFormatSlideContent.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentInsertSlide.md +77 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentReplaceShapeWithDataTable.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/PptDocumentReplaceShapeWithMedia.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/ReplaceShapeWithDataTable.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/ReplaceShapeWithMedia.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/RunMacro.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/SavePresentationAsPdf.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/activities/SavePresentationFileAs.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/coded-api.md +416 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Presentations.Activities/2.6/overview.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Assign.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/CodedWorkflows.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Delay.md +21 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/DoWhile.md +16 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/ForEach.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/If.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/InvokeCode.md +182 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/InvokeWorkflowFile.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/LogMessage.md +28 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Switch.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/Throw.md +17 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/TryCatch.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/VariablesAndScoping.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/While.md +21 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/activities/overview.md +93 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/examples.md +1088 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/system.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/25.10/coded/windows-api.md +801 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddDataColumn.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddLogFields.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddOrSubtractFromDate.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddQueueItem.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AddTransactionItem.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AppendItemToCollection.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/AppendLine.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Assign.md +65 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Beep.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BeginProcess.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Break.md +25 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BuildCollection.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/BulkAddQueueItems.md +62 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ChangeCase.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ChangeType.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CheckFalse.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CheckTrue.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ClearDataTable.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CollectionToDataTable.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CombineText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Comment.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CommentOut.md +31 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CompressFiles.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Continue.md +25 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CopyFile.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CopyFolderX.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CreateDirectory.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/CreateFile.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Delay.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Delete.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DeleteQueueItems.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DeleteStorageFile.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DoWhile.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DownloadFileFromUrl.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/DownloadStorageFile.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ElseIf.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/EvaluateBusinessRule.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExistsInCollection.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractDateTime.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractFiles.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ExtractText.md +71 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FilterCollection.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FilterDataTable.md +93 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FindAndReplace.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ForEach.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ForEachRow.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FormatDateAsText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/FormatValue.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GenerateDataTable.md +76 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetCurrentJobInfo.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetEnvironmentFolder.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetEnvironmentVariable.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetJobs.md +80 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetLastDownloadedFile.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetProcesses.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetQueueItem.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetQueueItems.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRobotAsset.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRobotCredential.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetRowItem.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetSecret.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/GetUsernamePasswordX.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/If.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeCode.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeComMethod.md +63 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeProcess.md +70 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeVBScript.md +58 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/InvokeWorkflow.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/IsMatch.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/JoinDataTables.md +85 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/KillProcess.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ListStorageFiles.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/LogMessage.md +62 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/LookupDataTable.md +81 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Matches.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MergeCollections.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MergeDataTable.md +64 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MessageBox.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/MoveFile.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/OrchestratorHttpRequest.md +78 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/OutputDataTable.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/PathExists.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Placeholder.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/PostponeTransactionItem.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ProcessTrackingScope.md +89 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/QueueTrigger.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RaiseAlert.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadListItem.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadStorageText.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReadTextFile.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDataColumn.md +66 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDataRow.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveDuplicateRows.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveFromCollection.md +60 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RemoveLogFields.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RenameFileX.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RepeatNumberOfTimesX.md +52 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Replace.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ReportStatus.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ResetTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ResumeTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Rethrow.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RetryScope.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Return.md +27 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RunJob.md +87 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/RuntimeContext.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SendEmailNotification.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Sequence.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetAsset.md +36 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetCredential.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetEnvironmentVariable.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetSecret.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTaskStatus.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTraceStatus.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTransactionProgress.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SetTransactionStatus.md +82 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/ShouldStop.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SortDataTable.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/SplitText.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StartJob.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StartTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StopJob.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/StopTimer.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Switch.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TextToLeftRight.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/Throw.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TimeTrigger.md +130 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TimeoutScope.md +45 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TrackObject.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/TryCatch.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UpdateListItem.md +50 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UpdateRowItem.md +59 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/UploadStorageFile.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WaitQueueItem.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/While.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteLine.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteStorageText.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/activities/WriteTextFile.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/coded/coded-api.md +1293 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.System.Activities/26.4/overview.md +246 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/api.md +150 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/examples.md +205 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.SystemCenter.Activities/1.6/coded/system-center.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/FindText.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetColorAtPosition.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetCursorPosition.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetField.md +69 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetFieldAtPosition.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetScreenArea.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetText.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/GetTextAtPosition.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/MoveCursor.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/MoveCursorToText.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendControlKey.md +78 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendKeys.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SendKeysSecure.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SetField.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/SetFieldAtPosition.md +54 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/TerminalSession.md +106 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitFieldText.md +53 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitScreenReady.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitScreenText.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/activities/WaitTextAtPosition.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/coded/coded-api.md +650 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Terminal.Activities/2.10/overview.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/Address.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/AttachDocument.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/BulkAddTestDataQueue.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/ComparePdfDocuments.md +102 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/CompareText.md +98 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/CreateComparisonRule.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/DeleteTestDataQueueItems.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GetTestDataQueueItem.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GetTestDataQueueItems.md +79 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/GivenName.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/LastName.md +29 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/NewAddTestDataQueueItem.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomDate.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomNumber.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomString.md +57 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/RandomValue.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyExpression.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyExpressionWithOperator.md +86 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/activities/VerifyRange.md +75 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/examples.md +456 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-comparison.md +250 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-data.md +335 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing-verification.md +284 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/coded/testing.md +51 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Testing.Activities/25.10/overview.md +81 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeJson.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeJsonArray.md +41 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/DeserializeXml.md +40 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/ExecuteXPath.md +65 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/GetXMLNodeAttributes.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/GetXMLNodes.md +61 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/HttpClient.md +126 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/NetHttpRequest.md +559 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/activities/SerializeJson.md +42 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/coded-api.md +809 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/curl-import.md +207 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/http-request-upgrade.md +686 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/coded/service-discovery.md +506 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Web.Activities/2.5/overview.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordAddImage.md +16 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordAppendText.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordApplicationScope.md +32 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordExportToPdf.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordInsertDataTable.md +22 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordReadText.md +13 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordReplaceText.md +19 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordSaveAs.md +13 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/WordSetBookmark.md +15 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/activities/overview.md +109 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/examples.md +323 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/portable-api.md +83 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/windows-api.md +433 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.5/coded/word.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/AddComment.md +148 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DisableTrackChanges.md +79 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentAddImage.md +84 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentAppendText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentCreateNew.md +48 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentInsertDataTable.md +84 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentInsertHyperlink.md +90 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentReadText.md +46 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentReplaceText.md +49 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/DocumentSetBookmarkContent.md +43 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/EnableTrackChanges.md +89 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAddImage.md +67 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAddSensitivityLabel.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordAppendText.md +38 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordApplicationScope.md +56 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordExportToPdf.md +39 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordGetSensitivityLabel.md +33 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordInsertDataTable.md +68 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordInsertHyperlink.md +73 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordPasteFromClipboard.md +73 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReadText.md +37 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReplacePicture.md +35 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordReplaceText.md +47 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSaveAs.md +44 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSetBookmarkContent.md +34 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/activities/WordSetContentProperty.md +55 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/coded-api.md +558 -0
- package/skills/uipath-rpa/references/activity-docs/UiPath.Word.Activities/2.6/overview.md +106 -0
- package/skills/uipath-rpa/references/cli-reference.md +668 -0
- package/skills/uipath-rpa/references/coded/codedworkflow-reference.md +275 -0
- package/skills/uipath-rpa/references/coded/coding-guidelines.md +240 -0
- package/skills/uipath-rpa/references/coded/inspect-package-guide.md +80 -0
- package/skills/uipath-rpa/references/coded/integration-service-guide.md +508 -0
- package/skills/uipath-rpa/references/coded/operations-guide.md +417 -0
- package/skills/uipath-rpa/references/coded/third-party-packages-guide.md +67 -0
- package/skills/uipath-rpa/references/coded-vs-xaml-guide.md +187 -0
- package/skills/uipath-rpa/references/common-activity-card.md +371 -0
- package/skills/uipath-rpa/references/connector-capabilities.md +76 -0
- package/skills/uipath-rpa/references/debugging.md +424 -0
- package/skills/uipath-rpa/references/environment-setup.md +196 -0
- package/skills/uipath-rpa/references/is-connector-xaml-guide.md +294 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ActiveDirectory.md +25 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/AllActivities.md +1136 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Cognitive.md +32 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/CommunicationsMining.md +28 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ComplexScenarios.md +74 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Credentials.md +45 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Cryptography.md +82 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Database.md +79 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Excel.md +101 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/FTP.md +75 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Forms.md +81 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/GSuite.md +74 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Google-Speech.md +25 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ImageProcessing.md +32 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/IntelligentOCR.md +113 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Java.md +60 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Mail.md +101 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/MicrosoftOffice365.md +84 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/MobileAutomation.md +35 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/OmniPage.md +60 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/PDF.md +86 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Presentations.md +72 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Python.md +66 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/SAP-BAPI.md +43 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/System.md +153 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Terminal.md +120 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Testing.md +95 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-BalaReva-Excel.md +120 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-Microsoft-WF4.md +84 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-Persistence.md +140 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/ThirdParty-SharePoint.md +105 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/UIAutomation.md +159 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Vision-OCR.md +37 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Web.md +108 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/Word.md +76 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/WorkflowEvents.md +34 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_BUILT-IN-ACTIVITIES.md +425 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_COMMON-PITFALLS.md +296 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_DU-PROCESS.md +340 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_INDEX.md +70 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_INVOKE-CODE.md +367 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_PATTERNS.md +278 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_REFRAMEWORK.md +598 -0
- package/skills/uipath-rpa/references/legacy/activity-docs/_XAML-GUIDE.md +692 -0
- package/skills/uipath-rpa/references/legacy/cli-reference.md +363 -0
- package/skills/uipath-rpa/references/legacy/common-pitfalls.md +318 -0
- package/skills/uipath-rpa/references/legacy/data-manipulation-guide.md +390 -0
- package/skills/uipath-rpa/references/legacy/discovery-workflow.md +147 -0
- package/skills/uipath-rpa/references/legacy/environment-setup.md +78 -0
- package/skills/uipath-rpa/references/legacy/error-handling-guide.md +255 -0
- package/skills/uipath-rpa/references/legacy/legacy-mode-guide.md +255 -0
- package/skills/uipath-rpa/references/legacy/orchestrator-guide.md +252 -0
- package/skills/uipath-rpa/references/legacy/project-organization-guide.md +324 -0
- package/skills/uipath-rpa/references/legacy/project-structure.md +206 -0
- package/skills/uipath-rpa/references/legacy/selector-guide.md +326 -0
- package/skills/uipath-rpa/references/legacy/test-data-guide.md +142 -0
- package/skills/uipath-rpa/references/legacy/testing-guide.md +309 -0
- package/skills/uipath-rpa/references/legacy/validation-and-fixing.md +154 -0
- package/skills/uipath-rpa/references/legacy/xaml-basics-and-rules.md +457 -0
- package/skills/uipath-rpa/references/powershell-interop-guide.md +68 -0
- package/skills/uipath-rpa/references/project-structure-guide.md +125 -0
- package/skills/uipath-rpa/references/project-structure.md +135 -0
- package/skills/uipath-rpa/references/publishing-guide.md +80 -0
- package/skills/uipath-rpa/references/reframework-guide.md +178 -0
- package/skills/uipath-rpa/references/tenant-library-search-guide.md +111 -0
- package/skills/uipath-rpa/references/testing-guide.md +420 -0
- package/skills/uipath-rpa/references/trigger-pattern-guide.md +228 -0
- package/skills/uipath-rpa/references/ui-automation-guide.md +401 -0
- package/skills/uipath-rpa/references/uia-configure-target-workflows.md +167 -0
- package/skills/uipath-rpa/references/uia-prerequisites.md +42 -0
- package/skills/uipath-rpa/references/validation-guide.md +171 -0
- package/skills/uipath-rpa/references/xaml/canvas-layout-guide.md +643 -0
- package/skills/uipath-rpa/references/xaml/common-pitfalls.md +1008 -0
- package/skills/uipath-rpa/references/xaml/csharp-activity-binding-guide.md +120 -0
- package/skills/uipath-rpa/references/xaml/csharp-expression-pitfalls.md +38 -0
- package/skills/uipath-rpa/references/xaml/jit-custom-types-schema.md +90 -0
- package/skills/uipath-rpa/references/xaml/workflow-guide.md +258 -0
- package/skills/uipath-rpa/references/xaml/xaml-basics-and-rules.md +816 -0
- package/skills/uipath-solution/SKILL.md +202 -0
- package/skills/uipath-solution/assets/templates/agent-sdd-template.md +306 -0
- package/skills/uipath-solution/assets/templates/api-workflow-sdd-template.md +300 -0
- package/skills/uipath-solution/assets/templates/case-sdd-template.md +410 -0
- package/skills/uipath-solution/assets/templates/coded-app-sdd-template.md +280 -0
- package/skills/uipath-solution/assets/templates/flow-sdd-template.md +272 -0
- package/skills/uipath-solution/assets/templates/rpa-sdd-template.md +613 -0
- package/skills/uipath-solution/references/design/package-selection-guide.md +182 -0
- package/skills/uipath-solution/references/design/pdd-analysis-guide.md +265 -0
- package/skills/uipath-solution/references/design/product-selection-guide.md +431 -0
- package/skills/uipath-solution/references/design/rpa-product-guide.md +305 -0
- package/skills/uipath-solution/references/design/sdd-generation-guide.md +443 -0
- package/skills/uipath-solution/references/design/tenant-library-search-guide.md +106 -0
- package/skills/uipath-solution/references/operate/activate-and-manage.md +208 -0
- package/skills/uipath-solution/references/operate/develop-solution.md +567 -0
- package/skills/uipath-solution/references/operate/pack-and-deploy.md +328 -0
- package/skills/uipath-solution/references/operate/scenarios/failure-modes.md +14 -0
- package/skills/uipath-solution/references/operate/scenarios/intra-solution-references.md +61 -0
- package/skills/uipath-solution/references/operate/scenarios/manual-edits.md +132 -0
- package/skills/uipath-solution/references/operate/scenarios/same-name-across-folders.md +57 -0
- package/skills/uipath-solution/references/operate/scenarios/shared-cloud-resource.md +41 -0
- package/skills/uipath-solution/references/operate/scenarios/virtual-resource.md +89 -0
- package/skills/uipath-solution/references/operate/scenarios.md +51 -0
- package/skills/uipath-solution/references/operate/solution-overview.md +125 -0
- package/skills/uipath-tasks/SKILL.md +208 -0
- package/skills/uipath-tasks/references/action-center-urls.md +152 -0
- package/skills/uipath-tasks/references/task-assignment.md +92 -0
- package/skills/uipath-tasks/references/task-completion.md +102 -0
- package/skills/uipath-tasks/references/task-lifecycle.md +69 -0
- package/skills/uipath-test/SKILL.md +295 -0
- package/skills/uipath-test/references/publish-and-link-guide.md +111 -0
- package/skills/uipath-test/references/test-result-report-guide.md +96 -0
- package/skills/uipath-troubleshoot/SKILL.md +177 -0
- package/skills/uipath-troubleshoot/agents/depth-verifier.md +165 -0
- package/skills/uipath-troubleshoot/agents/hypothesis-generator.md +38 -0
- package/skills/uipath-troubleshoot/agents/hypothesis-tester.md +56 -0
- package/skills/uipath-troubleshoot/agents/presenter.md +160 -0
- package/skills/uipath-troubleshoot/agents/scope-checker.md +45 -0
- package/skills/uipath-troubleshoot/agents/shared.md +92 -0
- package/skills/uipath-troubleshoot/agents/triage.md +78 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/investigation_guide.md +60 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/overview.md +43 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-code-file-path.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-com-interop-failure.md +49 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-entry-method-name.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-parameter-formatting.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/invoke-vba-trust-access.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-active-filters.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-excel-not-installed.md +36 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-file-locked.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-formula-cells.md +53 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-invalid-range.md +42 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/playbooks/lookup-range-null-reference.md +37 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/presentation.md +9 -0
- package/skills/uipath-troubleshoot/references/activity-packages/excel-activities/summary.md +17 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/investigation_guide.md +28 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/overview.md +54 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/add-sheet-name-conflict.md +29 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-file-not-found.md +37 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/drive-multiple-items-name-conflict.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/get-newest-email-not-found.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/sheets-cell-limit-exceeded.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/sheets-invalid-range.md +51 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/playbooks/upload-storage-quota-exceeded.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/presentation.md +11 -0
- package/skills/uipath-troubleshoot/references/activity-packages/gsuite-activities/summary.md +13 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/investigation_guide.md +30 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/overview.md +55 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/download-multiple-items-name-conflict.md +37 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/drive-item-not-found.md +59 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/get-newest-email-no-match.md +34 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/item-name-already-exists.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/playbooks/mail-folder-not-found.md +47 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/presentation.md +19 -0
- package/skills/uipath-troubleshoot/references/activity-packages/o365-activities/summary.md +11 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/investigation_guide.md +25 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/overview.md +29 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-activity-bug-silent-failure.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-external-vault-failure.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-folder-scope-mismatch.md +38 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-network-connectivity.md +46 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-not-found.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-per-robot-no-value.md +31 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-permission-denied.md +33 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-robot-not-authenticated.md +40 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/playbooks/get-asset-wrong-activity-type.md +32 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/presentation.md +7 -0
- package/skills/uipath-troubleshoot/references/activity-packages/system-activities/summary.md +15 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/interpretations/healing-agent-data.md +277 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/investigation_guide.md +25 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/overview.md +39 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/disabled-element.md +81 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/healing-agent-no-license.md +109 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/no-recovery-data.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/scope-container-wrong-page.md +44 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-healing-disabled.md +55 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-healing-fix.md +45 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/selector-failure-manual.md +44 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/playbooks/timeout-issue.md +35 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/presentation.md +5 -0
- package/skills/uipath-troubleshoot/references/activity-packages/ui-automation/summary.md +14 -0
- package/skills/uipath-troubleshoot/references/investigation_guide.md +60 -0
- package/skills/uipath-troubleshoot/references/knowledge-base-guide.md +110 -0
- package/skills/uipath-troubleshoot/references/products/agents/playbooks/context-grounding-index-not-found.md +94 -0
- package/skills/uipath-troubleshoot/references/products/agents/playbooks/input-schema-validation-failure.md +89 -0
- package/skills/uipath-troubleshoot/references/products/agents/playbooks/llm-insufficient-information.md +78 -0
- package/skills/uipath-troubleshoot/references/products/agents/summary.md +9 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/investigation_guide.md +50 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/overview.md +73 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-auth-expired.md +35 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/connection-invalid.md +53 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/operation-failed.md +39 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/playbooks/trigger-not-firing.md +40 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/presentation.md +14 -0
- package/skills/uipath-troubleshoot/references/products/integration-service/summary.md +10 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/overview.md +64 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/byo-connection-dead.md +59 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/byo-routing-bypassed.md +86 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/playbooks/validation-probe-failed.md +54 -0
- package/skills/uipath-troubleshoot/references/products/llm-gateway/summary.md +9 -0
- package/skills/uipath-troubleshoot/references/products/maestro/error_codes.md +341 -0
- package/skills/uipath-troubleshoot/references/products/maestro/investigation_guide.md +92 -0
- package/skills/uipath-troubleshoot/references/products/maestro/overview.md +98 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/agent-traces-disappearing.md +22 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/argument-mismatch-400.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/attachment-not-found.md +24 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/autopilot-429.md +24 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/boundary-event-duplicate-task.md +35 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/bpmn-job-stuck.md +23 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/debug-vs-deploy.md +39 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-datetime-input.md +23 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-email-received.md +23 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/deployment-failure.md +36 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/expression-evaluation-errors.md +52 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/file-field-required.md +45 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/file-handling.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/folder-not-accessible.md +46 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/foreground-unattended-robot.md +46 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/gateway-no-outgoing-flow.md +54 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/generic-error-400.md +51 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/index-out-of-bounds.md +49 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/input-schema-mismatch.md +47 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/insufficient-funds.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/integration-service-400.md +51 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/integration-service-404.md +54 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/job-operation-timeout.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/js-runtime-discrepancy.md +26 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/loop-detected.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/maestro-service-disabled.md +26 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/marker-input-null.md +45 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/marker-invalid-cast.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/missing-required-parameter.md +48 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/multi-instance-parallel.md +37 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/no-message-events.md +51 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/no-suitable-runtime-machine.md +45 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/personal-automation-quota.md +42 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/process-not-found-404.md +47 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/service-task-child-job-faulted.md +38 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/unattended-robot-permissions.md +44 -0
- package/skills/uipath-troubleshoot/references/products/maestro/playbooks/variable-expression-errors.md +40 -0
- package/skills/uipath-troubleshoot/references/products/maestro/presentation.md +8 -0
- package/skills/uipath-troubleshoot/references/products/maestro/summary.md +56 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/investigation_guide.md +73 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/overview.md +83 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/foreground-already-running.md +65 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-faulted-logon-failure.md +103 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-no-host.md +42 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-pending-stale-dispatch.md +63 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/job-stuck.md +35 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/queue-items-failing.md +38 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/playbooks/robot-credentials.md +43 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/presentation.md +9 -0
- package/skills/uipath-troubleshoot/references/products/orchestrator/summary.md +13 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/investigation_guide.md +61 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/overview.md +35 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/playbooks/argument-null-exception.md +47 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/playbooks/null-reference-exception.md +47 -0
- package/skills/uipath-troubleshoot/references/runtime-exceptions/summary.md +8 -0
- package/skills/uipath-troubleshoot/references/summary.md +112 -0
- package/skills/uipath-troubleshoot/references/templates/playbook-template.md +29 -0
- package/skills/uipath-troubleshoot/schemas/evidence.schema.md +70 -0
- package/skills/uipath-troubleshoot/schemas/hypotheses.schema.md +56 -0
- package/skills/uipath-troubleshoot/schemas/scope-check.schema.md +27 -0
- package/skills/uipath-troubleshoot/schemas/state.schema.md +70 -0
- package/skills/uipath-troubleshoot/scripts/strip-ha-images.ps1 +61 -0
- package/skills/uipath-troubleshoot/scripts/strip-ha-images.sh +41 -0
- package/version-manifest.json +5 -0
|
@@ -0,0 +1,1008 @@
|
|
|
1
|
+
# XAML Activity Gotchas
|
|
2
|
+
|
|
3
|
+
Common pitfalls that cause validation errors or runtime failures.
|
|
4
|
+
|
|
5
|
+
## Container/Scope Requirements
|
|
6
|
+
|
|
7
|
+
These activities **must** be placed inside a specific parent scope:
|
|
8
|
+
|
|
9
|
+
| Activity | Required Parent | Package |
|
|
10
|
+
|----------|----------------|---------|
|
|
11
|
+
| Read Range, Write Range, Read Cell, etc. | `ExcelApplicationScope` or `ExcelApplicationCard` | UiPath.Excel.Activities |
|
|
12
|
+
| Click, Type Into, Get Text, Check/Uncheck, etc. | `Use Application/Browser` (`NApplicationCard`) | UiPath.UIAutomation.Activities |
|
|
13
|
+
| All Word interop activities | `WordApplicationScope` | UiPath.Word.Activities |
|
|
14
|
+
| PivotTableFieldX | `CreatePivotTableX` | UiPath.Excel.Activities |
|
|
15
|
+
| InvokeVBA (classic) | `ExcelApplicationScope` or `ExcelApplicationCard` | UiPath.Excel.Activities |
|
|
16
|
+
| All Office 365 child activities | `Office365ApplicationScope` | UiPath.MicrosoftOffice365.Activities |
|
|
17
|
+
| All GSuite child activities | Corresponding GSuite scope | UiPath.GSuite.Activities |
|
|
18
|
+
|
|
19
|
+
**Additional parent constraints (warnings, not errors):**
|
|
20
|
+
|
|
21
|
+
| Activity | Recommended Parent | Notes |
|
|
22
|
+
|----------|-------------------|-------|
|
|
23
|
+
| ExcelApplicationCard | `ExcelProcessScopeX` | Warning if outside process scope |
|
|
24
|
+
| DeleteRowsX | NOT inside `ExcelForEachRowX` | Deleting rows during iteration causes unexpected behavior |
|
|
25
|
+
|
|
26
|
+
**Nesting restrictions:**
|
|
27
|
+
|
|
28
|
+
| Activity | Cannot Be Inside | Notes |
|
|
29
|
+
|----------|-----------------|-------|
|
|
30
|
+
| SequenceX | Another `SequenceX` or `ExcelProcessScopeX` | Validation error |
|
|
31
|
+
| VerifyControlAttribute | Another `VerifyControlAttribute` | Validation error |
|
|
32
|
+
| InvokeVBAX | Max 20 child `InvokeVBAArgumentX` | Validation error if exceeded |
|
|
33
|
+
|
|
34
|
+
## Conflicting Property Pairs
|
|
35
|
+
|
|
36
|
+
Setting both properties in these pairs causes a **validation error**:
|
|
37
|
+
|
|
38
|
+
| Property A | Property B | Activity |
|
|
39
|
+
|-----------|-----------|----------|
|
|
40
|
+
| `Password` | `SecurePassword` | ExcelApplicationScope, PDF, Mail activities |
|
|
41
|
+
| `EditPassword` | `SecureEditPassword` | ExcelApplicationScope |
|
|
42
|
+
| `SimulateClick` | `SendWindowMessages` | Click, ExtractData (UIAutomation) |
|
|
43
|
+
|
|
44
|
+
Only set one from each pair, never both.
|
|
45
|
+
|
|
46
|
+
## OverloadGroup Patterns (Mutually Exclusive Properties)
|
|
47
|
+
|
|
48
|
+
Many activities use `[OverloadGroup]` to define mutually exclusive property sets. Setting properties from more than one group causes a **validation error**.
|
|
49
|
+
|
|
50
|
+
| Activity | Group A | Group B | Group C |
|
|
51
|
+
|----------|---------|---------|---------|
|
|
52
|
+
| LookupDataTable | `LookupColumnIndex` | `LookupColumnName` | `LookupDataColumn` |
|
|
53
|
+
| ExchangeScope | `Server` (manual) | `EmailAutodiscover` | `ExistingExchangeService` |
|
|
54
|
+
| ReadCsvFile, AppendWriteCsvFile | `FilePath` (string) | `PathResource` (ILocalResource) | — |
|
|
55
|
+
| CopyFile, Delete, ExtractFiles | `Path` (string) | `PathResource` / `File` (IResource) | — |
|
|
56
|
+
| WorkbookActivityBase | `Workbook` (use open) | `WorkbookPath` (file string) | `WorkbookPathResource` (IResource) |
|
|
57
|
+
| WordDocumentActivity | `FilePath` (string) | `PathResource` (ILocalResource) | — |
|
|
58
|
+
| PDF activities (ReadPDFText, GetPDFPageCount, ExtractPDFPageRange, ManagePDFPassword, ExportPDFPageAsImage, ExtractImagesFromPDF, ReadXPSText) | `FileName` (string) | `ResourceFile` (IResource) | — |
|
|
59
|
+
|
|
60
|
+
**Key rule**: Exactly ONE group must have values. Setting properties from multiple groups OR no groups both cause validation errors.
|
|
61
|
+
|
|
62
|
+
### ItemArgument and `.Item` Child Elements in OverloadGroup Activities
|
|
63
|
+
|
|
64
|
+
`uip rpa activities get-default-xaml` returns activities with `.Item` child elements containing `ItemArgument` nodes. These are internal scaffolding for the FileName/ResourceFile overload group switching mechanism. **Do NOT include `.Item` child elements when writing XAML manually.** Simply set the desired overload group property (e.g., `FileName`) directly on the activity element and omit the `.Item` child entirely. Studio will auto-generate the internal `.Item` structure when it loads the workflow.
|
|
65
|
+
|
|
66
|
+
**Example — correct (no `.Item` child):**
|
|
67
|
+
```xml
|
|
68
|
+
<upap:GetPDFPageCount DisplayName="Get PDF Page Count"
|
|
69
|
+
FileName="[pdfPath]" ResourceFile="{x:Null}" PageCount="[pageCount]" />
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
**Example — avoid (`.Item` child from `activities get-default-xaml`):**
|
|
73
|
+
```xml
|
|
74
|
+
<upap:GetPDFPageCount FileName="[pdfPath]" ResourceFile="{x:Null}" PageCount="[pageCount]">
|
|
75
|
+
<upap:GetPDFPageCount.Item>
|
|
76
|
+
<upap:ItemArgument x:TypeArguments="upr:IResource" FileName="{x:Null}" ResourceFile="{x:Null}" />
|
|
77
|
+
</upap:GetPDFPageCount.Item>
|
|
78
|
+
</upap:GetPDFPageCount>
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
Including the `.Item` child with misconfigured `ItemArgument` properties can cause `"None of the overload groups have all their required/optional activity arguments configured"` validation errors. This applies to all activities that use the `ItemArgument` pattern, including PDF, Excel, and other file-based activities.
|
|
82
|
+
|
|
83
|
+
## Conditional Property Requirements
|
|
84
|
+
|
|
85
|
+
Some properties are only required when another property has a specific value:
|
|
86
|
+
|
|
87
|
+
| Activity | Condition | Required Property |
|
|
88
|
+
|----------|-----------|-------------------|
|
|
89
|
+
| ExcelApplicationCard | `SensitivityOperation = Add` | `SensitivityLabel` must be set |
|
|
90
|
+
| WordApplicationScope | `SensitivityOperation = Add` | `SensitivityLabel` must be set |
|
|
91
|
+
| DeleteRowsX | `DeleteRowsOption = Specific` | `RowPositions` must be set with valid format (e.g. "1,3,5-7") |
|
|
92
|
+
| FilterX | `ClearFilter = false` | `FilterArgument` and `ColumnName` must be set |
|
|
93
|
+
| WordInsertHyperlink | `InsertRelativeTo = Text` | `TextToSearchFor` must be set |
|
|
94
|
+
| ExchangeScope (Interactive auth) | `AuthenticationMode = Interactive` | `ApplicationId` must be set |
|
|
95
|
+
| ExchangeScope | `ApplicationId` is set | `DirectoryId` must also be set (and vice versa — both or neither) |
|
|
96
|
+
| WordApplicationScope | `CreateNewFile = true` | Path must be local (not a URL) |
|
|
97
|
+
| ConvertHtmlToPDF, ConvertTextToPDF | `InputMode = File` | `FileName` or `ResourceFile` must be set |
|
|
98
|
+
| ConvertHtmlToPDF | `InputMode = Content` | `Html` must be set |
|
|
99
|
+
| ConvertTextToPDF | `InputMode = Content` | `Text` must be set |
|
|
100
|
+
|
|
101
|
+
## Input Method Constraints (UIAutomation)
|
|
102
|
+
|
|
103
|
+
- `SimulateClick` cannot be used with `ClickType=Double` or `MouseButton=Right/Middle` — validation error
|
|
104
|
+
- `TypeInto` with `SimulateType=True` **cannot use special keys** (Ctrl, Alt, Shift, etc.) — validation error via `SpecialKeyHelper.IsSpecialKeyUsed()`
|
|
105
|
+
- `SimulateClick=True` AND `SendWindowMessages=True` is always invalid — pick one or neither
|
|
106
|
+
- Input method resolution: `SendWindowMessages` → WINDOW_MESSAGES; else `SimulateClick` → API; else → HARDWARE_EVENTS (physical)
|
|
107
|
+
- These are validated both at design-time (CacheMetadata) and runtime
|
|
108
|
+
|
|
109
|
+
## NKeyboardShortcuts: `Shortcuts` vs `ShortcutsArgument`
|
|
110
|
+
|
|
111
|
+
`NKeyboardShortcuts` has **two** shortcut properties — using the wrong one causes VB bracket parsing failures:
|
|
112
|
+
|
|
113
|
+
- **`Shortcuts`** (`string`) — **Always use this** for hotkey encoding like `[d(hk)][d(ctrl)]a[u(ctrl)][u(hk)]`. Brackets are literal text.
|
|
114
|
+
- **`ShortcutsArgument`** (`InArgument<string>`) — Only for dynamic/variable-driven values. Brackets here are parsed as VB expressions, so `[d(hk)]` would fail (VB tries to call function `d(hk)`).
|
|
115
|
+
|
|
116
|
+
**Wrong:** `ShortcutsArgument="[d(hk)][d(ctrl)]a[u(ctrl)][u(hk)]"` → VB parser error
|
|
117
|
+
**Correct:** `Shortcuts="[d(hk)][d(ctrl)]a[u(ctrl)][u(hk)]"` → literal string, works fine
|
|
118
|
+
|
|
119
|
+
See `ui-automation.md` NKeyboardShortcuts section for the full hotkey encoding reference.
|
|
120
|
+
|
|
121
|
+
## NTypeInto `Text` with literal `[k(...)]` special-key tokens
|
|
122
|
+
|
|
123
|
+
When `Text` contains literal `[k(...)]`, `[d(...)]`, or `[u(...)]` special-key tokens, use the long-form element — never the attribute form. The attribute form runs correctly but the value does not render in Studio, so the workflow looks empty even though it works.
|
|
124
|
+
|
|
125
|
+
**Wrong:** `Text="["13700132[k(enter)]"]"` → runs, but `Text` shows blank in Studio.
|
|
126
|
+
|
|
127
|
+
**Correct:**
|
|
128
|
+
```xml
|
|
129
|
+
<uix:NTypeInto ...>
|
|
130
|
+
<uix:NTypeInto.Text>
|
|
131
|
+
<InArgument x:TypeArguments="x:String">["13700132[k(enter)]"]</InArgument>
|
|
132
|
+
</uix:NTypeInto.Text>
|
|
133
|
+
</uix:NTypeInto>
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
Alternatives:
|
|
137
|
+
- Build the bracket characters with `Chr(91)` / `Chr(93)` so the string carries no literal `[` / `]`: `Text="["13700132" & Chr(91) & "k(enter)" & Chr(93)]"`.
|
|
138
|
+
- Split the input: one `NTypeInto` for the digits, one `NKeyboardShortcuts` (or a second `NTypeInto`) for `[k(enter)]`.
|
|
139
|
+
|
|
140
|
+
## ActivityAction/ActivityFunc Initialization
|
|
141
|
+
|
|
142
|
+
Scope activities (like `ExcelApplicationCard`, `Use Application/Browser`) use `ActivityAction` to wrap their child content. The XAML pattern is:
|
|
143
|
+
|
|
144
|
+
```xml
|
|
145
|
+
<scope:ScopeActivity>
|
|
146
|
+
<scope:ScopeActivity.Body>
|
|
147
|
+
<ActivityAction x:TypeArguments="scope:ScopeType">
|
|
148
|
+
<ActivityAction.Argument>
|
|
149
|
+
<DelegateInArgument x:TypeArguments="scope:ScopeType" Name="ScopeName" />
|
|
150
|
+
</ActivityAction.Argument>
|
|
151
|
+
<Sequence DisplayName="Do">
|
|
152
|
+
<!-- Child activities here -->
|
|
153
|
+
</Sequence>
|
|
154
|
+
</ActivityAction>
|
|
155
|
+
</scope:ScopeActivity.Body>
|
|
156
|
+
</scope:ScopeActivity>
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
**Critical**: The `DelegateInArgument` must match the `x:TypeArguments` of the `ActivityAction`. Missing or mismatched types cause validation errors.
|
|
160
|
+
|
|
161
|
+
**DelegateInArgument names must be valid identifiers** — validated in CacheMetadata.
|
|
162
|
+
|
|
163
|
+
**Scope activities and their Body types:**
|
|
164
|
+
|
|
165
|
+
| Scope Activity | Body Type | DelegateInArgument Type | Default Name |
|
|
166
|
+
|---------------|-----------|------------------------|--------------|
|
|
167
|
+
| ExcelApplicationCard | `ActivityAction<IWorkbookQuickHandle>` | `IWorkbookQuickHandle` | `"Excel"` |
|
|
168
|
+
| ExcelProcessScopeX | `ActivityAction<IExcelProcess>` | `IExcelProcess` | `"ExcelProcessScopeTag"` |
|
|
169
|
+
| WordApplicationScope | `ActivityAction<WordDocument>` | `WordDocument` | `"WordDocumentScope"` |
|
|
170
|
+
| ExcelForEachRowX | `ActivityAction<CurrentRowQuickHandle, int>` | TWO args: row + index | `"CurrentRow"`, `"CurrentIndex"` |
|
|
171
|
+
| ForEachSheetX | `ActivityAction<...>` | Sheet handle | — |
|
|
172
|
+
|
|
173
|
+
**ExcelForEachRowX special case**: Has TWO delegate arguments (row and index), not one. Both must be initialized.
|
|
174
|
+
|
|
175
|
+
## ForEach/Iterator Gotchas
|
|
176
|
+
|
|
177
|
+
- **ForEach body variable scoping**: Variables modified inside a ForEach body don't persist after the loop exits. The DelegateInArgument is scoped to each iteration.
|
|
178
|
+
- **ForEachRow**: DelegateInArgument name must be a valid C#/VB identifier — CacheMetadata validates this.
|
|
179
|
+
- **DeleteRowsX inside ExcelForEachRowX**: Attempting to delete the current row during iteration throws a runtime error ("Cannot delete current row").
|
|
180
|
+
|
|
181
|
+
## IResource / ILocalResource — String Path Conversion
|
|
182
|
+
|
|
183
|
+
Many activities (O365, GSuite, Mail, file operations, Document Understanding) require `IResource` or `ILocalResource` properties, not string paths. Passing a string where `IResource` is expected causes a validation error. `LocalResource(string)` constructor is internal — you cannot call it directly.
|
|
184
|
+
|
|
185
|
+
**Approach 1 — Path Exists activity (recommended, works in VB and C# projects):**
|
|
186
|
+
|
|
187
|
+
Use the "Path Exists" activity with a file path as input. The output property **"Reference if path exists"** returns an `ILocalResource` (which also satisfies `IResource`). This both verifies the file exists and gives you the resource reference.
|
|
188
|
+
|
|
189
|
+
**Approach 2 — `LocalResource.FromPath()` expression (works in VB and C# projects):**
|
|
190
|
+
|
|
191
|
+
Use as an expression directly in activity properties — no existence check, creates the reference regardless:
|
|
192
|
+
```
|
|
193
|
+
LocalResource.FromPath(filePath)
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
In XAML (C# expression project):
|
|
197
|
+
```xml
|
|
198
|
+
<InArgument x:TypeArguments="upr:ILocalResource">
|
|
199
|
+
<CSharpValue x:TypeArguments="upr:ILocalResource">LocalResource.FromPath(filePath)</CSharpValue>
|
|
200
|
+
</InArgument>
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
Requires namespace `UiPath.Platform.ResourceHandling` in the XAML header:
|
|
204
|
+
```xml
|
|
205
|
+
<x:String>UiPath.Platform.ResourceHandling</x:String>
|
|
206
|
+
```
|
|
207
|
+
|
|
208
|
+
This pattern applies to: `UploadFilesConnections`, `DownloadFileConnections`, `SendMail` attachments, `MoveFile`, `CopyFile`, `CompressZipFiles`, `ExtractDocumentData`, and any other activity with `IResource`/`ILocalResource` properties.
|
|
209
|
+
|
|
210
|
+
## InvokeWorkflow Gotchas
|
|
211
|
+
|
|
212
|
+
- **Auto-appends .xaml**: If the `WorkflowFileName` has no file extension, `.xaml` is appended automatically. Passing `"workflow.txt"` becomes `"workflow.txt.xaml"`.
|
|
213
|
+
- **TargetSession validation**: `TargetSession.Secondary` (or any non-Current value) requires `UnSafe=True`. Without it, validation fails.
|
|
214
|
+
- **Persistence with isolation**: Using `ResumeInstanceId` with Safe mode (`UnSafe=false`) without persistence support throws `NotSupportedException`.
|
|
215
|
+
|
|
216
|
+
### WorkflowFileName Must Be a Plain String Path
|
|
217
|
+
|
|
218
|
+
`WorkflowFileName` accepts a **plain string literal**, not a VB/C# expression. Use the relative path directly — do NOT wrap it in expression brackets or string-literal quotes.
|
|
219
|
+
|
|
220
|
+
**Correct:**
|
|
221
|
+
```xml
|
|
222
|
+
<ui:InvokeWorkflowFile WorkflowFileName="ResetSpotify.xaml" />
|
|
223
|
+
<ui:InvokeWorkflowFile WorkflowFileName="Workflows\ProcessData.xaml" />
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
**Wrong — VB expression string literal (common agent mistake):**
|
|
227
|
+
```xml
|
|
228
|
+
<!-- Studio silently accepts this but the path resolution may break -->
|
|
229
|
+
<ui:InvokeWorkflowFile WorkflowFileName="["Workflows\ProcessData.xaml"]" />
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
The path is relative to the project root directory. Use backslashes for subfolder paths (e.g., `Workflows\SendEmail.xaml`). If the file is at the project root, use just the filename (e.g., `ResetSpotify.xaml`).
|
|
233
|
+
|
|
234
|
+
### Arguments Must NOT Use a Dictionary Wrapper
|
|
235
|
+
|
|
236
|
+
`uip rpa activities get-default-xaml` returns an empty `scg:Dictionary` as the default container for `InvokeWorkflowFile.Arguments`. This is correct for the **empty state only**. When you populate arguments, drop the Dictionary wrapper and use direct `InArgument`/`OutArgument`/`InOutArgument` child elements instead.
|
|
237
|
+
|
|
238
|
+
Studio silently clears any Dictionary-wrapped argument entries on load — the arguments appear mapped in the designer but are empty at runtime, with no validation error.
|
|
239
|
+
|
|
240
|
+
**Correct — direct child elements (what Studio actually serializes):**
|
|
241
|
+
```xml
|
|
242
|
+
<ui:InvokeWorkflowFile WorkflowFileName="ResetSpotify.xaml"
|
|
243
|
+
DisplayName="ResetSpotify - Invoke Workflow File (ResetSpotify.xaml)" UnSafe="False">
|
|
244
|
+
<ui:InvokeWorkflowFile.Arguments>
|
|
245
|
+
<InArgument x:TypeArguments="x:String" x:Key="argument1">someValue</InArgument>
|
|
246
|
+
<InArgument x:TypeArguments="x:String" x:Key="argument2">anotherValue</InArgument>
|
|
247
|
+
</ui:InvokeWorkflowFile.Arguments>
|
|
248
|
+
</ui:InvokeWorkflowFile>
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
**Wrong — Dictionary wrapper (from `activities get-default-xaml` empty state):**
|
|
252
|
+
```xml
|
|
253
|
+
<ui:InvokeWorkflowFile WorkflowFileName="ResetSpotify.xaml"
|
|
254
|
+
DisplayName="ResetSpotify - Invoke Workflow File (ResetSpotify.xaml)">
|
|
255
|
+
<ui:InvokeWorkflowFile.Arguments>
|
|
256
|
+
<scg:Dictionary x:TypeArguments="x:String, Argument">
|
|
257
|
+
<InArgument x:TypeArguments="x:String" x:Key="argument1">someValue</InArgument>
|
|
258
|
+
<InArgument x:TypeArguments="x:String" x:Key="argument2">anotherValue</InArgument>
|
|
259
|
+
</scg:Dictionary>
|
|
260
|
+
</ui:InvokeWorkflowFile.Arguments>
|
|
261
|
+
</ui:InvokeWorkflowFile>
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
**Rules for argument bindings:**
|
|
265
|
+
1. Each argument key (`x:Key`) must match the argument name defined in the callee workflow's `x:Members` exactly (case-sensitive)
|
|
266
|
+
2. Use the correct argument direction: `InArgument` for `in_*`, `OutArgument` for `out_*`, `InOutArgument` for `io_*`
|
|
267
|
+
3. The `x:TypeArguments` must match the callee's argument type
|
|
268
|
+
4. For literal string values, place the text directly in the element content (e.g., `<InArgument ...>someValue</InArgument>`)
|
|
269
|
+
5. For variable bindings, follow the expression language rules in [xaml-basics-and-rules.md](xaml-basics-and-rules.md#expression-language): VB uses `[bracket]` shorthand, C# uses `<CSharpValue>`/`<CSharpReference>` elements
|
|
270
|
+
|
|
271
|
+
### OutArgument Bindings Must Be Variable References
|
|
272
|
+
|
|
273
|
+
`OutArgument` and `InOutArgument` bindings on `InvokeWorkflowFile.Arguments` require a variable reference (lvalue), not a constructed expression. The callee writes its output into the variable; an inline-constructed `OutArgument` has no destination.
|
|
274
|
+
|
|
275
|
+
**Wrong** — fails with `BC30035: Syntax error`:
|
|
276
|
+
```xml
|
|
277
|
+
<OutArgument x:TypeArguments="x:Boolean" x:Key="out_Discard">[New OutArgument(Of Boolean)()]</OutArgument>
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
**Correct** — declare a discard variable in the caller's scope:
|
|
281
|
+
```xml
|
|
282
|
+
<Sequence.Variables>
|
|
283
|
+
<Variable x:TypeArguments="x:Boolean" Name="discardShouldContinue" />
|
|
284
|
+
</Sequence.Variables>
|
|
285
|
+
...
|
|
286
|
+
<OutArgument x:TypeArguments="x:Boolean" x:Key="out_Discard">[discardShouldContinue]</OutArgument>
|
|
287
|
+
```
|
|
288
|
+
|
|
289
|
+
If the caller does not consume an output but the callee declares it as required, declare a `discard*` variable per unused output and reference it. Omitting the binding fails validation when the callee has required out-arguments.
|
|
290
|
+
|
|
291
|
+
## Empty Argument Values
|
|
292
|
+
|
|
293
|
+
`<InArgument>` and `<OutArgument>` with **empty content** pass per-file `uip rpa validate` but fail project-level `uip rpa analyze` with `Value for a required activity argument 'Value' was not supplied` — no file or activity pointer.
|
|
294
|
+
|
|
295
|
+
**Wrong:**
|
|
296
|
+
```xml
|
|
297
|
+
<Assign.Value>
|
|
298
|
+
<InArgument x:TypeArguments="x:String"></InArgument>
|
|
299
|
+
</Assign.Value>
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
**Correct:**
|
|
303
|
+
```xml
|
|
304
|
+
<Assign.Value>
|
|
305
|
+
<InArgument x:TypeArguments="x:String">[String.Empty]</InArgument>
|
|
306
|
+
</Assign.Value>
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
Or attribute form with explicit literal:
|
|
310
|
+
```xml
|
|
311
|
+
<Assign Value="[String.Empty]" />
|
|
312
|
+
```
|
|
313
|
+
|
|
314
|
+
**Detection rule.** When project-level `analyze` reports the missing-Value error with no activity ID, grep for `<InArgument [^>]*></InArgument>` and `<OutArgument [^>]*></OutArgument>` across all XAML files first.
|
|
315
|
+
|
|
316
|
+
## Variable.Default — Attribute or Literal Content Only
|
|
317
|
+
|
|
318
|
+
`<Variable.Default>` accepts an expression literal as element content or as the `Default` attribute. It does NOT accept a wrapped `<InArgument>` element — that form throws at activity load with `Set property 'System.Activities.Variable(...).Default' threw an exception. Value for a required activity argument 'Value' was not supplied.`
|
|
319
|
+
|
|
320
|
+
**Wrong** — throws at activity load:
|
|
321
|
+
```xml
|
|
322
|
+
<Variable x:TypeArguments="scg:Dictionary(x:String, x:String)" Name="data">
|
|
323
|
+
<Variable.Default>
|
|
324
|
+
<InArgument x:TypeArguments="scg:Dictionary(x:String, x:String)">[New Dictionary(Of String, String)()]</InArgument>
|
|
325
|
+
</Variable.Default>
|
|
326
|
+
</Variable>
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
**Correct — attribute form (preferred):**
|
|
330
|
+
```xml
|
|
331
|
+
<Variable x:TypeArguments="scg:Dictionary(x:String, x:String)" Name="data" Default="[New Dictionary(Of String, String)()]" />
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
**Correct — content form (no `InArgument` wrapper):**
|
|
335
|
+
```xml
|
|
336
|
+
<Variable x:TypeArguments="scg:Dictionary(x:String, x:String)" Name="data">
|
|
337
|
+
<Variable.Default>[New Dictionary(Of String, String)()]</Variable.Default>
|
|
338
|
+
</Variable>
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
Or omit `Default` entirely if the variable is assigned before its first read.
|
|
342
|
+
|
|
343
|
+
## InvokeCode Language Property
|
|
344
|
+
|
|
345
|
+
The `Language` property on `InvokeCode` uses the `UiPath.Core.Activities.NetLanguage` enum, which has **only two valid values**: `VBNet` and `CSharp`.
|
|
346
|
+
|
|
347
|
+
**Critical:** The project-level `expressionLanguage` in `project.json` uses `"VisualBasic"`, but InvokeCode's `Language` attribute requires `"VBNet"` instead. Do NOT use `"VisualBasic"` — it is not a valid `NetLanguage` value. `"CSharp"` is the same in both.
|
|
348
|
+
|
|
349
|
+
**What happens:** Using `Language="VisualBasic"` passes Studio validation but fails at runtime:
|
|
350
|
+
```
|
|
351
|
+
Failed to create a 'Language' from the text 'VisualBasic'.
|
|
352
|
+
System.FormatException: VisualBasic is not a valid value for NetLanguage.
|
|
353
|
+
```
|
|
354
|
+
|
|
355
|
+
**Prevention:** Omit the `Language` attribute entirely — InvokeCode infers it from the project's expression language. If you must set it explicitly, use `"VBNet"` (not `"VisualBasic"`) or `"CSharp"`. See `InvokeCode.md` in `../activity-docs/UiPath.System.Activities/` for full details.
|
|
356
|
+
|
|
357
|
+
## HTTP Request Activity Complexity
|
|
358
|
+
|
|
359
|
+
The HTTP Request activity (`NetHttpRequest`) has extensive configuration:
|
|
360
|
+
|
|
361
|
+
- **Authentication modes** (each requires different properties):
|
|
362
|
+
- `None`: No fields needed
|
|
363
|
+
- `Basic`: `BasicAuthUsername` required + either `BasicAuthPassword` OR `BasicAuthSecurePassword`
|
|
364
|
+
- `OAuth`: `OAuthToken` required
|
|
365
|
+
- `Negotiated`: OS or custom credentials
|
|
366
|
+
- **Request body types**: None, FormData, Text, Binary, FormDataParts, File — each uses different properties
|
|
367
|
+
- **ContinueOnError defaults to TRUE** — unusual compared to other activities. HTTP failures don't stop execution by default.
|
|
368
|
+
- **Retry policies**: Complex interaction between `RetryPolicyType`, `RetryCount`, `PreferRetryAfterValue`, and `MaxRetryAfterDelay`
|
|
369
|
+
- **Default timeout**: 10,000ms (10 seconds)
|
|
370
|
+
|
|
371
|
+
**Studio re-expansion injects default expressions that need imports (CLI-clean, Studio-red).** `validate`/`build` accept a minimally-authored `NetHttpRequest`. When the file is later opened in Studio / Studio Web, Studio re-serializes the activity with its full default property set — including default expressions for `FormDataParts` (`New List(Of FormDataPart) From {New FileFormDataPart(), New BinaryFormDataPart(), New TextFormDataPart()}`) and `RetryStatusCodes`. `FormDataParts` names types from `UiPath.Web.Activities.Http.Models`, so Studio reports `BC30002: Type 'FormDataPart' is not defined` though the CLI was clean — even when `RequestBodyType="None"`. **Fix:** add `UiPath.Web.Activities.Http.Models` to `TextExpression.NamespacesForImplementation`. A type referenced by simple name in a VB expression must be **imported** there; an `xmlns:` prefix on the root element only resolves element/attribute type names, not expression compilation.
|
|
372
|
+
|
|
373
|
+
**Two related Studio Web round-trip behaviors to author for.** On save, Studio Web (a) rewrites child-element argument bindings to attribute form — e.g. `<Throw.Exception><InArgument x:TypeArguments="s:Exception">[…]</InArgument></Throw.Exception>` becomes `Exception="[…]"` — and (b) prunes unused root `xmlns` declarations. Prefer attribute-form bindings where they work; it keeps round-trip diffs minimal and matches the shape Studio Web will produce anyway.
|
|
374
|
+
|
|
375
|
+
## Connection Service Pattern (Office 365, GSuite, IS Connectors)
|
|
376
|
+
|
|
377
|
+
- `ConnectionId` is marked `[Browsable(false)]` — it won't appear in the Properties panel, but it is **required** when `UseConnectionService=True`
|
|
378
|
+
- `ConnectionId` must be a **literal string** (not a variable expression) for design-time validation to work. Dynamic ConnectionIds bypass validation and may fail at runtime.
|
|
379
|
+
- Missing `ConnectionId` when `UseConnectionService=True` → validation error about missing account/connection name
|
|
380
|
+
- Child activities expect their parent scope to have initialized OAuth extensions (`IGraphServiceClient`, `OAuthDataOptions`, etc.) — using them without a parent scope causes `NullReferenceException` at runtime
|
|
381
|
+
|
|
382
|
+
**Connection lifecycle with CLI:**
|
|
383
|
+
- **Discover connections**: `uip is connections list [connector-key] --output json` — find existing connection GUIDs
|
|
384
|
+
- **Verify connection health**: `uip is connections ping <connection-id>` — check if a connection is still active
|
|
385
|
+
- **Create new connection**: `uip is connections create <connector-key>` — opens OAuth flow for user to authenticate
|
|
386
|
+
- **Re-authenticate**: `uip is connections edit <connection-id>` — re-runs OAuth flow for expired/revoked connections
|
|
387
|
+
- If no connection exists and you cannot create one interactively, use a placeholder GUID (`00000000-0000-0000-0000-000000000000`) and inform the user they must configure the connection in Studio
|
|
388
|
+
|
|
389
|
+
## IS `ConnectorActivity` Gotchas
|
|
390
|
+
|
|
391
|
+
Full authoring flow: [../is-connector-xaml-guide.md](../is-connector-xaml-guide.md).
|
|
392
|
+
|
|
393
|
+
### JIT `OutArgument` from Studio Designer Breaks Fresh Loads
|
|
394
|
+
|
|
395
|
+
When Studio's designer touches an IS `ConnectorActivity`, it can inject a JIT-typed `OutArgument` on the `Jit_<operation>` `FieldObject`:
|
|
396
|
+
|
|
397
|
+
```xml
|
|
398
|
+
<isactr:FieldObject Name="Jit_send_message_to_channel_v2" Type="FieldArgument">
|
|
399
|
+
<isactr:FieldObject.Value>
|
|
400
|
+
<OutArgument x:TypeArguments="uiascb:send_message_to_channel_v2_Create" />
|
|
401
|
+
</isactr:FieldObject.Value>
|
|
402
|
+
</isactr:FieldObject>
|
|
403
|
+
```
|
|
404
|
+
|
|
405
|
+
The `uiascb:` namespace points at a Studio-session-local dynamically-compiled assembly (e.g. `C35283077FA_send_mes.<hash>`). On any **fresh load** (new Studio session, Helm, CI), that assembly doesn't exist, compile fails with:
|
|
406
|
+
|
|
407
|
+
```
|
|
408
|
+
[Error] Unable to create activity builder for <workflow>.xaml.
|
|
409
|
+
Reason was 'Cannot create unknown type '{...}OutArgument({...}<op>_Create)'.'
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
**Fix** — strip the injected `OutArgument` back to bare form:
|
|
413
|
+
|
|
414
|
+
```xml
|
|
415
|
+
<isactr:FieldObject Name="Jit_send_message_to_channel_v2" Type="FieldArgument" />
|
|
416
|
+
```
|
|
417
|
+
|
|
418
|
+
Also remove the `xmlns:uiascb` namespace declaration from the root `<Activity>` element if no other reference uses it. Tracked as PILOT-4812.
|
|
419
|
+
|
|
420
|
+
### Field Names Come From the Schema, Not Memory
|
|
421
|
+
|
|
422
|
+
`FieldObject Name` values are connector-specific and schema-driven. Never guess. Always read:
|
|
423
|
+
|
|
424
|
+
```bash
|
|
425
|
+
uip is resources describe <connector-key> <operation-name> --operation Create --output json
|
|
426
|
+
cat ~/.uipath/cache/integrationservice/<connector-key>/_static/<operation>.Create.json
|
|
427
|
+
```
|
|
428
|
+
|
|
429
|
+
Guessed names (e.g. `method`/`path`/`body` for an HTTP operation that actually expects connector-specific names) trigger a `Configuration contains a breaking change` runtime error.
|
|
430
|
+
|
|
431
|
+
### `Configuration` Attribute Is Opaque
|
|
432
|
+
|
|
433
|
+
The `Configuration` attribute on `ConnectorActivity` is a base64 + gzip JSON blob encoding connector + operation identity (`ConnectorKey`, `ObjectName`, `HttpMethod`, `Operation`, `ActivityType`). **Never hand-edit.** Always take the value verbatim from `uip rpa activities get-default-xaml --activity-type-id <GUID> --connection-id <GUID>`.
|
|
434
|
+
|
|
435
|
+
### `FieldObject.Value` Attribute Does Nothing
|
|
436
|
+
|
|
437
|
+
Putting a literal in the attribute form — `<isactr:FieldObject Name="channel" Value="hello" />` — is silently ignored. The runtime only reads the element form:
|
|
438
|
+
|
|
439
|
+
```xml
|
|
440
|
+
<isactr:FieldObject Name="channel" Type="FieldArgument">
|
|
441
|
+
<isactr:FieldObject.Value>
|
|
442
|
+
<InArgument x:TypeArguments="x:String">
|
|
443
|
+
<CSharpValue x:TypeArguments="x:String">"hello"</CSharpValue>
|
|
444
|
+
</InArgument>
|
|
445
|
+
</isactr:FieldObject.Value>
|
|
446
|
+
</isactr:FieldObject>
|
|
447
|
+
```
|
|
448
|
+
|
|
449
|
+
## Deprecated Activities (Do Not Use)
|
|
450
|
+
|
|
451
|
+
| Deprecated | Replacement | Notes |
|
|
452
|
+
|-----------|-------------|-------|
|
|
453
|
+
| Old trigger activities (`ClickTriggerActivity`, `KeyPressTriggerActivity`, etc.) | New trigger framework | Marked `[Browsable(false)]`, kept for backward compat only |
|
|
454
|
+
| `ReplayUserEvent` | `ReplayUserEventV2` | Old version still loads but shouldn't be used |
|
|
455
|
+
| `UiPath.<Vendor>.IntegrationService.Activities` packages | Generic `ConnectorActivity` via IS | Vendor-specific IS packages are deprecated |
|
|
456
|
+
|
|
457
|
+
## Common Activity Name Confusions
|
|
458
|
+
|
|
459
|
+
Activity tag names rarely match Studio display names. Guessing the tag from the display name fails at `build` (`Cannot create unknown type '...'`). Two examples:
|
|
460
|
+
|
|
461
|
+
| Display Name | Wrong guess | Correct tag |
|
|
462
|
+
|--------------|-------------|-------------|
|
|
463
|
+
| Delete File | `ui:DeleteFile` | `ui:DeleteFileX` |
|
|
464
|
+
| Wait | `ui:Wait` | `Delay` (MWF primitive — no prefix) |
|
|
465
|
+
|
|
466
|
+
### Tag Verification Gate
|
|
467
|
+
|
|
468
|
+
Before writing any `<prefix:Tag>` not already in the file:
|
|
469
|
+
|
|
470
|
+
- **Doc check.** `{PROJECT_DIR}/.local/docs/packages/<PackageId>/activities/<Tag>.md`, or `references/activity-docs/<PackageId>/<closest-version>/activities/<Tag>.md`. No file → no such tag.
|
|
471
|
+
- **CLI lookup.** `uip rpa activities find --query "<verb>" --output json` → use the returned `ClassName`.
|
|
472
|
+
|
|
473
|
+
Skipping both produces `Cannot create unknown type` at `build`.
|
|
474
|
+
|
|
475
|
+
## Default Values That Matter
|
|
476
|
+
|
|
477
|
+
| Activity | Property | Default | Impact |
|
|
478
|
+
|----------|----------|---------|--------|
|
|
479
|
+
| ExcelApplicationScope | `AutoSave` | `True` | File is saved automatically on scope exit |
|
|
480
|
+
| ExcelApplicationScope | `Visible` | `True` | Excel window is visible during execution |
|
|
481
|
+
| ExcelApplicationScope | `CreateNewFile` | `True` | Creates file if it doesn't exist |
|
|
482
|
+
| Click | `ClickType` | `Single` | Single click (not double) |
|
|
483
|
+
| Click | `MouseButton` | `Left` | Left mouse button |
|
|
484
|
+
| Click | `AlterIfDisabled` | `True` | Alters element even if disabled (legacy compat) |
|
|
485
|
+
| All UIAutomation activities | `TimeoutMS` | `30000` (30s) | How long to wait for element before timeout |
|
|
486
|
+
| UIAutomation | `DelayBefore` | `200`ms | Delay before action |
|
|
487
|
+
| UIAutomation | `DelayAfter` | `300`ms | Delay after action |
|
|
488
|
+
| ExtractData | `DelayBetweenPagesMS` | `300`ms | Between pagination clicks |
|
|
489
|
+
| HTTP Request | `Timeout` | `10000` (10s) | Request timeout |
|
|
490
|
+
| HTTP Request | `ContinueOnError` | `True` | Failures don't stop execution (unusual default) |
|
|
491
|
+
| HTTP Request | `MaxRedirects` | `3` | Redirect limit |
|
|
492
|
+
| WaitQueueItem | `PollTimeMS` | `30000` | Polling interval |
|
|
493
|
+
| WaitQueueItem | `Timeout` | `300000` (5min) | Overall wait timeout |
|
|
494
|
+
| LogMessage | `Level` | `Info` | Default log level |
|
|
495
|
+
| ExcelApplicationScope | `InstanceCachePeriod` | — | Negative values cause validation error |
|
|
496
|
+
|
|
497
|
+
## Namespace Mapping Gotchas
|
|
498
|
+
|
|
499
|
+
| What You'd Expect | Actual Namespace | Notes |
|
|
500
|
+
|-------------------|-----------------|-------|
|
|
501
|
+
| `UiPath.UIAutomation.Activities` | `UiPath.UIAutomationNext.Activities` | Modern UI activities use "Next" namespace |
|
|
502
|
+
| `UiPath.UIAutomation.Activities` (classic) | `UiPath.Core.Activities` | Classic UI activities are in Core |
|
|
503
|
+
|
|
504
|
+
Use `uip rpa activities get-default-xaml` to get correct xmlns declarations — never guess namespace mappings.
|
|
505
|
+
|
|
506
|
+
### `Delay` — no namespace prefix
|
|
507
|
+
|
|
508
|
+
`Delay` is a Microsoft Workflow Foundation primitive (`System.Activities.Statements.Delay`), reached via the root `<Activity>` default xmlns and written unprefixed:
|
|
509
|
+
|
|
510
|
+
```xml
|
|
511
|
+
<Delay Duration="00:00:02" DisplayName="Wait for server" />
|
|
512
|
+
```
|
|
513
|
+
|
|
514
|
+
`<ui:Delay .../>` fails with `Cannot create unknown type '{...uipath...}Delay'`. The `ui:` prefix maps to `UiPath.Core.Activities`, which has no `Delay` override.
|
|
515
|
+
|
|
516
|
+
**For other primitives** (`Sequence`, `If`, `Assign`, `ForEach`, `While`, `TryCatch`, `Switch`, …) UiPath provides `ui:`-prefixed overrides for many — which one to use depends on the behavior you want. Check with `uip rpa activities find --query "<name>"` before assuming MWF or UiPath; don't generalize from `Delay`.
|
|
517
|
+
|
|
518
|
+
## Portable vs Windows Framework Limitations
|
|
519
|
+
|
|
520
|
+
- Activities in `/Windows/` or `/NetFramework/` source folders are **Windows-only** and won't work in Portable projects
|
|
521
|
+
- Some activities are explicitly hidden (`[Browsable(false)]`) when compiled for cross-platform (`XPLAT`)
|
|
522
|
+
- Excel encryption activities, some interop-based activities, and `VerifyControlAttribute` (testing) have platform restrictions
|
|
523
|
+
- Check `project.json` `targetFramework` before using Windows-only activities
|
|
524
|
+
|
|
525
|
+
## DataTable Activity Gotchas
|
|
526
|
+
|
|
527
|
+
- **LookupDataTable column resolution**: When multiple column identifiers are set (shouldn't happen due to OverloadGroups), only the first non-null is used: `LookupColumnIndex ?? LookupColumnName ?? LookupDataColumn`
|
|
528
|
+
- **FilterDataTable**: Column must exist AND be type-compatible with the filter operator. Filtering a DateTime column with "Contains" fails at CacheMetadata validation.
|
|
529
|
+
- **BuildDataTable**: Uses a security-related allowed types list. DataTables with certain .NET types may fail to serialize/deserialize.
|
|
530
|
+
- **BuildDataTable — `TableInfo` is designer-only.** The required `TableInfo` property is a serialized string with no documented format; activity docs say "configure through the designer instead". **Cannot be authored in agent-written XAML.** Skip the activity. Build the DataTable inline with `Assign` + `InvokeMethod` instead. Requires the standard `sd` namespace alias (matches the rest of the activity-docs corpus — see `ForEachRow.md` and `AddDataRow.md`) and `xmlns:s`.
|
|
531
|
+
|
|
532
|
+
**VB XAML** (`expressionLanguage: VisualBasic` — bracket shorthand `[expr]`, `New T()`, `GetType(T)`):
|
|
533
|
+
```xml
|
|
534
|
+
<!-- Modern (Windows/Portable):
|
|
535
|
+
xmlns:sd="clr-namespace:System.Data;assembly=System.Data"
|
|
536
|
+
xmlns:s="clr-namespace:System;assembly=System.Private.CoreLib" -->
|
|
537
|
+
<!-- Legacy (.NET Framework 4.6.1):
|
|
538
|
+
xmlns:sd="clr-namespace:System.Data;assembly=System.Data"
|
|
539
|
+
xmlns:s="clr-namespace:System;assembly=mscorlib" -->
|
|
540
|
+
<Variable x:TypeArguments="sd:DataTable" Name="dt" Default="[New System.Data.DataTable()]" />
|
|
541
|
+
...
|
|
542
|
+
<InvokeMethod TargetObject="[dt.Columns]" MethodName="Add">
|
|
543
|
+
<InArgument x:TypeArguments="x:String">Name</InArgument>
|
|
544
|
+
<InArgument x:TypeArguments="s:Type">[GetType(System.String)]</InArgument>
|
|
545
|
+
</InvokeMethod>
|
|
546
|
+
<InvokeMethod TargetObject="[dt.Columns]" MethodName="Add">
|
|
547
|
+
<InArgument x:TypeArguments="x:String">Amount</InArgument>
|
|
548
|
+
<InArgument x:TypeArguments="s:Type">[GetType(System.Decimal)]</InArgument>
|
|
549
|
+
</InvokeMethod>
|
|
550
|
+
```
|
|
551
|
+
**C# XAML** (`expressionLanguage: CSharp`): replace bracket-shorthand expressions with `<CSharpValue x:TypeArguments="T">...</CSharpValue>` / `<CSharpReference x:TypeArguments="T">...</CSharpReference>` wrappers inside the `<InArgument>`/`<Default>` elements. See [csharp-activity-binding-guide.md](csharp-activity-binding-guide.md) for the full binding form per property.
|
|
552
|
+
|
|
553
|
+
Note the `s:Type` argument — `x:Type` resolves to `TypeExtension` and fails (see § Invalid Use of `x:` Prefix). `assembly=System.Data` works in both targets via .NET type forwarding; `System.Data.Common` is the canonical home in modern .NET but the bundled UiPath docs standardize on `System.Data`.
|
|
554
|
+
- **GetRowItem**: Must specify at least one of `Column`, `ColumnIndex`, or `ColumnName` — all three empty causes validation error.
|
|
555
|
+
|
|
556
|
+
## Testing Activity Gotchas
|
|
557
|
+
|
|
558
|
+
- **VerifyControlAttribute**: Cannot be nested inside another `VerifyControlAttribute` — validation error
|
|
559
|
+
- **Assert activities** require `BookmarkResumptionHelper` extension (added via `metadata.RequireExtension<BookmarkResumptionHelper>()` in CacheMetadata)
|
|
560
|
+
- **TakeScreenshotInCaseOfSucceedingAssertion** and **TakeScreenshotInCaseOfFailingAssertion** are `[RequiredArgument]` on assert activities even though they default to `false`
|
|
561
|
+
|
|
562
|
+
## Enum-Valued Properties Are a `validate` Blind Spot
|
|
563
|
+
|
|
564
|
+
Activity properties typed as enums (e.g. `Operator`, `ClickType`, `KeyModifiers`, `EmptyFieldMode`, comparison/filter strategies) are checked at compile time against the activity's enum, **not** during `validate` static analysis. An invalid identifier on an enum-typed attribute returns "no diagnostics found" from `validate` and surfaces only at `build` / `CacheMetadata` time. Two consequences:
|
|
565
|
+
|
|
566
|
+
1. Always read `{projectRoot}/.local/docs/packages/<PackageId>/activities/<Activity>.md` for the exact, package-version-specific enum members before authoring an enum-valued attribute. Do not infer values from naming intuition or from prose in this skill.
|
|
567
|
+
2. Always run `uip rpa build` after `validate` clears — it is the only validator that catches invalid enum identifiers (see [../validation-guide.md § Validation Iteration Loop](../validation-guide.md#validation-iteration-loop)).
|
|
568
|
+
|
|
569
|
+
## Package Version Changes Break XAML
|
|
570
|
+
|
|
571
|
+
**The #1 cause of XAML breakage.** When upgrading or downgrading activity packages, XAML serialized with one version may not load with another.
|
|
572
|
+
|
|
573
|
+
**What happens:**
|
|
574
|
+
- Newer packages serialize activities with `Version` attributes the older package doesn't recognize (e.g., `Version="V5"` when max is V4)
|
|
575
|
+
- Newer packages add properties that don't exist in older versions (e.g., `HealingAgentBehavior`, `ClipboardMode`)
|
|
576
|
+
- Assembly names change between versions (e.g., `Box.V2` → `Box.V2.Core`)
|
|
577
|
+
|
|
578
|
+
**Error messages:**
|
|
579
|
+
- `"Failed to create a 'Version' from the text 'V5'"`
|
|
580
|
+
- `"Cannot set unknown member 'UiPath.UIAutomationNext.Activities.NApplicationCard.HealingAgentBehavior'"`
|
|
581
|
+
- `"Cannot set unknown member"` for any version-gated attribute
|
|
582
|
+
|
|
583
|
+
**Fix when editing XAML manually:**
|
|
584
|
+
1. Replace old assembly references in `xmlns` declarations (e.g., `assembly=Box.V2` → `assembly=Box.V2.Core`)
|
|
585
|
+
2. Remove attributes that don't exist in the target version
|
|
586
|
+
3. Cap `Version` attributes to the maximum supported by the target package
|
|
587
|
+
4. Add `<AssemblyReference>netstandard</AssemblyReference>` if type resolution errors persist
|
|
588
|
+
5. Use `uip rpa validate` to validate after changes
|
|
589
|
+
|
|
590
|
+
**Prevention:** When using `uip rpa activities get-default-xaml`, the output matches the currently installed package version. Never copy XAML snippets from projects using different package versions.
|
|
591
|
+
|
|
592
|
+
## Expression Language Mismatch
|
|
593
|
+
|
|
594
|
+
Every XAML file must use the same expression language as the project (`expressionLanguage` in `project.json`).
|
|
595
|
+
|
|
596
|
+
**What happens:**
|
|
597
|
+
- Error: `"Main.xaml language 'VisualBasic' is incompatible with project's language 'CSharp'. This configuration is not supported"`
|
|
598
|
+
- Copying a VB XAML file into a C# project (or vice versa) causes immediate validation failure
|
|
599
|
+
|
|
600
|
+
**VB-specific gotchas:**
|
|
601
|
+
- `Option Strict On` disallows late binding — `item.Body.ToString` fails without explicit casting
|
|
602
|
+
- `Option Strict On` disallows implicit type conversions — `Object` to `DataRow` requires explicit `CType()`
|
|
603
|
+
- VB uses `OrElse`/`AndAlso` (short-circuit) vs `Or`/`And` (non-short-circuit) — different behavior in XAML expressions
|
|
604
|
+
|
|
605
|
+
**C#-specific gotchas:**
|
|
606
|
+
- Expressions must use explicit `<CSharpValue>` / `<CSharpReference>` elements inside `<InArgument>` / `<OutArgument>` — do NOT use `[bracket]` shorthand (brackets create VB expression nodes)
|
|
607
|
+
- String interpolation (`$"..."`) is NOT supported in XAML expressions — use string concatenation
|
|
608
|
+
|
|
609
|
+
**Prevention:** Always check `project.json` `expressionLanguage` before writing any expression. Never mix languages.
|
|
610
|
+
|
|
611
|
+
### C# expression pitfalls — separate file
|
|
612
|
+
|
|
613
|
+
Applies only to XAML projects with `expressionLanguage: CSharp` — not to VB XAML, and not to coded workflows (`.cs` files). Attribute-form expressions, `OutArgument<T>` parse failures, and `ThrowIfNotInTree` all have root causes specific to that configuration. See [csharp-expression-pitfalls.md](csharp-expression-pitfalls.md) and [csharp-activity-binding-guide.md](csharp-activity-binding-guide.md).
|
|
614
|
+
|
|
615
|
+
## Missing Assembly References
|
|
616
|
+
|
|
617
|
+
Common validation error: `"The type 'Dictionary<,>' is defined in an assembly that is not referenced"`.
|
|
618
|
+
|
|
619
|
+
**Commonly missing assemblies:**
|
|
620
|
+
- `System.Collections` (for `Dictionary<,>`, `List<>`)
|
|
621
|
+
- `System.Data` (for `DataTable`, `DataRow`)
|
|
622
|
+
- `System.Data.Common` (for `DbConnection`)
|
|
623
|
+
- `System.ComponentModel.TypeConverter`
|
|
624
|
+
- `System.Net.Mail` (for `MailMessage`)
|
|
625
|
+
- `netstandard` (general fallback for type resolution)
|
|
626
|
+
|
|
627
|
+
**Fix:** Add the missing assembly to `TextExpression.ReferencesForImplementation`:
|
|
628
|
+
```xml
|
|
629
|
+
<AssemblyReference>System.Collections</AssemblyReference>
|
|
630
|
+
```
|
|
631
|
+
|
|
632
|
+
**Note:** If you're adding activities manually or the references are missing from an existing file, you may need to add them through `uip rpa packages install`.
|
|
633
|
+
|
|
634
|
+
## Workflow Argument Declarations Use `<x:Members>`, Not `<Activity.Properties>`
|
|
635
|
+
|
|
636
|
+
**Error pattern (Studio refuses to open the file):**
|
|
637
|
+
```
|
|
638
|
+
Cannot create unknown type '{http://schemas.microsoft.com/netfx/2009/xaml/activities}Property'
|
|
639
|
+
```
|
|
640
|
+
|
|
641
|
+
**Root cause:** Workflow arguments (In/Out/InOut) must be declared in `<x:Members>` with `<x:Property>` children — both prefixed with `x:` (the XAML language schema, `http://schemas.microsoft.com/winfx/2006/xaml`). Writing `<Activity.Properties>` with bare `<Property>` elements resolves `Property` against the **default** xmlns (the activities namespace), where no such type exists — so the file fails to load entirely.
|
|
642
|
+
|
|
643
|
+
**Wrong** — Studio cannot open the workflow:
|
|
644
|
+
```xml
|
|
645
|
+
<Activity.Properties>
|
|
646
|
+
<Property Name="in_Username" Type="InArgument(x:String)" />
|
|
647
|
+
<Property Name="out_LoginSuccess" Type="OutArgument(x:Boolean)" />
|
|
648
|
+
</Activity.Properties>
|
|
649
|
+
```
|
|
650
|
+
|
|
651
|
+
**Correct:**
|
|
652
|
+
```xml
|
|
653
|
+
<x:Members>
|
|
654
|
+
<x:Property Name="in_Username" Type="InArgument(x:String)" />
|
|
655
|
+
<x:Property Name="out_LoginSuccess" Type="OutArgument(x:Boolean)" />
|
|
656
|
+
</x:Members>
|
|
657
|
+
```
|
|
658
|
+
|
|
659
|
+
This is a hard-load error, not a validation warning — the file cannot even be opened in the designer. If a hand-written or generated workflow shows this symptom, search-and-replace `<Activity.Properties>` → `<x:Members>` and `<Property ` → `<x:Property ` (and the matching closing tags). The `<x:Members>` form appears in every starter from `uip rpa activities get-default-xaml` and in the canonical anatomy at [xaml-basics-and-rules.md § XAML File Anatomy](xaml-basics-and-rules.md#xaml-file-anatomy).
|
|
660
|
+
|
|
661
|
+
---
|
|
662
|
+
|
|
663
|
+
## Invalid Use of `x:` Prefix for Non-Builtin CLR Types
|
|
664
|
+
|
|
665
|
+
**Error pattern:**
|
|
666
|
+
```
|
|
667
|
+
Cannot create unknown type '...Variable(...DateTime)'
|
|
668
|
+
Cannot create unknown type '...Variable(...DateTimeOffset)'
|
|
669
|
+
Cannot create unknown type '...Variable(...Guid)'
|
|
670
|
+
Cannot create unknown type '...InArgument(...DateTime)'
|
|
671
|
+
```
|
|
672
|
+
|
|
673
|
+
**Root cause:** `x:` and `s:` are not two different type systems — they are XML namespace aliases. `x:String` and `s:String` both refer to the same underlying `System.String`. The difference is purely which XML namespace schema registers the mapping:
|
|
674
|
+
|
|
675
|
+
- `x:` maps to the **XAML language schema** (`http://schemas.microsoft.com/winfx/2006/xaml`), which only registers a small, fixed set of types.
|
|
676
|
+
- `s:` maps to the **CLR System namespace** (`clr-namespace:System;assembly=System.Private.CoreLib`), which resolves types directly in `System` (e.g. `DateTime`, `Guid`) — subnamespaces like `System.IO` or `System.Collections.Generic` require their own separate aliases (e.g. `xmlns:sio`, `xmlns:scg`).
|
|
677
|
+
|
|
678
|
+
The error occurs because the XAML language schema does not register `DateTime`, `DateTimeOffset`, `Guid`, etc. — so `x:DateTime` has no definition, while `s:DateTime` resolves correctly.
|
|
679
|
+
|
|
680
|
+
**Types registered in the XAML language schema** (the only ones valid with the `x:` prefix):
|
|
681
|
+
|
|
682
|
+
| Valid `x:` type | C# equivalent |
|
|
683
|
+
|-----------------|---------------|
|
|
684
|
+
| `x:String` | `string` |
|
|
685
|
+
| `x:Int32` | `int` |
|
|
686
|
+
| `x:Int64` | `long` |
|
|
687
|
+
| `x:Double` | `double` |
|
|
688
|
+
| `x:Boolean` | `bool` |
|
|
689
|
+
| `x:Byte` | `byte` |
|
|
690
|
+
| `x:Single` | `float` |
|
|
691
|
+
| `x:Decimal` | `decimal` |
|
|
692
|
+
| `x:Char` | `char` |
|
|
693
|
+
| `x:Object` | `object` |
|
|
694
|
+
| `x:TimeSpan` | `TimeSpan` |
|
|
695
|
+
|
|
696
|
+
**If a type is not in that list, you cannot use `x:` for it** — even if it is a core .NET type.
|
|
697
|
+
|
|
698
|
+
**Correct alternative prefixes for common System types** (requires `xmlns:s="clr-namespace:System;assembly=System.Private.CoreLib"`):
|
|
699
|
+
|
|
700
|
+
| Wrong | Correct | Notes |
|
|
701
|
+
|----------|------------|-------|
|
|
702
|
+
| `x:DateTime` | `s:DateTime` | — |
|
|
703
|
+
| `x:DateTimeOffset` | `s:DateTimeOffset` | Often required by calendar/scheduling activities |
|
|
704
|
+
| `x:Guid` | `s:Guid` | — |
|
|
705
|
+
| `x:Uri` | `s:Uri` | — |
|
|
706
|
+
| `x:Exception` | `s:Exception` | `<Catch x:TypeArguments="s:Exception">`, `Throw` argument types |
|
|
707
|
+
| `x:Type` | `s:Type` | `<InArgument x:TypeArguments="x:Type">` silently resolves to `System.Activities.XamlIntegration.TypeExtension`, NOT `System.Type`. Passing `[GetType(System.String)]` fails with `BC30311: Value of type 'Type' cannot be converted to 'TypeExtension'`. Required by `InvokeMethod` calls into APIs that take `System.Type` (e.g. `DataColumnCollection.Add(name, type)`). |
|
|
708
|
+
|
|
709
|
+
For types outside of `System`, add the matching CLR namespace alias. Examples:
|
|
710
|
+
```xml
|
|
711
|
+
xmlns:sio="clr-namespace:System.IO;assembly=System.Private.CoreLib"
|
|
712
|
+
<Variable x:TypeArguments="sio:FileInfo" Name="file" />
|
|
713
|
+
```
|
|
714
|
+
|
|
715
|
+
**Do NOT use dotted full CLR names in `x:TypeArguments`** — `x:TypeArguments` accepts only XML-prefix-qualified names, never dotted full names. The XAML parser does not resolve dotted CLR identifiers; each subnamespace requires its own `xmlns` alias.
|
|
716
|
+
|
|
717
|
+
Wrong — fails with `Cannot create unknown type` at load time:
|
|
718
|
+
```xml
|
|
719
|
+
<Variable x:TypeArguments="System.Security.SecureString" Name="var_SecurePass" />
|
|
720
|
+
<OutArgument x:TypeArguments="System.Security.SecureString">[var_SecurePass]</OutArgument>
|
|
721
|
+
```
|
|
722
|
+
|
|
723
|
+
Correct — declare the alias once on the root `<Activity>`, then use it everywhere the type appears:
|
|
724
|
+
```xml
|
|
725
|
+
xmlns:ss="clr-namespace:System.Security;assembly=System.Private.CoreLib"
|
|
726
|
+
<Variable x:TypeArguments="ss:SecureString" Name="var_SecurePass" />
|
|
727
|
+
<OutArgument x:TypeArguments="ss:SecureString">[var_SecurePass]</OutArgument>
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
**Fix example:**
|
|
731
|
+
|
|
732
|
+
Wrong — causes `Cannot create unknown type` at load time:
|
|
733
|
+
```xml
|
|
734
|
+
<Variable x:TypeArguments="x:DateTime" Name="startTime" />
|
|
735
|
+
<Variable x:TypeArguments="x:DateTimeOffset" Name="reminderTime" />
|
|
736
|
+
```
|
|
737
|
+
|
|
738
|
+
Correct — requires `xmlns:s="clr-namespace:System;assembly=System.Private.CoreLib"`:
|
|
739
|
+
```xml
|
|
740
|
+
<Variable x:TypeArguments="s:DateTime" Name="startTime" />
|
|
741
|
+
<Variable x:TypeArguments="s:DateTimeOffset" Name="reminderTime" />
|
|
742
|
+
```
|
|
743
|
+
|
|
744
|
+
The same rule applies anywhere a type argument appears: `x:TypeArguments` on `Variable`, `InArgument`, `OutArgument`, `CSharpValue`, `CSharpReference`, `ActivityAction`, `DelegateInArgument`, etc.
|
|
745
|
+
|
|
746
|
+
---
|
|
747
|
+
|
|
748
|
+
## Array Types in `Variable` Declarations
|
|
749
|
+
|
|
750
|
+
The XAML parser rejects CLR array syntax in `<Variable x:TypeArguments="...">`. `<Variable x:TypeArguments="x:String[]">` fails to load with `Cannot create unknown type ... Variable(String[])`. The error message does not hint at the fix.
|
|
751
|
+
|
|
752
|
+
**Use `scg:List(<T>)` instead of `<T>[]`** for variable declarations. Required `xmlns:scg` declaration depends on `targetFramework`:
|
|
753
|
+
|
|
754
|
+
- **Modern (Windows/Portable):** `xmlns:scg="clr-namespace:System.Collections.Generic;assembly=System.Private.CoreLib"`
|
|
755
|
+
- **Legacy (.NET Framework 4.6.1):** `xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib"`
|
|
756
|
+
|
|
757
|
+
Wrong:
|
|
758
|
+
```xml
|
|
759
|
+
<Variable x:TypeArguments="x:String[]" Name="paths" />
|
|
760
|
+
```
|
|
761
|
+
|
|
762
|
+
Correct — **VB XAML** (`expressionLanguage: VisualBasic`, bracket shorthand for the default expression):
|
|
763
|
+
```xml
|
|
764
|
+
<Variable x:TypeArguments="scg:List(x:String)" Name="paths" Default="[New List(Of String)()]" />
|
|
765
|
+
```
|
|
766
|
+
|
|
767
|
+
Correct — **C# XAML** (`expressionLanguage: CSharp`): drop the `Default` attribute and use `<Variable.Default>` with `<CSharpValue>` instead; see [csharp-activity-binding-guide.md](csharp-activity-binding-guide.md).
|
|
768
|
+
|
|
769
|
+
**`InArgument` with array `x:TypeArguments` — context-dependent.** The canonical XAML for `AddDataRow.ArrayRow` (see [`../activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md`](../activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md)) uses `<InArgument x:TypeArguments="x:Object[]">[New Object() { ... }]</InArgument>` and Studio accepts it. Some agent-authored variants of the same form have been reported to fail at parse time — root cause unverified. **If `InArgument x:TypeArguments="x:Object[]"` fails in your project, fall back to calling the underlying params overload via `InvokeMethod`** (only safe when the target method has a `ParamArray Object()` / `params object[]` overload — `DataRowCollection.Add` does):
|
|
770
|
+
|
|
771
|
+
```xml
|
|
772
|
+
<InvokeMethod TargetObject="[dt.Rows]" MethodName="Add">
|
|
773
|
+
<InArgument x:TypeArguments="x:String">Alice</InArgument>
|
|
774
|
+
<InArgument x:TypeArguments="x:Int32">42</InArgument>
|
|
775
|
+
</InvokeMethod>
|
|
776
|
+
```
|
|
777
|
+
|
|
778
|
+
This pattern is NOT a general substitute for fixed-arity array parameters — only for `ParamArray`/`params` overloads where the runtime builds the array from N positional arguments. For non-params arrays (e.g. `Method(int[] arr)`), `InvokeMethod` with N separate `<InArgument>` children does not work; the array must be constructed in a preceding `Assign`.
|
|
779
|
+
|
|
780
|
+
---
|
|
781
|
+
|
|
782
|
+
## Array Types in `Variable` Declarations
|
|
783
|
+
|
|
784
|
+
The XAML parser rejects CLR array syntax in `<Variable x:TypeArguments="...">`. `<Variable x:TypeArguments="x:String[]">` fails to load with `Cannot create unknown type ... Variable(String[])`. The error message does not hint at the fix.
|
|
785
|
+
|
|
786
|
+
**Use `scg:List(<T>)` instead of `<T>[]`** for variable declarations. Required `xmlns:scg` declaration depends on `targetFramework`:
|
|
787
|
+
|
|
788
|
+
- **Modern (Windows/Portable):** `xmlns:scg="clr-namespace:System.Collections.Generic;assembly=System.Private.CoreLib"`
|
|
789
|
+
- **Legacy (.NET Framework 4.6.1):** `xmlns:scg="clr-namespace:System.Collections.Generic;assembly=mscorlib"`
|
|
790
|
+
|
|
791
|
+
Wrong:
|
|
792
|
+
```xml
|
|
793
|
+
<Variable x:TypeArguments="x:String[]" Name="paths" />
|
|
794
|
+
```
|
|
795
|
+
|
|
796
|
+
Correct — **VB XAML** (`expressionLanguage: VisualBasic`, bracket shorthand for the default expression):
|
|
797
|
+
```xml
|
|
798
|
+
<Variable x:TypeArguments="scg:List(x:String)" Name="paths" Default="[New List(Of String)()]" />
|
|
799
|
+
```
|
|
800
|
+
|
|
801
|
+
Correct — **C# XAML** (`expressionLanguage: CSharp`): drop the `Default` attribute and use `<Variable.Default>` with `<CSharpValue>` instead; see [csharp-activity-binding-guide.md](csharp-activity-binding-guide.md).
|
|
802
|
+
|
|
803
|
+
**`InArgument` with array `x:TypeArguments` — context-dependent.** The canonical XAML for `AddDataRow.ArrayRow` (see [`../activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md`](../activity-docs/UiPath.System.Activities/26.4/activities/AddDataRow.md)) uses `<InArgument x:TypeArguments="x:Object[]">[New Object() { ... }]</InArgument>` and Studio accepts it. Some agent-authored variants of the same form have been reported to fail at parse time — root cause unverified. **If `InArgument x:TypeArguments="x:Object[]"` fails in your project, fall back to calling the underlying params overload via `InvokeMethod`** (only safe when the target method has a `ParamArray Object()` / `params object[]` overload — `DataRowCollection.Add` does):
|
|
804
|
+
|
|
805
|
+
```xml
|
|
806
|
+
<InvokeMethod TargetObject="[dt.Rows]" MethodName="Add">
|
|
807
|
+
<InArgument x:TypeArguments="x:String">Alice</InArgument>
|
|
808
|
+
<InArgument x:TypeArguments="x:Int32">42</InArgument>
|
|
809
|
+
</InvokeMethod>
|
|
810
|
+
```
|
|
811
|
+
|
|
812
|
+
This pattern is NOT a general substitute for fixed-arity array parameters — only for `ParamArray`/`params` overloads where the runtime builds the array from N positional arguments. For non-params arrays (e.g. `Method(int[] arr)`), `InvokeMethod` with N separate `<InArgument>` children does not work; the array must be constructed in a preceding `Assign`.
|
|
813
|
+
|
|
814
|
+
---
|
|
815
|
+
|
|
816
|
+
## Generic Type Arguments Cannot Wrap Array Types
|
|
817
|
+
|
|
818
|
+
`<Variable x:TypeArguments="scg:List(x:Object[])">` fails with *"Cannot create unknown type … List(Object[])"*. The XAML type system refuses to construct `List<Object[]>` — an array element type nested inside a generic. Same for `<InArgument x:TypeArguments="scg:IEnumerable(x:Object[])">` on `ForEach.Values`. This blocks the natural shape for projecting LINQ rows into `AddDataRow.ArrayRow` (which is `InArgument<Object[]>`).
|
|
819
|
+
|
|
820
|
+
**Fix — box each row as `Object` so the collection's element type is non-array:**
|
|
821
|
+
|
|
822
|
+
- Variable: `<Variable x:TypeArguments="scg:List(x:Object)" Name="rows" />`
|
|
823
|
+
- Producing LINQ: `… .Select(Function(g) DirectCast(New Object(){g.Key, mean}, Object)).ToList()`
|
|
824
|
+
- `ForEach`: `<ForEach x:TypeArguments="x:Object">` over `scg:IEnumerable(x:Object)`
|
|
825
|
+
- Consumer cast: `<ui:AddDataRow ArrayRow="[CType(row, Object())]" …>`
|
|
826
|
+
|
|
827
|
+
The boxed array reaches `ArrayRow` (whose property type is `Object[]`) correctly because `CType(row, Object())` unboxes it.
|
|
828
|
+
|
|
829
|
+
## Variable Scope and "Not Declared" Errors
|
|
830
|
+
|
|
831
|
+
**Error:** `"'variableName' is not declared. It may be inaccessible due to its protection level"`
|
|
832
|
+
|
|
833
|
+
**Common causes:**
|
|
834
|
+
1. Variable declared in a child scope (e.g., inside a `Sequence`) but referenced from a parent or sibling scope
|
|
835
|
+
2. Variable name collision — same name in outer and inner scope causes `NullReferenceException` at runtime (UiPath only warns, doesn't error)
|
|
836
|
+
3. Global variables defined in `globalVariables.json` that get corrupted or duplicated
|
|
837
|
+
4. Activity output variable removed when the activity was deleted, but expressions still reference it
|
|
838
|
+
|
|
839
|
+
**In XAML terms:** Variables defined inside `<Sequence.Variables>` are only visible within that `<Sequence>` and its children. Moving an activity that references a variable to a different scope breaks the reference.
|
|
840
|
+
|
|
841
|
+
## "Value cannot be null. Parameter name: expression"
|
|
842
|
+
|
|
843
|
+
**Error:** `"Value cannot be null. Parameter name: expression"` at validation time.
|
|
844
|
+
|
|
845
|
+
**Causes:**
|
|
846
|
+
- An activity property that expects an expression has been cleared/emptied in the XAML
|
|
847
|
+
- The XAML has an `InArgument` or `OutArgument` element with no value or expression inside
|
|
848
|
+
- Deleting an activity left behind orphaned argument references
|
|
849
|
+
|
|
850
|
+
**Fix:** Find the activity with the empty expression in the XAML and either set a valid expression or remove the empty argument element.
|
|
851
|
+
|
|
852
|
+
## x:Reference / __ReferenceID Naming
|
|
853
|
+
|
|
854
|
+
Flowcharts, State Machines, and Long Running Workflows (ProcessDiagram) use `x:Name="__ReferenceID0"` and `<x:Reference>__ReferenceID0</x:Reference>` to link nodes.
|
|
855
|
+
|
|
856
|
+
### Where `<x:Reference>` Goes
|
|
857
|
+
|
|
858
|
+
`<x:Reference>` is used ONLY inside property elements to create cross-references between nodes:
|
|
859
|
+
|
|
860
|
+
| Property Element | Container | Purpose |
|
|
861
|
+
|-----------------|-----------|---------|
|
|
862
|
+
| `Flowchart.StartNode` | Flowchart | Points to the first node |
|
|
863
|
+
| `FlowStep.Next` | Flowchart | Links to the next node |
|
|
864
|
+
| `FlowDecision.True` / `.False` | Flowchart | Branch targets |
|
|
865
|
+
| `Transition.To` | State Machine | Transition destination state |
|
|
866
|
+
| `StateMachine.InitialState` | State Machine | Starting state (attribute form: `{x:Reference ...}`) |
|
|
867
|
+
| `ProcessDiagram.StartNode` | ProcessDiagram | Points to start event |
|
|
868
|
+
| `EventNode.Next` / `TaskNode.Next` | ProcessDiagram | Links to next node |
|
|
869
|
+
| `DecisionNode.True` / `.False` | ProcessDiagram | Branch targets |
|
|
870
|
+
|
|
871
|
+
### Node Registration Rule
|
|
872
|
+
|
|
873
|
+
All nodes in a Flowchart/ProcessDiagram must be registered as children of the container element. Two scenarios:
|
|
874
|
+
|
|
875
|
+
1. **Direct children** of the container (e.g., `<FlowStep>` directly under `<Flowchart>`) — already registered. Do NOT also add a trailing `<x:Reference>`.
|
|
876
|
+
2. **Inline definitions** inside property elements (e.g., `<FlowStep>` inside `<FlowDecision.True>`) — MUST add a trailing `<x:Reference>` entry as a direct child of the container.
|
|
877
|
+
|
|
878
|
+
**Correct — inline node registered with trailing `<x:Reference>`:**
|
|
879
|
+
```xml
|
|
880
|
+
<Flowchart>
|
|
881
|
+
<Flowchart.StartNode>
|
|
882
|
+
<x:Reference>__ReferenceID0</x:Reference>
|
|
883
|
+
</Flowchart.StartNode>
|
|
884
|
+
<FlowDecision x:Name="__ReferenceID0"> <!-- direct child — no trailing ref -->
|
|
885
|
+
<FlowDecision.True>
|
|
886
|
+
<FlowStep x:Name="__ReferenceID1"> <!-- inline definition -->
|
|
887
|
+
...
|
|
888
|
+
</FlowStep>
|
|
889
|
+
</FlowDecision.True>
|
|
890
|
+
</FlowDecision>
|
|
891
|
+
<x:Reference>__ReferenceID1</x:Reference> <!-- register inline node -->
|
|
892
|
+
</Flowchart>
|
|
893
|
+
```
|
|
894
|
+
|
|
895
|
+
**Wrong — re-listing a direct child:**
|
|
896
|
+
```xml
|
|
897
|
+
<Flowchart>
|
|
898
|
+
<FlowStep x:Name="__ReferenceID0"> <!-- direct child -->
|
|
899
|
+
...
|
|
900
|
+
</FlowStep>
|
|
901
|
+
<x:Reference>__ReferenceID0</x:Reference> <!-- WRONG — already a direct child -->
|
|
902
|
+
</Flowchart>
|
|
903
|
+
```
|
|
904
|
+
|
|
905
|
+
The same registration rules apply to `<upa:ProcessDiagram>` and its node types (`EventNode`, `TaskNode`, `DecisionNode`, `EndNode`, `BoundaryNode`).
|
|
906
|
+
|
|
907
|
+
### Other Gotchas
|
|
908
|
+
|
|
909
|
+
- `__ReferenceID` values must be unique within the entire XAML file — duplicate IDs cause deserialization errors
|
|
910
|
+
- When copy-pasting FlowStep/FlowDecision nodes, duplicate `__ReferenceID` values will be created — Studio auto-renumbers, but manual XAML editing doesn't
|
|
911
|
+
- When copying from flowchart to sequence, elements may be ordered backwards due to node ordering in XAML
|
|
912
|
+
- `x:Reference` can only refer to elements with `x:Name` in the same XAML file — cross-file references are not supported
|
|
913
|
+
|
|
914
|
+
**When editing manually:** If adding new FlowStep/FlowDecision nodes, use a `__ReferenceID` number higher than any existing one in the file.
|
|
915
|
+
|
|
916
|
+
## XAML File Size and Performance
|
|
917
|
+
|
|
918
|
+
- XAML files over **5 MB** cause significant Studio slowdowns
|
|
919
|
+
- Files approaching 7+ MB can take minutes to load
|
|
920
|
+
- Very large files can cause Studio to hang during validation
|
|
921
|
+
|
|
922
|
+
**Prevention:** Split large workflows into smaller XAML files and use `Invoke Workflow` to call them. Keep individual XAML files under ~500 activities.
|
|
923
|
+
|
|
924
|
+
## {x:Null} vs Omitted Properties
|
|
925
|
+
|
|
926
|
+
- `PropertyName="{x:Null}"` explicitly sets a property to null — this is serialized and persisted
|
|
927
|
+
- Omitting a property entirely means "use the default value" — which may or may not be null
|
|
928
|
+
- Some activities behave differently when a property is explicitly null vs absent (e.g., `Filter="{x:Null}"` may disable filtering, while omitting `Filter` uses a default filter)
|
|
929
|
+
- When `uip rpa activities get-default-xaml` outputs properties with `{x:Null}`, preserve them — removing them may change behavior
|
|
930
|
+
|
|
931
|
+
## Literal Curly Braces in Attribute Values
|
|
932
|
+
|
|
933
|
+
- Attribute values starting with `{` are parsed as XAML markup extensions — `Search="{FullName}"` fails with `Could not find type 'FullName' in namespace '...'`
|
|
934
|
+
- This affects **any** literal string property, not just `WordReplaceText.Search` — common with Word/text template placeholders like `{FullName}`, `{Email}`, `{DepartmentName}`
|
|
935
|
+
- Expression-wrapped values (`Search="["{FullName}"]"`) are not affected — the expression engine handles those, not the XAML parser
|
|
936
|
+
|
|
937
|
+
**Fix:** Prefix with the XAML escape sequence `{}` to indicate a literal string: `Search="{}{FullName}"`
|
|
938
|
+
|
|
939
|
+
## Selector Special Characters
|
|
940
|
+
|
|
941
|
+
When writing selectors in XAML, XML special characters must be escaped:
|
|
942
|
+
|
|
943
|
+
| Character | XAML Escape | Notes |
|
|
944
|
+
|-----------|------------|-------|
|
|
945
|
+
| `&` | `&` | Most common issue — `&` in window titles/URLs |
|
|
946
|
+
| `<` | `<` | Rare in selectors |
|
|
947
|
+
| `>` | `>` | Rare in selectors |
|
|
948
|
+
| `"` | `"` | Inside attribute values |
|
|
949
|
+
| `'` | `'` | Inside single-quoted attributes |
|
|
950
|
+
|
|
951
|
+
**Double-encoding gotcha:** If a selector value goes through both XML escaping and UiPath's own escaping, you may get `&amp;` instead of `&`. Use `SecurityElement.Escape()` in C# expressions for dynamic selectors.
|
|
952
|
+
|
|
953
|
+
## ViewState Section Corruption
|
|
954
|
+
|
|
955
|
+
The `<sap2010:WorkflowViewState.ViewStateManager>` section can become corrupted:
|
|
956
|
+
- **Studio crashes during save** can truncate the ViewState, causing "Unexpected end of file" errors
|
|
957
|
+
- **Duplicate `sap2010:WorkflowViewState.IdRef`** values cause deserialization failures
|
|
958
|
+
- **Manual editing of ViewState** almost always causes problems — it contains serialized designer positions, expanded/collapsed states, and breakpoint info
|
|
959
|
+
|
|
960
|
+
**Fix:** If ViewState is corrupted, use the `Edit` tool to delete the entire `<sap2010:WorkflowViewState.ViewStateManager>` section. Studio will regenerate it when the file is opened (you'll lose designer layout but not workflow logic).
|
|
961
|
+
|
|
962
|
+
## Git and Version Control Issues
|
|
963
|
+
|
|
964
|
+
- **XAML files may be detected as binary** by Git if they contain BOM or unusual characters — add `*.xaml diff` to `.gitattributes`
|
|
965
|
+
- **Merge conflicts in XAML** are extremely difficult to resolve manually due to the XML structure and `__ReferenceID` numbering
|
|
966
|
+
- **Simply opening a XAML file** in Studio can cause it to report changes (Studio normalizes formatting, updates ViewState) — this creates noise in Git diffs
|
|
967
|
+
- **Recommendation:** Avoid parallel editing of the same XAML file. If merge conflicts occur, prefer taking one version entirely rather than manual conflict resolution
|
|
968
|
+
|
|
969
|
+
## JitCustomTypesSchema.json not found or not updated
|
|
970
|
+
|
|
971
|
+
The `.project/JitCustomTypesSchema.json` file can be missing or outdated.
|
|
972
|
+
|
|
973
|
+
**Fix:** Use the `Read` tool to read it one more time only. If this also fails, then read the project structure.
|
|
974
|
+
|
|
975
|
+
## CLI-Specific Pitfalls
|
|
976
|
+
|
|
977
|
+
### `validate --file-path` requires relative paths
|
|
978
|
+
|
|
979
|
+
The `--file-path` parameter of `uip rpa validate` must be a path **relative to the project directory**:
|
|
980
|
+
- Correct: `--file-path "Workflows/SendEmail.xaml"`
|
|
981
|
+
- Wrong: `--file-path "C:\Users\me\Projects\MyProject\Workflows\SendEmail.xaml"`
|
|
982
|
+
|
|
983
|
+
Using an absolute path will result in a "file not found" error even if the file exists.
|
|
984
|
+
|
|
985
|
+
### `--project-dir` defaults to CWD
|
|
986
|
+
|
|
987
|
+
All `uip rpa` commands default to the current working directory as the project root. If you are running commands from a parent directory or monorepo root, every command will silently target the wrong location. Always verify the CWD contains `project.json`, or pass `--project-dir` explicitly.
|
|
988
|
+
|
|
989
|
+
### Studio IPC connection failures
|
|
990
|
+
|
|
991
|
+
`uip rpa` commands communicate with Studio over IPC. By default this is a **headless Studio** that auto-launches from a NuGet package — no Studio Desktop required. Recovery steps when commands fail with connection errors:
|
|
992
|
+
|
|
993
|
+
1. **Re-run the command.** Headless Studio relaunches automatically on the next call; transient pipe errors clear on retry.
|
|
994
|
+
2. **Raise the timeout for the first call.** Cold NuGet restore of the headless Studio package can take 30–90 s — `uip rpa --timeout 600 <command>`.
|
|
995
|
+
3. **`uip rpa project open --project-dir "..."`** — open the project explicitly if Studio reports no project loaded.
|
|
996
|
+
4. **Studio Desktop only** — if the failing command is `diff` or `focus-activity` (or the user set `UIPATH_RPA_TOOL_USE_STUDIO=1`), check Studio Desktop with the hidden `uip rpa instances list --output json` and run `uip rpa studio start --project-dir "..."` if no instance is up.
|
|
997
|
+
|
|
998
|
+
### CLI output format for parsing
|
|
999
|
+
|
|
1000
|
+
Always use `--output json` when you need to parse CLI output programmatically. The default `table` format is human-readable but unreliable for parsing (column alignment varies, long values may be truncated). JSON output is structured and unambiguous.
|
|
1001
|
+
|
|
1002
|
+
### DataTable.Select numeric comparisons on Excel-sourced data
|
|
1003
|
+
|
|
1004
|
+
When reading Excel data with `ReadRangeX`, column types in the resulting `DataTable` may be `String` even when the Excel cells contain numbers. This causes `DataTable.Select("[Amount] > 1000")` to perform string comparison instead of numeric comparison (e.g., `"4200" < "800"` alphabetically), silently dropping rows.
|
|
1005
|
+
|
|
1006
|
+
**Workarounds:**
|
|
1007
|
+
- Use LINQ with explicit conversion: `dtData.AsEnumerable().Where(Function(row) CDbl(row("Amount")) > 1000).CopyToDataTable()`
|
|
1008
|
+
- Convert the column type after reading: loop through rows and convert values, or clone the DataTable with the correct column types
|