@dcrackel/hematournamentui 1.0.99 → 1.0.101

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,10 +1,16 @@
1
1
  {
2
2
  "name": "@dcrackel/hematournamentui",
3
3
  "private": false,
4
- "version": "1.0.99",
4
+ "version": "1.0.101",
5
5
  "type": "module",
6
- "main": "dist/HemaTouranmentUI-lib.umd.js",
7
- "module": "dist/HemaTouranmentUI-lib.es.js",
6
+ "main": "dist/HemaTournamentUI-lib.umd.js",
7
+ "module": "dist/HemaTournamentUI-lib.es.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/HemaTournamentUI-lib.es.js",
11
+ "require": "./dist/HemaTournamentUI-lib.umd.js"
12
+ }
13
+ },
8
14
  "scripts": {
9
15
  "dev-donotuse": "vite",
10
16
  "build": "npm version patch && vite build",
@@ -0,0 +1,563 @@
1
+ const eventPersonGetInitialPoolAssignmentsLivePools =
2
+ {
3
+ "event": {
4
+ "EventId": 5,
5
+ "TournamentId": 4,
6
+ "EventName": "Feline Longsword",
7
+ "Date": "2024-05-22",
8
+ "StartTime": "17:25:31",
9
+ "NumberOfRings": 2,
10
+ "NumberOfPools": 3,
11
+ "PoolSize": 7,
12
+ "Flights": 1,
13
+ "WeaponId": 1,
14
+ "Status": "live",
15
+ "Present": 10,
16
+ "Absent": 0,
17
+ "Removed": 0
18
+ },
19
+ "pools": {
20
+ "EventId": 5,
21
+ "TournamentId": 4,
22
+ "EventName": "Feline Longsword",
23
+ "Date": "2024-05-22",
24
+ "StartTime": "17:25:31",
25
+ "NumberOfRings": 2,
26
+ "NumberOfPools": 3,
27
+ "PoolSize": 7,
28
+ "Flights": 1,
29
+ "WeaponId": 1,
30
+ "Status": "live",
31
+ "Pools": [
32
+ {
33
+ "PoolId": 137,
34
+ "Name": "Pool 1",
35
+ "RingName": "Ring 1",
36
+ "Flight": 1,
37
+ "PoolType": "pool",
38
+ "EventId": 5,
39
+ "Status": "live",
40
+ "Updated": "2024-06-17T20:38:06.000Z",
41
+ "Staff": [
42
+ {
43
+ "Id": 2,
44
+ "TournamentId": 4,
45
+ "EventId": 5,
46
+ "PoolId": 137,
47
+ "PersonId": 23,
48
+ "Role": "Director",
49
+ "Person": {
50
+ "PersonId": 23,
51
+ "DisplayName": "Lucas Garcia",
52
+ "Pronouns": "He/Him",
53
+ "FirstName": "Lucas",
54
+ "LastName": "Garcia",
55
+ "Birthday": "2024-06-06",
56
+ "ClubId": 1,
57
+ "ShowData": true,
58
+ "Club": {
59
+ "ClubId": 1,
60
+ "Name": "Acme Fencing Club",
61
+ "ShortName": "ACME",
62
+ "Description": "Acme Fencing Club",
63
+ "AddressId": 1,
64
+ "Color1": "rose",
65
+ "Color2": "navy"
66
+ },
67
+ "Images": [
68
+ {
69
+ "url": "https://randomuser.me/api/portraits/men/77.jpg"
70
+ }
71
+ ]
72
+ }
73
+ },
74
+ {
75
+ "Id": 4,
76
+ "TournamentId": 4,
77
+ "EventId": 5,
78
+ "PoolId": 137,
79
+ "PersonId": 22,
80
+ "Role": "Line Judge",
81
+ "Person": {
82
+ "PersonId": 22,
83
+ "DisplayName": "Bob Smith",
84
+ "Pronouns": "He/Him",
85
+ "FirstName": "Bob",
86
+ "LastName": "Smith",
87
+ "Birthday": "2024-06-06",
88
+ "ClubId": 6,
89
+ "ShowData": true,
90
+ "Club": {
91
+ "ClubId": 6,
92
+ "Name": "SwordPlay Society",
93
+ "ShortName": "SS",
94
+ "Description": "SwordPlay Society",
95
+ "AddressId": 1,
96
+ "Color1": "red",
97
+ "Color2": "blue"
98
+ },
99
+ "Images": [
100
+ {
101
+ "url": "https://randomuser.me/api/portraits/men/81.jpg"
102
+ }
103
+ ]
104
+ }
105
+ }
106
+ ],
107
+ "BoutsLeft": 10
108
+ },
109
+ {
110
+ "PoolId": 138,
111
+ "Name": "Pool 2",
112
+ "RingName": "Ring 2",
113
+ "Flight": 1,
114
+ "PoolType": "pool",
115
+ "EventId": 5,
116
+ "Status": "live",
117
+ "Updated": "2024-06-17T20:38:06.000Z",
118
+ "Staff": [
119
+ {
120
+ "Id": 3,
121
+ "TournamentId": 4,
122
+ "EventId": 5,
123
+ "PoolId": 138,
124
+ "PersonId": 24,
125
+ "Role": "Director",
126
+ "Person": {
127
+ "PersonId": 24,
128
+ "DisplayName": "Mia Rodriguez",
129
+ "Pronouns": "She/Her",
130
+ "FirstName": "Mia",
131
+ "LastName": "Rodriguez",
132
+ "Birthday": "2024-06-06",
133
+ "ClubId": 2,
134
+ "ShowData": true,
135
+ "Club": {
136
+ "ClubId": 2,
137
+ "Name": "Historical Fencing Of Anywhere",
138
+ "ShortName": "HFoA",
139
+ "Description": "is",
140
+ "AddressId": 1,
141
+ "Color1": "red",
142
+ "Color2": "blue"
143
+ },
144
+ "Images": [
145
+ {
146
+ "url": "https://randomuser.me/api/portraits/women/89.jpg"
147
+ }
148
+ ]
149
+ }
150
+ }
151
+ ],
152
+ "BoutsLeft": 10
153
+ }
154
+ ],
155
+ "EventPerson": [
156
+ {
157
+ "Id": 97,
158
+ "EventId": 5,
159
+ "PoolId": 137,
160
+ "PersonId": 1,
161
+ "Seed": 4,
162
+ "PoolPosition": 4,
163
+ "Status": "Present",
164
+ "Person": {
165
+ "PersonId": 1,
166
+ "DisplayName": "Dave Smith",
167
+ "Pronouns": null,
168
+ "FirstName": "Dave",
169
+ "LastName": "Smith",
170
+ "Birthday": null,
171
+ "ClubId": 4,
172
+ "ShowData": true,
173
+ "Club": {
174
+ "ClubId": 4,
175
+ "Name": "Guardians of the Guard",
176
+ "ShortName": "GotG",
177
+ "Description": "Guardians of the Guard",
178
+ "AddressId": 1,
179
+ "Color1": "purple",
180
+ "Color2": "orange"
181
+ },
182
+ "Images": [
183
+ {
184
+ "url": "https://randomuser.me/api/portraits/men/22.jpg"
185
+ }
186
+ ]
187
+ },
188
+ "Pool": {
189
+ "PoolId": 137,
190
+ "Name": "Pool 1",
191
+ "RingName": "Ring 1",
192
+ "Flight": 1,
193
+ "PoolType": "pool",
194
+ "EventId": 5,
195
+ "Status": "live",
196
+ "Updated": "2024-06-17T20:38:06.000Z"
197
+ }
198
+ },
199
+ {
200
+ "Id": 102,
201
+ "EventId": 5,
202
+ "PoolId": 137,
203
+ "PersonId": 14,
204
+ "Seed": 5,
205
+ "PoolPosition": 5,
206
+ "Status": "Present",
207
+ "Person": {
208
+ "PersonId": 14,
209
+ "DisplayName": "Jordan Allen",
210
+ "Pronouns": "They/Them",
211
+ "FirstName": "Jordan",
212
+ "LastName": "Allen",
213
+ "Birthday": "1995-08-12",
214
+ "ClubId": 5,
215
+ "ShowData": true,
216
+ "Club": {
217
+ "ClubId": 5,
218
+ "Name": "Fechtastic Fighters",
219
+ "ShortName": "FF",
220
+ "Description": "Fechtastic Fighters",
221
+ "AddressId": 1,
222
+ "Color1": "green",
223
+ "Color2": "silver"
224
+ },
225
+ "Images": []
226
+ },
227
+ "Pool": {
228
+ "PoolId": 137,
229
+ "Name": "Pool 1",
230
+ "RingName": "Ring 1",
231
+ "Flight": 1,
232
+ "PoolType": "pool",
233
+ "EventId": 5,
234
+ "Status": "live",
235
+ "Updated": "2024-06-17T20:38:06.000Z"
236
+ }
237
+ },
238
+ {
239
+ "Id": 103,
240
+ "EventId": 5,
241
+ "PoolId": 137,
242
+ "PersonId": 10,
243
+ "Seed": 1,
244
+ "PoolPosition": 1,
245
+ "Status": "Present",
246
+ "Person": {
247
+ "PersonId": 10,
248
+ "DisplayName": "Melissa Jones",
249
+ "Pronouns": "She/Her",
250
+ "FirstName": "Melissa",
251
+ "LastName": "Jones",
252
+ "Birthday": "1993-10-14",
253
+ "ClubId": 4,
254
+ "ShowData": true,
255
+ "Club": {
256
+ "ClubId": 4,
257
+ "Name": "Guardians of the Guard",
258
+ "ShortName": "GotG",
259
+ "Description": "Guardians of the Guard",
260
+ "AddressId": 1,
261
+ "Color1": "purple",
262
+ "Color2": "orange"
263
+ },
264
+ "Images": []
265
+ },
266
+ "Pool": {
267
+ "PoolId": 137,
268
+ "Name": "Pool 1",
269
+ "RingName": "Ring 1",
270
+ "Flight": 1,
271
+ "PoolType": "pool",
272
+ "EventId": 5,
273
+ "Status": "live",
274
+ "Updated": "2024-06-17T20:38:06.000Z"
275
+ }
276
+ },
277
+ {
278
+ "Id": 105,
279
+ "EventId": 5,
280
+ "PoolId": 138,
281
+ "PersonId": 22,
282
+ "Seed": 6,
283
+ "PoolPosition": 6,
284
+ "Status": "Present",
285
+ "Person": {
286
+ "PersonId": 22,
287
+ "DisplayName": "Bob Smith",
288
+ "Pronouns": "He/Him",
289
+ "FirstName": "Bob",
290
+ "LastName": "Smith",
291
+ "Birthday": "2024-06-06",
292
+ "ClubId": 6,
293
+ "ShowData": true,
294
+ "Club": {
295
+ "ClubId": 6,
296
+ "Name": "SwordPlay Society",
297
+ "ShortName": "SS",
298
+ "Description": "SwordPlay Society",
299
+ "AddressId": 1,
300
+ "Color1": "red",
301
+ "Color2": "blue"
302
+ },
303
+ "Images": [
304
+ {
305
+ "url": "https://randomuser.me/api/portraits/men/81.jpg"
306
+ }
307
+ ]
308
+ },
309
+ "Pool": {
310
+ "PoolId": 138,
311
+ "Name": "Pool 2",
312
+ "RingName": "Ring 2",
313
+ "Flight": 1,
314
+ "PoolType": "pool",
315
+ "EventId": 5,
316
+ "Status": "live",
317
+ "Updated": "2024-06-17T20:38:06.000Z"
318
+ }
319
+ },
320
+ {
321
+ "Id": 106,
322
+ "EventId": 5,
323
+ "PoolId": 138,
324
+ "PersonId": 4,
325
+ "Seed": 2,
326
+ "PoolPosition": 2,
327
+ "Status": "Present",
328
+ "Person": {
329
+ "PersonId": 4,
330
+ "DisplayName": "Kim Bullock",
331
+ "Pronouns": "He/Him",
332
+ "FirstName": "Kim",
333
+ "LastName": "Bullock",
334
+ "Birthday": "1963-07-09",
335
+ "ClubId": 1,
336
+ "ShowData": true,
337
+ "Club": {
338
+ "ClubId": 1,
339
+ "Name": "Acme Fencing Club",
340
+ "ShortName": "ACME",
341
+ "Description": "Acme Fencing Club",
342
+ "AddressId": 1,
343
+ "Color1": "rose",
344
+ "Color2": "navy"
345
+ },
346
+ "Images": [
347
+ {
348
+ "url": "https://randomuser.me/api/portraits/women/9.jpg"
349
+ }
350
+ ]
351
+ },
352
+ "Pool": {
353
+ "PoolId": 138,
354
+ "Name": "Pool 2",
355
+ "RingName": "Ring 2",
356
+ "Flight": 1,
357
+ "PoolType": "pool",
358
+ "EventId": 5,
359
+ "Status": "live",
360
+ "Updated": "2024-06-17T20:38:06.000Z"
361
+ }
362
+ },
363
+ {
364
+ "Id": 107,
365
+ "EventId": 5,
366
+ "PoolId": 138,
367
+ "PersonId": 2,
368
+ "Seed": 3,
369
+ "PoolPosition": 3,
370
+ "Status": "Present",
371
+ "Person": {
372
+ "PersonId": 2,
373
+ "DisplayName": "Kyle Edwards",
374
+ "Pronouns": "They/Them",
375
+ "FirstName": "Kyle",
376
+ "LastName": "Edwards",
377
+ "Birthday": null,
378
+ "ClubId": 6,
379
+ "ShowData": true,
380
+ "Club": {
381
+ "ClubId": 6,
382
+ "Name": "SwordPlay Society",
383
+ "ShortName": "SS",
384
+ "Description": "SwordPlay Society",
385
+ "AddressId": 1,
386
+ "Color1": "red",
387
+ "Color2": "blue"
388
+ },
389
+ "Images": []
390
+ },
391
+ "Pool": {
392
+ "PoolId": 138,
393
+ "Name": "Pool 2",
394
+ "RingName": "Ring 2",
395
+ "Flight": 1,
396
+ "PoolType": "pool",
397
+ "EventId": 5,
398
+ "Status": "live",
399
+ "Updated": "2024-06-17T20:38:06.000Z"
400
+ }
401
+ },
402
+ {
403
+ "Id": 108,
404
+ "EventId": 5,
405
+ "PoolId": 138,
406
+ "PersonId": 5,
407
+ "Seed": 7,
408
+ "PoolPosition": 7,
409
+ "Status": "Present",
410
+ "Person": {
411
+ "PersonId": 5,
412
+ "DisplayName": "Darlene Acevedo",
413
+ "Pronouns": "He/Him",
414
+ "FirstName": "Darlene",
415
+ "LastName": "Acevedo",
416
+ "Birthday": "1992-08-11",
417
+ "ClubId": 9,
418
+ "ShowData": true,
419
+ "Club": {
420
+ "ClubId": 9,
421
+ "Name": "Cats Cutlass Club of Canton",
422
+ "ShortName": "CCCoC",
423
+ "Description": null,
424
+ "AddressId": null,
425
+ "Color1": "red",
426
+ "Color2": "blue"
427
+ },
428
+ "Images": []
429
+ },
430
+ "Pool": {
431
+ "PoolId": 138,
432
+ "Name": "Pool 2",
433
+ "RingName": "Ring 2",
434
+ "Flight": 1,
435
+ "PoolType": "pool",
436
+ "EventId": 5,
437
+ "Status": "live",
438
+ "Updated": "2024-06-17T20:38:06.000Z"
439
+ }
440
+ },
441
+ {
442
+ "Id": 109,
443
+ "EventId": 5,
444
+ "PoolId": 137,
445
+ "PersonId": 6,
446
+ "Seed": 8,
447
+ "PoolPosition": 8,
448
+ "Status": "Present",
449
+ "Person": {
450
+ "PersonId": 6,
451
+ "DisplayName": "Courtney Medina",
452
+ "Pronouns": "They/Them",
453
+ "FirstName": "Courtney",
454
+ "LastName": "Medina",
455
+ "Birthday": "1983-09-25",
456
+ "ClubId": 3,
457
+ "ShowData": true,
458
+ "Club": {
459
+ "ClubId": 3,
460
+ "Name": "Sword & Blade of Callie",
461
+ "ShortName": "SBoC",
462
+ "Description": "adsasdf",
463
+ "AddressId": 1,
464
+ "Color1": "red",
465
+ "Color2": "gold"
466
+ },
467
+ "Images": []
468
+ },
469
+ "Pool": {
470
+ "PoolId": 137,
471
+ "Name": "Pool 1",
472
+ "RingName": "Ring 1",
473
+ "Flight": 1,
474
+ "PoolType": "pool",
475
+ "EventId": 5,
476
+ "Status": "live",
477
+ "Updated": "2024-06-17T20:38:06.000Z"
478
+ }
479
+ },
480
+ {
481
+ "Id": 110,
482
+ "EventId": 5,
483
+ "PoolId": 137,
484
+ "PersonId": 7,
485
+ "Seed": 9,
486
+ "PoolPosition": 9,
487
+ "Status": "Present",
488
+ "Person": {
489
+ "PersonId": 7,
490
+ "DisplayName": "Emily Carlson",
491
+ "Pronouns": "He/Him",
492
+ "FirstName": "Emily",
493
+ "LastName": "Carlson",
494
+ "Birthday": "1997-06-13",
495
+ "ClubId": 4,
496
+ "ShowData": true,
497
+ "Club": {
498
+ "ClubId": 4,
499
+ "Name": "Guardians of the Guard",
500
+ "ShortName": "GotG",
501
+ "Description": "Guardians of the Guard",
502
+ "AddressId": 1,
503
+ "Color1": "purple",
504
+ "Color2": "orange"
505
+ },
506
+ "Images": []
507
+ },
508
+ "Pool": {
509
+ "PoolId": 137,
510
+ "Name": "Pool 1",
511
+ "RingName": "Ring 1",
512
+ "Flight": 1,
513
+ "PoolType": "pool",
514
+ "EventId": 5,
515
+ "Status": "live",
516
+ "Updated": "2024-06-17T20:38:06.000Z"
517
+ }
518
+ },
519
+ {
520
+ "Id": 111,
521
+ "EventId": 5,
522
+ "PoolId": 138,
523
+ "PersonId": 8,
524
+ "Seed": 10,
525
+ "PoolPosition": 10,
526
+ "Status": "Present",
527
+ "Person": {
528
+ "PersonId": 8,
529
+ "DisplayName": "Julie Riddle",
530
+ "Pronouns": "He/Him",
531
+ "FirstName": "Julie",
532
+ "LastName": "Riddle",
533
+ "Birthday": "1984-07-18",
534
+ "ClubId": 2,
535
+ "ShowData": true,
536
+ "Club": {
537
+ "ClubId": 2,
538
+ "Name": "Historical Fencing Of Anywhere",
539
+ "ShortName": "HFoA",
540
+ "Description": "is",
541
+ "AddressId": 1,
542
+ "Color1": "red",
543
+ "Color2": "blue"
544
+ },
545
+ "Images": []
546
+ },
547
+ "Pool": {
548
+ "PoolId": 138,
549
+ "Name": "Pool 2",
550
+ "RingName": "Ring 2",
551
+ "Flight": 1,
552
+ "PoolType": "pool",
553
+ "EventId": 5,
554
+ "Status": "live",
555
+ "Updated": "2024-06-17T20:38:06.000Z"
556
+ }
557
+ }
558
+ ]
559
+ },
560
+ "staff": []
561
+ }
562
+
563
+ export default eventPersonGetInitialPoolAssignmentsLivePools;