@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,1276 +1,1275 @@
1
- const getDEWithBouts12Fencers =
1
+ const getDEWithBouts12Fencers = {
2
+ message: 'DE Pool retrieved',
3
+ pools: [
2
4
  {
3
- "message": "DE Pool retrieved",
4
- "pools": [
5
- {
6
- "PoolId": 770,
7
- "Name": "Open Single Rapier-DE",
8
- "RingName": "DE Bracket",
9
- "Flight": 1,
10
- "PoolType": "de",
11
- "EventId": 185,
12
- "Status": "live",
13
- "Updated": "2025-11-08T15:16:50.000Z",
14
- "Staff": [],
15
- "Bouts": [
16
- {
17
- "TimerStatus": "stopped",
18
- "RefName": "Unassigned",
19
- "BoutId": 16869,
20
- "PoolId": 770,
21
- "EventId": 185,
22
- "OrderIndex": 0,
23
- "Person1Pos": 0,
24
- "Person2Pos": 0,
25
- "Person1Id": 118,
26
- "Person2Id": 0,
27
- "Status": "Scheduled",
28
- "Score1": 0,
29
- "Score2": 0,
30
- "Started": null,
31
- "Ended": null,
32
- "TimeLeft": 0,
33
- "CurrentPass": 0,
34
- "MaxPasses": 0,
35
- "RoundLabel": "Table of 16",
36
- "DEBoutId": 1,
37
- "DENextBoutId": 9,
38
- "LoserNextBoutId": null,
39
- "RefereeId": 62,
40
- "createdAt": "2025-11-08T15:16:50.000Z",
41
- "updatedAt": "2025-11-08T15:21:25.000Z",
42
- "Person1": {
43
- "PersonId": 118,
44
- "DisplayName": "Trevor Pedersen",
45
- "ClubId": 10,
46
- "ShowData": true,
47
- "Images": [],
48
- "Club": {
49
- "Name": "Columbus United Fencing Club",
50
- "Color1": "navy",
51
- "Color2": "rose"
52
- },
53
- "EventPersons": [
54
- {
55
- "DEPosition": 5,
56
- "LastNote": null
57
- }
58
- ],
59
- "Penalties": []
60
- },
61
- "Person2": {
62
- "PersonId": 0,
63
- "DisplayName": "BYE",
64
- "ClubId": 17,
65
- "ShowData": true,
66
- "Images": [],
67
- "Club": {
68
- "Name": "No Club Affiliation "
69
- },
70
- "EventPersons": [],
71
- "Penalties": []
72
- },
73
- "Pool": {
74
- "RingName": "DE Bracket"
75
- },
76
- "Metrics": []
77
- },
78
- {
79
- "TimerStatus": "stopped",
80
- "RefName": "Unassigned",
81
- "BoutId": 16870,
82
- "PoolId": 770,
83
- "EventId": 185,
84
- "OrderIndex": 0,
85
- "Person1Pos": 0,
86
- "Person2Pos": 0,
87
- "Person1Id": 485,
88
- "Person2Id": 105,
89
- "Status": "Active",
90
- "Score1": 6,
91
- "Score2": 4,
92
- "Started": "2025-11-08T15:21:01.000Z",
93
- "Ended": null,
94
- "TimeLeft": 0,
95
- "CurrentPass": 0,
96
- "MaxPasses": 0,
97
- "RoundLabel": "Table of 16",
98
- "DEBoutId": 2,
99
- "DENextBoutId": 9,
100
- "LoserNextBoutId": null,
101
- "RefereeId": 215,
102
- "createdAt": "2025-11-08T15:16:50.000Z",
103
- "updatedAt": "2025-11-08T15:25:21.000Z",
104
- "Person1": {
105
- "PersonId": 485,
106
- "DisplayName": "Thomas Barefoot",
107
- "ClubId": 358,
108
- "ShowData": true,
109
- "Images": [],
110
- "Club": {
111
- "Name": "Waterfront Historical Fencing Club ",
112
- "Color1": "Red",
113
- "Color2": "Blue"
114
- },
115
- "EventPersons": [
116
- {
117
- "DEPosition": 9,
118
- "LastNote": null
119
- }
120
- ],
121
- "Penalties": []
122
- },
123
- "Person2": {
124
- "PersonId": 105,
125
- "DisplayName": "Lacey Eck",
126
- "ClubId": 399,
127
- "ShowData": true,
128
- "Images": [
129
- {
130
- "ImageId": 130,
131
- "URL": "https://meyersquaredimages.com/uploads/p-675879fd.png"
132
- }
133
- ],
134
- "Club": {
135
- "Name": "Cleveland Steel Historical Fencing"
136
- },
137
- "EventPersons": [
138
- {
139
- "DEPosition": 4,
140
- "LastNote": null
141
- }
142
- ],
143
- "Penalties": []
144
- },
145
- "Pool": {
146
- "RingName": "DE Bracket"
147
- },
148
- "Metrics": []
149
- },
150
- {
151
- "TimerStatus": "stopped",
152
- "RefName": "Unassigned",
153
- "BoutId": 16871,
154
- "PoolId": 770,
155
- "EventId": 185,
156
- "OrderIndex": 0,
157
- "Person1Pos": 0,
158
- "Person2Pos": 0,
159
- "Person1Id": 580,
160
- "Person2Id": 623,
161
- "Status": "Scheduled",
162
- "Score1": 0,
163
- "Score2": 0,
164
- "Started": null,
165
- "Ended": null,
166
- "TimeLeft": 0,
167
- "CurrentPass": 0,
168
- "MaxPasses": 0,
169
- "RoundLabel": "Table of 16",
170
- "DEBoutId": 3,
171
- "DENextBoutId": 10,
172
- "LoserNextBoutId": null,
173
- "RefereeId": null,
174
- "createdAt": "2025-11-08T15:16:50.000Z",
175
- "updatedAt": "2025-11-08T15:16:50.000Z",
176
- "Person1": {
177
- "PersonId": 580,
178
- "DisplayName": "Scott Scanlon",
179
- "ClubId": 10,
180
- "ShowData": true,
181
- "Images": [],
182
- "Club": {
183
- "Name": "Columbus United Fencing Club",
184
- "Color1": "navy",
185
- "Color2": "rose"
186
- },
187
- "EventPersons": [
188
- {
189
- "DEPosition": 10,
190
- "LastNote": null
191
- }
192
- ],
193
- "Penalties": []
194
- },
195
- "Person2": {
196
- "PersonId": 623,
197
- "DisplayName": "Rob Cox",
198
- "ClubId": 10,
199
- "ShowData": true,
200
- "Images": [],
201
- "Club": {
202
- "Name": "Columbus United Fencing Club"
203
- },
204
- "EventPersons": [
205
- {
206
- "DEPosition": 11,
207
- "LastNote": null
208
- }
209
- ],
210
- "Penalties": []
211
- },
212
- "Pool": {
213
- "RingName": "DE Bracket"
214
- },
215
- "Metrics": []
216
- },
217
- {
218
- "TimerStatus": "stopped",
219
- "RefName": "Unassigned",
220
- "BoutId": 16873,
221
- "PoolId": 770,
222
- "EventId": 185,
223
- "OrderIndex": 0,
224
- "Person1Pos": 0,
225
- "Person2Pos": 0,
226
- "Person1Id": 0,
227
- "Person2Id": 315,
228
- "Status": "Bye",
229
- "Score1": 0,
230
- "Score2": 0,
231
- "Started": null,
232
- "Ended": null,
233
- "TimeLeft": 0,
234
- "CurrentPass": 0,
235
- "MaxPasses": 0,
236
- "RoundLabel": "Table of 16",
237
- "DEBoutId": 4,
238
- "DENextBoutId": 10,
239
- "LoserNextBoutId": null,
240
- "RefereeId": null,
241
- "createdAt": "2025-11-08T15:16:50.000Z",
242
- "updatedAt": "2025-11-08T15:16:51.000Z",
243
- "Person1": {
244
- "PersonId": 0,
245
- "DisplayName": "BYE",
246
- "ClubId": 17,
247
- "ShowData": true,
248
- "Images": [],
249
- "Club": {
250
- "Name": "No Club Affiliation ",
251
- "Color1": "red",
252
- "Color2": "blue"
253
- },
254
- "EventPersons": [],
255
- "Penalties": []
256
- },
257
- "Person2": {
258
- "PersonId": 315,
259
- "DisplayName": "Josh Derby",
260
- "ClubId": 358,
261
- "ShowData": true,
262
- "Images": [],
263
- "Club": {
264
- "Name": "Waterfront Historical Fencing Club "
265
- },
266
- "EventPersons": [
267
- {
268
- "DEPosition": 7,
269
- "LastNote": null
270
- }
271
- ],
272
- "Penalties": []
273
- },
274
- "Pool": {
275
- "RingName": "DE Bracket"
276
- },
277
- "Metrics": []
278
- },
279
- {
280
- "TimerStatus": "stopped",
281
- "RefName": "Unassigned",
282
- "BoutId": 16875,
283
- "PoolId": 770,
284
- "EventId": 185,
285
- "OrderIndex": 0,
286
- "Person1Pos": 0,
287
- "Person2Pos": 0,
288
- "Person1Id": 42,
289
- "Person2Id": 0,
290
- "Status": "Bye",
291
- "Score1": 0,
292
- "Score2": 0,
293
- "Started": null,
294
- "Ended": null,
295
- "TimeLeft": 0,
296
- "CurrentPass": 0,
297
- "MaxPasses": 0,
298
- "RoundLabel": "Table of 16",
299
- "DEBoutId": 5,
300
- "DENextBoutId": 11,
301
- "LoserNextBoutId": null,
302
- "RefereeId": null,
303
- "createdAt": "2025-11-08T15:16:50.000Z",
304
- "updatedAt": "2025-11-08T15:16:51.000Z",
305
- "Person1": {
306
- "PersonId": 42,
307
- "DisplayName": "David Twitchell",
308
- "ClubId": 38,
309
- "ShowData": true,
310
- "Images": [],
311
- "Club": {
312
- "Name": "Steelhead Western Martial Arts",
313
- "Color1": "Black",
314
- "Color2": "Blue"
315
- },
316
- "EventPersons": [
317
- {
318
- "DEPosition": 1,
319
- "LastNote": null
320
- }
321
- ],
322
- "Penalties": []
323
- },
324
- "Person2": {
325
- "PersonId": 0,
326
- "DisplayName": "BYE",
327
- "ClubId": 17,
328
- "ShowData": true,
329
- "Images": [],
330
- "Club": {
331
- "Name": "No Club Affiliation "
332
- },
333
- "EventPersons": [],
334
- "Penalties": []
335
- },
336
- "Pool": {
337
- "RingName": "DE Bracket"
338
- },
339
- "Metrics": []
340
- },
341
- {
342
- "TimerStatus": "stopped",
343
- "RefName": "Unassigned",
344
- "BoutId": 16874,
345
- "PoolId": 770,
346
- "EventId": 185,
347
- "OrderIndex": 0,
348
- "Person1Pos": 0,
349
- "Person2Pos": 0,
350
- "Person1Id": 304,
351
- "Person2Id": 832,
352
- "Status": "Active",
353
- "Score1": 0,
354
- "Score2": 4,
355
- "Started": "2025-11-08T15:24:57.000Z",
356
- "Ended": null,
357
- "TimeLeft": 153,
358
- "CurrentPass": 0,
359
- "MaxPasses": 0,
360
- "RoundLabel": "Table of 16",
361
- "DEBoutId": 6,
362
- "DENextBoutId": 11,
363
- "LoserNextBoutId": null,
364
- "RefereeId": 43,
365
- "createdAt": "2025-11-08T15:16:50.000Z",
366
- "updatedAt": "2025-11-08T15:25:44.000Z",
367
- "Person1": {
368
- "PersonId": 304,
369
- "DisplayName": "Trevor Samberg",
370
- "ClubId": 23,
371
- "ShowData": true,
372
- "Images": [],
373
- "Club": {
374
- "Name": "Queen City Sword Guild",
375
- "Color1": "blue",
376
- "Color2": "silver"
377
- },
378
- "EventPersons": [
379
- {
380
- "DEPosition": 6,
381
- "LastNote": null
382
- }
383
- ],
384
- "Penalties": []
385
- },
386
- "Person2": {
387
- "PersonId": 832,
388
- "DisplayName": "Thomas Kesler",
389
- "ClubId": 21,
390
- "ShowData": true,
391
- "Images": [],
392
- "Club": {
393
- "Name": "Gem City Duelists Society"
394
- },
395
- "EventPersons": [
396
- {
397
- "DEPosition": 12,
398
- "LastNote": null
399
- }
400
- ],
401
- "Penalties": []
402
- },
403
- "Pool": {
404
- "RingName": "DE Bracket"
405
- },
406
- "Metrics": []
407
- },
408
- {
409
- "TimerStatus": "stopped",
410
- "RefName": "Unassigned",
411
- "BoutId": 16872,
412
- "PoolId": 770,
413
- "EventId": 185,
414
- "OrderIndex": 0,
415
- "Person1Pos": 0,
416
- "Person2Pos": 0,
417
- "Person1Id": 319,
418
- "Person2Id": 54,
419
- "Status": "Completed",
420
- "Score1": 4,
421
- "Score2": 2,
422
- "Started": "2025-11-08T15:20:47.000Z",
423
- "Ended": "2025-11-08T15:24:49.000Z",
424
- "TimeLeft": 0,
425
- "CurrentPass": 0,
426
- "MaxPasses": 0,
427
- "RoundLabel": "Table of 16",
428
- "DEBoutId": 7,
429
- "DENextBoutId": 12,
430
- "LoserNextBoutId": null,
431
- "RefereeId": 43,
432
- "createdAt": "2025-11-08T15:16:50.000Z",
433
- "updatedAt": "2025-11-08T15:24:51.000Z",
434
- "Person1": {
435
- "PersonId": 319,
436
- "DisplayName": "Matthew Melonuk",
437
- "ClubId": 358,
438
- "ShowData": true,
439
- "Images": [],
440
- "Club": {
441
- "Name": "Waterfront Historical Fencing Club ",
442
- "Color1": "Red",
443
- "Color2": "Blue"
444
- },
445
- "EventPersons": [
446
- {
447
- "DEPosition": 8,
448
- "LastNote": null
449
- }
450
- ],
451
- "Penalties": []
452
- },
453
- "Person2": {
454
- "PersonId": 54,
455
- "DisplayName": "Justin Hernandez",
456
- "ClubId": 353,
457
- "ShowData": true,
458
- "Images": [],
459
- "Club": {
460
- "Name": "Vanguard Common Fencers"
461
- },
462
- "EventPersons": [
463
- {
464
- "DEPosition": 2,
465
- "LastNote": null
466
- }
467
- ],
468
- "Penalties": []
469
- },
470
- "Pool": {
471
- "RingName": "DE Bracket"
472
- },
473
- "Metrics": []
474
- },
475
- {
476
- "TimerStatus": "stopped",
477
- "RefName": "Unassigned",
478
- "BoutId": 16877,
479
- "PoolId": 770,
480
- "EventId": 185,
481
- "OrderIndex": 0,
482
- "Person1Pos": 0,
483
- "Person2Pos": 0,
484
- "Person1Id": 0,
485
- "Person2Id": 82,
486
- "Status": "Bye",
487
- "Score1": 0,
488
- "Score2": 0,
489
- "Started": null,
490
- "Ended": null,
491
- "TimeLeft": 0,
492
- "CurrentPass": 0,
493
- "MaxPasses": 0,
494
- "RoundLabel": "Table of 16",
495
- "DEBoutId": 8,
496
- "DENextBoutId": 12,
497
- "LoserNextBoutId": null,
498
- "RefereeId": null,
499
- "createdAt": "2025-11-08T15:16:50.000Z",
500
- "updatedAt": "2025-11-08T15:16:51.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": 82,
517
- "DisplayName": "Christopher Shelton",
518
- "ClubId": 17,
519
- "ShowData": true,
520
- "Images": [
521
- {
522
- "ImageId": 58,
523
- "URL": "https://meyersquaredimages.com/images/portraits/Shelton.jpg"
524
- }
525
- ],
526
- "Club": {
527
- "Name": "No Club Affiliation "
528
- },
529
- "EventPersons": [
530
- {
531
- "DEPosition": 3,
532
- "LastNote": null
533
- }
534
- ],
535
- "Penalties": []
536
- },
537
- "Pool": {
538
- "RingName": "DE Bracket"
539
- },
540
- "Metrics": []
541
- },
542
- {
543
- "TimerStatus": "stopped",
544
- "RefName": "Unassigned",
545
- "BoutId": 16876,
546
- "PoolId": 770,
547
- "EventId": 185,
548
- "OrderIndex": 0,
549
- "Person1Pos": 0,
550
- "Person2Pos": 0,
551
- "Person1Id": 118,
552
- "Person2Id": 0,
553
- "Status": "Scheduled",
554
- "Score1": 0,
555
- "Score2": 0,
556
- "Started": null,
557
- "Ended": null,
558
- "TimeLeft": 0,
559
- "CurrentPass": 0,
560
- "MaxPasses": 0,
561
- "RoundLabel": "Table of 8",
562
- "DEBoutId": 9,
563
- "DENextBoutId": 13,
564
- "LoserNextBoutId": null,
565
- "RefereeId": null,
566
- "createdAt": "2025-11-08T15:16:50.000Z",
567
- "updatedAt": "2025-11-08T15:16:50.000Z",
568
- "Person1": {
569
- "PersonId": 118,
570
- "DisplayName": "Trevor Pedersen",
571
- "ClubId": 10,
572
- "ShowData": true,
573
- "Images": [],
574
- "Club": {
575
- "Name": "Columbus United Fencing Club",
576
- "Color1": "navy",
577
- "Color2": "rose"
578
- },
579
- "EventPersons": [
580
- {
581
- "DEPosition": 5,
582
- "LastNote": null
583
- }
584
- ],
585
- "Penalties": []
586
- },
587
- "Person2": {
588
- "PersonId": 0,
589
- "DisplayName": "BYE",
590
- "ClubId": 17,
591
- "ShowData": true,
592
- "Images": [],
593
- "Club": {
594
- "Name": "No Club Affiliation "
595
- },
596
- "EventPersons": [],
597
- "Penalties": []
598
- },
599
- "Pool": {
600
- "RingName": "DE Bracket"
601
- },
602
- "Metrics": []
603
- },
604
- {
605
- "TimerStatus": "stopped",
606
- "RefName": "Unassigned",
607
- "BoutId": 16878,
608
- "PoolId": 770,
609
- "EventId": 185,
610
- "OrderIndex": 0,
611
- "Person1Pos": 0,
612
- "Person2Pos": 0,
613
- "Person1Id": 0,
614
- "Person2Id": 315,
615
- "Status": "Scheduled",
616
- "Score1": 0,
617
- "Score2": 0,
618
- "Started": null,
619
- "Ended": null,
620
- "TimeLeft": 0,
621
- "CurrentPass": 0,
622
- "MaxPasses": 0,
623
- "RoundLabel": "Table of 8",
624
- "DEBoutId": 10,
625
- "DENextBoutId": 13,
626
- "LoserNextBoutId": null,
627
- "RefereeId": null,
628
- "createdAt": "2025-11-08T15:16:50.000Z",
629
- "updatedAt": "2025-11-08T15:16:51.000Z",
630
- "Person1": {
631
- "PersonId": 0,
632
- "DisplayName": "BYE",
633
- "ClubId": 17,
634
- "ShowData": true,
635
- "Images": [],
636
- "Club": {
637
- "Name": "No Club Affiliation ",
638
- "Color1": "red",
639
- "Color2": "blue"
640
- },
641
- "EventPersons": [],
642
- "Penalties": []
643
- },
644
- "Person2": {
645
- "PersonId": 315,
646
- "DisplayName": "Josh Derby",
647
- "ClubId": 358,
648
- "ShowData": true,
649
- "Images": [],
650
- "Club": {
651
- "Name": "Waterfront Historical Fencing Club "
652
- },
653
- "EventPersons": [
654
- {
655
- "DEPosition": 7,
656
- "LastNote": null
657
- }
658
- ],
659
- "Penalties": []
660
- },
661
- "Pool": {
662
- "RingName": "DE Bracket"
663
- },
664
- "Metrics": []
665
- },
666
- {
667
- "TimerStatus": "stopped",
668
- "RefName": "Unassigned",
669
- "BoutId": 16879,
670
- "PoolId": 770,
671
- "EventId": 185,
672
- "OrderIndex": 0,
673
- "Person1Pos": 0,
674
- "Person2Pos": 0,
675
- "Person1Id": 42,
676
- "Person2Id": 0,
677
- "Status": "Scheduled",
678
- "Score1": 0,
679
- "Score2": 0,
680
- "Started": null,
681
- "Ended": null,
682
- "TimeLeft": 0,
683
- "CurrentPass": 0,
684
- "MaxPasses": 0,
685
- "RoundLabel": "Table of 8",
686
- "DEBoutId": 11,
687
- "DENextBoutId": 14,
688
- "LoserNextBoutId": null,
689
- "RefereeId": null,
690
- "createdAt": "2025-11-08T15:16:50.000Z",
691
- "updatedAt": "2025-11-08T15:16:51.000Z",
692
- "Person1": {
693
- "PersonId": 42,
694
- "DisplayName": "David Twitchell",
695
- "ClubId": 38,
696
- "ShowData": true,
697
- "Images": [],
698
- "Club": {
699
- "Name": "Steelhead Western Martial Arts",
700
- "Color1": "Black",
701
- "Color2": "Blue"
702
- },
703
- "EventPersons": [
704
- {
705
- "DEPosition": 1,
706
- "LastNote": null
707
- }
708
- ],
709
- "Penalties": []
710
- },
711
- "Person2": {
712
- "PersonId": 0,
713
- "DisplayName": "BYE",
714
- "ClubId": 17,
715
- "ShowData": true,
716
- "Images": [],
717
- "Club": {
718
- "Name": "No Club Affiliation "
719
- },
720
- "EventPersons": [],
721
- "Penalties": []
722
- },
723
- "Pool": {
724
- "RingName": "DE Bracket"
725
- },
726
- "Metrics": []
727
- },
728
- {
729
- "TimerStatus": "stopped",
730
- "RefName": "Unassigned",
731
- "BoutId": 16880,
732
- "PoolId": 770,
733
- "EventId": 185,
734
- "OrderIndex": 0,
735
- "Person1Pos": 0,
736
- "Person2Pos": 0,
737
- "Person1Id": 319,
738
- "Person2Id": 82,
739
- "Status": "Scheduled",
740
- "Score1": 0,
741
- "Score2": 0,
742
- "Started": null,
743
- "Ended": null,
744
- "TimeLeft": 0,
745
- "CurrentPass": 0,
746
- "MaxPasses": 0,
747
- "RoundLabel": "Table of 8",
748
- "DEBoutId": 12,
749
- "DENextBoutId": 14,
750
- "LoserNextBoutId": null,
751
- "RefereeId": null,
752
- "createdAt": "2025-11-08T15:16:50.000Z",
753
- "updatedAt": "2025-11-08T15:24:51.000Z",
754
- "Person1": {
755
- "PersonId": 319,
756
- "DisplayName": "Matthew Melonuk",
757
- "ClubId": 358,
758
- "ShowData": true,
759
- "Images": [],
760
- "Club": {
761
- "Name": "Waterfront Historical Fencing Club ",
762
- "Color1": "Red",
763
- "Color2": "Blue"
764
- },
765
- "EventPersons": [
766
- {
767
- "DEPosition": 8,
768
- "LastNote": null
769
- }
770
- ],
771
- "Penalties": []
772
- },
773
- "Person2": {
774
- "PersonId": 82,
775
- "DisplayName": "Christopher Shelton",
776
- "ClubId": 17,
777
- "ShowData": true,
778
- "Images": [
779
- {
780
- "ImageId": 58,
781
- "URL": "https://meyersquaredimages.com/images/portraits/Shelton.jpg"
782
- }
783
- ],
784
- "Club": {
785
- "Name": "No Club Affiliation "
786
- },
787
- "EventPersons": [
788
- {
789
- "DEPosition": 3,
790
- "LastNote": null
791
- }
792
- ],
793
- "Penalties": []
794
- },
795
- "Pool": {
796
- "RingName": "DE Bracket"
797
- },
798
- "Metrics": []
799
- },
800
- {
801
- "TimerStatus": "stopped",
802
- "RefName": "Unassigned",
803
- "BoutId": 16881,
804
- "PoolId": 770,
805
- "EventId": 185,
806
- "OrderIndex": 0,
807
- "Person1Pos": 0,
808
- "Person2Pos": 0,
809
- "Person1Id": 0,
810
- "Person2Id": 0,
811
- "Status": "Scheduled",
812
- "Score1": 0,
813
- "Score2": 0,
814
- "Started": null,
815
- "Ended": null,
816
- "TimeLeft": 0,
817
- "CurrentPass": 0,
818
- "MaxPasses": 0,
819
- "RoundLabel": "Semifinal",
820
- "DEBoutId": 13,
821
- "DENextBoutId": 15,
822
- "LoserNextBoutId": null,
823
- "RefereeId": null,
824
- "createdAt": "2025-11-08T15:16:50.000Z",
825
- "updatedAt": "2025-11-08T15:16:51.000Z",
826
- "Person1": {
827
- "PersonId": 0,
828
- "DisplayName": "BYE",
829
- "ClubId": 17,
830
- "ShowData": true,
831
- "Images": [],
832
- "Club": {
833
- "Name": "No Club Affiliation ",
834
- "Color1": "red",
835
- "Color2": "blue"
836
- },
837
- "EventPersons": [],
838
- "Penalties": []
839
- },
840
- "Person2": {
841
- "PersonId": 0,
842
- "DisplayName": "BYE",
843
- "ClubId": 17,
844
- "ShowData": true,
845
- "Images": [],
846
- "Club": {
847
- "Name": "No Club Affiliation "
848
- },
849
- "EventPersons": [],
850
- "Penalties": []
851
- },
852
- "Pool": {
853
- "RingName": "DE Bracket"
854
- },
855
- "Metrics": []
856
- },
857
- {
858
- "TimerStatus": "stopped",
859
- "RefName": "Unassigned",
860
- "BoutId": 16882,
861
- "PoolId": 770,
862
- "EventId": 185,
863
- "OrderIndex": 0,
864
- "Person1Pos": 0,
865
- "Person2Pos": 0,
866
- "Person1Id": 0,
867
- "Person2Id": 0,
868
- "Status": "Scheduled",
869
- "Score1": 0,
870
- "Score2": 0,
871
- "Started": null,
872
- "Ended": null,
873
- "TimeLeft": 0,
874
- "CurrentPass": 0,
875
- "MaxPasses": 0,
876
- "RoundLabel": "Semifinal",
877
- "DEBoutId": 14,
878
- "DENextBoutId": 15,
879
- "LoserNextBoutId": null,
880
- "RefereeId": null,
881
- "createdAt": "2025-11-08T15:16:50.000Z",
882
- "updatedAt": "2025-11-08T15:16:51.000Z",
883
- "Person1": {
884
- "PersonId": 0,
885
- "DisplayName": "BYE",
886
- "ClubId": 17,
887
- "ShowData": true,
888
- "Images": [],
889
- "Club": {
890
- "Name": "No Club Affiliation ",
891
- "Color1": "red",
892
- "Color2": "blue"
893
- },
894
- "EventPersons": [],
895
- "Penalties": []
896
- },
897
- "Person2": {
898
- "PersonId": 0,
899
- "DisplayName": "BYE",
900
- "ClubId": 17,
901
- "ShowData": true,
902
- "Images": [],
903
- "Club": {
904
- "Name": "No Club Affiliation "
905
- },
906
- "EventPersons": [],
907
- "Penalties": []
908
- },
909
- "Pool": {
910
- "RingName": "DE Bracket"
911
- },
912
- "Metrics": []
913
- },
914
- {
915
- "TimerStatus": "stopped",
916
- "RefName": "Unassigned",
917
- "BoutId": 16883,
918
- "PoolId": 770,
919
- "EventId": 185,
920
- "OrderIndex": 0,
921
- "Person1Pos": 0,
922
- "Person2Pos": 0,
923
- "Person1Id": 0,
924
- "Person2Id": 0,
925
- "Status": "Scheduled",
926
- "Score1": 0,
927
- "Score2": 0,
928
- "Started": null,
929
- "Ended": null,
930
- "TimeLeft": 0,
931
- "CurrentPass": 0,
932
- "MaxPasses": 0,
933
- "RoundLabel": "Final",
934
- "DEBoutId": 15,
935
- "DENextBoutId": null,
936
- "LoserNextBoutId": null,
937
- "RefereeId": null,
938
- "createdAt": "2025-11-08T15:16:50.000Z",
939
- "updatedAt": "2025-11-08T15:16:50.000Z",
940
- "Person1": {
941
- "PersonId": 0,
942
- "DisplayName": "BYE",
943
- "ClubId": 17,
944
- "ShowData": true,
945
- "Images": [],
946
- "Club": {
947
- "Name": "No Club Affiliation ",
948
- "Color1": "red",
949
- "Color2": "blue"
950
- },
951
- "EventPersons": [],
952
- "Penalties": []
953
- },
954
- "Person2": {
955
- "PersonId": 0,
956
- "DisplayName": "BYE",
957
- "ClubId": 17,
958
- "ShowData": true,
959
- "Images": [],
960
- "Club": {
961
- "Name": "No Club Affiliation "
962
- },
963
- "EventPersons": [],
964
- "Penalties": []
965
- },
966
- "Pool": {
967
- "RingName": "DE Bracket"
968
- },
969
- "Metrics": []
970
- }
971
- ]
972
- }
973
- ],
974
- "event": {
975
- "EventId": 185,
976
- "TournamentId": 74,
977
- "EventName": "Open Single Rapier",
978
- "Date": "2025-11-08",
979
- "StartTime": "09:00:00",
980
- "NumberOfRings": 4,
981
- "NumberOfPools": 2,
982
- "PoolSize": 6,
983
- "Flights": 1,
984
- "WeaponId": 6,
985
- "Status": "de",
986
- "EventRating": "U",
987
- "IncludeInRatings": true,
988
- "EventPrice": null,
989
- "Present": 12,
990
- "Absent": 0,
991
- "Removed": 0,
992
- "EventRules": [
993
- {
994
- "EventId": 185,
995
- "RuleId": 1,
996
- "RuleValue": "180",
997
- "Rules": {
998
- "RuleName": "PoolTime",
999
- "Context": "pool"
1000
- }
1001
- },
1002
- {
1003
- "EventId": 185,
1004
- "RuleId": 2,
1005
- "RuleValue": "7",
1006
- "Rules": {
1007
- "RuleName": "PoolMaxPoints",
1008
- "Context": "pool"
1009
- }
1010
- },
1011
- {
1012
- "EventId": 185,
1013
- "RuleId": 3,
1014
- "RuleValue": "180",
1015
- "Rules": {
1016
- "RuleName": "DETime",
1017
- "Context": "de"
1018
- }
1019
- },
1020
- {
1021
- "EventId": 185,
1022
- "RuleId": 4,
1023
- "RuleValue": "12",
1024
- "Rules": {
1025
- "RuleName": "DEMaxPoints",
1026
- "Context": "de"
1027
- }
1028
- },
1029
- {
1030
- "EventId": 185,
1031
- "RuleId": 5,
1032
- "RuleValue": "false",
1033
- "Rules": {
1034
- "RuleName": "DE3rdFenceOff",
1035
- "Context": "de"
1036
- }
1037
- },
1038
- {
1039
- "EventId": 185,
1040
- "RuleId": 9,
1041
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
1042
- "Rules": {
1043
- "RuleName": "DEPromotionOrder",
1044
- "Context": "de"
1045
- }
1046
- },
1047
- {
1048
- "EventId": 185,
1049
- "RuleId": 10,
1050
- "RuleValue": "100%",
1051
- "Rules": {
1052
- "RuleName": "DENumOfPromotion",
1053
- "Context": "de"
1054
- }
1055
- },
1056
- {
1057
- "EventId": 185,
1058
- "RuleId": 11,
1059
- "RuleValue": "HR - Hema Rating",
1060
- "Rules": {
1061
- "RuleName": "PoolSeeding",
1062
- "Context": "pool"
1063
- }
1064
- },
1065
- {
1066
- "EventId": 185,
1067
- "RuleId": 14,
1068
- "RuleValue": "24",
1069
- "Rules": {
1070
- "RuleName": "CutOffNumber",
1071
- "Context": "event"
1072
- }
1073
- },
1074
- {
1075
- "EventId": 185,
1076
- "RuleId": 15,
1077
- "RuleValue": "single",
1078
- "Rules": {
1079
- "RuleName": "DEType",
1080
- "Context": "de"
1081
- }
1082
- },
1083
- {
1084
- "EventId": 185,
1085
- "RuleId": 16,
1086
- "RuleValue": "true",
1087
- "Rules": {
1088
- "RuleName": "PoolScoreDirection",
1089
- "Context": "event"
1090
- }
1091
- },
1092
- {
1093
- "EventId": 185,
1094
- "RuleId": 17,
1095
- "RuleValue": "Percent",
1096
- "Rules": {
1097
- "RuleName": "DEPromoteBy",
1098
- "Context": "de"
1099
- }
1100
- },
1101
- {
1102
- "EventId": 185,
1103
- "RuleId": 19,
1104
- "RuleValue": "false",
1105
- "Rules": {
1106
- "RuleName": "CountHandshots",
1107
- "Context": "event"
1108
- }
1109
- },
1110
- {
1111
- "EventId": 185,
1112
- "RuleId": 20,
1113
- "RuleValue": "false",
1114
- "Rules": {
1115
- "RuleName": "CountDoubles",
1116
- "Context": "event"
1117
- }
1118
- },
1119
- {
1120
- "EventId": 185,
1121
- "RuleId": 21,
1122
- "RuleValue": "true",
1123
- "Rules": {
1124
- "RuleName": "PenaltiesReset",
1125
- "Context": "event"
1126
- }
1127
- }
5
+ PoolId: 770,
6
+ Name: 'Open Single Rapier-DE',
7
+ RingName: 'DE Bracket',
8
+ Flight: 1,
9
+ PoolType: 'de',
10
+ EventId: 185,
11
+ Status: 'live',
12
+ Updated: '2025-11-08T15:16:50.000Z',
13
+ Staff: [],
14
+ Bouts: [
15
+ {
16
+ TimerStatus: 'stopped',
17
+ RefName: 'Unassigned',
18
+ BoutId: 16869,
19
+ PoolId: 770,
20
+ EventId: 185,
21
+ OrderIndex: 0,
22
+ Person1Pos: 0,
23
+ Person2Pos: 0,
24
+ Person1Id: 118,
25
+ Person2Id: 0,
26
+ Status: 'Scheduled',
27
+ Score1: 0,
28
+ Score2: 0,
29
+ Started: null,
30
+ Ended: null,
31
+ TimeLeft: 0,
32
+ CurrentPass: 0,
33
+ MaxPasses: 0,
34
+ RoundLabel: 'Table of 16',
35
+ DEBoutId: 1,
36
+ DENextBoutId: 9,
37
+ LoserNextBoutId: null,
38
+ RefereeId: 62,
39
+ createdAt: '2025-11-08T15:16:50.000Z',
40
+ updatedAt: '2025-11-08T15:21:25.000Z',
41
+ Person1: {
42
+ PersonId: 118,
43
+ DisplayName: 'Trevor Pedersen',
44
+ ClubId: 10,
45
+ ShowData: true,
46
+ Images: [],
47
+ Club: {
48
+ Name: 'Columbus United Fencing Club',
49
+ Color1: 'navy',
50
+ Color2: 'rose'
51
+ },
52
+ EventPersons: [
53
+ {
54
+ DEPosition: 5,
55
+ LastNote: null
56
+ }
57
+ ],
58
+ Penalties: []
59
+ },
60
+ Person2: {
61
+ PersonId: 0,
62
+ DisplayName: 'BYE',
63
+ ClubId: 17,
64
+ ShowData: true,
65
+ Images: [],
66
+ Club: {
67
+ Name: 'No Club Affiliation '
68
+ },
69
+ EventPersons: [],
70
+ Penalties: []
71
+ },
72
+ Pool: {
73
+ RingName: 'DE Bracket'
74
+ },
75
+ Metrics: []
76
+ },
77
+ {
78
+ TimerStatus: 'stopped',
79
+ RefName: 'Unassigned',
80
+ BoutId: 16870,
81
+ PoolId: 770,
82
+ EventId: 185,
83
+ OrderIndex: 0,
84
+ Person1Pos: 0,
85
+ Person2Pos: 0,
86
+ Person1Id: 485,
87
+ Person2Id: 105,
88
+ Status: 'Active',
89
+ Score1: 6,
90
+ Score2: 4,
91
+ Started: '2025-11-08T15:21:01.000Z',
92
+ Ended: null,
93
+ TimeLeft: 0,
94
+ CurrentPass: 0,
95
+ MaxPasses: 0,
96
+ RoundLabel: 'Table of 16',
97
+ DEBoutId: 2,
98
+ DENextBoutId: 9,
99
+ LoserNextBoutId: null,
100
+ RefereeId: 215,
101
+ createdAt: '2025-11-08T15:16:50.000Z',
102
+ updatedAt: '2025-11-08T15:25:21.000Z',
103
+ Person1: {
104
+ PersonId: 485,
105
+ DisplayName: 'Thomas Barefoot',
106
+ ClubId: 358,
107
+ ShowData: true,
108
+ Images: [],
109
+ Club: {
110
+ Name: 'Waterfront Historical Fencing Club ',
111
+ Color1: 'Red',
112
+ Color2: 'Blue'
113
+ },
114
+ EventPersons: [
115
+ {
116
+ DEPosition: 9,
117
+ LastNote: null
118
+ }
119
+ ],
120
+ Penalties: []
121
+ },
122
+ Person2: {
123
+ PersonId: 105,
124
+ DisplayName: 'Lacey Eck',
125
+ ClubId: 399,
126
+ ShowData: true,
127
+ Images: [
128
+ {
129
+ ImageId: 130,
130
+ URL: 'https://meyersquaredimages.com/uploads/p-675879fd.png'
131
+ }
132
+ ],
133
+ Club: {
134
+ Name: 'Cleveland Steel Historical Fencing'
135
+ },
136
+ EventPersons: [
137
+ {
138
+ DEPosition: 4,
139
+ LastNote: null
140
+ }
141
+ ],
142
+ Penalties: []
143
+ },
144
+ Pool: {
145
+ RingName: 'DE Bracket'
146
+ },
147
+ Metrics: []
148
+ },
149
+ {
150
+ TimerStatus: 'stopped',
151
+ RefName: 'Unassigned',
152
+ BoutId: 16871,
153
+ PoolId: 770,
154
+ EventId: 185,
155
+ OrderIndex: 0,
156
+ Person1Pos: 0,
157
+ Person2Pos: 0,
158
+ Person1Id: 580,
159
+ Person2Id: 623,
160
+ Status: 'Scheduled',
161
+ Score1: 0,
162
+ Score2: 0,
163
+ Started: null,
164
+ Ended: null,
165
+ TimeLeft: 0,
166
+ CurrentPass: 0,
167
+ MaxPasses: 0,
168
+ RoundLabel: 'Table of 16',
169
+ DEBoutId: 3,
170
+ DENextBoutId: 10,
171
+ LoserNextBoutId: null,
172
+ RefereeId: null,
173
+ createdAt: '2025-11-08T15:16:50.000Z',
174
+ updatedAt: '2025-11-08T15:16:50.000Z',
175
+ Person1: {
176
+ PersonId: 580,
177
+ DisplayName: 'Scott Scanlon',
178
+ ClubId: 10,
179
+ ShowData: true,
180
+ Images: [],
181
+ Club: {
182
+ Name: 'Columbus United Fencing Club',
183
+ Color1: 'navy',
184
+ Color2: 'rose'
185
+ },
186
+ EventPersons: [
187
+ {
188
+ DEPosition: 10,
189
+ LastNote: null
190
+ }
191
+ ],
192
+ Penalties: []
193
+ },
194
+ Person2: {
195
+ PersonId: 623,
196
+ DisplayName: 'Rob Cox',
197
+ ClubId: 10,
198
+ ShowData: true,
199
+ Images: [],
200
+ Club: {
201
+ Name: 'Columbus United Fencing Club'
202
+ },
203
+ EventPersons: [
204
+ {
205
+ DEPosition: 11,
206
+ LastNote: null
207
+ }
208
+ ],
209
+ Penalties: []
210
+ },
211
+ Pool: {
212
+ RingName: 'DE Bracket'
213
+ },
214
+ Metrics: []
215
+ },
216
+ {
217
+ TimerStatus: 'stopped',
218
+ RefName: 'Unassigned',
219
+ BoutId: 16873,
220
+ PoolId: 770,
221
+ EventId: 185,
222
+ OrderIndex: 0,
223
+ Person1Pos: 0,
224
+ Person2Pos: 0,
225
+ Person1Id: 0,
226
+ Person2Id: 315,
227
+ Status: 'Bye',
228
+ Score1: 0,
229
+ Score2: 0,
230
+ Started: null,
231
+ Ended: null,
232
+ TimeLeft: 0,
233
+ CurrentPass: 0,
234
+ MaxPasses: 0,
235
+ RoundLabel: 'Table of 16',
236
+ DEBoutId: 4,
237
+ DENextBoutId: 10,
238
+ LoserNextBoutId: null,
239
+ RefereeId: null,
240
+ createdAt: '2025-11-08T15:16:50.000Z',
241
+ updatedAt: '2025-11-08T15:16:51.000Z',
242
+ Person1: {
243
+ PersonId: 0,
244
+ DisplayName: 'BYE',
245
+ ClubId: 17,
246
+ ShowData: true,
247
+ Images: [],
248
+ Club: {
249
+ Name: 'No Club Affiliation ',
250
+ Color1: 'red',
251
+ Color2: 'blue'
252
+ },
253
+ EventPersons: [],
254
+ Penalties: []
255
+ },
256
+ Person2: {
257
+ PersonId: 315,
258
+ DisplayName: 'Josh Derby',
259
+ ClubId: 358,
260
+ ShowData: true,
261
+ Images: [],
262
+ Club: {
263
+ Name: 'Waterfront Historical Fencing Club '
264
+ },
265
+ EventPersons: [
266
+ {
267
+ DEPosition: 7,
268
+ LastNote: null
269
+ }
270
+ ],
271
+ Penalties: []
272
+ },
273
+ Pool: {
274
+ RingName: 'DE Bracket'
275
+ },
276
+ Metrics: []
277
+ },
278
+ {
279
+ TimerStatus: 'stopped',
280
+ RefName: 'Unassigned',
281
+ BoutId: 16875,
282
+ PoolId: 770,
283
+ EventId: 185,
284
+ OrderIndex: 0,
285
+ Person1Pos: 0,
286
+ Person2Pos: 0,
287
+ Person1Id: 42,
288
+ Person2Id: 0,
289
+ Status: 'Bye',
290
+ Score1: 0,
291
+ Score2: 0,
292
+ Started: null,
293
+ Ended: null,
294
+ TimeLeft: 0,
295
+ CurrentPass: 0,
296
+ MaxPasses: 0,
297
+ RoundLabel: 'Table of 16',
298
+ DEBoutId: 5,
299
+ DENextBoutId: 11,
300
+ LoserNextBoutId: null,
301
+ RefereeId: null,
302
+ createdAt: '2025-11-08T15:16:50.000Z',
303
+ updatedAt: '2025-11-08T15:16:51.000Z',
304
+ Person1: {
305
+ PersonId: 42,
306
+ DisplayName: 'David Twitchell',
307
+ ClubId: 38,
308
+ ShowData: true,
309
+ Images: [],
310
+ Club: {
311
+ Name: 'Steelhead Western Martial Arts',
312
+ Color1: 'Black',
313
+ Color2: 'Blue'
314
+ },
315
+ EventPersons: [
316
+ {
317
+ DEPosition: 1,
318
+ LastNote: null
319
+ }
1128
320
  ],
1129
- "Weapon": {
1130
- "HRWeaponId": "5"
1131
- }
321
+ Penalties: []
322
+ },
323
+ Person2: {
324
+ PersonId: 0,
325
+ DisplayName: 'BYE',
326
+ ClubId: 17,
327
+ ShowData: true,
328
+ Images: [],
329
+ Club: {
330
+ Name: 'No Club Affiliation '
331
+ },
332
+ EventPersons: [],
333
+ Penalties: []
334
+ },
335
+ Pool: {
336
+ RingName: 'DE Bracket'
337
+ },
338
+ Metrics: []
339
+ },
340
+ {
341
+ TimerStatus: 'stopped',
342
+ RefName: 'Unassigned',
343
+ BoutId: 16874,
344
+ PoolId: 770,
345
+ EventId: 185,
346
+ OrderIndex: 0,
347
+ Person1Pos: 0,
348
+ Person2Pos: 0,
349
+ Person1Id: 304,
350
+ Person2Id: 832,
351
+ Status: 'Active',
352
+ Score1: 0,
353
+ Score2: 4,
354
+ Started: '2025-11-08T15:24:57.000Z',
355
+ Ended: null,
356
+ TimeLeft: 153,
357
+ CurrentPass: 0,
358
+ MaxPasses: 0,
359
+ RoundLabel: 'Table of 16',
360
+ DEBoutId: 6,
361
+ DENextBoutId: 11,
362
+ LoserNextBoutId: null,
363
+ RefereeId: 43,
364
+ createdAt: '2025-11-08T15:16:50.000Z',
365
+ updatedAt: '2025-11-08T15:25:44.000Z',
366
+ Person1: {
367
+ PersonId: 304,
368
+ DisplayName: 'Trevor Samberg',
369
+ ClubId: 23,
370
+ ShowData: true,
371
+ Images: [],
372
+ Club: {
373
+ Name: 'Queen City Sword Guild',
374
+ Color1: 'blue',
375
+ Color2: 'silver'
376
+ },
377
+ EventPersons: [
378
+ {
379
+ DEPosition: 6,
380
+ LastNote: null
381
+ }
382
+ ],
383
+ Penalties: []
384
+ },
385
+ Person2: {
386
+ PersonId: 832,
387
+ DisplayName: 'Thomas Kesler',
388
+ ClubId: 21,
389
+ ShowData: true,
390
+ Images: [],
391
+ Club: {
392
+ Name: 'Gem City Duelists Society'
393
+ },
394
+ EventPersons: [
395
+ {
396
+ DEPosition: 12,
397
+ LastNote: null
398
+ }
399
+ ],
400
+ Penalties: []
401
+ },
402
+ Pool: {
403
+ RingName: 'DE Bracket'
404
+ },
405
+ Metrics: []
406
+ },
407
+ {
408
+ TimerStatus: 'stopped',
409
+ RefName: 'Unassigned',
410
+ BoutId: 16872,
411
+ PoolId: 770,
412
+ EventId: 185,
413
+ OrderIndex: 0,
414
+ Person1Pos: 0,
415
+ Person2Pos: 0,
416
+ Person1Id: 319,
417
+ Person2Id: 54,
418
+ Status: 'Completed',
419
+ Score1: 4,
420
+ Score2: 2,
421
+ Started: '2025-11-08T15:20:47.000Z',
422
+ Ended: '2025-11-08T15:24:49.000Z',
423
+ TimeLeft: 0,
424
+ CurrentPass: 0,
425
+ MaxPasses: 0,
426
+ RoundLabel: 'Table of 16',
427
+ DEBoutId: 7,
428
+ DENextBoutId: 12,
429
+ LoserNextBoutId: null,
430
+ RefereeId: 43,
431
+ createdAt: '2025-11-08T15:16:50.000Z',
432
+ updatedAt: '2025-11-08T15:24:51.000Z',
433
+ Person1: {
434
+ PersonId: 319,
435
+ DisplayName: 'Matthew Melonuk',
436
+ ClubId: 358,
437
+ ShowData: true,
438
+ Images: [],
439
+ Club: {
440
+ Name: 'Waterfront Historical Fencing Club ',
441
+ Color1: 'Red',
442
+ Color2: 'Blue'
443
+ },
444
+ EventPersons: [
445
+ {
446
+ DEPosition: 8,
447
+ LastNote: null
448
+ }
449
+ ],
450
+ Penalties: []
451
+ },
452
+ Person2: {
453
+ PersonId: 54,
454
+ DisplayName: 'Justin Hernandez',
455
+ ClubId: 353,
456
+ ShowData: true,
457
+ Images: [],
458
+ Club: {
459
+ Name: 'Vanguard Common Fencers'
460
+ },
461
+ EventPersons: [
462
+ {
463
+ DEPosition: 2,
464
+ LastNote: null
465
+ }
466
+ ],
467
+ Penalties: []
468
+ },
469
+ Pool: {
470
+ RingName: 'DE Bracket'
471
+ },
472
+ Metrics: []
473
+ },
474
+ {
475
+ TimerStatus: 'stopped',
476
+ RefName: 'Unassigned',
477
+ BoutId: 16877,
478
+ PoolId: 770,
479
+ EventId: 185,
480
+ OrderIndex: 0,
481
+ Person1Pos: 0,
482
+ Person2Pos: 0,
483
+ Person1Id: 0,
484
+ Person2Id: 82,
485
+ Status: 'Bye',
486
+ Score1: 0,
487
+ Score2: 0,
488
+ Started: null,
489
+ Ended: null,
490
+ TimeLeft: 0,
491
+ CurrentPass: 0,
492
+ MaxPasses: 0,
493
+ RoundLabel: 'Table of 16',
494
+ DEBoutId: 8,
495
+ DENextBoutId: 12,
496
+ LoserNextBoutId: null,
497
+ RefereeId: null,
498
+ createdAt: '2025-11-08T15:16:50.000Z',
499
+ updatedAt: '2025-11-08T15:16:51.000Z',
500
+ Person1: {
501
+ PersonId: 0,
502
+ DisplayName: 'BYE',
503
+ ClubId: 17,
504
+ ShowData: true,
505
+ Images: [],
506
+ Club: {
507
+ Name: 'No Club Affiliation ',
508
+ Color1: 'red',
509
+ Color2: 'blue'
510
+ },
511
+ EventPersons: [],
512
+ Penalties: []
513
+ },
514
+ Person2: {
515
+ PersonId: 82,
516
+ DisplayName: 'Christopher Shelton',
517
+ ClubId: 17,
518
+ ShowData: true,
519
+ Images: [
520
+ {
521
+ ImageId: 58,
522
+ URL: 'https://meyersquaredimages.com/images/portraits/Shelton.jpg'
523
+ }
524
+ ],
525
+ Club: {
526
+ Name: 'No Club Affiliation '
527
+ },
528
+ EventPersons: [
529
+ {
530
+ DEPosition: 3,
531
+ LastNote: null
532
+ }
533
+ ],
534
+ Penalties: []
535
+ },
536
+ Pool: {
537
+ RingName: 'DE Bracket'
538
+ },
539
+ Metrics: []
1132
540
  },
1133
- "eventRules": [
1134
- {
1135
- "EventId": 185,
1136
- "RuleId": 1,
1137
- "RuleValue": "180",
1138
- "Rules": {
1139
- "RuleName": "PoolTime",
1140
- "Context": "pool"
1141
- }
541
+ {
542
+ TimerStatus: 'stopped',
543
+ RefName: 'Unassigned',
544
+ BoutId: 16876,
545
+ PoolId: 770,
546
+ EventId: 185,
547
+ OrderIndex: 0,
548
+ Person1Pos: 0,
549
+ Person2Pos: 0,
550
+ Person1Id: 118,
551
+ Person2Id: 0,
552
+ Status: 'Scheduled',
553
+ Score1: 0,
554
+ Score2: 0,
555
+ Started: null,
556
+ Ended: null,
557
+ TimeLeft: 0,
558
+ CurrentPass: 0,
559
+ MaxPasses: 0,
560
+ RoundLabel: 'Table of 8',
561
+ DEBoutId: 9,
562
+ DENextBoutId: 13,
563
+ LoserNextBoutId: null,
564
+ RefereeId: null,
565
+ createdAt: '2025-11-08T15:16:50.000Z',
566
+ updatedAt: '2025-11-08T15:16:50.000Z',
567
+ Person1: {
568
+ PersonId: 118,
569
+ DisplayName: 'Trevor Pedersen',
570
+ ClubId: 10,
571
+ ShowData: true,
572
+ Images: [],
573
+ Club: {
574
+ Name: 'Columbus United Fencing Club',
575
+ Color1: 'navy',
576
+ Color2: 'rose'
1142
577
  },
1143
- {
1144
- "EventId": 185,
1145
- "RuleId": 2,
1146
- "RuleValue": "7",
1147
- "Rules": {
1148
- "RuleName": "PoolMaxPoints",
1149
- "Context": "pool"
1150
- }
578
+ EventPersons: [
579
+ {
580
+ DEPosition: 5,
581
+ LastNote: null
582
+ }
583
+ ],
584
+ Penalties: []
585
+ },
586
+ Person2: {
587
+ PersonId: 0,
588
+ DisplayName: 'BYE',
589
+ ClubId: 17,
590
+ ShowData: true,
591
+ Images: [],
592
+ Club: {
593
+ Name: 'No Club Affiliation '
1151
594
  },
1152
- {
1153
- "EventId": 185,
1154
- "RuleId": 3,
1155
- "RuleValue": "180",
1156
- "Rules": {
1157
- "RuleName": "DETime",
1158
- "Context": "de"
1159
- }
595
+ EventPersons: [],
596
+ Penalties: []
597
+ },
598
+ Pool: {
599
+ RingName: 'DE Bracket'
600
+ },
601
+ Metrics: []
602
+ },
603
+ {
604
+ TimerStatus: 'stopped',
605
+ RefName: 'Unassigned',
606
+ BoutId: 16878,
607
+ PoolId: 770,
608
+ EventId: 185,
609
+ OrderIndex: 0,
610
+ Person1Pos: 0,
611
+ Person2Pos: 0,
612
+ Person1Id: 0,
613
+ Person2Id: 315,
614
+ Status: 'Scheduled',
615
+ Score1: 0,
616
+ Score2: 0,
617
+ Started: null,
618
+ Ended: null,
619
+ TimeLeft: 0,
620
+ CurrentPass: 0,
621
+ MaxPasses: 0,
622
+ RoundLabel: 'Table of 8',
623
+ DEBoutId: 10,
624
+ DENextBoutId: 13,
625
+ LoserNextBoutId: null,
626
+ RefereeId: null,
627
+ createdAt: '2025-11-08T15:16:50.000Z',
628
+ updatedAt: '2025-11-08T15:16:51.000Z',
629
+ Person1: {
630
+ PersonId: 0,
631
+ DisplayName: 'BYE',
632
+ ClubId: 17,
633
+ ShowData: true,
634
+ Images: [],
635
+ Club: {
636
+ Name: 'No Club Affiliation ',
637
+ Color1: 'red',
638
+ Color2: 'blue'
1160
639
  },
1161
- {
1162
- "EventId": 185,
1163
- "RuleId": 4,
1164
- "RuleValue": "12",
1165
- "Rules": {
1166
- "RuleName": "DEMaxPoints",
1167
- "Context": "de"
1168
- }
640
+ EventPersons: [],
641
+ Penalties: []
642
+ },
643
+ Person2: {
644
+ PersonId: 315,
645
+ DisplayName: 'Josh Derby',
646
+ ClubId: 358,
647
+ ShowData: true,
648
+ Images: [],
649
+ Club: {
650
+ Name: 'Waterfront Historical Fencing Club '
1169
651
  },
1170
- {
1171
- "EventId": 185,
1172
- "RuleId": 5,
1173
- "RuleValue": "false",
1174
- "Rules": {
1175
- "RuleName": "DE3rdFenceOff",
1176
- "Context": "de"
1177
- }
652
+ EventPersons: [
653
+ {
654
+ DEPosition: 7,
655
+ LastNote: null
656
+ }
657
+ ],
658
+ Penalties: []
659
+ },
660
+ Pool: {
661
+ RingName: 'DE Bracket'
662
+ },
663
+ Metrics: []
664
+ },
665
+ {
666
+ TimerStatus: 'stopped',
667
+ RefName: 'Unassigned',
668
+ BoutId: 16879,
669
+ PoolId: 770,
670
+ EventId: 185,
671
+ OrderIndex: 0,
672
+ Person1Pos: 0,
673
+ Person2Pos: 0,
674
+ Person1Id: 42,
675
+ Person2Id: 0,
676
+ Status: 'Scheduled',
677
+ Score1: 0,
678
+ Score2: 0,
679
+ Started: null,
680
+ Ended: null,
681
+ TimeLeft: 0,
682
+ CurrentPass: 0,
683
+ MaxPasses: 0,
684
+ RoundLabel: 'Table of 8',
685
+ DEBoutId: 11,
686
+ DENextBoutId: 14,
687
+ LoserNextBoutId: null,
688
+ RefereeId: null,
689
+ createdAt: '2025-11-08T15:16:50.000Z',
690
+ updatedAt: '2025-11-08T15:16:51.000Z',
691
+ Person1: {
692
+ PersonId: 42,
693
+ DisplayName: 'David Twitchell',
694
+ ClubId: 38,
695
+ ShowData: true,
696
+ Images: [],
697
+ Club: {
698
+ Name: 'Steelhead Western Martial Arts',
699
+ Color1: 'Black',
700
+ Color2: 'Blue'
1178
701
  },
1179
- {
1180
- "EventId": 185,
1181
- "RuleId": 9,
1182
- "RuleValue": "Win Percent,Win Count,Indicator,Points Scored",
1183
- "Rules": {
1184
- "RuleName": "DEPromotionOrder",
1185
- "Context": "de"
1186
- }
702
+ EventPersons: [
703
+ {
704
+ DEPosition: 1,
705
+ LastNote: null
706
+ }
707
+ ],
708
+ Penalties: []
709
+ },
710
+ Person2: {
711
+ PersonId: 0,
712
+ DisplayName: 'BYE',
713
+ ClubId: 17,
714
+ ShowData: true,
715
+ Images: [],
716
+ Club: {
717
+ Name: 'No Club Affiliation '
1187
718
  },
1188
- {
1189
- "EventId": 185,
1190
- "RuleId": 10,
1191
- "RuleValue": "100%",
1192
- "Rules": {
1193
- "RuleName": "DENumOfPromotion",
1194
- "Context": "de"
1195
- }
719
+ EventPersons: [],
720
+ Penalties: []
721
+ },
722
+ Pool: {
723
+ RingName: 'DE Bracket'
724
+ },
725
+ Metrics: []
726
+ },
727
+ {
728
+ TimerStatus: 'stopped',
729
+ RefName: 'Unassigned',
730
+ BoutId: 16880,
731
+ PoolId: 770,
732
+ EventId: 185,
733
+ OrderIndex: 0,
734
+ Person1Pos: 0,
735
+ Person2Pos: 0,
736
+ Person1Id: 319,
737
+ Person2Id: 82,
738
+ Status: 'Scheduled',
739
+ Score1: 0,
740
+ Score2: 0,
741
+ Started: null,
742
+ Ended: null,
743
+ TimeLeft: 0,
744
+ CurrentPass: 0,
745
+ MaxPasses: 0,
746
+ RoundLabel: 'Table of 8',
747
+ DEBoutId: 12,
748
+ DENextBoutId: 14,
749
+ LoserNextBoutId: null,
750
+ RefereeId: null,
751
+ createdAt: '2025-11-08T15:16:50.000Z',
752
+ updatedAt: '2025-11-08T15:24:51.000Z',
753
+ Person1: {
754
+ PersonId: 319,
755
+ DisplayName: 'Matthew Melonuk',
756
+ ClubId: 358,
757
+ ShowData: true,
758
+ Images: [],
759
+ Club: {
760
+ Name: 'Waterfront Historical Fencing Club ',
761
+ Color1: 'Red',
762
+ Color2: 'Blue'
1196
763
  },
1197
- {
1198
- "EventId": 185,
1199
- "RuleId": 11,
1200
- "RuleValue": "HR - Hema Rating",
1201
- "Rules": {
1202
- "RuleName": "PoolSeeding",
1203
- "Context": "pool"
1204
- }
764
+ EventPersons: [
765
+ {
766
+ DEPosition: 8,
767
+ LastNote: null
768
+ }
769
+ ],
770
+ Penalties: []
771
+ },
772
+ Person2: {
773
+ PersonId: 82,
774
+ DisplayName: 'Christopher Shelton',
775
+ ClubId: 17,
776
+ ShowData: true,
777
+ Images: [
778
+ {
779
+ ImageId: 58,
780
+ URL: 'https://meyersquaredimages.com/images/portraits/Shelton.jpg'
781
+ }
782
+ ],
783
+ Club: {
784
+ Name: 'No Club Affiliation '
1205
785
  },
1206
- {
1207
- "EventId": 185,
1208
- "RuleId": 14,
1209
- "RuleValue": "24",
1210
- "Rules": {
1211
- "RuleName": "CutOffNumber",
1212
- "Context": "event"
1213
- }
786
+ EventPersons: [
787
+ {
788
+ DEPosition: 3,
789
+ LastNote: null
790
+ }
791
+ ],
792
+ Penalties: []
793
+ },
794
+ Pool: {
795
+ RingName: 'DE Bracket'
796
+ },
797
+ Metrics: []
798
+ },
799
+ {
800
+ TimerStatus: 'stopped',
801
+ RefName: 'Unassigned',
802
+ BoutId: 16881,
803
+ PoolId: 770,
804
+ EventId: 185,
805
+ OrderIndex: 0,
806
+ Person1Pos: 0,
807
+ Person2Pos: 0,
808
+ Person1Id: 0,
809
+ Person2Id: 0,
810
+ Status: 'Scheduled',
811
+ Score1: 0,
812
+ Score2: 0,
813
+ Started: null,
814
+ Ended: null,
815
+ TimeLeft: 0,
816
+ CurrentPass: 0,
817
+ MaxPasses: 0,
818
+ RoundLabel: 'Semifinal',
819
+ DEBoutId: 13,
820
+ DENextBoutId: 15,
821
+ LoserNextBoutId: null,
822
+ RefereeId: null,
823
+ createdAt: '2025-11-08T15:16:50.000Z',
824
+ updatedAt: '2025-11-08T15:16:51.000Z',
825
+ Person1: {
826
+ PersonId: 0,
827
+ DisplayName: 'BYE',
828
+ ClubId: 17,
829
+ ShowData: true,
830
+ Images: [],
831
+ Club: {
832
+ Name: 'No Club Affiliation ',
833
+ Color1: 'red',
834
+ Color2: 'blue'
1214
835
  },
1215
- {
1216
- "EventId": 185,
1217
- "RuleId": 15,
1218
- "RuleValue": "single",
1219
- "Rules": {
1220
- "RuleName": "DEType",
1221
- "Context": "de"
1222
- }
836
+ EventPersons: [],
837
+ Penalties: []
838
+ },
839
+ Person2: {
840
+ PersonId: 0,
841
+ DisplayName: 'BYE',
842
+ ClubId: 17,
843
+ ShowData: true,
844
+ Images: [],
845
+ Club: {
846
+ Name: 'No Club Affiliation '
1223
847
  },
1224
- {
1225
- "EventId": 185,
1226
- "RuleId": 16,
1227
- "RuleValue": "true",
1228
- "Rules": {
1229
- "RuleName": "PoolScoreDirection",
1230
- "Context": "event"
1231
- }
848
+ EventPersons: [],
849
+ Penalties: []
850
+ },
851
+ Pool: {
852
+ RingName: 'DE Bracket'
853
+ },
854
+ Metrics: []
855
+ },
856
+ {
857
+ TimerStatus: 'stopped',
858
+ RefName: 'Unassigned',
859
+ BoutId: 16882,
860
+ PoolId: 770,
861
+ EventId: 185,
862
+ OrderIndex: 0,
863
+ Person1Pos: 0,
864
+ Person2Pos: 0,
865
+ Person1Id: 0,
866
+ Person2Id: 0,
867
+ Status: 'Scheduled',
868
+ Score1: 0,
869
+ Score2: 0,
870
+ Started: null,
871
+ Ended: null,
872
+ TimeLeft: 0,
873
+ CurrentPass: 0,
874
+ MaxPasses: 0,
875
+ RoundLabel: 'Semifinal',
876
+ DEBoutId: 14,
877
+ DENextBoutId: 15,
878
+ LoserNextBoutId: null,
879
+ RefereeId: null,
880
+ createdAt: '2025-11-08T15:16:50.000Z',
881
+ updatedAt: '2025-11-08T15:16:51.000Z',
882
+ Person1: {
883
+ PersonId: 0,
884
+ DisplayName: 'BYE',
885
+ ClubId: 17,
886
+ ShowData: true,
887
+ Images: [],
888
+ Club: {
889
+ Name: 'No Club Affiliation ',
890
+ Color1: 'red',
891
+ Color2: 'blue'
1232
892
  },
1233
- {
1234
- "EventId": 185,
1235
- "RuleId": 17,
1236
- "RuleValue": "Percent",
1237
- "Rules": {
1238
- "RuleName": "DEPromoteBy",
1239
- "Context": "de"
1240
- }
893
+ EventPersons: [],
894
+ Penalties: []
895
+ },
896
+ Person2: {
897
+ PersonId: 0,
898
+ DisplayName: 'BYE',
899
+ ClubId: 17,
900
+ ShowData: true,
901
+ Images: [],
902
+ Club: {
903
+ Name: 'No Club Affiliation '
1241
904
  },
1242
- {
1243
- "EventId": 185,
1244
- "RuleId": 19,
1245
- "RuleValue": "false",
1246
- "Rules": {
1247
- "RuleName": "CountHandshots",
1248
- "Context": "event"
1249
- }
905
+ EventPersons: [],
906
+ Penalties: []
907
+ },
908
+ Pool: {
909
+ RingName: 'DE Bracket'
910
+ },
911
+ Metrics: []
912
+ },
913
+ {
914
+ TimerStatus: 'stopped',
915
+ RefName: 'Unassigned',
916
+ BoutId: 16883,
917
+ PoolId: 770,
918
+ EventId: 185,
919
+ OrderIndex: 0,
920
+ Person1Pos: 0,
921
+ Person2Pos: 0,
922
+ Person1Id: 0,
923
+ Person2Id: 0,
924
+ Status: 'Scheduled',
925
+ Score1: 0,
926
+ Score2: 0,
927
+ Started: null,
928
+ Ended: null,
929
+ TimeLeft: 0,
930
+ CurrentPass: 0,
931
+ MaxPasses: 0,
932
+ RoundLabel: 'Final',
933
+ DEBoutId: 15,
934
+ DENextBoutId: null,
935
+ LoserNextBoutId: null,
936
+ RefereeId: null,
937
+ createdAt: '2025-11-08T15:16:50.000Z',
938
+ updatedAt: '2025-11-08T15:16:50.000Z',
939
+ Person1: {
940
+ PersonId: 0,
941
+ DisplayName: 'BYE',
942
+ ClubId: 17,
943
+ ShowData: true,
944
+ Images: [],
945
+ Club: {
946
+ Name: 'No Club Affiliation ',
947
+ Color1: 'red',
948
+ Color2: 'blue'
1250
949
  },
1251
- {
1252
- "EventId": 185,
1253
- "RuleId": 20,
1254
- "RuleValue": "false",
1255
- "Rules": {
1256
- "RuleName": "CountDoubles",
1257
- "Context": "event"
1258
- }
950
+ EventPersons: [],
951
+ Penalties: []
952
+ },
953
+ Person2: {
954
+ PersonId: 0,
955
+ DisplayName: 'BYE',
956
+ ClubId: 17,
957
+ ShowData: true,
958
+ Images: [],
959
+ Club: {
960
+ Name: 'No Club Affiliation '
1259
961
  },
1260
- {
1261
- "EventId": 185,
1262
- "RuleId": 21,
1263
- "RuleValue": "true",
1264
- "Rules": {
1265
- "RuleName": "PenaltiesReset",
1266
- "Context": "event"
1267
- }
1268
- }
1269
- ],
1270
- "hostingClubColors": {
1271
- "Color1": "navy",
1272
- "Color2": "rose"
962
+ EventPersons: [],
963
+ Penalties: []
964
+ },
965
+ Pool: {
966
+ RingName: 'DE Bracket'
967
+ },
968
+ Metrics: []
969
+ }
970
+ ]
971
+ }
972
+ ],
973
+ event: {
974
+ EventId: 185,
975
+ TournamentId: 74,
976
+ EventName: 'Open Single Rapier',
977
+ Date: '2025-11-08',
978
+ StartTime: '09:00:00',
979
+ NumberOfRings: 4,
980
+ NumberOfPools: 2,
981
+ PoolSize: 6,
982
+ Flights: 1,
983
+ WeaponId: 6,
984
+ Status: 'de',
985
+ EventRating: 'U',
986
+ IncludeInRatings: true,
987
+ EventPrice: null,
988
+ Present: 12,
989
+ Absent: 0,
990
+ Removed: 0,
991
+ EventRules: [
992
+ {
993
+ EventId: 185,
994
+ RuleId: 1,
995
+ RuleValue: '180',
996
+ Rules: {
997
+ RuleName: 'PoolTime',
998
+ Context: 'pool'
999
+ }
1000
+ },
1001
+ {
1002
+ EventId: 185,
1003
+ RuleId: 2,
1004
+ RuleValue: '7',
1005
+ Rules: {
1006
+ RuleName: 'PoolMaxPoints',
1007
+ Context: 'pool'
1008
+ }
1009
+ },
1010
+ {
1011
+ EventId: 185,
1012
+ RuleId: 3,
1013
+ RuleValue: '180',
1014
+ Rules: {
1015
+ RuleName: 'DETime',
1016
+ Context: 'de'
1017
+ }
1018
+ },
1019
+ {
1020
+ EventId: 185,
1021
+ RuleId: 4,
1022
+ RuleValue: '12',
1023
+ Rules: {
1024
+ RuleName: 'DEMaxPoints',
1025
+ Context: 'de'
1026
+ }
1027
+ },
1028
+ {
1029
+ EventId: 185,
1030
+ RuleId: 5,
1031
+ RuleValue: 'false',
1032
+ Rules: {
1033
+ RuleName: 'DE3rdFenceOff',
1034
+ Context: 'de'
1035
+ }
1036
+ },
1037
+ {
1038
+ EventId: 185,
1039
+ RuleId: 9,
1040
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
1041
+ Rules: {
1042
+ RuleName: 'DEPromotionOrder',
1043
+ Context: 'de'
1044
+ }
1045
+ },
1046
+ {
1047
+ EventId: 185,
1048
+ RuleId: 10,
1049
+ RuleValue: '100%',
1050
+ Rules: {
1051
+ RuleName: 'DENumOfPromotion',
1052
+ Context: 'de'
1053
+ }
1054
+ },
1055
+ {
1056
+ EventId: 185,
1057
+ RuleId: 11,
1058
+ RuleValue: 'HR - Hema Rating',
1059
+ Rules: {
1060
+ RuleName: 'PoolSeeding',
1061
+ Context: 'pool'
1062
+ }
1063
+ },
1064
+ {
1065
+ EventId: 185,
1066
+ RuleId: 14,
1067
+ RuleValue: '24',
1068
+ Rules: {
1069
+ RuleName: 'CutOffNumber',
1070
+ Context: 'event'
1071
+ }
1072
+ },
1073
+ {
1074
+ EventId: 185,
1075
+ RuleId: 15,
1076
+ RuleValue: 'single',
1077
+ Rules: {
1078
+ RuleName: 'DEType',
1079
+ Context: 'de'
1080
+ }
1081
+ },
1082
+ {
1083
+ EventId: 185,
1084
+ RuleId: 16,
1085
+ RuleValue: 'true',
1086
+ Rules: {
1087
+ RuleName: 'PoolScoreDirection',
1088
+ Context: 'event'
1273
1089
  }
1090
+ },
1091
+ {
1092
+ EventId: 185,
1093
+ RuleId: 17,
1094
+ RuleValue: 'Percent',
1095
+ Rules: {
1096
+ RuleName: 'DEPromoteBy',
1097
+ Context: 'de'
1098
+ }
1099
+ },
1100
+ {
1101
+ EventId: 185,
1102
+ RuleId: 19,
1103
+ RuleValue: 'false',
1104
+ Rules: {
1105
+ RuleName: 'CountHandshots',
1106
+ Context: 'event'
1107
+ }
1108
+ },
1109
+ {
1110
+ EventId: 185,
1111
+ RuleId: 20,
1112
+ RuleValue: 'false',
1113
+ Rules: {
1114
+ RuleName: 'CountDoubles',
1115
+ Context: 'event'
1116
+ }
1117
+ },
1118
+ {
1119
+ EventId: 185,
1120
+ RuleId: 21,
1121
+ RuleValue: 'true',
1122
+ Rules: {
1123
+ RuleName: 'PenaltiesReset',
1124
+ Context: 'event'
1125
+ }
1126
+ }
1127
+ ],
1128
+ Weapon: {
1129
+ HRWeaponId: '5'
1130
+ }
1131
+ },
1132
+ eventRules: [
1133
+ {
1134
+ EventId: 185,
1135
+ RuleId: 1,
1136
+ RuleValue: '180',
1137
+ Rules: {
1138
+ RuleName: 'PoolTime',
1139
+ Context: 'pool'
1140
+ }
1141
+ },
1142
+ {
1143
+ EventId: 185,
1144
+ RuleId: 2,
1145
+ RuleValue: '7',
1146
+ Rules: {
1147
+ RuleName: 'PoolMaxPoints',
1148
+ Context: 'pool'
1149
+ }
1150
+ },
1151
+ {
1152
+ EventId: 185,
1153
+ RuleId: 3,
1154
+ RuleValue: '180',
1155
+ Rules: {
1156
+ RuleName: 'DETime',
1157
+ Context: 'de'
1158
+ }
1159
+ },
1160
+ {
1161
+ EventId: 185,
1162
+ RuleId: 4,
1163
+ RuleValue: '12',
1164
+ Rules: {
1165
+ RuleName: 'DEMaxPoints',
1166
+ Context: 'de'
1167
+ }
1168
+ },
1169
+ {
1170
+ EventId: 185,
1171
+ RuleId: 5,
1172
+ RuleValue: 'false',
1173
+ Rules: {
1174
+ RuleName: 'DE3rdFenceOff',
1175
+ Context: 'de'
1176
+ }
1177
+ },
1178
+ {
1179
+ EventId: 185,
1180
+ RuleId: 9,
1181
+ RuleValue: 'Win Percent,Win Count,Indicator,Points Scored',
1182
+ Rules: {
1183
+ RuleName: 'DEPromotionOrder',
1184
+ Context: 'de'
1185
+ }
1186
+ },
1187
+ {
1188
+ EventId: 185,
1189
+ RuleId: 10,
1190
+ RuleValue: '100%',
1191
+ Rules: {
1192
+ RuleName: 'DENumOfPromotion',
1193
+ Context: 'de'
1194
+ }
1195
+ },
1196
+ {
1197
+ EventId: 185,
1198
+ RuleId: 11,
1199
+ RuleValue: 'HR - Hema Rating',
1200
+ Rules: {
1201
+ RuleName: 'PoolSeeding',
1202
+ Context: 'pool'
1203
+ }
1204
+ },
1205
+ {
1206
+ EventId: 185,
1207
+ RuleId: 14,
1208
+ RuleValue: '24',
1209
+ Rules: {
1210
+ RuleName: 'CutOffNumber',
1211
+ Context: 'event'
1212
+ }
1213
+ },
1214
+ {
1215
+ EventId: 185,
1216
+ RuleId: 15,
1217
+ RuleValue: 'single',
1218
+ Rules: {
1219
+ RuleName: 'DEType',
1220
+ Context: 'de'
1221
+ }
1222
+ },
1223
+ {
1224
+ EventId: 185,
1225
+ RuleId: 16,
1226
+ RuleValue: 'true',
1227
+ Rules: {
1228
+ RuleName: 'PoolScoreDirection',
1229
+ Context: 'event'
1230
+ }
1231
+ },
1232
+ {
1233
+ EventId: 185,
1234
+ RuleId: 17,
1235
+ RuleValue: 'Percent',
1236
+ Rules: {
1237
+ RuleName: 'DEPromoteBy',
1238
+ Context: 'de'
1239
+ }
1240
+ },
1241
+ {
1242
+ EventId: 185,
1243
+ RuleId: 19,
1244
+ RuleValue: 'false',
1245
+ Rules: {
1246
+ RuleName: 'CountHandshots',
1247
+ Context: 'event'
1248
+ }
1249
+ },
1250
+ {
1251
+ EventId: 185,
1252
+ RuleId: 20,
1253
+ RuleValue: 'false',
1254
+ Rules: {
1255
+ RuleName: 'CountDoubles',
1256
+ Context: 'event'
1257
+ }
1258
+ },
1259
+ {
1260
+ EventId: 185,
1261
+ RuleId: 21,
1262
+ RuleValue: 'true',
1263
+ Rules: {
1264
+ RuleName: 'PenaltiesReset',
1265
+ Context: 'event'
1266
+ }
1274
1267
  }
1268
+ ],
1269
+ hostingClubColors: {
1270
+ Color1: 'navy',
1271
+ Color2: 'rose'
1272
+ }
1273
+ };
1275
1274
 
1276
- export default getDEWithBouts12Fencers;
1275
+ export default getDEWithBouts12Fencers;