@cqa-lib/cqa-ui 1.1.249 → 1.1.250

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 (21) hide show
  1. package/esm2020/lib/execution-screen/ai-action-step/ai-action-step.component.mjs +2 -2
  2. package/esm2020/lib/execution-screen/ai-agent-step/ai-agent-step.component.mjs +2 -2
  3. package/esm2020/lib/execution-screen/api-step/api-step.component.mjs +2 -2
  4. package/esm2020/lib/execution-screen/basic-step/basic-step.component.mjs +2 -2
  5. package/esm2020/lib/execution-screen/condition-step/condition-step.component.mjs +2 -2
  6. package/esm2020/lib/execution-screen/db-verification-step/db-verification-step.component.mjs +2 -2
  7. package/esm2020/lib/execution-screen/document-verification-step/document-verification-step.component.mjs +2 -2
  8. package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
  9. package/esm2020/lib/execution-screen/failed-step/failed-step.component.mjs +2 -2
  10. package/esm2020/lib/execution-screen/file-download-step/file-download-step.component.mjs +2 -2
  11. package/esm2020/lib/execution-screen/live-execution-step/live-execution-step.component.mjs +2 -2
  12. package/esm2020/lib/execution-screen/loop-step/loop-step.component.mjs +6 -6
  13. package/esm2020/lib/execution-screen/step-group/step-group.component.mjs +7 -7
  14. package/esm2020/lib/execution-screen/step-renderer/step-renderer.component.mjs +23 -23
  15. package/esm2020/lib/execution-screen/updated-failed-step/updated-failed-step.component.mjs +2 -2
  16. package/fesm2015/cqa-lib-cqa-ui.mjs +44 -44
  17. package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
  18. package/fesm2020/cqa-lib-cqa-ui.mjs +44 -44
  19. package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
  20. package/lib/execution-screen/execution-step.models.d.ts +12 -12
  21. package/package.json +1 -1
@@ -83,7 +83,7 @@ export interface SelfHealActionEvent {
83
83
  }
84
84
  export declare type SelfHealAction = 'accept' | 'reject' | 'modify-accept';
85
85
  export interface BasicStepConfig extends BaseStepConfig {
86
- type: 'basic';
86
+ displayType: 'basic';
87
87
  subSteps: SubStep[];
88
88
  selfHealAnalysis?: SelfHealAnalysisData;
89
89
  selfHealed?: boolean;
@@ -91,12 +91,12 @@ export interface BasicStepConfig extends BaseStepConfig {
91
91
  nestedSteps?: ExecutionStepConfig[];
92
92
  }
93
93
  export interface StepGroupConfig extends BaseStepConfig {
94
- type: 'step-group';
94
+ displayType: 'step-group';
95
95
  groupName: string;
96
96
  steps: ExecutionStepConfig[];
97
97
  }
98
98
  export interface LoopStepConfig extends BaseStepConfig {
99
- type: 'loop';
99
+ displayType: 'loop';
100
100
  loopType?: 'for' | 'while';
101
101
  iterations: LoopIteration[];
102
102
  selectedIterationId?: string;
@@ -107,13 +107,13 @@ export interface LoopStepConfig extends BaseStepConfig {
107
107
  iterationData?: any;
108
108
  }
109
109
  export interface ConditionStepConfig extends BaseStepConfig {
110
- type: 'condition';
110
+ displayType: 'condition';
111
111
  conditionText: string;
112
112
  branches: ConditionBranch[];
113
113
  nestedSteps?: ExecutionStepConfig[];
114
114
  }
115
115
  export interface FailedStepConfig extends BaseStepConfig {
116
- type: 'failed';
116
+ displayType: 'failed';
117
117
  subSteps: SubStep[];
118
118
  failureDetails: FailureDetails;
119
119
  reasoning?: string[];
@@ -129,7 +129,7 @@ export interface AIAgentAction {
129
129
  reasoning?: string;
130
130
  }
131
131
  export interface AIAgentStepConfig extends BaseStepConfig {
132
- type: 'ai-agent';
132
+ displayType: 'ai-agent';
133
133
  prompt: string;
134
134
  optimizedRun?: boolean;
135
135
  actionCount?: number;
@@ -137,7 +137,7 @@ export interface AIAgentStepConfig extends BaseStepConfig {
137
137
  selectedTab?: 'action-trace' | 'planner-timeline' | 'ai-reasoning';
138
138
  }
139
139
  export interface AIActionStepConfig extends BaseStepConfig {
140
- type: 'ai-action';
140
+ displayType: 'ai-action';
141
141
  actionCount?: number;
142
142
  actionName?: 'ai_text_verification' | 'ai_ask' | 'ai_document_ask' | 'ai_verify';
143
143
  actions: AIAgentAction[];
@@ -150,7 +150,7 @@ export interface ApiAssertion {
150
150
  actual: string;
151
151
  }
152
152
  export interface ApiStepConfig extends BaseStepConfig {
153
- type: 'api';
153
+ displayType: 'api';
154
154
  method: string;
155
155
  endpoint: string;
156
156
  statusCode: number;
@@ -163,7 +163,7 @@ export interface ApiStepConfig extends BaseStepConfig {
163
163
  initialActions?: SubStep[];
164
164
  }
165
165
  export interface FileDownloadStepConfig extends BaseStepConfig {
166
- type: 'file-download';
166
+ displayType: 'file-download';
167
167
  fileName: string;
168
168
  fileType: string;
169
169
  fileSize?: string;
@@ -183,7 +183,7 @@ export interface VerificationCheck {
183
183
  actual: string;
184
184
  }
185
185
  export interface DocumentVerificationStepConfig extends BaseStepConfig {
186
- type: 'document-verification';
186
+ displayType: 'document-verification';
187
187
  documentScreenshot?: string;
188
188
  extractedFields: ExtractedField[];
189
189
  verificationChecks: VerificationCheck[];
@@ -197,7 +197,7 @@ export interface LiveSubStep {
197
197
  remainingSeconds?: number | null;
198
198
  }
199
199
  export interface LiveExecutionStepConfig extends BaseStepConfig {
200
- type: 'live-execution';
200
+ displayType: 'live-execution';
201
201
  subSteps: LiveSubStep[];
202
202
  }
203
203
  export interface DbQueryResult {
@@ -225,7 +225,7 @@ export interface DbTestResult {
225
225
  allAssertionsPassed: boolean;
226
226
  }
227
227
  export interface DbVerificationStepConfig extends BaseStepConfig {
228
- type: 'db-verification';
228
+ displayType: 'db-verification';
229
229
  dbTestResult: DbTestResult;
230
230
  subSteps?: SubStep[];
231
231
  dbConfig?: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.249",
3
+ "version": "1.1.250",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",