@cqa-lib/cqa-ui 1.1.196 → 1.1.198

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.
Files changed (31) hide show
  1. package/esm2020/lib/execution-screen/ai-action-step/ai-action-step.component.mjs +14 -3
  2. package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +14 -3
  3. package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +14 -3
  4. package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +18 -3
  5. package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +18 -3
  6. package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +14 -3
  7. package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +15 -4
  8. package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +14 -3
  9. package/esm2020/lib/execution-screen/live-execution-step/live-execution-step.component.mjs +15 -4
  10. package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +18 -3
  11. package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +18 -3
  12. package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +47 -2
  13. package/esm2020/lib/step-builder/step-builder-database/step-builder-database.component.mjs +41 -21
  14. package/fesm2015/cqa-lib-cqa-ui.mjs +247 -44
  15. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  16. package/fesm2020/cqa-lib-cqa-ui.mjs +245 -43
  17. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  18. package/lib/execution-screen/ai-action-step/ai-action-step.component.d.ts +4 -1
  19. package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +4 -1
  20. package/lib/execution-screen/api-step/api-step.component.d.ts +4 -1
  21. package/lib/execution-screen/basic-step/basic-step.component.d.ts +6 -1
  22. package/lib/execution-screen/condition-step/condition-step.component.d.ts +6 -1
  23. package/lib/execution-screen/db-verification-step/db-verification-step.component.d.ts +4 -1
  24. package/lib/execution-screen/document-verification-step/document-verification-step.component.d.ts +5 -2
  25. package/lib/execution-screen/file-download-step/file-download-step.component.d.ts +4 -1
  26. package/lib/execution-screen/live-execution-step/live-execution-step.component.d.ts +5 -2
  27. package/lib/execution-screen/loop-step/loop-step.component.d.ts +6 -1
  28. package/lib/execution-screen/step-group/step-group.component.d.ts +6 -1
  29. package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +4 -1
  30. package/lib/step-builder/step-builder-database/step-builder-database.component.d.ts +1 -0
  31. package/package.json +1 -1
@@ -19,7 +19,9 @@ export declare class AIActionStepComponent extends BaseStepComponent implements
19
19
  confidence?: string;
20
20
  stepDeleted?: boolean;
21
21
  isDebug?: boolean;
22
+ debugPointSet?: boolean;
22
23
  isUploadingBaseline: {};
24
+ debugPointChange: EventEmitter<boolean>;
23
25
  isMakingCurrentBaseline: {};
24
26
  selfHealAnalysis?: SelfHealAnalysisData;
25
27
  getSelfHealLoadingStatesHandler?: () => {
@@ -56,9 +58,10 @@ export declare class AIActionStepComponent extends BaseStepComponent implements
56
58
  onSelfHealAction(event: SelfHealActionEvent): void;
57
59
  trackByActionId(index: number, action: AIAgentAction): string;
58
60
  get showViewMoreButton(): boolean;
61
+ onDebugPointClick(event: Event): void;
59
62
  toggleHeader(event?: Event): void;
60
63
  getActionBadgeText(): string;
61
64
  onJumpToTimestamp(event: Event): void;
62
65
  static ɵfac: i0.ɵɵFactoryDeclaration<AIActionStepComponent, never>;
63
- static ɵcmp: i0.ɵɵComponentDeclaration<AIActionStepComponent, "cqa-ai-action-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "actionCount": "actionCount"; "actions": "actions"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
66
+ static ɵcmp: i0.ɵɵComponentDeclaration<AIActionStepComponent, "cqa-ai-action-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "actionCount": "actionCount"; "actions": "actions"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
64
67
  }
@@ -22,6 +22,8 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
22
22
  confidence?: string;
23
23
  stepDeleted?: boolean;
24
24
  isDebug?: boolean;
25
+ debugPointSet?: boolean;
26
+ debugPointChange: EventEmitter<boolean>;
25
27
  isUploadingBaseline: {};
26
28
  isMakingCurrentBaseline: {};
27
29
  selfHealAnalysis?: SelfHealAnalysisData;
