ftc_events_client 0.2.2 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +101 -5
  3. data/build.sh +0 -0
  4. data/config.json +1 -1
  5. data/docs/AdvancementApi.md +120 -0
  6. data/docs/AdvancementModel.md +9 -0
  7. data/docs/AdvancementSlot.md +13 -0
  8. data/docs/AdvancementSourceModel.md +10 -0
  9. data/docs/AllianceModelVersion2.md +3 -0
  10. data/docs/AllianceSelectionApi.md +56 -1
  11. data/docs/AllianceSelectionDetailModel.md +8 -0
  12. data/docs/ApiAdvancementStatus.md +6 -0
  13. data/docs/AutoNavigation.md +6 -0
  14. data/docs/AwardAssignmentModel.md +1 -0
  15. data/docs/AwardsApi.md +1 -1
  16. data/docs/Coordinate.md +12 -0
  17. data/docs/CoordinateEqualityComparer.md +6 -0
  18. data/docs/CoordinateSequence.md +17 -0
  19. data/docs/CoordinateSequenceFactory.md +7 -0
  20. data/docs/Dimension.md +6 -0
  21. data/docs/EndGameLocation.md +6 -0
  22. data/docs/Envelope.md +18 -0
  23. data/docs/FieldSide.md +6 -0
  24. data/docs/GeneralApi.md +1 -1
  25. data/docs/Geometry.md +30 -0
  26. data/docs/GeometryFactory.md +10 -0
  27. data/docs/GeometryOverlay.md +6 -0
  28. data/docs/JunctionElement.md +6 -0
  29. data/docs/LeaguesApi.md +1 -1
  30. data/docs/MatchResultsApi.md +1 -1
  31. data/docs/NtsGeometryServices.md +11 -0
  32. data/docs/OgcGeometryType.md +6 -0
  33. data/docs/Ordinates.md +6 -0
  34. data/docs/Point.md +35 -0
  35. data/docs/PrecisionModel.md +11 -0
  36. data/docs/PrecisionModels.md +6 -0
  37. data/docs/RankingsApi.md +1 -1
  38. data/docs/ScheduleApi.md +1 -1
  39. data/docs/ScheduleHybridModelTeamVersion2.md +2 -0
  40. data/docs/ScheduleHybridModelVersion2.md +2 -0
  41. data/docs/ScheduledMatchTeamModelVersion2.md +3 -0
  42. data/docs/ScoreDetailAllianceModel2022.md +42 -0
  43. data/docs/ScoreDetailAllianceModel2023.md +44 -0
  44. data/docs/ScoreDetailModel2021.md +1 -0
  45. data/docs/ScoreDetailModel2022.md +11 -0
  46. data/docs/ScoreDetailModel2023.md +11 -0
  47. data/docs/ScoreDetailModelSinglePlayer2021.md +1 -0
  48. data/docs/ScoreDetailModelSinglePlayer2022.md +11 -0
  49. data/docs/ScoreDetailModelSinglePlayer2023.md +11 -0
  50. data/docs/ScoreDetailSinglePlayer2022.md +35 -0
  51. data/docs/ScoreDetailSinglePlayer2023.md +36 -0
  52. data/docs/SeasonDataApi.md +1 -1
  53. data/docs/SeasonEventModelVersion2.md +3 -0
  54. data/docs/SeasonLeagueModelVersion2.md +2 -0
  55. data/docs/SeasonTeamModelVersion2.md +3 -0
  56. data/docs/SelectionModel.md +9 -0
  57. data/docs/SelectionResult.md +6 -0
  58. data/docs/TeamRankingModel.md +2 -0
  59. data/ftc_events_client-0.3.0.gem +0 -0
  60. data/ftc_events_client.gemspec +1 -1
  61. data/git_push.sh +0 -0
  62. data/lib/ftc_events_client/api/advancement_api.rb +147 -0
  63. data/lib/ftc_events_client/api/alliance_selection_api.rb +63 -1
  64. data/lib/ftc_events_client/api/awards_api.rb +1 -1
  65. data/lib/ftc_events_client/api/general_api.rb +1 -1
  66. data/lib/ftc_events_client/api/leagues_api.rb +1 -1
  67. data/lib/ftc_events_client/api/match_results_api.rb +1 -1
  68. data/lib/ftc_events_client/api/rankings_api.rb +1 -1
  69. data/lib/ftc_events_client/api/schedule_api.rb +1 -1
  70. data/lib/ftc_events_client/api/season_data_api.rb +1 -1
  71. data/lib/ftc_events_client/api_client.rb +3 -13
  72. data/lib/ftc_events_client/api_error.rb +1 -1
  73. data/lib/ftc_events_client/configuration.rb +3 -3
  74. data/lib/ftc_events_client/models/advancement_model.rb +231 -0
  75. data/lib/ftc_events_client/models/advancement_slot.rb +269 -0
  76. data/lib/ftc_events_client/models/advancement_source_model.rb +242 -0
  77. data/lib/ftc_events_client/models/alliance_model_version2.rb +32 -2
  78. data/lib/ftc_events_client/models/alliance_score_2020.rb +1 -1
  79. data/lib/ftc_events_client/models/alliance_selection_detail_model.rb +218 -0
  80. data/lib/ftc_events_client/models/alliance_selection_model_version2.rb +1 -1
  81. data/lib/ftc_events_client/models/api_advancement_status.rb +31 -0
  82. data/lib/ftc_events_client/models/api_index_model.rb +1 -1
  83. data/lib/ftc_events_client/models/auto_navigated_status.rb +1 -1
  84. data/lib/ftc_events_client/models/auto_navigation.rb +29 -0
  85. data/lib/ftc_events_client/models/award_assignment_model.rb +12 -2
  86. data/lib/ftc_events_client/models/awards_model.rb +1 -1
  87. data/lib/ftc_events_client/models/barcode_element.rb +1 -1
  88. data/lib/ftc_events_client/models/coordinate.rb +251 -0
  89. data/lib/ftc_events_client/models/coordinate_equality_comparer.rb +197 -0
  90. data/lib/ftc_events_client/models/coordinate_sequence.rb +296 -0
  91. data/lib/ftc_events_client/models/coordinate_sequence_factory.rb +206 -0
  92. data/lib/ftc_events_client/models/dimension.rb +33 -0
  93. data/lib/ftc_events_client/models/end_game_location.rb +29 -0
  94. data/lib/ftc_events_client/models/endgame_parked_status.rb +1 -1
  95. data/lib/ftc_events_client/models/envelope.rb +305 -0
  96. data/lib/ftc_events_client/models/event_match_results_model_version2.rb +1 -1
  97. data/lib/ftc_events_client/models/event_rankings_model.rb +1 -1
  98. data/lib/ftc_events_client/models/event_schedule_hybrid_model_version2.rb +1 -1
  99. data/lib/ftc_events_client/models/event_schedule_model_version2.rb +1 -1
  100. data/lib/ftc_events_client/models/field_side.rb +28 -0
  101. data/lib/ftc_events_client/models/ftc_event_level.rb +1 -1
  102. data/lib/ftc_events_client/models/geometry.rb +418 -0
  103. data/lib/ftc_events_client/models/geometry_factory.rb +233 -0
  104. data/lib/ftc_events_client/models/geometry_overlay.rb +197 -0
  105. data/lib/ftc_events_client/models/junction_element.rb +32 -0
  106. data/lib/ftc_events_client/models/league_member_list_model.rb +1 -1
  107. data/lib/ftc_events_client/models/match_result_model_version2.rb +1 -1
  108. data/lib/ftc_events_client/models/match_result_team_model_version2.rb +1 -1
  109. data/lib/ftc_events_client/models/match_scores_model.rb +1 -1
  110. data/lib/ftc_events_client/models/nts_geometry_services.rb +242 -0
  111. data/lib/ftc_events_client/models/ogc_geometry_type.rb +42 -0
  112. data/lib/ftc_events_client/models/one_of_match_scores_model_match_scores_items.rb +1 -1
  113. data/lib/ftc_events_client/models/ordinates.rb +66 -0
  114. data/lib/ftc_events_client/models/point.rb +463 -0
  115. data/lib/ftc_events_client/models/precision_model.rb +242 -0
  116. data/lib/ftc_events_client/models/precision_models.rb +29 -0
  117. data/lib/ftc_events_client/models/schedule_hybrid_model_team_version2.rb +26 -6
  118. data/lib/ftc_events_client/models/schedule_hybrid_model_version2.rb +22 -2
  119. data/lib/ftc_events_client/models/scheduled_match_model_version2.rb +1 -1
  120. data/lib/ftc_events_client/models/scheduled_match_team_model_version2.rb +32 -2
  121. data/lib/ftc_events_client/models/score_detail_alliance_model_2020.rb +1 -1
  122. data/lib/ftc_events_client/models/score_detail_alliance_model_2021.rb +1 -1
  123. data/lib/ftc_events_client/models/score_detail_alliance_model_2022.rb +540 -0
  124. data/lib/ftc_events_client/models/score_detail_alliance_model_2023.rb +540 -0
  125. data/lib/ftc_events_client/models/score_detail_model_2019.rb +1 -1
  126. data/lib/ftc_events_client/models/score_detail_model_2020.rb +1 -1
  127. data/lib/ftc_events_client/models/score_detail_model_2021.rb +11 -2
  128. data/lib/ftc_events_client/models/score_detail_model_2022.rb +245 -0
  129. data/lib/ftc_events_client/models/score_detail_model_2023.rb +245 -0
  130. data/lib/ftc_events_client/models/score_detail_model_alliance_2019.rb +1 -1
  131. data/lib/ftc_events_client/models/score_detail_model_single_player_2020.rb +1 -1
  132. data/lib/ftc_events_client/models/score_detail_model_single_player_2021.rb +11 -2
  133. data/lib/ftc_events_client/models/score_detail_model_single_player_2022.rb +242 -0
  134. data/lib/ftc_events_client/models/score_detail_model_single_player_2023.rb +242 -0
  135. data/lib/ftc_events_client/models/score_detail_single_player_2021.rb +1 -1
  136. data/lib/ftc_events_client/models/score_detail_single_player_2022.rb +474 -0
  137. data/lib/ftc_events_client/models/score_detail_single_player_2023.rb +467 -0
  138. data/lib/ftc_events_client/models/season_award_listings_model.rb +1 -1
  139. data/lib/ftc_events_client/models/season_awards_model.rb +1 -1
  140. data/lib/ftc_events_client/models/season_event_listings_model_version2.rb +1 -1
  141. data/lib/ftc_events_client/models/season_event_model_version2.rb +30 -2
  142. data/lib/ftc_events_client/models/season_league_listings_model_version2.rb +1 -1
  143. data/lib/ftc_events_client/models/season_league_model_version2.rb +22 -2
  144. data/lib/ftc_events_client/models/season_summary_model_championship.rb +1 -1
  145. data/lib/ftc_events_client/models/season_summary_model_version2.rb +1 -1
  146. data/lib/ftc_events_client/models/season_team_listings_model_version2.rb +1 -1
  147. data/lib/ftc_events_client/models/season_team_model_version2.rb +36 -6
  148. data/lib/ftc_events_client/models/selection_model.rb +224 -0
  149. data/lib/ftc_events_client/models/selection_result.rb +29 -0
  150. data/lib/ftc_events_client/models/stone.rb +1 -1
  151. data/lib/ftc_events_client/models/team_ranking_model.rb +22 -2
  152. data/lib/ftc_events_client/version.rb +2 -2
  153. data/lib/ftc_events_client.rb +36 -1
  154. data/spec/api/advancement_api_spec.rb +61 -0
  155. data/spec/models/advancement_model_spec.rb +52 -0
  156. data/spec/models/advancement_slot_spec.rb +76 -0
  157. data/spec/models/advancement_source_model_spec.rb +58 -0
  158. data/spec/models/alliance_selection_detail_model_spec.rb +46 -0
  159. data/spec/models/api_advancement_status_spec.rb +34 -0
  160. data/spec/models/auto_navigation_spec.rb +34 -0
  161. data/spec/models/coordinate_equality_comparer_spec.rb +34 -0
  162. data/spec/models/coordinate_sequence_factory_spec.rb +40 -0
  163. data/spec/models/coordinate_sequence_spec.rb +100 -0
  164. data/spec/models/coordinate_spec.rb +70 -0
  165. data/spec/models/dimension_spec.rb +34 -0
  166. data/spec/models/end_game_location_spec.rb +34 -0
  167. data/spec/models/envelope_spec.rb +106 -0
  168. data/spec/models/field_side_spec.rb +34 -0
  169. data/spec/models/geometry_factory_spec.rb +58 -0
  170. data/spec/models/geometry_overlay_spec.rb +34 -0
  171. data/spec/models/geometry_spec.rb +178 -0
  172. data/spec/models/junction_element_spec.rb +34 -0
  173. data/spec/models/nts_geometry_services_spec.rb +64 -0
  174. data/spec/models/ogc_geometry_type_spec.rb +34 -0
  175. data/spec/models/ordinates_spec.rb +34 -0
  176. data/spec/models/point_spec.rb +208 -0
  177. data/spec/models/precision_model_spec.rb +64 -0
  178. data/spec/models/precision_models_spec.rb +34 -0
  179. data/spec/models/score_detail_alliance_model_2022_spec.rb +250 -0
  180. data/spec/models/score_detail_alliance_model_2023_spec.rb +262 -0
  181. data/spec/models/score_detail_model_2022_spec.rb +64 -0
  182. data/spec/models/score_detail_model_2023_spec.rb +64 -0
  183. data/spec/models/score_detail_model_single_player_2022_spec.rb +64 -0
  184. data/spec/models/score_detail_model_single_player_2023_spec.rb +64 -0
  185. data/spec/models/score_detail_single_player_2022_spec.rb +208 -0
  186. data/spec/models/score_detail_single_player_2023_spec.rb +214 -0
  187. data/spec/models/selection_model_spec.rb +52 -0
  188. data/spec/models/selection_result_spec.rb +34 -0
  189. data/update.sh +1 -1
  190. metadata +145 -3
