mgtypes 1.0.21 → 1.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/Configuration.ts +39 -23
package/package.json
CHANGED
package/types/Configuration.ts
CHANGED
|
@@ -14,7 +14,6 @@ export interface Configuration {
|
|
|
14
14
|
feed: mgFeed;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
17
|
/**
|
|
19
18
|
* Configs for map
|
|
20
19
|
*/
|
|
@@ -25,7 +24,6 @@ export interface mgMap {
|
|
|
25
24
|
MAP_FILTERS: { [key: string]: any };
|
|
26
25
|
}
|
|
27
26
|
|
|
28
|
-
|
|
29
27
|
/**
|
|
30
28
|
* Configs for feed
|
|
31
29
|
*/
|
|
@@ -63,19 +61,34 @@ export interface mgSpecs {
|
|
|
63
61
|
}
|
|
64
62
|
|
|
65
63
|
interface PERMISSION_PROFILE {
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
64
|
+
CONTENT_CREATION: {
|
|
65
|
+
comment: boolean;
|
|
66
|
+
photo: boolean;
|
|
67
|
+
pin:
|
|
68
|
+
| {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
}
|
|
71
|
+
| false;
|
|
72
|
+
plan:
|
|
73
|
+
| {
|
|
74
|
+
[key: string]: any;
|
|
75
|
+
}
|
|
76
|
+
| false;
|
|
77
|
+
route: boolean;
|
|
78
|
+
};
|
|
79
|
+
VISIBLE_FEED_TABS: {
|
|
80
|
+
main: boolean;
|
|
81
|
+
archive: boolean;
|
|
82
|
+
mine: boolean;
|
|
83
|
+
friends: boolean;
|
|
84
|
+
};
|
|
85
|
+
CAN_HAVE_FRIENDS: boolean;
|
|
86
|
+
CAN_SHARE_LOCATION: boolean;
|
|
87
|
+
CAN_SHARE_CONTENT: boolean;
|
|
88
|
+
CAN_SAVE_CONTENT: boolean;
|
|
89
|
+
CAN_VOTE: boolean;
|
|
90
|
+
CAN_ADD_TO_THREAD: boolean;
|
|
91
|
+
CAN_EMBED_CONTENT_IN_THREAD: boolean;
|
|
79
92
|
}
|
|
80
93
|
|
|
81
94
|
/**
|
|
@@ -83,12 +96,14 @@ interface PERMISSION_PROFILE {
|
|
|
83
96
|
* @param PERMISSION_PROFILES dictates what types of content users with various roles can add through the app. A configured object for each role (GUEST, USER, etc.) is a PERMISSION_PROFILE:
|
|
84
97
|
*
|
|
85
98
|
* {
|
|
86
|
-
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
|
|
99
|
+
* CONTENT_CREATION:{
|
|
100
|
+
* comment: true,
|
|
101
|
+
* photo: false,
|
|
102
|
+
* pin: { personal: ['car', 'bicycle', 'default'] },
|
|
103
|
+
* plan: { sport: ['soccer'] },
|
|
104
|
+
* route: false
|
|
105
|
+
* }
|
|
106
|
+
* },
|
|
92
107
|
*/
|
|
93
108
|
export interface mgFeatures {
|
|
94
109
|
EVENT_TAGS: string[];
|
|
@@ -98,9 +113,10 @@ export interface mgFeatures {
|
|
|
98
113
|
EMERGENCY_TYPES: { [key: string]: any };
|
|
99
114
|
USER_AUTH_SETTING: 'guest only' | 'account only' | 'guest or account';
|
|
100
115
|
PERMISSION_PROFILES: {
|
|
101
|
-
|
|
102
|
-
|
|
116
|
+
guest: PERMISSION_PROFILE | null;
|
|
117
|
+
user: PERMISSION_PROFILE | null;
|
|
103
118
|
};
|
|
119
|
+
IS_CONTENT_THREADED: boolean
|
|
104
120
|
}
|
|
105
121
|
|
|
106
122
|
/**
|