@hasna/search 0.0.3 → 0.0.5
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/cli/index.js +9186 -190
- package/dist/db/database.d.ts.map +1 -1
- package/dist/db/pg-migrations.d.ts +8 -0
- package/dist/db/pg-migrations.d.ts.map +1 -0
- package/dist/index.js +8950 -17
- package/dist/mcp/index.js +9224 -192
- package/dist/server/index.js +8946 -17
- package/package.json +6 -4
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"database.d.ts","sourceRoot":"","sources":["../../src/db/database.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"database.d.ts","sourceRoot":"","sources":["../../src/db/database.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAoBtC,wBAAgB,KAAK,IAAI,QAAQ,CAehC;AAED,wBAAgB,OAAO,IAAI,IAAI,CAM9B;AAED,wBAAgB,eAAe,IAAI,QAAQ,CAO1C"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PostgreSQL migrations for open-search cloud sync.
|
|
3
|
+
*
|
|
4
|
+
* Equivalent to the SQLite schema in migrations.ts, translated for PostgreSQL.
|
|
5
|
+
* FTS5 virtual tables and triggers are omitted (use pg_trgm / tsvector instead).
|
|
6
|
+
*/
|
|
7
|
+
export declare const PG_MIGRATIONS: string[];
|
|
8
|
+
//# sourceMappingURL=pg-migrations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pg-migrations.d.ts","sourceRoot":"","sources":["../../src/db/pg-migrations.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,eAAO,MAAM,aAAa,EAAE,MAAM,EA+GjC,CAAC"}
|