@@ -0,0 +1,6 @@
1
+ # FtcEventsClient::JunctionElement
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+
data/docs/LeaguesApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # FtcEventsClient::LeaguesApi
2
2
 
3
- All URIs are relative to *https://ftc-api.firstinspires.org*
3
+ All URIs are relative to *http://ftc-api.firstinspires.org*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # FtcEventsClient::MatchResultsApi
2
2
 
3
- All URIs are relative to *https://ftc-api.firstinspires.org*
3
+ All URIs are relative to *http://ftc-api.firstinspires.org*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -0,0 +1,11 @@
1
+ # FtcEventsClient::NtsGeometryServices
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **geometry_overlay** | [**GeometryOverlay**](GeometryOverlay.md) | | [optional]
7
+ **coordinate_equality_comparer** | [**CoordinateEqualityComparer**](CoordinateEqualityComparer.md) | | [optional]
8
+ **default_srid** | **Integer** | | [optional]
9
+ **default_coordinate_sequence_factory** | [**CoordinateSequenceFactory**](CoordinateSequenceFactory.md) | | [optional]
10
+ **default_precision_model** | [**PrecisionModel**](PrecisionModel.md) | | [optional]
11
+
@@ -0,0 +1,6 @@
1
+ # FtcEventsClient::OgcGeometryType
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+
data/docs/Ordinates.md ADDED
@@ -0,0 +1,6 @@
1
+ # FtcEventsClient::Ordinates
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+
data/docs/Point.md ADDED
@@ -0,0 +1,35 @@
1
+ # FtcEventsClient::Point
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **factory** | [**GeometryFactory**](GeometryFactory.md) | | [optional]
7
+ **user_data** | [****](.md) | | [optional]
8
+ **srid** | **Integer** | | [optional]
9
+ **precision_model** | [**PrecisionModel**](PrecisionModel.md) | | [optional]
10
+ **num_geometries** | **Integer** | | [optional]
11
+ **is_simple** | **BOOLEAN** | | [optional]
12
+ **is_valid** | **BOOLEAN** | | [optional]
13
+ **area** | **Float** | | [optional]
14
+ **length** | **Float** | | [optional]
15
+ **centroid** | [**Point**](Point.md) | | [optional]
16
+ **interior_point** | [**Point**](Point.md) | | [optional]
17
+ **point_on_surface** | [**Point**](Point.md) | | [optional]
18
+ **envelope** | [**Geometry**](Geometry.md) | | [optional]
19
+ **envelope_internal** | [**Envelope**](Envelope.md) | | [optional]
20
+ **is_rectangle** | **BOOLEAN** | | [optional]
21
+ **coordinate_sequence** | [**CoordinateSequence**](CoordinateSequence.md) | | [optional]
22
+ **coordinates** | [**Array<Coordinate>**](Coordinate.md) | | [optional]
23
+ **num_points** | **Integer** | | [optional]
24
+ **is_empty** | **BOOLEAN** | | [optional]
25
+ **dimension** | [**Dimension**](Dimension.md) | | [optional]
26
+ **boundary_dimension** | [**Dimension**](Dimension.md) | | [optional]
27
+ **x** | **Float** | | [optional]
28
+ **y** | **Float** | | [optional]
29
+ **coordinate** | [**Coordinate**](Coordinate.md) | | [optional]
30
+ **geometry_type** | **String** | | [optional]
31
+ **ogc_geometry_type** | [**OgcGeometryType**](OgcGeometryType.md) | | [optional]
32
+ **boundary** | [**Geometry**](Geometry.md) | | [optional]
33
+ **z** | **Float** | | [optional]
34
+ **m** | **Float** | | [optional]
35
+
@@ -0,0 +1,11 @@
1
+ # FtcEventsClient::PrecisionModel
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **is_floating** | **BOOLEAN** | | [optional]
7
+ **maximum_significant_digits** | **Integer** | | [optional]
8
+ **scale** | **Float** | | [optional]
9
+ **grid_size** | **Float** | | [optional]
10
+ **precision_model_type** | [**PrecisionModels**](PrecisionModels.md) | | [optional]
11
+
@@ -0,0 +1,6 @@
1
+ # FtcEventsClient::PrecisionModels
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+
data/docs/RankingsApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # FtcEventsClient::RankingsApi
2
2
 