@@ -64,8 +66,9 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
64
66
  onSelfHealAction(event: SelfHealActionEvent): void;
65
67
  trackByActionId(index: number, action: AIAgentAction): string;
66
68
  get showViewMoreButton(): boolean;
69
+ onDebugPointClick(event: Event): void;
67
70
  toggleHeader(event?: Event): void;
68
71
  onJumpToTimestamp(event: Event): void;
69
72
  static ɵfac: i0.ɵɵFactoryDeclaration<AIAgentStepComponent, never>;
70
- static ɵcmp: i0.ɵɵComponentDeclaration<AIAgentStepComponent, "cqa-ai-agent-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "prompt": "prompt"; "optimizedRun": "optimizedRun"; "actionCount": "actionCount"; "actions": "actions"; "selectedTabInput": "selectedTabInput"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
73
+ static ɵcmp: i0.ɵɵComponentDeclaration<AIAgentStepComponent, "cqa-ai-agent-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "prompt": "prompt"; "optimizedRun": "optimizedRun"; "actionCount": "actionCount"; "actions": "actions"; "selectedTabInput": "selectedTabInput"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
71
74
  }
@@ -23,6 +23,8 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
23
23
  assertions?: ApiAssertion[];
24
24
  initialActions?: SubStep[];
25
25
  isDebug?: boolean;
26
+ debugPointSet?: boolean;
27
+ debugPointChange: EventEmitter<boolean>;
26
28
  failureDetails?: FailureDetails;
27
29
  reasoning?: string[];
28
30
  confidence?: string;
@@ -98,6 +100,7 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
98
100
  onViewFullLogs(): void;
99
101
  onSelfHealAction(event: SelfHealActionEvent): void;
100
102
  get showViewMoreButton(): boolean;
103
+ onDebugPointClick(event: Event): void;
101
104
  toggleHeader(event?: Event): void;
102
105
  toggle(): void;
103
106
  private autoExpand;
@@ -106,5 +109,5 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
106
109
  ngOnDestroy(): void;
107
110
  onJumpToTimestamp(event: Event): void;
108
111
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiStepComponent, never>;
109
- static ɵcmp: i0.ɵɵComponentDeclaration<ApiStepComponent, "cqa-api-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "method": "method"; "endpoint": "endpoint"; "statusCode": "statusCode"; "responseTime": "responseTime"; "requestBody": "requestBody"; "responseBody": "responseBody"; "requestHeaders": "requestHeaders"; "responseHeaders": "responseHeaders"; "assertions": "assertions"; "initialActions": "initialActions"; "isDebug": "isDebug"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "jsonPathCopied": "jsonPathCopied"; }, never, never>;
112
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApiStepComponent, "cqa-api-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "method": "method"; "endpoint": "endpoint"; "statusCode": "statusCode"; "responseTime": "responseTime"; "requestBody": "requestBody"; "responseBody": "responseBody"; "requestHeaders": "requestHeaders"; "responseHeaders": "responseHeaders"; "assertions": "assertions"; "initialActions": "initialActions"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "jsonPathCopied": "jsonPathCopied"; }, never, never>;
110
113
  }
@@ -10,7 +10,11 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
10
10
  title: string;
11
11
  status: StepStatus;
12
12
  isDebug?: boolean;
13
+ debugPointSet?: boolean;
14
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
15
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
13
16
  duration: number;
17
+ debugPointChange: EventEmitter<boolean>;
14
18
  timingBreakdown?: TimingBreakdown;
15
19
  expanded?: boolean;
16
20
  subSteps: SubStep[];
@@ -95,9 +99,10 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
95
99
  toggle(): void;
96
100
  isNestedStepLoading(step: ExecutionStepConfig): boolean;
97
101
  markStepLoaded(step: ExecutionStepConfig): void;
102
+ onDebugPointClick(event: Event): void;
98
103
  toggleHeader(event?: Event): void;
99
104
  isStepLoading(): boolean;
100
105
  onJumpToTimestamp(event: Event): void;
101
106
  static ɵfac: i0.ɵɵFactoryDeclaration<BasicStepComponent, never>;
