@cqa-lib/cqa-ui 1.1.26 → 1.1.28
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 +3 -3
- package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +21 -3
- package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +19 -4
- package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
- package/esm2020/lib/execution-screen/failed-step/failed-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +3 -3
- package/esm2020/lib/execution-screen/updated-failed-step/updated-failed-step.component.mjs +3 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +372 -338
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +371 -338
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/api-step/api-step.component.d.ts +5 -1
- package/lib/execution-screen/basic-step/basic-step.component.d.ts +7 -2
- package/lib/execution-screen/execution-step.models.d.ts +2 -0
- package/package.json +1 -1
|
@@ -16,6 +16,8 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
|
|
|
16
16
|
responseTime: number;
|
|
17
17
|
requestBody?: any;
|
|
18
18
|
responseBody?: any;
|
|
19
|
+
requestHeaders?: any;
|
|
20
|
+
responseHeaders?: any;
|
|
19
21
|
assertions?: ApiAssertion[];
|
|
20
22
|
initialActions?: SubStep[];
|
|
21
23
|
config: ApiStepConfig;
|
|
@@ -27,6 +29,8 @@ export declare class ApiStepComponent extends BaseStepComponent implements OnIni
|
|
|
27
29
|
copyToClipboard(text: string): void;
|
|
28
30
|
copyRequestBody(): void;
|
|
29
31
|
copyResponseBody(): void;
|
|
32
|
+
copyRequestHeaders(): void;
|
|
33
|
+
copyResponseHeaders(): void;
|
|
30
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ApiStepComponent, never>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ApiStepComponent, "cqa-api-step", never, { "id": "id"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "method": "method"; "endpoint": "endpoint"; "statusCode": "statusCode"; "responseTime": "responseTime"; "requestBody": "requestBody"; "responseBody": "responseBody"; "assertions": "assertions"; "initialActions": "initialActions"; }, {}, never, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ApiStepComponent, "cqa-api-step", never, { "id": "id"; "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"; }, {}, never, never>;
|
|
32
36
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { BasicStepConfig, SelfHealAction, SubStep, StepStatus, TimingBreakdown, SelfHealAnalysisData } from '../execution-step.models';
|
|
2
|
+
import { BasicStepConfig, SelfHealAction, SubStep, StepStatus, TimingBreakdown, SelfHealAnalysisData, FailureDetails } from '../execution-step.models';
|
|
3
3
|
import { BaseStepComponent } from '../base-step.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class BasicStepComponent extends BaseStepComponent implements OnInit {
|
|
@@ -14,9 +14,14 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
14
14
|
selfHealAnalysis?: SelfHealAnalysisData;
|
|
15
15
|
selfHealed?: boolean;
|
|
16
16
|
selfHealDuration?: number;
|
|
17
|
+
failureDetails?: FailureDetails;
|
|
18
|
+
reasoning?: string[];
|
|
19
|
+
confidence?: string;
|
|
17
20
|
config: BasicStepConfig;
|
|
18
21
|
ngOnInit(): void;
|
|
19
22
|
get hasSubSteps(): boolean;
|
|
23
|
+
showFailedStepDetails: boolean;
|
|
24
|
+
onViewMoreFailedStepClick(expanded: boolean): void;
|
|
20
25
|
onSelfHealAction(event: {
|
|
21
26
|
type: SelfHealAction;
|
|
22
27
|
healedLocator: string;
|
|
@@ -25,5 +30,5 @@ export declare class BasicStepComponent extends BaseStepComponent implements OnI
|
|
|
25
30
|
onReject(healedLocator: string): void;
|
|
26
31
|
onModifyAccept(healedLocator: string): void;
|
|
27
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<BasicStepComponent, never>;
|
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "stepNumber": "stepNumber"; "title": "title"; "status": "status"; "duration": "duration"; "timingBreakdown": "timingBreakdown"; "expanded": "expanded"; "subSteps": "subSteps"; "selfHealAnalysis": "selfHealAnalysis"; "selfHealed": "selfHealed"; "selfHealDuration": "selfHealDuration"; }, {}, never, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BasicStepComponent, "cqa-basic-step", never, { "id": "id"; "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"; }, {}, never, never>;
|
|
29
34
|
}
|
|
@@ -124,6 +124,8 @@ export interface ApiStepConfig extends BaseStepConfig {
|
|
|
124
124
|
responseTime: number;
|
|
125
125
|
requestBody?: any;
|
|
126
126
|
responseBody?: any;
|
|
127
|
+
requestHeaders?: any;
|
|
128
|
+
responseHeaders?: any;
|
|
127
129
|
assertions?: ApiAssertion[];
|
|
128
130
|
initialActions?: SubStep[];
|
|
129
131
|
}
|