feat: rm other actions logic

This commit is contained in:
Rohit
2025-04-30 19:24:38 +05:30
parent c7e3a66511
commit f1d0cbdaae
13 changed files with 9 additions and 200 deletions

View File

@@ -13,7 +13,6 @@ interface GoogleSheetUpdateTask {
interface SerializableOutput {
scrapeSchema?: any[];
scrapeList?: any[];
other?: any[];
}
const MAX_RETRIES = 5;
@@ -69,16 +68,6 @@ export async function updateGoogleSheet(robotId: string, runId: string) {
plainRobot
);
}
if (serializableOutput.other && serializableOutput.other.length > 0) {
await processOutputType(
robotId,
spreadsheetId,
'Other',
serializableOutput.other,
plainRobot
);
}
}
if (plainRun.binaryOutput && Object.keys(plainRun.binaryOutput).length > 0) {