102
- static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
107
+ static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
103
108
  }
@@ -24,6 +24,10 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
24
24
  hasChild?: boolean;
25
25
  stepDeleted?: boolean;
26
26
  isDebug?: boolean;
27
+ debugPointSet?: boolean;
28
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
29
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
30
+ debugPointChange: EventEmitter<boolean>;
27
31
  ifChild?: any;
28
32
  activeBranchStepId?: string | number;
29
33
  onExpandHandler?: (step: ExecutionStepConfig) => void;
@@ -104,6 +108,7 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
104
108
  onViewFullLogs(): void;
105
109
  onSelfHealAction(event: SelfHealActionEvent): void;
106
110
  get showViewMoreButton(): boolean;
111
+ onDebugPointClick(event: Event): void;
107
112
  toggleHeader(event?: Event): void;
108
113
  get hasExpandableContent(): boolean;
109
114
  private determineActiveBranch;
@@ -115,5 +120,5 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
115
120
  private hasAnyExecutedBranch;
116
121
  onJumpToTimestamp(event: Event): void;
117
122
  static ɵfac: i0.ɵɵFactoryDeclaration<ConditionStepComponent, never>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<ConditionStepComponent, "cqa-condition-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "conditionText": "conditionText"; "branches": "branches"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "selfHealAnalysis": "selfHealAnalysis"; "isLoading": "isLoading"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "ifChild": "ifChild"; "activeBranchStepId": "activeBranchStepId"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
123
+ static ɵcmp: i0.ɵɵComponentDeclaration<ConditionStepComponent, "cqa-condition-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "conditionText": "conditionText"; "branches": "branches"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "selfHealAnalysis": "selfHealAnalysis"; "isLoading": "isLoading"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "ifChild": "ifChild"; "activeBranchStepId": "activeBranchStepId"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "debugPointChange": "debugPointChange"; "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
119
124
  }
@@ -20,6 +20,8 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
20
20
  dbType: string;
21
21
  };
22
22
  isDebug?: boolean;
23
+ debugPointSet?: boolean;
24
+ debugPointChange: EventEmitter<boolean>;
23
25
  failureDetails?: FailureDetails;
24
26
  reasoning?: string[];
25
27
  confidence?: string;
@@ -69,6 +71,7 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
69
71
  getStatus(): StepStatus;
70
72
  ngOnChanges(changes: SimpleChanges): void;
71
73
  private updateConfig;
74
+ onDebugPointClick(event: Event): void;
72
75
  toggleHeader(event?: Event): void;
73
76
  private updateCachedQueryResults;
74
77
  getQueryResults(): Array<{
@@ -107,5 +110,5 @@ export declare class DbVerificationStepComponent extends BaseStepComponent imple
107
110
  onSelfHealAction(event: SelfHealActionEvent): void;
108
111
  onJumpToTimestamp(event: Event): void;
109
112
  static ɵfac: i0.ɵɵFactoryDeclaration<DbVerificationStepComponent, never>;
110
- static ɵcmp: i0.ɵɵComponentDeclaration<DbVerificationStepComponent, "cqa-db-verification-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "dbTestResult": "dbTestResult"; "dbConfig": "dbConfig"; "isDebug": "isDebug"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "isLive": "isLive"; "step": "step"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbVerificationStepComponent, "cqa-db-verification-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "dbTestResult": "dbTestResult"; "dbConfig": "dbConfig"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "stepDeleted": "stepDeleted"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "onStepClickHandler": "onStepClickHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
111
114
  }
@@ -1,4 +1,4 @@
1
- import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { DocumentVerificationStepConfig, ExtractedField, VerificationCheck, StepStatus, TimingBreakdown } from '../execution-step.models';
3
3
  import { BaseStepComponent } from '../base-step.component';
4
4
  import * as i0 from "@angular/core";
@@ -16,11 +16,14 @@ export declare class DocumentVerificationStepComponent extends BaseStepComponent
16
16
  step?: any;
17
17
  jumpToTimestampHandler?: (timestamp: number, testStepId?: number | string) => void;
18
18
  isDebug?: boolean;
