@dcrackel/hematournamentui 1.0.706 → 1.0.707

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.
Files changed (330) hide show
  1. package/.prettierignore +7 -1
  2. package/.storybook/main.js +5 -12
  3. package/.storybook/preview-head.html +10 -3
  4. package/.storybook/preview.js +5 -13
  5. package/AGENTS.md +31 -1
  6. package/README.md +29 -22
  7. package/dist/HemaTournamentUI-lib.es.js +7189 -7467
  8. package/dist/HemaTournamentUI-lib.umd.js +27 -27
  9. package/dist/hematournamentui-tailwind.css +0 -24
  10. package/dist/hematournamentui.css +1 -1
  11. package/eslint.config.js +49 -23
  12. package/package.json +6 -2
  13. package/postcss.config.js +3 -3
  14. package/prettier.config.js +16 -10
  15. package/src/config/boutScreenConfigurations.js +52 -50
  16. package/src/main.js +1 -1
  17. package/src/mocks/EventQuestionsMock.js +43 -55
  18. package/src/mocks/assignments.js +180 -181
  19. package/src/mocks/clubGetAllMock.js +8143 -8143
  20. package/src/mocks/eventMock.js +205 -205
  21. package/src/mocks/eventPersonGetInitalPoolAssignmentsLivePools.js +541 -542
  22. package/src/mocks/eventPersonGetInitalPoolAssignmentsPreparing.js +522 -523
  23. package/src/mocks/eventPersonGetInitialPoolAssignments.js +386 -387
  24. package/src/mocks/eventPersonGetInitialPoolAssignments2.js +2267 -2268
  25. package/src/mocks/eventPersonGetInitialStaff.js +94 -95
  26. package/src/mocks/eventPersonGetPoolAssignmentEvent.js +161 -162
  27. package/src/mocks/eventRules.js +87 -86
  28. package/src/mocks/eventpersonGetEventById.js +1737 -1737
  29. package/src/mocks/getAllClubs.js +8143 -8143
  30. package/src/mocks/getAllStaffByTournamentId.js +74 -75
  31. package/src/mocks/getAllWeapons.js +81 -82
  32. package/src/mocks/getAttendance.js +43 -44
  33. package/src/mocks/getClub.js +43 -44
  34. package/src/mocks/getClubDisplayByClubId.js +104 -105
  35. package/src/mocks/getDEBouts-128Fencers.js +3247 -3248
  36. package/src/mocks/getDEBouts-42Fencers.js +3736 -3737
  37. package/src/mocks/getDEBouts-67Fencers.js +6684 -6690
  38. package/src/mocks/getDEBouts-DoubleElim.js +4198 -4199
  39. package/src/mocks/getDEWithBouts.js +628 -629
  40. package/src/mocks/getDeBouts-12fencers.js +1255 -1256
  41. package/src/mocks/getDeBouts-15fencers.js +925 -927
  42. package/src/mocks/getDeBouts-22fencers.js +1683 -1685
  43. package/src/mocks/getDeBouts-6fencers.js +818 -818
  44. package/src/mocks/getEventByTournamentId.js +47 -48
  45. package/src/mocks/getFinalEventResult.js +304 -305
  46. package/src/mocks/getPenaltiesByEvent.js +655 -656
  47. package/src/mocks/getPoolResults.js +1533 -1534
  48. package/src/mocks/getPoolsWithBouts.js +662 -663
  49. package/src/mocks/getPoolsWithBouts6PoolId139.js +885 -886
  50. package/src/mocks/getPoolsWithBoutsByPoolId.js +841 -841
  51. package/src/mocks/getPoolsWithBoutsClubColors.js +4 -4
  52. package/src/mocks/getPoolsWithBoutsComplete.js +919 -921
  53. package/src/mocks/locationMock.js +3213 -3214
  54. package/src/mocks/mockRoutes.js +3 -3
  55. package/src/mocks/personGetAllMock.js +2536 -2537
  56. package/src/mocks/personsMock.js +17569 -17570
  57. package/src/mocks/singleEventMock.js +249 -250
  58. package/src/mocks/tournamentMock.js +1988 -1927
  59. package/src/stories/Atoms/CheckBox/BaseCheckbox.stories.js +25 -23
  60. package/src/stories/Atoms/CheckBox/BaseCheckbox.vue +30 -24
  61. package/src/stories/Atoms/Icon/BaseIcon.stories.js +63 -64
  62. package/src/stories/Atoms/Icon/BaseIcon.test.js +67 -69
  63. package/src/stories/Atoms/Icon/BaseIcon.vue +2 -3
  64. package/src/stories/Atoms/Input/BaseInput.stories.js +18 -18
  65. package/src/stories/Atoms/Input/BaseInput.test.js +65 -67
  66. package/src/stories/Atoms/Input/BaseInput.vue +36 -31
  67. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.stories.js +21 -21
  68. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.test.js +31 -31
  69. package/src/stories/Atoms/RadioGroup/BaseRadioGroup.vue +23 -18
  70. package/src/stories/Atoms/Tag/BaseTag.stories.js +21 -21
  71. package/src/stories/Atoms/Tag/BaseTag.test.js +26 -30
  72. package/src/stories/Atoms/Tag/BaseTag.vue +18 -19
  73. package/src/stories/Atoms/Text/BaseText.stories.js +54 -62
  74. package/src/stories/Atoms/Text/BaseText.test.js +152 -154
  75. package/src/stories/Atoms/Text/BaseText.vue +103 -81
  76. package/src/stories/Configure.mdx +5 -3
  77. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.stories.js +24 -24
  78. package/src/stories/Molecules/Boxes/BoutBoxes/HandshotCounterBox/HandshotCounterBox.vue +33 -15
  79. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.stories.js +46 -48
  80. package/src/stories/Molecules/Boxes/BoutBoxes/PassesBox/PassesBox.vue +38 -25
  81. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.stories.js +4 -4
  82. package/src/stories/Molecules/Boxes/BoutBoxes/PenaltyConfirmationBox/PenaltyConfirmationBox.vue +9 -4
  83. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.stories.js +90 -90
  84. package/src/stories/Molecules/Boxes/BoutBoxes/ScoreBox/ScoreBox.vue +51 -32
  85. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.stories.js +25 -25
  86. package/src/stories/Molecules/Boxes/BoutBoxes/TimerBox/TimerBox.vue +47 -12
  87. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.stories.js +19 -19
  88. package/src/stories/Molecules/Boxes/CounterBox/CounterBox.vue +25 -19
  89. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.stories.js +25 -28
  90. package/src/stories/Molecules/Boxes/EventStatusBox/EventStatusBox.vue +7 -7
  91. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.stories.js +28 -29
  92. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.test.js +58 -58
  93. package/src/stories/Molecules/Breadcrumb/Admin/Breadcrumb.vue +15 -15
  94. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.stories.js +86 -86
  95. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.test.js +101 -103
  96. package/src/stories/Molecules/Buttons/BaseButton/BaseButton.vue +87 -24
  97. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.stories.js +31 -31
  98. package/src/stories/Molecules/Buttons/ButtonBar/ButtonBar.vue +19 -21
  99. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.stories.js +57 -57
  100. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.test.js +64 -64
  101. package/src/stories/Molecules/CombinationInputs/TitledInput/TitledInput.vue +17 -16
  102. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.stories.js +19 -19
  103. package/src/stories/Molecules/Filters/FilterAndSortBar/FilterAndSortBar.vue +18 -7
  104. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.stories.js +16 -18
  105. package/src/stories/Molecules/Filters/FilterUpcomingPast/FilterUpcomingPast.vue +31 -13
  106. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.stories.js +27 -27
  107. package/src/stories/Molecules/Indicators/ServerConnected/ServerConnected.vue +6 -5
  108. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.stories.js +35 -35
  109. package/src/stories/Molecules/Inputs/MultiSelect/MultiSelect.vue +13 -8
  110. package/src/stories/Molecules/Inputs/Toggle/Toggle.stories.js +27 -27
  111. package/src/stories/Molecules/Inputs/Toggle/Toggle.vue +8 -5
  112. package/src/stories/Molecules/Menus/TabBar/TabBar.stories.js +18 -18
  113. package/src/stories/Molecules/Menus/TabBar/TabBar.vue +1 -2
  114. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplay.stories.js +36 -27
  115. package/src/stories/Molecules/Modals/AddDisplayModal/AddDisplayModal.vue +25 -15
  116. package/src/stories/Molecules/Modals/BaseModal/BaseModal.stories.js +66 -65
  117. package/src/stories/Molecules/Modals/BaseModal/BaseModal.vue +47 -9
  118. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.stories.js +23 -23
  119. package/src/stories/Molecules/Modals/ConfirmModal/ConfirmModal.vue +59 -11
  120. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.stories.js +37 -37
  121. package/src/stories/Molecules/Modals/DirectorModal/DirectorModal.vue +27 -22
  122. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.stories.js +41 -41
  123. package/src/stories/Molecules/Modals/EditBoutModal/EditBoutModal.vue +27 -15
  124. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.stories.js +29 -30
  125. package/src/stories/Molecules/Modals/EventWizardModal/EventWizardModal.vue +18 -16
  126. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.stories.js +21 -21
  127. package/src/stories/Molecules/Modals/LoadingModal/LoadingModal.vue +7 -7
  128. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.stories.js +24 -24
  129. package/src/stories/Molecules/Modals/PenaltyModal/PenaltyModal.vue +30 -25
  130. package/src/stories/Molecules/Reorder/ReorderableShell.stories.js +81 -77
  131. package/src/stories/Molecules/Reorder/ReorderableShell.vue +46 -43
  132. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.stories.js +40 -40
  133. package/src/stories/Molecules/StepIndicator/BaseStepIndicator/StepIndicator.vue +23 -25
  134. package/src/stories/Organisms/Cards/BoutCard/BoutCard.stories.js +34 -29
  135. package/src/stories/Organisms/Cards/BoutCard/BoutCard.vue +69 -66
  136. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.stories.js +24 -22
  137. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardActive/BoutCardActive.vue +53 -41
  138. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.stories.js +24 -37
  139. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardInactive/BoutCardInactive.vue +88 -103
  140. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardReorder/BoutCardReorder.vue +13 -14
  141. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.stories.js +5 -5
  142. package/src/stories/Organisms/Cards/BoutCard/Variants/BoutCardWaiting/BoutCardWaiting.vue +22 -21
  143. package/src/stories/Organisms/Cards/ClubCard/ClubCard.stories.js +14 -17
  144. package/src/stories/Organisms/Cards/ClubCard/ClubCard.vue +25 -18
  145. package/src/stories/Organisms/Cards/Director/DirectorCard.stories.js +23 -23
  146. package/src/stories/Organisms/Cards/Director/DirectorCard.vue +159 -103
  147. package/src/stories/Organisms/Cards/EditBout/EditBout.stories.js +47 -47
  148. package/src/stories/Organisms/Cards/EditBout/EditBout.test.js +51 -0
  149. package/src/stories/Organisms/Cards/EditBout/EditBout.vue +82 -54
  150. package/src/stories/Organisms/Cards/EventCard/EventCard.stories.js +9 -10
  151. package/src/stories/Organisms/Cards/EventCard/EventCard.vue +83 -63
  152. package/src/stories/Organisms/Cards/FencerCard/FencerCard.stories.js +105 -105
  153. package/src/stories/Organisms/Cards/FencerCard/FencerCard.vue +142 -58
  154. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.stories.js +14 -14
  155. package/src/stories/Organisms/Cards/FencerFinalResultCard/FencerFinalResultCard.vue +37 -26
  156. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResults.stories.js +24 -24
  157. package/src/stories/Organisms/Cards/FencerPoolResultsCard/FencerPoolResultsCard.vue +95 -28
  158. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.stories.js +59 -60
  159. package/src/stories/Organisms/Cards/ImportFencerCard/ImportFencerCard.vue +13 -7
  160. package/src/stories/Organisms/Cards/KioskCard/KioskCard.stories.js +34 -34
  161. package/src/stories/Organisms/Cards/KioskCard/KioskCard.vue +149 -104
  162. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.stories.js +19 -20
  163. package/src/stories/Organisms/Cards/PenaltyCard/PenaltyCard.vue +207 -163
  164. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.stories.js +17 -17
  165. package/src/stories/Organisms/Cards/PenaltyFencerCard/PenaltyFencerCard.vue +88 -46
  166. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.stories.js +182 -182
  167. package/src/stories/Organisms/Cards/PoolBoutMatchCard/PoolBoutMatchCard.vue +21 -12
  168. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.stories.js +25 -28
  169. package/src/stories/Organisms/Cards/PoolFencerCard/PoolFencerCard.vue +28 -22
  170. package/src/stories/Organisms/Cards/StaffCard/StaffCard.stories.js +62 -62
  171. package/src/stories/Organisms/Cards/StaffCard/StaffCard.vue +27 -22
  172. package/src/stories/Organisms/Cards/TableauBoutCard/SpacingConfig.js +103 -103
  173. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.stories.js +73 -73
  174. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.test.js +44 -0
  175. package/src/stories/Organisms/Cards/TableauBoutCard/TableauBoutCard.vue +69 -56
  176. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.stories.js +80 -81
  177. package/src/stories/Organisms/Cards/TableauFencerCard/TableauFencerCard.vue +39 -22
  178. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdmin.stories.js +20 -20
  179. package/src/stories/Organisms/Cards/TournamentAdminCard/TournamentAdminCard.vue +62 -33
  180. package/src/stories/Organisms/Cards/WaitlistFencerCard/WaitlistFencerCard.vue +44 -30
  181. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.stories.js +6 -7
  182. package/src/stories/Organisms/ComplexInputs/AddressAutocomplete/AddressAutocomplete.vue +7 -8
  183. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.stories.js +31 -31
  184. package/src/stories/Organisms/ComplexInputs/ClubColorPicker/ClubColorPicker.vue +30 -35
  185. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.stories.js +13 -16
  186. package/src/stories/Organisms/ComplexInputs/DatePicker/DatePicker.vue +68 -70
  187. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.stories.js +32 -34
  188. package/src/stories/Organisms/ComplexInputs/DropDown/DropDownMenu.vue +48 -25
  189. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.stories.js +21 -21
  190. package/src/stories/Organisms/ComplexInputs/FindLocation/FindLocation.vue +65 -38
  191. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.stories.js +19 -20
  192. package/src/stories/Organisms/ComplexInputs/FindOrAddPerson/FindOrAddPerson.vue +46 -21
  193. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.stories.js +22 -22
  194. package/src/stories/Organisms/ComplexInputs/FindPerson/FindPerson.vue +68 -23
  195. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.stories.js +13 -13
  196. package/src/stories/Organisms/ComplexInputs/ImageCropper/ImageCropper.vue +25 -24
  197. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.stories.js +6 -10
  198. package/src/stories/Organisms/ComplexInputs/TextBoxEditor/TextBoxEditor.vue +112 -48
  199. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.stories.js +43 -44
  200. package/src/stories/Organisms/Containers/BoutsSection/BoutsSection.vue +30 -23
  201. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.stories.js +20 -20
  202. package/src/stories/Organisms/Containers/FinalResults/FinalResultsTable.vue +12 -12
  203. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.stories.js +24 -25
  204. package/src/stories/Organisms/Containers/KioskContainer/KioskContainer.vue +112 -87
  205. package/src/stories/Organisms/Containers/Pool/Pool.stories.js +54 -54
  206. package/src/stories/Organisms/Containers/Pool/Pool.vue +64 -41
  207. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.stories.js +17 -19
  208. package/src/stories/Organisms/Containers/PoolGrid/PoolGrid.vue +189 -135
  209. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.stories.js +53 -54
  210. package/src/stories/Organisms/Containers/PoolResults/PoolResultsTable.vue +107 -73
  211. package/src/stories/Organisms/Containers/Tableau/Tableau.stories.js +23 -24
  212. package/src/stories/Organisms/Containers/Tableau/Tableau.test.js +49 -10
  213. package/src/stories/Organisms/Containers/Tableau/Tableau.vue +96 -173
  214. package/src/stories/Organisms/Containers/TableauColumn/TabeauColumn.stories.js +26 -27
  215. package/src/stories/Organisms/Containers/TableauColumn/TableauColumn.vue +20 -17
  216. package/src/stories/Organisms/Containers/TableauLines/SpacingConfig.js +153 -103
  217. package/src/stories/Organisms/Containers/TableauLines/TableauLines.stories.js +13 -15
  218. package/src/stories/Organisms/Containers/TableauLines/TableauLines.vue +7 -8
  219. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.stories.js +26 -26
  220. package/src/stories/Organisms/Form/AddDisplay/AddDisplay.vue +130 -118
  221. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.stories.js +14 -15
  222. package/src/stories/Organisms/Form/AddNewPerson/AddNewPerson.vue +94 -88
  223. package/src/stories/Organisms/Grids/GridContainer.stories.js +101 -101
  224. package/src/stories/Organisms/Grids/GridContainer.vue +160 -136
  225. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.stories.js +47 -47
  226. package/src/stories/Organisms/Headers/AttendanceSummary/AttendanceSummary.vue +65 -54
  227. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.stories.js +27 -27
  228. package/src/stories/Organisms/Headers/EventFinalResultsHeader/EventFinalResultsHeader.vue +38 -22
  229. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.stories.js +80 -80
  230. package/src/stories/Organisms/Headers/PenaltySummary/PenaltySummary.vue +14 -6
  231. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.stories.js +34 -34
  232. package/src/stories/Organisms/Headers/PoolResultsHeader/PoolResultsHeader.vue +36 -36
  233. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.stories.js +21 -21
  234. package/src/stories/Organisms/Headers/PoolSummary/PoolSummary.vue +56 -29
  235. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.stories.js +38 -38
  236. package/src/stories/Organisms/Headers/ToggleHeader/ToggleHeader.vue +19 -20
  237. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.stories.js +12 -13
  238. package/src/stories/Organisms/RankCalculator/ByLetter/RankCalculator.vue +47 -41
  239. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.stories.js +12 -13
  240. package/src/stories/Organisms/RankCalculator/ByPoints/RankCalculatorByPoints.vue +66 -37
  241. package/src/stories/Organisms/Skeletons/ClubManagement/ClubManagement.stories.js +6 -10
  242. package/src/stories/Organisms/Skeletons/ClubManagement/ClubMangementSkeleton.vue +2 -2
  243. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.stories.js +6 -10
  244. package/src/stories/Organisms/Skeletons/EventCard/EventCardSkeleton.vue +2 -3
  245. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.stories.js +6 -10
  246. package/src/stories/Organisms/Skeletons/FencerCard/FencerCardSkeleton.vue +1 -1
  247. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.stories.js +6 -9
  248. package/src/stories/Organisms/Skeletons/PersonManagement/PersonManagementSkeleton.vue +2 -2
  249. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.stories.js +6 -10
  250. package/src/stories/Organisms/Skeletons/PoolSkeleton/PoolSkeleton.vue +10 -4
  251. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.stories.js +6 -10
  252. package/src/stories/Organisms/Skeletons/TournamentCard/TournamentCardSkeleton.vue +2 -2
  253. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.stories.js +34 -34
  254. package/src/stories/Organisms/Wizards/EditEventWizard/BasicEventInfo/BasicEventInfo.vue +106 -56
  255. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.stories.js +95 -95
  256. package/src/stories/Organisms/Wizards/EditEventWizard/DirectElimination/DirectElimination.vue +129 -69
  257. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.stories.js +87 -88
  258. package/src/stories/Organisms/Wizards/EditEventWizard/DirectEliminationPromotion/DirectEliminationPromotion.vue +105 -60
  259. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.stories.js +82 -82
  260. package/src/stories/Organisms/Wizards/EditEventWizard/EditEventWizard.vue +150 -177
  261. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.stories.js +28 -28
  262. package/src/stories/Organisms/Wizards/EditEventWizard/EventCustomization/EventCustomization.vue +96 -36
  263. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.stories.js +99 -99
  264. package/src/stories/Organisms/Wizards/EditEventWizard/PoolConfiguration/PoolConfiguration.vue +115 -67
  265. package/src/stories/Templates/Assignment/Assignment.stories.js +22 -23
  266. package/src/stories/Templates/Assignment/Assignment.vue +210 -161
  267. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.stories.js +90 -90
  268. package/src/stories/Templates/ClubManagement/ClubBasic/ClubBasic.vue +68 -55
  269. package/src/stories/Templates/ClubManagement/ClubManagement.stories.js +87 -87
  270. package/src/stories/Templates/ClubManagement/ClubManagement.vue +167 -147
  271. package/src/stories/Templates/EventManagement/Bracket/Bracket.stories.js +82 -103
  272. package/src/stories/Templates/EventManagement/Bracket/Bracket.test.js +88 -43
  273. package/src/stories/Templates/EventManagement/Bracket/Bracket.vue +167 -200
  274. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.stories.js +49 -50
  275. package/src/stories/Templates/EventManagement/EditEventInfo/EditEventInfo.vue +21 -21
  276. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.stories.js +105 -103
  277. package/src/stories/Templates/EventManagement/EventAttendance/EventAttendance.vue +289 -226
  278. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.stories.js +30 -30
  279. package/src/stories/Templates/EventManagement/EventFinalResults/EventFinalResults.vue +27 -22
  280. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.stories.js +44 -45
  281. package/src/stories/Templates/EventManagement/KioskDisplay/KioskDisplay.vue +52 -43
  282. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.stories.js +28 -29
  283. package/src/stories/Templates/EventManagement/Penalties/PenaltyReport.vue +54 -39
  284. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.stories.js +80 -111
  285. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.test.js +121 -0
  286. package/src/stories/Templates/EventManagement/PoolLive/PoolLive.vue +290 -255
  287. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.stories.js +109 -107
  288. package/src/stories/Templates/EventManagement/PoolManagement/PoolManagement.vue +144 -87
  289. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.stories.js +56 -57
  290. package/src/stories/Templates/EventManagement/PoolResults/PoolResults.vue +132 -123
  291. package/src/stories/Templates/EventManagement/StaffList/StaffList.stories.js +56 -57
  292. package/src/stories/Templates/EventManagement/StaffList/StaffList.vue +84 -47
  293. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.stories.js +29 -29
  294. package/src/stories/Templates/Menus/Admin/AdminLeftMenu.vue +71 -67
  295. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.stories.js +39 -40
  296. package/src/stories/Templates/Menus/EditEventsTopMenu/EditEventsTopMenu.vue +79 -71
  297. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.stories.js +47 -47
  298. package/src/stories/Templates/PersonManagement/Admin/Administration/Administration.vue +39 -42
  299. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.stories.js +54 -54
  300. package/src/stories/Templates/PersonManagement/Admin/FencerAdmin/FencerAdmin.vue +27 -31
  301. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.stories.js +69 -69
  302. package/src/stories/Templates/PersonManagement/Admin/MergeAccounts/MergeAccounts.vue +78 -89
  303. package/src/stories/Templates/PersonManagement/Attendance/Attendance.stories.js +22 -22
  304. package/src/stories/Templates/PersonManagement/Attendance/Attendance.vue +61 -33
  305. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.stories.js +29 -29
  306. package/src/stories/Templates/PersonManagement/Basic/BasicEdit.vue +80 -53
  307. package/src/stories/Templates/PersonManagement/PersonManagement.stories.js +84 -86
  308. package/src/stories/Templates/PersonManagement/PersonManagement.vue +107 -82
  309. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.stories.js +31 -31
  310. package/src/stories/Templates/TournamentManagement/ListEvents/ListEvents.vue +70 -51
  311. package/src/stories/Templates/TournamentManagement/TournamentManagement.stories.js +79 -79
  312. package/src/stories/Templates/TournamentManagement/TournamentManagement.vue +275 -230
  313. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.stories.js +113 -113
  314. package/src/stories/Templates/TournamentManagement/TournamentPageOne/TournamentPageOne.vue +175 -146
  315. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.stories.js +77 -77
  316. package/src/stories/Templates/TournamentManagement/TournamentPageTwo/TournamentPageTwo.vue +208 -185
  317. package/src/stories/Util/Validations/AddNewPersonModalValidation.js +23 -19
  318. package/src/stories/Util/Validations/ClubManagementValidations.js +17 -21
  319. package/src/stories/Util/Validations/PersonManagementValidations.js +26 -22
  320. package/src/stories/Util/Validations/TournamentFieldsValidations.js +20 -18
  321. package/src/stories/Util/seeding.js +131 -131
  322. package/src/stories/Util/tabs.js +75 -75
  323. package/tailwind/tailwind.css +5 -7
  324. package/tailwind.config.js +12 -15
  325. package/vite.config.js +3 -3
  326. package/src/mocks/getDirectors.js +0 -18
  327. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.stories.js +0 -45
  328. package/src/stories/Molecules/Modals/AssignDirectorModal/AssignDirectorModal.vue +0 -111
  329. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.stories.js +0 -45
  330. package/src/stories/Organisms/Cards/DirectorAssignmentCard/DirectorAssignmentCard.vue +0 -83
