@principal-ai/principal-view-core 0.25.0 → 0.26.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.
- package/dist/discovery/CanvasFileManifest.d.ts +86 -0
- package/dist/discovery/CanvasFileManifest.d.ts.map +1 -0
- package/dist/discovery/CanvasFileManifest.js +338 -0
- package/dist/discovery/CanvasFileManifest.js.map +1 -0
- package/dist/discovery/types.d.ts +131 -0
- package/dist/discovery/types.d.ts.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/storyboard/builder.d.ts +3 -14
- package/dist/storyboard/builder.d.ts.map +1 -1
- package/dist/storyboard/builder.js +6 -33
- package/dist/storyboard/builder.js.map +1 -1
- package/dist/storyboard/index.d.ts +1 -1
- package/dist/storyboard/index.d.ts.map +1 -1
- package/dist/storyboard/index.js +1 -2
- package/dist/storyboard/index.js.map +1 -1
- package/dist/storyboard/types.d.ts +8 -9
- package/dist/storyboard/types.d.ts.map +1 -1
- package/dist/storyboard/types.js +1 -1
- package/package.json +1 -1
- package/src/discovery/CanvasFileManifest.test.ts +521 -0
- package/src/discovery/CanvasFileManifest.ts +419 -0
- package/src/discovery/types.ts +176 -0
- package/src/index.ts +20 -1
- package/src/storyboard/builder.ts +9 -35
- package/src/storyboard/index.ts +0 -1
- package/src/storyboard/types.ts +9 -9
package/dist/index.js
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
exports.findScopeByName = exports.getUnmatchedScopes = exports.getPartialMatchedScopes = exports.getMatchedScopes = exports.getAllScopes = exports.getPrimaryScope = exports.getScopeFromUnmatchedSpan = exports.getScopeFromStoryboardMatch = exports.getScopeFromScenarioMatch = exports.groupSpansByTrace = exports.createInMemoryVersionRegistry = exports.InMemoryVersionRegistry = exports.isWarnSeverity = exports.isErrorSeverity = exports.getSpanDuration = exports.parseNanoTime = exports.flattenResourceAttributes = exports.getAttributeValue = exports.findAttribute = exports.getAttributeStringValue = exports.TraceOrchestrator = exports.CompositeRegistry = exports.LocalRegistry = exports.RemoteRegistry = exports.OtlpTraceParser = exports.getWorkflowRootSpan = exports.getEventSpan = exports.getEventTemplateString = exports.isEventTemplate = exports.setNestedValue = exports.getNestedValue = exports.computeAggregates = exports.hasEventMatching = exports.getRequiredEvents = exports.selectScenario = exports.ParsedTemplate = exports.parseTemplate = exports.renderEventTemplate = exports.renderWorkflow = exports.getConfigNameFromFilename = exports.isYamlFile = exports.parseYaml = exports.CanvasConverter = exports.resolveCanvasColor = exports.CANVAS_COLOR_PRESETS = exports.hasPVExtension = exports.isGroupNode = exports.isLinkNode = exports.isFileNode = exports.isTextNode = void 0;
|
|
14
|
-
exports.InMemoryFileSystemAdapter = exports.getAllNodeIds = exports.findNodesMatchingEventPattern = exports.resolveWorkflowNodeIds = exports.resolveScenarioNodeIds = exports.getNodeEventName = exports.buildEventNodeMap = exports.
|
|
14
|
+
exports.InMemoryFileSystemAdapter = exports.getAllNodeIds = exports.findNodesMatchingEventPattern = exports.resolveWorkflowNodeIds = exports.resolveScenarioNodeIds = exports.getNodeEventName = exports.buildEventNodeMap = exports.buildStoryboardContext = exports.LibraryDiscovery = exports.validateLibraryStructure = exports.LibraryConverter = exports.LibraryLoader = exports.EventRecorderService = exports.SessionManager = exports.PathBasedEventProcessor = exports.analyzeCoverage = exports.createExecutionValidator = exports.ExecutionValidator = exports.resolveEventSpanColor = exports.getSpanColor = exports.matchSpanPattern = exports.buildSpanColorMapFromCanvases = exports.buildSpanColorMap = exports.extractSpanConventions = exports.extractSpanConvention = exports.DEFAULT_SPAN_COLOR = exports.getAllScopeNames = exports.buildScopeColorMap = exports.normalizeScopes = exports.getScopeColor = exports.getScopeDefinition = exports.getScopeNames = exports.DRAFT_NODE_COLOR = exports.DEFAULT_SCOPE_COLOR = exports.ScopesCanvasValidator = exports.buildStoryboardFileManifest = exports.buildWorkflowFileManifest = exports.buildCanvasFileManifest = exports.CanvasDiscovery = exports.SpanMatcher = exports.getScopeMatchSummary = exports.scopeHasMatches = exports.getScopeWithMostSpans = exports.getSpanCountForScope = void 0;
|
|
15
15
|
// Import canvas utility functions to re-export (avoids export-from syntax that breaks with exports field)
|
|
16
16
|
const canvas_1 = require("./types/canvas");
|
|
17
17
|
Object.defineProperty(exports, "isTextNode", { enumerable: true, get: function () { return canvas_1.isTextNode; } });
|
|
@@ -98,6 +98,11 @@ Object.defineProperty(exports, "SpanMatcher", { enumerable: true, get: function
|
|
|
98
98
|
// Export canvas, workflow, and test trace discovery (browser-safe)
|
|
99
99
|
var CanvasDiscovery_1 = require("./discovery/CanvasDiscovery");
|
|
100
100
|
Object.defineProperty(exports, "CanvasDiscovery", { enumerable: true, get: function () { return CanvasDiscovery_1.CanvasDiscovery; } });
|
|
101
|
+
// Export file manifest builders (browser-safe)
|
|
102
|
+
var CanvasFileManifest_1 = require("./discovery/CanvasFileManifest");
|
|
103
|
+
Object.defineProperty(exports, "buildCanvasFileManifest", { enumerable: true, get: function () { return CanvasFileManifest_1.buildCanvasFileManifest; } });
|
|
104
|
+
Object.defineProperty(exports, "buildWorkflowFileManifest", { enumerable: true, get: function () { return CanvasFileManifest_1.buildWorkflowFileManifest; } });
|
|
105
|
+
Object.defineProperty(exports, "buildStoryboardFileManifest", { enumerable: true, get: function () { return CanvasFileManifest_1.buildStoryboardFileManifest; } });
|
|
101
106
|
// Export scopes module (canvas validation + scope utilities)
|
|
102
107
|
var scopes_1 = require("./scopes");
|
|
103
108
|
Object.defineProperty(exports, "ScopesCanvasValidator", { enumerable: true, get: function () { return scopes_1.ScopesCanvasValidator; } });
|
|
@@ -148,7 +153,6 @@ var LibraryDiscovery_1 = require("./discovery/LibraryDiscovery");
|
|
|
148
153
|
Object.defineProperty(exports, "LibraryDiscovery", { enumerable: true, get: function () { return LibraryDiscovery_1.LibraryDiscovery; } });
|
|
149
154
|
var index_1 = require("./storyboard/index");
|
|
150
155
|
Object.defineProperty(exports, "buildStoryboardContext", { enumerable: true, get: function () { return index_1.buildStoryboardContext; } });
|
|
151
|
-
Object.defineProperty(exports, "buildNodeSourcesMap", { enumerable: true, get: function () { return index_1.buildNodeSourcesMap; } });
|
|
152
156
|
Object.defineProperty(exports, "buildEventNodeMap", { enumerable: true, get: function () { return index_1.buildEventNodeMap; } });
|
|
153
157
|
Object.defineProperty(exports, "getNodeEventName", { enumerable: true, get: function () { return index_1.getNodeEventName; } });
|
|
154
158
|
Object.defineProperty(exports, "resolveScenarioNodeIds", { enumerable: true, get: function () { return index_1.resolveScenarioNodeIds; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;GASG;;;;AAEH,0GAA0G;AAC1G,2CAQwB;AAwFtB,2FA/FA,mBAAU,OA+FA;AACV,2FA/FA,mBAAU,OA+FA;AACV,2FA/FA,mBAAU,OA+FA;AACV,4FA/FA,oBAAW,OA+FA;AACX,+FA/FA,uBAAc,OA+FA;AACd,qGA/FA,6BAAoB,OA+FA;AACpB,mGA/FA,2BAAkB,OA+FA;AAGpB,2DAA0D;AAAjD,kHAAA,eAAe,OAAA;AAGxB,2CAA2C;AAC3C,iDAAsF;AAA7E,uGAAA,SAAS,OAAA;AAAE,wGAAA,UAAU,OAAA;AAAE,uHAAA,yBAAyB,OAAA;AAGzD,iDAAiD;AACjD,mEAAmE;AACnE,kEAAmF;AAA1E,mHAAA,cAAc,OAAA;AAAE,wHAAA,mBAAmB,OAAA;AAC5C,8DAA2E;AAAlE,gHAAA,aAAa,OAAA;AAAE,iHAAA,cAAc,OAAA;AAEtC,gEAOqC;AANnC,kHAAA,cAAc,OAAA;AACd,qHAAA,iBAAiB,OAAA;AACjB,oHAAA,gBAAgB,OAAA;AAChB,qHAAA,iBAAiB,OAAA;AACjB,kHAAA,cAAc,OAAA;AACd,kHAAA,cAAc,OAAA;AAoBhB,0CAK0B;AAJxB,wGAAA,eAAe,OAAA;AACf,+GAAA,sBAAsB,OAAA;AACtB,qGAAA,YAAY,OAAA;AACZ,4GAAA,mBAAmB,OAAA;AAiDrB,2BAA2B;AAC3B,6DAA4D;AAAnD,kHAAA,eAAe,OAAA;AAGxB,+BAA+B;AAC/B,4DAA2D;AAAlD,gHAAA,cAAc,OAAA;AACvB,0DAA0E;AAAjE,8GAAA,aAAa,OAAA;AACtB,kEAAiE;AAAxD,sHAAA,iBAAiB,OAAA;AAE1B,4BAA4B;AAC5B,uEAAsE;AAA7D,sHAAA,iBAAiB,OAAA;AAG1B,+BAA+B;AAC/B,qCASsB;AARpB,+GAAA,uBAAuB,OAAA;AACvB,qGAAA,aAAa,OAAA;AACb,yGAAA,iBAAiB,OAAA;AACjB,iHAAA,yBAAyB,OAAA;AACzB,qGAAA,aAAa,OAAA;AACb,uGAAA,eAAe,OAAA;AACf,uGAAA,eAAe,OAAA;AACf,sGAAA,cAAc,OAAA;AAWhB,8DAAoG;AAA3F,0HAAA,uBAAuB,OAAA;AAAE,gIAAA,6BAA6B,OAAA;AAE/D,qCAAqC;AACrC,6DAA6D;AAApD,qHAAA,iBAAiB,OAAA;AAE1B,0CAA0C;AAC1C,yEAcwC;AAbtC,mIAAA,yBAAyB,OAAA;AACzB,qIAAA,2BAA2B,OAAA;AAC3B,mIAAA,yBAAyB,OAAA;AACzB,yHAAA,eAAe,OAAA;AACf,sHAAA,YAAY,OAAA;AACZ,0HAAA,gBAAgB,OAAA;AAChB,iIAAA,uBAAuB,OAAA;AACvB,4HAAA,kBAAkB,OAAA;AAClB,yHAAA,eAAe,OAAA;AACf,8HAAA,oBAAoB,OAAA;AACpB,+HAAA,qBAAqB,OAAA;AACrB,yHAAA,eAAe,OAAA;AACf,8HAAA,oBAAoB,OAAA;AAItB,sBAAsB;AACtB,sDAAqD;AAA5C,0GAAA,WAAW,OAAA;AAGpB,mEAAmE;AACnE,+DAA8D;AAArD,kHAAA,eAAe,OAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
import type { ExtendedCanvas, ExtendedCanvasNode } from '../types/canvas';
|
|
8
8
|
import type { WorkflowTemplate, WorkflowScenario } from '../workflow/types';
|
|
9
9
|
import type { StoryboardReference, StoryboardContextSliceData } from './types';
|
|
10
|
+
import type { CanvasType } from '../discovery/types';
|
|
10
11
|
/**
|
|
11
12
|
* Map of event name to canvas node IDs that emit that event.
|
|
12
13
|
*/
|
|
@@ -19,6 +20,8 @@ export interface BuildStoryboardContextOptions {
|
|
|
19
20
|
canvas: ExtendedCanvas;
|
|
20
21
|
/** Storyboard metadata (id, name, path) */
|
|
21
22
|
storyboard: StoryboardReference;
|
|
23
|
+
/** Canvas type (defaults to 'otel') */
|
|
24
|
+
canvasType?: CanvasType;
|
|
22
25
|
/** Optional: Selected workflow template and its path */
|
|
23
26
|
workflow?: {
|
|
24
27
|
template: WorkflowTemplate;
|
|
@@ -29,20 +32,6 @@ export interface BuildStoryboardContextOptions {
|
|
|
29
32
|
/** Optional: Additional supporting files to include */
|
|
30
33
|
additionalSupportingFiles?: string[];
|
|
31
34
|
}
|
|
32
|
-
/**
|
|
33
|
-
* Build a map of canvas node ID to reference paths.
|
|
34
|
-
* Extracts `pv.references` (or deprecated `pv.sources`) from each node.
|
|
35
|
-
*
|
|
36
|
-
* @param canvas - The extended canvas with nodes
|
|
37
|
-
* @returns Record mapping node IDs to their reference paths
|
|
38
|
-
*
|
|
39
|
-
* @example
|
|
40
|
-
* ```typescript
|
|
41
|
-
* const nodeSources = buildNodeSourcesMap(canvas);
|
|
42
|
-
* // { 'node-abc': ['src/auth/login.ts'], 'node-xyz': ['@logfire/pydantic-ai'] }
|
|
43
|
-
* ```
|
|
44
|
-
*/
|
|
45
|
-
export declare function buildNodeSourcesMap(canvas: ExtendedCanvas): Record<string, string[]>;
|
|
46
35
|
/**
|
|
47
36
|
* Build a map of event name to canvas node IDs.
|
|
48
37
|
* Uses `pv.event.name` or `pv.eventRef` from each node.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../src/storyboard/builder.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAC1E,OAAO,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC5E,OAAO,KAAK,EACV,mBAAmB,EAGnB,0BAA0B,EAC3B,MAAM,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../src/storyboard/builder.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AAC1E,OAAO,KAAK,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,mBAAmB,CAAC;AAC5E,OAAO,KAAK,EACV,mBAAmB,EAGnB,0BAA0B,EAC3B,MAAM,SAAS,CAAC;AACjB,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAOrD;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C,gCAAgC;IAChC,MAAM,EAAE,cAAc,CAAC;IAEvB,2CAA2C;IAC3C,UAAU,EAAE,mBAAmB,CAAC;IAEhC,uCAAuC;IACvC,UAAU,CAAC,EAAE,UAAU,CAAC;IAExB,wDAAwD;IACxD,QAAQ,CAAC,EAAE;QACT,QAAQ,EAAE,gBAAgB,CAAC;QAC3B,IAAI,EAAE,MAAM,CAAC;KACd,CAAC;IAEF,sDAAsD;IACtD,QAAQ,CAAC,EAAE,gBAAgB,CAAC;IAE5B,uDAAuD;IACvD,yBAAyB,CAAC,EAAE,MAAM,EAAE,CAAC;CACtC;AAMD;;;;;;;;;;;;GAYG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,cAAc,GAAG,YAAY,CAiBtE;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,kBAAkB,GAAG,MAAM,GAAG,SAAS,CAE7E;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,sBAAsB,CACpC,MAAM,EAAE,cAAc,EACtB,QAAQ,EAAE,gBAAgB,GACzB,MAAM,EAAE,CAgBV;AAED;;;;;;;;GAQG;AACH,wBAAgB,sBAAsB,CACpC,MAAM,EAAE,cAAc,EACtB,QAAQ,EAAE,gBAAgB,GACzB,MAAM,EAAE,CAWV;AAED;;;;;;GAMG;AACH,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,YAAY,EACtB,OAAO,EAAE,MAAM,GACd,MAAM,EAAE,CAiBV;AAED;;;;;;GAMG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,EAAE,CAK9D;AAMD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,6BAA6B,GACrC,0BAA0B,CA+C5B"}
|
|
@@ -6,38 +6,11 @@
|
|
|
6
6
|
* Used by hosts to create the context slice for panels like File City.
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.buildStoryboardContext = exports.getAllNodeIds = exports.findNodesMatchingEventPattern = exports.resolveWorkflowNodeIds = exports.resolveScenarioNodeIds = exports.getNodeEventName = exports.buildEventNodeMap =
|
|
9
|
+
exports.buildStoryboardContext = exports.getAllNodeIds = exports.findNodesMatchingEventPattern = exports.resolveWorkflowNodeIds = exports.resolveScenarioNodeIds = exports.getNodeEventName = exports.buildEventNodeMap = void 0;
|
|
10
|
+
const CanvasFileManifest_1 = require("../discovery/CanvasFileManifest");
|
|
10
11
|
// ============================================================================
|
|
11
12
|
// Core Functions
|
|
12
13
|
// ============================================================================
|
|
13
|
-
/**
|
|
14
|
-
* Build a map of canvas node ID to reference paths.
|
|
15
|
-
* Extracts `pv.references` (or deprecated `pv.sources`) from each node.
|
|
16
|
-
*
|
|
17
|
-
* @param canvas - The extended canvas with nodes
|
|
18
|
-
* @returns Record mapping node IDs to their reference paths
|
|
19
|
-
*
|
|
20
|
-
* @example
|
|
21
|
-
* ```typescript
|
|
22
|
-
* const nodeSources = buildNodeSourcesMap(canvas);
|
|
23
|
-
* // { 'node-abc': ['src/auth/login.ts'], 'node-xyz': ['@logfire/pydantic-ai'] }
|
|
24
|
-
* ```
|
|
25
|
-
*/
|
|
26
|
-
function buildNodeSourcesMap(canvas) {
|
|
27
|
-
const nodeSources = {};
|
|
28
|
-
if (!canvas.nodes) {
|
|
29
|
-
return nodeSources;
|
|
30
|
-
}
|
|
31
|
-
for (const node of canvas.nodes) {
|
|
32
|
-
// Prefer references, fall back to deprecated sources
|
|
33
|
-
const refs = node.pv?.references ?? node.pv?.sources;
|
|
34
|
-
if (refs && refs.length > 0) {
|
|
35
|
-
nodeSources[node.id] = [...refs];
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
return nodeSources;
|
|
39
|
-
}
|
|
40
|
-
exports.buildNodeSourcesMap = buildNodeSourcesMap;
|
|
41
14
|
/**
|
|
42
15
|
* Build a map of event name to canvas node IDs.
|
|
43
16
|
* Uses `pv.event.name` or `pv.eventRef` from each node.
|
|
@@ -200,9 +173,9 @@ exports.getAllNodeIds = getAllNodeIds;
|
|
|
200
173
|
* ```
|
|
201
174
|
*/
|
|
202
175
|
function buildStoryboardContext(options) {
|
|
203
|
-
const { canvas, storyboard, workflow, scenario, additionalSupportingFiles = [] } = options;
|
|
204
|
-
// Build
|
|
205
|
-
const
|
|
176
|
+
const { canvas, storyboard, canvasType = 'otel', workflow, scenario, additionalSupportingFiles = [] } = options;
|
|
177
|
+
// Build canvas file manifest
|
|
178
|
+
const manifest = (0, CanvasFileManifest_1.buildCanvasFileManifest)(canvas, storyboard.id, storyboard.path, canvasType);
|
|
206
179
|
// Build supporting files list
|
|
207
180
|
const supportingFiles = [storyboard.path];
|
|
208
181
|
if (workflow) {
|
|
@@ -238,7 +211,7 @@ function buildStoryboardContext(options) {
|
|
|
238
211
|
storyboard,
|
|
239
212
|
workflow: workflowReference,
|
|
240
213
|
scenario: scenarioReference,
|
|
241
|
-
|
|
214
|
+
manifest,
|
|
242
215
|
supportingFiles,
|
|
243
216
|
};
|
|
244
217
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"builder.js","sourceRoot":"","sources":["../../src/storyboard/builder.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;;
|
|
1
|
+
{"version":3,"file":"builder.js","sourceRoot":"","sources":["../../src/storyboard/builder.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
* Types and utilities for building storyboard context data that panels consume.
|
|
5
5
|
*/
|
|
6
6
|
export type { StoryboardReference, WorkflowReference, ScenarioReference, StoryboardContextSliceData, } from './types';
|
|
7
|
-
export { buildStoryboardContext,
|
|
7
|
+
export { buildStoryboardContext, buildEventNodeMap, getNodeEventName, resolveScenarioNodeIds, resolveWorkflowNodeIds, findNodesMatchingEventPattern, getAllNodeIds, } from './builder';
|
|
8
8
|
export type { EventNodeMap, BuildStoryboardContextOptions } from './builder';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/storyboard/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EACV,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,0BAA0B,GAC3B,MAAM,SAAS,CAAC;AAGjB,OAAO,EACL,sBAAsB,EACtB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/storyboard/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,YAAY,EACV,mBAAmB,EACnB,iBAAiB,EACjB,iBAAiB,EACjB,0BAA0B,GAC3B,MAAM,SAAS,CAAC;AAGjB,OAAO,EACL,sBAAsB,EACtB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EACtB,sBAAsB,EACtB,6BAA6B,EAC7B,aAAa,GACd,MAAM,WAAW,CAAC;AAEnB,YAAY,EAAE,YAAY,EAAE,6BAA6B,EAAE,MAAM,WAAW,CAAC"}
|
package/dist/storyboard/index.js
CHANGED
|
@@ -5,11 +5,10 @@
|
|
|
5
5
|
* Types and utilities for building storyboard context data that panels consume.
|
|
6
6
|
*/
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.getAllNodeIds = exports.findNodesMatchingEventPattern = exports.resolveWorkflowNodeIds = exports.resolveScenarioNodeIds = exports.getNodeEventName = exports.buildEventNodeMap = exports.
|
|
8
|
+
exports.getAllNodeIds = exports.findNodesMatchingEventPattern = exports.resolveWorkflowNodeIds = exports.resolveScenarioNodeIds = exports.getNodeEventName = exports.buildEventNodeMap = exports.buildStoryboardContext = void 0;
|
|
9
9
|
// Builder utilities
|
|
10
10
|
var builder_1 = require("./builder");
|
|
11
11
|
Object.defineProperty(exports, "buildStoryboardContext", { enumerable: true, get: function () { return builder_1.buildStoryboardContext; } });
|
|
12
|
-
Object.defineProperty(exports, "buildNodeSourcesMap", { enumerable: true, get: function () { return builder_1.buildNodeSourcesMap; } });
|
|
13
12
|
Object.defineProperty(exports, "buildEventNodeMap", { enumerable: true, get: function () { return builder_1.buildEventNodeMap; } });
|
|
14
13
|
Object.defineProperty(exports, "getNodeEventName", { enumerable: true, get: function () { return builder_1.getNodeEventName; } });
|
|
15
14
|
Object.defineProperty(exports, "resolveScenarioNodeIds", { enumerable: true, get: function () { return builder_1.resolveScenarioNodeIds; } });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/storyboard/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAUH,oBAAoB;AACpB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/storyboard/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAUH,oBAAoB;AACpB,qCAQmB;AAPjB,iHAAA,sBAAsB,OAAA;AACtB,4GAAA,iBAAiB,OAAA;AACjB,2GAAA,gBAAgB,OAAA;AAChB,iHAAA,sBAAsB,OAAA;AACtB,iHAAA,sBAAsB,OAAA;AACtB,wHAAA,6BAA6B,OAAA;AAC7B,wGAAA,aAAa,OAAA"}
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Types for representing storyboard context data that panels consume.
|
|
5
5
|
* Used to communicate which storyboard/workflow/scenario is selected
|
|
6
|
-
* and
|
|
6
|
+
* and provide file manifests for visualization.
|
|
7
7
|
*/
|
|
8
|
+
import type { CanvasFileManifest } from '../discovery/types';
|
|
8
9
|
/**
|
|
9
10
|
* Reference to a storyboard (canvas) in the storyboard context.
|
|
10
11
|
* Represents the top-level selection in the storyboard hierarchy.
|
|
@@ -69,10 +70,7 @@ export interface ScenarioReference {
|
|
|
69
70
|
* nodeIds: ['node-cart', 'node-payment', 'node-confirm'],
|
|
70
71
|
* },
|
|
71
72
|
* scenario: null,
|
|
72
|
-
*
|
|
73
|
-
* 'node-cart': ['src/cart/Cart.tsx', 'src/cart/cartUtils.ts'],
|
|
74
|
-
* 'node-payment': ['src/payment/Payment.tsx'],
|
|
75
|
-
* },
|
|
73
|
+
* manifest: { ... }, // CanvasFileManifest with file mappings
|
|
76
74
|
* supportingFiles: [
|
|
77
75
|
* '.principal-views/checkout-flow.otel.canvas',
|
|
78
76
|
* '.principal-views/checkout-flow/complete-checkout.workflow.json',
|
|
@@ -88,11 +86,12 @@ export interface StoryboardContextSliceData {
|
|
|
88
86
|
/** Currently selected scenario (optional, narrowest scope) */
|
|
89
87
|
scenario: ScenarioReference | null;
|
|
90
88
|
/**
|
|
91
|
-
*
|
|
92
|
-
*
|
|
93
|
-
*
|
|
89
|
+
* Canvas file manifest with bidirectional mappings.
|
|
90
|
+
* Use `manifest.nodeToFiles.get(nodeId)` to get files for a node.
|
|
91
|
+
* Use `manifest.fileToNodes.get(path)` to get nodes for a file.
|
|
92
|
+
* Use `manifest.byRole.instrumentation` for instrumented files.
|
|
94
93
|
*/
|
|
95
|
-
|
|
94
|
+
manifest: CanvasFileManifest | null;
|
|
96
95
|
/**
|
|
97
96
|
* Additional files associated with the storyboard context.
|
|
98
97
|
* Includes canvas files, workflow definitions, and related documentation.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/storyboard/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/storyboard/types.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,oBAAoB,CAAC;AAM7D;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IAClC,gEAAgE;IAChE,EAAE,EAAE,MAAM,CAAC;IACX,2CAA2C;IAC3C,IAAI,EAAE,MAAM,CAAC;IACb,mFAAmF;IACnF,IAAI,EAAE,MAAM,CAAC;CACd;AAED;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC,gFAAgF;IAChF,EAAE,EAAE,MAAM,CAAC;IACX,+CAA+C;IAC/C,IAAI,EAAE,MAAM,CAAC;IACb,yGAAyG;IACzG,IAAI,EAAE,MAAM,CAAC;IACb,mFAAmF;IACnF,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAED;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAChC,2DAA2D;IAC3D,EAAE,EAAE,MAAM,CAAC;IACX,6CAA6C;IAC7C,IAAI,EAAE,MAAM,CAAC;IACb,2EAA2E;IAC3E,OAAO,EAAE,MAAM,EAAE,CAAC;CACnB;AAMD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,MAAM,WAAW,0BAA0B;IACzC,8DAA8D;IAC9D,UAAU,EAAE,mBAAmB,GAAG,IAAI,CAAC;IAEvC,6EAA6E;IAC7E,QAAQ,EAAE,iBAAiB,GAAG,IAAI,CAAC;IAEnC,8DAA8D;IAC9D,QAAQ,EAAE,iBAAiB,GAAG,IAAI,CAAC;IAEnC;;;;;OAKG;IACH,QAAQ,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAEpC;;;OAGG;IACH,eAAe,EAAE,MAAM,EAAE,CAAC;CAC3B"}
|
package/dist/storyboard/types.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*
|
|
5
5
|
* Types for representing storyboard context data that panels consume.
|
|
6
6
|
* Used to communicate which storyboard/workflow/scenario is selected
|
|
7
|
-
* and
|
|
7
|
+
* and provide file manifests for visualization.
|
|
8
8
|
*/
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
//# sourceMappingURL=types.js.map
|