3
- All URIs are relative to *https://ftc-api.firstinspires.org*
3
+ All URIs are relative to *http://ftc-api.firstinspires.org*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
data/docs/ScheduleApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # FtcEventsClient::ScheduleApi
2
2
 
3
- All URIs are relative to *https://ftc-api.firstinspires.org*
3
+ All URIs are relative to *http://ftc-api.firstinspires.org*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -4,9 +4,11 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **team_number** | **Integer** | | [optional]
7
+ **display_team_number** | **String** | | [optional]
7
8
  **station** | **String** | | [optional]
8
9
  **surrogate** | **BOOLEAN** | | [optional]
9
10
  **no_show** | **BOOLEAN** | | [optional]
10
11
  **dq** | **BOOLEAN** | | [optional]
11
12
  **on_field** | **BOOLEAN** | | [optional]
13
+ **team_name** | **String** | | [optional]
12
14
 
@@ -18,5 +18,7 @@ Name | Type | Description | Notes
18
18
  **score_blue_auto** | **Integer** | | [optional]
19
19
  **score_blue_drive_controlled** | **Integer** | | [optional]
20
20
  **score_blue_endgame** | **Integer** | | [optional]
21
+ **red_wins** | **BOOLEAN** | | [optional]
22
+ **blue_wins** | **BOOLEAN** | | [optional]
21
23
  **teams** | [**Array<ScheduleHybridModelTeamVersion2>**](ScheduleHybridModelTeamVersion2.md) | | [optional]