19
+ debugPointSet?: boolean;
20
+ debugPointChange: EventEmitter<boolean>;
19
21
  config: DocumentVerificationStepConfig;
20
22
  ngOnInit(): void;
21
23
  ngOnChanges(changes: SimpleChanges): void;
24
+ onDebugPointClick(event: Event): void;
22
25
  copyToClipboard(text: string): void;
23
26
  onJumpToTimestamp(event: Event): void;
24
27
  static ɵfac: i0.ɵɵFactoryDeclaration<DocumentVerificationStepComponent, never>;
25
- static ɵcmp: i0.ɵɵComponentDeclaration<DocumentVerificationStepComponent, "cqa-document-verification-step", never, { "id": "id"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "documentScreenshot": "documentScreenshot"; "extractedFields": "extractedFields"; "verificationChecks": "verificationChecks"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; }, {}, never, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<DocumentVerificationStepComponent, "cqa-document-verification-step", never, { "id": "id"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "documentScreenshot": "documentScreenshot"; "extractedFields": "extractedFields"; "verificationChecks": "verificationChecks"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; }, { "debugPointChange": "debugPointChange"; }, never, never>;
26
29
  }
@@ -21,6 +21,8 @@ export declare class FileDownloadStepComponent extends BaseStepComponent impleme
21
21
  step?: any;
22
22
  jumpToTimestampHandler?: (timestamp: number, testStepId?: number | string) => void;
23
23
  isDebug?: boolean;
24
+ debugPointSet?: boolean;
25
+ debugPointChange: EventEmitter<boolean>;
24
26
  download: EventEmitter<{
25
27
  fileName: string;
26
28
  filePath?: string;
@@ -41,6 +43,7 @@ export declare class FileDownloadStepComponent extends BaseStepComponent impleme
41
43
  ngOnInit(): void;
42
44
  ngOnChanges(changes: SimpleChanges): void;
43
45
  private updateConfigFromInputs;
46
+ onDebugPointClick(event: Event): void;
44
47
  getFileTypeBadgeClass(): string;
45
48
  onDownload(): void;
46
49
  copyToClipboard(text: string): void;
@@ -48,5 +51,5 @@ export declare class FileDownloadStepComponent extends BaseStepComponent impleme
48
51
  ngOnDestroy(): void;
49
52
  onJumpToTimestamp(event: Event): void;
50
53
  static ɵfac: i0.ɵɵFactoryDeclaration<FileDownloadStepComponent, never>;
51
- static ɵcmp: i0.ɵɵComponentDeclaration<FileDownloadStepComponent, "cqa-file-download-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "fileName": "fileName"; "fileType": "fileType"; "fileSize": "fileSize"; "filePath": "filePath"; "downloaded": "downloaded"; "stepDeleted": "stepDeleted"; "isDownloading": "isDownloading"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; }, { "download": "download"; "filePathCopied": "filePathCopied"; "textCopied": "textCopied"; }, never, never>;
54
+ static ɵcmp: i0.ɵɵComponentDeclaration<FileDownloadStepComponent, "cqa-file-download-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "fileName": "fileName"; "fileType": "fileType"; "fileSize": "fileSize"; "filePath": "filePath"; "downloaded": "downloaded"; "stepDeleted": "stepDeleted"; "isDownloading": "isDownloading"; "step": "step"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; }, { "debugPointChange": "debugPointChange"; "download": "download"; "filePathCopied": "filePathCopied"; "textCopied": "textCopied"; }, never, never>;
52
55
  }
@@ -1,4 +1,4 @@
1
- import { OnInit, OnChanges, SimpleChanges } from '@angular/core';
1
+ import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
2
2
  import { StepStatus, LiveSubStep, LiveExecutionStepConfig } from '../execution-step.models';
3
3
  import { BaseStepComponent } from '../base-step.component';
4
4
  import * as i0 from "@angular/core";
@@ -9,6 +9,8 @@ export declare class LiveExecutionStepComponent extends BaseStepComponent implem
9
9
  title: string;
10
10
  status: StepStatus;
