@hasna/connectors 1.3.7 → 1.3.9
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/bin/index.js +9200 -327
- package/bin/mcp.js +9142 -239
- package/bin/serve.js +9012 -141
- package/dist/db/agents.d.ts +3 -0
- package/dist/db/database.d.ts +7 -1
- package/dist/db/pg-migrations.d.ts +6 -0
- package/dist/index.js +8997 -127
- package/dist/lib/llm.d.ts +1 -1
- package/dist/lib/lock.d.ts +1 -1
- package/package.json +2 -1
package/dist/lib/llm.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Provider-agnostic LLM client for open-connectors.
|
|
3
3
|
*
|
|
4
4
|
* Supports: cerebras, groq, openai, anthropic
|
|
5
|
-
* Config stored at: ~/.connectors/llm.json
|
|
5
|
+
* Config stored at: ~/.hasna/connectors/llm.json
|
|
6
6
|
*
|
|
7
7
|
* Cerebras and Groq are OpenAI-compatible (same SDK, different base URLs).
|
|
8
8
|
* Anthropic has its own API format.
|
package/dist/lib/lock.d.ts
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Strategy: atomic O_EXCL file creation as the lock primitive (works on all
|
|
9
9
|
* platforms including macOS). Lock files live at:
|
|
10
|
-
* ~/.connectors/connect-{name}/.write.lock
|
|
10
|
+
* ~/.hasna/connectors/connect-{name}/.write.lock
|
|
11
11
|
*
|
|
12
12
|
* Callers that cannot acquire the lock within the timeout receive a LockTimeoutError.
|
|
13
13
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasna/connectors",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.9",
|
|
4
4
|
"description": "Open source connector library - Install API connectors with a single command",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"typescript": "^5"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
+
"@hasna/cloud": "^0.1.0",
|
|
58
59
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
59
60
|
"chalk": "^5.3.0",
|
|
60
61
|
"commander": "^12.1.0",
|