forked from shikshalokam/SunbirdEd-mobile-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeature-id-map.ts
80 lines (80 loc) · 1.39 KB
/
feature-id-map.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
export const featureIdMap = {
downloadManager: {
DOWNLOADS_DELETE: [
{
id: 'download_manager:downloads:delete',
type: 'Feature'
},
{
id: 'SB-3800',
type: 'Task'
}
],
DOWNLOADS_SORT: [
{
id: 'download_manager:downloads:sort',
type: 'Feature'
},
{
id: 'SB-3800',
type: 'Task'
}
],
ACTIVE_DOWNLOADS_CANCEL: [
{
id: 'download_manager:active_downloads:cancel',
type: 'Feature'
},
{
id: 'SB-3800',
type: 'Task'
}
],
STORAGE_SETTINGS_TRANSFER: [
{
id: 'download_manager:storage_settings:transfer',
type: 'Feature'
},
{
id: 'SB-3800',
type: 'Task'
}
],
},
searchHistory: {
SEARCH_HISTORY_QUERY_FROM_HISTORY: [
{
id: 'search_history:query_from_history',
type: 'Feature'
},
{
id: 'SB-13533',
type: 'Task'
}
],
},
location: {
LOCATION_CAPTURE: [
{
id: 'user:location_capture',
type: 'Feature'
},
{
id: 'SB-14682',
type: 'Task'
}
],
},
userVerification: {
EXTERNAL_USER_VERIFICATION: [
{
id: 'user:state:externalId',
type: 'Feature'
},
{
id: 'SC-1362',
type: 'Task'
}
],
}
};