-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
56 lines (52 loc) · 1.49 KB
/
index.js
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
import { Client } from './lib/client.js';
import { AccountClient } from './lib/account.js';
import { ActivityClient } from './lib/activity.js';
import { AdminClient } from './lib/admin.js';
import { ClubClient } from './lib/club.js';
import { UserClient } from './lib/user.js';
import { ShareClient } from './lib/share.js';
import { TaskClient } from './lib/task.js';
import { CommentClient } from './lib/comment.js';
import { GamificationClient } from './lib/gamification.js';
import { PingClient } from './lib/ping.js';
import { JamsClient } from './lib/jams.js';
import { ResponseCache } from './lib/response-cache.js';
// REMOVED: due to GamificationFallbackPlugin importing the whole gamification bundle
// import { GamificationFallbackPlugin } from './plugins/gamification-fallback.js';
class GamificationFallbackPlugin {
constructor() {
throw new Error('Import GamificationFallbackPlugin from root file "./plugins/gamification-fallback.js"');
}
}
export {
Client,
AccountClient,
ActivityClient,
AdminClient,
ClubClient,
UserClient,
ShareClient,
TaskClient,
CommentClient,
GamificationClient,
PingClient,
GamificationFallbackPlugin,
ResponseCache,
JamsClient,
};
export default {
Client,
AccountClient,
ActivityClient,
AdminClient,
ClubClient,
UserClient,
ShareClient,
TaskClient,
CommentClient,
GamificationClient,
PingClient,
GamificationFallbackPlugin,
ResponseCache,
JamsClient,
};