22
24
 
@@ -4,7 +4,10 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **team_number** | **Integer** | | [optional]
7
+ **display_team_number** | **String** | | [optional]
7
8
  **station** | **String** | | [optional]
9
+ **team** | **String** | | [optional]
10
+ **team_name** | **String** | | [optional]
8
11
  **surrogate** | **BOOLEAN** | | [optional]
9
12
  **no_show** | **BOOLEAN** | | [optional]
10
13
 
@@ -0,0 +1,42 @@
1
+ # FtcEventsClient::ScoreDetailAllianceModel2022
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **side_of_field** | [**FieldSide**](FieldSide.md) | | [optional]
7
+ **init_signal_sleeve1** | **BOOLEAN** | | [optional]
8
+ **init_signal_sleeve2** | **BOOLEAN** | | [optional]
9
+ **robot1_auto** | [**AutoNavigation**](AutoNavigation.md) | | [optional]
10
+ **robot2_auto** | [**AutoNavigation**](AutoNavigation.md) | | [optional]
11
+ **auto_terminal** | **Integer** | | [optional]
12
+ **auto_junctions** | **Array<Array<Array<JunctionElement>>>** | Two dimensional array of lists of items scored on junctions in autonomous. [0,0] is the upper-left corner of the field as viewed from the audience side of the field (V5). The array is indexed by row, then column. (e.g [0,4] is in the upper right corner of the field (Z5).) Each junction is stored bottom up (index 0 is the bottom-most element on the field). MY_* elements belong to the alliance whose score object the element appears in, OTHER_* elements belong to the opposing alliance. (e.g in a set of scores for the red alliance, MY_CONE is a red cone and OTHER_CONE is a blue cone.) For a complete example, if red.autoJunctions[4][0][1] is OTHER_CONE, there is a blue cone in the bottom left cornerof the field (V1) on top of one other cone. | [optional]
13
+ **dc_junctions** | **Array<Array<Array<JunctionElement>>>** | Two dimensional array of lists of items scored on junctions in driver-controlled. [0,0] is the upper-left corner of the field as viewed from the audience side of the field (V5). The array is indexed by crow, then column. (e.g [0,4] is in the upper right corner of the field (Z5).) Each junction is stored bottom up (index 0 is the bottom-most element on the field). MY_* elements belong to the alliance whose score object the element appears in, OTHER_* elements belong to the opposing alliance. (e.g in a set of scores for the red alliance, MY_CONE is a red cone and OTHER_CONE is a blue cone.) *_R1_BEACON means the beacon scored by robot 1 on the corresponding alliance. For a complete example, if red.dcJunctions[4][0][1] is OTHER_CONE, there is a blue cone in the bottom left cornerof the field (V1) on top of one other cone. | [optional]
14
+ **dc_terminal_near** | **Integer** | Number of Scored cones in the alliance-colored terminal on the side of the field closest to the alliance station. | [optional]
15
+ **dc_terminal_far** | **Integer** | Number of Scored cones in the alliance-colored terminal on the side of the field opposite the alliance station. | [optional]
16
+ **eg_navigated1** | **BOOLEAN** | | [optional]
17
+ **eg_navigated2** | **BOOLEAN** | | [optional]
18
+ **minor_penalties** | **Integer** | | [optional]
19
+ **major_penalties** | **Integer** | | [optional]
20
+ **auto_navigation_points** | **Integer** | | [optional]
21
+ **signal_bonus_points** | **Integer** | | [optional]
22
+ **auto_junction_cone_points** | **Integer** | | [optional]
23
+ **auto_terminal_cone_points** | **Integer** | | [optional]
24
+ **dc_junction_cone_points** | **Integer** | | [optional]
25
+ **dc_terminal_cone_points** | **Integer** | | [optional]
26
+ **ownership_points** | **Integer** | | [optional]
27
+ **circuit_points** | **Integer** | | [optional]
28
+ **eg_navigation_points** | **Integer** | | [optional]
29
+ **auto_points** | **Integer** | | [optional]
30
+ **dc_points** | **Integer** | | [optional]
31
+ **endgame_points** | **Integer** | | [optional]
32
+ **penalty_points_committed** | **Integer** | | [optional]
33
+ **pre_penalty_total** | **Integer** | | [optional]
34
+ **auto_junction_cones** | **Array<Integer>** | Array of 4 cone counts scored by this alliance on ground, low, medium, and high junctions respectively, scored in autonomous. E.g. red.autoJunctionCones[2] is the total number of cones scored by red on medium-height junctions. | [optional]
35
+ **dc_junction_cones** | **Array<Integer>** | Array of 4 cone counts scored by this alliance on ground, low, medium, and high junctions respectively, scored in driver-controlled. E.g. red.dcJunctionCones[2] is the total number of cones scored by red on medium-height junctions. | [optional]
36
+ **beacons** | **Integer** | | [optional]
37
+ **owned_junctions** | **Integer** | | [optional]
38
+ **circuit** | **BOOLEAN** | | [optional]
39
+ **total_points** | **Integer** | | [optional]
40
+ **alliance** | **String** | | [optional]
41
+ **team** | **Integer** | | [optional]
42
+
@@ -0,0 +1,44 @@
1
+ # FtcEventsClient::ScoreDetailAllianceModel2023
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **init_team_prop1** | **BOOLEAN** | | [optional]
7
+ **init_team_prop2** | **BOOLEAN** | | [optional]
8
+ **robot1_auto** | **BOOLEAN** | | [optional]
9
+ **robot2_auto** | **BOOLEAN** | | [optional]
10
+ **spike_mark_pixel1** | **BOOLEAN** | | [optional]
11
+ **spike_mark_pixel2** | **BOOLEAN** | | [optional]
12
+ **target_backdrop_pixel1** | **BOOLEAN** | | [optional]
13
+ **target_backdrop_pixel2** | **BOOLEAN** | | [optional]
14
+ **auto_backdrop** | **Integer** | | [optional]
15
+ **auto_backstage** | **Integer** | | [optional]
16
+ **dc_backdrop** | **Integer** | | [optional]
17
+ **dc_backstage** | **Integer** | | [optional]
18
+ **mosaics** | **Integer** | | [optional]
19
+ **max_set_line** | **Integer** | | [optional]
20
+ **eg_robot1** | [**EndGameLocation**](EndGameLocation.md) | | [optional]
21
+ **eg_robot2** | [**EndGameLocation**](EndGameLocation.md) | | [optional]
22
+ **drone1** | **Integer** | | [optional]
23
+ **drone2** | **Integer** | | [optional]
24
+ **minor_penalties** | **Integer** | | [optional]
25
+ **major_penalties** | **Integer** | | [optional]
26
+ **auto_navigating_points** | **Integer** | | [optional]
27
+ **auto_randomization_points** | **Integer** | | [optional]
28
+ **auto_backstage_points** | **Integer** | | [optional]
29
+ **auto_backdrop_points** | **Integer** | | [optional]
30
+ **dc_backdrop_points** | **Integer** | | [optional]
31
+ **dc_backstage_points** | **Integer** | | [optional]
32
+ **mosaic_points** | **Integer** | | [optional]
33
+ **set_bonus_points** | **Integer** | | [optional]
34
+ **eg_location_points** | **Integer** | | [optional]
35
+ **eg_drone_points** | **Integer** | | [optional]
36
+ **auto_points** | **Integer** | | [optional]
37
+ **dc_points** | **Integer** | | [optional]
38
+ **endgame_points** | **Integer** | | [optional]
39
+ **penalty_points_committed** | **Integer** | | [optional]
40
+ **pre_penalty_total** | **Integer** | | [optional]
41
+ **total_points** | **Integer** | | [optional]
42
+ **alliance** | **String** | | [optional]
43
+ **team** | **Integer** | | [optional]
44
+
@@ -6,5 +6,6 @@ Name | Type | Description | Notes
6
6
  **match_level** | [**FTCEventLevel**](FTCEventLevel.md) | | [optional]
