mgtypes 1.0.29 → 1.0.31

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mgtypes",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -312,7 +312,7 @@ interface mgPermissionsProfile {
312
312
  * @param pins one of this property's internal properties can be 'all', which will filter all pins
313
313
  * @param plans same as above
314
314
  */
315
- interface mgMapFiltersProfile {
315
+ export interface mgMapFiltersProfile {
316
316
  pins?: { [key: string]: mgMapFilter };
317
317
  plans?: { [key: string]: mgMapFilter };
318
318
  people?: {
@@ -341,9 +341,10 @@ interface mgMapFiltersProfile {
341
341
  /**
342
342
  * Configs to display a map filter
343
343
  */
344
- interface mgMapFilter {
344
+ export interface mgMapFilter {
345
345
  category: 'route' | 'pin' | 'person' | 'plan' | 'emergency';
346
346
  value: string;
347
347
  labelText: string;
348
348
  icon: string;
349
+ color: string;
349
350
  }