@stack-spot/portal-network 0.235.1 → 0.235.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.235.3](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.235.2...portal-network@v0.235.3) (2026-05-22)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * added workflowSlug parameter to list stack version workflow versions endpoint ([24f7b4b](https://github.com/stack-spot/portal-commons/commit/24f7b4bb81231642895be6e5524999629338637e))
9
+
10
+ ## [0.235.2](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.235.1...portal-network@v0.235.2) (2026-04-30)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * updating WorkspaceManager API ([3671da1](https://github.com/stack-spot/portal-commons/commit/3671da18e8d9637d3ac74f2a321a0e8d28d948b4))
16
+
3
17
  ## [0.235.1](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.235.0...portal-network@v0.235.1) (2026-04-27)
4
18
 
5
19
 
@@ -2860,10 +2860,11 @@ export declare function removeStackWorkspace({ stackVersionId, workspaceId, acco
2860
2860
  /**
2861
2861
  * List all workflows versions from a stack version
2862
2862
  */
2863
- export declare function listWorkflows({ stackVersionId, xWorkspaceId, displayName, $type, target, pageable }: {
2863
+ export declare function listWorkflows({ stackVersionId, xWorkspaceId, displayName, workflowSlug, $type, target, pageable }: {
2864
2864
  stackVersionId: string;
2865
2865
  xWorkspaceId?: string;
2866
2866
  displayName?: string;
2867
+ workflowSlug?: string;
2867
2868
  $type?: string;
2868
2869
  target?: string;
2869
2870
  pageable: Pageable;