Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0fe0686
refactor: update DatabaseConfig type to use 'type' instead of 'backend'
devin-ai-integration[bot] May 14, 2025
5112c3a
feat: update all CLI commands to use RocksDB with multi-process support
devin-ai-integration[bot] May 14, 2025
b376277
fix: remove type assertions in listenForEvents method
devin-ai-integration[bot] May 14, 2025
eeab6cb
chore: format files with prettier
devin-ai-integration[bot] May 14, 2025
0efeec5
feat: add retry logic for database operations with RocksDB multi-proc…
devin-ai-integration[bot] May 14, 2025
2d6a77f
fix: replace abstract-leveldown with abstract-level for better type s…
devin-ai-integration[bot] May 14, 2025
605c173
Add version
Zorlin May 14, 2025
e26a611
Bump version
Zorlin May 14, 2025
c8dd400
fix: ensure orbitedb-hook is properly included in build
devin-ai-integration[bot] May 14, 2025
43da46c
fix: ensure constellation-patch is properly included in build
devin-ai-integration[bot] May 14, 2025
5c8e1b8
refactor: replace deprecated rocksdb module with abstract-level
devin-ai-integration[bot] May 14, 2025
25f2605
chore: update pnpm-lock.yaml after removing rocksdb dependency
devin-ai-integration[bot] May 14, 2025
2958589
fix: replace abstract-leveldown with abstract-level
devin-ai-integration[bot] May 14, 2025
6403629
Bump version
Zorlin May 14, 2025
f0d3a62
Bump version
Zorlin May 14, 2025
c29c0f0
Bump version
Zorlin May 14, 2025
e9a2855
fix: add db-retry module to exports for multi-process database support
devin-ai-integration[bot] May 14, 2025
18efde1
fix: implement real-time user authorization and fix type errors
devin-ai-integration[bot] May 14, 2025
15e06c7
fix: update bin.ts to use lens-client for real-time authorization
devin-ai-integration[bot] May 14, 2025
d7d251f
fix: resolve type mismatch in listenForProfilePhotoChange method
devin-ai-integration[bot] May 14, 2025
7c00d04
fix: correct type adaptation in listenForProfilePhotoChange method
devin-ai-integration[bot] May 14, 2025
4bd7932
fix: remove unnecessary type adaptation in listenForProfilePhotoChange
devin-ai-integration[bot] May 14, 2025
14b0ba5
fix: correct image parameter passing in changeProfilePhoto method
devin-ai-integration[bot] May 14, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 19 additions & 3 deletions categories.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,16 @@
"mediaFormat": {
"type": "string",
"description": "Physical media format if applicable",
"options": ["CD", "DVD", "Vinyl", "Soundboard", "SACD", "DAT", "WEB", "Blu-Ray"]
"options": [
"CD",
"DVD",
"Vinyl",
"Soundboard",
"SACD",
"DAT",
"WEB",
"Blu-Ray"
]
}
}
},
Expand Down Expand Up @@ -198,7 +207,14 @@
"status": {
"type": "string",
"description": "Current status of the TV show",
"options": ["Returning Series", "Ended", "Canceled", "In Production", "Pilot", "Unknown"]
"options": [
"Returning Series",
"Ended",
"Canceled",
"In Production",
"Pilot",
"Unknown"
]
},
"TMDBID": {
"type": "string",
Expand Down Expand Up @@ -226,4 +242,4 @@
}
}
}
]
]
13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
{
"name": "@riffcc/orbiter",
"version": "0.2.34",
"version": "0.2.34-dev9",
"description": "",
"main": "dist/index.js",
"type": "module",
"exports": {
".": "./dist/index.js",
"./orbitedb-hook": "./dist/orbitedb-hook.js",
"./constellation-patch": "./dist/constellation-patch.js",
"./utils/db-retry": "./dist/utils/db-retry.js",
"./lens-client": "./dist/lens-client.js",
"./lens-server": "./dist/lens-server.js"
},
"scripts": {
"clean": "rimraf dist",
"compile": "pnpm update-version && pnpm clean && pnpm tspc -p tsconfig.json",
Expand Down Expand Up @@ -38,6 +46,7 @@
"@eslint/js": "^9.25.1",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.18",
"@types/yargs": "^17.0.33",
"aegir": "^45.2.0",
"ajv": "^8.17.1",
Expand All @@ -63,11 +72,13 @@
"dependencies": {
"@constl/utils-ipa": "2.0.2",
"@inquirer/prompts": "^7.4.1",
"abstract-level": "^1.0.3",
"chalk": "^5.4.1",
"change-case": "^5.4.4",
"constl-ipa-fork": "^1.8.67",
"deepcopy": "^2.1.0",
"dotenv": "^16.5.0",
"level": "^8.0.0",
"lodash-es": "^4.17.21",
"log-update": "^6.1.0",
"ora": "^8.2.0",
Expand Down
Loading
Loading