@principles/core 1.155.0 → 1.156.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.
@@ -188,6 +188,8 @@ const REQUIRED_SOURCE_FILES = [
188
188
  'activation/production-gate-deps.ts',
189
189
  // PRI-408: Formal approval-completion production service
190
190
  'activation/approval-completion-service.ts',
191
+ // PRI-431: L2 principle reader (pure logic, extracted from pd-cli + plugin duplicates)
192
+ 'build-l2-principle-reader.ts',
191
193
  ];
192
194
  // ── PRI-212: Plugin core anti-growth guard ────────────────────────────────────
193
195
  //
@@ -434,6 +436,8 @@ const REQUIRED_TEST_FILES = [
434
436
  '../internalization/__tests__/diag-distiller-runner.test.ts',
435
437
  '../internalization/__tests__/diag-router-runner.test.ts',
436
438
  '../internalization/__tests__/diag-chain-e2e.test.ts',
439
+ // PRI-431
440
+ 'build-l2-principle-reader.test.ts',
437
441
  ];
438
442
  const REQUIRED_DOC_FILES = [];
439
443
  for (const file of REQUIRED_SOURCE_FILES) {
@@ -494,6 +498,8 @@ describe('runtime-v2 public API (index.ts barrel)', () => {
494
498
  'resolvePrincipleFromArtifact',
495
499
  'trimToBudget',
496
500
  'renderPrinciplesToDirectives',
501
+ // PRI-431
502
+ 'buildL2PrincipleReaderFromLedger',
497
503
  ];
498
504
  for (const name of REQUIRED_EXPORTS) {
499
505
  it(`exports ${name}`, async () => {