-
Notifications
You must be signed in to change notification settings - Fork 0
fix: harden date parsing and fix missing exports #205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…erredResponse These functions were defined in src/parsing/citationParser.ts but were not exported from the package's main index.ts, causing import errors in consuming packages. Added exports: - parseDeferredCitationResponse: Parse raw LLM output with deferred citations - getAllCitationsFromDeferredResponse: Extract all citations from deferred format
✅ Playwright Test ReportStatus: Tests passed 📊 Download Report & Snapshots (see Artifacts section) What's in the Visual SnapshotsThe gallery includes visual snapshots for:
Run ID: 21894906961 |
Pull Request Review: Fix Missing ExportsSummaryThis PR adds two missing exports ( Code Quality Assessment ✅Strengths
Issues & Recommendations
|
This PR resolves Firestore Timestamp parsing errors and missing exports that were causing test failures across the monorepo.
1. Fixed missing exports in @deepcitation/deepcitation-js
Problem:
parseDeferredCitationResponseandgetAllCitationsFromDeferredResponseexisted in source code but weren't exported from the package's main index, causing import errors:Solution: Added missing exports to
src/index.tsTest Results