mgtypes 1.0.29 → 1.0.30

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.30",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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
  }