make-mp-data 1.5.54 → 1.5.56

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.
@@ -1,396 +0,0 @@
1
- /**
2
- * This is the default configuration file for the data generator in COMPLEX mode
3
- * notice how the config object is structured, and see it's type definition in ./types.d.ts
4
- * feel free to modify this file to customize the data you generate
5
- * see helper functions in utils.js for more ways to generate data
6
- */
7
-
8
-
9
- const Chance = require('chance');
10
- const chance = new Chance();
11
- const { weighNumRange, date, integer } = require('../components/utils.js');
12
- const u = require('ak-tools');
13
-
14
- /** @type {import('../types.js').Dungeon} */
15
- const config = {
16
- token: "",
17
- seed: "quite complexus",
18
- numDays: 30, //how many days worth of data
19
- numEvents: 100_000, //how many events
20
- numUsers: 1000, //how many users
21
- format: 'json', //csv or json
22
- region: "US",
23
- hasAnonIds: true, //if true, anonymousIds are created for each user
24
- hasSessionIds: true, //if true, hasSessionIds are created for each user
25
-
26
- hasLocation: true,
27
- hasAndroidDevices: true,
28
- hasIOSDevices: true,
29
- hasDesktopDevices: true,
30
- hasBrowser: true,
31
- hasCampaigns: true,
32
- isAnonymous: false,
33
- hasAdSpend: true,
34
-
35
- hasAvatar: true,
36
- makeChart: false,
37
-
38
- batchSize: 500_000,
39
- concurrency: 500,
40
-
41
- funnels: [],
42
- events: [
43
- {
44
- "event": "checkout",
45
- "weight": 2,
46
- "properties": {
47
- amount: weighNumRange(5, 500, .25),
48
- currency: ["USD", "USD", "USD", "CAD", "EUR", "EUR", "BTC", "BTC", "ETH", "JPY"],
49
- cart: makeProducts(12),
50
- }
51
- },
52
- {
53
- "event": "add to cart",
54
- "weight": 4,
55
- "properties": {
56
- amount: weighNumRange(5, 500, .25),
57
- qty: integer(1, 5),
58
- product_id: weighNumRange(1, 1000, 1.4)
59
- }
60
- },
61
- {
62
- "event": "page view",
63
- "weight": 10,
64
- "properties": {
65
- page: ["/", "/", "/", "/learn-more", "/pricing", "/contact", "/about", "/careers", "/sign-up", "/login", "/app", "/app", "/app", "/app"],
66
- utm_source: ["$organic", "$organic", "$organic", "$organic", "google", "google", "google", "facebook", "facebook", "twitter", "linkedin"],
67
- }
68
- },
69
- {
70
- "event": "watch video",
71
- "weight": 8,
72
- "properties": {
73
- category: ["funny", "educational", "inspirational", "music", "news", "sports", "cooking", "DIY", "travel", "gaming"],
74
- hashTags: makeHashTags,
75
- watchTimeSec: weighNumRange(10, 600, .25,),
76
- quality: ["2160p", "1440p", "1080p", "720p", "480p", "360p", "240p"],
77
- format: ["mp4", "avi", "mov", "mpg"],
78
- video_id: weighNumRange(1, 50000, 1.4),
79
-
80
- }
81
- },
82
- {
83
- "event": "comment",
84
- "weight": 2,
85
- "properties": {
86
- length: weighNumRange(1, 500, .25),
87
- video_id: weighNumRange(1, 50000, 1.4),
88
- has_replies: [true, false, false, false, false],
89
- has_photo: [true, false, false, false, false],
90
-
91
- }
92
- },
93
- {
94
- "event": "save video",
95
- "weight": 4,
96
- "properties": {
97
- video_id: weighNumRange(1, 50000, 1.4),
98
- ui_control: ["toolbar", "menu", "keyboard"]
99
-
100
-
101
- }
102
- },
103
- {
104
- "event": "view item",
105
- "weight": 8,
106
- "properties": {
107
- product_id: weighNumRange(1, 24, 3),
108
- colors: ["light", "dark", "custom", "dark"]
109
- }
110
- },
111
- {
112
- "event": "save item",
113
- "weight": 5,
114
- "properties": {
115
- product_id: weighNumRange(1, 1000, 12),
116
- colors: ["light", "dark", "custom", "dark"]
117
- }
118
- },
119
- {
120
- "event": "support ticket",
121
- "weight": 2,
122
- "properties": {
123
- product_id: weighNumRange(1, 1000, .6),
124
- description: chance.sentence.bind(chance),
125
- severity: ["low", "medium", "high"],
126
- ticket_id: chance.guid.bind(chance)
127
- }
128
- },
129
- {
130
- "event": "sign up",
131
- "isFirstEvent": true,
132
- "weight": 0,
133
- "properties": {
134
- plan: ["free", "free", "free", "free", "basic", "basic", "basic", "premium", "premium", "enterprise"],
135
- dateOfRenewal: date(100, false),
136
- codewords: u.makeName,
137
- }
138
- }
139
- ],
140
- superProps: {
141
- linked_device: deviceAttributes()
142
- // emotions: generateEmoji(),
143
-
144
- },
145
- /*
146
- user properties work the same as event properties
147
- each key should be an array or function reference
148
- */
149
- userProps: {
150
- title: chance.profession.bind(chance),
151
- luckyNumber: weighNumRange(42, 420),
152
- experiment: designExperiment(),
153
- spiritAnimal: ["unicorn", "dragon", "phoenix", "sasquatch", "yeti", "kraken", "jackalope", "thunderbird", "mothman", "nessie", "chupacabra", "jersey devil", "bigfoot", "weindgo", "bunyip", "mokele-mbembe", "tatzelwurm", "megalodon"],
154
- timezone: chance.timezone.bind(chance), // ["America/New_York", "America/Los_Angeles", "America/Chicago", "America/Denver", "America/Phoenix", "America/Anchorage", "Pacific/Honolulu"]
155
- ip: chance.ip.bind(chance),
156
- lastCart: makeProducts(5),
157
-
158
- },
159
-
160
- /** each generates it's own table */
161
- scdProps: {
162
- role: {
163
- type: "user",
164
- frequency: "week",
165
- values: ["admin", "collaborator", "user", "view only", "no access"],
166
- timing: 'fuzzy',
167
- max: 10
168
- },
169
- NPS: {
170
- type: "user",
171
- frequency: "day",
172
- values: weighNumRange(1, 10, 2, 150),
173
- timing: 'fuzzy',
174
- max: 10
175
- },
176
- MRR: {
177
- type: "company_id",
178
- frequency: "month",
179
- values: weighNumRange(0, 10000, .15),
180
- timing: 'fixed',
181
- max: 10
182
- },
183
- AccountHealthScore: {
184
- type: "company_id",
185
- frequency: "week",
186
- values: weighNumRange(1, 10, .15),
187
- timing: 'fixed',
188
- max: 40
189
- },
190
- plan: {
191
- type: "company_id",
192
- frequency: "month",
193
- values: ["free", "basic", "premium", "enterprise"],
194
- timing: 'fixed',
195
- max: 10
196
- }
197
- },
198
-
199
- mirrorProps: {
200
- isBot: { events: "*", values: [false, false, false, false, true] },
201
- profit: { events: ["checkout"], values: [4, 2, 42, 420] },
202
- watchTimeSec: {
203
- events: ["watch video"],
204
- values: weighNumRange(50, 1200, 2)
205
- }
206
- },
207
-
208
- /*
209
- for group analytics keys, we need an array of arrays [[],[],[]]
210
- each pair represents a group_key and the number of profiles for that key
211
- */
212
- groupKeys: [
213
- ['company_id', 500, []],
214
- ['room_id', 10000, ["save video", "comment", "watch video"]],
215
-
216
- ],
217
- groupProps: {
218
- company_id: {
219
- name: () => { return chance.company(); },
220
- email: () => { return `CSM: ${chance.pickone(["AK", "Jessica", "Michelle", "Dana", "Brian", "Dave"])}`; },
221
- "# of employees": weighNumRange(3, 10000),
222
- "industry": ["tech", "finance", "healthcare", "education", "government", "non-profit"],
223
- "segment": ["enterprise", "SMB", "mid-market"],
224
- "products": [["core"], ["core"], ["core", "add-ons"], ["core", "pro-serve"], ["core", "add-ons", "pro-serve"], ["core", "BAA", "enterprise"], ["free"], ["free"], ["free", "addons"]],
225
- },
226
- room_id: {
227
- name: () => { return `#${chance.word({ length: integer(4, 24), capitalize: true })}`; },
228
- email: ["public", "private"],
229
- "room provider": ["partner", "core", "core", "core"],
230
- "room capacity": weighNumRange(3, 1000000),
231
- "isPublic": [true, false, false, false, false],
232
- "country": chance.country.bind(chance),
233
- "isVerified": [true, true, false, false, false],
234
- }
235
- },
236
- groupEvents: [{
237
- attribute_to_user: false,
238
- event: "card charged",
239
- weight: 1,
240
- frequency: 30,
241
- group_key: "company_id",
242
- group_size: 500,
243
- properties: {
244
- amount: weighNumRange(5, 500, .25),
245
- currency: ["USD", "USD", "USD", "CAD", "EUR", "EUR", "BTC", "BTC", "ETH", "JPY"],
246
- plan: ["basic", "premium", "enterprise"],
247
- "payment method": []
248
- }
249
- }],
250
-
251
- lookupTables: [
252
- {
253
- key: "product_id",
254
- entries: 1000,
255
- attributes: {
256
- category: [
257
- "Books", "Movies", "Music", "Games", "Electronics", "Computers", "Smart Home", "Home", "Garden & Tools", "Pet Supplies", "Food & Grocery", "Beauty", "Health", "Toys", "Kids", "Baby", "Handmade", "Sports", "Outdoors", "Automotive", "Industrial", "Entertainment", "Art"
258
- ],
259
- "demand": ["high", "medium", "medium", "low"],
260
- "supply": ["high", "medium", "medium", "low"],
261
- "manufacturer": chance.company.bind(chance),
262
- "price": weighNumRange(5, 500, .25),
263
- "rating": weighNumRange(1, 5),
264
- "reviews": weighNumRange(0, 35)
265
- }
266
-
267
- },
268
- {
269
- key: "video_id",
270
- entries: 50000,
271
- attributes: {
272
- isFlagged: [true, false, false, false, false],
273
- copyright: ["all rights reserved", "creative commons", "creative commons", "public domain", "fair use"],
274
- uploader_id: chance.guid.bind(chance),
275
- "uploader influence": ["low", "low", "low", "medium", "medium", "high"],
276
- thumbs: weighNumRange(0, 35),
277
- rating: ["G", "PG", "PG-13", "R", "NC-17", "PG-13", "R", "NC-17", "R", "PG", "PG"]
278
- }
279
-
280
- }
281
- ],
282
-
283
- hook: function (record, type, meta) {
284
- return record;
285
- }
286
- };
287
-
288
-
289
-
290
- function makeHashTags() {
291
- const possibleHashtags = [];
292
- for (let i = 0; i < 20; i++) {
293
- possibleHashtags.push('#' + u.makeName(2, ''));
294
- }
295
-
296
- const numHashtags = integer(integer(1, 5), integer(5, 10));
297
- const hashtags = [];
298
- for (let i = 0; i < numHashtags; i++) {
299
- hashtags.push(chance.pickone(possibleHashtags));
300
- }
301
- return [hashtags];
302
- };
303
-
304
- function makeProducts(maxItems = 10) {
305
-
306
- return function () {
307
- const categories = ["Device Accessories", "eBooks", "Automotive", "Baby Products", "Beauty", "Books", "Camera & Photo", "Cell Phones & Accessories", "Collectible Coins", "Consumer Electronics", "Entertainment Collectibles", "Fine Art", "Grocery & Gourmet Food", "Health & Personal Care", "Home & Garden", "Independent Design", "Industrial & Scientific", "Accessories", "Major Appliances", "Music", "Musical Instruments", "Office Products", "Outdoors", "Personal Computers", "Pet Supplies", "Software", "Sports", "Sports Collectibles", "Tools & Home Improvement", "Toys & Games", "Video, DVD & Blu-ray", "Video Games", "Watches"];
308
- const slugs = ['/sale/', '/featured/', '/home/', '/search/', '/wishlist/', '/'];
309
- const assetExtension = ['.png', '.jpg', '.jpeg', '.heic', '.mp4', '.mov', '.avi'];
310
- const data = [];
311
- const numOfItems = integer(1, 12);
312
-
313
- for (var i = 0; i < numOfItems; i++) {
314
- const category = chance.pickone(categories);
315
- const slug = chance.pickone(slugs);
316
- const asset = chance.pickone(assetExtension);
317
- const product_id = chance.guid();
318
- const price = integer(1, 300);
319
- const quantity = integer(1, 5);
320
-
321
- const item = {
322
- product_id: product_id,
323
- sku: integer(11111, 99999),
324
- amount: price,
325
- quantity: quantity,
326
- value: price * quantity,
327
- featured: chance.pickone([true, false]),
328
- category: category,
329
- urlSlug: slug + category,
330
- asset: `${category}-${integer(1, 20)}${asset}`
331
- };
332
-
333
- data.push(item);
334
- }
335
-
336
- return () => [data];
337
- };
338
- };
339
-
340
-
341
- function designExperiment() {
342
- return function () {
343
- const variants = ["A", "B", "C", "Control"];
344
- const variant = chance.pickone(variants);
345
- const experiments = ["no password", "social sign in", "new tutorial", "new search"];
346
- const experiment = chance.pickone(experiments);
347
- const multi_variates = ["A/B", "A/B/C", "A/B/C/D", "Control"];
348
- const multi_variate = chance.pickone(multi_variates);
349
- const impression_id = chance.guid();
350
-
351
-
352
-
353
- const chosen = {
354
- variant,
355
- experiment,
356
- multi_variate,
357
- impression_id
358
- };
359
-
360
- return [chosen];
361
- };
362
- }
363
-
364
- function deviceAttributes(isMobile = false) {
365
- return function () {
366
- let devices = ["desktop", "laptop", "desktop", "laptop", "desktop", "laptop", "other"];
367
- if (isMobile) devices = [...devices, "mobile", "mobile", "mobile", "tablet"];
368
- const device = chance.pickone(devices);
369
- let oses = ["Windows", "macOS", "Windows", "macOS", "macOS", "Linux", "Windows", "macOS", "Windows", "macOS", "macOS", "TempleOS"];
370
- if (isMobile) oses = [...oses, "iOS", "Android", "iOS", "Android"];
371
- const os = chance.pickone(oses);
372
- const browser = chance.pickone(["Chrome", "Firefox", "Safari", "Edge", "Opera", "IE", "Brave", "Vivaldi"]);
373
- const version = chance.integer({ min: 1, max: 15 });
374
- const resolution = chance.pickone(["1920x1080", "1280x720", "1024x768", "800x600", "640x480"]);
375
- const language = chance.pickone(["en-US", "en-US", "en-US", "en-GB", "es", "es", "fr", "de", "it", "ja", "zh", "ru"]);
376
-
377
- const chosen = {
378
- platform: device,
379
- os,
380
- browser,
381
- version,
382
- resolution,
383
- language
384
- };
385
-
386
- return chosen;
387
-
388
- };
389
- }
390
-
391
-
392
-
393
-
394
-
395
-
396
- module.exports = config;
@@ -1,241 +0,0 @@
1
- /**
2
- * This is the default configuration file for the data generator in SIMPLE mode
3
- * notice how the config object is structured, and see it's type definition in ./types.d.ts
4
- * feel free to modify this file to customize the data you generate
5
- * see helper functions in utils.js for more ways to generate data
6
- */
7
-
8
-
9
-
10
-
11
- function integer(min = 1, max = 100) {
12
- // If min equals max, just return the value
13
- if (min === max) {
14
- return min;
15
- }
16
-
17
- // Swap min and max if min is greater than max
18
- if (min > max) {
19
- [min, max] = [max, min];
20
- }
21
-
22
- // Generate a random integer between min and max (inclusive)
23
- return Math.floor(Math.random() * (max - min + 1)) + min;
24
- }
25
-
26
-
27
- const dates = [
28
- "2024-09-18T21:48:28.173Z",
29
- "2024-12-09T03:17:46.661Z",
30
- "2024-02-26T07:52:14.943Z",
31
- "2024-04-22T08:35:17.647Z",
32
- "2024-11-25T17:03:58.061Z",
33
- "2024-01-14T21:46:58.982Z",
34
- "2024-06-20T12:47:25.687Z",
35
- "2024-08-13T22:18:08.665Z",
36
- "2024-08-09T07:47:18.321Z",
37
- "2024-06-21T19:04:43.432Z",
38
- "2024-03-09T00:18:37.705Z",
39
- "2024-08-02T09:23:41.699Z",
40
- "2024-11-26T13:25:08.673Z",
41
- "2024-05-23T11:51:34.238Z",
42
- "2024-10-24T20:14:05.106Z",
43
- "2024-10-01T18:52:32.463Z",
44
- "2024-10-15T19:22:40.675Z",
45
- "2024-06-13T21:29:11.962Z",
46
- "2024-08-29T12:02:48.632Z",
47
- "2024-12-22T12:11:40.809Z",
48
- "2024-01-03T03:39:19.446Z",
49
- "2024-06-28T10:05:43.908Z",
50
- "2024-12-01T18:49:00.447Z",
51
- "2024-12-30T05:44:23.418Z",
52
- "2024-03-14T22:38:40.833Z",
53
- "2024-12-28T06:45:31.946Z",
54
- "2024-07-20T21:40:19.498Z",
55
- "2024-12-26T06:44:41.982Z",
56
- "2024-10-28T13:45:35.409Z",
57
- "2024-02-28T00:11:54.916Z",
58
- "2024-07-08T10:01:57.834Z",
59
- "2024-02-23T08:00:59.386Z",
60
- "2024-08-20T05:23:33.024Z",
61
- "2024-02-10T20:52:46.564Z",
62
- "2024-08-24T21:32:15.202Z",
63
- "2024-06-17T03:51:35.142Z",
64
- "2024-04-09T13:13:45.218Z",
65
- "2024-07-26T16:31:51.091Z",
66
- "2024-05-26T04:06:33.013Z",
67
- "2024-11-05T17:15:37.412Z",
68
- "2024-10-20T17:01:38.205Z",
69
- "2024-01-08T05:09:18.692Z",
70
- "2024-08-24T13:52:14.774Z",
71
- "2024-06-26T13:47:07.276Z",
72
- "2024-06-19T15:05:53.246Z",
73
- "2024-05-01T04:06:52.028Z",
74
- "2024-05-26T22:45:59.626Z",
75
- "2024-04-17T20:50:58.460Z",
76
- "2024-07-28T04:32:04.578Z",
77
- "2024-01-29T05:31:48.744Z",
78
- "2024-08-06T18:47:29.190Z",
79
- "2024-04-03T23:12:20.415Z",
80
- "2024-09-13T08:47:35.938Z",
81
- "2024-07-27T15:12:15.145Z",
82
- "2024-10-24T00:39:21.835Z",
83
- "2024-10-08T16:50:36.591Z",
84
- "2024-02-27T15:53:19.204Z",
85
- "2024-04-21T08:24:05.883Z",
86
- "2024-03-08T10:07:46.720Z",
87
- "2024-01-10T08:36:19.554Z",
88
- "2024-02-17T12:56:00.562Z",
89
- "2024-10-03T07:54:46.486Z",
90
- "2024-05-29T10:18:36.289Z",
91
- "2024-05-06T23:27:07.145Z",
92
- "2024-05-27T08:41:47.787Z",
93
- "2024-09-16T12:22:09.573Z",
94
- "2024-05-03T00:31:06.036Z",
95
- "2024-11-24T19:38:43.380Z",
96
- "2024-06-03T04:01:56.328Z",
97
- "2024-05-04T02:25:25.455Z",
98
- "2024-12-19T18:35:25.052Z",
99
- "2024-05-07T21:54:28.113Z",
100
- "2024-11-24T09:58:08.766Z",
101
- "2024-03-17T02:46:20.903Z",
102
- "2024-09-04T09:20:24.930Z",
103
- "2024-02-04T10:23:33.624Z",
104
- "2024-01-26T02:42:06.668Z",
105
- "2024-08-11T02:26:21.969Z",
106
- "2024-07-11T13:34:51.283Z",
107
- "2024-12-20T00:09:10.080Z",
108
- "2024-05-28T00:20:07.079Z",
109
- "2024-01-13T14:54:03.339Z",
110
- "2024-08-10T17:18:12.759Z",
111
- "2024-10-06T15:05:11.437Z",
112
- "2024-11-18T03:53:12.932Z",
113
- "2024-02-19T18:06:13.680Z",
114
- "2024-08-03T11:48:00.207Z",
115
- "2024-11-22T15:19:47.316Z",
116
- "2024-06-30T19:56:49.636Z",
117
- "2024-12-03T00:25:23.926Z",
118
- "2024-07-30T15:27:18.198Z",
119
- "2024-09-07T01:40:58.245Z",
120
- "2024-05-16T05:24:14.727Z",
121
- "2024-11-14T03:46:49.323Z",
122
- "2024-02-16T09:18:23.473Z",
123
- "2024-10-19T14:07:11.462Z",
124
- "2024-02-09T08:52:04.735Z",
125
- "2024-06-06T09:41:11.810Z",
126
- "2024-05-07T23:14:05.114Z",
127
- "2024-06-03T06:52:21.652Z"
128
- ];
129
-
130
- const billionsOfEvents = 2
131
-
132
- const numEvents = billionsOfEvents * 1_000_000_000;
133
- const eventPerUser = 1_000;
134
- const numUsers = Math.floor(numEvents / eventPerUser);
135
- const seed = Math.random().toString()
136
-
137
- /** @type {import('../types').Dungeon} */
138
- const config = {
139
- token: "3cd6d9fb43b02f8fd731a6d814ac4b8f",
140
- seed: seed,
141
- numDays: 30, //how many days worth of data
142
- numEvents: numEvents, //how many events
143
- numUsers: numUsers, //how many users
144
- format: 'json', //csv or json
145
- region: "US",
146
- hasAnonIds: false, //if true, anonymousIds are created for each user
147
- hasSessionIds: false, //if true, hasSessionIds are created for each user
148
- batchSize: 2_500_000,
149
- hasAdSpend: false,
150
- hasAvatar: false,
151
- hasBrowser: false,
152
- hasCampaigns: false,
153
- hasIOSDevices: false,
154
- hasLocation: false,
155
- isAnonymous: true,
156
- hasAndroidDevices: false,
157
- hasDesktopDevices: false,
158
- writeToDisk: false,
159
- concurrency: 500,
160
-
161
- events: [
162
- {
163
- event: "foo",
164
- weight: 10,
165
- properties: {}
166
- },
167
- {
168
- event: "bar",
169
- weight: 9,
170
- properties: {}
171
- },
172
- {
173
- event: "baz",
174
- weight: 8,
175
- properties: {}
176
- },
177
- {
178
- event: "qux",
179
- weight: 7,
180
- properties: {}
181
- },
182
- {
183
- event: "garply",
184
- weight: 6,
185
- properties: {}
186
- },
187
- {
188
- event: "durtle",
189
- weight: 5,
190
- properties: {}
191
- },
192
- {
193
- event: "linny",
194
- weight: 4,
195
- properties: {}
196
- },
197
- {
198
- event: "fonk",
199
- weight: 3,
200
- properties: {}
201
- },
202
- {
203
- event: "crumn",
204
- weight: 2,
205
- properties: {}
206
- },
207
- {
208
- event: "yak",
209
- weight: 1,
210
- properties: {}
211
- }
212
- ],
213
- superProps: {
214
- string: ["red", "orange", "yellow", "green", "blue", "indigo", "violet"],
215
- number: integer,
216
- boolean: [true, false],
217
- date: dates,
218
-
219
- },
220
- userProps: {
221
- luckyNumber: integer,
222
- spiritAnimal: ["duck", "dog", "otter", "penguin", "cat", "elephant", "lion", "cheetah", "giraffe", "zebra", "rhino", "hippo", "whale", "dolphin", "shark", "octopus", "squid", "jellyfish", "starfish", "seahorse", "crab", "lobster", "shrimp", "clam", "snail", "slug", "butterfly", "moth", "bee", "wasp", "ant", "beetle", "ladybug", "caterpillar", "centipede", "millipede", "scorpion", "spider", "tarantula", "tick", "mite", "mosquito", "fly", "dragonfly", "damselfly", "grasshopper", "cricket", "locust", "mantis", "cockroach", "termite", "praying mantis", "walking stick", "stick bug", "leaf insect", "lacewing", "aphid", "cicada", "thrips", "psyllid", "scale insect", "whitefly", "mealybug", "planthopper", "leafhopper", "treehopper", "flea", "louse", "bedbug", "flea beetle", "weevil", "longhorn beetle", "leaf beetle", "tiger beetle", "ground beetle", "lady beetle", "firefly", "click beetle", "rove beetle", "scarab beetle", "dung beetle", "stag beetle", "rhinoceros beetle", "hercules beetle", "goliath beetle", "jewel beetle", "tortoise beetle"],
223
- created: dates,
224
- },
225
-
226
- scdProps: {},
227
- mirrorProps: {},
228
- lookupTables: [],
229
- groupKeys: [
230
- ],
231
- groupProps: {
232
- },
233
-
234
- hook: function (record, type, meta) {
235
- return record;
236
- }
237
- };
238
-
239
-
240
-
241
- module.exports = config;