@lucern/pack-host 0.3.0-alpha.6 → 0.3.0-alpha.7

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.
@@ -4,15 +4,9 @@ export { DEVELOPER_REASONING_PACK } from './developer-reasoning.js';
4
4
  export { ENGINEERING_ACCELERATOR_PACK } from './engineering-accelerator.js';
5
5
  import '../validation.js';
6
6
 
7
- /**
8
- * Domain Pack Registry
9
- *
10
- * Internal registry of domain pack definitions.
11
- */
12
-
13
7
  declare function getDomainPack(packId: string): DomainPack | null;
14
8
  declare function listDomainPacks(): string[];
15
- declare function getShapingContribution(packId: string): ShapingContribution | null;
16
- declare function listShapingContributions(): string[];
9
+ declare const getShapingContribution: (packId: string) => ShapingContribution | null;
10
+ declare const listShapingContributions: () => string[];
17
11
 
18
12
  export { getDomainPack, getShapingContribution, listDomainPacks, listShapingContributions };
@@ -2641,12 +2641,12 @@ function getDomainPack(packId) {
2641
2641
  function listDomainPacks() {
2642
2642
  return Object.keys(DOMAIN_PACKS);
2643
2643
  }
2644
- function getShapingContribution(packId) {
2645
- return shapingContributionRegistry.get(packId);
2646
- }
2647
- function listShapingContributions() {
2648
- return shapingContributionRegistry.list();
2649
- }
2644
+ var getShapingContribution = shapingContributionRegistry.get.bind(
2645
+ shapingContributionRegistry
2646
+ );
2647
+ var listShapingContributions = shapingContributionRegistry.list.bind(
2648
+ shapingContributionRegistry
2649
+ );
2650
2650
 
2651
2651
  export { DEVELOPER_REASONING_PACK, ENGINEERING_ACCELERATOR_PACK, getDomainPack, getShapingContribution, listDomainPacks, listShapingContributions };
2652
2652
  //# sourceMappingURL=index.js.map