7
7
  **match_series** | **Integer** | | [optional]
8
8
  **match_number** | **Integer** | | [optional]
9
+ **randomization** | **Integer** | | [optional]
9
10
  **alliances** | [**Array<ScoreDetailAllianceModel2021>**](ScoreDetailAllianceModel2021.md) | | [optional]
10
11
 
@@ -0,0 +1,11 @@
1
+ # FtcEventsClient::ScoreDetailModel2022
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **match_level** | [**FTCEventLevel**](FTCEventLevel.md) | | [optional]
7
+ **match_series** | **Integer** | | [optional]
8
+ **match_number** | **Integer** | | [optional]
9
+ **randomization** | **Integer** | | [optional]
10
+ **alliances** | [**Array<ScoreDetailAllianceModel2022>**](ScoreDetailAllianceModel2022.md) | | [optional]
11
+
@@ -0,0 +1,11 @@
1
+ # FtcEventsClient::ScoreDetailModel2023
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **match_level** | [**FTCEventLevel**](FTCEventLevel.md) | | [optional]
7
+ **match_series** | **Integer** | | [optional]
8
+ **match_number** | **Integer** | | [optional]
9
+ **randomization** | **Integer** | | [optional]
10
+ **alliances** | [**Array<ScoreDetailAllianceModel2023>**](ScoreDetailAllianceModel2023.md) | | [optional]
11
+
@@ -5,6 +5,7 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **match_level** | [**FTCEventLevel**](FTCEventLevel.md) | | [optional]
7
7
  **match_number** | **Integer** | | [optional]
