@gravitee/ui-policy-studio-angular 14.0.0 → 14.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gravitee/ui-policy-studio-angular",
3
- "version": "14.0.0",
3
+ "version": "14.1.0",
4
4
  "description": "Gravitee.io - UI Policy Studio Angular",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,4 +25,5 @@ export declare class GioPolicyStudioFlowsMenuHarness extends ComponentHarness {
25
25
  addFlow(groupName: string | RegExp): Promise<void>;
26
26
  isReadOnly(): Promise<boolean>;
27
27
  openFlowExecutionConfig(): Promise<void>;
28
+ clickDuplicateFlowBtn(flowText: string | RegExp): Promise<void>;
28
29
  }
@@ -31,6 +31,12 @@ export declare class GioPolicyStudioHarness extends ComponentHarness {
31
31
  * Enable or disable a flow
32
32
  */
33
33
  enableDisableFlow(flowName: string): Promise<void>;
34
+ /**
35
+ * Duplicate a flow
36
+ *
37
+ * @param flowName Flow name to clone
38
+ */
39
+ duplicateFlow(flowName: string): Promise<void>;
34
40
  /**
35
41
  * Select a flow in the menu
36
42
  *