2025-11-24 14:31:48 -08:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Export types
|
|
|
|
|
export * from './types.js';
|
|
|
|
|
|
|
|
|
|
// Export core components
|
|
|
|
|
export { HookSystem } from './hookSystem.js';
|
|
|
|
|
export { HookRegistry } from './hookRegistry.js';
|
|
|
|
|
export { HookRunner } from './hookRunner.js';
|
|
|
|
|
export { HookAggregator } from './hookAggregator.js';
|
|
|
|
|
export { HookPlanner } from './hookPlanner.js';
|
|
|
|
|
export { HookEventHandler } from './hookEventHandler.js';
|
|
|
|
|
|
|
|
|
|
// Export interfaces
|
|
|
|
|
export type { HookRegistryEntry, ConfigSource } from './hookRegistry.js';
|
|
|
|
|
export type { AggregatedHookResult } from './hookAggregator.js';
|
|
|
|
|
export type { HookEventContext } from './hookPlanner.js';
|
2025-12-03 09:04:13 -08:00
|
|
|
|
|
|
|
|
// Export hook trigger functions
|
|
|
|
|
export {
|
|
|
|
|
fireSessionStartHook,
|
|
|
|
|
fireSessionEndHook,
|
|
|
|
|
firePreCompressHook,
|
|
|
|
|
} from '../core/sessionHookTriggers.js';
|