Capture 403 errors

Signed-off-by: solimant <solimant@users.noreply.github.com>
This commit is contained in:
solimant
2025-07-18 02:13:51 +00:00
parent 7127ac9107
commit 2ea0997446
8 changed files with 13 additions and 65 deletions
@@ -22,13 +22,3 @@
* @public
*/
export type TaskEventType = 'cancelled' | 'completion' | 'log' | 'recovered';
/**
* @public
*/
export const TaskEventType = {
Cancelled: 'cancelled' as TaskEventType,
Completion: 'completion' as TaskEventType,
Log: 'log' as TaskEventType,
Recovered: 'recovered' as TaskEventType,
};
@@ -28,15 +28,3 @@ export type TaskStatus =
| 'open'
| 'processing'
| 'skipped';
/**
* @public
*/
export const TaskStatus = {
Cancelled: 'cancelled' as TaskStatus,
Completed: 'completed' as TaskStatus,
Failed: 'failed' as TaskStatus,
Open: 'open' as TaskStatus,
Processing: 'processing' as TaskStatus,
Skipped: 'skipped' as TaskStatus,
};