11
11
  isDebug?: boolean;
12
+ debugPointSet?: boolean;
13
+ debugPointChange: EventEmitter<boolean>;
12
14
  duration: number;
13
15
  expanded?: boolean;
14
16
  subSteps: LiveSubStep[];
@@ -18,10 +20,11 @@ export declare class LiveExecutionStepComponent extends BaseStepComponent implem
18
20
  private userManuallyClosed;
19
21
  ngOnInit(): void;
20
22
  ngOnChanges(changes: SimpleChanges): void;
23
+ onDebugPointClick(event: Event): void;
21
24
  toggle(): void;
22
25
  private autoExpand;
23
26
  get hasSubSteps(): boolean;
24
27
  trackBySubStepId(index: number, subStep: LiveSubStep): string;
25
28
  static ɵfac: i0.ɵɵFactoryDeclaration<LiveExecutionStepComponent, never>;
26
- static ɵcmp: i0.ɵɵComponentDeclaration<LiveExecutionStepComponent, "cqa-live-execution-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "duration": "duration"; "expanded": "expanded"; "subSteps": "subSteps"; "stepDeleted": "stepDeleted"; }, {}, never, never>;
29
+ static ɵcmp: i0.ɵɵComponentDeclaration<LiveExecutionStepComponent, "cqa-live-execution-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "duration": "duration"; "expanded": "expanded"; "subSteps": "subSteps"; "stepDeleted": "stepDeleted"; }, { "debugPointChange": "debugPointChange"; }, never, never>;
27
30
  }
@@ -23,6 +23,10 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
23
23
  isLoading?: boolean;
24
24
  stepDeleted?: boolean;
25
25
  isDebug?: boolean;
26
+ debugPointSet?: boolean;
27
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
28
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
29
+ debugPointChange: EventEmitter<boolean>;
26
30
  onExpandHandler?: (step: ExecutionStepConfig) => void;
27
31
  getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
28
32
  onConditionBranchClickHandler?: (step: any, branch: any) => void;
@@ -113,6 +117,7 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
113
117
  onViewFullLogs(): void;
114
118
  onSelfHealAction(event: SelfHealActionEvent): void;
115
119
  get showViewMoreButton(): boolean;
120
+ onDebugPointClick(event: Event): void;
116
121
  toggleHeader(event?: Event): void;
117
122
  isNestedStepGroupWithChildren(step: ExecutionStepConfig): boolean;
118
123
  getGroupName(step: ExecutionStepConfig): string;
@@ -146,5 +151,5 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
146
151
  isStepLoading(): boolean;
147
152
  onJumpToTimestamp(event: Event): void;
148
153
  static ɵfac: i0.ɵɵFactoryDeclaration<LoopStepComponent, never>;
149
- static ɵcmp: i0.ɵɵComponentDeclaration<LoopStepComponent, "cqa-loop-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "loopType": "loopType"; "iterations": "iterations"; "selectedIterationId": "selectedIterationId"; "defaultIteration": "defaultIteration"; "nestedSteps": "nestedSteps"; "showViewAllIterations": "showViewAllIterations"; "hasChild": "hasChild"; "isLive": "isLive"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "iterationData": "iterationData"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
154
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoopStepComponent, "cqa-loop-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "loopType": "loopType"; "iterations": "iterations"; "selectedIterationId": "selectedIterationId"; "defaultIteration": "defaultIteration"; "nestedSteps": "nestedSteps"; "showViewAllIterations": "showViewAllIterations"; "hasChild": "hasChild"; "isLive": "isLive"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "step": "step"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "iterationData": "iterationData"; }, { "debugPointChange": "debugPointChange"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
150
155
  }
@@ -18,6 +18,10 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
18
18
  isLoading?: boolean;
19
19
  stepDeleted?: boolean;
20
20
  isDebug?: boolean;
21
+ debugPointSet?: boolean;
22
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
23
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
24
+ debugPointChange: EventEmitter<boolean>;
21
25
  onExpandHandler?: (step: ExecutionStepConfig) => void;
22
26
  getConditionBranchesHandler?: (step: ExecutionStepConfig) => ConditionBranch[];
