mirror of
https://github.com/LogicLabs-OU/OpenArchiver.git
synced 2026-04-06 00:31:57 +02:00
* OpenAPI root url fix
* Journaling OSS setup
* feat: add preserve-original-file mode for email ingestion for GoBD compliance
- Add `preserveOriginalFile` option to ingestion sources and connectors
- Stream original EML/MBOX/PST emails to temp files instead of holding
full buffers in memory, reducing memory allocation during ingestion
- Skip attachment binary extraction and EML re-serialization when
preserve mode is enabled; use raw file on disk as source of truth
- Update `EmailObject` to use `tempFilePath` instead of in-memory `eml`
buffer across all connectors (EML, MBOX, PST)
- Add new database migration (0032) for `preserve_original_file` column
- Add frontend UI toggle with tooltip (tippy.js) for the new option
- Replace console.warn calls with structured pino logger in connectors
* add isjournaled property to archived_email
* feat(ingestion): add unmerge ingestion source functionality
Introduces the ability to detach a child ingestion source from its
merge group, making it a standalone root source. Changes include:
- Add `unmerge` controller method with auth and error handling
- Add POST `/v1/ingestion-sources/{id}/unmerge` route with OpenAPI docs
- Implement `IngestionService.unmerge` backend logic
- Add unmerge UI action and handler in the frontend ingestion view
- Fix bulk delete to also remove children of deleted root sources
- Update docs with new API operation and merging sources user guide
* code formatting
* Database migration file for enum `partially_active`
* Error handling improvement
56 lines
1.5 KiB
JSON
56 lines
1.5 KiB
JSON
{
|
|
"name": "@open-archiver/frontend",
|
|
"private": true,
|
|
"license": "SEE LICENSE IN LICENSE file",
|
|
"version": "0.0.1",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"start": "node build/index.js",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
|
},
|
|
"dependencies": {
|
|
"@iconify/svelte": "^5.0.1",
|
|
"@open-archiver/types": "workspace:*",
|
|
"@sveltejs/kit": "^2.38.1",
|
|
"clsx": "^2.1.1",
|
|
"d3-shape": "^3.2.0",
|
|
"date-fns": "^4.1.0",
|
|
"html-entities": "^2.6.0",
|
|
"jose": "^6.0.1",
|
|
"lucide-svelte": "^0.525.0",
|
|
"postal-mime": "^2.4.4",
|
|
"semver": "^7.7.2",
|
|
"svelte-persisted-store": "^0.12.0",
|
|
"sveltekit-i18n": "^2.4.2",
|
|
"tailwind-merge": "^3.3.1",
|
|
"tailwind-variants": "^1.0.0",
|
|
"tippy.js": "^6.3.7"
|
|
},
|
|
"devDependencies": {
|
|
"@internationalized/date": "^3.8.2",
|
|
"@lucide/svelte": "^0.544.0",
|
|
"@sveltejs/adapter-auto": "^6.0.0",
|
|
"@sveltejs/adapter-node": "^5.2.13",
|
|
"@sveltejs/vite-plugin-svelte": "^5.0.0",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"@types/d3-shape": "^3.1.7",
|
|
"@types/semver": "^7.7.1",
|
|
"bits-ui": "^2.12.0",
|
|
"dotenv": "^17.2.0",
|
|
"layerchart": "2.0.0-next.27",
|
|
"mode-watcher": "^1.1.0",
|
|
"svelte": "^5.0.0",
|
|
"svelte-check": "^4.0.0",
|
|
"svelte-sonner": "^1.0.5",
|
|
"tailwindcss": "^4.0.0",
|
|
"tw-animate-css": "^1.3.5",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^6.2.6"
|
|
}
|
|
}
|