@cqa-lib/cqa-ui 1.1.83 → 1.1.84
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/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +8 -3
- package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +8 -3
- package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +8 -3
- package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +8 -3
- package/esm2020/lib/execution-screen/failed-step/failed-step.component.mjs +1 -1
- package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +8 -3
- package/esm2020/lib/execution-screen/self-heal-analysis/self-heal-analysis.component.mjs +9 -3
- package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +5 -3
- package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +6 -2
- package/esm2020/lib/execution-screen/updated-failed-step/updated-failed-step.component.mjs +6 -3
- package/esm2020/lib/execution-screen/visual-comparison/visual-comparison.component.mjs +6 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +63 -20
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +63 -20
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/ai-agent-step/ai-agent-step.component.d.ts +6 -1
- package/lib/execution-screen/api-step/api-step.component.d.ts +6 -1
- package/lib/execution-screen/basic-step/basic-step.component.d.ts +6 -1
- package/lib/execution-screen/condition-step/condition-step.component.d.ts +6 -1
- package/lib/execution-screen/loop-step/loop-step.component.d.ts +6 -1
- package/lib/execution-screen/self-heal-analysis/self-heal-analysis.component.d.ts +3 -1
- package/lib/execution-screen/step-group/step-group.component.d.ts +2 -1
- package/lib/execution-screen/step-renderer/step-renderer.component.d.ts +2 -1
- package/lib/execution-screen/updated-failed-step/updated-failed-step.component.d.ts +2 -1
- package/lib/execution-screen/visual-comparison/visual-comparison.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -21,7 +21,12 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
|
|
|
21
21
|
reasoning?: string[];
|
|
22
22
|
confidence?: string;
|
|
23
23
|
isUploadingBaseline: {};
|
|
24
|
+
isMakingCurrentBaseline: {};
|
|
24
25
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
26
|
+
getSelfHealLoadingStatesHandler?: () => {
|
|
27
|
+
isLoadingAccept: boolean;
|
|
28
|
+
isLoadingModifyAccept: boolean;
|
|
29
|
+
};
|
|
25
30
|
isLive: boolean;
|
|
26
31
|
showFailedStepDetails: boolean;
|
|
27
32
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
@@ -57,5 +62,5 @@ export declare class AIAgentStepComponent extends BaseStepComponent implements O
|
|
|
57
62
|
get showViewMoreButton(): boolean;
|
|
58
63
|
toggleHeader(): void;
|
|
59
64
|
static ɵfac: i0.ɵɵFactoryDeclaration<AIAgentStepComponent, never>;
|
|
60
|
-
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"; "isUploadingBaseline": "isUploadingBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "isLive": "isLive"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
65
|
+
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"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; "isLive": "isLive"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
61
66
|
}
|
|
@@ -26,8 +26,13 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
|
|
|
26
26
|
reasoning?: string[];
|
|
27
27
|
confidence?: string;
|
|
28
28
|
isUploadingBaseline: {};
|
|
29
|
+
isMakingCurrentBaseline: {};
|
|
29
30
|
isLive: boolean;
|
|
30
31
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
32
|
+
getSelfHealLoadingStatesHandler?: () => {
|
|
33
|
+
isLoadingAccept: boolean;
|
|
34
|
+
isLoadingModifyAccept: boolean;
|
|
35
|
+
};
|
|
31
36
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
32
37
|
uploadBaseline: EventEmitter<uploadBaselineEvent>;
|
|
33
38
|
analyze: EventEmitter<void>;
|
|
@@ -68,5 +73,5 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
|
|
|
68
73
|
get hasSubSteps(): boolean;
|
|
69
74
|
private updateConfig;
|
|
70
75
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiStepComponent, never>;
|
|
71
|
-
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"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isLive": "isLive"; "selfHealAnalysis": "selfHealAnalysis"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
76
|
+
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"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "selfHealAnalysis": "selfHealAnalysis"; "getSelfHealLoadingStatesHandler": "getSelfHealLoadingStatesHandler"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
72
77
|
}
|
|
@@ -20,6 +20,7 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
20
20
|
reasoning?: string[];
|
|
21
21
|
confidence?: string;
|
|
22
22
|
isUploadingBaseline: {};
|
|
23
|
+
isMakingCurrentBaseline: {};
|
|
23
24
|
isLive: boolean;
|
|
24
25
|
nestedSteps?: ExecutionStepConfig[];
|
|
25
26
|
hasChild?: boolean;
|
|
@@ -35,6 +36,10 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
35
36
|
onAnalyzeHandler?: () => void;
|
|
36
37
|
onViewFullLogsHandler?: () => void;
|
|
37
38
|
onSelfHealActionHandler?: (event: any) => void;
|
|
39
|
+
getSelfHealLoadingStatesHandler?: () => {
|
|
40
|
+
isLoadingAccept: boolean;
|
|
41
|
+
isLoadingModifyAccept: boolean;
|
|
42
|
+
};
|
|
38
43
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
39
44
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
40
45
|
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -64,5 +69,5 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
64
69
|
toggle(): void;
|
|
65
70
|
toggleHeader(): void;
|
|
66
71
|
static ɵfac: i0.ɵɵFactoryDeclaration<BasicStepComponent, never>;
|
|
67
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isLive": "isLive"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
72
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "testStepResultId": "testStepResultId"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "nestedSteps": "nestedSteps"; "hasChild": "hasChild"; "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"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
68
73
|
}
|
|
@@ -34,6 +34,10 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
|
|
|
34
34
|
onAnalyzeHandler?: () => void;
|
|
35
35
|
onViewFullLogsHandler?: () => void;
|
|
36
36
|
onSelfHealActionHandler?: (event: any) => void;
|
|
37
|
+
getSelfHealLoadingStatesHandler?: () => {
|
|
38
|
+
isLoadingAccept: boolean;
|
|
39
|
+
isLoadingModifyAccept: boolean;
|
|
40
|
+
};
|
|
37
41
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
38
42
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
39
43
|
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -41,6 +45,7 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
|
|
|
41
45
|
onBranchClickEvent: EventEmitter<ConditionBranch>;
|
|
42
46
|
onExpand: EventEmitter<void>;
|
|
43
47
|
isUploadingBaseline: {};
|
|
48
|
+
isMakingCurrentBaseline: {};
|
|
44
49
|
isLive: boolean;
|
|
45
50
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
46
51
|
uploadBaseline: EventEmitter<uploadBaselineEvent>;
|
|
@@ -72,5 +77,5 @@ export declare class ConditionStepComponent extends BaseStepComponent implements
|
|
|
72
77
|
toggleHeader(): void;
|
|
73
78
|
get hasExpandableContent(): boolean;
|
|
74
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConditionStepComponent, never>;
|
|
75
|
-
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"; "ifChild": "ifChild"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isLive": "isLive"; }, { "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
80
|
+
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"; "ifChild": "ifChild"; "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"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "onBranchClickEvent": "onBranchClickEvent"; "onExpand": "onExpand"; "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; }, never, never>;
|
|
76
81
|
}
|
|
@@ -32,6 +32,10 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
|
|
|
32
32
|
onAnalyzeHandler?: () => void;
|
|
33
33
|
onViewFullLogsHandler?: () => void;
|
|
34
34
|
onSelfHealActionHandler?: (event: any) => void;
|
|
35
|
+
getSelfHealLoadingStatesHandler?: () => {
|
|
36
|
+
isLoadingAccept: boolean;
|
|
37
|
+
isLoadingModifyAccept: boolean;
|
|
38
|
+
};
|
|
35
39
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
36
40
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
37
41
|
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -40,6 +44,7 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
|
|
|
40
44
|
reasoning?: string[];
|
|
41
45
|
confidence?: string;
|
|
42
46
|
isUploadingBaseline: {};
|
|
47
|
+
isMakingCurrentBaseline: {};
|
|
43
48
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
44
49
|
iterationData?: any;
|
|
45
50
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
@@ -112,5 +117,5 @@ export declare class LoopStepComponent extends BaseStepComponent implements OnIn
|
|
|
112
117
|
getLoopDefaultIteration(step: ExecutionStepConfig): 'first' | 'last' | undefined;
|
|
113
118
|
getLoopShowViewAllIterations(step: ExecutionStepConfig): boolean | undefined;
|
|
114
119
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoopStepComponent, never>;
|
|
115
|
-
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"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "selfHealAnalysis": "selfHealAnalysis"; "iterationData": "iterationData"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; "selfHealAction": "selfHealAction"; "onExpand": "onExpand"; "onViewAllIterations": "onViewAllIterations"; "onIterationChange": "onIterationChange"; }, never, never>;
|
|
120
|
+
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"; "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"; "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>;
|
|
116
121
|
}
|
|
@@ -6,6 +6,8 @@ export declare class SelfHealAnalysisComponent implements OnInit {
|
|
|
6
6
|
healedLocator: string;
|
|
7
7
|
confidence: number;
|
|
8
8
|
healMethod: string;
|
|
9
|
+
isLoadingAccept: boolean;
|
|
10
|
+
isLoadingModifyAccept: boolean;
|
|
9
11
|
action: EventEmitter<{
|
|
10
12
|
type: SelfHealAction;
|
|
11
13
|
healedLocator: string;
|
|
@@ -16,5 +18,5 @@ export declare class SelfHealAnalysisComponent implements OnInit {
|
|
|
16
18
|
onReject(): void;
|
|
17
19
|
onModifyAccept(): void;
|
|
18
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<SelfHealAnalysisComponent, never>;
|
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelfHealAnalysisComponent, "cqa-self-heal-analysis", never, { "originalLocator": "originalLocator"; "healedLocator": "healedLocator"; "confidence": "confidence"; "healMethod": "healMethod"; }, { "action": "action"; }, never, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SelfHealAnalysisComponent, "cqa-self-heal-analysis", never, { "originalLocator": "originalLocator"; "healedLocator": "healedLocator"; "confidence": "confidence"; "healMethod": "healMethod"; "isLoadingAccept": "isLoadingAccept"; "isLoadingModifyAccept": "isLoadingModifyAccept"; }, { "action": "action"; }, never, never>;
|
|
20
22
|
}
|
|
@@ -32,6 +32,7 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
32
32
|
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
33
33
|
onViewAllIterationsHandler?: (step: ExecutionStepConfig) => void;
|
|
34
34
|
isUploadingBaseline?: any;
|
|
35
|
+
isMakingCurrentBaseline?: any;
|
|
35
36
|
isLive: boolean;
|
|
36
37
|
onExpand: EventEmitter<void>;
|
|
37
38
|
config: StepGroupConfig;
|
|
@@ -65,5 +66,5 @@ export declare class StepGroupComponent extends BaseStepComponent implements OnI
|
|
|
65
66
|
getLoopDefaultIteration(step: ExecutionStepConfig): 'first' | 'last' | undefined;
|
|
66
67
|
getLoopShowViewAllIterations(step: ExecutionStepConfig): boolean | undefined;
|
|
67
68
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepGroupComponent, never>;
|
|
68
|
-
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"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isLive": "isLive"; }, { "onExpand": "onExpand"; }, never, never>;
|
|
69
|
+
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"; "onExpandHandler": "onExpandHandler"; "getConditionBranchesHandler": "getConditionBranchesHandler"; "isStepLoadingHandler": "isStepLoadingHandler"; "isStepExpandedHandler": "isStepExpandedHandler"; "convertMsToSecondsHandler": "convertMsToSecondsHandler"; "formatFailureDetailsHandler": "formatFailureDetailsHandler"; "getSelfHealAnalysisHandler": "getSelfHealAnalysisHandler"; "onMakeCurrentBaselineHandler": "onMakeCurrentBaselineHandler"; "onUploadBaselineHandler": "onUploadBaselineHandler"; "onAnalyzeHandler": "onAnalyzeHandler"; "onViewFullLogsHandler": "onViewFullLogsHandler"; "onSelfHealActionHandler": "onSelfHealActionHandler"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "onExpand": "onExpand"; }, never, never>;
|
|
69
70
|
}
|
|
@@ -23,6 +23,7 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
|
|
|
23
23
|
onViewFullLogsHandler?: () => void;
|
|
24
24
|
onSelfHealActionHandler?: (event: any) => void;
|
|
25
25
|
isUploadingBaseline?: any;
|
|
26
|
+
isMakingCurrentBaseline?: any;
|
|
26
27
|
getLoopIterationsHandler?: (step: ExecutionStepConfig) => any[];
|
|
27
28
|
getApiAssertionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
28
29
|
formatActionsHandler?: (step: ExecutionStepConfig) => any[];
|
|
@@ -47,5 +48,5 @@ export declare class StepRendererComponent implements OnChanges, AfterViewInit,
|
|
|
47
48
|
private loadComponent;
|
|
48
49
|
ngDoCheck(): void;
|
|
49
50
|
static ɵfac: i0.ɵɵFactoryDeclaration<StepRendererComponent, never>;
|
|
50
|
-
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"; "isUploadingBaseline": "isUploadingBaseline"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "isLive": "isLive"; }, {}, never, never>;
|
|
51
|
+
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"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "getLoopIterationsHandler": "getLoopIterationsHandler"; "getApiAssertionsHandler": "getApiAssertionsHandler"; "formatActionsHandler": "formatActionsHandler"; "onViewAllIterationsHandler": "onViewAllIterationsHandler"; "isLive": "isLive"; }, {}, never, never>;
|
|
51
52
|
}
|
|
@@ -12,6 +12,7 @@ export declare class UpdatedFailedStepComponent extends BaseStepComponent implem
|
|
|
12
12
|
reasoning?: string[];
|
|
13
13
|
confidence?: string;
|
|
14
14
|
isUploadingBaseline: {};
|
|
15
|
+
isMakingCurrentBaseline: {};
|
|
15
16
|
isLive: boolean;
|
|
16
17
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
17
18
|
uploadBaseline: EventEmitter<uploadBaselineEvent>;
|
|
@@ -24,5 +25,5 @@ export declare class UpdatedFailedStepComponent extends BaseStepComponent implem
|
|
|
24
25
|
onAnalyze(): void;
|
|
25
26
|
onViewFullLogs(): void;
|
|
26
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<UpdatedFailedStepComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<UpdatedFailedStepComponent, "cqa-updated-failed-step", never, { "timingBreakdown": "timingBreakdown"; "testStepResultId": "testStepResultId"; "expanded": "expanded"; "subSteps": "subSteps"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isLive": "isLive"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; }, never, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UpdatedFailedStepComponent, "cqa-updated-failed-step", never, { "timingBreakdown": "timingBreakdown"; "testStepResultId": "testStepResultId"; "expanded": "expanded"; "subSteps": "subSteps"; "failureDetails": "failureDetails"; "reasoning": "reasoning"; "confidence": "confidence"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; }, never, never>;
|
|
28
29
|
}
|
|
@@ -15,6 +15,7 @@ export declare class VisualComparisonComponent {
|
|
|
15
15
|
logs?: LogEntry[];
|
|
16
16
|
showFullLogsLink?: boolean;
|
|
17
17
|
isUploadingBaseline: {};
|
|
18
|
+
isMakingCurrentBaseline: {};
|
|
18
19
|
isLive: boolean;
|
|
19
20
|
testStepResultId: string;
|
|
20
21
|
makeCurrentBaseline: EventEmitter<makeCurrentBaselineEvent>;
|
|
@@ -34,5 +35,5 @@ export declare class VisualComparisonComponent {
|
|
|
34
35
|
onImageClick(type: string): void;
|
|
35
36
|
onCloseModal(): void;
|
|
36
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<VisualComparisonComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VisualComparisonComponent, "cqa-visual-comparison", never, { "screenshots": "screenshots"; "logs": "logs"; "showFullLogsLink": "showFullLogsLink"; "isUploadingBaseline": "isUploadingBaseline"; "isLive": "isLive"; "testStepResultId": "testStepResultId"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; }, never, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VisualComparisonComponent, "cqa-visual-comparison", never, { "screenshots": "screenshots"; "logs": "logs"; "showFullLogsLink": "showFullLogsLink"; "isUploadingBaseline": "isUploadingBaseline"; "isMakingCurrentBaseline": "isMakingCurrentBaseline"; "isLive": "isLive"; "testStepResultId": "testStepResultId"; }, { "makeCurrentBaseline": "makeCurrentBaseline"; "uploadBaseline": "uploadBaseline"; "analyze": "analyze"; "viewFullLogs": "viewFullLogs"; }, never, never>;
|
|
38
39
|
}
|