StrategySchemaService

Service for managing strategy schema registry.

Uses ToolRegistry from functools-kit for type-safe schema storage. Strategies are registered via addStrategy() and retrieved by name.

constructor();
loggerService: LoggerService
_registry: any
register: (key: string, value: IStrategySchema) => void

Registers a new strategy schema.

validateShallow: any

Validates strategy schema structure for required properties.

Performs shallow validation to ensure all required properties exist and have correct types before registration in the registry.

override: (key: string, value: Partial<IStrategySchema>) => IStrategySchema

Overrides an existing strategy schema with partial updates.

get: (key: string) => IStrategySchema

Retrieves a strategy schema by name.