This repository has been archived by the owner on Jun 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
types.d.ts
175 lines (138 loc) · 2.63 KB
/
types.d.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
type request = import('express').Request
/* API types */
interface ApiRequest extends request {
busboy?: any
body: ApiRequestBody
jwt?: JWTpayload
}
interface ApiRequestBody {
/* IDs */
mid?: string
sid?: string
uid?: string
email?: string
keycode?: string
password?: string
name?: string
start?: date
end?: date
menteeUID?: string
mentorUID?: string
location?: string
message?: string
token?: string
deleted: string[]
updated: Slot[]
code?: string
googleAccessToken?: string
googleRefreshToken?: string
upframeCalendarId?: string
developerPass?: string
type?: string
timeoffset?: number
}
interface JWTpayload {
aud?: string
email?: string
uid?: string
}
interface ApiResponse {
code: number
ok: number
message?: string
friendlyMessage?: string
token?: string
updateOK?: number
deleteOK?: number
meetup?: Meetup
meetups?: Meetup[]
mentor?: Mentor
mentors?: Mentor[]
user?: User
slot?: Slot
slots?: Slot[]
search?: {
companies?: any[]
expertise?: any[]
people?: any[]
}
url?: string
wau?: object[]
refreshToken?: string
}
interface APIerror {
api: boolean
code: number
message: string
friendlyMessage?: string
}
type date = string | Date
/* Generic types */
interface Meetup {
mid: string
sid: string
menteeUID: string
mentorUID: string
message?: string
location: string
status: string
start: string | Date
}
interface Account {
uid: string
name: string
email: string
password: string
pictures?: { [size: string]: { [type: string]: string } }
googleAccessToken?: string
googleRefreshToken?: string
timeoffset?: number
emailNotifications?: boolean | Buffer
availabilityReminder?: 'monthly' | 'weekly' | 'off'
}
interface Mentor extends Account {
favoritePlaces?: string
upframeCalendarId?: string
keycode?: string
slots?: Slot[]
newsfeed?: string
}
interface User extends Account {
type: 'user' | 'mentor'
upframeCalendarId?: string
}
interface Slot {
sid: string
mentorUID: string
start: Date | string
end: Date | string
recurrency: string
timezone?: string
}
/* Mailer */
interface Email {
from: string
to: string
subject: string
html?: string
}
/* Analytics */
interface AnalyticsEvent {
uid: string
time: Date | string
}
interface AnalyticsResponseRecord {
// Day String
day?: string
// Weekly Active Users
wau?: number | null
// Weekly Active Mentors (Mentors who added slots)
wam?: number | null
// Array of users UIDs
users?: string[]
}
interface AnalyticsResponse {
ok?: number
// Weekly Active Users
wau: AnalyticsResponseRecord[]
}