feat: add parameter preprocessing audit trail
This commit is contained in:
@@ -829,6 +829,24 @@ export interface GatewayTask {
|
||||
updatedAt: string;
|
||||
}
|
||||
|
||||
export interface GatewayTaskParamPreprocessingLog {
|
||||
id: string;
|
||||
taskId: string;
|
||||
attemptId?: string;
|
||||
attemptNo?: number;
|
||||
modelType?: string;
|
||||
platformId?: string;
|
||||
platformModelId?: string;
|
||||
clientId?: string;
|
||||
changed: boolean;
|
||||
changeCount: number;
|
||||
actualInput?: Record<string, unknown>;
|
||||
convertedOutput?: Record<string, unknown>;
|
||||
changes?: Array<Record<string, unknown>>;
|
||||
model?: Record<string, unknown>;
|
||||
createdAt: string;
|
||||
}
|
||||
|
||||
export interface GatewayTaskAttempt {
|
||||
id: string;
|
||||
taskId: string;
|
||||
|
||||
Reference in New Issue
Block a user