8
+ **randomization** | **Integer** | | [optional]
8
9
  **team_number** | **Integer** | | [optional]
9
10
  **scores** | [**ScoreDetailSinglePlayer2021**](ScoreDetailSinglePlayer2021.md) | | [optional]
10
11
 
@@ -0,0 +1,11 @@
1
+ # FtcEventsClient::ScoreDetailModelSinglePlayer2022
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **match_level** | [**FTCEventLevel**](FTCEventLevel.md) | | [optional]
7
+ **match_number** | **Integer** | | [optional]
8
+ **randomization** | **Integer** | | [optional]
9
+ **team_number** | **Integer** | | [optional]
10
+ **scores** | [**ScoreDetailSinglePlayer2022**](ScoreDetailSinglePlayer2022.md) | | [optional]
11
+
@@ -0,0 +1,11 @@
1
+ # FtcEventsClient::ScoreDetailModelSinglePlayer2023
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **match_level** | [**FTCEventLevel**](FTCEventLevel.md) | | [optional]
7
+ **match_number** | **Integer** | | [optional]
8
+ **randomization** | **Integer** | | [optional]
9
+ **team_number** | **Integer** | | [optional]
10
+ **scores** | [**ScoreDetailSinglePlayer2023**](ScoreDetailSinglePlayer2023.md) | | [optional]
11
+
@@ -0,0 +1,35 @@
1
+ # FtcEventsClient::ScoreDetailSinglePlayer2022
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **init_signal_sleeve** | **BOOLEAN** | | [optional]
7
+ **robot_auto** | [**AutoNavigation**](AutoNavigation.md) | | [optional]
8
+ **auto_terminal** | **Integer** | | [optional]
9
+ **auto_junctions** | **Array<Array<Array<JunctionElement>>>** | Two dimensional array of lists of items scored on junctions in autonomous. [0,0] is the upper-left corner of the field as viewed from the audience side of the field. The array is indexed by row, then column. (e.g [0,2] is in the upper right corner of the field.) Each junction is stored bottom up (index 0 is the bottom-most element on the field). | [optional]
10
+ **dc_junctions** | **Array<Array<Array<JunctionElement>>>** | Two dimensional array of lists of items scored on junctions in driver-controlled. [0,0] is the upper-left corner of the field as viewed from the audience side of the field. The array is indexed by crow, then column. (e.g [0,2] is in the upper right corner of the field.) Each junction is stored bottom up (index 0 is the bottom-most element on the field). | [optional]
11
+ **dc_terminal** | **Integer** | | [optional]
12
+ **eg_navigated** | **BOOLEAN** | | [optional]
13
+ **minor_penalties** | **Integer** | | [optional]
14
+ **major_penalties** | **Integer** | | [optional]
15
+ **auto_navigation_points** | **Integer** | | [optional]
16
+ **signal_bonus_points** | **Integer** | | [optional]
17
+ **auto_junction_cone_points** | **Integer** | | [optional]
18
+ **auto_terminal_cone_points** | **Integer** | | [optional]
19
+ **dc_junction_cone_points** | **Integer** | | [optional]
20
+ **dc_terminal_cone_points** | **Integer** | | [optional]
21
+ **ownership_points** | **Integer** | | [optional]
22
+ **circuit_points** | **Integer** | | [optional]
23
+ **eg_navigation_points** | **Integer** | | [optional]
24
+ **auto_points** | **Integer** | | [optional]
25
+ **dc_points** | **Integer** | | [optional]
26
+ **endgame_points** | **Integer** | | [optional]
27
+ **penalty_points_committed** | **Integer** | | [optional]
28
+ **pre_penalty_total** | **Integer** | | [optional]
29
+ **auto_junction_cones** | **Array<Integer>** | Array of 4 cone counts scored by this team on ground, low, medium, and high junctions respectively, scored in autonomous. E.g. red.autoJunctionCones[2] is the total number of cones scored by red on medium-height junctions. | [optional]
30
+ **dc_junction_cones** | **Array<Integer>** | Array of 4 cone counts scored by this team on ground, low, medium, and high junctions respectively, scored in driver-controlled. E.g. red.dcJunctionCones[2] is the total number of cones scored by red on medium-height junctions. | [optional]
31
+ **beacons** | **Integer** | | [optional]
32
+ **owned_junctions** | **Integer** | | [optional]
33
+ **circuit** | **BOOLEAN** | | [optional]
34
+ **total_points** | **Integer** | | [optional]
35
+
@@ -0,0 +1,36 @@
1
+ # FtcEventsClient::ScoreDetailSinglePlayer2023
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **init_team_prop** | **BOOLEAN** | | [optional]
7
+ **robot_auto** | **BOOLEAN** | | [optional]
8
+ **spike_mark_pixel** | **BOOLEAN** | | [optional]
9
+ **target_backdrop_pixel** | **BOOLEAN** | | [optional]
10
+ **auto_backdrop** | **Integer** | | [optional]
11
+ **auto_backstage** | **Integer** | | [optional]
12
+ **dc_backdrop** | **Integer** | | [optional]
13
+ **dc_backstage** | **Integer** | | [optional]
14
+ **mosaics** | **Integer** | | [optional]
15
+ **max_set_line** | **Integer** | | [optional]
16
+ **eg_robot** | [**EndGameLocation**](EndGameLocation.md) | | [optional]
17
+ **drone** | **Integer** | | [optional]
18
+ **minor_penalties** | **Integer** | | [optional]
19
+ **major_penalties** | **Integer** | | [optional]
20
+ **auto_navigating_points** | **Integer** | | [optional]
21
+ **auto_randomization_points** | **Integer** | | [optional]
22
+ **auto_backstage_points** | **Integer** | | [optional]
23
+ **auto_backdrop_points** | **Integer** | | [optional]
24
+ **dc_backdrop_points** | **Integer** | | [optional]
25
+ **dc_backstage_points** | **Integer** | | [optional]
26
+ **mosaic_points** | **Integer** | | [optional]
27
+ **set_bonus_points** | **Integer** | | [optional]
28
+ **eg_location_points** | **Integer** | | [optional]
29
+ **eg_drone_points** | **Integer** | | [optional]
30
+ **auto_points** | **Integer** | | [optional]
31
+ **dc_points** | **Integer** | | [optional]
32
+ **endgame_points** | **Integer** | | [optional]
33
+ **penalty_points_committed** | **Integer** | | [optional]
34
+ **pre_penalty_total** | **Integer** | | [optional]
35
+ **total_points** | **Integer** | | [optional]
36
+
@@ -1,6 +1,6 @@
1
1
  # FtcEventsClient::SeasonDataApi
