|
10 | 10 | ChartTypeEnum, |
11 | 11 | ClubSport, |
12 | 12 | ConfiguredMetricListTypeEnum, |
| 13 | + CreatorTypeEnum, |
| 14 | + CustomMaxMetricEnum, |
13 | 15 | DatafileFormat, |
14 | 16 | DatasetStatusEnum, |
15 | 17 | DecryptionArea, |
|
62 | 64 | ) |
63 | 65 | from .gqlclient import Client |
64 | 66 | from .input_types import ( |
| 67 | + AccelzoneLowerBoundsInput, |
| 68 | + AthleteAccelzoneAttributes, |
65 | 69 | AthleteClippedTimesInput, |
| 70 | + AthleteDecelzoneAttributes, |
66 | 71 | AthleteGroupAttributes, |
| 72 | + AthleteHeartRateBoundsAttributes, |
| 73 | + AthleteRelativeAccelzoneAttributes, |
| 74 | + AthleteRelativeDecelzoneAttributes, |
67 | 75 | AthleteSpeedzoneAttributes, |
68 | 76 | BulkUpdateMatchEventAttributes, |
69 | 77 | ClaimPersonAttributes, |
|
74 | 82 | CreateFlexibleReportChartAttributes, |
75 | 83 | CustomQuestionDefinitionAttributes, |
76 | 84 | DatasetAttributes, |
| 85 | + DecelzoneLowerBoundsInput, |
77 | 86 | DeviceAttributes, |
78 | 87 | DuplicateSessionAttributes, |
79 | 88 | EdgeSessionFilter, |
80 | 89 | FlexibleReportAttributes, |
81 | 90 | GatewaySessionAttributes, |
| 91 | + HeartRateLowerBoundsInput, |
82 | 92 | IntervalInput, |
83 | 93 | LiveDataGatewayOwnershipAvailableGatewaysFilter, |
84 | 94 | LiveDataGatewayOwnershipGatewaysCurrentlyOwnedFilter, |
|
116 | 126 | SurveysSurveyAssignmentBaseFilter, |
117 | 127 | SurveysSurveyDistributionBaseFilter, |
118 | 128 | SurveyTimerTriggerAttributes, |
| 129 | + SurveyTimerTriggerCreateAttributes, |
119 | 130 | TagDefinitionAttributes, |
120 | 131 | TaggerAttributes, |
121 | 132 | TimeSpanAttributes, |
|
138 | 149 | # Appended manually |
139 | 150 | from .playerdata_api import PlayerDataAPI |
140 | 151 |
|
141 | | - |
142 | 152 | __all__ = [ |
143 | 153 | "PlayerDataAPI", |
| 154 | + "AccelzoneLowerBoundsInput", |
144 | 155 | "AggFuncEnum", |
145 | 156 | "AppAuthenticationFlow", |
146 | 157 | "AppMessageTypeEnum", |
147 | 158 | "AsyncBaseClient", |
| 159 | + "AthleteAccelzoneAttributes", |
148 | 160 | "AthleteClippedTimesInput", |
| 161 | + "AthleteDecelzoneAttributes", |
149 | 162 | "AthleteGroupAttributes", |
| 163 | + "AthleteHeartRateBoundsAttributes", |
| 164 | + "AthleteRelativeAccelzoneAttributes", |
| 165 | + "AthleteRelativeDecelzoneAttributes", |
150 | 166 | "AthleteSpeedzoneAttributes", |
151 | 167 | "BaseModel", |
152 | 168 | "BulkUpdateMatchEventAttributes", |
|
161 | 177 | "ConfiguredMetricListTypeEnum", |
162 | 178 | "CreateDeviceSyncInput", |
163 | 179 | "CreateFlexibleReportChartAttributes", |
| 180 | + "CreatorTypeEnum", |
| 181 | + "CustomMaxMetricEnum", |
164 | 182 | "CustomQuestionDefinitionAttributes", |
165 | 183 | "DatafileFormat", |
166 | 184 | "DatasetAttributes", |
167 | 185 | "DatasetStatusEnum", |
| 186 | + "DecelzoneLowerBoundsInput", |
168 | 187 | "DecryptionArea", |
169 | 188 | "DetectedMatchEventState", |
170 | 189 | "DeviceAttributes", |
|
189 | 208 | "GraphQLClientGraphQLMultiError", |
190 | 209 | "GraphQLClientHttpError", |
191 | 210 | "GraphQLClientInvalidResponseError", |
| 211 | + "HeartRateLowerBoundsInput", |
192 | 212 | "IntervalInput", |
193 | 213 | "LiveDataGatewayOwnershipAvailableGatewaysFilter", |
194 | 214 | "LiveDataGatewayOwnershipGatewaysCurrentlyOwnedFilter", |
|
247 | 267 | "SurveyAttributes", |
248 | 268 | "SurveyDistributionAttributes", |
249 | 269 | "SurveyTimerTriggerAttributes", |
| 270 | + "SurveyTimerTriggerCreateAttributes", |
250 | 271 | "SurveysSurveyAssignmentBaseFilter", |
251 | 272 | "SurveysSurveyDistributionBaseFilter", |
252 | 273 | "TagDefinitionAttributes", |
|
0 commit comments