@octocodeai/octocode-tools-core 16.6.0 → 16.6.2

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.
@@ -1,6 +1,7 @@
1
1
  import { type MappedResult } from './resultMap.js';
2
2
  import type { OqlDiagnostic, OqlProvenance, OqlQuery } from '../types.js';
3
3
  export interface AdapterResult extends MappedResult {
4
+ shared?: Record<string, unknown>;
4
5
  diagnostics: OqlDiagnostic[];
5
6
  provenance: OqlProvenance[];
6
7
  }
@@ -3,8 +3,10 @@ export interface BuildEnvelopeArgs {
3
3
  queryId?: string;
4
4
  queryIndex?: number;
5
5
  results: OqlProofGradedResultRow[];
6
+ shared?: OqlResultEnvelope['shared'];
6
7
  pagination?: Pagination;
7
8
  next?: OqlResultEnvelope['next'];
9
+ nextHints?: OqlResultEnvelope['nextHints'];
8
10
  diagnostics: OqlDiagnostic[];
9
11
  provenance: OqlProvenance[];
10
12
  /** Whether the plan was executable (no UNSUPPORTED nodes / blocking errors). */
@@ -21,6 +21,7 @@ export { runOqlSearch, type RunOptions } from './run.js';
21
21
  export { buildShorthandInput, type SearchShorthand, type ShorthandCorpus, type ShorthandResult, } from './shorthand.js';
22
22
  export { listTransformerEntries, findTransformerById, findTransformerEntry, backendCallsForTransformer, } from './transformers/registry.js';
23
23
  export type { TransformerRegistryEntry, TransformerStatus, } from './transformers/contract.js';
24
- export { oqlSchemaText, OQL_SCHEMA_DOC } from './schemeText.js';
24
+ export { oqlSchemaText, oqlCompactSchemeText, oqlCompactSchemeJson, OQL_SCHEMA_DOC, } from './schemeText.js';
25
+ export { sanitizeStructuredContent } from '../responses.js';
25
26
  export { analyzeResearchFlow, type AnalyzeResearchOptions, type ResearchAnalysisResult, type ResearchDependencyIssue, type ResearchFileIssue, type ResearchFlowStep, type ResearchIntent, type ResearchManifestSummary, type ResearchMode, type ResearchSymbolRow, type ResearchSymbolVerdict, } from './research/analyze.js';
26
27
  export { buildResearchPackets, type EvidenceClaim, type EvidenceConfidence, type EvidenceEdge, type EvidenceFact, type EvidenceFlag, type EvidenceLocation, type EvidenceRelation, type EvidenceSource, type EvidenceSubject, type MissingProof, type MissingProofKind, type PacketProofStatus, type PacketVerdict, type ResearchEvidencePacket, type ResearchGraphSummary, type ResearchPacketBundle, } from './research/packets.js';