@c3-oss/prosa 0.1.0 → 0.2.0
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 +48 -31
- package/dist/bin/prosa.d.ts +1 -0
- package/dist/bin/prosa.js +6854 -0
- package/dist/bin/prosa.js.map +1 -0
- package/dist/cli/main.js +601 -229
- package/dist/cli/main.js.map +1 -1
- package/dist/index.d.ts +11 -5
- package/dist/index.js +288 -47
- package/dist/index.js.map +1 -1
- package/package.json +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Database } from 'better-sqlite3';
|
|
2
|
+
import { Logger } from 'pino';
|
|
2
3
|
|
|
3
4
|
type Db = Database;
|
|
4
5
|
|
|
@@ -303,28 +304,33 @@ interface DuckDbQueryResult {
|
|
|
303
304
|
declare function exportBundleParquet(options: ParquetExportOptions): Promise<ParquetExportResult>;
|
|
304
305
|
declare function queryDuckDbParquet(options: DuckDbQueryOptions): Promise<DuckDbQueryResult>;
|
|
305
306
|
|
|
307
|
+
type CompileLogger = Pick<Logger, 'child' | 'debug' | 'error' | 'info' | 'warn'>;
|
|
308
|
+
interface CompileOptions {
|
|
309
|
+
logger?: CompileLogger;
|
|
310
|
+
}
|
|
311
|
+
|
|
306
312
|
interface CompileResult$3 {
|
|
307
313
|
batch: ImportBatch;
|
|
308
314
|
counts: ImportCounts;
|
|
309
315
|
}
|
|
310
|
-
declare function compileCodex(bundle: Bundle, root: string): Promise<CompileResult$3>;
|
|
316
|
+
declare function compileCodex(bundle: Bundle, root: string, options?: CompileOptions): Promise<CompileResult$3>;
|
|
311
317
|
|
|
312
318
|
interface CompileResult$2 {
|
|
313
319
|
batch: ImportBatch;
|
|
314
320
|
counts: ImportCounts;
|
|
315
321
|
}
|
|
316
|
-
declare function compileClaude(bundle: Bundle, root: string): Promise<CompileResult$2>;
|
|
322
|
+
declare function compileClaude(bundle: Bundle, root: string, options?: CompileOptions): Promise<CompileResult$2>;
|
|
317
323
|
|
|
318
324
|
interface CompileResult$1 {
|
|
319
325
|
batch: ImportBatch;
|
|
320
326
|
counts: ImportCounts;
|
|
321
327
|
}
|
|
322
|
-
declare function compileGemini(bundle: Bundle, root: string): Promise<CompileResult$1>;
|
|
328
|
+
declare function compileGemini(bundle: Bundle, root: string, options?: CompileOptions): Promise<CompileResult$1>;
|
|
323
329
|
|
|
324
330
|
interface CompileResult {
|
|
325
331
|
batch: ImportBatch;
|
|
326
332
|
counts: ImportCounts;
|
|
327
333
|
}
|
|
328
|
-
declare function compileCursor(bundle: Bundle, root: string): Promise<CompileResult>;
|
|
334
|
+
declare function compileCursor(bundle: Bundle, root: string, options?: CompileOptions): Promise<CompileResult>;
|
|
329
335
|
|
|
330
|
-
export { type Bundle, type BundleManifest, type CanonicalToolType, type CompileResult$2 as ClaudeCompileResult, type CompileResult$3 as CodexCompileResult, type Confidence, type CompileResult as CursorCompileResult, type DuckDbQueryOptions, type DuckDbQueryResult, type EdgeType, type CompileResult$1 as GeminiCompileResult, type ImportBatch, type ImportCounts, type MessageRole, type ObjectId, type ObjectMeta, PARQUET_TABLES, PROSA_PARSER_VERSION, PROSA_SCHEMA_VERSION, type ParquetExportOptions, type ParquetExportResult, type ParquetTable, type RegisterResult, type SearchEngine, type SearchHit, type SearchIndexStatus, type SearchOptions, type SessionDetail, type SessionDetailEvent, type SessionListFilters, type SessionRow, type SessionRowFull, type SourceFileRow, type SourceTool, type ToolCallStatus, closeBundle, compileClaude, compileCodex, compileCursor, compileGemini, countSessions, currentSchemaVersion, defaultBundlePath, disableFts5Triggers, emptyCounts, enableFts5Triggers, exportBundleParquet, exportSessionMarkdown, finishBatch, getBytes, getJson, getObjectMeta, getSearchIndexStatus, getSearchIndexStatuses, getSession, getText, initBundle, listSessions, markIndexesAfterImport, openBundle, putBytes, putJson, putText, queryDuckDbParquet, rebuildFts5Index, rebuildTantivyIndex, recordError, registerSourceFile, runMigrations, searchFullText, startBatch };
|
|
336
|
+
export { type Bundle, type BundleManifest, type CanonicalToolType, type CompileResult$2 as ClaudeCompileResult, type CompileResult$3 as CodexCompileResult, type CompileLogger, type CompileOptions, type Confidence, type CompileResult as CursorCompileResult, type DuckDbQueryOptions, type DuckDbQueryResult, type EdgeType, type CompileResult$1 as GeminiCompileResult, type ImportBatch, type ImportCounts, type MessageRole, type ObjectId, type ObjectMeta, PARQUET_TABLES, PROSA_PARSER_VERSION, PROSA_SCHEMA_VERSION, type ParquetExportOptions, type ParquetExportResult, type ParquetTable, type RegisterResult, type SearchEngine, type SearchHit, type SearchIndexStatus, type SearchOptions, type SessionDetail, type SessionDetailEvent, type SessionListFilters, type SessionRow, type SessionRowFull, type SourceFileRow, type SourceTool, type ToolCallStatus, closeBundle, compileClaude, compileCodex, compileCursor, compileGemini, countSessions, currentSchemaVersion, defaultBundlePath, disableFts5Triggers, emptyCounts, enableFts5Triggers, exportBundleParquet, exportSessionMarkdown, finishBatch, getBytes, getJson, getObjectMeta, getSearchIndexStatus, getSearchIndexStatuses, getSession, getText, initBundle, listSessions, markIndexesAfterImport, openBundle, putBytes, putJson, putText, queryDuckDbParquet, rebuildFts5Index, rebuildTantivyIndex, recordError, registerSourceFile, runMigrations, searchFullText, startBatch };
|