Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions src/api/generated/Api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13604,6 +13604,19 @@ export class Api<
* @min 0
*/
errorCount: number;
/** Detailed test statistics for this run */
testStatistics: {
/**
* Total number of individual test assertions that passed across all conversations
* @min 0
*/
passedTests: number;
/**
* Total number of individual test assertions that failed across all conversations
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -13697,6 +13710,19 @@ export class Api<
* @min 0
*/
errorCount: number;
/** Detailed test statistics for this run */
testStatistics: {
/**
* Total number of individual test assertions that passed across all conversations
* @min 0
*/
passedTests: number;
/**
* Total number of individual test assertions that failed across all conversations
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -13775,6 +13801,19 @@ export class Api<
* @min 0
*/
errorCount: number;
/** Detailed test statistics for this run */
testStatistics: {
/**
* Total number of individual test assertions that passed across all conversations
* @min 0
*/
passedTests: number;
/**
* Total number of individual test assertions that failed across all conversations
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -13853,6 +13892,19 @@ export class Api<
* @min 0
*/
errorCount: number;
/** Detailed test statistics for this run */
testStatistics: {
/**
* Total number of individual test assertions that passed across all conversations
* @min 0
*/
passedTests: number;
/**
* Total number of individual test assertions that failed across all conversations
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -14013,6 +14065,19 @@ export class Api<
dataExtractionResults: Record<string, any>;
/** Post-processed data transformation results */
dataTransformationResults: Record<string, any>;
/** Detailed test statistics for this conversation */
testStatistics: {
/**
* Number of individual test assertions that passed
* @min 0
*/
passedTests: number;
/**
* Number of individual test assertions that failed
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -14104,6 +14169,19 @@ export class Api<
dataExtractionResults: Record<string, any>;
/** Post-processed data transformation results */
dataTransformationResults: Record<string, any>;
/** Detailed test statistics for this conversation */
testStatistics: {
/**
* Number of individual test assertions that passed
* @min 0
*/
passedTests: number;
/**
* Number of individual test assertions that failed
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down
52 changes: 52 additions & 0 deletions src/api/generated/data-contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9028,6 +9028,19 @@ export interface ScenarioRunResponse {
* @min 0
*/
errorCount: number;
/** Detailed test statistics for this run */
testStatistics: {
/**
* Total number of individual test assertions that passed across all conversations
* @min 0
*/
passedTests: number;
/**
* Total number of individual test assertions that failed across all conversations
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -9066,6 +9079,19 @@ export interface ScenarioRunListResponse {
* @min 0
*/
errorCount: number;
/** Detailed test statistics for this run */
testStatistics: {
/**
* Total number of individual test assertions that passed across all conversations
* @min 0
*/
passedTests: number;
/**
* Total number of individual test assertions that failed across all conversations
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -9134,6 +9160,19 @@ export interface ScenarioConversationResponse {
dataExtractionResults: Record<string, any>;
/** Post-processed data transformation results */
dataTransformationResults: Record<string, any>;
/** Detailed test statistics for this conversation */
testStatistics: {
/**
* Number of individual test assertions that passed
* @min 0
*/
passedTests: number;
/**
* Number of individual test assertions that failed
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down Expand Up @@ -9185,6 +9224,19 @@ export interface ScenarioConversationListResponse {
dataExtractionResults: Record<string, any>;
/** Post-processed data transformation results */
dataTransformationResults: Record<string, any>;
/** Detailed test statistics for this conversation */
testStatistics: {
/**
* Number of individual test assertions that passed
* @min 0
*/
passedTests: number;
/**
* Number of individual test assertions that failed
* @min 0
*/
failedTests: number;
} | null;
/** Additional metadata */
metadata: Record<string, any>;
/** Version number for optimistic locking */
Expand Down
Loading
Loading