@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,837 +1,837 @@
1
- const getDEWithBouts6Fencers =
1
+ const getDEWithBouts6Fencers = {
2
+ message: 'DE Pool retrieved',
3
+ pools: [
2
4
  {
3
- "message": "DE Pool retrieved",
4
- "pools": [
5
- {
6
- "PoolId": 775,
7
- "Name": "Open Rapier and Dagger-DE",
8
- "RingName": "DE Bracket",
9
- "Flight": 1,
10
- "PoolType": "de",
11
- "EventId": 174,
12
- "Status": "live",
13
- "Updated": "2026-02-08T18:43:15.000Z",
14
- "Staff": [],
15
- "Bouts": [
16
- {
17
- "TimerStatus": "stopped",
18
- "RefName": "Unassigned",
19
- "BoutId": 16876,
20
- "PoolId": 775,
21
- "EventId": 174,
22
- "OrderIndex": 0,
23
- "Person1Pos": 0,
24
- "Person2Pos": 0,
25
- "Person1Id": 43,
26
- "Person2Id": 201,
27
- "Status": " \"Bouts\": [\n" +
28
- " {\n" +
29
- " \"TimerStatus\": \"stopped\",\n" +
30
- " \"RefName\": \"Unassigned\",\n" +
31
- " \"BoutId\": 16876,\n" +
32
- " \"PoolId\": 775,\n" +
33
- " \"EventId\": 174,\n" +
34
- " \"OrderIndex\": 0,\n" +
35
- " \"Person1Pos\": 0,\n" +
36
- " \"Person2Pos\": 0,\n" +
37
- " \"Person1Id\": 43,\n" +
38
- " \"Person2Id\": 201,\n" +
39
- " \"Status\": \"Scheduled\",\n" +
40
- " \"Score1\": 0,\n" +
41
- " \"Score2\": 0,\n" +
42
- " \"Started\": null,\n" +
43
- " \"Ended\": null,\n" +
44
- " \"TimeLeft\": 0,\n" +
45
- " \"CurrentPass\": 0,\n" +
46
- " \"MaxPasses\": 0,\n" +
47
- " \"RoundLabel\": \"Table of 8\",\n" +
48
- " \"DEBoutId\": 1,\n" +
49
- " \"DENextBoutId\": 5,\n" +
50
- " \"LoserNextBoutId\": null,\n" +
51
- " \"RefereeId\": 1,\n" +
52
- " \"createdAt\": \"2026-02-08T18:43:15.000Z\",\n" +
53
- " \"updatedAt\": \"2026-02-08T18:43:21.000Z\",\n" +
54
- " \"Person1\": {\n" +
55
- " \"PersonId\": 43,\n" +
56
- " \"DisplayName\": \"Derek Ray\",\n" +
57
- " \"ClubId\": 10,\n" +
58
- " \"ShowData\": true,\n" +
59
- " \"Images\": [\n" +
60
- " {\n" +
61
- " \"ImageId\": 139,\n" +
62
- " \"URL\": \"https://meyersquaredimages.com/uploads/p-e12ed951.png\"\n" +
63
- " }\n" +
64
- " ],\n" +
65
- " \"Club\": {\n" +
66
- " \"Name\": \"Columbus United Fencing Club\",\n" +
67
- " \"Color1\": \"navy\",\n" +
68
- " \"Color2\": \"rose\"\n" +
69
- " },\n" +
70
- " \"EventPersons\": [\n" +
71
- " {\n" +
72
- " \"DEPosition\": 1,\n" +
73
- " \"LastNote\": null\n" +
74
- " }\n" +
75
- " ],\n" +
76
- " \"Penalties\": []\n" +
77
- " },\n" +
78
- " \"Person2\": {\n" +
79
- " \"PersonId\": 201,\n" +
80
- " \"DisplayName\": \"Test Tester1\",\n" +
81
- " \"ClubId\": 17,\n" +
82
- " \"ShowData\": true,\n" +
83
- " \"Images\": [],\n" +
84
- " \"Club\": {\n" +
85
- " \"Name\": \"No Club Affiliation \"\n" +
86
- " },\n" +
87
- " \"EventPersons\": [\n" +
88
- " {\n" +
89
- " \"DEPosition\": 8,\n" +
90
- " \"LastNote\": null\n" +
91
- " }\n" +
92
- " ],\n" +
93
- " \"Penalties\": []\n" +
94
- " },\n" +
95
- " \"Pool\": {\n" +
96
- " \"RingName\": \"DE Bracket\"\n" +
97
- " },\n" +
98
- " \"Metrics\": []\n" +
99
- " },",
100
- "Score1": 0,
101
- "Score2": 0,
102
- "Started": null,
103
- "Ended": null,
104
- "TimeLeft": 0,
105
- "CurrentPass": 0,
106
- "MaxPasses": 0,
107
- "RoundLabel": "Table of 8",
108
- "DEBoutId": 1,
109
- "DENextBoutId": 5,
110
- "LoserNextBoutId": null,
111
- "RefereeId": 1,
112
- "createdAt": "2026-02-08T18:43:15.000Z",
113
- "updatedAt": "2026-02-08T18:43:21.000Z",
114
- "Person1": {
115
- "PersonId": 43,
116
- "DisplayName": "Derek Ray",
117
- "ClubId": 10,
118
- "ShowData": true,
119
- "Images": [
120
- {
121
- "ImageId": 139,
122
- "URL": "https://meyersquaredimages.com/uploads/p-e12ed951.png"
123
- }
124
- ],
125
- "Club": {
126
- "Name": "Columbus United Fencing Club",
127
- "Color1": "navy",
128
- "Color2": "rose"
129
- },
130
- "EventPersons": [
131
- {
132
- "DEPosition": 1,
133
- "LastNote": null
134
- }
135
- ],
136
- "Penalties": []
137
- },
138
- "Person2": {
139
- "PersonId": 201,
140
- "DisplayName": "Test Tester1",
141
- "ClubId": 17,
142
- "ShowData": true,
143
- "Images": [],
144
- "Club": {
145
- "Name": "No Club Affiliation "
146
- },
147
- "EventPersons": [
148
- {
149
- "DEPosition": 8,
150
- "LastNote": null
151
- }
152
- ],
153
- "Penalties": []
154
- },
155
- "Pool": {
156
- "RingName": "DE Bracket"
157
- },
158
- "Metrics": []
159
- },
160
- {
161
- "TimerStatus": "stopped",
162
- "RefName": "Unassigned",
163
- "BoutId": 16877,
164
- "PoolId": 775,
165
- "EventId": 174,
166
- "OrderIndex": 0,
167
- "Person1Pos": 0,
168
- "Person2Pos": 0,
169
- "Person1Id": 192,
170
- "Person2Id": 79,
171
- "Status": "Scheduled",
172
- "Score1": 0,
173
- "Score2": 0,
174
- "Started": null,
175
- "Ended": null,
176
- "TimeLeft": 0,
177
- "CurrentPass": 0,
178
- "MaxPasses": 0,
179
- "RoundLabel": "Table of 8",
180
- "DEBoutId": 2,
181
- "DENextBoutId": 5,
182
- "LoserNextBoutId": null,
183
- "RefereeId": null,
184
- "createdAt": "2026-02-08T18:43:15.000Z",
185
- "updatedAt": "2026-02-08T18:43:15.000Z",
186
- "Person1": {
187
- "PersonId": 192,
188
- "DisplayName": "Adam Severa",
189
- "ClubId": 26,
190
- "ShowData": true,
191
- "Images": [],
192
- "Club": {
193
- "Name": "Youngstown Historical Fencing",
194
- "Color1": "Red",
195
- "Color2": "Gold"
196
- },
197
- "EventPersons": [
198
- {
199
- "DEPosition": 5,
200
- "LastNote": null
201
- }
202
- ],
203
- "Penalties": []
204
- },
205
- "Person2": {
206
- "PersonId": 79,
207
- "DisplayName": "Tom Testerlou",
208
- "ClubId": 10,
209
- "ShowData": true,
210
- "Images": [],
211
- "Club": {
212
- "Name": "Columbus United Fencing Club"
213
- },
214
- "EventPersons": [
215
- {
216
- "DEPosition": 4,
217
- "LastNote": null
218
- }
219
- ],
220
- "Penalties": []
221
- },
222
- "Pool": {
223
- "RingName": "DE Bracket"
224
- },
225
- "Metrics": []
226
- },
227
- {
228
- "TimerStatus": "stopped",
229
- "RefName": "Unassigned",
230
- "BoutId": 16878,
231
- "PoolId": 775,
232
- "EventId": 174,
233
- "OrderIndex": 0,
234
- "Person1Pos": 0,
235
- "Person2Pos": 0,
236
- "Person1Id": 77,
237
- "Person2Id": 632,
238
- "Status": "Scheduled",
239
- "Score1": 0,
240
- "Score2": 0,
241
- "Started": null,
242
- "Ended": null,
243
- "TimeLeft": 0,
244
- "CurrentPass": 0,
245
- "MaxPasses": 0,
246
- "RoundLabel": "Table of 8",
247
- "DEBoutId": 3,
248
- "DENextBoutId": 6,
249
- "LoserNextBoutId": null,
250
- "RefereeId": null,
251
- "createdAt": "2026-02-08T18:43:15.000Z",
252
- "updatedAt": "2026-02-08T18:43:15.000Z",
253
- "Person1": {
254
- "PersonId": 77,
255
- "DisplayName": "Elaine Davis",
256
- "ClubId": 23,
257
- "ShowData": true,
258
- "Images": [],
259
- "Club": {
260
- "Name": "Queen City Sword Guild",
261
- "Color1": "blue",
262
- "Color2": "silver"
263
- },
264
- "EventPersons": [
265
- {
266
- "DEPosition": 3,
267
- "LastNote": null
268
- }
269
- ],
270
- "Penalties": []
271
- },
272
- "Person2": {
273
- "PersonId": 632,
274
- "DisplayName": "Paul Bates",
275
- "ClubId": 81,
276
- "ShowData": true,
277
- "Images": [],
278
- "Club": {
279
- "Name": "Center for Blade Arts"
280
- },
281
- "EventPersons": [
282
- {
283
- "DEPosition": 6,
284
- "LastNote": null
285
- }
286
- ],
287
- "Penalties": []
288
- },
289
- "Pool": {
290
- "RingName": "DE Bracket"
291
- },
292
- "Metrics": []
293
- },
294
- {
295
- "TimerStatus": "stopped",
296
- "RefName": "Unassigned",
297
- "BoutId": 16879,
298
- "PoolId": 775,
299
- "EventId": 174,
300
- "OrderIndex": 0,
301
- "Person1Pos": 0,
302
- "Person2Pos": 0,
303
- "Person1Id": 526,
304
- "Person2Id": 144,
305
- "Status": "Scheduled",
306
- "Score1": 0,
307
- "Score2": 0,
308
- "Started": null,
309
- "Ended": null,
310
- "TimeLeft": 0,
311
- "CurrentPass": 0,
312
- "MaxPasses": 0,
313
- "RoundLabel": "Table of 8",
314
- "DEBoutId": 4,
315
- "DENextBoutId": 6,
316
- "LoserNextBoutId": null,
317
- "RefereeId": null,
318
- "createdAt": "2026-02-08T18:43:15.000Z",
319
- "updatedAt": "2026-02-08T18:43:15.000Z",
320
- "Person1": {
321
- "PersonId": 526,
322
- "DisplayName": "Harriet Coates",
323
- "ClubId": 45,
324
- "ShowData": true,
325
- "Images": [],
326
- "Club": {
327
- "Name": "Phoenix Society of Historical Swordsmanship",
328
- "Color1": "Red",
329
- "Color2": "Gold"
330
- },
331
- "EventPersons": [
332
- {
333
- "DEPosition": 7,
334
- "LastNote": null
335
- }
336
- ],
337
- "Penalties": []
338
- },
339
- "Person2": {
340
- "PersonId": 144,
341
- "DisplayName": "Jordan Moreno",
342
- "ClubId": 30,
343
- "ShowData": true,
344
- "Images": [],
345
- "Club": {
346
- "Name": "Maryland Kunst Des Fechtens"
347
- },
348
- "EventPersons": [
349
- {
350
- "DEPosition": 2,
351
- "LastNote": null
352
- }
353
- ],
354
- "Penalties": []
355
- },
356
- "Pool": {
357
- "RingName": "DE Bracket"
358
- },
359
- "Metrics": []
360
- },
361
- {
362
- "TimerStatus": "stopped",
363
- "RefName": "Unassigned",
364
- "BoutId": 16880,
365
- "PoolId": 775,
366
- "EventId": 174,
367
- "OrderIndex": 0,
368
- "Person1Pos": 0,
369
- "Person2Pos": 0,
370
- "Person1Id": 0,
371
- "Person2Id": 0,
372
- "Status": "Scheduled",
373
- "Score1": 0,
374
- "Score2": 0,
375
- "Started": null,
376
- "Ended": null,
377
- "TimeLeft": 0,
378
- "CurrentPass": 0,
379
- "MaxPasses": 0,
380
- "RoundLabel": "Semifinal",
381
- "DEBoutId": 5,
382
- "DENextBoutId": 7,
383
- "LoserNextBoutId": null,
384
- "RefereeId": null,
385
- "createdAt": "2026-02-08T18:43:15.000Z",
386
- "updatedAt": "2026-02-08T18:43:16.000Z",
387
- "Person1": {
388
- "PersonId": 0,
389
- "DisplayName": "BYE",
390
- "ClubId": 17,
391
- "ShowData": true,
392
- "Images": [],
393
- "Club": {
394
- "Name": "No Club Affiliation ",
395
- "Color1": "red",
396
- "Color2": "blue"
397
- },
398
- "EventPersons": [],
399
- "Penalties": []
400
- },
401
- "Person2": {
402
- "PersonId": 0,
403
- "DisplayName": "BYE",
404
- "ClubId": 17,
405
- "ShowData": true,
406
- "Images": [],
407
- "Club": {
408
- "Name": "No Club Affiliation "
409
- },
410
- "EventPersons": [],
411
- "Penalties": []
412
- },
413
- "Pool": {
414
- "RingName": "DE Bracket"
415
- },
416
- "Metrics": []
417
- },
418
- {
419
- "TimerStatus": "stopped",
420
- "RefName": "Unassigned",
421
- "BoutId": 16881,
422
- "PoolId": 775,
423
- "EventId": 174,
424
- "OrderIndex": 0,
425
- "Person1Pos": 0,
426
- "Person2Pos": 0,
427
- "Person1Id": 0,
428
- "Person2Id": 0,
429
- "Status": "Scheduled",
430
- "Score1": 0,
431
- "Score2": 0,
432
- "Started": null,
433
- "Ended": null,
434
- "TimeLeft": 0,
435
- "CurrentPass": 0,
436
- "MaxPasses": 0,
437
- "RoundLabel": "Semifinal",
438
- "DEBoutId": 6,
439
- "DENextBoutId": 7,
440
- "LoserNextBoutId": null,
441
- "RefereeId": null,
442
- "createdAt": "2026-02-08T18:43:15.000Z",
443
- "updatedAt": "2026-02-08T18:43:16.000Z",
444
- "Person1": {
445
- "PersonId": 0,
446
- "DisplayName": "BYE",
447
- "ClubId": 17,
448
- "ShowData": true,
449
- "Images": [],
450
- "Club": {
451
- "Name": "No Club Affiliation ",
452
- "Color1": "red",
453
- "Color2": "blue"
454
- },
455
- "EventPersons": [],
456
- "Penalties": []
457
- },
458
- "Person2": {
459
- "PersonId": 0,
460
- "DisplayName": "BYE",
461
- "ClubId": 17,
462
- "ShowData": true,
463
- "Images": [],
464
- "Club": {
465
- "Name": "No Club Affiliation "
466
- },
467
- "EventPersons": [],
468
- "Penalties": []
469
- },
470
- "Pool": {
471
- "RingName": "DE Bracket"
472
- },
473
- "Metrics": []
474
- },
475
- {
476
- "TimerStatus": "stopped",
477
- "RefName": "Unassigned",
478
- "BoutId": 16882,
479
- "PoolId": 775,
480
- "EventId": 174,
481
- "OrderIndex": 0,
482
- "Person1Pos": 0,
483
- "Person2Pos": 0,
484
- "Person1Id": 0,
485
- "Person2Id": 0,
486
- "Status": "Scheduled",
487
- "Score1": 0,
488
- "Score2": 0,
489
- "Started": null,
490
- "Ended": null,
491
- "TimeLeft": 0,
492
- "CurrentPass": 0,
493
- "MaxPasses": 0,
494
- "RoundLabel": "Final",
495
- "DEBoutId": 7,
496
- "DENextBoutId": null,
497
- "LoserNextBoutId": null,
498
- "RefereeId": null,
499
- "createdAt": "2026-02-08T18:43:15.000Z",
500
- "updatedAt": "2026-02-08T18:43:15.000Z",
501
- "Person1": {
502
- "PersonId": 0,
503
- "DisplayName": "BYE",
504
- "ClubId": 17,
505
- "ShowData": true,
506
- "Images": [],
507
- "Club": {
508
- "Name": "No Club Affiliation ",
509
- "Color1": "red",
510
- "Color2": "blue"
511
- },
512
- "EventPersons": [],
513
- "Penalties": []
514
- },
515
- "Person2": {
516
- "PersonId": 0,
517
- "DisplayName": "BYE",
518
- "ClubId": 17,
519
- "ShowData": true,
520
- "Images": [],
521
- "Club": {
522
- "Name": "No Club Affiliation "
523
- },
524
- "EventPersons": [],
525
- "Penalties": []
526
- },
527
- "Pool": {
528
- "RingName": "DE Bracket"
529
- },
530
- "Metrics": []
531
- }
532
- ]
533
- }
534
- ],
535
- "event": {
536
- "EventId": 174,
537
- "TournamentId": 75,
538
- "EventName": "Open Rapier and Dagger",
539
- "Date": "2026-02-13",
540
- "StartTime": "09:00:00",
541
- "NumberOfRings": 8,
542
- "NumberOfPools": 2,
543
- "PoolSize": 6,
544
- "Flights": 1,
545
- "WeaponId": 5,
546
- "Status": "de",
547
- "EventRating": "U",
548
- "IncludeInRatings": true,
549
- "EventPrice": null,
550
- "Present": 8,
551
- "Absent": 0,
552
- "Removed": 0,
553
- "EventRules": [
554
- {
555
- "EventId": 174,
556
- "RuleId": 1,
557
- "RuleValue": "180",
558
- "Rules": {
559
- "RuleName": "PoolTime",
560
- "Context": "pool"
561
- }
562
- },
563
- {
564
- "EventId": 174,
565
- "RuleId": 2,
566
- "RuleValue": "7",
567
- "Rules": {
568
- "RuleName": "PoolMaxPoints",
569
- "Context": "pool"
570
- }
571
- },
572
- {
573
- "EventId": 174,
574
- "RuleId": 3,
575
- "RuleValue": "180",
576
- "Rules": {
577
- "RuleName": "DETime",
578
- "Context": "de"
579
- }
580
- },
581
- {
582
- "EventId": 174,
583
- "RuleId": 4,
584
- "RuleValue": "12",
585
- "Rules": {
586
- "RuleName": "DEMaxPoints",
587
- "Context": "de"
588
- }
589
- },
590
- {
591
- "EventId": 174,
592
- "RuleId": 5,
593
- "RuleValue": "false",
594
- "Rules": {
595
- "RuleName": "DE3rdFenceOff",
596
- "Context": "de"
597
- }
598
- },
599
- {
600
- "EventId": 174,
601
- "RuleId": 9,
602
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
603
- "Rules": {
604
- "RuleName": "DEPromotionOrder",
605
- "Context": "de"
606
- }
607
- },
608
- {
609
- "EventId": 174,
610
- "RuleId": 10,
611
- "RuleValue": "100%",
612
- "Rules": {
613
- "RuleName": "DENumOfPromotion",
614
- "Context": "de"
615
- }
616
- },
617
- {
618
- "EventId": 174,
619
- "RuleId": 11,
620
- "RuleValue": "HR - Hema Rating",
621
- "Rules": {
622
- "RuleName": "PoolSeeding",
623
- "Context": "pool"
624
- }
625
- },
626
- {
627
- "EventId": 174,
628
- "RuleId": 14,
629
- "RuleValue": "56",
630
- "Rules": {
631
- "RuleName": "CutOffNumber",
632
- "Context": "event"
633
- }
634
- },
635
- {
636
- "EventId": 174,
637
- "RuleId": 15,
638
- "RuleValue": "single",
639
- "Rules": {
640
- "RuleName": "DEType",
641
- "Context": "de"
642
- }
643
- },
644
- {
645
- "EventId": 174,
646
- "RuleId": 16,
647
- "RuleValue": "true",
648
- "Rules": {
649
- "RuleName": "PoolScoreDirection",
650
- "Context": "event"
651
- }
652
- },
653
- {
654
- "EventId": 174,
655
- "RuleId": 17,
656
- "RuleValue": "Percent",
657
- "Rules": {
658
- "RuleName": "DEPromoteBy",
659
- "Context": "de"
660
- }
661
- },
662
- {
663
- "EventId": 174,
664
- "RuleId": 19,
665
- "RuleValue": "false",
666
- "Rules": {
667
- "RuleName": "CountHandshots",
668
- "Context": "event"
669
- }
670
- },
671
- {
672
- "EventId": 174,
673
- "RuleId": 20,
674
- "RuleValue": "false",
675
- "Rules": {
676
- "RuleName": "CountDoubles",
677
- "Context": "event"
678
- }
679
- },
680
- {
681
- "EventId": 174,
682
- "RuleId": 21,
683
- "RuleValue": "true",
684
- "Rules": {
685
- "RuleName": "PenaltiesReset",
686
- "Context": "event"
687
- }
688
- }
5
+ PoolId: 775,
6
+ Name: 'Open Rapier and Dagger-DE',
7
+ RingName: 'DE Bracket',
8
+ Flight: 1,
9
+ PoolType: 'de',
10
+ EventId: 174,
11
+ Status: 'live',
12
+ Updated: '2026-02-08T18:43:15.000Z',
13
+ Staff: [],
14
+ Bouts: [
15
+ {
16
+ TimerStatus: 'stopped',
17
+ RefName: 'Unassigned',
18
+ BoutId: 16876,
19
+ PoolId: 775,
20
+ EventId: 174,
21
+ OrderIndex: 0,
22
+ Person1Pos: 0,
23
+ Person2Pos: 0,
24
+ Person1Id: 43,
25
+ Person2Id: 201,
26
+ Status:
27
+ ' "Bouts": [\n' +
28
+ ' {\n' +
29
+ ' "TimerStatus": "stopped",\n' +
30
+ ' "RefName": "Unassigned",\n' +
31
+ ' "BoutId": 16876,\n' +
32
+ ' "PoolId": 775,\n' +
33
+ ' "EventId": 174,\n' +
34
+ ' "OrderIndex": 0,\n' +
35
+ ' "Person1Pos": 0,\n' +
36
+ ' "Person2Pos": 0,\n' +
37
+ ' "Person1Id": 43,\n' +
38
+ ' "Person2Id": 201,\n' +
39
+ ' "Status": "Scheduled",\n' +
40
+ ' "Score1": 0,\n' +
41
+ ' "Score2": 0,\n' +
42
+ ' "Started": null,\n' +
43
+ ' "Ended": null,\n' +
44
+ ' "TimeLeft": 0,\n' +
45
+ ' "CurrentPass": 0,\n' +
46
+ ' "MaxPasses": 0,\n' +
47
+ ' "RoundLabel": "Table of 8",\n' +
48
+ ' "DEBoutId": 1,\n' +
49
+ ' "DENextBoutId": 5,\n' +
50
+ ' "LoserNextBoutId": null,\n' +
51
+ ' "RefereeId": 1,\n' +
52
+ ' "createdAt": "2026-02-08T18:43:15.000Z",\n' +
53
+ ' "updatedAt": "2026-02-08T18:43:21.000Z",\n' +
54
+ ' "Person1": {\n' +
55
+ ' "PersonId": 43,\n' +
56
+ ' "DisplayName": "Derek Ray",\n' +
57
+ ' "ClubId": 10,\n' +
58
+ ' "ShowData": true,\n' +
59
+ ' "Images": [\n' +
60
+ ' {\n' +
61
+ ' "ImageId": 139,\n' +
62
+ ' "URL": "https://meyersquaredimages.com/uploads/p-e12ed951.png"\n' +
63
+ ' }\n' +
64
+ ' ],\n' +
65
+ ' "Club": {\n' +
66
+ ' "Name": "Columbus United Fencing Club",\n' +
67
+ ' "Color1": "navy",\n' +
68
+ ' "Color2": "rose"\n' +
69
+ ' },\n' +
70
+ ' "EventPersons": [\n' +
71
+ ' {\n' +
72
+ ' "DEPosition": 1,\n' +
73
+ ' "LastNote": null\n' +
74
+ ' }\n' +
75
+ ' ],\n' +
76
+ ' "Penalties": []\n' +
77
+ ' },\n' +
78
+ ' "Person2": {\n' +
79
+ ' "PersonId": 201,\n' +
80
+ ' "DisplayName": "Test Tester1",\n' +
81
+ ' "ClubId": 17,\n' +
82
+ ' "ShowData": true,\n' +
83
+ ' "Images": [],\n' +
84
+ ' "Club": {\n' +
85
+ ' "Name": "No Club Affiliation "\n' +
86
+ ' },\n' +
87
+ ' "EventPersons": [\n' +
88
+ ' {\n' +
89
+ ' "DEPosition": 8,\n' +
90
+ ' "LastNote": null\n' +
91
+ ' }\n' +
92
+ ' ],\n' +
93
+ ' "Penalties": []\n' +
94
+ ' },\n' +
95
+ ' "Pool": {\n' +
96
+ ' "RingName": "DE Bracket"\n' +
97
+ ' },\n' +
98
+ ' "Metrics": []\n' +
99
+ ' },',
100
+ Score1: 0,
101
+ Score2: 0,
102
+ Started: null,
103
+ Ended: null,
104
+ TimeLeft: 0,
105
+ CurrentPass: 0,
106
+ MaxPasses: 0,
107
+ RoundLabel: 'Table of 8',
108
+ DEBoutId: 1,
109
+ DENextBoutId: 5,
110
+ LoserNextBoutId: null,
111
+ RefereeId: 1,
112
+ createdAt: '2026-02-08T18:43:15.000Z',
113
+ updatedAt: '2026-02-08T18:43:21.000Z',
114
+ Person1: {
115
+ PersonId: 43,
116
+ DisplayName: 'Derek Ray',
117
+ ClubId: 10,
118
+ ShowData: true,
119
+ Images: [
120
+ {
121
+ ImageId: 139,
122
+ URL: 'https://meyersquaredimages.com/uploads/p-e12ed951.png'
123
+ }
689
124
  ],
690
- "Weapon": {
691
- "HRWeaponId": "4"
692
- }
693
- },
694
- "eventRules": [
695
- {
696
- "EventId": 174,
697
- "RuleId": 1,
698
- "RuleValue": "180",
699
- "Rules": {
700
- "RuleName": "PoolTime",
701
- "Context": "pool"
702
- }
125
+ Club: {
126
+ Name: 'Columbus United Fencing Club',
127
+ Color1: 'navy',
128
+ Color2: 'rose'
703
129
  },
704
- {
705
- "EventId": 174,
706
- "RuleId": 2,
707
- "RuleValue": "7",
708
- "Rules": {
709
- "RuleName": "PoolMaxPoints",
710
- "Context": "pool"
711
- }
130
+ EventPersons: [
131
+ {
132
+ DEPosition: 1,
133
+ LastNote: null
134
+ }
135
+ ],
136
+ Penalties: []
137
+ },
138
+ Person2: {
139
+ PersonId: 201,
140
+ DisplayName: 'Test Tester1',
141
+ ClubId: 17,
142
+ ShowData: true,
143
+ Images: [],
144
+ Club: {
145
+ Name: 'No Club Affiliation '
712
146
  },
713
- {
714
- "EventId": 174,
715
- "RuleId": 3,
716
- "RuleValue": "180",
717
- "Rules": {
718
- "RuleName": "DETime",
719
- "Context": "de"
720
- }
147
+ EventPersons: [
148
+ {
149
+ DEPosition: 8,
150
+ LastNote: null
151
+ }
152
+ ],
153
+ Penalties: []
154
+ },
155
+ Pool: {
156
+ RingName: 'DE Bracket'
157
+ },
158
+ Metrics: []
159
+ },
160
+ {
161
+ TimerStatus: 'stopped',
162
+ RefName: 'Unassigned',
163
+ BoutId: 16877,
164
+ PoolId: 775,
165
+ EventId: 174,
166
+ OrderIndex: 0,
167
+ Person1Pos: 0,
168
+ Person2Pos: 0,
169
+ Person1Id: 192,
170
+ Person2Id: 79,
171
+ Status: 'Scheduled',
172
+ Score1: 0,
173
+ Score2: 0,
174
+ Started: null,
175
+ Ended: null,
176
+ TimeLeft: 0,
177
+ CurrentPass: 0,
178
+ MaxPasses: 0,
179
+ RoundLabel: 'Table of 8',
180
+ DEBoutId: 2,
181
+ DENextBoutId: 5,
182
+ LoserNextBoutId: null,
183
+ RefereeId: null,
184
+ createdAt: '2026-02-08T18:43:15.000Z',
185
+ updatedAt: '2026-02-08T18:43:15.000Z',
186
+ Person1: {
187
+ PersonId: 192,
188
+ DisplayName: 'Adam Severa',
189
+ ClubId: 26,
190
+ ShowData: true,
191
+ Images: [],
192
+ Club: {
193
+ Name: 'Youngstown Historical Fencing',
194
+ Color1: 'Red',
195
+ Color2: 'Gold'
721
196
  },
722
- {
723
- "EventId": 174,
724
- "RuleId": 4,
725
- "RuleValue": "12",
726
- "Rules": {
727
- "RuleName": "DEMaxPoints",
728
- "Context": "de"
729
- }
197
+ EventPersons: [
198
+ {
199
+ DEPosition: 5,
200
+ LastNote: null
201
+ }
202
+ ],
203
+ Penalties: []
204
+ },
205
+ Person2: {
206
+ PersonId: 79,
207
+ DisplayName: 'Tom Testerlou',
208
+ ClubId: 10,
209
+ ShowData: true,
210
+ Images: [],
211
+ Club: {
212
+ Name: 'Columbus United Fencing Club'
730
213
  },
731
- {
732
- "EventId": 174,
733
- "RuleId": 5,
734
- "RuleValue": "false",
735
- "Rules": {
736
- "RuleName": "DE3rdFenceOff",
737
- "Context": "de"
738
- }
214
+ EventPersons: [
215
+ {
216
+ DEPosition: 4,
217
+ LastNote: null
218
+ }
219
+ ],
220
+ Penalties: []
221
+ },
222
+ Pool: {
223
+ RingName: 'DE Bracket'
224
+ },
225
+ Metrics: []
226
+ },
227
+ {
228
+ TimerStatus: 'stopped',
229
+ RefName: 'Unassigned',
230
+ BoutId: 16878,
231
+ PoolId: 775,
232
+ EventId: 174,
233
+ OrderIndex: 0,
234
+ Person1Pos: 0,
235
+ Person2Pos: 0,
236
+ Person1Id: 77,
237
+ Person2Id: 632,
238
+ Status: 'Scheduled',
239
+ Score1: 0,
240
+ Score2: 0,
241
+ Started: null,
242
+ Ended: null,
243
+ TimeLeft: 0,
244
+ CurrentPass: 0,
245
+ MaxPasses: 0,
246
+ RoundLabel: 'Table of 8',
247
+ DEBoutId: 3,
248
+ DENextBoutId: 6,
249
+ LoserNextBoutId: null,
250
+ RefereeId: null,
251
+ createdAt: '2026-02-08T18:43:15.000Z',
252
+ updatedAt: '2026-02-08T18:43:15.000Z',
253
+ Person1: {
254
+ PersonId: 77,
255
+ DisplayName: 'Elaine Davis',
256
+ ClubId: 23,
257
+ ShowData: true,
258
+ Images: [],
259
+ Club: {
260
+ Name: 'Queen City Sword Guild',
261
+ Color1: 'blue',
262
+ Color2: 'silver'
739
263
  },
740
- {
741
- "EventId": 174,
742
- "RuleId": 9,
743
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
744
- "Rules": {
745
- "RuleName": "DEPromotionOrder",
746
- "Context": "de"
747
- }
264
+ EventPersons: [
265
+ {
266
+ DEPosition: 3,
267
+ LastNote: null
268
+ }
269
+ ],
270
+ Penalties: []
271
+ },
272
+ Person2: {
273
+ PersonId: 632,
274
+ DisplayName: 'Paul Bates',
275
+ ClubId: 81,
276
+ ShowData: true,
277
+ Images: [],
278
+ Club: {
279
+ Name: 'Center for Blade Arts'
748
280
  },
749
- {
750
- "EventId": 174,
751
- "RuleId": 10,
752
- "RuleValue": "100%",
753
- "Rules": {
754
- "RuleName": "DENumOfPromotion",
755
- "Context": "de"
756
- }
281
+ EventPersons: [
282
+ {
283
+ DEPosition: 6,
284
+ LastNote: null
285
+ }
286
+ ],
287
+ Penalties: []
288
+ },
289
+ Pool: {
290
+ RingName: 'DE Bracket'
291
+ },
292
+ Metrics: []
293
+ },
294
+ {
295
+ TimerStatus: 'stopped',
296
+ RefName: 'Unassigned',
297
+ BoutId: 16879,
298
+ PoolId: 775,
299
+ EventId: 174,
300
+ OrderIndex: 0,
301
+ Person1Pos: 0,
302
+ Person2Pos: 0,
303
+ Person1Id: 526,
304
+ Person2Id: 144,
305
+ Status: 'Scheduled',
306
+ Score1: 0,
307
+ Score2: 0,
308
+ Started: null,
309
+ Ended: null,
310
+ TimeLeft: 0,
311
+ CurrentPass: 0,
312
+ MaxPasses: 0,
313
+ RoundLabel: 'Table of 8',
314
+ DEBoutId: 4,
315
+ DENextBoutId: 6,
316
+ LoserNextBoutId: null,
317
+ RefereeId: null,
318
+ createdAt: '2026-02-08T18:43:15.000Z',
319
+ updatedAt: '2026-02-08T18:43:15.000Z',
320
+ Person1: {
321
+ PersonId: 526,
322
+ DisplayName: 'Harriet Coates',
323
+ ClubId: 45,
324
+ ShowData: true,
325
+ Images: [],
326
+ Club: {
327
+ Name: 'Phoenix Society of Historical Swordsmanship',
328
+ Color1: 'Red',
329
+ Color2: 'Gold'
757
330
  },
758
- {
759
- "EventId": 174,
760
- "RuleId": 11,
761
- "RuleValue": "HR - Hema Rating",
762
- "Rules": {
763
- "RuleName": "PoolSeeding",
764
- "Context": "pool"
765
- }
331
+ EventPersons: [
332
+ {
333
+ DEPosition: 7,
334
+ LastNote: null
335
+ }
336
+ ],
337
+ Penalties: []
338
+ },
339
+ Person2: {
340
+ PersonId: 144,
341
+ DisplayName: 'Jordan Moreno',
342
+ ClubId: 30,
343
+ ShowData: true,
344
+ Images: [],
345
+ Club: {
346
+ Name: 'Maryland Kunst Des Fechtens'
766
347
  },
767
- {
768
- "EventId": 174,
769
- "RuleId": 14,
770
- "RuleValue": "56",
771
- "Rules": {
772
- "RuleName": "CutOffNumber",
773
- "Context": "event"
774
- }
348
+ EventPersons: [
349
+ {
350
+ DEPosition: 2,
351
+ LastNote: null
352
+ }
353
+ ],
354
+ Penalties: []
355
+ },
356
+ Pool: {
357
+ RingName: 'DE Bracket'
358
+ },
359
+ Metrics: []
360
+ },
361
+ {
362
+ TimerStatus: 'stopped',
363
+ RefName: 'Unassigned',
364
+ BoutId: 16880,
365
+ PoolId: 775,
366
+ EventId: 174,
367
+ OrderIndex: 0,
368
+ Person1Pos: 0,
369
+ Person2Pos: 0,
370
+ Person1Id: 0,
371
+ Person2Id: 0,
372
+ Status: 'Scheduled',
373
+ Score1: 0,
374
+ Score2: 0,
375
+ Started: null,
376
+ Ended: null,
377
+ TimeLeft: 0,
378
+ CurrentPass: 0,
379
+ MaxPasses: 0,
380
+ RoundLabel: 'Semifinal',
381
+ DEBoutId: 5,
382
+ DENextBoutId: 7,
383
+ LoserNextBoutId: null,
384
+ RefereeId: null,
385
+ createdAt: '2026-02-08T18:43:15.000Z',
386
+ updatedAt: '2026-02-08T18:43:16.000Z',
387
+ Person1: {
388
+ PersonId: 0,
389
+ DisplayName: 'BYE',
390
+ ClubId: 17,
391
+ ShowData: true,
392
+ Images: [],
393
+ Club: {
394
+ Name: 'No Club Affiliation ',
395
+ Color1: 'red',
396
+ Color2: 'blue'
775
397
  },
776
- {
777
- "EventId": 174,
778
- "RuleId": 15,
779
- "RuleValue": "single",
780
- "Rules": {
781
- "RuleName": "DEType",
782
- "Context": "de"
783
- }
398
+ EventPersons: [],
399
+ Penalties: []
400
+ },
401
+ Person2: {
402
+ PersonId: 0,
403
+ DisplayName: 'BYE',
404
+ ClubId: 17,
405
+ ShowData: true,
406
+ Images: [],
407
+ Club: {
408
+ Name: 'No Club Affiliation '
784
409
  },
785
- {
786
- "EventId": 174,
787
- "RuleId": 16,
788
- "RuleValue": "true",
789
- "Rules": {
790
- "RuleName": "PoolScoreDirection",
791
- "Context": "event"
792
- }
410
+ EventPersons: [],
411
+ Penalties: []
412
+ },
413
+ Pool: {
414
+ RingName: 'DE Bracket'
415
+ },
416
+ Metrics: []
417
+ },
418
+ {
419
+ TimerStatus: 'stopped',
420
+ RefName: 'Unassigned',
421
+ BoutId: 16881,
422
+ PoolId: 775,
423
+ EventId: 174,
424
+ OrderIndex: 0,
425
+ Person1Pos: 0,
426
+ Person2Pos: 0,
427
+ Person1Id: 0,
428
+ Person2Id: 0,
429
+ Status: 'Scheduled',
430
+ Score1: 0,
431
+ Score2: 0,
432
+ Started: null,
433
+ Ended: null,
434
+ TimeLeft: 0,
435
+ CurrentPass: 0,
436
+ MaxPasses: 0,
437
+ RoundLabel: 'Semifinal',
438
+ DEBoutId: 6,
439
+ DENextBoutId: 7,
440
+ LoserNextBoutId: null,
441
+ RefereeId: null,
442
+ createdAt: '2026-02-08T18:43:15.000Z',
443
+ updatedAt: '2026-02-08T18:43:16.000Z',
444
+ Person1: {
445
+ PersonId: 0,
446
+ DisplayName: 'BYE',
447
+ ClubId: 17,
448
+ ShowData: true,
449
+ Images: [],
450
+ Club: {
451
+ Name: 'No Club Affiliation ',
452
+ Color1: 'red',
453
+ Color2: 'blue'
793
454
  },
794
- {
795
- "EventId": 174,
796
- "RuleId": 17,
797
- "RuleValue": "Percent",
798
- "Rules": {
799
- "RuleName": "DEPromoteBy",
800
- "Context": "de"
801
- }
455
+ EventPersons: [],
456
+ Penalties: []
457
+ },
458
+ Person2: {
459
+ PersonId: 0,
460
+ DisplayName: 'BYE',
461
+ ClubId: 17,
462
+ ShowData: true,
463
+ Images: [],
464
+ Club: {
465
+ Name: 'No Club Affiliation '
802
466
  },
803
- {
804
- "EventId": 174,
805
- "RuleId": 19,
806
- "RuleValue": "false",
807
- "Rules": {
808
- "RuleName": "CountHandshots",
809
- "Context": "event"
810
- }
467
+ EventPersons: [],
468
+ Penalties: []
469
+ },
470
+ Pool: {
471
+ RingName: 'DE Bracket'
472
+ },
473
+ Metrics: []
474
+ },
475
+ {
476
+ TimerStatus: 'stopped',
477
+ RefName: 'Unassigned',
478
+ BoutId: 16882,
479
+ PoolId: 775,
480
+ EventId: 174,
481
+ OrderIndex: 0,
482
+ Person1Pos: 0,
483
+ Person2Pos: 0,
484
+ Person1Id: 0,
485
+ Person2Id: 0,
486
+ Status: 'Scheduled',
487
+ Score1: 0,
488
+ Score2: 0,
489
+ Started: null,
490
+ Ended: null,
491
+ TimeLeft: 0,
492
+ CurrentPass: 0,
493
+ MaxPasses: 0,
494
+ RoundLabel: 'Final',
495
+ DEBoutId: 7,
496
+ DENextBoutId: null,
497
+ LoserNextBoutId: null,
498
+ RefereeId: null,
499
+ createdAt: '2026-02-08T18:43:15.000Z',
500
+ updatedAt: '2026-02-08T18:43:15.000Z',
501
+ Person1: {
502
+ PersonId: 0,
503
+ DisplayName: 'BYE',
504
+ ClubId: 17,
505
+ ShowData: true,
506
+ Images: [],
507
+ Club: {
508
+ Name: 'No Club Affiliation ',
509
+ Color1: 'red',
510
+ Color2: 'blue'
811
511
  },
812
- {
813
- "EventId": 174,
814
- "RuleId": 20,
815
- "RuleValue": "false",
816
- "Rules": {
817
- "RuleName": "CountDoubles",
818
- "Context": "event"
819
- }
512
+ EventPersons: [],
513
+ Penalties: []
514
+ },
515
+ Person2: {
516
+ PersonId: 0,
517
+ DisplayName: 'BYE',
518
+ ClubId: 17,
519
+ ShowData: true,
520
+ Images: [],
521
+ Club: {
522
+ Name: 'No Club Affiliation '
820
523
  },
821
- {
822
- "EventId": 174,
823
- "RuleId": 21,
824
- "RuleValue": "true",
825
- "Rules": {
826
- "RuleName": "PenaltiesReset",
827
- "Context": "event"
828
- }
829
- }
830
- ],
831
- "hostingClubColors": {
832
- "Color1": "navy",
833
- "Color2": "rose"
524
+ EventPersons: [],
525
+ Penalties: []
526
+ },
527
+ Pool: {
528
+ RingName: 'DE Bracket'
529
+ },
530
+ Metrics: []
531
+ }
532
+ ]
533
+ }
534
+ ],
535
+ event: {
536
+ EventId: 174,
537
+ TournamentId: 75,
538
+ EventName: 'Open Rapier and Dagger',
539
+ Date: '2026-02-13',
540
+ StartTime: '09:00:00',
541
+ NumberOfRings: 8,
542
+ NumberOfPools: 2,
543
+ PoolSize: 6,
544
+ Flights: 1,
545
+ WeaponId: 5,
546
+ Status: 'de',
547
+ EventRating: 'U',
548
+ IncludeInRatings: true,
549
+ EventPrice: null,
550
+ Present: 8,
551
+ Absent: 0,
552
+ Removed: 0,
553
+ EventRules: [
554
+ {
555
+ EventId: 174,
556
+ RuleId: 1,
557
+ RuleValue: '180',
558
+ Rules: {
559
+ RuleName: 'PoolTime',
560
+ Context: 'pool'
561
+ }
562
+ },
563
+ {
564
+ EventId: 174,
565
+ RuleId: 2,
566
+ RuleValue: '7',
567
+ Rules: {
568
+ RuleName: 'PoolMaxPoints',
569
+ Context: 'pool'
570
+ }
571
+ },
572
+ {
573
+ EventId: 174,
574
+ RuleId: 3,
575
+ RuleValue: '180',
576
+ Rules: {
577
+ RuleName: 'DETime',
578
+ Context: 'de'
579
+ }
580
+ },
581
+ {
582
+ EventId: 174,
583
+ RuleId: 4,
584
+ RuleValue: '12',
585
+ Rules: {
586
+ RuleName: 'DEMaxPoints',
587
+ Context: 'de'
588
+ }
589
+ },
590
+ {
591
+ EventId: 174,
592
+ RuleId: 5,
593
+ RuleValue: 'false',
594
+ Rules: {
595
+ RuleName: 'DE3rdFenceOff',
596
+ Context: 'de'
597
+ }
598
+ },
599
+ {
600
+ EventId: 174,
601
+ RuleId: 9,
602
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
603
+ Rules: {
604
+ RuleName: 'DEPromotionOrder',
605
+ Context: 'de'
606
+ }
607
+ },
608
+ {
609
+ EventId: 174,
610
+ RuleId: 10,
611
+ RuleValue: '100%',
612
+ Rules: {
613
+ RuleName: 'DENumOfPromotion',
614
+ Context: 'de'
615
+ }
616
+ },
617
+ {
618
+ EventId: 174,
619
+ RuleId: 11,
620
+ RuleValue: 'HR - Hema Rating',
621
+ Rules: {
622
+ RuleName: 'PoolSeeding',
623
+ Context: 'pool'
834
624
  }
625
+ },
626
+ {
627
+ EventId: 174,
628
+ RuleId: 14,
629
+ RuleValue: '56',
630
+ Rules: {
631
+ RuleName: 'CutOffNumber',
632
+ Context: 'event'
633
+ }
634
+ },
635
+ {
636
+ EventId: 174,
637
+ RuleId: 15,
638
+ RuleValue: 'single',
639
+ Rules: {
640
+ RuleName: 'DEType',
641
+ Context: 'de'
642
+ }
643
+ },
644
+ {
645
+ EventId: 174,
646
+ RuleId: 16,
647
+ RuleValue: 'true',
648
+ Rules: {
649
+ RuleName: 'PoolScoreDirection',
650
+ Context: 'event'
651
+ }
652
+ },
653
+ {
654
+ EventId: 174,
655
+ RuleId: 17,
656
+ RuleValue: 'Percent',
657
+ Rules: {
658
+ RuleName: 'DEPromoteBy',
659
+ Context: 'de'
660
+ }
661
+ },
662
+ {
663
+ EventId: 174,
664
+ RuleId: 19,
665
+ RuleValue: 'false',
666
+ Rules: {
667
+ RuleName: 'CountHandshots',
668
+ Context: 'event'
669
+ }
670
+ },
671
+ {
672
+ EventId: 174,
673
+ RuleId: 20,
674
+ RuleValue: 'false',
675
+ Rules: {
676
+ RuleName: 'CountDoubles',
677
+ Context: 'event'
678
+ }
679
+ },
680
+ {
681
+ EventId: 174,
682
+ RuleId: 21,
683
+ RuleValue: 'true',
684
+ Rules: {
685
+ RuleName: 'PenaltiesReset',
686
+ Context: 'event'
687
+ }
688
+ }
689
+ ],
690
+ Weapon: {
691
+ HRWeaponId: '4'
692
+ }
693
+ },
694
+ eventRules: [
695
+ {
696
+ EventId: 174,
697
+ RuleId: 1,
698
+ RuleValue: '180',
699
+ Rules: {
700
+ RuleName: 'PoolTime',
701
+ Context: 'pool'
702
+ }
703
+ },
704
+ {
705
+ EventId: 174,
706
+ RuleId: 2,
707
+ RuleValue: '7',
708
+ Rules: {
709
+ RuleName: 'PoolMaxPoints',
710
+ Context: 'pool'
711
+ }
712
+ },
713
+ {
714
+ EventId: 174,
715
+ RuleId: 3,
716
+ RuleValue: '180',
717
+ Rules: {
718
+ RuleName: 'DETime',
719
+ Context: 'de'
720
+ }
721
+ },
722
+ {
723
+ EventId: 174,
724
+ RuleId: 4,
725
+ RuleValue: '12',
726
+ Rules: {
727
+ RuleName: 'DEMaxPoints',
728
+ Context: 'de'
729
+ }
730
+ },
731
+ {
732
+ EventId: 174,
733
+ RuleId: 5,
734
+ RuleValue: 'false',
735
+ Rules: {
736
+ RuleName: 'DE3rdFenceOff',
737
+ Context: 'de'
738
+ }
739
+ },
740
+ {
741
+ EventId: 174,
742
+ RuleId: 9,
743
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
744
+ Rules: {
745
+ RuleName: 'DEPromotionOrder',
746
+ Context: 'de'
747
+ }
748
+ },
749
+ {
750
+ EventId: 174,
751
+ RuleId: 10,
752
+ RuleValue: '100%',
753
+ Rules: {
754
+ RuleName: 'DENumOfPromotion',
755
+ Context: 'de'
756
+ }
757
+ },
758
+ {
759
+ EventId: 174,
760
+ RuleId: 11,
761
+ RuleValue: 'HR - Hema Rating',
762
+ Rules: {
763
+ RuleName: 'PoolSeeding',
764
+ Context: 'pool'
765
+ }
766
+ },
767
+ {
768
+ EventId: 174,
769
+ RuleId: 14,
770
+ RuleValue: '56',
771
+ Rules: {
772
+ RuleName: 'CutOffNumber',
773
+ Context: 'event'
774
+ }
775
+ },
776
+ {
777
+ EventId: 174,
778
+ RuleId: 15,
779
+ RuleValue: 'single',
780
+ Rules: {
781
+ RuleName: 'DEType',
782
+ Context: 'de'
783
+ }
784
+ },
785
+ {
786
+ EventId: 174,
787
+ RuleId: 16,
788
+ RuleValue: 'true',
789
+ Rules: {
790
+ RuleName: 'PoolScoreDirection',
791
+ Context: 'event'
792
+ }
793
+ },
794
+ {
795
+ EventId: 174,
796
+ RuleId: 17,
797
+ RuleValue: 'Percent',
798
+ Rules: {
799
+ RuleName: 'DEPromoteBy',
800
+ Context: 'de'
801
+ }
802
+ },
803
+ {
804
+ EventId: 174,
805
+ RuleId: 19,
806
+ RuleValue: 'false',
807
+ Rules: {
808
+ RuleName: 'CountHandshots',
809
+ Context: 'event'
810
+ }
811
+ },
812
+ {
813
+ EventId: 174,
814
+ RuleId: 20,
815
+ RuleValue: 'false',
816
+ Rules: {
817
+ RuleName: 'CountDoubles',
818
+ Context: 'event'
819
+ }
820
+ },
821
+ {
822
+ EventId: 174,
823
+ RuleId: 21,
824
+ RuleValue: 'true',
825
+ Rules: {
826
+ RuleName: 'PenaltiesReset',
827
+ Context: 'event'
828
+ }
835
829
  }
830
+ ],
831
+ hostingClubColors: {
832
+ Color1: 'navy',
833
+ Color2: 'rose'
834
+ }
835
+ };
836
836
 
837
- export default getDEWithBouts6Fencers;
837
+ export default getDEWithBouts6Fencers;