-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.ts
65 lines (59 loc) · 1.69 KB
/
types.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* -------------------------------------------------------------------------- */
/* MAIN */
/* -------------------------------------------------------------------------- */
export interface VoiceNotesPluginSettings {
token?: string;
username?: string;
password?: string;
automaticSync: boolean;
syncTimeout?: number;
downloadAudio?: boolean;
downloadAttachment?: boolean;
syncDirectory: string;
deleteSynced: boolean;
reallyDeleteSynced: boolean;
todoTag: string;
filenameDateFormat: string;
frontmatterTemplate: string;
noteTemplate: string;
filenameTemplate: string;
excludeTags: string[];
dateFormat: string;
}
export interface UserSettings {
about: string | null;
language: string | null;
remember_words: string | null;
fix_punctuation: boolean;
theme: string;
}
export interface User {
id: number;
name: string;
email: string;
photo_url: string | null;
is_password_set: boolean;
subscription_status: boolean;
can_record_more: boolean;
subscription_plan: string;
subscription_gateway: string;
subscription_created_at: string;
latest_updated_at: string;
latest_attachment_updated_at: string;
recordings_count: number;
public_recordings_count: number;
settings: UserSettings;
}
/* -------------------------------------------------------------------------- */
/* VOICENOTES API */
/* -------------------------------------------------------------------------- */
export interface VoiceNoteSignedUrl {
url: string;
}
export interface VoiceNoteRecordings {
data: any[];
links: {
next?: string;
};
json: any;
}