@var-ia/cli 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.
@@ -1,3 +1,4 @@
1
1
  import type { EvidenceEvent } from "@var-ia/evidence-graph";
2
- export declare function runAnalyze(pageTitle: string, depth: string, fromRevId?: number, _toRevId?: number, useCache?: boolean): Promise<EvidenceEvent[]>;
2
+ import type { ModelConfig } from "@var-ia/interpreter";
3
+ export declare function runAnalyze(pageTitle: string, depth: string, fromRevId?: number, _toRevId?: number, useCache?: boolean, modelConfig?: ModelConfig): Promise<EvidenceEvent[]>;
3
4
  //# sourceMappingURL=analyze.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"analyze.d.ts","sourceRoot":"","sources":["../../../src/commands/analyze.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,aAAa,EAA2B,MAAM,wBAAwB,CAAC;AAGrF,wBAAsB,UAAU,CAC9B,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,MAAM,EAClB,QAAQ,CAAC,EAAE,MAAM,EACjB,QAAQ,UAAQ,GACf,OAAO,CAAC,aAAa,EAAE,CAAC,CA6H1B"}
1
+ {"version":3,"file":"analyze.d.ts","sourceRoot":"","sources":["../../../src/commands/analyze.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,aAAa,EAA2B,MAAM,wBAAwB,CAAC;AAErF,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAcvD,wBAAsB,UAAU,CAC9B,SAAS,EAAE,MAAM,EACjB,KAAK,EAAE,MAAM,EACb,SAAS,CAAC,EAAE,MAAM,EAClB,QAAQ,CAAC,EAAE,MAAM,EACjB,QAAQ,UAAQ,EAChB,WAAW,CAAC,EAAE,WAAW,GACxB,OAAO,CAAC,aAAa,EAAE,CAAC,CA4I1B"}
@@ -1,7 +1,18 @@
1
1
  import { MediaWikiClient } from "@var-ia/ingestion";
2
2
  import { sectionDiffer, citationTracker, revertDetector, templateTracker } from "@var-ia/analyzers";
3
+ import { createAdapter } from "@var-ia/interpreter";
3
4
  import { loadCachedRevisions, saveRevisions } from "./cache.js";
4
- export async function runAnalyze(pageTitle, depth, fromRevId, _toRevId, useCache = false) {
5
+ function templateTypeToPolicyDimension(type) {
6
+ switch (type) {
7
+ case "citation": return "verifiability";
8
+ case "neutrality": return "npov";
9
+ case "blp": return "blp";
10
+ case "dispute": return "due_weight";
11
+ case "protection": return "protection";
12
+ default: return null;
13
+ }
14
+ }
15
+ export async function runAnalyze(pageTitle, depth, fromRevId, _toRevId, useCache = false, modelConfig) {
5
16
  const client = new MediaWikiClient();
6
17
  console.log(`Analyzing "${pageTitle}" at depth: ${depth}...`);
7
18
  let revisions = [];
@@ -63,6 +74,8 @@ export async function runAnalyze(pageTitle, depth, fromRevId, _toRevId, useCache
63
74
  for (const tpl of templateChanges) {
64
75
  if (tpl.type === "unchanged")
65
76
  continue;
77
+ const policyDimension = templateTypeToPolicyDimension(tpl.template.type);
78
+ const layer = policyDimension ? "policy_coded" : "observed";
66
79
  events.push({
67
80
  eventType: tpl.type === "added" ? "template_added" : "template_removed",
68
81
  fromRevisionId: before.revId,
@@ -72,8 +85,9 @@ export async function runAnalyze(pageTitle, depth, fromRevId, _toRevId, useCache
72
85
  after: tpl.template.name,
73
86
  deterministicFacts: [
74
87
  { fact: "template_changed", detail: `name=${tpl.template.name} type=${tpl.type}` },
88
+ ...(policyDimension ? [{ fact: "policy_signal", detail: `dimension=${policyDimension} signal=${tpl.template.name.toLowerCase().replace(/\s+/g, "_")}` }] : []),
75
89
  ],
76
- layer: "observed",
90
+ layer,
77
91
  timestamp: after.timestamp,
78
92
  });
79
93
  }
@@ -104,12 +118,23 @@ export async function runAnalyze(pageTitle, depth, fromRevId, _toRevId, useCache
104
118
  after: after.comment,
105
119
  deterministicFacts: [
106
120
  { fact: "revert_detected", detail: after.comment },
121
+ { fact: "policy_signal", detail: "dimension=edit_warring signal=revert_detected" },
107
122
  ],
108
- layer: "observed",
123
+ layer: "policy_coded",
109
124
  timestamp: after.timestamp,
110
125
  });
111
126
  }
112
127
  }
128
+ if (modelConfig && events.length > 0) {
129
+ const adapter = createAdapter(modelConfig);
130
+ console.log(`Interpreting ${events.length} events with ${modelConfig.provider}...`);
131
+ const interpreted = await adapter.interpret(events);
132
+ for (let i = 0; i < interpreted.length; i++) {
133
+ interpreted[i].layer = events[i].layer;
134
+ }
135
+ console.log("Interpretation complete.");
136
+ return interpreted;
137
+ }
113
138
  return events;
114
139
  }
115
140
  //# sourceMappingURL=analyze.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"analyze.js","sourceRoot":"","sources":["../../../src/commands/analyze.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,aAAa,EAAE,eAAe,EAAE,cAAc,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAEpG,OAAO,EAAE,mBAAmB,EAAE,aAAa,EAAE,MAAM,YAAY,CAAC;AAEhE,MAAM,CAAC,KAAK,UAAU,UAAU,CAC9B,SAAiB,EACjB,KAAa,EACb,SAAkB,EAClB,QAAiB,EACjB,QAAQ,GAAG,KAAK;IAEhB,MAAM,MAAM,GAAG,IAAI,eAAe,EAAE,CAAC;IACrC,OAAO,CAAC,GAAG,CAAC,cAAc,SAAS,eAAe,KAAK,KAAK,CAAC,CAAC;IAE9D,IAAI,SAAS,GAAe,EAAE,CAAC;IAE/B,IAAI,QAAQ,EAAE,CAAC;QACb,MAAM,MAAM,GAAG,mBAAmB,CAAC,SAAS,EAAE,EAAE,CAAC,CAAC;QAClD,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACtB,OAAO,CAAC,GAAG,CAAC,UAAU,MAAM,CAAC,MAAM,wBAAwB,CAAC,CAAC;YAC7D,SAAS,GAAG,MAAM,CAAC;QACrB,CAAC;IACH,CAAC;IAED,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC3B,OAAO,CAAC,GAAG,CAAC,sCAAsC,CAAC,CAAC;QACpD,MAAM,OAAO,GAAsD,EAAE,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,OAAO,EAAE,CAAC;QACrG,KAAK,SAAS,CAAC;QACf,SAAS,GAAG,MAAM,MAAM,CAAC,cAAc,CAAC,SAAS,EAAE,OAAO,CAAC,CAAC;QAC5D,OAAO,CAAC,GAAG,CAAC,WAAW,SAAS,CAAC,MAAM,aAAa,CAAC,CAAC;QAEtD,IAAI,QAAQ,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACrC,aAAa,CAAC,SAAS,CAAC,CAAC;YACzB,OAAO,CAAC,GAAG,CAAC,UAAU,SAAS,CAAC,MAAM,aAAa,CAAC,CAAC;QACvD,CAAC;IACH,CAAC;IAED,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACzB,OAAO,CAAC,GAAG,CAAC,uCAAuC,CAAC,CAAC;QACrD,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,MAAM,MAAM,GAAoB,EAAE,CAAC;IACnC,MAAM,UAAU,GAAG,CAAC,GAAG,SAAS,CAAC,CAAC,IAAI,CACpC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,GAAG,IAAI,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,OAAO,EAAE,CAC5E,CAAC;IAEF,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;QAC3C,MAAM,MAAM,GAAG,UAAU,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;QACjC,MAAM,KAAK,GAAG,UAAU,CAAC,CAAC,CAAC,CAAC;QAE5B,MAAM,cAAc,GAAG,aAAa,CAAC,eAAe,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QACrE,MAAM,aAAa,GAAG,aAAa,CAAC,eAAe,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QACnE,MAAM,cAAc,GAAG,aAAa,CAAC,YAAY,CAAC,cAAc,EAAE,aAAa,CAAC,CAAC;QAEjF,MAAM,eAAe,GAAG,eAAe,CAAC,gBAAgB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QACzE,MAAM,cAAc,GAAG,eAAe,CAAC,gBAAgB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QACvE,MAAM,eAAe,GAAG,eAAe,CAAC,aAAa,CAAC,eAAe,EAAE,cAAc,CAAC,CAAC;QAEvF,MAAM,eAAe,GAAG,eAAe,CAAC,gBAAgB,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QACzE,MAAM,cAAc,GAAG,eAAe,CAAC,gBAAgB,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QACvE,MAAM,eAAe,GAAG,eAAe,CAAC,aAAa,CAAC,eAAe,EAAE,cAAc,CAAC,CAAC;QAEvF,MAAM,WAAW,GAAG,cAAc,CAAC,QAAQ,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;QAE3D,KAAK,MAAM,GAAG,IAAI,eAAe,EAAE,CAAC;YAClC,IAAI,GAAG,CAAC,IAAI,KAAK,WAAW;gBAAE,SAAS;YACvC,MAAM,KAAK,GAAkB,UAAU,CAAC;YACxC,MAAM,CAAC,IAAI,CAAC;gBACV,SAAS,EAAE,GAAG,CAAC,IAAI,KAAK,OAAO,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,kBAAkB,CAAC,CAAC,CAAC,mBAAmB;gBACtH,cAAc,EAAE,MAAM,CAAC,KAAK;gBAC5B,YAAY,EAAE,KAAK,CAAC,KAAK;gBACzB,OAAO,EAAE,MAAM;gBACf,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,GAAG,IAAI,EAAE;gBAC7B,KAAK,EAAE,GAAG,CAAC,KAAK,EAAE,GAAG,IAAI,EAAE;gBAC3B,kBAAkB,EAAE;oBAClB,EAAE,IAAI,EAAE,kBAAkB,EAAE,MAAM,EAAE,QAAQ,GAAG,CAAC,IAAI,EAAE,EAAE;iBACzD;gBACD,KAAK;gBACL,SAAS,EAAE,KAAK,CAAC,SAAS;aAC3B,CAAC,CAAC;QACL,CAAC;QAED,KAAK,MAAM,GAAG,IAAI,eAAe,EAAE,CAAC;YAClC,IAAI,GAAG,CAAC,IAAI,KAAK,WAAW;gBAAE,SAAS;YACvC,MAAM,CAAC,IAAI,CAAC;gBACV,SAAS,EAAE,GAAG,CAAC,IAAI,KAAK,OAAO,CAAC,CAAC,CAAC,gBAAgB,CAAC,CAAC,CAAC,kBAAkB;gBACvE,cAAc,EAAE,MAAM,CAAC,KAAK;gBAC5B,YAAY,EAAE,KAAK,CAAC,KAAK;gBACzB,OAAO,EAAE,MAAM;gBACf,MAAM,EAAE,EAAE;gBACV,KAAK,EAAE,GAAG,CAAC,QAAQ,CAAC,IAAI;gBACxB,kBAAkB,EAAE;oBAClB,EAAE,IAAI,EAAE,kBAAkB,EAAE,MAAM,EAAE,QAAQ,GAAG,CAAC,QAAQ,CAAC,IAAI,SAAS,GAAG,CAAC,IAAI,EAAE,EAAE;iBACnF;gBACD,KAAK,EAAE,UAAU;gBACjB,SAAS,EAAE,KAAK,CAAC,SAAS;aAC3B,CAAC,CAAC;QACL,CAAC;QAED,KAAK,MAAM,EAAE,IAAI,cAAc,EAAE,CAAC;YAChC,IAAI,EAAE,CAAC,UAAU,KAAK,WAAW;gBAAE,SAAS;YAC5C,MAAM,CAAC,IAAI,CAAC;gBACV,SAAS,EAAE,qBAAqB;gBAChC,cAAc,EAAE,MAAM,CAAC,KAAK;gBAC5B,YAAY,EAAE,KAAK,CAAC,KAAK;gBACzB,OAAO,EAAE,EAAE,CAAC,OAAO;gBACnB,MAAM,EAAE,EAAE,CAAC,WAAW,IAAI,EAAE;gBAC5B,KAAK,EAAE,EAAE,CAAC,SAAS,IAAI,EAAE;gBACzB,kBAAkB,EAAE;oBAClB,EAAE,IAAI,EAAE,iBAAiB,EAAE,MAAM,EAAE,UAAU,EAAE,CAAC,UAAU,EAAE,EAAE;iBAC/D;gBACD,KAAK,EAAE,UAAU;gBACjB,SAAS,EAAE,KAAK,CAAC,SAAS;aAC3B,CAAC,CAAC;QACL,CAAC;QAED,IAAI,WAAW,EAAE,CAAC;YAChB,MAAM,CAAC,IAAI,CAAC;gBACV,SAAS,EAAE,iBAAiB;gBAC5B,cAAc,EAAE,MAAM,CAAC,KAAK;gBAC5B,YAAY,EAAE,KAAK,CAAC,KAAK;gBACzB,OAAO,EAAE,EAAE;gBACX,MAAM,EAAE,EAAE;gBACV,KAAK,EAAE,KAAK,CAAC,OAAO;gBACpB,kBAAkB,EAAE;oBAClB,EAAE,IAAI,EAAE,iBAAiB,EAAE,MAAM,EAAE,KAAK,CAAC,OAAO,EAAE;iBACnD;gBACD,KAAK,EAAE,UAAU;gBACjB,SAAS,EAAE,KAAK,CAAC,SAAS;aAC3B,CAAC,CAAC;QACL,CAAC;IACH,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC"}
1
+ {"version":3,"file":"analyze.js","sourceRoot":"","sources":["../../../src/commands/analyze.ts"],"names":[],"mappings":"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"}
@@ -1,3 +1,4 @@
1
- export declare function runClaim(pageTitle: string, claimText: string, useCache?: boolean): Promise<void>;
1
+ import type { ModelConfig } from "@var-ia/interpreter";
2
+ export declare function runClaim(pageTitle: string, claimText: string, useCache?: boolean, modelConfig?: ModelConfig): Promise<void>;
2
3
  export { runClaim as runClaimCommand };
3
4
  //# sourceMappingURL=claim.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"claim.d.ts","sourceRoot":"","sources":["../../../src/commands/claim.ts"],"names":[],"mappings":"AAKA,wBAAsB,QAAQ,CAC5B,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,MAAM,EACjB,QAAQ,UAAQ,GACf,OAAO,CAAC,IAAI,CAAC,CAqGf;AAED,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,CAAC"}
1
+ {"version":3,"file":"claim.d.ts","sourceRoot":"","sources":["../../../src/commands/claim.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAGvD,wBAAsB,QAAQ,CAC5B,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,MAAM,EACjB,QAAQ,UAAQ,EAChB,WAAW,CAAC,EAAE,WAAW,GACxB,OAAO,CAAC,IAAI,CAAC,CAmIf;AAED,OAAO,EAAE,QAAQ,IAAI,eAAe,EAAE,CAAC"}
@@ -1,7 +1,8 @@
1
1
  import { MediaWikiClient } from "@var-ia/ingestion";
2
2
  import { createClaimIdentity } from "@var-ia/evidence-graph";
3
+ import { createAdapter } from "@var-ia/interpreter";
3
4
  import { loadCachedRevisions, saveRevisions } from "./cache.js";
4
- export async function runClaim(pageTitle, claimText, useCache = false) {
5
+ export async function runClaim(pageTitle, claimText, useCache = false, modelConfig) {
5
6
  const client = new MediaWikiClient();
6
7
  console.log(`Tracking claim in "${pageTitle}"...`);
7
8
  console.log(`Claim text: "${claimText}"\n`);
@@ -78,6 +79,34 @@ export async function runClaim(pageTitle, claimText, useCache = false) {
78
79
  console.log(`\nClaim "${claimText}" not found in any revision of "${pageTitle}".`);
79
80
  return;
80
81
  }
82
+ if (modelConfig && variants.length >= 2) {
83
+ const adapter = createAdapter(modelConfig);
84
+ const comparisonEvents = [];
85
+ for (let i = 1; i < variants.length; i++) {
86
+ comparisonEvents.push({
87
+ eventType: "claim_reworded",
88
+ fromRevisionId: variants[i - 1].revisionId,
89
+ toRevisionId: variants[i].revisionId,
90
+ section: variants[i].section,
91
+ before: variants[i - 1].text,
92
+ after: variants[i].text,
93
+ deterministicFacts: [
94
+ { fact: "claim_variant_compared", detail: `pair=${i}` },
95
+ ],
96
+ layer: "observed",
97
+ timestamp: variants[i].observedAt,
98
+ });
99
+ }
100
+ if (comparisonEvents.length > 0) {
101
+ console.log(`\nSemantically comparing ${comparisonEvents.length} claim variant pairs with ${modelConfig.provider}...`);
102
+ const interpreted = await adapter.interpret(comparisonEvents);
103
+ for (const ie of interpreted) {
104
+ const conf = ie.modelInterpretation.confidence;
105
+ const label = conf >= 0.7 ? "similar" : conf >= 0.4 ? "moderate change" : "substantial change";
106
+ console.log(`[rev ${ie.fromRevisionId}→${ie.toRevisionId}] ${label} (confidence: ${conf.toFixed(2)}) — ${ie.modelInterpretation.semanticChange}`);
107
+ }
108
+ }
109
+ }
81
110
  if (currentState !== "absent" && currentState !== "deleted") {
82
111
  currentState = "stabilizing";
83
112
  }
@@ -1 +1 @@
1
- {"version":3,"file":"claim.js","sourceRoot":"","sources":["../../../src/commands/claim.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"claim.js","sourceRoot":"","sources":["../../../src/commands/claim.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1,3 @@
1
- export declare function runExport(pageTitle: string, format: string): Promise<void>;
1
+ import type { ModelConfig } from "@var-ia/interpreter";
2
+ export declare function runExport(pageTitle: string, format: string, modelConfig?: ModelConfig): Promise<void>;
2
3
  //# sourceMappingURL=export.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../../src/commands/export.ts"],"names":[],"mappings":"AAGA,wBAAsB,SAAS,CAC7B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,GACb,OAAO,CAAC,IAAI,CAAC,CAgBf"}
1
+ {"version":3,"file":"export.d.ts","sourceRoot":"","sources":["../../../src/commands/export.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,qBAAqB,CAAC;AAEvD,wBAAsB,SAAS,CAC7B,SAAS,EAAE,MAAM,EACjB,MAAM,EAAE,MAAM,EACd,WAAW,CAAC,EAAE,WAAW,GACxB,OAAO,CAAC,IAAI,CAAC,CAgBf"}
@@ -1,6 +1,6 @@
1
1
  import { runAnalyze } from "./analyze.js";
2
- export async function runExport(pageTitle, format) {
3
- const events = await runAnalyze(pageTitle, "detailed");
2
+ export async function runExport(pageTitle, format, modelConfig) {
3
+ const events = await runAnalyze(pageTitle, "detailed", undefined, undefined, false, modelConfig);
4
4
  if (events.length === 0) {
5
5
  console.log("No events to export.");
6
6
  return;
@@ -19,6 +19,17 @@ export async function runExport(pageTitle, format) {
19
19
  function buildReport(pageTitle, events) {
20
20
  const sortedRevs = events.map((e) => e.toRevisionId).sort((a, b) => a - b);
21
21
  const timestamps = events.map((e) => e.timestamp).sort();
22
+ const observedCount = events.length;
23
+ const policyCount = events.filter((e) => e.layer === "policy_coded").length;
24
+ const modelCount = events.filter((e) => e.modelInterpretation != null).length;
25
+ const layers = [{ label: "observed", description: "Deterministic", events: observedCount, reproducible: true }];
26
+ if (policyCount > 0) {
27
+ layers.push({ label: "policy_coded", description: "Wikipedia policy signals", events: policyCount, reproducible: true });
28
+ }
29
+ if (modelCount > 0) {
30
+ layers.push({ label: "model_interpretation", description: "Model-assisted semantic interpretation", events: modelCount, reproducible: false });
31
+ }
32
+ const hasModel = modelCount > 0;
22
33
  return {
23
34
  pageTitle,
24
35
  pageId: 0,
@@ -28,9 +39,7 @@ function buildReport(pageTitle, events) {
28
39
  },
29
40
  generatedAt: new Date().toISOString(),
30
41
  depth: "detailed",
31
- layers: [
32
- { label: "observed", description: "Deterministic", events: events.length, reproducible: true },
33
- ],
42
+ layers,
34
43
  timeline: {
35
44
  totalRevisions: sortedRevs.length,
36
45
  analyzedRevisions: sortedRevs.length,
@@ -43,16 +52,51 @@ function buildReport(pageTitle, events) {
43
52
  timestamp: e.timestamp,
44
53
  eventType: e.eventType,
45
54
  summary: e.deterministicFacts.map((f) => f.fact).join("; "),
46
- layer: e.layer,
55
+ layer: e.modelInterpretation ? "model_interpretation" : e.layer,
47
56
  })),
48
57
  },
49
58
  claims: [],
50
59
  sources: [],
51
- policySignals: [],
52
- caveats: ["Deterministic analysis only — no model interpretation applied."],
60
+ policySignals: extractPolicySignals(events),
61
+ caveats: hasModel
62
+ ? ["Model-assisted interpretation applied — confidence scores are per-event and may vary between runs."]
63
+ : ["Deterministic analysis only — no model interpretation applied."],
53
64
  phase: "Phase 1b",
54
65
  };
55
66
  }
67
+ function extractPolicySignals(events) {
68
+ const signalMap = new Map();
69
+ const sortedEvents = [...events].sort((a, b) => new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime());
70
+ for (const event of sortedEvents) {
71
+ if (event.layer !== "policy_coded")
72
+ continue;
73
+ const signalFact = event.deterministicFacts.find((f) => f.fact === "policy_signal");
74
+ if (!signalFact?.detail)
75
+ continue;
76
+ const parts = signalFact.detail.split(" ");
77
+ const dimMatch = parts.find((p) => p.startsWith("dimension="));
78
+ const sigMatch = parts.find((p) => p.startsWith("signal="));
79
+ if (!dimMatch || !sigMatch)
80
+ continue;
81
+ const dimension = dimMatch.slice("dimension=".length);
82
+ const signal = sigMatch.slice("signal=".length);
83
+ const key = `${dimension}:${signal}`;
84
+ if (signalMap.has(key)) {
85
+ const existing = signalMap.get(key);
86
+ existing.lastSeenRevisionId = event.toRevisionId;
87
+ existing.active = true;
88
+ }
89
+ else {
90
+ signalMap.set(key, {
91
+ dimension,
92
+ signal,
93
+ firstSeenRevisionId: event.toRevisionId,
94
+ active: true,
95
+ });
96
+ }
97
+ }
98
+ return [...signalMap.values()];
99
+ }
56
100
  function toCSV(events) {
57
101
  const header = "timestamp,eventType,fromRevisionId,toRevisionId,section,before,after,facts";
58
102
  const rows = events.map((e) => {
@@ -1 +1 @@
1
- {"version":3,"file":"export.js","sourceRoot":"","sources":["../../../src/commands/export.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"export.js","sourceRoot":"","sources":["../../../src/commands/export.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAwBA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA0EvD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAU1E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AA6BA,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAoFvD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS,CAU1E"}
package/dist/src/index.js CHANGED
@@ -6,19 +6,23 @@ const HELP = `
6
6
  wikihistory — Wikipedia edit history analysis
7
7
 
8
8
  Usage:
9
- wikihistory analyze <page> [--depth brief|detailed|forensic] [--from <revId>] [--to <revId>] [--cache]
10
- wikihistory claim <page> --text "<claim text>" [--cache]
11
- wikihistory export <page> --format json|csv
9
+ wikihistory analyze <page> [--depth brief|detailed|forensic] [--from <revId>] [--to <revId>] [--cache] [--model <provider>]
10
+ wikihistory claim <page> --text "<claim text>" [--cache] [--model <provider>]
11
+ wikihistory export <page> --format json|csv [--model <provider>]
12
12
  wikihistory watch <page> [--section <name>]
13
13
 
14
14
  Options:
15
- --depth Analysis depth (default: detailed)
16
- --text Claim text to track across revisions
17
- --format Export format (json, csv)
18
- --section Watch a specific section only
19
- --from Start revision ID
20
- --to End revision ID
21
- --cache Cache revisions in SQLite (~/.wikihistory/varia.db)
15
+ --depth Analysis depth (default: detailed)
16
+ --text Claim text to track across revisions
17
+ --format Export format (json, csv)
18
+ --section Watch a specific section only
19
+ --from Start revision ID
20
+ --to End revision ID
21
+ --cache Cache revisions in SQLite (~/.wikihistory/varia.db)
22
+ --model Model provider for semantic interpretation (openai, anthropic, deepseek, local, byok)
23
+ --model-api-key API key for model provider (or set env var OPENAI_API_KEY etc.)
24
+ --model-name Model name override (default: provider-specific)
25
+ --model-endpoint API endpoint override
22
26
  `;
23
27
  export async function cli(args) {
24
28
  const command = args[0];
@@ -26,14 +30,15 @@ export async function cli(args) {
26
30
  case "analyze": {
27
31
  const pageTitle = args[1];
28
32
  if (!pageTitle) {
29
- console.error("Usage: wikihistory analyze <page> [--depth brief|detailed|forensic] [--cache]");
33
+ console.error("Usage: wikihistory analyze <page> [--depth brief|detailed|forensic] [--cache] [--model <provider>]");
30
34
  process.exit(1);
31
35
  }
32
36
  const depth = parseFlag(args, "depth") ?? "detailed";
33
37
  const fromRev = parseFlag(args, "from");
34
38
  const toRev = parseFlag(args, "to");
35
39
  const useCache = args.includes("--cache");
36
- const events = await runAnalyze(pageTitle, depth, fromRev ? parseInt(fromRev, 10) : undefined, toRev ? parseInt(toRev, 10) : undefined, useCache);
40
+ const modelConfig = parseModelConfig(args);
41
+ const events = await runAnalyze(pageTitle, depth, fromRev ? parseInt(fromRev, 10) : undefined, toRev ? parseInt(toRev, 10) : undefined, useCache, modelConfig);
37
42
  console.log(`\n=== Analysis Results ===`);
38
43
  console.log(`Page: ${pageTitle}`);
39
44
  console.log(`Events detected: ${events.length}`);
@@ -45,6 +50,12 @@ export async function cli(args) {
45
50
  for (const fact of event.deterministicFacts) {
46
51
  console.log(` • ${fact.fact}${fact.detail ? `: ${fact.detail}` : ""}`);
47
52
  }
53
+ if (event.modelInterpretation) {
54
+ console.log(` ↳ ${event.modelInterpretation.semanticChange} (confidence: ${event.modelInterpretation.confidence.toFixed(2)})`);
55
+ if (event.modelInterpretation.policyDimension) {
56
+ console.log(` ↳ policy: ${event.modelInterpretation.policyDimension}`);
57
+ }
58
+ }
48
59
  }
49
60
  break;
50
61
  }
@@ -52,21 +63,23 @@ export async function cli(args) {
52
63
  const pageTitle = args[1];
53
64
  const claimText = parseFlag(args, "text");
54
65
  if (!pageTitle || !claimText) {
55
- console.error('Usage: wikihistory claim <page> --text "<claim text>" [--cache]');
66
+ console.error('Usage: wikihistory claim <page> --text "<claim text>" [--cache] [--model <provider>]');
56
67
  process.exit(1);
57
68
  }
58
69
  const useCache = args.includes("--cache");
59
- await runClaim(pageTitle, claimText, useCache);
70
+ const modelConfig = parseModelConfig(args);
71
+ await runClaim(pageTitle, claimText, useCache, modelConfig);
60
72
  break;
61
73
  }
62
74
  case "export": {
63
75
  const pageTitle = args[1];
64
76
  const format = parseFlag(args, "format") ?? "json";
65
77
  if (!pageTitle) {
66
- console.error("Usage: wikihistory export <page> --format json|csv");
78
+ console.error("Usage: wikihistory export <page> --format json|csv [--model <provider>]");
67
79
  process.exit(1);
68
80
  }
69
- await runExport(pageTitle, format);
81
+ const modelConfig = parseModelConfig(args);
82
+ await runExport(pageTitle, format, modelConfig);
70
83
  break;
71
84
  }
72
85
  case "watch": {
@@ -97,4 +110,19 @@ export function parseFlag(args, name) {
97
110
  }
98
111
  return undefined;
99
112
  }
113
+ function parseModelConfig(args) {
114
+ const provider = parseFlag(args, "model");
115
+ if (!provider)
116
+ return undefined;
117
+ if (!["openai", "anthropic", "deepseek", "local", "byok"].includes(provider)) {
118
+ console.error(`Unknown model provider: ${provider}. Use openai, anthropic, deepseek, local, or byok.`);
119
+ process.exit(1);
120
+ }
121
+ return {
122
+ provider: provider,
123
+ apiKey: parseFlag(args, "model-api-key"),
124
+ model: parseFlag(args, "model-name"),
125
+ endpoint: parseFlag(args, "model-endpoint"),
126
+ };
127
+ }
100
128
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../../evidence-graph/dist/src/schemas/claim.d.ts","../../evidence-graph/dist/src/schemas/evidence.d.ts","../../evidence-graph/dist/src/schemas/source.d.ts","../../evidence-graph/dist/src/schemas/report.d.ts","../../evidence-graph/dist/src/schemas/revision.d.ts","../../evidence-graph/dist/src/hash-identity.d.ts","../../evidence-graph/dist/src/index.d.ts","../../ingestion/dist/src/mediawiki-client.d.ts","../../ingestion/dist/src/rate-limiter.d.ts","../../ingestion/dist/src/index.d.ts","../../analyzers/dist/src/section-differ.d.ts","../../analyzers/dist/src/citation-tracker.d.ts","../../analyzers/dist/src/revert-detector.d.ts","../../analyzers/dist/src/template-tracker.d.ts","../../analyzers/dist/src/heuristic-classifier.d.ts","../../analyzers/dist/src/wikitext-parser.d.ts","../../analyzers/dist/src/index.d.ts","../../persistence/dist/src/index.d.ts","../src/commands/cache.ts","../src/commands/analyze.ts","../src/commands/claim.ts","../src/commands/export.ts","../src/commands/watch.ts","../src/index.ts","../src/cli.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/index.d.ts"],"fileIdsList":[[94,137,140],[94,139,140],[140],[94,140,145,173],[94,140,141,146,151,159,170,181],[94,140,141,142,151,159],[94,140],[89,90,91,94,140],[94,140,143,182],[94,140,144,145,152,160],[94,140,145,170,178],[94,140,146,148,151,159],[94,139,140,147],[94,140,148,149],[94,140,150,151],[94,139,140,151],[94,140,151,152,153,170,181],[94,140,151,152,153,166,170,173],[94,140,148,151,154,159,170,181],[94,140,151,152,154,155,159,170,178,181],[94,140,154,156,170,178,181],[92,93,94,95,96,97,98,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187],[94,140,151,157],[94,140,158,181,186],[94,140,148,151,159,170],[94,140,160],[94,140,161],[94,139,140,162],[94,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187],[94,140,164],[94,140,165],[94,140,151,166,167],[94,140,166,168,182,184],[94,140,151,170,171,173],[94,140,172,173],[94,140,170,171],[94,140,173],[94,140,174],[94,137,140,170,175],[94,140,151,176,177],[94,140,176,177],[94,140,145,159,170,178],[94,140,179],[94,140,159,180],[94,140,154,165,181],[94,140,145,182],[94,140,170,183],[94,140,158,184],[94,140,185],[94,135,140],[94,135,140,151,153,162,170,173,181,184,186],[94,140,170,187],[94,107,111,140,181],[94,107,140,170,181],[94,102,140],[94,104,107,140,178,181],[94,140,159,178],[94,140,188],[94,102,140,188],[94,104,107,140,159,181],[94,99,100,103,106,140,151,170,181],[94,107,114,140],[94,99,105,140],[94,107,128,129,140],[94,103,107,140,173,181,188],[94,128,140,188],[94,101,102,140,188],[94,107,140],[94,101,102,103,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,129,130,131,132,133,134,140],[94,107,122,140],[94,107,114,115,140],[94,105,107,115,116,140],[94,106,140],[94,99,102,107,140],[94,107,111,115,116,140],[94,111,140],[94,105,107,110,140,181],[94,99,104,107,114,140],[94,140,170],[94,102,107,128,140,186,188],[80,94,140],[70,74,75,76,77,78,79,94,140],[87,94,140],[70,73,80,82,94,140],[70,81,94,140,152,160,161],[70,73,82,94,140],[70,83,94,140],[70,73,80,94,140],[83,84,85,86,94,140],[64,94,140],[64,65,66,67,68,69,94,140],[70,71,72,94,140],[70,73,94,140],[70,94,140]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"08b9ffdcb576b1681ff20f2a4e7064395acb8c72958e57e1483eaba948219183","impliedFormat":99},{"version":"5262f1dc3ed653411d01d6dbb9b6d323ffaef1477d6b39ca91868004d994f238","impliedFormat":99},{"version":"7c72b3f7c932f8a66e8f502e8daa72692e347555d32e82a099cd8bdef84ca4d5","impliedFormat":99},{"version":"8684db2d3488b31aec85c08b9fee24756c580a9e871351e1c5002478690bcca7","impliedFormat":99},{"version":"bfd07fb8622835422d7ebf1ffba1742ddea8c85742e975b06178e53fb307ccf7","impliedFormat":99},{"version":"7a2de720c5c2ad00fa0153c450d321487b91932d1f25ebac085dc0b49a70f3af","impliedFormat":99},{"version":"05845a1a68cd756edb72e53f69dd9f6ec2a88e964c2e723d5279c58615108659","impliedFormat":99},{"version":"45448101b651d7470e6030328737b1e742728658d6ca182884aba15172cb5e78","impliedFormat":99},{"version":"df55934f0119471dfdc124b23260c5a5eefcdb1ea9894fc9928dcb8952f458d9","impliedFormat":99},{"version":"a237312d2211aa8b647d91c4e0023eaae9a65f7010dcb4790508fb529cf2d5ff","impliedFormat":99},{"version":"0baf473dc6dab30c587c4b605609eec5ea4206fc32eca36d02c3119180fc5a2c","impliedFormat":99},{"version":"5dbc71a21b1961ef90ce928fef767f8df9462a4bbb53773f839900c866bfbdbb","impliedFormat":99},{"version":"b5f173f424c4fca1c5acc9961b6dd0b8d719a12dbca34e525cadb6066c7614a2","impliedFormat":99},{"version":"677a70e579d51a8a5788d8cc56ed7a7969df1a82d1f61f2226a37280c31d21c3","impliedFormat":99},{"version":"e9d2a7826948d94268f380eef2065a8466ff3f4a29b27ec79ab6adaccbdfc3b0","impliedFormat":99},{"version":"806378d3a2fe7eb3b84205b64d6cf4a2633c8eb3d8899ede9828f4f983f50c8f","impliedFormat":99},{"version":"4becb049570ba86a8f7794aacd86fdc9c6c06c8887d80c12a17ee6142ebd8a7f","impliedFormat":99},{"version":"b508b14333737742f0a45f153ffc8882da267ab2db29efc0ba8dbccb33b8a1a4","impliedFormat":99},{"version":"4b7bcc12d69eb43c606d294f6a9b02fbf2a68fb731528f185acde21b28e02f43","signature":"80d83e19bb2abb582685d1542a858d37e00741289e16213a7249d3cdbc7d2a4b","impliedFormat":99},{"version":"4a1d193bc96b649683b2df686b0fa5d7097a93d390090c56f2951ca29c64a57d","signature":"25f99c36df8a23861aeb21b64d508c4e403ab622a6e6010c27afcb1f52607216","impliedFormat":99},{"version":"02091885195b68bdc6edd1c02527c64eca5f63b5ff4af7e2dc98bd2b7f2cd9b5","signature":"a1b1269a6c5fcbfce92d80db0e69ab9e164b5c6797f8ab1919fa2416c51b751c","impliedFormat":99},{"version":"6d7b2b04d1600f3e27080b2bdc3a316fbe2b0e02e1107217e4848eaaff67665e","signature":"c8c917a9323a38cf7403cf86d94bd393b56bbfe9dfdc9b839ea5aeb6be33aa34","impliedFormat":99},{"version":"67913964d9a651f809caa8f66eb21846ea182b79769c53293a1b9a35a30388e4","signature":"485c12e3868358da24d88fceea53e4210ef24b31895eace6aaa15ad9a92e1965","impliedFormat":99},{"version":"96769537bcf2ecf2b805fb14d60f03649896b59a43ea951f967451b2bab67b46","signature":"36d0e7c1965c629d40ce0cd3990820235f5eea17faca2ff332756866fe21a030","impliedFormat":99},{"version":"73e03dfbbd31081f99f71107ce4d02c2e4a7d10e911346feda1240b28b9b9872","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"2de7636e6fbb9e54a61a38bcb7505b94ec5be61197fe9e840cff629ca920c4bc","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[82,88]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":9},"referencedMap":[[137,1],[138,1],[139,2],[94,3],[140,4],[141,5],[142,6],[89,7],[92,8],[90,7],[91,7],[143,9],[144,10],[145,11],[146,12],[147,13],[148,14],[149,14],[150,15],[151,16],[152,17],[153,18],[95,7],[93,7],[154,19],[155,20],[156,21],[188,22],[157,23],[158,24],[159,25],[160,26],[161,27],[162,28],[163,29],[164,30],[165,31],[166,32],[167,32],[168,33],[169,7],[170,34],[172,35],[171,36],[173,37],[174,38],[175,39],[176,40],[177,41],[178,42],[179,43],[180,44],[181,45],[182,46],[183,47],[184,48],[185,49],[96,7],[97,7],[98,7],[136,50],[186,51],[187,52],[61,7],[62,7],[12,7],[10,7],[11,7],[16,7],[15,7],[2,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[23,7],[24,7],[3,7],[25,7],[26,7],[4,7],[27,7],[31,7],[28,7],[29,7],[30,7],[32,7],[33,7],[34,7],[5,7],[35,7],[36,7],[37,7],[38,7],[6,7],[42,7],[39,7],[40,7],[41,7],[43,7],[7,7],[44,7],[49,7],[50,7],[45,7],[46,7],[47,7],[48,7],[8,7],[54,7],[51,7],[52,7],[53,7],[55,7],[9,7],[56,7],[63,7],[57,7],[58,7],[60,7],[59,7],[1,7],[14,7],[13,7],[114,53],[124,54],[113,53],[134,55],[105,56],[104,57],[133,58],[127,59],[132,60],[107,61],[121,62],[106,63],[130,64],[102,65],[101,58],[131,66],[103,67],[108,68],[109,7],[112,68],[99,7],[135,69],[125,70],[116,71],[117,72],[119,73],[115,74],[118,75],[128,58],[110,76],[111,77],[120,78],[100,79],[123,70],[122,68],[126,7],[129,80],[75,81],[78,7],[80,82],[76,81],[74,81],[77,81],[79,7],[88,83],[83,84],[82,85],[84,86],[85,87],[86,88],[87,89],[69,90],[70,91],[64,7],[65,7],[67,7],[68,7],[66,7],[73,92],[71,93],[72,7],[81,94]],"latestChangedDtsFile":"./src/commands/cache.d.ts","version":"5.9.3"}
1
+ {"fileNames":["../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.scripthost.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.bun/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.full.d.ts","../../evidence-graph/dist/src/schemas/claim.d.ts","../../evidence-graph/dist/src/schemas/evidence.d.ts","../../evidence-graph/dist/src/schemas/source.d.ts","../../evidence-graph/dist/src/schemas/report.d.ts","../../evidence-graph/dist/src/schemas/revision.d.ts","../../evidence-graph/dist/src/hash-identity.d.ts","../../evidence-graph/dist/src/index.d.ts","../../ingestion/dist/src/mediawiki-client.d.ts","../../ingestion/dist/src/rate-limiter.d.ts","../../ingestion/dist/src/index.d.ts","../../analyzers/dist/src/section-differ.d.ts","../../analyzers/dist/src/citation-tracker.d.ts","../../analyzers/dist/src/revert-detector.d.ts","../../analyzers/dist/src/template-tracker.d.ts","../../analyzers/dist/src/heuristic-classifier.d.ts","../../analyzers/dist/src/wikitext-parser.d.ts","../../analyzers/dist/src/index.d.ts","../../interpreter/dist/src/index.d.ts","../../persistence/dist/src/index.d.ts","../src/commands/cache.ts","../src/commands/analyze.ts","../src/commands/claim.ts","../src/commands/export.ts","../src/commands/watch.ts","../src/index.ts","../src/cli.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/disposable.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/indexable.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/compatibility/index.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/globals.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../node_modules/.bun/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/assert.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/buffer.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/child_process.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/cluster.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/console.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/constants.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/crypto.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/dgram.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/dns.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/domain.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/events.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/fs.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/http.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/http2.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/https.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/module.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/net.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/os.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/path.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/process.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/punycode.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/querystring.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/readline.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/repl.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/sea.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/test.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/timers.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/tls.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/tty.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/url.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/util.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/v8.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/vm.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/wasi.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/zlib.d.ts","../../../node_modules/.bun/@types+node@20.19.41/node_modules/@types/node/index.d.ts"],"fileIdsList":[[95,138,141],[95,140,141],[141],[95,141,146,174],[95,141,142,147,152,160,171,182],[95,141,142,143,152,160],[95,141],[90,91,92,95,141],[95,141,144,183],[95,141,145,146,153,161],[95,141,146,171,179],[95,141,147,149,152,160],[95,140,141,148],[95,141,149,150],[95,141,151,152],[95,140,141,152],[95,141,152,153,154,171,182],[95,141,152,153,154,167,171,174],[95,141,149,152,155,160,171,182],[95,141,152,153,155,156,160,171,179,182],[95,141,155,157,171,179,182],[93,94,95,96,97,98,99,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188],[95,141,152,158],[95,141,159,182,187],[95,141,149,152,160,171],[95,141,161],[95,141,162],[95,140,141,163],[95,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188],[95,141,165],[95,141,166],[95,141,152,167,168],[95,141,167,169,183,185],[95,141,152,171,172,174],[95,141,173,174],[95,141,171,172],[95,141,174],[95,141,175],[95,138,141,171,176],[95,141,152,177,178],[95,141,177,178],[95,141,146,160,171,179],[95,141,180],[95,141,160,181],[95,141,155,166,182],[95,141,146,183],[95,141,171,184],[95,141,159,185],[95,141,186],[95,136,141],[95,136,141,152,154,163,171,174,182,185,187],[95,141,171,188],[95,108,112,141,182],[95,108,141,171,182],[95,103,141],[95,105,108,141,179,182],[95,141,160,179],[95,141,189],[95,103,141,189],[95,105,108,141,160,182],[95,100,101,104,107,141,152,171,182],[95,108,115,141],[95,100,106,141],[95,108,129,130,141],[95,104,108,141,174,182,189],[95,129,141,189],[95,102,103,141,189],[95,108,141],[95,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,141],[95,108,123,141],[95,108,115,116,141],[95,106,108,116,117,141],[95,107,141],[95,100,103,108,141],[95,108,112,116,117,141],[95,112,141],[95,106,108,111,141,182],[95,100,105,108,115,141],[95,141,171],[95,103,108,129,141,187,189],[80,95,141],[70,74,75,76,77,78,79,95,141],[88,95,141],[70,73,80,81,83,95,141],[70,82,95,141,153,161,162],[70,73,81,83,95,141],[70,81,84,95,141],[70,73,80,95,141],[81,84,85,86,87,95,141],[64,95,141],[64,65,66,67,68,69,95,141],[70,71,72,95,141],[70,73,95,141],[70,95,141]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3cbad9a1ba4453443026ed38e4b8be018abb26565fa7c944376463ad9df07c41","impliedFormat":1},{"version":"08b9ffdcb576b1681ff20f2a4e7064395acb8c72958e57e1483eaba948219183","impliedFormat":99},{"version":"5262f1dc3ed653411d01d6dbb9b6d323ffaef1477d6b39ca91868004d994f238","impliedFormat":99},{"version":"7c72b3f7c932f8a66e8f502e8daa72692e347555d32e82a099cd8bdef84ca4d5","impliedFormat":99},{"version":"8684db2d3488b31aec85c08b9fee24756c580a9e871351e1c5002478690bcca7","impliedFormat":99},{"version":"bfd07fb8622835422d7ebf1ffba1742ddea8c85742e975b06178e53fb307ccf7","impliedFormat":99},{"version":"7a2de720c5c2ad00fa0153c450d321487b91932d1f25ebac085dc0b49a70f3af","impliedFormat":99},{"version":"05845a1a68cd756edb72e53f69dd9f6ec2a88e964c2e723d5279c58615108659","impliedFormat":99},{"version":"45448101b651d7470e6030328737b1e742728658d6ca182884aba15172cb5e78","impliedFormat":99},{"version":"df55934f0119471dfdc124b23260c5a5eefcdb1ea9894fc9928dcb8952f458d9","impliedFormat":99},{"version":"a237312d2211aa8b647d91c4e0023eaae9a65f7010dcb4790508fb529cf2d5ff","impliedFormat":99},{"version":"0baf473dc6dab30c587c4b605609eec5ea4206fc32eca36d02c3119180fc5a2c","impliedFormat":99},{"version":"5dbc71a21b1961ef90ce928fef767f8df9462a4bbb53773f839900c866bfbdbb","impliedFormat":99},{"version":"b5f173f424c4fca1c5acc9961b6dd0b8d719a12dbca34e525cadb6066c7614a2","impliedFormat":99},{"version":"677a70e579d51a8a5788d8cc56ed7a7969df1a82d1f61f2226a37280c31d21c3","impliedFormat":99},{"version":"e9d2a7826948d94268f380eef2065a8466ff3f4a29b27ec79ab6adaccbdfc3b0","impliedFormat":99},{"version":"806378d3a2fe7eb3b84205b64d6cf4a2633c8eb3d8899ede9828f4f983f50c8f","impliedFormat":99},{"version":"4becb049570ba86a8f7794aacd86fdc9c6c06c8887d80c12a17ee6142ebd8a7f","impliedFormat":99},{"version":"f8b0879df96367cc147381f3d6dcc10b506fa79b4b7f6490decde8f539695c17","impliedFormat":99},{"version":"b508b14333737742f0a45f153ffc8882da267ab2db29efc0ba8dbccb33b8a1a4","impliedFormat":99},{"version":"4b7bcc12d69eb43c606d294f6a9b02fbf2a68fb731528f185acde21b28e02f43","signature":"80d83e19bb2abb582685d1542a858d37e00741289e16213a7249d3cdbc7d2a4b","impliedFormat":99},{"version":"7b8b9b83dfa1cdecc79d4df0fa0a781d280c481e56f616879a7a5407aba627f3","signature":"29f5b45ba945b2a5cc1837795d9243d4ea97bd4543566e3fe491e7deaa4ad331","impliedFormat":99},{"version":"7e13d24391bcdb922c388bde1e1f28cebe34f9a9937d209ead8f1407849b2abc","signature":"d26bf9711d7373b3ab388822e9654dd6cf0896976467b1c3afbcab04f62e8414","impliedFormat":99},{"version":"fb7fc64b8700c17f7f034337a6b53008794eab5cdf670ce7c67f9618d94f087f","signature":"a2c5c269bef0d29b693b5122cea2fbf337822adb61189d45392ee83c01a9b396","impliedFormat":99},{"version":"67913964d9a651f809caa8f66eb21846ea182b79769c53293a1b9a35a30388e4","signature":"485c12e3868358da24d88fceea53e4210ef24b31895eace6aaa15ad9a92e1965","impliedFormat":99},{"version":"06c6ecfa411d1946b63af34812deb41e910b397c7c2ed3e5f5ac624d96cc8065","signature":"36d0e7c1965c629d40ce0cd3990820235f5eea17faca2ff332756866fe21a030","impliedFormat":99},{"version":"73e03dfbbd31081f99f71107ce4d02c2e4a7d10e911346feda1240b28b9b9872","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012","impliedFormat":99},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"2de7636e6fbb9e54a61a38bcb7505b94ec5be61197fe9e840cff629ca920c4bc","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[[83,89]],"options":{"composite":true,"declaration":true,"declarationMap":true,"module":199,"outDir":"./","rootDir":"..","sourceMap":true,"strict":true,"target":9},"referencedMap":[[138,1],[139,1],[140,2],[95,3],[141,4],[142,5],[143,6],[90,7],[93,8],[91,7],[92,7],[144,9],[145,10],[146,11],[147,12],[148,13],[149,14],[150,14],[151,15],[152,16],[153,17],[154,18],[96,7],[94,7],[155,19],[156,20],[157,21],[189,22],[158,23],[159,24],[160,25],[161,26],[162,27],[163,28],[164,29],[165,30],[166,31],[167,32],[168,32],[169,33],[170,7],[171,34],[173,35],[172,36],[174,37],[175,38],[176,39],[177,40],[178,41],[179,42],[180,43],[181,44],[182,45],[183,46],[184,47],[185,48],[186,49],[97,7],[98,7],[99,7],[137,50],[187,51],[188,52],[61,7],[62,7],[12,7],[10,7],[11,7],[16,7],[15,7],[2,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[23,7],[24,7],[3,7],[25,7],[26,7],[4,7],[27,7],[31,7],[28,7],[29,7],[30,7],[32,7],[33,7],[34,7],[5,7],[35,7],[36,7],[37,7],[38,7],[6,7],[42,7],[39,7],[40,7],[41,7],[43,7],[7,7],[44,7],[49,7],[50,7],[45,7],[46,7],[47,7],[48,7],[8,7],[54,7],[51,7],[52,7],[53,7],[55,7],[9,7],[56,7],[63,7],[57,7],[58,7],[60,7],[59,7],[1,7],[14,7],[13,7],[115,53],[125,54],[114,53],[135,55],[106,56],[105,57],[134,58],[128,59],[133,60],[108,61],[122,62],[107,63],[131,64],[103,65],[102,58],[132,66],[104,67],[109,68],[110,7],[113,68],[100,7],[136,69],[126,70],[117,71],[118,72],[120,73],[116,74],[119,75],[129,58],[111,76],[112,77],[121,78],[101,79],[124,70],[123,68],[127,7],[130,80],[75,81],[78,7],[80,82],[76,81],[74,81],[77,81],[79,7],[89,83],[84,84],[83,85],[85,86],[86,87],[87,88],[88,89],[69,90],[70,91],[64,7],[65,7],[67,7],[68,7],[66,7],[73,92],[71,93],[72,7],[81,94],[82,94]],"latestChangedDtsFile":"./src/commands/analyze.d.ts","version":"5.9.3"}
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@var-ia/cli",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "CLI tool for Wikipedia edit history analysis",
7
7
  "license": "AGPL-3.0",
8
8
  "main": "./dist/src/index.js",
9
9
  "types": "./dist/src/index.d.ts",
10
- "files": ["dist", "src"],
10
+ "files": [
11
+ "dist",
12
+ "src"
13
+ ],
11
14
  "bin": {
12
- "wikihistory": "./dist/src/cli.js"
15
+ "wikihistory": "dist/src/cli.js"
13
16
  },
14
17
  "scripts": {
15
18
  "build": "tsc",
@@ -1,14 +1,29 @@
1
1
  import { MediaWikiClient } from "@var-ia/ingestion";
2
2
  import { sectionDiffer, citationTracker, revertDetector, templateTracker } from "@var-ia/analyzers";
3
+ import type { TemplateType } from "@var-ia/analyzers";
3
4
  import type { EvidenceEvent, EvidenceLayer, Revision } from "@var-ia/evidence-graph";
5
+ import { createAdapter } from "@var-ia/interpreter";
6
+ import type { ModelConfig } from "@var-ia/interpreter";
4
7
  import { loadCachedRevisions, saveRevisions } from "./cache.js";
5
8
 
9
+ function templateTypeToPolicyDimension(type: TemplateType): string | null {
10
+ switch (type) {
11
+ case "citation": return "verifiability";
12
+ case "neutrality": return "npov";
13
+ case "blp": return "blp";
14
+ case "dispute": return "due_weight";
15
+ case "protection": return "protection";
16
+ default: return null;
17
+ }
18
+ }
19
+
6
20
  export async function runAnalyze(
7
21
  pageTitle: string,
8
22
  depth: string,
9
23
  fromRevId?: number,
10
24
  _toRevId?: number,
11
25
  useCache = false,
26
+ modelConfig?: ModelConfig,
12
27
  ): Promise<EvidenceEvent[]> {
13
28
  const client = new MediaWikiClient();
14
29
  console.log(`Analyzing "${pageTitle}" at depth: ${depth}...`);
@@ -84,6 +99,8 @@ export async function runAnalyze(
84
99
 
85
100
  for (const tpl of templateChanges) {
86
101
  if (tpl.type === "unchanged") continue;
102
+ const policyDimension = templateTypeToPolicyDimension(tpl.template.type);
103
+ const layer: EvidenceLayer = policyDimension ? "policy_coded" : "observed";
87
104
  events.push({
88
105
  eventType: tpl.type === "added" ? "template_added" : "template_removed",
89
106
  fromRevisionId: before.revId,
@@ -93,8 +110,9 @@ export async function runAnalyze(
93
110
  after: tpl.template.name,
94
111
  deterministicFacts: [
95
112
  { fact: "template_changed", detail: `name=${tpl.template.name} type=${tpl.type}` },
113
+ ...(policyDimension ? [{ fact: "policy_signal", detail: `dimension=${policyDimension} signal=${tpl.template.name.toLowerCase().replace(/\s+/g, "_")}` }] : []),
96
114
  ],
97
- layer: "observed",
115
+ layer,
98
116
  timestamp: after.timestamp,
99
117
  });
100
118
  }
@@ -126,12 +144,24 @@ export async function runAnalyze(
126
144
  after: after.comment,
127
145
  deterministicFacts: [
128
146
  { fact: "revert_detected", detail: after.comment },
147
+ { fact: "policy_signal", detail: "dimension=edit_warring signal=revert_detected" },
129
148
  ],
130
- layer: "observed",
149
+ layer: "policy_coded",
131
150
  timestamp: after.timestamp,
132
151
  });
133
152
  }
134
153
  }
135
154
 
155
+ if (modelConfig && events.length > 0) {
156
+ const adapter = createAdapter(modelConfig);
157
+ console.log(`Interpreting ${events.length} events with ${modelConfig.provider}...`);
158
+ const interpreted = await adapter.interpret(events);
159
+ for (let i = 0; i < interpreted.length; i++) {
160
+ interpreted[i].layer = events[i].layer;
161
+ }
162
+ console.log("Interpretation complete.");
163
+ return interpreted;
164
+ }
165
+
136
166
  return events;
137
167
  }
@@ -1,12 +1,15 @@
1
1
  import { MediaWikiClient } from "@var-ia/ingestion";
2
2
  import { createClaimIdentity } from "@var-ia/evidence-graph";
3
- import type { ClaimState, Revision } from "@var-ia/evidence-graph";
3
+ import type { ClaimState, EvidenceEvent, Revision } from "@var-ia/evidence-graph";
4
+ import { createAdapter } from "@var-ia/interpreter";
5
+ import type { ModelConfig } from "@var-ia/interpreter";
4
6
  import { loadCachedRevisions, saveRevisions } from "./cache.js";
5
7
 
6
8
  export async function runClaim(
7
9
  pageTitle: string,
8
10
  claimText: string,
9
11
  useCache = false,
12
+ modelConfig?: ModelConfig,
10
13
  ): Promise<void> {
11
14
  const client = new MediaWikiClient();
12
15
  console.log(`Tracking claim in "${pageTitle}"...`);
@@ -97,6 +100,36 @@ export async function runClaim(
97
100
  return;
98
101
  }
99
102
 
103
+ if (modelConfig && variants.length >= 2) {
104
+ const adapter = createAdapter(modelConfig);
105
+ const comparisonEvents: EvidenceEvent[] = [];
106
+ for (let i = 1; i < variants.length; i++) {
107
+ comparisonEvents.push({
108
+ eventType: "claim_reworded",
109
+ fromRevisionId: variants[i - 1].revisionId,
110
+ toRevisionId: variants[i].revisionId,
111
+ section: variants[i].section,
112
+ before: variants[i - 1].text,
113
+ after: variants[i].text,
114
+ deterministicFacts: [
115
+ { fact: "claim_variant_compared", detail: `pair=${i}` },
116
+ ],
117
+ layer: "observed",
118
+ timestamp: variants[i].observedAt,
119
+ });
120
+ }
121
+
122
+ if (comparisonEvents.length > 0) {
123
+ console.log(`\nSemantically comparing ${comparisonEvents.length} claim variant pairs with ${modelConfig.provider}...`);
124
+ const interpreted = await adapter.interpret(comparisonEvents);
125
+ for (const ie of interpreted) {
126
+ const conf = ie.modelInterpretation.confidence;
127
+ const label = conf >= 0.7 ? "similar" : conf >= 0.4 ? "moderate change" : "substantial change";
128
+ console.log(`[rev ${ie.fromRevisionId}→${ie.toRevisionId}] ${label} (confidence: ${conf.toFixed(2)}) — ${ie.modelInterpretation.semanticChange}`);
129
+ }
130
+ }
131
+ }
132
+
100
133
  if (currentState !== "absent" && currentState !== "deleted") {
101
134
  currentState = "stabilizing";
102
135
  }
@@ -1,11 +1,13 @@
1
1
  import { runAnalyze } from "./analyze.js";
2
- import type { EvidenceEvent, Report } from "@var-ia/evidence-graph";
2
+ import type { EvidenceEvent, Report, PolicySignal } from "@var-ia/evidence-graph";
3
+ import type { ModelConfig } from "@var-ia/interpreter";
3
4
 
4
5
  export async function runExport(
5
6
  pageTitle: string,
6
7
  format: string,
8
+ modelConfig?: ModelConfig,
7
9
  ): Promise<void> {
8
- const events = await runAnalyze(pageTitle, "detailed");
10
+ const events = await runAnalyze(pageTitle, "detailed", undefined, undefined, false, modelConfig);
9
11
 
10
12
  if (events.length === 0) {
11
13
  console.log("No events to export.");
@@ -26,6 +28,20 @@ function buildReport(pageTitle: string, events: EvidenceEvent[]): Report {
26
28
  const sortedRevs = events.map((e) => e.toRevisionId).sort((a, b) => a - b);
27
29
  const timestamps = events.map((e) => e.timestamp).sort();
28
30
 
31
+ const observedCount = events.length;
32
+ const policyCount = events.filter((e) => e.layer === "policy_coded").length;
33
+ const modelCount = events.filter((e) => e.modelInterpretation != null).length;
34
+
35
+ const layers: Report["layers"] = [{ label: "observed", description: "Deterministic", events: observedCount, reproducible: true }];
36
+ if (policyCount > 0) {
37
+ layers.push({ label: "policy_coded", description: "Wikipedia policy signals", events: policyCount, reproducible: true });
38
+ }
39
+ if (modelCount > 0) {
40
+ layers.push({ label: "model_interpretation", description: "Model-assisted semantic interpretation", events: modelCount, reproducible: false });
41
+ }
42
+
43
+ const hasModel = modelCount > 0;
44
+
29
45
  return {
30
46
  pageTitle,
31
47
  pageId: 0,
@@ -35,9 +51,7 @@ function buildReport(pageTitle: string, events: EvidenceEvent[]): Report {
35
51
  },
36
52
  generatedAt: new Date().toISOString(),
37
53
  depth: "detailed",
38
- layers: [
39
- { label: "observed", description: "Deterministic", events: events.length, reproducible: true },
40
- ],
54
+ layers,
41
55
  timeline: {
42
56
  totalRevisions: sortedRevs.length,
43
57
  analyzedRevisions: sortedRevs.length,
@@ -50,17 +64,56 @@ function buildReport(pageTitle: string, events: EvidenceEvent[]): Report {
50
64
  timestamp: e.timestamp,
51
65
  eventType: e.eventType,
52
66
  summary: e.deterministicFacts.map((f) => f.fact).join("; "),
53
- layer: e.layer,
67
+ layer: e.modelInterpretation ? "model_interpretation" : e.layer,
54
68
  })),
55
69
  },
56
70
  claims: [],
57
71
  sources: [],
58
- policySignals: [],
59
- caveats: ["Deterministic analysis only — no model interpretation applied."],
72
+ policySignals: extractPolicySignals(events),
73
+ caveats: hasModel
74
+ ? ["Model-assisted interpretation applied — confidence scores are per-event and may vary between runs."]
75
+ : ["Deterministic analysis only — no model interpretation applied."],
60
76
  phase: "Phase 1b",
61
77
  };
62
78
  }
63
79
 
80
+ function extractPolicySignals(events: EvidenceEvent[]): PolicySignal[] {
81
+ const signalMap = new Map<string, PolicySignal>();
82
+ const sortedEvents = [...events].sort(
83
+ (a, b) => new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime(),
84
+ );
85
+
86
+ for (const event of sortedEvents) {
87
+ if (event.layer !== "policy_coded") continue;
88
+ const signalFact = event.deterministicFacts.find((f) => f.fact === "policy_signal");
89
+ if (!signalFact?.detail) continue;
90
+
91
+ const parts = signalFact.detail.split(" ");
92
+ const dimMatch = parts.find((p) => p.startsWith("dimension="));
93
+ const sigMatch = parts.find((p) => p.startsWith("signal="));
94
+ if (!dimMatch || !sigMatch) continue;
95
+
96
+ const dimension = dimMatch.slice("dimension=".length);
97
+ const signal = sigMatch.slice("signal=".length);
98
+ const key = `${dimension}:${signal}`;
99
+
100
+ if (signalMap.has(key)) {
101
+ const existing = signalMap.get(key)!;
102
+ existing.lastSeenRevisionId = event.toRevisionId;
103
+ existing.active = true;
104
+ } else {
105
+ signalMap.set(key, {
106
+ dimension,
107
+ signal,
108
+ firstSeenRevisionId: event.toRevisionId,
109
+ active: true,
110
+ });
111
+ }
112
+ }
113
+
114
+ return [...signalMap.values()];
115
+ }
116
+
64
117
  function toCSV(events: EvidenceEvent[]): string {
65
118
  const header = "timestamp,eventType,fromRevisionId,toRevisionId,section,before,after,facts";
66
119
  const rows = events.map((e) => {
package/src/index.ts CHANGED
@@ -2,24 +2,29 @@ import { runAnalyze } from "./commands/analyze.js";
2
2
  import { runClaim } from "./commands/claim.js";
3
3
  import { runExport } from "./commands/export.js";
4
4
  import { runWatch } from "./commands/watch.js";
5
+ import type { ModelConfig } from "@var-ia/interpreter";
5
6
 
6
7
  const HELP = `
7
8
  wikihistory — Wikipedia edit history analysis
8
9
 
9
10
  Usage:
10
- wikihistory analyze <page> [--depth brief|detailed|forensic] [--from <revId>] [--to <revId>] [--cache]
11
- wikihistory claim <page> --text "<claim text>" [--cache]
12
- wikihistory export <page> --format json|csv
11
+ wikihistory analyze <page> [--depth brief|detailed|forensic] [--from <revId>] [--to <revId>] [--cache] [--model <provider>]
12
+ wikihistory claim <page> --text "<claim text>" [--cache] [--model <provider>]
13
+ wikihistory export <page> --format json|csv [--model <provider>]
13
14
  wikihistory watch <page> [--section <name>]
14
15
 
15
16
  Options:
16
- --depth Analysis depth (default: detailed)
17
- --text Claim text to track across revisions
18
- --format Export format (json, csv)
19
- --section Watch a specific section only
20
- --from Start revision ID
21
- --to End revision ID
22
- --cache Cache revisions in SQLite (~/.wikihistory/varia.db)
17
+ --depth Analysis depth (default: detailed)
18
+ --text Claim text to track across revisions
19
+ --format Export format (json, csv)
20
+ --section Watch a specific section only
21
+ --from Start revision ID
22
+ --to End revision ID
23
+ --cache Cache revisions in SQLite (~/.wikihistory/varia.db)
24
+ --model Model provider for semantic interpretation (openai, anthropic, deepseek, local, byok)
25
+ --model-api-key API key for model provider (or set env var OPENAI_API_KEY etc.)
26
+ --model-name Model name override (default: provider-specific)
27
+ --model-endpoint API endpoint override
23
28
  `;
24
29
 
25
30
  export async function cli(args: string[]): Promise<void> {
@@ -29,13 +34,14 @@ export async function cli(args: string[]): Promise<void> {
29
34
  case "analyze": {
30
35
  const pageTitle = args[1];
31
36
  if (!pageTitle) {
32
- console.error("Usage: wikihistory analyze <page> [--depth brief|detailed|forensic] [--cache]");
37
+ console.error("Usage: wikihistory analyze <page> [--depth brief|detailed|forensic] [--cache] [--model <provider>]");
33
38
  process.exit(1);
34
39
  }
35
40
  const depth = parseFlag(args, "depth") ?? "detailed";
36
41
  const fromRev = parseFlag(args, "from");
37
42
  const toRev = parseFlag(args, "to");
38
43
  const useCache = args.includes("--cache");
44
+ const modelConfig = parseModelConfig(args);
39
45
 
40
46
  const events = await runAnalyze(
41
47
  pageTitle,
@@ -43,6 +49,7 @@ export async function cli(args: string[]): Promise<void> {
43
49
  fromRev ? parseInt(fromRev, 10) : undefined,
44
50
  toRev ? parseInt(toRev, 10) : undefined,
45
51
  useCache,
52
+ modelConfig,
46
53
  );
47
54
 
48
55
  console.log(`\n=== Analysis Results ===`);
@@ -56,6 +63,12 @@ export async function cli(args: string[]): Promise<void> {
56
63
  for (const fact of event.deterministicFacts) {
57
64
  console.log(` • ${fact.fact}${fact.detail ? `: ${fact.detail}` : ""}`);
58
65
  }
66
+ if (event.modelInterpretation) {
67
+ console.log(` ↳ ${event.modelInterpretation.semanticChange} (confidence: ${event.modelInterpretation.confidence.toFixed(2)})`);
68
+ if (event.modelInterpretation.policyDimension) {
69
+ console.log(` ↳ policy: ${event.modelInterpretation.policyDimension}`);
70
+ }
71
+ }
59
72
  }
60
73
  break;
61
74
  }
@@ -63,21 +76,23 @@ export async function cli(args: string[]): Promise<void> {
63
76
  const pageTitle = args[1];
64
77
  const claimText = parseFlag(args, "text");
65
78
  if (!pageTitle || !claimText) {
66
- console.error('Usage: wikihistory claim <page> --text "<claim text>" [--cache]');
79
+ console.error('Usage: wikihistory claim <page> --text "<claim text>" [--cache] [--model <provider>]');
67
80
  process.exit(1);
68
81
  }
69
82
  const useCache = args.includes("--cache");
70
- await runClaim(pageTitle, claimText, useCache);
83
+ const modelConfig = parseModelConfig(args);
84
+ await runClaim(pageTitle, claimText, useCache, modelConfig);
71
85
  break;
72
86
  }
73
87
  case "export": {
74
88
  const pageTitle = args[1];
75
89
  const format = parseFlag(args, "format") ?? "json";
76
90
  if (!pageTitle) {
77
- console.error("Usage: wikihistory export <page> --format json|csv");
91
+ console.error("Usage: wikihistory export <page> --format json|csv [--model <provider>]");
78
92
  process.exit(1);
79
93
  }
80
- await runExport(pageTitle, format);
94
+ const modelConfig = parseModelConfig(args);
95
+ await runExport(pageTitle, format, modelConfig);
81
96
  break;
82
97
  }
83
98
  case "watch": {
@@ -109,3 +124,20 @@ export function parseFlag(args: string[], name: string): string | undefined {
109
124
  }
110
125
  return undefined;
111
126
  }
127
+
128
+ function parseModelConfig(args: string[]): ModelConfig | undefined {
129
+ const provider = parseFlag(args, "model");
130
+ if (!provider) return undefined;
131
+
132
+ if (!["openai", "anthropic", "deepseek", "local", "byok"].includes(provider)) {
133
+ console.error(`Unknown model provider: ${provider}. Use openai, anthropic, deepseek, local, or byok.`);
134
+ process.exit(1);
135
+ }
136
+
137
+ return {
138
+ provider: provider as ModelConfig["provider"],
139
+ apiKey: parseFlag(args, "model-api-key"),
140
+ model: parseFlag(args, "model-name"),
141
+ endpoint: parseFlag(args, "model-endpoint"),
142
+ };
143
+ }