update
This commit is contained in:
@@ -293,4 +293,11 @@ export interface SftpDecompressErrorPayload {
|
||||
error: string;
|
||||
details?: string; // Stderr output or specific error details
|
||||
requestId: string;
|
||||
}
|
||||
// S -> C: SFTP Upload Progress (New)
|
||||
export interface SftpUploadProgressPayload {
|
||||
uploadId: string; // To correlate with the specific upload
|
||||
bytesWritten: number;
|
||||
totalSize: number;
|
||||
progress: number; // Calculated percentage (0-100)
|
||||
}
|
||||
Reference in New Issue
Block a user