Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ const handleChange = (e: ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) =>
**Outcome handlers** — one `async` function per outcome:
```typescript
const handle<OutcomeName> = async () => {
await <service>.completeTask('<OutcomeName>', formData);
await <service>.completeTask('<OutcomeName>', { ...formData, action: '<OutcomeName>' });
Copy link
Copy Markdown
Contributor

@Sandeepan-Ghosh-0312 Sandeepan-Ghosh-0312 Mar 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why do we want to pass action here as task data ? Can't coded agents use it from the task itself ?

};
```

Expand Down Expand Up @@ -701,7 +701,13 @@ After all files are written, print a file tree of `<app-name>/` and confirm:
- [ ] `uipath.json` — fill in `scopes`, `clientId` and repack before deploying (if typescript SDK is being used)
- [ ] `npm run build` passes with zero TypeScript errors
- [ ] `npm run dev` starts the local dev server
- [ ] Run `uipath pack` then `uipath publish` to deploy to UiPath Cloud
- [ ] Deploy using the UiPath TS CLI with `--type Action` on publish:
```bash
uipath pack ./dist --name "<app-name>" --version "1.0.0" --reuse-client ...
uipath publish --name "<app-name>" --type Action ...
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lets leave out passing appname in publish and deploy commands. Pack already puts the appname in app.config.ts

uipath deploy --name "<app-name>" ...
```
**IMPORTANT:** You MUST use `--type Action` on `uipath publish`. Without it, the app registers as a regular web app and will NOT appear as a task app in Action Center.

---

Expand Down
Loading