|
65 | 65 | /** |
66 | 66 | * @typedef {object} CompactBulletsOptions |
67 | 67 | * @property {string} [today] |
| 68 | + * @property {string} [now] |
68 | 69 | * @property {number} [maxActivePerTopic] |
69 | 70 | * @property {string} [defaultTopic] |
70 | 71 | */ |
|
220 | 221 | * @property {{ path: string; content: string }[]} files |
221 | 222 | * @property {string[]} paths |
222 | 223 | * @property {string | null} assembledContext |
| 224 | + * @property {string} [displayText] |
223 | 225 | * @property {boolean} skipped - true when existing context already covered the query |
224 | 226 | * @property {string} [skipReason] - explanation when skipped=true |
225 | 227 | */ |
|
240 | 242 | * @property {string | null} reviewPrompt |
241 | 243 | * @property {string | null} apiPrompt |
242 | 244 | * @property {string | null} assembledContext |
| 245 | + * @property {string} [displayText] |
243 | 246 | * @property {boolean} skipped - true when existing context already covered the query |
244 | 247 | * @property {string} [skipReason] - explanation when skipped=true |
245 | 248 | */ |
|
360 | 363 | * @property {string} [configRepo] |
361 | 364 | * @property {string} [attestationBundleURL] |
362 | 365 | * @property {'ehbp' | 'tls'} [transport] |
| 366 | + * @property {Record<string, any>} [tinfoilModule] |
363 | 367 | */ |
364 | 368 |
|
365 | 369 | /** |
|
528 | 532 | * @property {(doc: OmfDocument, options?: OmfImportOptions) => Promise<OmfImportPreview>} previewOmfImport |
529 | 533 | * @property {(doc: OmfDocument, options?: OmfImportOptions) => Promise<OmfImportResult>} importOmf |
530 | 534 | * @property {() => Promise<{filesChanged: number, filesTotal: number} | undefined>} compact |
| 535 | + * @property {() => Promise<{archived: number, filesChanged: number}>} pruneExpired |
531 | 536 | * @property {(query: string, options?: {deep?: boolean, mode?: string}) => Promise<{status: string, deleteCalls: number, writes: Array<any>}>} [deleteContent] |
532 | 537 | * @property {StorageFacade} storage |
533 | 538 | * @property {() => Promise<string>} serialize |
|
0 commit comments