mgtypes 1.0.66 → 1.0.67

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.66",
3
+ "version": "1.0.67",
4
4
  "description": "types for mg development",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -94,11 +94,22 @@ export interface mgFeaturesConfig {
94
94
  IS_CONTENT_THREADED: boolean;
95
95
  }
96
96
 
97
+ /**
98
+ * describes what map markers and other
99
+ * content will show up on server and in client
100
+ *
101
+ * broken into categories as they will be presented to
102
+ * user assembling an app and as possible filters
103
+ * (food, toilets filters), each category has a default
104
+ *
105
+ * whatever types of content populate the
106
+ */
97
107
  export interface mgContentConfig {
98
108
  TAGS: string[];
99
109
  PINS: {
100
110
  food?: string[];
101
111
  drink?: string[];
112
+ entertainment?: string[]; // midway/fun fair,
102
113
  infrastructure?: string[];
103
114
  activity?: string[];
104
115
  toilet?: string[];
@@ -110,21 +121,30 @@ export interface mgContentConfig {
110
121
  default: ['pin'];
111
122
  };
112
123
  PLANS: {
113
- sport?: string[];
114
- hallmark?: string[];
115
- music?: string[];
124
+ sport?: string[]; // all of them, tailgate
125
+ business?: string[]; // meet and greet, job fair, trade show/conference, expo, meeting, pitch night,product launch, grand opening
126
+ spectacle?: string[]; // air show, drone show, fireworks, demolition derby, circus, parade?
127
+ gathering?: string[]; // block party, street festival, fan fest,
128
+ concert?: string[]; // default, rock, rap, classical, electronic, jazz, etc...
129
+ performance?: string[]; // recital, dance recital, comedy/improv, musicals, reading/booksigning
130
+ presentation?: string[]; // lecture, panel, roundtable, film screening, exhibition, fashion show, trophy presentation
131
+ tour?: string[]; // open house, open studio, orientation
132
+ class?: string[]; // cooking, writing, pottery, whatever, mixology classes
133
+ food?: string[]; // brunch, dinner, wine tastings, appetizers, picnic, bbq, pot luck, banquet
134
+ group?: string[]; // karaoke, trivia,
135
+ shopping?: string[]; // auction, fair, sale, pop-up
116
136
  other?: string[];
117
137
  default: ['plan'];
118
138
  };
119
139
  ROUTES: {
120
- parade?: string[];
121
- race?: string[];
122
- crawl?: string[];
140
+ parade?: string[]; // default, pride
141
+ race?: string[]; // run, bike, swim, paddle, drive
142
+ tour?: string[]; // pub crawl, walking tour, wine tour
123
143
  other?: string[];
124
144
  default: ['route'];
125
145
  };
126
- SERVICES?: 'mental health' | 'security' | 'fire' | 'medical'[];
127
- EMERGENCIES?: 'mental health' | 'security' | 'fire' | 'medical'[];
146
+ SERVICES?: ('mental health' | 'security' | 'fire' | 'medical')[];
147
+ EMERGENCIES?: ('mental health' | 'security' | 'fire' | 'medical')[];
128
148
  }
129
149
 
130
150
  // ** AUTH **