@principles/core 1.141.0 → 1.142.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.
@@ -2502,12 +2502,13 @@ describe('PRI-139 L1 Hard Cap & LRU Eviction', () => {
2502
2502
  });
2503
2503
  // ── PRI-142: IntakeToInternalizationBridge ──────────────────────────────────────
2504
2504
  describe('PRI-142 IntakeToInternalizationBridge', () => {
2505
- it('core barrel exports computeBridgeDecision, buildDreamerTaskSeed, seedIntakeTask, ROUTE_CHANNEL_MAP', async () => {
2505
+ it('core barrel exports computeBridgeDecision, buildDreamerTaskSeed, buildDreamerSeedFromCandidate, seedIntakeTask, ROUTE_CHANNEL_MAP', async () => {
2506
2506
  const { readFileSync } = await import('node:fs');
2507
2507
  const { resolve } = await import('node:path');
2508
2508
  const src = readFileSync(resolve(__dirname, '..', 'index.ts'), 'utf-8');
2509
2509
  expect(src).toContain('computeBridgeDecision');
2510
2510
  expect(src).toContain('buildDreamerTaskSeed');
2511
+ expect(src).toContain('buildDreamerSeedFromCandidate');
2511
2512
  expect(src).toContain('seedIntakeTask');
2512
2513
  expect(src).toContain('ROUTE_CHANNEL_MAP');
2513
2514
  });
@@ -2535,6 +2536,7 @@ describe('PRI-142 IntakeToInternalizationBridge', () => {
2535
2536
  const src = readFileSync(resolve(__dirname, '..', 'internalization', 'index.ts'), 'utf-8');
2536
2537
  expect(src).toContain('computeBridgeDecision');
2537
2538
  expect(src).toContain('buildDreamerTaskSeed');
2539
+ expect(src).toContain('buildDreamerSeedFromCandidate');
2538
2540
  expect(src).toContain('seedIntakeTask');
2539
2541
  expect(src).toContain('ROUTE_CHANNEL_MAP');
2540
2542
  expect(src).toContain('IntakeToInternalizationBridgeInput');