@sparkleideas/claims 3.5.2-patch.1

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.
@@ -0,0 +1,46 @@
1
+ /**
2
+ * Claims Application Layer
3
+ *
4
+ * Exports application services for the claims module:
5
+ * - ClaimService: Core claiming, releasing, and handoff operations
6
+ * - LoadBalancer: Work distribution and rebalancing across the swarm
7
+ * - WorkStealingService: Idle agent work acquisition
8
+ *
9
+ * @module v3/claims/application
10
+ */
11
+
12
+ // Core claim service
13
+ export { ClaimService, IClaimService } from './claim-service.js';
14
+
15
+ // Load Balancing Service
16
+ export {
17
+ LoadBalancer,
18
+ createLoadBalancer,
19
+ type ILoadBalancer,
20
+ type ILoadBalancerClaimRepository,
21
+ type IAgentRegistry,
22
+ type IHandoffService,
23
+ type AgentMetadata,
24
+ type SwarmLoadInfo,
25
+ type RebalanceOptions,
26
+ type RebalanceResult,
27
+ type ImbalanceReport,
28
+ type ClaimSummary,
29
+ type LoadBalancerEventType,
30
+ type SwarmRebalancedEvent,
31
+ type AgentOverloadedEvent,
32
+ type AgentUnderloadedEvent,
33
+ type LoadBalancerClaimant,
34
+ type LoadBalancerClaimStatus,
35
+ } from './load-balancer.js';
36
+
37
+ // Re-export AgentLoadInfo from load-balancer with a unique name to avoid conflict
38
+ export { type AgentLoadInfo as LoadBalancerAgentLoadInfo } from './load-balancer.js';
39
+
40
+ // Work Stealing Service
41
+ export {
42
+ WorkStealingService,
43
+ InMemoryWorkStealingEventBus,
44
+ createWorkStealingService,
45
+ type IWorkStealingService,
46
+ } from './work-stealing-service.js';