Enabled users to rename or update the titles of all recorded actions

This commit is contained in:
source-rashi
2025-10-27 02:11:32 +05:30
parent 5844eaae21
commit d2e6fdbbc0
4 changed files with 95 additions and 5 deletions

View File

@@ -32,7 +32,9 @@ export const updateRecording = async (id: string, data: {
name?: string;
limits?: Array<{pairIndex: number, actionIndex: number, argIndex: number, limit: number}>;
credentials?: Credentials;
targetUrl?: string
targetUrl?: string;
// optional full workflow replacement (useful for action renames)
workflow?: any[];
}): Promise<boolean> => {
try {
const response = await axios.put(`${apiUrl}/storage/recordings/${id}`, data);