awaitly-visualizer 5.0.1 → 6.0.1
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.
|
@@ -25,10 +25,7 @@ interface WebhookPayload {
|
|
|
25
25
|
status?: WorkflowStatus | "running";
|
|
26
26
|
/** Diagram SVG URL (from Kroki or mermaid.ink) */
|
|
27
27
|
diagramUrl?: string;
|
|
28
|
-
/**
|
|
29
|
-
* Kroki SVG URL for visualization
|
|
30
|
-
* @deprecated Use diagramUrl instead
|
|
31
|
-
*/
|
|
28
|
+
/** Kroki SVG URL for visualization. Prefer diagramUrl. */
|
|
32
29
|
krokiUrl?: string;
|
|
33
30
|
/** Diagram provider used ("kroki" or "mermaid-ink") */
|
|
34
31
|
diagramProvider?: string;
|
|
@@ -61,10 +58,7 @@ interface WebhookNotifierOptions extends BaseNotifierOptions {
|
|
|
61
58
|
timeout?: number;
|
|
62
59
|
/** Whether to include raw mermaid text (default: false) */
|
|
63
60
|
includeMermaid?: boolean;
|
|
64
|
-
/**
|
|
65
|
-
* Whether to include diagram URL (default: true).
|
|
66
|
-
* @deprecated Use includeDiagramUrl instead
|
|
67
|
-
*/
|
|
61
|
+
/** Whether to include diagram URL (default: true). Prefer includeDiagramUrl. */
|
|
68
62
|
includeKrokiUrl?: boolean;
|
|
69
63
|
/** Whether to include diagram URL (default: true) */
|
|
70
64
|
includeDiagramUrl?: boolean;
|
|
@@ -25,10 +25,7 @@ interface WebhookPayload {
|
|
|
25
25
|
status?: WorkflowStatus | "running";
|
|
26
26
|
/** Diagram SVG URL (from Kroki or mermaid.ink) */
|
|
27
27
|
diagramUrl?: string;
|
|
28
|
-
/**
|
|
29
|
-
* Kroki SVG URL for visualization
|
|
30
|
-
* @deprecated Use diagramUrl instead
|
|
31
|
-
*/
|
|
28
|
+
/** Kroki SVG URL for visualization. Prefer diagramUrl. */
|
|
32
29
|
krokiUrl?: string;
|
|
33
30
|
/** Diagram provider used ("kroki" or "mermaid-ink") */
|
|
34
31
|
diagramProvider?: string;
|
|
@@ -61,10 +58,7 @@ interface WebhookNotifierOptions extends BaseNotifierOptions {
|
|
|
61
58
|
timeout?: number;
|
|
62
59
|
/** Whether to include raw mermaid text (default: false) */
|
|
63
60
|
includeMermaid?: boolean;
|
|
64
|
-
/**
|
|
65
|
-
* Whether to include diagram URL (default: true).
|
|
66
|
-
* @deprecated Use includeDiagramUrl instead
|
|
67
|
-
*/
|
|
61
|
+
/** Whether to include diagram URL (default: true). Prefer includeDiagramUrl. */
|
|
68
62
|
includeKrokiUrl?: boolean;
|
|
69
63
|
/** Whether to include diagram URL (default: true) */
|
|
70
64
|
includeDiagramUrl?: boolean;
|