@mrclrchtr/supi-code-runtime 6.3.0 → 7.0.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +8 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mrclrchtr/supi-code-runtime",
3
- "version": "6.3.0",
3
+ "version": "7.0.0",
4
4
  "description": "Shared workspace context and capability contracts for code intelligence",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/types.ts CHANGED
@@ -234,7 +234,14 @@ export type CalleeDepth = "direct" | "deep";
234
234
  */
235
235
  export interface CalleesData {
236
236
  enclosingScope: { name: string; startLine: number; endLine: number };
237
- callees: Array<{ name: string; startLine: number }>;
237
+ /** Distinct call sites with 1-based UTF-16 start coordinates. */
238
+ callees: Array<{
239
+ name: string;
240
+ /** Optional syntax-shortened label for presentation; does not replace `name`. */
241
+ displayName?: string;
242
+ startLine: number;
243
+ startCharacter: number;
244
+ }>;
238
245
  depth: CalleeDepth;
239
246
  }
240
247