@cqa-lib/cqa-ui 1.1.173 → 1.1.174
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-action-step/ai-action-step.component.mjs +3 -1
- package/esm2020/lib/execution-screen/execution-step.models.mjs +1 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +2 -0
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +2 -0
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/execution-screen/execution-step.models.d.ts +1 -1
- package/package.json +1 -1
|
@@ -134,7 +134,7 @@ export interface AIAgentStepConfig extends BaseStepConfig {
|
|
|
134
134
|
export interface AIActionStepConfig extends BaseStepConfig {
|
|
135
135
|
type: 'ai-action';
|
|
136
136
|
actionCount?: number;
|
|
137
|
-
actionName?: 'ai_text_verification' | 'ai_ask' | 'ai_document_ask';
|
|
137
|
+
actionName?: 'ai_text_verification' | 'ai_ask' | 'ai_document_ask' | 'ai_verify';
|
|
138
138
|
actions: AIAgentAction[];
|
|
139
139
|
}
|
|
140
140
|
export interface ApiAssertion {
|