@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/{chunk-2242AI5L.js → chunk-KFL7HIID.js} +3 -1
- package/dist/{convert-exulu-tools-to-ai-sdk-tools-C7L4PY6P.js → convert-exulu-tools-to-ai-sdk-tools-YY2WIMMJ.js} +1 -1
- package/dist/index.cjs +6955 -5146
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6894 -5106
- package/ee/queues/decorator.ts +11 -0
- package/ee/queues/prune-job-results.test.ts +41 -0
- package/ee/queues/prune-job-results.ts +5 -4
- package/ee/schemas.ts +96 -1
- package/ee/workers.flow.test.ts +236 -0
- package/ee/workers.ts +409 -168
- package/package.json +6 -1
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: {
|