2
2
 
3
- All URIs are relative to *https://ftc-api.firstinspires.org*
3
+ All URIs are relative to *http://ftc-api.firstinspires.org*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -3,6 +3,7 @@
3
3
  ## Properties
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
+ **event_id** | **String** | | [optional]
6
7
  **code** | **String** | | [optional]
7
8
  **division_code** | **String** | | [optional]
8
9
  **name** | **String** | | [optional]
@@ -21,6 +22,8 @@ Name | Type | Description | Notes
21
22
  **stateprov** | **String** | | [optional]
22
23
  **country** | **String** | | [optional]
23
24
  **website** | **String** | | [optional]
25
+ **live_stream_url** | **String** | | [optional]
26
+ **coordinates** | [**Point**](Point.md) | | [optional]
24
27
  **webcasts** | **Array<String>** | | [optional]
25
28
  **timezone** | **String** | | [optional]
26
29
  **date_start** | **DateTime** | | [optional]
@@ -6,6 +6,8 @@ Name | Type | Description | Notes
6
6
  **region** | **String** | | [optional]
7
7
  **code** | **String** | | [optional]
8
8
  **name** | **String** | | [optional]
9
+ **remote** | **BOOLEAN** | | [optional]
9
10
  **parent_league_code** | **String** | | [optional]
