@exulu/backend 2.3.0 → 3.0.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/dist/index.d.cts CHANGED
@@ -2518,7 +2518,7 @@ declare function createAgenticRetrievalTool(opts: {
2518
2518
  projectScope?: ProjectScope;
2519
2519
  }): ExuluTool | undefined;
2520
2520
 
2521
- type JOB_STATUS = "completed" | "failed" | "delayed" | "active" | "waiting" | "paused" | "stuck";
2521
+ type JOB_STATUS = "completed" | "failed" | "delayed" | "active" | "waiting" | "paused" | "stuck" | "waiting_approval" | "filtered" | "cancelled";
2522
2522
  declare const JOB_STATUS_ENUM: {
2523
2523
  completed: string;
2524
2524
  failed: string;
@@ -2527,6 +2527,9 @@ declare const JOB_STATUS_ENUM: {
2527
2527
  waiting: string;
2528
2528
  paused: string;
2529
2529
  stuck: string;
2530
+ waiting_approval: string;
2531
+ filtered: string;
2532
+ cancelled: string;
2530
2533
  };
2531
2534
 
2532
2535
  declare const ExuluJobs: {
package/dist/index.d.ts CHANGED
@@ -2518,7 +2518,7 @@ declare function createAgenticRetrievalTool(opts: {
2518
2518
  projectScope?: ProjectScope;
2519
2519
  }): ExuluTool | undefined;
2520
2520
 
2521
- type JOB_STATUS = "completed" | "failed" | "delayed" | "active" | "waiting" | "paused" | "stuck";
2521
+ type JOB_STATUS = "completed" | "failed" | "delayed" | "active" | "waiting" | "paused" | "stuck" | "waiting_approval" | "filtered" | "cancelled";
2522
2522
  declare const JOB_STATUS_ENUM: {
2523
2523
  completed: string;
2524
2524
  failed: string;
@@ -2527,6 +2527,9 @@ declare const JOB_STATUS_ENUM: {
2527
2527
  waiting: string;
2528
2528
  paused: string;
2529
2529
  stuck: string;
2530
+ waiting_approval: string;
2531
+ filtered: string;
2532
+ cancelled: string;
2530
2533
  };
2531
2534
 
2532
2535
  declare const ExuluJobs: {