@hasna/recordings 0.1.22 → 0.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -5
- package/dist/cli/index.js +5365 -9390
- package/dist/cli/storage.d.ts +3 -0
- package/dist/cli/storage.d.ts.map +1 -0
- package/dist/db/database.d.ts +1 -1
- package/dist/db/database.d.ts.map +1 -1
- package/dist/db/pg-migrate.d.ts +8 -0
- package/dist/db/pg-migrate.d.ts.map +1 -0
- package/dist/db/pg-migrations.d.ts +1 -1
- package/dist/db/pg-migrations.d.ts.map +1 -1
- package/dist/db/remote-storage.d.ts +12 -0
- package/dist/db/remote-storage.d.ts.map +1 -0
- package/dist/db/sqlite-adapter.d.ts +14 -0
- package/dist/db/sqlite-adapter.d.ts.map +1 -0
- package/dist/db/storage-config.d.ts +27 -0
- package/dist/db/storage-config.d.ts.map +1 -0
- package/dist/db/storage-sync.d.ts +36 -0
- package/dist/db/storage-sync.d.ts.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +684 -4857
- package/dist/lib/enhancer.d.ts.map +1 -1
- package/dist/lib/transcriber.d.ts +1 -0
- package/dist/lib/transcriber.d.ts.map +1 -1
- package/dist/mcp/index.js +1797 -6616
- package/dist/mcp/storage-tools.d.ts +3 -0
- package/dist/mcp/storage-tools.d.ts.map +1 -0
- package/dist/storage.d.ts +7 -0
- package/dist/storage.d.ts.map +1 -0
- package/dist/storage.js +5656 -0
- package/dist/version.d.ts +1 -1
- package/package.json +10 -4
- package/scripts/install_macos_app.sh +17 -0
- package/src/native/Recordings/App/RecordingsApp.swift +3 -2
- package/src/native/Recordings/RecordingsLib/MenuBarPopover.swift +101 -80
- package/src/native/Recordings/RecordingsLib/OpenAIAPIKeyStore.swift +26 -0
- package/src/native/Recordings/RecordingsLib/RealtimeTranscriptionClient.swift +13 -1
- package/src/native/Recordings/RecordingsLib/RecordingEngine.swift +92 -31
- package/src/native/Recordings/RecordingsLib/SettingsView.swift +5 -1
- package/src/native/Recordings/RecordingsTests/CLIRunnerTests.swift +12 -0
- package/src/native/Recordings/RecordingsTests/OpenAIAPIKeyStoreTests.swift +49 -0
- package/src/native/Recordings/RecordingsTests/PasteTargetTests.swift +54 -0
- package/src/native/Recordings/RecordingsTests/TranscriptResolutionTests.swift +58 -0
package/README.md
CHANGED
|
@@ -42,16 +42,22 @@ MCP_HTTP=1 MCP_HTTP_PORT=8829 recordings-mcp
|
|
|
42
42
|
|
|
43
43
|
Endpoints: `GET /health` → `{"status":"ok","name":"recordings"}`, MCP at `/mcp`.
|
|
44
44
|
|
|
45
|
-
##
|
|
45
|
+
## Storage Sync
|
|
46
46
|
|
|
47
|
-
This package
|
|
47
|
+
This package has native local/remote sync. Local data stays in SQLite under
|
|
48
|
+
`~/.hasna/recordings/`; remote sync uses PostgreSQL when
|
|
49
|
+
`HASNA_RECORDINGS_DATABASE_URL` is set or `~/.hasna/recordings/storage/config.json` is
|
|
50
|
+
configured.
|
|
48
51
|
|
|
49
52
|
```bash
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
recordings storage status
|
|
54
|
+
recordings storage migrate
|
|
55
|
+
recordings storage push
|
|
56
|
+
recordings storage pull
|
|
53
57
|
```
|
|
54
58
|
|
|
59
|
+
`RECORDINGS_DATABASE_URL` is accepted as the non-Hasna fallback database URL.
|
|
60
|
+
|
|
55
61
|
## Data Directory
|
|
56
62
|
|
|
57
63
|
Data is stored in `~/.hasna/recordings/`.
|