mgtypes 1.0.64 → 1.0.65
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
CHANGED
|
@@ -107,85 +107,25 @@ export interface mgContentConfig {
|
|
|
107
107
|
shopping?: string[];
|
|
108
108
|
personal?: string[];
|
|
109
109
|
other?: string[];
|
|
110
|
+
default: ['pin'];
|
|
110
111
|
};
|
|
111
112
|
PLANS: {
|
|
112
113
|
sport?: string[];
|
|
113
114
|
hallmark?: string[];
|
|
114
115
|
music?: string[];
|
|
115
116
|
other?: string[];
|
|
117
|
+
default: ['plan'];
|
|
116
118
|
};
|
|
117
119
|
ROUTES: {
|
|
118
120
|
parade?: string[];
|
|
119
121
|
race?: string[];
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
SERVICES: {
|
|
123
|
-
fire?: {
|
|
124
|
-
value: 'fire';
|
|
125
|
-
label: string;
|
|
126
|
-
icon: string;
|
|
127
|
-
color: string;
|
|
128
|
-
};
|
|
129
|
-
medical?: {
|
|
130
|
-
value: 'medical';
|
|
131
|
-
label: string;
|
|
132
|
-
icon: string;
|
|
133
|
-
color: string;
|
|
134
|
-
};
|
|
135
|
-
'mental health'?: {
|
|
136
|
-
value: 'mental health';
|
|
137
|
-
label: string;
|
|
138
|
-
icon: string;
|
|
139
|
-
color: string;
|
|
140
|
-
};
|
|
141
|
-
security?: {
|
|
142
|
-
value: 'security';
|
|
143
|
-
label: string;
|
|
144
|
-
icon: string;
|
|
145
|
-
color: string;
|
|
146
|
-
};
|
|
147
|
-
default: {
|
|
148
|
-
value: 'default';
|
|
149
|
-
label: string;
|
|
150
|
-
icon: string;
|
|
151
|
-
color: string;
|
|
152
|
-
};
|
|
153
|
-
};
|
|
154
|
-
EMERGENCIES: {
|
|
155
|
-
fire?: {
|
|
156
|
-
value: 'fire';
|
|
157
|
-
label: string;
|
|
158
|
-
icon: string;
|
|
159
|
-
color: string;
|
|
160
|
-
};
|
|
161
|
-
medical?: {
|
|
162
|
-
value: 'medical';
|
|
163
|
-
label: string;
|
|
164
|
-
icon: string;
|
|
165
|
-
color: string;
|
|
166
|
-
};
|
|
167
|
-
'mental health'?: {
|
|
168
|
-
value: 'mental health';
|
|
169
|
-
label: string;
|
|
170
|
-
icon: string;
|
|
171
|
-
color: string;
|
|
172
|
-
};
|
|
173
|
-
security?: {
|
|
174
|
-
value: 'security';
|
|
175
|
-
label: string;
|
|
176
|
-
icon: string;
|
|
177
|
-
color: string;
|
|
178
|
-
};
|
|
179
|
-
default: {
|
|
180
|
-
value: 'default';
|
|
181
|
-
label: string;
|
|
182
|
-
icon: string;
|
|
183
|
-
color: string;
|
|
184
|
-
};
|
|
122
|
+
other?: string[];
|
|
123
|
+
default: ['route'];
|
|
185
124
|
};
|
|
125
|
+
SERVICES?: 'mental health' | 'security' | 'fire' | 'medical'[];
|
|
126
|
+
EMERGENCIES?: 'mental health' | 'security' | 'fire' | 'medical'[];
|
|
186
127
|
}
|
|
187
128
|
|
|
188
|
-
|
|
189
129
|
// ** AUTH **
|
|
190
130
|
export interface mgAuthenticationConfig {
|
|
191
131
|
USER_AUTH_MODE: 'guest only' | 'account only' | 'guest or account';
|