update interface
This commit is contained in:
@@ -1,10 +1,15 @@
|
|||||||
export interface File {
|
export interface File {
|
||||||
|
object: string; // "file_object" or "list" in the provided JSON
|
||||||
attributes: {
|
attributes: {
|
||||||
name: string;
|
name: string;
|
||||||
modified_at: string;
|
mode: string; // e.g., "-rw-r--r--"
|
||||||
|
mode_bits: string; // e.g., "644"
|
||||||
size: number;
|
size: number;
|
||||||
is_file: boolean;
|
is_file: boolean;
|
||||||
directory: string;
|
is_symlink: boolean;
|
||||||
|
mimetype: string; // e.g., "application/json"
|
||||||
|
created_at: string; // e.g., "2024-08-29T22:31:59+00:00"
|
||||||
|
modified_at: string; // e.g., "2024-08-29T22:31:59+00:00"
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user