23
27
  onConditionBranchClickHandler?: (step: any, branch: any) => void;
@@ -75,6 +79,7 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
75
79
  ngOnInit(): void;
76
80
  ngOnChanges(changes: SimpleChanges): void;
77
81
  private updateConfig;
82
+ onDebugPointClick(event: Event): void;
78
83
  toggle(event?: Event): void;
79
84
  isNestedStepLoading(step: ExecutionStepConfig): boolean;
80
85
  markStepLoaded(step: ExecutionStepConfig): void;
@@ -105,5 +110,5 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
105
110
  isStepLoading(): boolean;
106
111
  onJumpToTimestamp(event: Event): void;
107
112
  static ɵfac: i0.ɵɵFactoryDeclaration<StepGroupComponent, never>;
108
- static ɵcmp: i0.ɵɵComponentDeclaration<StepGroupComponent, "cqa-step-group", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "groupName": "groupName"; "steps": "steps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "step": "step"; }, { "onExpand": "onExpand"; }, never, never>;
113
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepGroupComponent, "cqa-step-group", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "groupName": "groupName"; "steps": "steps"; "hasChild": "hasChild"; "isLoading": "isLoading"; "stepDeleted": "stepDeleted"; "isDebug": "isDebug"; "debugPointSet": "debugPointSet"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "step": "step"; }, { "debugPointChange": "debugPointChange"; "onExpand": "onExpand"; }, never, never>;
109
114
  }
@@ -61,6 +61,9 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
61
61
  downloadingStepId: string | null;
62
62
  container: ViewContainerRef;
63
63
  isLive: boolean;
64
+ isDebug?: boolean;
65
+ getDebugPointSetHandler?: (step: ExecutionStepConfig) => boolean;
66
+ onDebugPointChangeHandler?: (step: ExecutionStepConfig, value: boolean) => void;
64
67
  stepNumber?: string;
65
68
  componentReady: EventEmitter<void>;
66
69
  /** Effective type for component lookup: 'file-download' when testStepType === 'generateDocument'. */
@@ -94,5 +97,5 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
94
97
  private loadComponent;
95
98
  ngDoCheck(): void;
96
99
  static ɵfac: i0.ɵɵFactoryDeclaration<StepRendererComponent, never>;
97
- static ɵcmp: i0.ɵɵComponentDeclaration<StepRendererComponent, "cqa-step-renderer", never, { "step": "step"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selectedIterationId": "selectedIterationId"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isLive": "isLive"; "stepNumber": "stepNumber"; }, { "componentReady": "componentReady"; }, never, never>;
100
+ static ɵcmp: i0.ɵɵComponentDeclaration<StepRendererComponent, "cqa-step-renderer", never, { "step": "step"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selectedIterationId": "selectedIterationId"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "onConditionBranchClickHandler": "onConditionBranchClickHandler"; "onStepClickHandler": "onStepClickHandler"; "onJsonPathCopiedHandler": "onJsonPathCopiedHandler"; "onDownloadHandler": "onDownloadHandler"; "onFilePathCopiedHandler": "onFilePathCopiedHandler"; "onTextCopiedHandler": "onTextCopiedHandler"; "jumpToTimestampHandler": "jumpToTimestampHandler"; "downloadingStepId": "downloadingStepId"; "isLive": "isLive"; "isDebug": "isDebug"; "getDebugPointSetHandler": "getDebugPointSetHandler"; "onDebugPointChangeHandler": "onDebugPointChangeHandler"; "stepNumber": "stepNumber"; }, { "componentReady": "componentReady"; }, never, never>;
98
101
  }
@@ -84,6 +84,7 @@ export declare class StepBuilderDatabaseComponent implements OnInit, OnChanges,
84
84
  onTabChange(tab: 'output' | 'verification'): void;
85
85
  onCopyResults(): void;
86
86
  onCancel(): void;
87
+ isFormValid(): boolean;
87
88
  onCreateStep(): void;
88
89
  getTableColumns(): string[];
89
90
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.196",
3
+ "version": "1.1.198",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",