@wrongstack/techstack 1.0.2 → 1.0.3

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.
@@ -158,6 +158,8 @@ export interface RulebookFileSystem {
158
158
  readonly size: number;
159
159
  }>;
160
160
  }
161
+ /** Default file system backed by `node:fs/promises`. */
162
+ export declare const defaultRulebookFileSystem: RulebookFileSystem;
161
163
  /**
162
164
  * Locate and parse a rulebook from the target project tree.
163
165
  *
@@ -20,6 +20,7 @@ export interface HttpRequestOptions {
20
20
  readonly maxBodyBytes?: number | undefined;
21
21
  }
22
22
  export declare function retryAfterMs(headers: IncomingHttpHeaders, now?: number): number | undefined;
23
+ export declare function _delayForTesting(ms: number, signal?: AbortSignal): Promise<void>;
23
24
  export declare function requestWithRetry(options: HttpRequestOptions): Promise<HttpResponse>;
24
25
  export declare function parseJsonResponse<T>(response: HttpResponse, source: string): T;
25
26
  //# sourceMappingURL=http-fetch.d.ts.map
@@ -3,9 +3,9 @@
3
3
  *
4
4
  * @see docs/specs/techstack-sdd.md §31, §557
5
5
  */
6
- export { createResearcher, type CreateResearcherOptions } from './researcher.js';
7
- export { createProviderLlm, parseResearchJson, type LlmAccessor } from './llm.js';
6
+ export { createProviderLlm, type LlmAccessor, parseResearchJson } from './llm.js';
7
+ export { type CreateResearcherOptions, createResearcher } from './researcher.js';
8
8
  export { createToolSearch, type SearchToolOptions } from './search.js';
9
- export { clusterCandidates, triageCandidates, DEFAULT_TRIAGE_LIMIT, type TriageOptions, } from './triage.js';
9
+ export { clusterCandidates, DEFAULT_TRIAGE_LIMIT, type TriageOptions, triageCandidates, } from './triage.js';
10
10
  export type { ResearchCluster, ResearchLlm, ResearchLlmRequest, ResearchOptions, ResearchSearch, ResearchSearchResult, TechStackResearcher, TriageCandidate, } from './types.js';
11
11
  //# sourceMappingURL=index.d.ts.map
package/dist/service.d.ts CHANGED
@@ -4,6 +4,6 @@
4
4
  * The engine implementation is split by pipeline responsibility under
5
5
  * `service/`; existing imports from `service.js` remain stable.
6
6
  */
7
- export { TechStackEngine } from './service/techstack-engine.js';
8
7
  export type { AnalyzeOptions, EnrichOptions, ReportFormat } from './service/techstack-engine.js';
8
+ export { TechStackEngine } from './service/techstack-engine.js';
9
9
  //# sourceMappingURL=service.d.ts.map
@@ -9,6 +9,7 @@
9
9
  * @see docs/specs/techstack-sdd.md §3.2, §4.1
10
10
  */
11
11
  import type { DeliveryOutbox, DeliveryStatus, Finding, Snapshot, TechStackJob, TechStackJobProgress, TechStackJobStatus } from '../types.js';
12
+ export declare function _resetDatabaseSyncForTesting(): void;
12
13
  export interface StoreOptions {
13
14
  /** Project slug used for the store directory path. */
14
15
  readonly projectSlug: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wrongstack/techstack",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "license": "MIT",
5
5
  "description": "WrongStack TechStack — cross-language dependency intelligence for the active target project: discover, inventory, enrich, analyze, and report.",
6
6
  "repository": {
@@ -26,9 +26,9 @@
26
26
  "!dist/**/*.map"
27
27
  ],
28
28
  "dependencies": {
29
- "@wrongstack/core": "1.0.2",
30
- "@wrongstack/persistence": "1.0.2",
31
- "@wrongstack/tools": "1.0.2"
29
+ "@wrongstack/core": "1.0.3",
30
+ "@wrongstack/persistence": "1.0.3",
31
+ "@wrongstack/tools": "1.0.3"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^26.2.0",