mattermost-mobile/types/api/files.d.ts
Mattermost Build 8468d81936
Add post props validation (#8323) (#8383)
* Validate props

* Add calls changes and fix attachments

* Address feedback

(cherry picked from commit 732b17a75c)

Co-authored-by: Daniel Espino García <larkox@gmail.com>
2024-11-28 17:15:02 +02:00

42 lines
914 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
type FileInfo = {
id?: string;
bytesRead?: number;
channel_id?: string;
clientId?: string;
create_at?: number;
delete_at?: number;
extension: string;
failed?: boolean;
has_preview_image: boolean;
height: number;
localPath?: string;
mime_type: string;
mini_preview?: string;
name: string;
post_id?: string;
size: number;
update_at?: number;
uri?: string;
user_id: string;
width: number;
postProps?: Record<string, unknown>;
};
type FilesState = {
files: Dictionary<FileInfo>;
fileIdsByPostId: Dictionary<string[]>;
filePublicLink?: string;
};
type FileUploadResponse = {
file_infos: FileInfo[];
client_ids: string[];
};
type FileSearchParams = {
terms: string;
is_or_search: boolean;
};