@hasna/mcps 0.0.7 → 0.0.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/dist/lib/db.d.ts CHANGED
@@ -1,3 +1,6 @@
1
1
  import { Database } from "bun:sqlite";
2
+ import { SqliteAdapter } from "@hasna/cloud";
2
3
  export declare function getDb(): Database;
3
4
  export declare function closeDb(): void;
5
+ /** Get the SqliteAdapter for direct SQL queries (e.g. feedback). */
6
+ export declare function getAdapter(): SqliteAdapter;
@@ -0,0 +1,6 @@
1
+ /**
2
+ * PostgreSQL migrations for open-mcps cloud sync.
3
+ *
4
+ * Equivalent to the SQLite schema in db.ts, translated for PostgreSQL.
5
+ */
6
+ export declare const PG_MIGRATIONS: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/mcps",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "Meta-MCP registry & CLI — discover, manage, and proxy MCP servers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,6 +34,7 @@
34
34
  "prepublishOnly": "bun run build"
35
35
  },
36
36
  "dependencies": {
37
+ "@hasna/cloud": "^0.1.0",
37
38
  "@modelcontextprotocol/sdk": "^1.26.0",
38
39
  "chalk": "^5.3.0",
39
40
  "commander": "^12.1.0",