@lota-sdk/core 0.1.19 → 0.1.21

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.
@@ -1,3 +1,4 @@
1
+ import { startAutonomousJobWorker } from '../queues/autonomous-job.queue'
1
2
  import { startContextCompactionWorker } from '../queues/context-compaction.queue'
2
3
  import { startDelayedNodePromotionWorker } from '../queues/delayed-node-promotion.queue'
3
4
  import { scheduleRecurringConsolidation, startMemoryConsolidationWorker } from '../queues/memory-consolidation.queue'
@@ -9,6 +10,7 @@ import { startSkillExtractionWorker } from '../queues/skill-extraction.queue'
9
10
  import { startWorkstreamTitleGenerationWorker } from '../queues/workstream-title-generation.queue'
10
11
 
11
12
  export interface LotaRuntimeWorkerStartRegistry {
13
+ autonomousJob: typeof startAutonomousJobWorker
12
14
  contextCompaction: typeof startContextCompactionWorker
13
15
  delayedNodePromotion: typeof startDelayedNodePromotionWorker
14
16
  memoryConsolidation: typeof startMemoryConsolidationWorker
@@ -37,6 +39,7 @@ export interface LotaRuntimeWorkerExtensions {
37
39
  export function buildRuntimeWorkerRegistry(extraWorkers?: LotaRuntimeWorkerExtensions): LotaRuntimeWorkers {
38
40
  return {
39
41
  start: {
42
+ autonomousJob: startAutonomousJobWorker,
40
43
  contextCompaction: startContextCompactionWorker,
41
44
  delayedNodePromotion: startDelayedNodePromotionWorker,
42
45
  memoryConsolidation: startMemoryConsolidationWorker,