@@ -1,918 +1,917 @@
1
- const getPoolsWithBouts6PoolId139 =
2
- {
3
- "message": "Pools retrieved",
4
- "pools": [
1
+ const getPoolsWithBouts6PoolId139 = {
2
+ message: 'Pools retrieved',
3
+ pools: [
5
4
  {
6
- "PoolId": 139,
7
- "Name": "Pool 1",
8
- "RingName": "Ring 1",
9
- "Flight": 1,
10
- "PoolType": "pool",
11
- "EventId": 6,
12
- "Status": "live",
13
- "Updated": "2024-07-16T15:46:30.000Z",
14
- "Bouts": [
15
- {
16
- "TimerStatus": "stopped",
17
- "BoutId": 1944,
18
- "PoolId": 139,
19
- "EventId": 6,
20
- "Person1Id": 1,
21
- "Person2Id": 10,
22
- "Status": "Scheduled",
23
- "Score1": 0,
24
- "Score2": 0,
25
- "Started": "2024-07-16T15:50:26.000Z",
26
- "Ended": null,
27
- "TimeLeft": 90,
28
- "RoundLabel": null,
29
- "DEBoutId": null,
30
- "DENextBoutId": null,
31
- "RefereeId": null,
32
- "createdAt": "2024-07-16T15:49:16.000Z",
33
- "updatedAt": "2024-07-16T16:07:35.000Z",
34
- "Person1": {
35
- "PersonId": 1,
36
- "DisplayName": "Dave Smith",
37
- "ClubId": 4,
38
- "Images": [
39
- {
40
- "ImageId": 7,
41
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
42
- }
43
- ],
44
- "Club": {
45
- "Name": "Guardians of the Guard",
46
- "Color1": "purple",
47
- "Color2": "orange"
48
- },
49
- "EventPersons": [
50
- {
51
- "DEPosition": null
52
- }
53
- ]
54
- },
55
- "Person2": {
56
- "PersonId": 10,
57
- "DisplayName": "Melissa Jones",
58
- "ClubId": 4,
59
- "Images": [
60
- {
61
- "ImageId": 21,
62
- "URL": "https://randomuser.me/api/portraits/women/9.jpg"
63
- }
64
- ],
65
- "Club": {
66
- "Name": "Guardians of the Guard"
67
- },
68
- "EventPersons": [
69
- {
70
- "DEPosition": null
71
- }
72
- ]
73
- }
5
+ PoolId: 139,
6
+ Name: 'Pool 1',
7
+ RingName: 'Ring 1',
8
+ Flight: 1,
9
+ PoolType: 'pool',
10
+ EventId: 6,
11
+ Status: 'live',
12
+ Updated: '2024-07-16T15:46:30.000Z',
13
+ Bouts: [
14
+ {
15
+ TimerStatus: 'stopped',
16
+ BoutId: 1944,
17
+ PoolId: 139,
18
+ EventId: 6,
19
+ Person1Id: 1,
20
+ Person2Id: 10,
21
+ Status: 'Scheduled',
22
+ Score1: 0,
23
+ Score2: 0,
24
+ Started: '2024-07-16T15:50:26.000Z',
25
+ Ended: null,
26
+ TimeLeft: 90,
27
+ RoundLabel: null,
28
+ DEBoutId: null,
29
+ DENextBoutId: null,
30
+ RefereeId: null,
31
+ createdAt: '2024-07-16T15:49:16.000Z',
32
+ updatedAt: '2024-07-16T16:07:35.000Z',
33
+ Person1: {
34
+ PersonId: 1,
35
+ DisplayName: 'Dave Smith',
36
+ ClubId: 4,
37
+ Images: [
38
+ {
39
+ ImageId: 7,
40
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
41
+ }
42
+ ],
43
+ Club: {
44
+ Name: 'Guardians of the Guard',
45
+ Color1: 'purple',
46
+ Color2: 'orange'
74
47
  },
75
- {
76
- "TimerStatus": "stopped",
77
- "BoutId": 1945,
78
- "PoolId": 139,
79
- "EventId": 6,
80
- "Person1Id": 22,
81
- "Person2Id": 8,
82
- "Status": "Scheduled",
83
- "Score1": 0,
84
- "Score2": 0,
85
- "Started": null,
86
- "Ended": null,
87
- "TimeLeft": 0,
88
- "RoundLabel": null,
89
- "DEBoutId": null,
90
- "DENextBoutId": null,
91
- "RefereeId": null,
92
- "createdAt": "2024-07-16T15:49:16.000Z",
93
- "updatedAt": "2024-07-16T15:49:16.000Z",
94
- "Person1": {
95
- "PersonId": 22,
96
- "DisplayName": "Bob Smith",
97
- "ClubId": 6,
98
- "Images": [
99
- {
100
- "ImageId": 12,
101
- "URL": "https://randomuser.me/api/portraits/men/81.jpg"
102
- }
103
- ],
104
- "Club": {
105
- "Name": "SwordPlay Society",
106
- "Color1": "red",
107
- "Color2": "blue"
108
- },
109
- "EventPersons": [
110
- {
111
- "DEPosition": null
112
- }
113
- ]
114
- },
115
- "Person2": {
116
- "PersonId": 8,
117
- "DisplayName": "Julie Riddle",
118
- "ClubId": 2,
119
- "Images": [
120
- {
121
- "ImageId": 23,
122
- "URL": "https://randomuser.me/api/portraits/women/41.jpg"
123
- }
124
- ],
125
- "Club": {
126
- "Name": "Historical Fencing Of Anywhere"
127
- },
128
- "EventPersons": [
129
- {
130
- "DEPosition": null
131
- }
132
- ]
133
- }
48
+ EventPersons: [
49
+ {
50
+ DEPosition: null
51
+ }
52
+ ]
53
+ },
54
+ Person2: {
55
+ PersonId: 10,
56
+ DisplayName: 'Melissa Jones',
57
+ ClubId: 4,
58
+ Images: [
59
+ {
60
+ ImageId: 21,
61
+ URL: 'https://randomuser.me/api/portraits/women/9.jpg'
62
+ }
63
+ ],
64
+ Club: {
65
+ Name: 'Guardians of the Guard'
134
66
  },
135
- {
136
- "TimerStatus": "stopped",
137
- "BoutId": 1946,
138
- "PoolId": 139,
139
- "EventId": 6,
140
- "Person1Id": 3,
141
- "Person2Id": 16,
142
- "Status": "Scheduled",
143
- "Score1": 0,
144
- "Score2": 0,
145
- "Started": null,
146
- "Ended": null,
147
- "TimeLeft": 0,
148
- "RoundLabel": null,
149
- "DEBoutId": null,
150
- "DENextBoutId": null,
151
- "RefereeId": null,
152
- "createdAt": "2024-07-16T15:49:16.000Z",
153
- "updatedAt": "2024-07-16T15:49:16.000Z",
154
- "Person1": {
155
- "PersonId": 3,
156
- "DisplayName": "Dave Larabee",
157
- "ClubId": 3,
158
- "Images": [],
159
- "Club": {
160
- "Name": "Sword & Blade of Callie",
161
- "Color1": "red",
162
- "Color2": "gold"
163
- },
164
- "EventPersons": [
165
- {
166
- "DEPosition": null
167
- }
168
- ]
169
- },
170
- "Person2": {
171
- "PersonId": 16,
172
- "DisplayName": "Christian Jacob Peralta",
173
- "ClubId": 1,
174
- "Images": [],
175
- "Club": {
176
- "Name": "Acme Fencing Club"
177
- },
178
- "EventPersons": [
179
- {
180
- "DEPosition": null
181
- }
182
- ]
183
- }
67
+ EventPersons: [
68
+ {
69
+ DEPosition: null
70
+ }
71
+ ]
72
+ }
73
+ },
74
+ {
75
+ TimerStatus: 'stopped',
76
+ BoutId: 1945,
77
+ PoolId: 139,
78
+ EventId: 6,
79
+ Person1Id: 22,
80
+ Person2Id: 8,
81
+ Status: 'Scheduled',
82
+ Score1: 0,
83
+ Score2: 0,
84
+ Started: null,
85
+ Ended: null,
86
+ TimeLeft: 0,
87
+ RoundLabel: null,
88
+ DEBoutId: null,
89
+ DENextBoutId: null,
90
+ RefereeId: null,
91
+ createdAt: '2024-07-16T15:49:16.000Z',
92
+ updatedAt: '2024-07-16T15:49:16.000Z',
93
+ Person1: {
94
+ PersonId: 22,
95
+ DisplayName: 'Bob Smith',
96
+ ClubId: 6,
97
+ Images: [
98
+ {
99
+ ImageId: 12,
100
+ URL: 'https://randomuser.me/api/portraits/men/81.jpg'
101
+ }
102
+ ],
103
+ Club: {
104
+ Name: 'SwordPlay Society',
105
+ Color1: 'red',
106
+ Color2: 'blue'
184
107
  },
185
- {
186
- "TimerStatus": "stopped",
187
- "BoutId": 1947,
188
- "PoolId": 139,
189
- "EventId": 6,
190
- "Person1Id": 8,
191
- "Person2Id": 1,
192
- "Status": "Scheduled",
193
- "Score1": 0,
194
- "Score2": 0,
195
- "Started": null,
196
- "Ended": null,
197
- "TimeLeft": 0,
198
- "RoundLabel": null,
199
- "DEBoutId": null,
200
- "DENextBoutId": null,
201
- "RefereeId": null,
202
- "createdAt": "2024-07-16T15:49:16.000Z",
203
- "updatedAt": "2024-07-16T15:49:16.000Z",
204
- "Person1": {
205
- "PersonId": 8,
206
- "DisplayName": "Julie Riddle",
207
- "ClubId": 2,
208
- "Images": [
209
- {
210
- "ImageId": 23,
211
- "URL": "https://randomuser.me/api/portraits/women/41.jpg"
212
- }
213
- ],
214
- "Club": {
215
- "Name": "Historical Fencing Of Anywhere",
216
- "Color1": "red",
217
- "Color2": "blue"
218
- },
219
- "EventPersons": [
220
- {
221
- "DEPosition": null
222
- }
223
- ]
224
- },
225
- "Person2": {
226
- "PersonId": 1,
227
- "DisplayName": "Dave Smith",
228
- "ClubId": 4,
229
- "Images": [
230
- {
231
- "ImageId": 7,
232
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
233
- }
234
- ],
235
- "Club": {
236
- "Name": "Guardians of the Guard"
237
- },
238
- "EventPersons": [
239
- {
240
- "DEPosition": null
241
- }
242
- ]
243
- }
108
+ EventPersons: [
109
+ {
110
+ DEPosition: null
111
+ }
112
+ ]
113
+ },
114
+ Person2: {
115
+ PersonId: 8,
116
+ DisplayName: 'Julie Riddle',
117
+ ClubId: 2,
118
+ Images: [
119
+ {
120
+ ImageId: 23,
121
+ URL: 'https://randomuser.me/api/portraits/women/41.jpg'
122
+ }
123
+ ],
124
+ Club: {
125
+ Name: 'Historical Fencing Of Anywhere'
244
126
  },
245
- {
246
- "TimerStatus": "stopped",
247
- "BoutId": 1948,
248
- "PoolId": 139,
249
- "EventId": 6,
250
- "Person1Id": 10,
251
- "Person2Id": 3,
252
- "Status": "Scheduled",
253
- "Score1": 0,
254
- "Score2": 0,
255
- "Started": null,
256
- "Ended": null,
257
- "TimeLeft": 0,
258
- "RoundLabel": null,
259
- "DEBoutId": null,
260
- "DENextBoutId": null,
261
- "RefereeId": null,
262
- "createdAt": "2024-07-16T15:49:16.000Z",
263
- "updatedAt": "2024-07-16T15:49:16.000Z",
264
- "Person1": {
265
- "PersonId": 10,
266
- "DisplayName": "Melissa Jones",
267
- "ClubId": 4,
268
- "Images": [
269
- {
270
- "ImageId": 21,
271
- "URL": "https://randomuser.me/api/portraits/women/9.jpg"
272
- }
273
- ],
274
- "Club": {
275
- "Name": "Guardians of the Guard",
276
- "Color1": "purple",
277
- "Color2": "orange"
278
- },
279
- "EventPersons": [
280
- {
281
- "DEPosition": null
282
- }
283
- ]
284
- },
285
- "Person2": {
286
- "PersonId": 3,
287
- "DisplayName": "Dave Larabee",
288
- "ClubId": 3,
289
- "Images": [],
290
- "Club": {
291
- "Name": "Sword & Blade of Callie"
292
- },
293
- "EventPersons": [
294
- {
295
- "DEPosition": null
296
- }
297
- ]
298
- }
127
+ EventPersons: [
128
+ {
129
+ DEPosition: null
130
+ }
131
+ ]
132
+ }
133
+ },
134
+ {
135
+ TimerStatus: 'stopped',
136
+ BoutId: 1946,
137
+ PoolId: 139,
138
+ EventId: 6,
139
+ Person1Id: 3,
140
+ Person2Id: 16,
141
+ Status: 'Scheduled',
142
+ Score1: 0,
143
+ Score2: 0,
144
+ Started: null,
145
+ Ended: null,
146
+ TimeLeft: 0,
147
+ RoundLabel: null,
148
+ DEBoutId: null,
149
+ DENextBoutId: null,
150
+ RefereeId: null,
151
+ createdAt: '2024-07-16T15:49:16.000Z',
152
+ updatedAt: '2024-07-16T15:49:16.000Z',
153
+ Person1: {
154
+ PersonId: 3,
155
+ DisplayName: 'Dave Larabee',
156
+ ClubId: 3,
157
+ Images: [],
158
+ Club: {
159
+ Name: 'Sword & Blade of Callie',
160
+ Color1: 'red',
161
+ Color2: 'gold'
299
162
  },
300
- {
301
- "TimerStatus": "stopped",
302
- "BoutId": 1949,
303
- "PoolId": 139,
304
- "EventId": 6,
305
- "Person1Id": 16,
306
- "Person2Id": 22,
307
- "Status": "Scheduled",
308
- "Score1": 0,
309
- "Score2": 0,
310
- "Started": null,
311
- "Ended": null,
312
- "TimeLeft": 0,
313
- "RoundLabel": null,
314
- "DEBoutId": null,
315
- "DENextBoutId": null,
316
- "RefereeId": null,
317
- "createdAt": "2024-07-16T15:49:16.000Z",
318
- "updatedAt": "2024-07-16T15:49:16.000Z",
319
- "Person1": {
320
- "PersonId": 16,
321
- "DisplayName": "Christian Jacob Peralta",
322
- "ClubId": 1,
323
- "Images": [],
324
- "Club": {
325
- "Name": "Acme Fencing Club",
326
- "Color1": "rose",
327
- "Color2": "navy"
328
- },
329
- "EventPersons": [
330
- {
331
- "DEPosition": null
332
- }
333
- ]
334
- },
335
- "Person2": {
336
- "PersonId": 22,
337
- "DisplayName": "Bob Smith",
338
- "ClubId": 6,
339
- "Images": [
340
- {
341
- "ImageId": 12,
342
- "URL": "https://randomuser.me/api/portraits/men/81.jpg"
343
- }
344
- ],
345
- "Club": {
346
- "Name": "SwordPlay Society"
347
- },
348
- "EventPersons": [
349
- {
350
- "DEPosition": null
351
- }
352
- ]
353
- }
163
+ EventPersons: [
164
+ {
165
+ DEPosition: null
166
+ }
167
+ ]
168
+ },
169
+ Person2: {
170
+ PersonId: 16,
171
+ DisplayName: 'Christian Jacob Peralta',
172
+ ClubId: 1,
173
+ Images: [],
174
+ Club: {
175
+ Name: 'Acme Fencing Club'
354
176
  },
355
- {
356
- "TimerStatus": "stopped",
357
- "BoutId": 1950,
358
- "PoolId": 139,
359
- "EventId": 6,
360
- "Person1Id": 1,
361
- "Person2Id": 3,
362
- "Status": "Scheduled",
363
- "Score1": 0,
364
- "Score2": 0,
365
- "Started": null,
366
- "Ended": null,
367
- "TimeLeft": 0,
368
- "RoundLabel": null,
369
- "DEBoutId": null,
370
- "DENextBoutId": null,
371
- "RefereeId": null,
372
- "createdAt": "2024-07-16T15:49:16.000Z",
373
- "updatedAt": "2024-07-16T15:49:16.000Z",
374
- "Person1": {
375
- "PersonId": 1,
376
- "DisplayName": "Dave Smith",
377
- "ClubId": 4,
378
- "Images": [
379
- {
380
- "ImageId": 7,
381
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
382
- }
383
- ],
384
- "Club": {
385
- "Name": "Guardians of the Guard",
386
- "Color1": "purple",
387
- "Color2": "orange"
388
- },
389
- "EventPersons": [
390
- {
391
- "DEPosition": null
392
- }
393
- ]
394
- },
395
- "Person2": {
396
- "PersonId": 3,
397
- "DisplayName": "Dave Larabee",
398
- "ClubId": 3,
399
- "Images": [],
400
- "Club": {
401
- "Name": "Sword & Blade of Callie"
402
- },
403
- "EventPersons": [
404
- {
405
- "DEPosition": null
406
- }
407
- ]
408
- }
177
+ EventPersons: [
178
+ {
179
+ DEPosition: null
180
+ }
181
+ ]
182
+ }
183
+ },
184
+ {
185
+ TimerStatus: 'stopped',
186
+ BoutId: 1947,
187
+ PoolId: 139,
188
+ EventId: 6,
189
+ Person1Id: 8,
190
+ Person2Id: 1,
191
+ Status: 'Scheduled',
192
+ Score1: 0,
193
+ Score2: 0,
194
+ Started: null,
195
+ Ended: null,
196
+ TimeLeft: 0,
197
+ RoundLabel: null,
198
+ DEBoutId: null,
199
+ DENextBoutId: null,
200
+ RefereeId: null,
201
+ createdAt: '2024-07-16T15:49:16.000Z',
202
+ updatedAt: '2024-07-16T15:49:16.000Z',
203
+ Person1: {
204
+ PersonId: 8,
205
+ DisplayName: 'Julie Riddle',
206
+ ClubId: 2,
207
+ Images: [
208
+ {
209
+ ImageId: 23,
210
+ URL: 'https://randomuser.me/api/portraits/women/41.jpg'
211
+ }
212
+ ],
213
+ Club: {
214
+ Name: 'Historical Fencing Of Anywhere',
215
+ Color1: 'red',
216
+ Color2: 'blue'
409
217
  },
410
- {
411
- "TimerStatus": "stopped",
412
- "BoutId": 1951,
413
- "PoolId": 139,
414
- "EventId": 6,
415
- "Person1Id": 8,
416
- "Person2Id": 16,
417
- "Status": "Scheduled",
418
- "Score1": 0,
419
- "Score2": 0,
420
- "Started": null,
421
- "Ended": null,
422
- "TimeLeft": 0,
423
- "RoundLabel": null,
424
- "DEBoutId": null,
425
- "DENextBoutId": null,
426
- "RefereeId": null,
427
- "createdAt": "2024-07-16T15:49:16.000Z",
428
- "updatedAt": "2024-07-16T15:49:16.000Z",
429
- "Person1": {
430
- "PersonId": 8,
431
- "DisplayName": "Julie Riddle",
432
- "ClubId": 2,
433
- "Images": [
434
- {
435
- "ImageId": 23,
436
- "URL": "https://randomuser.me/api/portraits/women/41.jpg"
437
- }
438
- ],
439
- "Club": {
440
- "Name": "Historical Fencing Of Anywhere",
441
- "Color1": "red",
442
- "Color2": "blue"
443
- },
444
- "EventPersons": [
445
- {
446
- "DEPosition": null
447
- }
448
- ]
449
- },
450
- "Person2": {
451
- "PersonId": 16,
452
- "DisplayName": "Christian Jacob Peralta",
453
- "ClubId": 1,
454
- "Images": [],
455
- "Club": {
456
- "Name": "Acme Fencing Club"
457
- },
458
- "EventPersons": [
459
- {
460
- "DEPosition": null
461
- }
462
- ]
463
- }
218
+ EventPersons: [
219
+ {
220
+ DEPosition: null
221
+ }
222
+ ]
223
+ },
224
+ Person2: {
225
+ PersonId: 1,
226
+ DisplayName: 'Dave Smith',
227
+ ClubId: 4,
228
+ Images: [
229
+ {
230
+ ImageId: 7,
231
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
232
+ }
233
+ ],
234
+ Club: {
235
+ Name: 'Guardians of the Guard'
464
236
  },
465
- {
466
- "TimerStatus": "stopped",
467
- "BoutId": 1952,
468
- "PoolId": 139,
469
- "EventId": 6,
470
- "Person1Id": 22,
471
- "Person2Id": 10,
472
- "Status": "Scheduled",
473
- "Score1": 0,
474
- "Score2": 0,
475
- "Started": null,
476
- "Ended": null,
477
- "TimeLeft": 0,
478
- "RoundLabel": null,
479
- "DEBoutId": null,
480
- "DENextBoutId": null,
481
- "RefereeId": null,
482
- "createdAt": "2024-07-16T15:49:16.000Z",
483
- "updatedAt": "2024-07-16T15:49:16.000Z",
484
- "Person1": {
485
- "PersonId": 22,
486
- "DisplayName": "Bob Smith",
487
- "ClubId": 6,
488
- "Images": [
489
- {
490
- "ImageId": 12,
491
- "URL": "https://randomuser.me/api/portraits/men/81.jpg"
492
- }
493
- ],
494
- "Club": {
495
- "Name": "SwordPlay Society",
496
- "Color1": "red",
497
- "Color2": "blue"
498
- },
499
- "EventPersons": [
500
- {
501
- "DEPosition": null
502
- }
503
- ]
504
- },
505
- "Person2": {
506
- "PersonId": 10,
507
- "DisplayName": "Melissa Jones",
508
- "ClubId": 4,
509
- "Images": [
510
- {
511
- "ImageId": 21,
512
- "URL": "https://randomuser.me/api/portraits/women/9.jpg"
513
- }
514
- ],
515
- "Club": {
516
- "Name": "Guardians of the Guard"
517
- },
518
- "EventPersons": [
519
- {
520
- "DEPosition": null
521
- }
522
- ]
523
- }
237
+ EventPersons: [
238
+ {
239
+ DEPosition: null
240
+ }
241
+ ]
242
+ }
243
+ },
244
+ {
245
+ TimerStatus: 'stopped',
246
+ BoutId: 1948,
247
+ PoolId: 139,
248
+ EventId: 6,
249
+ Person1Id: 10,
250
+ Person2Id: 3,
251
+ Status: 'Scheduled',
252
+ Score1: 0,
253
+ Score2: 0,
254
+ Started: null,
255
+ Ended: null,
256
+ TimeLeft: 0,
257
+ RoundLabel: null,
258
+ DEBoutId: null,
259
+ DENextBoutId: null,
260
+ RefereeId: null,
261
+ createdAt: '2024-07-16T15:49:16.000Z',
262
+ updatedAt: '2024-07-16T15:49:16.000Z',
263
+ Person1: {
264
+ PersonId: 10,
265
+ DisplayName: 'Melissa Jones',
266
+ ClubId: 4,
267
+ Images: [
268
+ {
269
+ ImageId: 21,
270
+ URL: 'https://randomuser.me/api/portraits/women/9.jpg'
271
+ }
272
+ ],
273
+ Club: {
274
+ Name: 'Guardians of the Guard',
275
+ Color1: 'purple',
276
+ Color2: 'orange'
524
277
  },
525
- {
526
- "TimerStatus": "stopped",
527
- "BoutId": 1953,
528
- "PoolId": 139,
529
- "EventId": 6,
530
- "Person1Id": 16,
531
- "Person2Id": 1,
532
- "Status": "Scheduled",
533
- "Score1": 0,
534
- "Score2": 0,
535
- "Started": null,
536
- "Ended": null,
537
- "TimeLeft": 0,
538
- "RoundLabel": null,
539
- "DEBoutId": null,
540
- "DENextBoutId": null,
541
- "RefereeId": null,
542
- "createdAt": "2024-07-16T15:49:16.000Z",
543
- "updatedAt": "2024-07-16T15:49:16.000Z",
544
- "Person1": {
545
- "PersonId": 16,
546
- "DisplayName": "Christian Jacob Peralta",
547
- "ClubId": 1,
548
- "Images": [],
549
- "Club": {
550
- "Name": "Acme Fencing Club",
551
- "Color1": "rose",
552
- "Color2": "navy"
553
- },
554
- "EventPersons": [
555
- {
556
- "DEPosition": null
557
- }
558
- ]
559
- },
560
- "Person2": {
561
- "PersonId": 1,
562
- "DisplayName": "Dave Smith",
563
- "ClubId": 4,
564
- "Images": [
565
- {
566
- "ImageId": 7,
567
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
568
- }
569
- ],
570
- "Club": {
571
- "Name": "Guardians of the Guard"
572
- },
573
- "EventPersons": [
574
- {
575
- "DEPosition": null
576
- }
577
- ]
578
- }
278
+ EventPersons: [
279
+ {
280
+ DEPosition: null
281
+ }
282
+ ]
283
+ },
284
+ Person2: {
285
+ PersonId: 3,
286
+ DisplayName: 'Dave Larabee',
287
+ ClubId: 3,
288
+ Images: [],
289
+ Club: {
290
+ Name: 'Sword & Blade of Callie'
579
291
  },
580
- {
581
- "TimerStatus": "stopped",
582
- "BoutId": 1954,
583
- "PoolId": 139,
584
- "EventId": 6,
585
- "Person1Id": 3,
586
- "Person2Id": 22,
587
- "Status": "Scheduled",
588
- "Score1": 0,
589
- "Score2": 0,
590
- "Started": null,
591
- "Ended": null,
592
- "TimeLeft": 0,
593
- "RoundLabel": null,
594
- "DEBoutId": null,
595
- "DENextBoutId": null,
596
- "RefereeId": null,
597
- "createdAt": "2024-07-16T15:49:16.000Z",
598
- "updatedAt": "2024-07-16T15:49:16.000Z",
599
- "Person1": {
600
- "PersonId": 3,
601
- "DisplayName": "Dave Larabee",
602
- "ClubId": 3,
603
- "Images": [],
604
- "Club": {
605
- "Name": "Sword & Blade of Callie",
606
- "Color1": "red",
607
- "Color2": "gold"
608
- },
609
- "EventPersons": [
610
- {
611
- "DEPosition": null
612
- }
613
- ]
614
- },
615
- "Person2": {
616
- "PersonId": 22,
617
- "DisplayName": "Bob Smith",
618
- "ClubId": 6,
619
- "Images": [
620
- {
621
- "ImageId": 12,
622
- "URL": "https://randomuser.me/api/portraits/men/81.jpg"
623
- }
624
- ],
625
- "Club": {
626
- "Name": "SwordPlay Society"
627
- },
628
- "EventPersons": [
629
- {
630
- "DEPosition": null
631
- }
632
- ]
633
- }
292
+ EventPersons: [
293
+ {
294
+ DEPosition: null
295
+ }
296
+ ]
297
+ }
298
+ },
299
+ {
300
+ TimerStatus: 'stopped',
301
+ BoutId: 1949,
302
+ PoolId: 139,
303
+ EventId: 6,
304
+ Person1Id: 16,
305
+ Person2Id: 22,
306
+ Status: 'Scheduled',
307
+ Score1: 0,
308
+ Score2: 0,
309
+ Started: null,
310
+ Ended: null,
311
+ TimeLeft: 0,
312
+ RoundLabel: null,
313
+ DEBoutId: null,
314
+ DENextBoutId: null,
315
+ RefereeId: null,
316
+ createdAt: '2024-07-16T15:49:16.000Z',
317
+ updatedAt: '2024-07-16T15:49:16.000Z',
318
+ Person1: {
319
+ PersonId: 16,
320
+ DisplayName: 'Christian Jacob Peralta',
321
+ ClubId: 1,
322
+ Images: [],
323
+ Club: {
324
+ Name: 'Acme Fencing Club',
325
+ Color1: 'rose',
326
+ Color2: 'navy'
634
327
  },
635
- {
636
- "TimerStatus": "stopped",
637
- "BoutId": 1955,
638
- "PoolId": 139,
639
- "EventId": 6,
640
- "Person1Id": 10,
641
- "Person2Id": 8,
642
- "Status": "Scheduled",
643
- "Score1": 0,
644
- "Score2": 0,
645
- "Started": null,
646
- "Ended": null,
647
- "TimeLeft": 0,
648
- "RoundLabel": null,
649
- "DEBoutId": null,
650
- "DENextBoutId": null,
651
- "RefereeId": null,
652
- "createdAt": "2024-07-16T15:49:16.000Z",
653
- "updatedAt": "2024-07-16T15:49:16.000Z",
654
- "Person1": {
655
- "PersonId": 10,
656
- "DisplayName": "Melissa Jones",
657
- "ClubId": 4,
658
- "Images": [
659
- {
660
- "ImageId": 21,
661
- "URL": "https://randomuser.me/api/portraits/women/9.jpg"
662
- }
663
- ],
664
- "Club": {
665
- "Name": "Guardians of the Guard",
666
- "Color1": "purple",
667
- "Color2": "orange"
668
- },
669
- "EventPersons": [
670
- {
671
- "DEPosition": null
672
- }
673
- ]
674
- },
675
- "Person2": {
676
- "PersonId": 8,
677
- "DisplayName": "Julie Riddle",
678
- "ClubId": 2,
679
- "Images": [
680
- {
681
- "ImageId": 23,
682
- "URL": "https://randomuser.me/api/portraits/women/41.jpg"
683
- }
684
- ],
685
- "Club": {
686
- "Name": "Historical Fencing Of Anywhere"
687
- },
688
- "EventPersons": [
689
- {
690
- "DEPosition": null
691
- }
692
- ]
693
- }
328
+ EventPersons: [
329
+ {
330
+ DEPosition: null
331
+ }
332
+ ]
333
+ },
334
+ Person2: {
335
+ PersonId: 22,
336
+ DisplayName: 'Bob Smith',
337
+ ClubId: 6,
338
+ Images: [
339
+ {
340
+ ImageId: 12,
341
+ URL: 'https://randomuser.me/api/portraits/men/81.jpg'
342
+ }
343
+ ],
344
+ Club: {
345
+ Name: 'SwordPlay Society'
694
346
  },
695
- {
696
- "TimerStatus": "stopped",
697
- "BoutId": 1956,
698
- "PoolId": 139,
699
- "EventId": 6,
700
- "Person1Id": 1,
701
- "Person2Id": 22,
702
- "Status": "Scheduled",
703
- "Score1": 0,
704
- "Score2": 0,
705
- "Started": null,
706
- "Ended": null,
707
- "TimeLeft": 0,
708
- "RoundLabel": null,
709
- "DEBoutId": null,
710
- "DENextBoutId": null,
711
- "RefereeId": null,
712
- "createdAt": "2024-07-16T15:49:16.000Z",
713
- "updatedAt": "2024-07-16T15:49:16.000Z",
714
- "Person1": {
715
- "PersonId": 1,
716
- "DisplayName": "Dave Smith",
717
- "ClubId": 4,
718
- "Images": [
719
- {
720
- "ImageId": 7,
721
- "URL": "https://randomuser.me/api/portraits/men/22.jpg"
722
- }
723
- ],
724
- "Club": {
725
- "Name": "Guardians of the Guard",
726
- "Color1": "purple",
727
- "Color2": "orange"
728
- },
729
- "EventPersons": [
730
- {
731
- "DEPosition": null
732
- }
733
- ]
734
- },
735
- "Person2": {
736
- "PersonId": 22,
737
- "DisplayName": "Bob Smith",
738
- "ClubId": 6,
739
- "Images": [
740
- {
741
- "ImageId": 12,
742
- "URL": "https://randomuser.me/api/portraits/men/81.jpg"
743
- }
744
- ],
745
- "Club": {
746
- "Name": "SwordPlay Society"
747
- },
748
- "EventPersons": [
749
- {
750
- "DEPosition": null
751
- }
752
- ]
753
- }
347
+ EventPersons: [
348
+ {
349
+ DEPosition: null
350
+ }
351
+ ]
352
+ }
353
+ },
354
+ {
355
+ TimerStatus: 'stopped',
356
+ BoutId: 1950,
357
+ PoolId: 139,
358
+ EventId: 6,
359
+ Person1Id: 1,
360
+ Person2Id: 3,
361
+ Status: 'Scheduled',
362
+ Score1: 0,
363
+ Score2: 0,
364
+ Started: null,
365
+ Ended: null,
366
+ TimeLeft: 0,
367
+ RoundLabel: null,
368
+ DEBoutId: null,
369
+ DENextBoutId: null,
370
+ RefereeId: null,
371
+ createdAt: '2024-07-16T15:49:16.000Z',
372
+ updatedAt: '2024-07-16T15:49:16.000Z',
373
+ Person1: {
374
+ PersonId: 1,
375
+ DisplayName: 'Dave Smith',
376
+ ClubId: 4,
377
+ Images: [
378
+ {
379
+ ImageId: 7,
380
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
381
+ }
382
+ ],
383
+ Club: {
384
+ Name: 'Guardians of the Guard',
385
+ Color1: 'purple',
386
+ Color2: 'orange'
754
387
  },
755
- {
756
- "TimerStatus": "stopped",
757
- "BoutId": 1957,
758
- "PoolId": 139,
759
- "EventId": 6,
760
- "Person1Id": 16,
761
- "Person2Id": 10,
762
- "Status": "Scheduled",
763
- "Score1": 0,
764
- "Score2": 0,
765
- "Started": null,
766
- "Ended": null,
767
- "TimeLeft": 0,
768
- "RoundLabel": null,
769
- "DEBoutId": null,
770
- "DENextBoutId": null,
771
- "RefereeId": null,
772
- "createdAt": "2024-07-16T15:49:16.000Z",
773
- "updatedAt": "2024-07-16T15:49:16.000Z",
774
- "Person1": {
775
- "PersonId": 16,
776
- "DisplayName": "Christian Jacob Peralta",
777
- "ClubId": 1,
778
- "Images": [],
779
- "Club": {
780
- "Name": "Acme Fencing Club",
781
- "Color1": "rose",
782
- "Color2": "navy"
783
- },
784
- "EventPersons": [
785
- {
786
- "DEPosition": null
787
- }
788
- ]
789
- },
790
- "Person2": {
791
- "PersonId": 10,
792
- "DisplayName": "Melissa Jones",
793
- "ClubId": 4,
794
- "Images": [
795
- {
796
- "ImageId": 21,
797
- "URL": "https://randomuser.me/api/portraits/women/9.jpg"
798
- }
799
- ],
800
- "Club": {
801
- "Name": "Guardians of the Guard"
802
- },
803
- "EventPersons": [
804
- {
805
- "DEPosition": null
806
- }
807
- ]
808
- }
388
+ EventPersons: [
389
+ {
390
+ DEPosition: null
391
+ }
392
+ ]
393
+ },
394
+ Person2: {
395
+ PersonId: 3,
396
+ DisplayName: 'Dave Larabee',
397
+ ClubId: 3,
398
+ Images: [],
399
+ Club: {
400
+ Name: 'Sword & Blade of Callie'
809
401
  },
810
- {
811
- "TimerStatus": "stopped",
812
- "BoutId": 1958,
813
- "PoolId": 139,
814
- "EventId": 6,
815
- "Person1Id": 8,
816
- "Person2Id": 3,
817
- "Status": "Scheduled",
818
- "Score1": 0,
819
- "Score2": 0,
820
- "Started": null,
821
- "Ended": null,
822
- "TimeLeft": 0,
823
- "RoundLabel": null,
824
- "DEBoutId": null,
825
- "DENextBoutId": null,
826
- "RefereeId": null,
827
- "createdAt": "2024-07-16T15:49:16.000Z",
828
- "updatedAt": "2024-07-16T15:49:16.000Z",
829
- "Person1": {
830
- "PersonId": 8,
831
- "DisplayName": "Julie Riddle",
832
- "ClubId": 2,
833
- "Images": [
834
- {
835
- "ImageId": 23,
836
- "URL": "https://randomuser.me/api/portraits/women/41.jpg"
837
- }
838
- ],
839
- "Club": {
840
- "Name": "Historical Fencing Of Anywhere",
841
- "Color1": "red",
842
- "Color2": "blue"
843
- },
844
- "EventPersons": [
845
- {
846
- "DEPosition": null
847
- }
848
- ]
849
- },
850
- "Person2": {
851
- "PersonId": 3,
852
- "DisplayName": "Dave Larabee",
853
- "ClubId": 3,
854
- "Images": [],
855
- "Club": {
856
- "Name": "Sword & Blade of Callie"
857
- },
858
- "EventPersons": [
859
- {
860
- "DEPosition": null
861
- }
862
- ]
863
- }
864
- }
865
- ]
402
+ EventPersons: [
403
+ {
404
+ DEPosition: null
405
+ }
406
+ ]
407
+ }
408
+ },
409
+ {
410
+ TimerStatus: 'stopped',
411
+ BoutId: 1951,
412
+ PoolId: 139,
413
+ EventId: 6,
414
+ Person1Id: 8,
415
+ Person2Id: 16,
416
+ Status: 'Scheduled',
417
+ Score1: 0,
418
+ Score2: 0,
419
+ Started: null,
420
+ Ended: null,
421
+ TimeLeft: 0,
422
+ RoundLabel: null,
423
+ DEBoutId: null,
424
+ DENextBoutId: null,
425
+ RefereeId: null,
426
+ createdAt: '2024-07-16T15:49:16.000Z',
427
+ updatedAt: '2024-07-16T15:49:16.000Z',
428
+ Person1: {
429
+ PersonId: 8,
430
+ DisplayName: 'Julie Riddle',
431
+ ClubId: 2,
432
+ Images: [
433
+ {
434
+ ImageId: 23,
435
+ URL: 'https://randomuser.me/api/portraits/women/41.jpg'
436
+ }
437
+ ],
438
+ Club: {
439
+ Name: 'Historical Fencing Of Anywhere',
440
+ Color1: 'red',
441
+ Color2: 'blue'
442
+ },
443
+ EventPersons: [
444
+ {
445
+ DEPosition: null
446
+ }
447
+ ]
448
+ },
449
+ Person2: {
450
+ PersonId: 16,
451
+ DisplayName: 'Christian Jacob Peralta',
452
+ ClubId: 1,
453
+ Images: [],
454
+ Club: {
455
+ Name: 'Acme Fencing Club'
456
+ },
457
+ EventPersons: [
458
+ {
459
+ DEPosition: null
460
+ }
461
+ ]
462
+ }
463
+ },
464
+ {
465
+ TimerStatus: 'stopped',
466
+ BoutId: 1952,
467
+ PoolId: 139,
468
+ EventId: 6,
469
+ Person1Id: 22,
470
+ Person2Id: 10,
471
+ Status: 'Scheduled',
472
+ Score1: 0,
473
+ Score2: 0,
474
+ Started: null,
475
+ Ended: null,
476
+ TimeLeft: 0,
477
+ RoundLabel: null,
478
+ DEBoutId: null,
479
+ DENextBoutId: null,
480
+ RefereeId: null,
481
+ createdAt: '2024-07-16T15:49:16.000Z',
482
+ updatedAt: '2024-07-16T15:49:16.000Z',
483
+ Person1: {
484
+ PersonId: 22,
485
+ DisplayName: 'Bob Smith',
486
+ ClubId: 6,
487
+ Images: [
488
+ {
489
+ ImageId: 12,
490
+ URL: 'https://randomuser.me/api/portraits/men/81.jpg'
491
+ }
492
+ ],
493
+ Club: {
494
+ Name: 'SwordPlay Society',
495
+ Color1: 'red',
496
+ Color2: 'blue'
497
+ },
498
+ EventPersons: [
499
+ {
500
+ DEPosition: null
501
+ }
502
+ ]
503
+ },
504
+ Person2: {
505
+ PersonId: 10,
506
+ DisplayName: 'Melissa Jones',
507
+ ClubId: 4,
508
+ Images: [
509
+ {
510
+ ImageId: 21,
511
+ URL: 'https://randomuser.me/api/portraits/women/9.jpg'
512
+ }
513
+ ],
514
+ Club: {
515
+ Name: 'Guardians of the Guard'
516
+ },
517
+ EventPersons: [
518
+ {
519
+ DEPosition: null
520
+ }
521
+ ]
522
+ }
523
+ },
524
+ {
525
+ TimerStatus: 'stopped',
526
+ BoutId: 1953,
527
+ PoolId: 139,
528
+ EventId: 6,
529
+ Person1Id: 16,
530
+ Person2Id: 1,
531
+ Status: 'Scheduled',
532
+ Score1: 0,
533
+ Score2: 0,
534
+ Started: null,
535
+ Ended: null,
536
+ TimeLeft: 0,
537
+ RoundLabel: null,
538
+ DEBoutId: null,
539
+ DENextBoutId: null,
540
+ RefereeId: null,
541
+ createdAt: '2024-07-16T15:49:16.000Z',
542
+ updatedAt: '2024-07-16T15:49:16.000Z',
543
+ Person1: {
544
+ PersonId: 16,
545
+ DisplayName: 'Christian Jacob Peralta',
546
+ ClubId: 1,
547
+ Images: [],
548
+ Club: {
549
+ Name: 'Acme Fencing Club',
550
+ Color1: 'rose',
551
+ Color2: 'navy'
552
+ },
553
+ EventPersons: [
554
+ {
555
+ DEPosition: null
556
+ }
557
+ ]
558
+ },
559
+ Person2: {
560
+ PersonId: 1,
561
+ DisplayName: 'Dave Smith',
562
+ ClubId: 4,
563
+ Images: [
564
+ {
565
+ ImageId: 7,
566
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
567
+ }
568
+ ],
569
+ Club: {
570
+ Name: 'Guardians of the Guard'
571
+ },
572
+ EventPersons: [
573
+ {
574
+ DEPosition: null
575
+ }
576
+ ]
577
+ }
578
+ },
579
+ {
580
+ TimerStatus: 'stopped',
581
+ BoutId: 1954,
582
+ PoolId: 139,
583
+ EventId: 6,
584
+ Person1Id: 3,
585
+ Person2Id: 22,
586
+ Status: 'Scheduled',
587
+ Score1: 0,
588
+ Score2: 0,
589
+ Started: null,
590
+ Ended: null,
591
+ TimeLeft: 0,
592
+ RoundLabel: null,
593
+ DEBoutId: null,
594
+ DENextBoutId: null,
595
+ RefereeId: null,
596
+ createdAt: '2024-07-16T15:49:16.000Z',
597
+ updatedAt: '2024-07-16T15:49:16.000Z',
598
+ Person1: {
599
+ PersonId: 3,
600
+ DisplayName: 'Dave Larabee',
601
+ ClubId: 3,
602
+ Images: [],
603
+ Club: {
604
+ Name: 'Sword & Blade of Callie',
605
+ Color1: 'red',
606
+ Color2: 'gold'
607
+ },
608
+ EventPersons: [
609
+ {
610
+ DEPosition: null
611
+ }
612
+ ]
613
+ },
614
+ Person2: {
615
+ PersonId: 22,
616
+ DisplayName: 'Bob Smith',
617
+ ClubId: 6,
618
+ Images: [
619
+ {
620
+ ImageId: 12,
621
+ URL: 'https://randomuser.me/api/portraits/men/81.jpg'
622
+ }
623
+ ],
624
+ Club: {
625
+ Name: 'SwordPlay Society'
626
+ },
627
+ EventPersons: [
628
+ {
629
+ DEPosition: null
630
+ }
631
+ ]
632
+ }
633
+ },
634
+ {
635
+ TimerStatus: 'stopped',
636
+ BoutId: 1955,
637
+ PoolId: 139,
638
+ EventId: 6,
639
+ Person1Id: 10,
640
+ Person2Id: 8,
641
+ Status: 'Scheduled',
642
+ Score1: 0,
643
+ Score2: 0,
644
+ Started: null,
645
+ Ended: null,
646
+ TimeLeft: 0,
647
+ RoundLabel: null,
648
+ DEBoutId: null,
649
+ DENextBoutId: null,
650
+ RefereeId: null,
651
+ createdAt: '2024-07-16T15:49:16.000Z',
652
+ updatedAt: '2024-07-16T15:49:16.000Z',
653
+ Person1: {
654
+ PersonId: 10,
655
+ DisplayName: 'Melissa Jones',
656
+ ClubId: 4,
657
+ Images: [
658
+ {
659
+ ImageId: 21,
660
+ URL: 'https://randomuser.me/api/portraits/women/9.jpg'
661
+ }
662
+ ],
663
+ Club: {
664
+ Name: 'Guardians of the Guard',
665
+ Color1: 'purple',
666
+ Color2: 'orange'
667
+ },
668
+ EventPersons: [
669
+ {
670
+ DEPosition: null
671
+ }
672
+ ]
673
+ },
674
+ Person2: {
675
+ PersonId: 8,
676
+ DisplayName: 'Julie Riddle',
677
+ ClubId: 2,
678
+ Images: [
679
+ {
680
+ ImageId: 23,
681
+ URL: 'https://randomuser.me/api/portraits/women/41.jpg'
682
+ }
683
+ ],
684
+ Club: {
685
+ Name: 'Historical Fencing Of Anywhere'
686
+ },
687
+ EventPersons: [
688
+ {
689
+ DEPosition: null
690
+ }
691
+ ]
692
+ }
693
+ },
694
+ {
695
+ TimerStatus: 'stopped',
696
+ BoutId: 1956,
697
+ PoolId: 139,
698
+ EventId: 6,
699
+ Person1Id: 1,
700
+ Person2Id: 22,
701
+ Status: 'Scheduled',
702
+ Score1: 0,
703
+ Score2: 0,
704
+ Started: null,
705
+ Ended: null,
706
+ TimeLeft: 0,
707
+ RoundLabel: null,
708
+ DEBoutId: null,
709
+ DENextBoutId: null,
710
+ RefereeId: null,
711
+ createdAt: '2024-07-16T15:49:16.000Z',
712
+ updatedAt: '2024-07-16T15:49:16.000Z',
713
+ Person1: {
714
+ PersonId: 1,
715
+ DisplayName: 'Dave Smith',
716
+ ClubId: 4,
717
+ Images: [
718
+ {
719
+ ImageId: 7,
720
+ URL: 'https://randomuser.me/api/portraits/men/22.jpg'
721
+ }
722
+ ],
723
+ Club: {
724
+ Name: 'Guardians of the Guard',
725
+ Color1: 'purple',
726
+ Color2: 'orange'
727
+ },
728
+ EventPersons: [
729
+ {
730
+ DEPosition: null
731
+ }
732
+ ]
733
+ },
734
+ Person2: {
735
+ PersonId: 22,
736
+ DisplayName: 'Bob Smith',
737
+ ClubId: 6,
738
+ Images: [
739
+ {
740
+ ImageId: 12,
741
+ URL: 'https://randomuser.me/api/portraits/men/81.jpg'
742
+ }
743
+ ],
744
+ Club: {
745
+ Name: 'SwordPlay Society'
746
+ },
747
+ EventPersons: [
748
+ {
749
+ DEPosition: null
750
+ }
751
+ ]
752
+ }
753
+ },
754
+ {
755
+ TimerStatus: 'stopped',
756
+ BoutId: 1957,
757
+ PoolId: 139,
758
+ EventId: 6,
759
+ Person1Id: 16,
760
+ Person2Id: 10,
761
+ Status: 'Scheduled',
762
+ Score1: 0,
763
+ Score2: 0,
764
+ Started: null,
765
+ Ended: null,
766
+ TimeLeft: 0,
767
+ RoundLabel: null,
768
+ DEBoutId: null,
769
+ DENextBoutId: null,
770
+ RefereeId: null,
771
+ createdAt: '2024-07-16T15:49:16.000Z',
772
+ updatedAt: '2024-07-16T15:49:16.000Z',
773
+ Person1: {
774
+ PersonId: 16,
775
+ DisplayName: 'Christian Jacob Peralta',
776
+ ClubId: 1,
777
+ Images: [],
778
+ Club: {
779
+ Name: 'Acme Fencing Club',
780
+ Color1: 'rose',
781
+ Color2: 'navy'
782
+ },
783
+ EventPersons: [
784
+ {
785
+ DEPosition: null
786
+ }
787
+ ]
788
+ },
789
+ Person2: {
790
+ PersonId: 10,
791
+ DisplayName: 'Melissa Jones',
792
+ ClubId: 4,
793
+ Images: [
794
+ {
795
+ ImageId: 21,
796
+ URL: 'https://randomuser.me/api/portraits/women/9.jpg'
797
+ }
798
+ ],
799
+ Club: {
800
+ Name: 'Guardians of the Guard'
801
+ },
802
+ EventPersons: [
803
+ {
804
+ DEPosition: null
805
+ }
806
+ ]
807
+ }
808
+ },
809
+ {
810
+ TimerStatus: 'stopped',
811
+ BoutId: 1958,
812
+ PoolId: 139,
813
+ EventId: 6,
814
+ Person1Id: 8,
815
+ Person2Id: 3,
816
+ Status: 'Scheduled',
817
+ Score1: 0,
818
+ Score2: 0,
819
+ Started: null,
820
+ Ended: null,
821
+ TimeLeft: 0,
822
+ RoundLabel: null,
823
+ DEBoutId: null,
824
+ DENextBoutId: null,
825
+ RefereeId: null,
826
+ createdAt: '2024-07-16T15:49:16.000Z',
827
+ updatedAt: '2024-07-16T15:49:16.000Z',
828
+ Person1: {
829
+ PersonId: 8,
830
+ DisplayName: 'Julie Riddle',
831
+ ClubId: 2,
832
+ Images: [
833
+ {
834
+ ImageId: 23,
835
+ URL: 'https://randomuser.me/api/portraits/women/41.jpg'
836
+ }
837
+ ],
838
+ Club: {
839
+ Name: 'Historical Fencing Of Anywhere',
840
+ Color1: 'red',
841
+ Color2: 'blue'
842
+ },
843
+ EventPersons: [
844
+ {
845
+ DEPosition: null
846
+ }
847
+ ]
848
+ },
849
+ Person2: {
850
+ PersonId: 3,
851
+ DisplayName: 'Dave Larabee',
852
+ ClubId: 3,
853
+ Images: [],
854
+ Club: {
855
+ Name: 'Sword & Blade of Callie'
856
+ },
857
+ EventPersons: [
858
+ {
859
+ DEPosition: null
860
+ }
861
+ ]
862
+ }
863
+ }
864
+ ]
866
865
  }
867
- ],
868
- "eventRules": [
866
+ ],
867
+ eventRules: [
869
868
  {
870
- "RuleId": 5,
871
- "RuleName": "DE3rdFenceOff",
872
- "RuleValue": "false",
873
- "Context": "de"
869
+ RuleId: 5,
870
+ RuleName: 'DE3rdFenceOff',
871
+ RuleValue: 'false',
872
+ Context: 'de'
874
873
  },
875
874
  {
876
- "RuleId": 6,
877
- "RuleName": "PoolNumOfPasses",
878
- "RuleValue": "5",
879
- "Context": "pool"
875
+ RuleId: 6,
876
+ RuleName: 'PoolNumOfPasses',
877
+ RuleValue: '5',
878
+ Context: 'pool'
880
879
  },
881
880
  {
882
- "RuleId": 7,
883
- "RuleName": "DENumOfPasses",
884
- "RuleValue": "7",
885
- "Context": "de"
881
+ RuleId: 7,
882
+ RuleName: 'DENumOfPasses',
883
+ RuleValue: '7',
884
+ Context: 'de'
886
885
  },
887
886
  {
888
- "RuleId": 9,
889
- "RuleName": "DEPromotionOrder1",
890
- "RuleValue": "W%,IND,TS",
891
- "Context": "de"
887
+ RuleId: 9,
888
+ RuleName: 'DEPromotionOrder1',
889
+ RuleValue: 'W%,IND,TS',
890
+ Context: 'de'
892
891
  },
893
892
  {
894
- "RuleId": 10,
895
- "RuleName": "DENumOfPromotion",
896
- "RuleValue": "100%",
897
- "Context": "de"
893
+ RuleId: 10,
894
+ RuleName: 'DENumOfPromotion',
895
+ RuleValue: '100%',
896
+ Context: 'de'
898
897
  },
899
898
  {
900
- "RuleId": 11,
901
- "RuleName": "PoolSeeding",
902
- "RuleValue": "HR",
903
- "Context": "pool"
899
+ RuleId: 11,
900
+ RuleName: 'PoolSeeding',
901
+ RuleValue: 'HR',
902
+ Context: 'pool'
904
903
  },
905
904
  {
906
- "RuleId": 14,
907
- "RuleName": "CutOffNumber",
908
- "RuleValue": "32",
909
- "Context": "event"
905
+ RuleId: 14,
906
+ RuleName: 'CutOffNumber',
907
+ RuleValue: '32',
908
+ Context: 'event'
910
909
  }
911
- ],
912
- "hostingClubColors": {
913
- "Color1": "rose",
914
- "Color2": "navy"
915
- }
910
+ ],
911
+ hostingClubColors: {
912
+ Color1: 'rose',
913
+ Color2: 'navy'
914
+ }
916
915
  };
917
916
 
918
- export default getPoolsWithBouts6PoolId139;
917
+ export default getPoolsWithBouts6PoolId139;