schema-seed-generators 0.1.0
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/LICENSE +21 -0
- package/README.md +5 -0
- package/dist/generators.cjs +554 -0
- package/dist/generators.cjs.map +1 -0
- package/dist/generators.d.cts +28 -0
- package/dist/generators.d.ts +28 -0
- package/dist/generators.js +527 -0
- package/dist/generators.js.map +1 -0
- package/dist/index.cjs +609 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +19 -0
- package/dist/index.d.ts +19 -0
- package/dist/index.js +574 -0
- package/dist/index.js.map +1 -0
- package/package.json +61 -0
|
@@ -0,0 +1,527 @@
|
|
|
1
|
+
// src/data.ts
|
|
2
|
+
var firstNames = [
|
|
3
|
+
"James",
|
|
4
|
+
"Mary",
|
|
5
|
+
"Robert",
|
|
6
|
+
"Patricia",
|
|
7
|
+
"John",
|
|
8
|
+
"Jennifer",
|
|
9
|
+
"Michael",
|
|
10
|
+
"Linda",
|
|
11
|
+
"David",
|
|
12
|
+
"Elizabeth",
|
|
13
|
+
"William",
|
|
14
|
+
"Barbara",
|
|
15
|
+
"Richard",
|
|
16
|
+
"Susan",
|
|
17
|
+
"Joseph",
|
|
18
|
+
"Jessica",
|
|
19
|
+
"Thomas",
|
|
20
|
+
"Sarah",
|
|
21
|
+
"Christopher",
|
|
22
|
+
"Karen",
|
|
23
|
+
"Charles",
|
|
24
|
+
"Lisa",
|
|
25
|
+
"Daniel",
|
|
26
|
+
"Nancy",
|
|
27
|
+
"Matthew",
|
|
28
|
+
"Betty",
|
|
29
|
+
"Anthony",
|
|
30
|
+
"Sandra",
|
|
31
|
+
"Mark",
|
|
32
|
+
"Margaret",
|
|
33
|
+
"Donald",
|
|
34
|
+
"Ashley",
|
|
35
|
+
"Steven",
|
|
36
|
+
"Kimberly",
|
|
37
|
+
"Andrew",
|
|
38
|
+
"Donna",
|
|
39
|
+
"Paul",
|
|
40
|
+
"Emily",
|
|
41
|
+
"Joshua",
|
|
42
|
+
"Michelle",
|
|
43
|
+
"Kenneth",
|
|
44
|
+
"Carol",
|
|
45
|
+
"Kevin",
|
|
46
|
+
"Amanda",
|
|
47
|
+
"Brian",
|
|
48
|
+
"Dorothy",
|
|
49
|
+
"George",
|
|
50
|
+
"Melissa",
|
|
51
|
+
"Timothy",
|
|
52
|
+
"Deborah",
|
|
53
|
+
"Ronald",
|
|
54
|
+
"Stephanie",
|
|
55
|
+
"Edward",
|
|
56
|
+
"Rebecca",
|
|
57
|
+
"Jason",
|
|
58
|
+
"Sharon",
|
|
59
|
+
"Jeffrey",
|
|
60
|
+
"Laura",
|
|
61
|
+
"Ryan",
|
|
62
|
+
"Cynthia",
|
|
63
|
+
"Jacob",
|
|
64
|
+
"Kathleen",
|
|
65
|
+
"Gary",
|
|
66
|
+
"Amy",
|
|
67
|
+
"Nicholas",
|
|
68
|
+
"Angela",
|
|
69
|
+
"Eric",
|
|
70
|
+
"Shirley",
|
|
71
|
+
"Jonathan",
|
|
72
|
+
"Anna",
|
|
73
|
+
"Stephen",
|
|
74
|
+
"Brenda",
|
|
75
|
+
"Larry",
|
|
76
|
+
"Pamela",
|
|
77
|
+
"Justin",
|
|
78
|
+
"Nicole",
|
|
79
|
+
"Scott",
|
|
80
|
+
"Emma",
|
|
81
|
+
"Brandon",
|
|
82
|
+
"Helen",
|
|
83
|
+
"Benjamin",
|
|
84
|
+
"Debra",
|
|
85
|
+
"Samuel",
|
|
86
|
+
"Rachel",
|
|
87
|
+
"Gregory",
|
|
88
|
+
"Carolyn",
|
|
89
|
+
"Alexander",
|
|
90
|
+
"Janet",
|
|
91
|
+
"Frank",
|
|
92
|
+
"Maria",
|
|
93
|
+
"Patrick",
|
|
94
|
+
"Catherine",
|
|
95
|
+
"Raymond",
|
|
96
|
+
"Heather",
|
|
97
|
+
"Jack",
|
|
98
|
+
"Diane",
|
|
99
|
+
"Dennis",
|
|
100
|
+
"Virginia",
|
|
101
|
+
"Jerry",
|
|
102
|
+
"Julie",
|
|
103
|
+
"Tyler",
|
|
104
|
+
"Joyce",
|
|
105
|
+
"Aaron",
|
|
106
|
+
"Victoria",
|
|
107
|
+
"Jose",
|
|
108
|
+
"Olivia",
|
|
109
|
+
"Adam",
|
|
110
|
+
"Kelly",
|
|
111
|
+
"Nathan",
|
|
112
|
+
"Christina",
|
|
113
|
+
"Henry",
|
|
114
|
+
"Lauren",
|
|
115
|
+
"Douglas",
|
|
116
|
+
"Joan",
|
|
117
|
+
"Zachary",
|
|
118
|
+
"Evelyn",
|
|
119
|
+
"Peter",
|
|
120
|
+
"Judith",
|
|
121
|
+
"Kyle",
|
|
122
|
+
"Megan",
|
|
123
|
+
"Ethan",
|
|
124
|
+
"Cheryl",
|
|
125
|
+
"Walter",
|
|
126
|
+
"Andrea",
|
|
127
|
+
"Harold",
|
|
128
|
+
"Hannah",
|
|
129
|
+
"Jeremy",
|
|
130
|
+
"Martha",
|
|
131
|
+
"Christian",
|
|
132
|
+
"Jacqueline",
|
|
133
|
+
"Keith",
|
|
134
|
+
"Frances",
|
|
135
|
+
"Roger",
|
|
136
|
+
"Gloria",
|
|
137
|
+
"Noah",
|
|
138
|
+
"Ann",
|
|
139
|
+
"Gerald",
|
|
140
|
+
"Teresa",
|
|
141
|
+
"Carl",
|
|
142
|
+
"Kathryn",
|
|
143
|
+
"Terry",
|
|
144
|
+
"Sara",
|
|
145
|
+
"Sean",
|
|
146
|
+
"Janice",
|
|
147
|
+
"Austin",
|
|
148
|
+
"Jean",
|
|
149
|
+
"Arthur",
|
|
150
|
+
"Alice",
|
|
151
|
+
"Lawrence",
|
|
152
|
+
"Madison",
|
|
153
|
+
"Dylan",
|
|
154
|
+
"Doris",
|
|
155
|
+
"Jesse",
|
|
156
|
+
"Abigail",
|
|
157
|
+
"Jordan",
|
|
158
|
+
"Julia",
|
|
159
|
+
"Bryan",
|
|
160
|
+
"Judy",
|
|
161
|
+
"Billy",
|
|
162
|
+
"Grace",
|
|
163
|
+
"Joe",
|
|
164
|
+
"Denise",
|
|
165
|
+
"Bruce",
|
|
166
|
+
"Amber",
|
|
167
|
+
"Gabriel",
|
|
168
|
+
"Marilyn",
|
|
169
|
+
"Logan",
|
|
170
|
+
"Beverly",
|
|
171
|
+
"Albert",
|
|
172
|
+
"Danielle",
|
|
173
|
+
"Willie",
|
|
174
|
+
"Theresa",
|
|
175
|
+
"Alan",
|
|
176
|
+
"Sophia",
|
|
177
|
+
"Juan",
|
|
178
|
+
"Marie",
|
|
179
|
+
"Wayne",
|
|
180
|
+
"Diana",
|
|
181
|
+
"Elijah",
|
|
182
|
+
"Brittany",
|
|
183
|
+
"Randy",
|
|
184
|
+
"Natalie",
|
|
185
|
+
"Roy",
|
|
186
|
+
"Isabella",
|
|
187
|
+
"Vincent",
|
|
188
|
+
"Charlotte",
|
|
189
|
+
"Ralph",
|
|
190
|
+
"Rose",
|
|
191
|
+
"Eugene",
|
|
192
|
+
"Alexis",
|
|
193
|
+
"Russell",
|
|
194
|
+
"Kayla"
|
|
195
|
+
];
|
|
196
|
+
var lastNames = [
|
|
197
|
+
"Smith",
|
|
198
|
+
"Johnson",
|
|
199
|
+
"Williams",
|
|
200
|
+
"Brown",
|
|
201
|
+
"Jones",
|
|
202
|
+
"Garcia",
|
|
203
|
+
"Miller",
|
|
204
|
+
"Davis",
|
|
205
|
+
"Rodriguez",
|
|
206
|
+
"Martinez",
|
|
207
|
+
"Hernandez",
|
|
208
|
+
"Lopez",
|
|
209
|
+
"Gonzalez",
|
|
210
|
+
"Wilson",
|
|
211
|
+
"Anderson",
|
|
212
|
+
"Thomas",
|
|
213
|
+
"Taylor",
|
|
214
|
+
"Moore",
|
|
215
|
+
"Jackson",
|
|
216
|
+
"Martin",
|
|
217
|
+
"Lee",
|
|
218
|
+
"Perez",
|
|
219
|
+
"Thompson",
|
|
220
|
+
"White",
|
|
221
|
+
"Harris",
|
|
222
|
+
"Sanchez",
|
|
223
|
+
"Clark",
|
|
224
|
+
"Ramirez",
|
|
225
|
+
"Lewis",
|
|
226
|
+
"Robinson",
|
|
227
|
+
"Walker",
|
|
228
|
+
"Young",
|
|
229
|
+
"Allen",
|
|
230
|
+
"King",
|
|
231
|
+
"Wright",
|
|
232
|
+
"Scott",
|
|
233
|
+
"Torres",
|
|
234
|
+
"Nguyen",
|
|
235
|
+
"Hill",
|
|
236
|
+
"Flores",
|
|
237
|
+
"Green",
|
|
238
|
+
"Adams",
|
|
239
|
+
"Nelson",
|
|
240
|
+
"Baker",
|
|
241
|
+
"Hall",
|
|
242
|
+
"Rivera",
|
|
243
|
+
"Campbell",
|
|
244
|
+
"Mitchell",
|
|
245
|
+
"Carter",
|
|
246
|
+
"Roberts",
|
|
247
|
+
"Gomez",
|
|
248
|
+
"Phillips",
|
|
249
|
+
"Evans",
|
|
250
|
+
"Turner",
|
|
251
|
+
"Diaz",
|
|
252
|
+
"Parker",
|
|
253
|
+
"Cruz",
|
|
254
|
+
"Edwards",
|
|
255
|
+
"Collins",
|
|
256
|
+
"Reyes",
|
|
257
|
+
"Stewart",
|
|
258
|
+
"Morris",
|
|
259
|
+
"Morales",
|
|
260
|
+
"Murphy",
|
|
261
|
+
"Cook",
|
|
262
|
+
"Rogers",
|
|
263
|
+
"Gutierrez",
|
|
264
|
+
"Ortiz",
|
|
265
|
+
"Morgan",
|
|
266
|
+
"Cooper",
|
|
267
|
+
"Peterson",
|
|
268
|
+
"Bailey",
|
|
269
|
+
"Reed",
|
|
270
|
+
"Kelly",
|
|
271
|
+
"Howard",
|
|
272
|
+
"Ramos",
|
|
273
|
+
"Kim",
|
|
274
|
+
"Cox",
|
|
275
|
+
"Ward",
|
|
276
|
+
"Richardson",
|
|
277
|
+
"Watson",
|
|
278
|
+
"Brooks",
|
|
279
|
+
"Chavez",
|
|
280
|
+
"Wood",
|
|
281
|
+
"James",
|
|
282
|
+
"Bennett",
|
|
283
|
+
"Gray",
|
|
284
|
+
"Mendoza",
|
|
285
|
+
"Ruiz",
|
|
286
|
+
"Hughes",
|
|
287
|
+
"Price",
|
|
288
|
+
"Alvarez",
|
|
289
|
+
"Castillo",
|
|
290
|
+
"Sanders",
|
|
291
|
+
"Patel",
|
|
292
|
+
"Myers",
|
|
293
|
+
"Long",
|
|
294
|
+
"Ross",
|
|
295
|
+
"Foster",
|
|
296
|
+
"Jimenez",
|
|
297
|
+
"Powell",
|
|
298
|
+
"Jenkins",
|
|
299
|
+
"Perry",
|
|
300
|
+
"Russell",
|
|
301
|
+
"Sullivan",
|
|
302
|
+
"Bell",
|
|
303
|
+
"Coleman",
|
|
304
|
+
"Butler",
|
|
305
|
+
"Henderson",
|
|
306
|
+
"Barnes",
|
|
307
|
+
"Gonzales",
|
|
308
|
+
"Fisher",
|
|
309
|
+
"Vasquez",
|
|
310
|
+
"Simmons",
|
|
311
|
+
"Romero",
|
|
312
|
+
"Jordan",
|
|
313
|
+
"Patterson",
|
|
314
|
+
"Alexander",
|
|
315
|
+
"Hamilton",
|
|
316
|
+
"Graham",
|
|
317
|
+
"Reynolds",
|
|
318
|
+
"Griffin",
|
|
319
|
+
"Wallace",
|
|
320
|
+
"Moreno",
|
|
321
|
+
"West",
|
|
322
|
+
"Cole",
|
|
323
|
+
"Hayes",
|
|
324
|
+
"Bryant",
|
|
325
|
+
"Herrera",
|
|
326
|
+
"Gibson",
|
|
327
|
+
"Ellis",
|
|
328
|
+
"Tran",
|
|
329
|
+
"Medina",
|
|
330
|
+
"Aguilar",
|
|
331
|
+
"Stevens",
|
|
332
|
+
"Murray",
|
|
333
|
+
"Ford",
|
|
334
|
+
"Castro",
|
|
335
|
+
"Marshall",
|
|
336
|
+
"Owens",
|
|
337
|
+
"Harrison",
|
|
338
|
+
"Fernandez",
|
|
339
|
+
"McDonald",
|
|
340
|
+
"Woods",
|
|
341
|
+
"Washington",
|
|
342
|
+
"Kennedy",
|
|
343
|
+
"Wells",
|
|
344
|
+
"Vargas",
|
|
345
|
+
"Henry",
|
|
346
|
+
"Chen",
|
|
347
|
+
"Freeman",
|
|
348
|
+
"Webb",
|
|
349
|
+
"Tucker",
|
|
350
|
+
"Guzman",
|
|
351
|
+
"Burns",
|
|
352
|
+
"Novak",
|
|
353
|
+
"Wagner",
|
|
354
|
+
"Estrada",
|
|
355
|
+
"Lin",
|
|
356
|
+
"Weaver"
|
|
357
|
+
];
|
|
358
|
+
var countries = [
|
|
359
|
+
"United States",
|
|
360
|
+
"Canada",
|
|
361
|
+
"United Kingdom",
|
|
362
|
+
"Germany",
|
|
363
|
+
"France",
|
|
364
|
+
"Japan",
|
|
365
|
+
"Australia",
|
|
366
|
+
"Brazil",
|
|
367
|
+
"India",
|
|
368
|
+
"China",
|
|
369
|
+
"Mexico",
|
|
370
|
+
"Italy",
|
|
371
|
+
"Spain",
|
|
372
|
+
"Netherlands",
|
|
373
|
+
"Sweden",
|
|
374
|
+
"Norway",
|
|
375
|
+
"Denmark",
|
|
376
|
+
"Finland",
|
|
377
|
+
"Switzerland",
|
|
378
|
+
"Austria",
|
|
379
|
+
"Belgium",
|
|
380
|
+
"Ireland",
|
|
381
|
+
"New Zealand",
|
|
382
|
+
"Singapore",
|
|
383
|
+
"South Korea",
|
|
384
|
+
"South Africa",
|
|
385
|
+
"Argentina",
|
|
386
|
+
"Chile",
|
|
387
|
+
"Colombia",
|
|
388
|
+
"Peru",
|
|
389
|
+
"Portugal",
|
|
390
|
+
"Greece",
|
|
391
|
+
"Turkey",
|
|
392
|
+
"Israel",
|
|
393
|
+
"Egypt",
|
|
394
|
+
"Thailand"
|
|
395
|
+
];
|
|
396
|
+
var cities = [
|
|
397
|
+
"New York",
|
|
398
|
+
"Los Angeles",
|
|
399
|
+
"Chicago",
|
|
400
|
+
"Houston",
|
|
401
|
+
"Phoenix",
|
|
402
|
+
"Philadelphia",
|
|
403
|
+
"San Antonio",
|
|
404
|
+
"San Diego",
|
|
405
|
+
"Dallas",
|
|
406
|
+
"San Jose",
|
|
407
|
+
"London",
|
|
408
|
+
"Paris",
|
|
409
|
+
"Berlin",
|
|
410
|
+
"Tokyo",
|
|
411
|
+
"Sydney",
|
|
412
|
+
"Toronto",
|
|
413
|
+
"Mumbai",
|
|
414
|
+
"Beijing",
|
|
415
|
+
"Sao Paulo",
|
|
416
|
+
"Mexico City",
|
|
417
|
+
"Madrid",
|
|
418
|
+
"Rome",
|
|
419
|
+
"Amsterdam",
|
|
420
|
+
"Stockholm",
|
|
421
|
+
"Oslo",
|
|
422
|
+
"Copenhagen",
|
|
423
|
+
"Helsinki",
|
|
424
|
+
"Zurich",
|
|
425
|
+
"Vienna",
|
|
426
|
+
"Brussels",
|
|
427
|
+
"Dublin",
|
|
428
|
+
"Auckland",
|
|
429
|
+
"Singapore",
|
|
430
|
+
"Seoul",
|
|
431
|
+
"Cape Town",
|
|
432
|
+
"Buenos Aires"
|
|
433
|
+
];
|
|
434
|
+
var domains = ["example.com", "test.org", "demo.net", "sample.io", "mail.com", "web.dev"];
|
|
435
|
+
var streetNames = [
|
|
436
|
+
"Main St",
|
|
437
|
+
"High St",
|
|
438
|
+
"Broadway",
|
|
439
|
+
"Park Ave",
|
|
440
|
+
"Oak St",
|
|
441
|
+
"Cedar Ln",
|
|
442
|
+
"Maple Ave",
|
|
443
|
+
"Washington St",
|
|
444
|
+
"Lake View Dr",
|
|
445
|
+
"Sunset Blvd",
|
|
446
|
+
"River Rd",
|
|
447
|
+
"Church St",
|
|
448
|
+
"Market St"
|
|
449
|
+
];
|
|
450
|
+
var sentences = [
|
|
451
|
+
"The quick brown fox jumps over the lazy dog.",
|
|
452
|
+
"A journey of a thousand miles begins with a single step.",
|
|
453
|
+
"To be or not to be, that is the question.",
|
|
454
|
+
"All that glitters is not gold.",
|
|
455
|
+
"Fortune favors the bold.",
|
|
456
|
+
"Knowledge is power.",
|
|
457
|
+
"The pen is mightier than the sword.",
|
|
458
|
+
"Actions speak louder than words.",
|
|
459
|
+
"Better late than never.",
|
|
460
|
+
"Where there is a will, there is a way."
|
|
461
|
+
];
|
|
462
|
+
|
|
463
|
+
// src/generators.ts
|
|
464
|
+
var generators = {
|
|
465
|
+
email: (ctx) => {
|
|
466
|
+
const user = generators.username(ctx);
|
|
467
|
+
const domain = ctx.random.pick(domains);
|
|
468
|
+
return `${user}@${domain}`;
|
|
469
|
+
},
|
|
470
|
+
firstName: (ctx) => ctx.random.pick(firstNames),
|
|
471
|
+
lastName: (ctx) => ctx.random.pick(lastNames),
|
|
472
|
+
fullName: (ctx) => `${generators.firstName(ctx)} ${generators.lastName(ctx)}`,
|
|
473
|
+
phone: (ctx) => {
|
|
474
|
+
const part = () => ctx.random.nextInt(100, 999);
|
|
475
|
+
const last = () => ctx.random.nextInt(1e3, 9999);
|
|
476
|
+
return `+1-${part()}-${part()}-${last()}`;
|
|
477
|
+
},
|
|
478
|
+
username: (ctx) => {
|
|
479
|
+
const first = generators.firstName(ctx).toLowerCase();
|
|
480
|
+
const last = generators.lastName(ctx).toLowerCase();
|
|
481
|
+
const suffix = ctx.random.nextInt(10, 99);
|
|
482
|
+
return `${first}.${last}${suffix}`;
|
|
483
|
+
},
|
|
484
|
+
url: (ctx) => {
|
|
485
|
+
const domain = ctx.random.pick(domains);
|
|
486
|
+
const path = generators.firstName(ctx).toLowerCase();
|
|
487
|
+
return `https://${domain}/${path}`;
|
|
488
|
+
},
|
|
489
|
+
country: (ctx) => ctx.random.pick(countries),
|
|
490
|
+
city: (ctx) => ctx.random.pick(cities),
|
|
491
|
+
address: (ctx) => {
|
|
492
|
+
const num = ctx.random.nextInt(1, 9999);
|
|
493
|
+
const street = ctx.random.pick(streetNames);
|
|
494
|
+
return `${num} ${street}`;
|
|
495
|
+
},
|
|
496
|
+
uuid: (ctx) => {
|
|
497
|
+
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
|
|
498
|
+
const r = ctx.random.next() * 16 | 0;
|
|
499
|
+
const v = c === "x" ? r : r & 3 | 8;
|
|
500
|
+
return v.toString(16);
|
|
501
|
+
});
|
|
502
|
+
},
|
|
503
|
+
dateRecent: (ctx, days = 30) => {
|
|
504
|
+
const date = /* @__PURE__ */ new Date();
|
|
505
|
+
date.setDate(date.getDate() - ctx.random.nextInt(0, days));
|
|
506
|
+
return date.toISOString();
|
|
507
|
+
},
|
|
508
|
+
datePast: (ctx, years = 10) => {
|
|
509
|
+
const date = /* @__PURE__ */ new Date();
|
|
510
|
+
date.setFullYear(date.getFullYear() - ctx.random.nextInt(1, years));
|
|
511
|
+
return date.toISOString();
|
|
512
|
+
},
|
|
513
|
+
booleanWeighted: (ctx, weight = 0.5) => ctx.random.boolean(weight),
|
|
514
|
+
intRange: (ctx, min = 0, max = 100) => ctx.random.nextInt(min, max),
|
|
515
|
+
decimalRange: (ctx, min = 0, max = 100, precision = 2) => {
|
|
516
|
+
const val = ctx.random.next() * (max - min) + min;
|
|
517
|
+
return parseFloat(val.toFixed(precision));
|
|
518
|
+
},
|
|
519
|
+
textSentence: (ctx) => ctx.random.pick(sentences),
|
|
520
|
+
textParagraph: (ctx, sentences2 = 3) => {
|
|
521
|
+
return Array.from({ length: sentences2 }, () => generators.textSentence(ctx)).join(" ");
|
|
522
|
+
}
|
|
523
|
+
};
|
|
524
|
+
export {
|
|
525
|
+
generators
|
|
526
|
+
};
|
|
527
|
+
//# sourceMappingURL=generators.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/data.ts","../src/generators.ts"],"sourcesContent":["export const firstNames = [\n 'James', 'Mary', 'Robert', 'Patricia', 'John', 'Jennifer', 'Michael', 'Linda',\n 'David', 'Elizabeth', 'William', 'Barbara', 'Richard', 'Susan', 'Joseph', 'Jessica',\n 'Thomas', 'Sarah', 'Christopher', 'Karen', 'Charles', 'Lisa', 'Daniel', 'Nancy',\n 'Matthew', 'Betty', 'Anthony', 'Sandra', 'Mark', 'Margaret', 'Donald', 'Ashley',\n 'Steven', 'Kimberly', 'Andrew', 'Donna', 'Paul', 'Emily', 'Joshua', 'Michelle',\n 'Kenneth', 'Carol', 'Kevin', 'Amanda', 'Brian', 'Dorothy', 'George', 'Melissa',\n 'Timothy', 'Deborah', 'Ronald', 'Stephanie', 'Edward', 'Rebecca', 'Jason', 'Sharon',\n 'Jeffrey', 'Laura', 'Ryan', 'Cynthia', 'Jacob', 'Kathleen', 'Gary', 'Amy',\n 'Nicholas', 'Angela', 'Eric', 'Shirley', 'Jonathan', 'Anna', 'Stephen', 'Brenda',\n 'Larry', 'Pamela', 'Justin', 'Nicole', 'Scott', 'Emma', 'Brandon', 'Helen',\n 'Benjamin', 'Debra', 'Samuel', 'Rachel', 'Gregory', 'Carolyn', 'Alexander', 'Janet',\n 'Frank', 'Maria', 'Patrick', 'Catherine', 'Raymond', 'Heather', 'Jack', 'Diane',\n 'Dennis', 'Virginia', 'Jerry', 'Julie', 'Tyler', 'Joyce', 'Aaron', 'Victoria',\n 'Jose', 'Olivia', 'Adam', 'Kelly', 'Nathan', 'Christina', 'Henry', 'Lauren',\n 'Douglas', 'Joan', 'Zachary', 'Evelyn', 'Peter', 'Judith', 'Kyle', 'Megan',\n 'Ethan', 'Cheryl', 'Walter', 'Andrea', 'Harold', 'Hannah', 'Jeremy', 'Martha',\n 'Christian', 'Jacqueline', 'Keith', 'Frances', 'Roger', 'Gloria', 'Noah', 'Ann',\n 'Gerald', 'Teresa', 'Carl', 'Kathryn', 'Terry', 'Sara', 'Sean', 'Janice',\n 'Austin', 'Jean', 'Arthur', 'Alice', 'Lawrence', 'Madison', 'Dylan', 'Doris',\n 'Jesse', 'Abigail', 'Jordan', 'Julia', 'Bryan', 'Judy', 'Billy', 'Grace',\n 'Joe', 'Denise', 'Bruce', 'Amber', 'Gabriel', 'Marilyn', 'Logan', 'Beverly',\n 'Albert', 'Danielle', 'Willie', 'Theresa', 'Alan', 'Sophia', 'Juan', 'Marie',\n 'Wayne', 'Diana', 'Elijah', 'Brittany', 'Randy', 'Natalie', 'Roy', 'Isabella',\n 'Vincent', 'Charlotte', 'Ralph', 'Rose', 'Eugene', 'Alexis', 'Russell', 'Kayla'\n]\n\nexport const lastNames = [\n 'Smith', 'Johnson', 'Williams', 'Brown', 'Jones', 'Garcia', 'Miller', 'Davis',\n 'Rodriguez', 'Martinez', 'Hernandez', 'Lopez', 'Gonzalez', 'Wilson', 'Anderson', 'Thomas',\n 'Taylor', 'Moore', 'Jackson', 'Martin', 'Lee', 'Perez', 'Thompson', 'White',\n 'Harris', 'Sanchez', 'Clark', 'Ramirez', 'Lewis', 'Robinson', 'Walker', 'Young',\n 'Allen', 'King', 'Wright', 'Scott', 'Torres', 'Nguyen', 'Hill', 'Flores',\n 'Green', 'Adams', 'Nelson', 'Baker', 'Hall', 'Rivera', 'Campbell', 'Mitchell',\n 'Carter', 'Roberts', 'Gomez', 'Phillips', 'Evans', 'Turner', 'Diaz', 'Parker',\n 'Cruz', 'Edwards', 'Collins', 'Reyes', 'Stewart', 'Morris', 'Morales', 'Murphy',\n 'Cook', 'Rogers', 'Gutierrez', 'Ortiz', 'Morgan', 'Cooper', 'Peterson', 'Bailey',\n 'Reed', 'Kelly', 'Howard', 'Ramos', 'Kim', 'Cox', 'Ward', 'Richardson',\n 'Watson', 'Brooks', 'Chavez', 'Wood', 'James', 'Bennett', 'Gray', 'Mendoza',\n 'Ruiz', 'Hughes', 'Price', 'Alvarez', 'Castillo', 'Sanders', 'Patel', 'Myers',\n 'Long', 'Ross', 'Foster', 'Jimenez', 'Powell', 'Jenkins', 'Perry', 'Russell',\n 'Sullivan', 'Bell', 'Coleman', 'Butler', 'Henderson', 'Barnes', 'Gonzales', 'Fisher',\n 'Vasquez', 'Simmons', 'Romero', 'Jordan', 'Patterson', 'Alexander', 'Hamilton', 'Graham',\n 'Reynolds', 'Griffin', 'Wallace', 'Moreno', 'West', 'Cole', 'Hayes', 'Bryant',\n 'Herrera', 'Gibson', 'Ellis', 'Tran', 'Medina', 'Aguilar', 'Stevens', 'Murray',\n 'Ford', 'Castro', 'Marshall', 'Owens', 'Harrison', 'Fernandez', 'McDonald', 'Woods',\n 'Washington', 'Kennedy', 'Wells', 'Vargas', 'Henry', 'Chen', 'Freeman', 'Webb',\n 'Tucker', 'Guzman', 'Burns', 'Novak', 'Wagner', 'Estrada', 'Lin', 'Weaver'\n]\n\nexport const countries = [\n 'United States', 'Canada', 'United Kingdom', 'Germany', 'France', 'Japan', 'Australia',\n 'Brazil', 'India', 'China', 'Mexico', 'Italy', 'Spain', 'Netherlands', 'Sweden',\n 'Norway', 'Denmark', 'Finland', 'Switzerland', 'Austria', 'Belgium', 'Ireland',\n 'New Zealand', 'Singapore', 'South Korea', 'South Africa', 'Argentina', 'Chile',\n 'Colombia', 'Peru', 'Portugal', 'Greece', 'Turkey', 'Israel', 'Egypt', 'Thailand'\n]\n\nexport const cities = [\n 'New York', 'Los Angeles', 'Chicago', 'Houston', 'Phoenix', 'Philadelphia', 'San Antonio',\n 'San Diego', 'Dallas', 'San Jose', 'London', 'Paris', 'Berlin', 'Tokyo', 'Sydney',\n 'Toronto', 'Mumbai', 'Beijing', 'Sao Paulo', 'Mexico City', 'Madrid', 'Rome',\n 'Amsterdam', 'Stockholm', 'Oslo', 'Copenhagen', 'Helsinki', 'Zurich', 'Vienna',\n 'Brussels', 'Dublin', 'Auckland', 'Singapore', 'Seoul', 'Cape Town', 'Buenos Aires'\n]\n\nexport const domains = ['example.com', 'test.org', 'demo.net', 'sample.io', 'mail.com', 'web.dev']\n\nexport const streetNames = [\n 'Main St', 'High St', 'Broadway', 'Park Ave', 'Oak St', 'Cedar Ln', 'Maple Ave',\n 'Washington St', 'Lake View Dr', 'Sunset Blvd', 'River Rd', 'Church St', 'Market St'\n]\n\nexport const sentences = [\n 'The quick brown fox jumps over the lazy dog.',\n 'A journey of a thousand miles begins with a single step.',\n 'To be or not to be, that is the question.',\n 'All that glitters is not gold.',\n 'Fortune favors the bold.',\n 'Knowledge is power.',\n 'The pen is mightier than the sword.',\n 'Actions speak louder than words.',\n 'Better late than never.',\n 'Where there is a will, there is a way.'\n]\n","import { Random } from 'schema-seed-core'\nimport * as data from './data.js'\n\nexport interface GeneratorContext {\n random: Random\n}\n\nexport const generators = {\n email: (ctx: GeneratorContext) => {\n const user = generators.username(ctx)\n const domain = ctx.random.pick(data.domains)\n return `${user}@${domain}`\n },\n\n firstName: (ctx: GeneratorContext) => ctx.random.pick(data.firstNames),\n\n lastName: (ctx: GeneratorContext) => ctx.random.pick(data.lastNames),\n\n fullName: (ctx: GeneratorContext) => `${generators.firstName(ctx)} ${generators.lastName(ctx)}`,\n\n phone: (ctx: GeneratorContext) => {\n const part = () => ctx.random.nextInt(100, 999)\n const last = () => ctx.random.nextInt(1000, 9999)\n return `+1-${part()}-${part()}-${last()}`\n },\n\n username: (ctx: GeneratorContext) => {\n const first = generators.firstName(ctx).toLowerCase()\n const last = generators.lastName(ctx).toLowerCase()\n const suffix = ctx.random.nextInt(10, 99)\n return `${first}.${last}${suffix}`\n },\n\n url: (ctx: GeneratorContext) => {\n const domain = ctx.random.pick(data.domains)\n const path = generators.firstName(ctx).toLowerCase()\n return `https://${domain}/${path}`\n },\n\n country: (ctx: GeneratorContext) => ctx.random.pick(data.countries),\n\n city: (ctx: GeneratorContext) => ctx.random.pick(data.cities),\n\n address: (ctx: GeneratorContext) => {\n const num = ctx.random.nextInt(1, 9999)\n const street = ctx.random.pick(data.streetNames)\n return `${num} ${street}`\n },\n\n uuid: (ctx: GeneratorContext) => {\n return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, (c) => {\n const r = (ctx.random.next() * 16) | 0\n const v = c === 'x' ? r : (r & 0x3) | 0x8\n return v.toString(16)\n })\n },\n\n dateRecent: (ctx: GeneratorContext, days = 30) => {\n const date = new Date()\n date.setDate(date.getDate() - ctx.random.nextInt(0, days))\n return date.toISOString()\n },\n\n datePast: (ctx: GeneratorContext, years = 10) => {\n const date = new Date()\n date.setFullYear(date.getFullYear() - ctx.random.nextInt(1, years))\n return date.toISOString()\n },\n\n booleanWeighted: (ctx: GeneratorContext, weight = 0.5) => ctx.random.boolean(weight),\n\n intRange: (ctx: GeneratorContext, min = 0, max = 100) => ctx.random.nextInt(min, max),\n\n decimalRange: (ctx: GeneratorContext, min = 0, max = 100, precision = 2) => {\n const val = ctx.random.next() * (max - min) + min\n return parseFloat(val.toFixed(precision))\n },\n\n textSentence: (ctx: GeneratorContext) => ctx.random.pick(data.sentences),\n\n textParagraph: (ctx: GeneratorContext, sentences = 3) => {\n return Array.from({ length: sentences }, () => generators.textSentence(ctx)).join(' ')\n }\n}\n\nexport type GeneratorId = keyof typeof generators\n"],"mappings":"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","names":["sentences"]}
|