awaitly-visualizer 20.0.0 → 20.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +9 -0
- package/dist/devtools.cjs +5 -5
- package/dist/devtools.cjs.map +1 -1
- package/dist/devtools.d.cts +3 -3
- package/dist/devtools.d.ts +3 -3
- package/dist/devtools.js +5 -5
- package/dist/devtools.js.map +1 -1
- package/dist/index.browser.cjs +17 -17
- package/dist/index.browser.cjs.map +1 -1
- package/dist/index.browser.d.cts +4 -4
- package/dist/index.browser.d.ts +4 -4
- package/dist/index.browser.js +19 -19
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs +20 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +22 -22
- package/dist/index.js.map +1 -1
- package/dist/kroki/fetch.cjs.map +1 -1
- package/dist/kroki/fetch.d.cts +2 -2
- package/dist/kroki/fetch.d.ts +2 -2
- package/dist/kroki/fetch.js.map +1 -1
- package/dist/notifiers/discord.cjs +2 -2
- package/dist/notifiers/discord.cjs.map +1 -1
- package/dist/notifiers/discord.d.cts +2 -2
- package/dist/notifiers/discord.d.ts +2 -2
- package/dist/notifiers/discord.js +2 -2
- package/dist/notifiers/discord.js.map +1 -1
- package/dist/notifiers/slack.cjs +12 -12
- package/dist/notifiers/slack.cjs.map +1 -1
- package/dist/notifiers/slack.d.cts +2 -2
- package/dist/notifiers/slack.d.ts +2 -2
- package/dist/notifiers/slack.js +12 -12
- package/dist/notifiers/slack.js.map +1 -1
- package/dist/notifiers/webhook.cjs +1 -1
- package/dist/notifiers/webhook.cjs.map +1 -1
- package/dist/notifiers/webhook.d.cts +2 -2
- package/dist/notifiers/webhook.d.ts +2 -2
- package/dist/notifiers/webhook.js +2 -2
- package/dist/notifiers/webhook.js.map +1 -1
- package/dist/{performance-analyzer-MwxDr6ej.d.ts → performance-analyzer-C9WFkUSa.d.cts} +16 -1
- package/dist/{performance-analyzer-DyIZZ2rA.d.cts → performance-analyzer-ffmMicjZ.d.ts} +16 -1
- package/dist/{types-fuxEig2j.d.ts → types-Bmb5LpD-.d.ts} +1 -1
- package/dist/{types-CgO2me2s.d.cts → types-BmktN16n.d.cts} +1 -1
- package/dist/{url-BskfOf3W.d.cts → url-CxqaR2K3.d.cts} +6 -1
- package/dist/{url-BskfOf3W.d.ts → url-CxqaR2K3.d.ts} +6 -1
- package/index.js +1 -0
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FlowNode, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent, W as WorkflowIR, I as IRSnapshot, z as StepState, C as ColorScheme, t as Renderer, s as RenderOptions, H as HTMLRenderOptions, q as LiveVisualizerOptions, T as TimeTravelState, N as NodePerformance, m as HeatmapData, l as HeatLevel } from './url-
|
|
1
|
+
import { F as FlowNode, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent, W as WorkflowIR, I as IRSnapshot, z as StepState, C as ColorScheme, t as Renderer, s as RenderOptions, H as HTMLRenderOptions, q as LiveVisualizerOptions, T as TimeTravelState, N as NodePerformance, m as HeatmapData, l as HeatLevel } from './url-CxqaR2K3.cjs';
|
|
2
2
|
import { WorkflowEvent } from 'awaitly/workflow';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -171,6 +171,16 @@ interface StepLog {
|
|
|
171
171
|
timedOut?: boolean;
|
|
172
172
|
timeoutMs?: number;
|
|
173
173
|
error?: string;
|
|
174
|
+
domain?: string;
|
|
175
|
+
owner?: string;
|
|
176
|
+
intent?: string;
|
|
177
|
+
calls?: readonly string[];
|
|
178
|
+
errorDiagnostics?: {
|
|
179
|
+
tag: string;
|
|
180
|
+
severity?: string;
|
|
181
|
+
retryable?: boolean;
|
|
182
|
+
origin?: string;
|
|
183
|
+
};
|
|
174
184
|
}
|
|
175
185
|
/**
|
|
176
186
|
* Hook execution log entry.
|
|
@@ -205,6 +215,11 @@ interface WorkflowSummary {
|
|
|
205
215
|
name: string;
|
|
206
216
|
durationMs: number;
|
|
207
217
|
};
|
|
218
|
+
byDomain?: Record<string, {
|
|
219
|
+
total: number;
|
|
220
|
+
errors: number;
|
|
221
|
+
avgDurationMs: number;
|
|
222
|
+
}>;
|
|
208
223
|
}
|
|
209
224
|
/**
|
|
210
225
|
* Complete logger output structure.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { F as FlowNode, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent, W as WorkflowIR, I as IRSnapshot, z as StepState, C as ColorScheme, t as Renderer, s as RenderOptions, H as HTMLRenderOptions, q as LiveVisualizerOptions, T as TimeTravelState, N as NodePerformance, m as HeatmapData, l as HeatLevel } from './url-
|
|
1
|
+
import { F as FlowNode, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent, W as WorkflowIR, I as IRSnapshot, z as StepState, C as ColorScheme, t as Renderer, s as RenderOptions, H as HTMLRenderOptions, q as LiveVisualizerOptions, T as TimeTravelState, N as NodePerformance, m as HeatmapData, l as HeatLevel } from './url-CxqaR2K3.js';
|
|
2
2
|
import { WorkflowEvent } from 'awaitly/workflow';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -171,6 +171,16 @@ interface StepLog {
|
|
|
171
171
|
timedOut?: boolean;
|
|
172
172
|
timeoutMs?: number;
|
|
173
173
|
error?: string;
|
|
174
|
+
domain?: string;
|
|
175
|
+
owner?: string;
|
|
176
|
+
intent?: string;
|
|
177
|
+
calls?: readonly string[];
|
|
178
|
+
errorDiagnostics?: {
|
|
179
|
+
tag: string;
|
|
180
|
+
severity?: string;
|
|
181
|
+
retryable?: boolean;
|
|
182
|
+
origin?: string;
|
|
183
|
+
};
|
|
174
184
|
}
|
|
175
185
|
/**
|
|
176
186
|
* Hook execution log entry.
|
|
@@ -205,6 +215,11 @@ interface WorkflowSummary {
|
|
|
205
215
|
name: string;
|
|
206
216
|
durationMs: number;
|
|
207
217
|
};
|
|
218
|
+
byDomain?: Record<string, {
|
|
219
|
+
total: number;
|
|
220
|
+
errors: number;
|
|
221
|
+
avgDurationMs: number;
|
|
222
|
+
}>;
|
|
208
223
|
}
|
|
209
224
|
/**
|
|
210
225
|
* Complete logger output structure.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AsyncResult } from 'awaitly';
|
|
2
2
|
import { WorkflowEvent } from 'awaitly/workflow';
|
|
3
|
-
import { W as WorkflowIR, M as MermaidInkExportOptions, U as UrlGeneratorOptions, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent } from './url-
|
|
3
|
+
import { W as WorkflowIR, M as MermaidInkExportOptions, U as UrlGeneratorOptions, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent } from './url-CxqaR2K3.js';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Mermaid.ink URL Generation
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AsyncResult } from 'awaitly';
|
|
2
2
|
import { WorkflowEvent } from 'awaitly/workflow';
|
|
3
|
-
import { W as WorkflowIR, M as MermaidInkExportOptions, U as UrlGeneratorOptions, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent } from './url-
|
|
3
|
+
import { W as WorkflowIR, M as MermaidInkExportOptions, U as UrlGeneratorOptions, S as ScopeStartEvent, c as ScopeEndEvent, D as DecisionStartEvent, a as DecisionBranchEvent, b as DecisionEndEvent } from './url-CxqaR2K3.cjs';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* Mermaid.ink URL Generation
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as awaitly_core from 'awaitly/core';
|
|
2
2
|
import { UnexpectedError } from 'awaitly/core';
|
|
3
|
+
import { ScopeType, WorkflowOptions, WorkflowEvent } from 'awaitly/workflow';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Workflow Visualization - Intermediate Representation Types
|
|
@@ -51,6 +52,10 @@ interface BaseNode {
|
|
|
51
52
|
timedOut?: boolean;
|
|
52
53
|
/** Timeout duration in ms (if timed out) */
|
|
53
54
|
timeoutMs?: number;
|
|
55
|
+
/** Agent metadata from step options (domain, intent, owner, etc.) */
|
|
56
|
+
metadata?: awaitly_core.StepMetadata;
|
|
57
|
+
/** Error diagnostics (tag, classification, origin) */
|
|
58
|
+
errorDiagnostics?: awaitly_core.StepErrorDiagnostics;
|
|
54
59
|
}
|
|
55
60
|
/**
|
|
56
61
|
* A single step execution node.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as awaitly_core from 'awaitly/core';
|
|
2
2
|
import { UnexpectedError } from 'awaitly/core';
|
|
3
|
+
import { ScopeType, WorkflowOptions, WorkflowEvent } from 'awaitly/workflow';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
* Workflow Visualization - Intermediate Representation Types
|
|
@@ -51,6 +52,10 @@ interface BaseNode {
|
|
|
51
52
|
timedOut?: boolean;
|
|
52
53
|
/** Timeout duration in ms (if timed out) */
|
|
53
54
|
timeoutMs?: number;
|
|
55
|
+
/** Agent metadata from step options (domain, intent, owner, etc.) */
|
|
56
|
+
metadata?: awaitly_core.StepMetadata;
|
|
57
|
+
/** Error diagnostics (tag, classification, origin) */
|
|
58
|
+
errorDiagnostics?: awaitly_core.StepErrorDiagnostics;
|
|
54
59
|
}
|
|
55
60
|
/**
|
|
56
61
|
* A single step execution node.
|