11
+ **parent_league_name** | **String** | | [optional]
10
12
  **location** | **String** | | [optional]
11
13
 
@@ -4,6 +4,7 @@
4
4
  Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **team_number** | **Integer** | | [optional]
7
+ **display_team_number** | **String** | | [optional]
7
8
  **name_full** | **String** | | [optional]
8
9
  **name_short** | **String** | | [optional]
9
10
  **school_name** | **String** | | [optional]
@@ -15,4 +16,6 @@ Name | Type | Description | Notes
15
16
  **robot_name** | **String** | | [optional]
16
17
  **district_code** | **String** | | [optional]
17
18
  **home_cmp** | **String** | | [optional]
19
+ **home_region** | **String** | | [optional]
20
+ **display_location** | **String** | | [optional]
18
21
 
@@ -0,0 +1,9 @@
1
+ # FtcEventsClient::SelectionModel
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+ **index** | **Integer** | | [optional]
7
+ **team** | **Integer** | | [optional]
8
+ **result** | [**SelectionResult**](SelectionResult.md) | | [optional]
9
+
@@ -0,0 +1,6 @@
1
+ # FtcEventsClient::SelectionResult
2
+
3
+ ## Properties
4
+ Name | Type | Description | Notes
5
+ ------------ | ------------- | ------------- | -------------
6
+
@@ -5,6 +5,8 @@ Name | Type | Description | Notes
5
5
  ------------ | ------------- | ------------- | -------------
6
6
  **rank** | **Integer** | | [optional]
7
7
  **team_number** | **Integer** | | [optional]
8
+ **display_team_number** | **String** | | [optional]
9
+ **team_name** | **String** | | [optional]
8
10
  **sort_order1** | **Float** | | [optional]
9
11
  **sort_order2** | **Float** | | [optional]
10
12
  **sort_order3** | **Float** | | [optional]
Binary file
@@ -8,7 +8,7 @@
8
8
  OpenAPI spec version: v2.0
9
9
 
10
10
  Generated by: https://github.com/swagger-api/swagger-codegen.git
11
- Swagger Codegen version: 3.0.29
11
+ Swagger Codegen version: 3.0.52
12
12
  =end
13
13
 
14
14
  $:.push File.expand_path("../lib", __FILE__)
data/git_push.sh CHANGED
File without changes