Jobber/shared/src/types.ts
Shaheer Sarfaraz 82e142a8a8
Auto-Registering Extractor System (#223)
* initial commit?

* Address PR feedback on extractor discovery and startup resilience

* Address latest PR review comments

* fix city resolution fallback when input parses empty

* address PR feedback on extractor registry and pipeline validation

* address copilot comments on manifests and registry startup

* fix extractor discovery export handling and env isolation in tests

* enforce duplicate manifest id failures in strict mode

* Fix remaining extractor registry and runtime review comments

* docs

* docs

* test all, logic remains in extractors

* Address PR review feedback on extractor registry and validation

* Revert extractor moduleResolution to bundler

* Enforce shared city filtering across all discovery sources

* Deduplicate extractor strict city post-filtering
2026-02-21 17:44:07 +00:00

16 lines
460 B
TypeScript

/**
* Shared types for the job-ops orchestrator.
*
* Types are organized by domain in the `./types/` subdirectory.
* This file re-exports everything for backward compatibility.
*/
export * from "./types/api";
export * from "./types/chat";
export * from "./types/extractors";
export * from "./types/jobs";
export * from "./types/pipeline";
export * from "./types/post-application";
export * from "./types/settings";
export * from "./types/visa-sponsors";