เพิ่ม type
This commit is contained in:
parent
fe256161a5
commit
dd097979d8
1 changed files with 27 additions and 2 deletions
|
|
@ -1,8 +1,33 @@
|
||||||
interface DataBackup {
|
interface DataBackup {
|
||||||
id: string;
|
id: string;
|
||||||
name: string;
|
name: string;
|
||||||
createAt: Date;
|
timestamp: Date;
|
||||||
status: string;
|
status: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type { DataBackup };
|
interface BackUpRunning {
|
||||||
|
type: string;
|
||||||
|
workspace_id: string;
|
||||||
|
id: string;
|
||||||
|
created_by: string;
|
||||||
|
created_at: Date;
|
||||||
|
started_at: Date;
|
||||||
|
scheduled_for: Date;
|
||||||
|
running: boolean;
|
||||||
|
script_hash: string;
|
||||||
|
script_path: string;
|
||||||
|
args: any;
|
||||||
|
canceled: boolean;
|
||||||
|
job_kind: string;
|
||||||
|
permissioned_as: string;
|
||||||
|
is_flow_step: boolean;
|
||||||
|
language: string;
|
||||||
|
same_worker: boolean;
|
||||||
|
email: string;
|
||||||
|
visible_to_owner: boolean;
|
||||||
|
suspend: number;
|
||||||
|
mem_peak: number;
|
||||||
|
tag: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export type { DataBackup, BackUpRunning };
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue