arkgate 2.6.1 → 2.7.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.
Files changed (46) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/README.md +8 -3
  3. package/bin/ark-check.mjs +19 -993
  4. package/bin/ark-layer-match.mjs +148 -171
  5. package/bin/ark-shared.mjs +9 -159
  6. package/bin/lib/architecture-scan.mjs +279 -0
  7. package/bin/lib/ast-scan.mjs +199 -0
  8. package/bin/lib/baseline-key.mjs +23 -0
  9. package/bin/lib/config-warnings.mjs +228 -0
  10. package/bin/lib/graph-cycles.mjs +56 -0
  11. package/bin/lib/remediation.mjs +150 -0
  12. package/bin/lib/scan-files.mjs +69 -0
  13. package/bin/lib/ts-resolve.mjs +215 -0
  14. package/bin/lib/violations.mjs +3 -9
  15. package/dist/eslint/index.cjs +21 -3
  16. package/dist/eslint/index.cjs.map +1 -1
  17. package/dist/eslint/index.d.cts +5 -3
  18. package/dist/eslint/index.d.ts +5 -3
  19. package/dist/eslint/index.js +21 -3
  20. package/dist/eslint/index.js.map +1 -1
  21. package/dist/index.cjs +1 -1
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.d.cts +3 -3
  24. package/dist/index.d.ts +3 -3
  25. package/dist/index.js +1 -1
  26. package/dist/index.js.map +1 -1
  27. package/dist/nestjs/index.cjs +1 -1
  28. package/dist/nestjs/index.cjs.map +1 -1
  29. package/dist/nestjs/index.d.cts +1 -1
  30. package/dist/nestjs/index.d.ts +1 -1
  31. package/dist/nestjs/index.js +1 -1
  32. package/dist/nestjs/index.js.map +1 -1
  33. package/dist/runtime/index.cjs +3080 -0
  34. package/dist/runtime/index.cjs.map +1 -0
  35. package/dist/runtime/index.d.cts +2 -0
  36. package/dist/runtime/index.d.ts +2 -0
  37. package/dist/runtime/index.js +2998 -0
  38. package/dist/runtime/index.js.map +1 -0
  39. package/dist/{types-DpdVN7Lm.d.cts → types-CP3KkwZt.d.cts} +1 -1
  40. package/dist/{types-DpdVN7Lm.d.ts → types-CP3KkwZt.d.ts} +1 -1
  41. package/docs/agent-guide.md +4 -1
  42. package/docs/migrate-from-ark-runtime-kernel.md +4 -2
  43. package/docs/package-surface.md +72 -0
  44. package/docs/production-hardening.md +3 -0
  45. package/package.json +11 -1
  46. package/server.json +2 -2
@@ -1,5 +1,5 @@
1
1
  import { DynamicModule, InjectionToken, OptionalFactoryDependency } from '@nestjs/common';
2
- import { T as ArkKernel, Q as CreateArkKernelOptions } from '../types-DpdVN7Lm.cjs';
2
+ import { A as ArkKernel, C as CreateArkKernelOptions } from '../types-CP3KkwZt.cjs';
3
3
 
4
4
  /** Injection token for the Ark kernel instance. */
5
5
  declare const ARK_KERNEL: unique symbol;
@@ -1,5 +1,5 @@
1
1
  import { DynamicModule, InjectionToken, OptionalFactoryDependency } from '@nestjs/common';
2
- import { T as ArkKernel, Q as CreateArkKernelOptions } from '../types-DpdVN7Lm.js';
2
+ import { A as ArkKernel, C as CreateArkKernelOptions } from '../types-CP3KkwZt.js';
3
3
 
4
4
  /** Injection token for the Ark kernel instance. */
5
5
  declare const ARK_KERNEL: unique symbol;
@@ -1625,7 +1625,7 @@ var elevenLayerProfile = createArchitectureProfile({
1625
1625
  var MANIFEST_SCHEMA_VERSION = "1.0";
1626
1626
 
1627
1627
  // src/version.ts
1628
- var version = "2.6.1";
1628
+ var version = "2.7.0";
1629
1629
 
1630
1630
  // src/kernel/manifest/createArkManifest.ts
1631
1631
  function policyId(name) {