@kingstinct/react-native-healthkit 13.3.1 → 14.0.0

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 (191) hide show
  1. package/ReactNativeHealthkit.podspec +1 -0
  2. package/app.plugin.ts +40 -2
  3. package/ios/BackgroundDeliveryManager.swift +196 -0
  4. package/ios/CategoryTypeModule.swift +1 -1
  5. package/ios/CoreModule.swift +24 -0
  6. package/ios/CorrelationTypeModule.swift +2 -35
  7. package/ios/ElectrocardiogramModule.swift +2 -34
  8. package/ios/HeartbeatSeriesModule.swift +2 -34
  9. package/ios/MedicationModule.swift +3 -35
  10. package/ios/PredicateHelpers.swift +2 -2
  11. package/ios/QuantityTypeModule.swift +11 -11
  12. package/ios/Serializers.swift +58 -90
  13. package/ios/StateOfMindModule.swift +2 -34
  14. package/ios/WorkoutProxy.swift +4 -149
  15. package/ios/generated/HealthkitGenerated.swift +52 -0
  16. package/lib/commonjs/generated/healthkit.generated.js +745 -0
  17. package/lib/commonjs/healthkit.ios.js +51 -17
  18. package/lib/commonjs/healthkit.js +120 -34
  19. package/lib/commonjs/specs/QuantityTypeModule.nitro.js +1 -0
  20. package/lib/commonjs/type-tests/generated-typing.js +2 -0
  21. package/lib/commonjs/types/CategoryType.js +19 -99
  22. package/lib/commonjs/types/Medication.js +2 -0
  23. package/lib/commonjs/types/MetadataEnums.js +17 -0
  24. package/lib/commonjs/types/QuantityType.js +4 -15
  25. package/lib/commonjs/types/WeatherCondition.js +2 -32
  26. package/lib/commonjs/types/Workouts.js +3 -98
  27. package/lib/commonjs/types/index.js +2 -0
  28. package/lib/module/generated/healthkit.generated.js +742 -0
  29. package/lib/module/healthkit.ios.js +49 -15
  30. package/lib/module/healthkit.js +94 -20
  31. package/lib/module/specs/QuantityTypeModule.nitro.js +1 -0
  32. package/lib/module/type-tests/generated-typing.js +1 -0
  33. package/lib/module/types/CategoryType.js +2 -98
  34. package/lib/module/types/Medication.js +1 -0
  35. package/lib/module/types/MetadataEnums.js +1 -0
  36. package/lib/module/types/QuantityType.js +2 -14
  37. package/lib/module/types/WeatherCondition.js +1 -32
  38. package/lib/module/types/Workouts.js +2 -98
  39. package/lib/module/types/index.js +2 -0
  40. package/lib/typescript/generated/healthkit.generated.d.ts +1006 -0
  41. package/lib/typescript/healthkit.d.ts +39 -36
  42. package/lib/typescript/healthkit.ios.d.ts +64 -53
  43. package/lib/typescript/hooks/useMostRecentQuantitySample.d.ts +3 -2
  44. package/lib/typescript/hooks/useMostRecentWorkout.d.ts +2 -2
  45. package/lib/typescript/hooks/useQuantitySampleById.d.ts +5 -4
  46. package/lib/typescript/hooks/useStatisticsForQuantity.d.ts +2 -2
  47. package/lib/typescript/hooks/useSubscribeToQuantitySamples.d.ts +1 -1
  48. package/lib/typescript/modules.d.ts +2 -2
  49. package/lib/typescript/specs/CategoryTypeModule.nitro.d.ts +3 -3
  50. package/lib/typescript/specs/CoreModule.nitro.d.ts +15 -0
  51. package/lib/typescript/specs/QuantityTypeModule.nitro.d.ts +20 -9
  52. package/lib/typescript/type-tests/generated-typing.d.ts +1 -0
  53. package/lib/typescript/types/CategoryType.d.ts +10 -104
  54. package/lib/typescript/types/CategoryTypeIdentifier.d.ts +1 -61
  55. package/lib/typescript/types/CorrelationType.d.ts +8 -2
  56. package/lib/typescript/types/ElectrocardiogramSample.d.ts +8 -1
  57. package/lib/typescript/types/HeartbeatSeries.d.ts +8 -1
  58. package/lib/typescript/types/InterfaceVerification.d.ts +14 -1
  59. package/lib/typescript/types/Medication.d.ts +10 -0
  60. package/lib/typescript/types/MetadataEnums.d.ts +1 -0
  61. package/lib/typescript/types/QuantitySample.d.ts +9 -1
  62. package/lib/typescript/types/QuantityType.d.ts +14 -18
  63. package/lib/typescript/types/QuantityTypeIdentifier.d.ts +1 -671
  64. package/lib/typescript/types/QueryOptions.d.ts +8 -4
  65. package/lib/typescript/types/Shared.d.ts +12 -41
  66. package/lib/typescript/types/StateOfMind.d.ts +8 -1
  67. package/lib/typescript/types/Subscriptions.d.ts +11 -11
  68. package/lib/typescript/types/WeatherCondition.d.ts +1 -30
  69. package/lib/typescript/types/Workouts.d.ts +20 -104
  70. package/lib/typescript/types/index.d.ts +2 -0
  71. package/lib/typescript/utils/getMostRecentQuantitySample.d.ts +2 -1
  72. package/lib/typescript/utils/getMostRecentWorkout.d.ts +2 -1
  73. package/lib/typescript/utils/getPreferredUnit.d.ts +2 -1
  74. package/lib/typescript/utils/getQuantitySampleById.d.ts +2 -1
  75. package/lib/typescript/utils/subscribeToQuantitySamples.d.ts +1 -1
  76. package/nitrogen/generated/ios/ReactNativeHealthkit-Swift-Cxx-Bridge.hpp +55 -109
  77. package/nitrogen/generated/ios/ReactNativeHealthkit-Swift-Cxx-Umbrella.hpp +12 -18
  78. package/nitrogen/generated/ios/c++/HybridCategoryTypeModuleSpecSwift.hpp +5 -14
  79. package/nitrogen/generated/ios/c++/HybridCoreModuleSpecSwift.hpp +18 -2
  80. package/nitrogen/generated/ios/c++/HybridCorrelationTypeModuleSpecSwift.hpp +1 -13
  81. package/nitrogen/generated/ios/c++/HybridElectrocardiogramModuleSpecSwift.hpp +1 -13
  82. package/nitrogen/generated/ios/c++/HybridHeartbeatSeriesModuleSpecSwift.hpp +2 -14
  83. package/nitrogen/generated/ios/c++/HybridMedicationModuleSpecSwift.hpp +1 -13
  84. package/nitrogen/generated/ios/c++/HybridQuantityTypeModuleSpecSwift.hpp +19 -28
  85. package/nitrogen/generated/ios/c++/HybridStateOfMindModuleSpecSwift.hpp +2 -14
  86. package/nitrogen/generated/ios/c++/HybridWorkoutProxySpecSwift.hpp +3 -116
  87. package/nitrogen/generated/ios/swift/CategorySample.swift +4 -329
  88. package/nitrogen/generated/ios/swift/CategoryTypeIdentifier.swift +112 -108
  89. package/nitrogen/generated/ios/swift/CategoryTypeIdentifierWriteable.swift +292 -0
  90. package/nitrogen/generated/ios/swift/CorrelationSample.swift +4 -347
  91. package/nitrogen/generated/ios/swift/ElectrocardiogramSample.swift +4 -329
  92. package/nitrogen/generated/ios/swift/FilterForWorkouts.swift +30 -30
  93. package/nitrogen/generated/ios/swift/FilterForWorkoutsBase.swift +30 -30
  94. package/nitrogen/generated/ios/swift/GeneralForm.swift +4 -4
  95. package/nitrogen/generated/ios/swift/HeartbeatSeriesSample.swift +4 -329
  96. package/nitrogen/generated/ios/swift/HybridCategoryTypeModuleSpec.swift +1 -1
  97. package/nitrogen/generated/ios/swift/HybridCategoryTypeModuleSpec_cxx.swift +1 -1
  98. package/nitrogen/generated/ios/swift/HybridCoreModuleSpec.swift +2 -0
  99. package/nitrogen/generated/ios/swift/HybridCoreModuleSpec_cxx.swift +38 -0
  100. package/nitrogen/generated/ios/swift/HybridQuantityTypeModuleSpec.swift +6 -6
  101. package/nitrogen/generated/ios/swift/HybridQuantityTypeModuleSpec_cxx.swift +6 -6
  102. package/nitrogen/generated/ios/swift/HybridWorkoutProxySpec.swift +1 -27
  103. package/nitrogen/generated/ios/swift/HybridWorkoutProxySpec_cxx.swift +2 -340
  104. package/nitrogen/generated/ios/swift/MedicationDoseEvent.swift +4 -329
  105. package/nitrogen/generated/ios/swift/ObjectTypeIdentifier.swift +492 -492
  106. package/nitrogen/generated/ios/swift/QuantitySample.swift +4 -329
  107. package/nitrogen/generated/ios/swift/QuantityTypeIdentifier.swift +380 -384
  108. package/nitrogen/generated/ios/swift/QuantityTypeIdentifierWriteable.swift +372 -376
  109. package/nitrogen/generated/ios/swift/{QueryOptionsWithAnchorAndUnit.swift → QueryOptionsWithAnchorAndStringUnit.swift} +5 -5
  110. package/nitrogen/generated/ios/swift/{QueryOptionsWithSortOrderAndUnit.swift → QueryOptionsWithSortOrderAndStringUnit.swift} +5 -5
  111. package/nitrogen/generated/ios/swift/QueryStatisticsResponseFromSingleSource.swift +37 -37
  112. package/nitrogen/generated/ios/swift/SampleTypeIdentifier.swift +492 -492
  113. package/nitrogen/generated/ios/swift/SampleTypeIdentifierWriteable.swift +482 -486
  114. package/nitrogen/generated/ios/swift/StateOfMindSample.swift +4 -329
  115. package/nitrogen/generated/ios/swift/{StatisticsQueryOptions.swift → StatisticsQueryOptionsWithStringUnit.swift} +5 -5
  116. package/nitrogen/generated/ios/swift/WorkoutEvent.swift +20 -2
  117. package/nitrogen/generated/ios/swift/WorkoutSample.swift +4 -402
  118. package/nitrogen/generated/shared/c++/CategorySample.hpp +8 -100
  119. package/nitrogen/generated/shared/c++/CategoryTypeIdentifier.hpp +153 -149
  120. package/nitrogen/generated/shared/c++/CategoryTypeIdentifierWriteable.hpp +328 -0
  121. package/nitrogen/generated/shared/c++/CorrelationSample.hpp +9 -105
  122. package/nitrogen/generated/shared/c++/ElectrocardiogramSample.hpp +7 -99
  123. package/nitrogen/generated/shared/c++/FilterForWorkouts.hpp +13 -13
  124. package/nitrogen/generated/shared/c++/FilterForWorkoutsBase.hpp +13 -13
  125. package/nitrogen/generated/shared/c++/GeneralForm.hpp +7 -7
  126. package/nitrogen/generated/shared/c++/HeartbeatSeriesSample.hpp +8 -100
  127. package/nitrogen/generated/shared/c++/HybridCategoryTypeModuleSpec.hpp +5 -2
  128. package/nitrogen/generated/shared/c++/HybridCoreModuleSpec.cpp +2 -0
  129. package/nitrogen/generated/shared/c++/HybridCoreModuleSpec.hpp +4 -2
  130. package/nitrogen/generated/shared/c++/HybridQuantityTypeModuleSpec.hpp +15 -15
  131. package/nitrogen/generated/shared/c++/HybridWorkoutProxySpec.cpp +1 -27
  132. package/nitrogen/generated/shared/c++/HybridWorkoutProxySpec.hpp +2 -37
  133. package/nitrogen/generated/shared/c++/MedicationDoseEvent.hpp +7 -99
  134. package/nitrogen/generated/shared/c++/ObjectTypeIdentifier.hpp +565 -565
  135. package/nitrogen/generated/shared/c++/QuantitySample.hpp +8 -100
  136. package/nitrogen/generated/shared/c++/QuantityTypeIdentifier.hpp +407 -411
  137. package/nitrogen/generated/shared/c++/QuantityTypeIdentifierWriteable.hpp +398 -402
  138. package/nitrogen/generated/shared/c++/{QueryOptionsWithAnchorAndUnit.hpp → QueryOptionsWithAnchorAndStringUnit.hpp} +11 -11
  139. package/nitrogen/generated/shared/c++/{QueryOptionsWithSortOrderAndUnit.hpp → QueryOptionsWithSortOrderAndStringUnit.hpp} +11 -11
  140. package/nitrogen/generated/shared/c++/QueryStatisticsResponseFromSingleSource.hpp +12 -12
  141. package/nitrogen/generated/shared/c++/SampleTypeIdentifier.hpp +559 -559
  142. package/nitrogen/generated/shared/c++/SampleTypeIdentifierWriteable.hpp +541 -545
  143. package/nitrogen/generated/shared/c++/StateOfMindSample.hpp +8 -100
  144. package/nitrogen/generated/shared/c++/{StatisticsQueryOptions.hpp → StatisticsQueryOptionsWithStringUnit.hpp} +11 -11
  145. package/nitrogen/generated/shared/c++/WorkoutEvent.hpp +8 -2
  146. package/nitrogen/generated/shared/c++/WorkoutSample.hpp +7 -120
  147. package/package.json +5 -2
  148. package/src/generated/healthkit-schema.json +3680 -0
  149. package/src/generated/healthkit.generated.ts +1307 -0
  150. package/src/healthkit.ios.ts +225 -19
  151. package/src/healthkit.ts +181 -55
  152. package/src/hooks/useMostRecentQuantitySample.ts +6 -5
  153. package/src/hooks/useMostRecentWorkout.ts +2 -2
  154. package/src/hooks/useQuantitySampleById.ts +6 -5
  155. package/src/hooks/useStatisticsForQuantity.ts +2 -1
  156. package/src/hooks/useSubscribeToQuantitySamples.ts +1 -1
  157. package/src/modules.ts +7 -2
  158. package/src/specs/CategoryTypeModule.nitro.ts +8 -5
  159. package/src/specs/CoreModule.nitro.ts +20 -0
  160. package/src/specs/QuantityTypeModule.nitro.ts +81 -7
  161. package/src/test-setup.ts +2 -0
  162. package/src/type-tests/generated-typing.ts +133 -0
  163. package/src/types/CategoryType.ts +52 -148
  164. package/src/types/CategoryTypeIdentifier.ts +5 -134
  165. package/src/types/CorrelationType.ts +13 -3
  166. package/src/types/ElectrocardiogramSample.ts +13 -1
  167. package/src/types/HeartbeatSeries.ts +13 -1
  168. package/src/types/InterfaceVerification.ts +38 -1
  169. package/src/types/Medication.ts +19 -0
  170. package/src/types/MetadataEnums.ts +15 -0
  171. package/src/types/QuantitySample.ts +14 -2
  172. package/src/types/QuantityType.ts +22 -122
  173. package/src/types/QuantityTypeIdentifier.ts +5 -772
  174. package/src/types/QueryOptions.ts +11 -4
  175. package/src/types/Shared.ts +22 -49
  176. package/src/types/StateOfMind.ts +13 -1
  177. package/src/types/Subscriptions.ts +19 -13
  178. package/src/types/WeatherCondition.ts +1 -31
  179. package/src/types/Workouts.ts +46 -108
  180. package/src/types/index.ts +2 -0
  181. package/src/utils/getMostRecentQuantitySample.ts +4 -3
  182. package/src/utils/getMostRecentWorkout.ts +5 -2
  183. package/src/utils/getPreferredUnit.ts +5 -4
  184. package/src/utils/getQuantitySampleById.ts +4 -3
  185. package/src/utils/subscribeToQuantitySamples.ts +5 -3
  186. package/nitrogen/generated/ios/swift/HeartRateMotionContext.swift +0 -44
  187. package/nitrogen/generated/ios/swift/InsulinDeliveryReason.swift +0 -40
  188. package/nitrogen/generated/ios/swift/WeatherCondition.swift +0 -144
  189. package/nitrogen/generated/shared/c++/HeartRateMotionContext.hpp +0 -67
  190. package/nitrogen/generated/shared/c++/InsulinDeliveryReason.hpp +0 -62
  191. package/nitrogen/generated/shared/c++/WeatherCondition.hpp +0 -88
@@ -1,671 +1 @@
1
- /**
2
- * Represents a quantity type identifier.
3
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifier Apple Docs HKQuantityTypeIdentifier}
4
- */
5
- export type QuantityTypeIdentifierReadOnly =
6
- /**
7
- * Walking Heart Rate Average
8
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingheartrateaverage Apple Docs HKQuantityTypeIdentifierWalkingHeartRateAverage}
9
- * @since iOS 11.0
10
- */
11
- 'HKQuantityTypeIdentifierWalkingHeartRateAverage'
12
- /**
13
- * Atrial Fibrillation Burden
14
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieratrialfibrillationburden Apple Docs HKQuantityTypeIdentifierAtrialFibrillationBurden}
15
- * @since iOS 16
16
- */
17
- | 'HKQuantityTypeIdentifierAtrialFibrillationBurden'
18
- /**
19
- * Apple Exercise Time
20
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierappleexercisetime Apple Docs HKQuantityTypeIdentifierAppleExerciseTime}
21
- */
22
- | 'HKQuantityTypeIdentifierAppleExerciseTime'
23
- /**
24
- * Apple Stand Time
25
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplestandtime Apple Docs HKQuantityTypeIdentifierAppleStandTime}
26
- */
27
- | 'HKQuantityTypeIdentifierAppleStandTime'
28
- /**
29
- * Apple Walking Steadiness
30
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplewalkingsteadiness Apple Docs HKQuantityTypeIdentifierAppleWalkingSteadiness}
31
- * @since iOS 15
32
- */
33
- | 'HKQuantityTypeIdentifierAppleWalkingSteadiness';
34
- /**
35
- * Represents a quantity type identifier.
36
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifier Apple Docs HKQuantityTypeIdentifier}
37
- */
38
- export type QuantityTypeIdentifierWriteable =
39
- /**
40
- * Body Mass Index
41
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodymassindex Apple Docs HKQuantityTypeIdentifierBodyMassIndex}
42
- */
43
- 'HKQuantityTypeIdentifierBodyMassIndex'
44
- /**
45
- * Body Fat Percentage
46
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodyfatpercentage Apple Docs HKQuantityTypeIdentifierBodyFatPercentage}
47
- */
48
- | 'HKQuantityTypeIdentifierBodyFatPercentage'
49
- /**
50
- * Height
51
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheight Apple Docs HKQuantityTypeIdentifierHeight}
52
- */
53
- | 'HKQuantityTypeIdentifierHeight'
54
- /**
55
- * Body Mass
56
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodymass Apple Docs HKQuantityTypeIdentifierBodyMass}
57
- */
58
- | 'HKQuantityTypeIdentifierBodyMass'
59
- /**
60
- * Lean Body Mass
61
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierleanbodymass Apple Docs HKQuantityTypeIdentifierLeanBodyMass}
62
- */
63
- | 'HKQuantityTypeIdentifierLeanBodyMass'
64
- /**
65
- * Waist Circumference
66
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwaistcircumference Apple Docs HKQuantityTypeIdentifierWaistCircumference}
67
- */
68
- | 'HKQuantityTypeIdentifierWaistCircumference'
69
- /**
70
- * Step Count
71
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierstepcount Apple Docs HKQuantityTypeIdentifierStepCount}
72
- */
73
- | 'HKQuantityTypeIdentifierStepCount'
74
- /**
75
- * Distance Walking Running
76
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancewalkingrunning Apple Docs HKQuantityTypeIdentifierDistanceWalkingRunning}
77
- */
78
- | 'HKQuantityTypeIdentifierDistanceWalkingRunning'
79
- /**
80
- * Distance Cycling
81
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancecycling Apple Docs HKQuantityTypeIdentifierDistanceCycling}
82
- */
83
- | 'HKQuantityTypeIdentifierDistanceCycling'
84
- /**
85
- * Distance Wheelchair
86
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancewheelchair Apple Docs HKQuantityTypeIdentifierDistanceWheelchair}
87
- */
88
- | 'HKQuantityTypeIdentifierDistanceWheelchair'
89
- /**
90
- * Basal Energy Burned
91
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbasalenergyburned Apple Docs HKQuantityTypeIdentifierBasalEnergyBurned}
92
- */
93
- | 'HKQuantityTypeIdentifierBasalEnergyBurned'
94
- /**
95
- * Active Energy Burned
96
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieractiveenergyburned Apple Docs HKQuantityTypeIdentifierActiveEnergyBurned}
97
- */
98
- | 'HKQuantityTypeIdentifierActiveEnergyBurned'
99
- /**
100
- * Flights Climbed
101
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierflightsclimbed Apple Docs HKQuantityTypeIdentifierFlightsClimbed}
102
- */
103
- | 'HKQuantityTypeIdentifierFlightsClimbed'
104
- /**
105
- * Nike Fuel
106
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiernikefuel Apple Docs HKQuantityTypeIdentifierNikeFuel}
107
- */
108
- | 'HKQuantityTypeIdentifierNikeFuel'
109
- /**
110
- * Push Count
111
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierpushcount Apple Docs HKQuantityTypeIdentifierPushCount}
112
- */
113
- | 'HKQuantityTypeIdentifierPushCount'
114
- /**
115
- * Distance Swimming
116
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistanceswimming Apple Docs HKQuantityTypeIdentifierDistanceSwimming}
117
- */
118
- | 'HKQuantityTypeIdentifierDistanceSwimming'
119
- /**
120
- * Swimming Stroke Count
121
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierswimmingstrokecount Apple Docs HKQuantityTypeIdentifierSwimmingStrokeCount}
122
- */
123
- | 'HKQuantityTypeIdentifierSwimmingStrokeCount'
124
- /**
125
- * VO2 Max
126
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiervo2max Apple Docs HKQuantityTypeIdentifierVO2Max}
127
- */
128
- | 'HKQuantityTypeIdentifierVO2Max'
129
- /**
130
- * Distance Downhill Snow Sports
131
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdistancedownhillsnowsports Apple Docs HKQuantityTypeIdentifierDistanceDownhillSnowSports}
132
- */
133
- | 'HKQuantityTypeIdentifierDistanceDownhillSnowSports'
134
- /**
135
- * Heart Rate
136
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheartrate Apple Docs HKQuantityTypeIdentifierHeartRate}
137
- */
138
- | 'HKQuantityTypeIdentifierHeartRate'
139
- /**
140
- * Body Temperature
141
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbodytemperature Apple Docs HKQuantityTypeIdentifierBodyTemperature}
142
- */
143
- | 'HKQuantityTypeIdentifierBodyTemperature'
144
- /**
145
- * Basal Body Temperature
146
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbasalbodytemperature Apple Docs HKQuantityTypeIdentifierBasalBodyTemperature}
147
- */
148
- | 'HKQuantityTypeIdentifierBasalBodyTemperature'
149
- /**
150
- * Blood Pressure Systolic
151
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodpressuresystolic Apple Docs HKQuantityTypeIdentifierBloodPressureSystolic}
152
- */
153
- | 'HKQuantityTypeIdentifierBloodPressureSystolic'
154
- /**
155
- * Blood Pressure Diastolic
156
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodpressurediastolic Apple Docs HKQuantityTypeIdentifierBloodPressureDiastolic}
157
- */
158
- | 'HKQuantityTypeIdentifierBloodPressureDiastolic'
159
- /**
160
- * Respiratory Rate
161
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrespiratoryrate Apple Docs HKQuantityTypeIdentifierRespiratoryRate}
162
- */
163
- | 'HKQuantityTypeIdentifierRespiratoryRate'
164
- /**
165
- * Resting Heart Rate
166
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrestingheartrate Apple Docs HKQuantityTypeIdentifierRestingHeartRate}
167
- */
168
- | 'HKQuantityTypeIdentifierRestingHeartRate'
169
- /**
170
- * Heart Rate Variability SDNN
171
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheartratevariabilitysdnn Apple Docs HKQuantityTypeIdentifierHeartRateVariabilitySDNN}
172
- * @since iOS 11.0
173
- */
174
- | 'HKQuantityTypeIdentifierHeartRateVariabilitySDNN'
175
- /**
176
- * Oxygen Saturation
177
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieroxygensaturation Apple Docs HKQuantityTypeIdentifierOxygenSaturation}
178
- * @since iOS 8.0
179
- */
180
- | 'HKQuantityTypeIdentifierOxygenSaturation'
181
- /**
182
- * Peripheral Perfusion Index
183
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierperipheralperfusionindex Apple Docs HKQuantityTypeIdentifierPeripheralPerfusionIndex}
184
- * @since iOS 8.0
185
- */
186
- | 'HKQuantityTypeIdentifierPeripheralPerfusionIndex'
187
- /**
188
- * Blood Glucose
189
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodglucose Apple Docs HKQuantityTypeIdentifierBloodGlucose}
190
- */
191
- | 'HKQuantityTypeIdentifierBloodGlucose'
192
- /**
193
- * Blood Ketones
194
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodketones Apple Docs HKQuantityTypeIdentifierBloodKetones}
195
- * @since iOS 8.0
196
- */
197
- | 'HKQuantityTypeIdentifierBloodKetones'
198
- /**
199
- * Number Of Times Fallen
200
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiernumberoftimesfallen Apple Docs HKQuantityTypeIdentifierNumberOfTimesFallen}
201
- */
202
- | 'HKQuantityTypeIdentifierNumberOfTimesFallen'
203
- /**
204
- * Electrodermal Activity
205
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierelectrodermalactivity Apple Docs HKQuantityTypeIdentifierElectrodermalActivity}
206
- */
207
- | 'HKQuantityTypeIdentifierElectrodermalActivity'
208
- /**
209
- * Inhaler Usage
210
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierinhalerusage Apple Docs HKQuantityTypeIdentifierInhalerUsage}
211
- * @since iOS 8
212
- */
213
- | 'HKQuantityTypeIdentifierInhalerUsage'
214
- /**
215
- * Insulin Delivery
216
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierinsulindelivery Apple Docs HKQuantityTypeIdentifierInsulinDelivery}
217
- * @since iOS 11
218
- */
219
- | 'HKQuantityTypeIdentifierInsulinDelivery'
220
- /**
221
- * Blood Alcohol Content
222
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierbloodalcoholcontent Apple Docs HKQuantityTypeIdentifierBloodAlcoholContent}
223
- * @since iOS 8
224
- */
225
- | 'HKQuantityTypeIdentifierBloodAlcoholContent'
226
- /**
227
- * Forced Vital Capacity
228
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierforcedvitalcapacity Apple Docs HKQuantityTypeIdentifierForcedVitalCapacity}
229
- */
230
- | 'HKQuantityTypeIdentifierForcedVitalCapacity'
231
- /**
232
- * Forced Expiratory Volume1
233
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierforcedexpiratoryvolume1 Apple Docs HKQuantityTypeIdentifierForcedExpiratoryVolume1}
234
- * @since iOS 8
235
- */
236
- | 'HKQuantityTypeIdentifierForcedExpiratoryVolume1'
237
- /**
238
- * Peak Expiratory Flow Rate
239
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierpeakexpiratoryflowrate Apple Docs HKQuantityTypeIdentifierPeakExpiratoryFlowRate}
240
- * @since iOS 8
241
- */
242
- | 'HKQuantityTypeIdentifierPeakExpiratoryFlowRate'
243
- /**
244
- * Environmental Audio Exposure
245
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierenvironmentalaudioexposure Apple Docs HKQuantityTypeIdentifierEnvironmentalAudioExposure}
246
- * @since iOS 13
247
- */
248
- | 'HKQuantityTypeIdentifierEnvironmentalAudioExposure'
249
- /**
250
- * Headphone Audio Exposure
251
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheadphoneaudioexposure Apple Docs HKQuantityTypeIdentifierHeadphoneAudioExposure}
252
- * @since iOS 13
253
- */
254
- | 'HKQuantityTypeIdentifierHeadphoneAudioExposure'
255
- /**
256
- * Dietary Fat Total
257
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfattotal Apple Docs HKQuantityTypeIdentifierDietaryFatTotal}
258
- * @since iOS 8
259
- */
260
- | 'HKQuantityTypeIdentifierDietaryFatTotal'
261
- /**
262
- * Dietary Fat Polyunsaturated
263
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfatpolyunsaturated Apple Docs HKQuantityTypeIdentifierDietaryFatPolyunsaturated}
264
- */
265
- | 'HKQuantityTypeIdentifierDietaryFatPolyunsaturated'
266
- /**
267
- * Dietary Fat Monounsaturated
268
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfatmonounsaturated Apple Docs HKQuantityTypeIdentifierDietaryFatMonounsaturated}
269
- */
270
- | 'HKQuantityTypeIdentifierDietaryFatMonounsaturated'
271
- /**
272
- * Dietary Fat Saturated
273
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfatsaturated Apple Docs HKQuantityTypeIdentifierDietaryFatSaturated}
274
- */
275
- | 'HKQuantityTypeIdentifierDietaryFatSaturated'
276
- /**
277
- * Dietary Cholesterol
278
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycholesterol Apple Docs HKQuantityTypeIdentifierDietaryCholesterol}
279
- */
280
- | 'HKQuantityTypeIdentifierDietaryCholesterol'
281
- /**
282
- * Dietary Sodium
283
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarysodium Apple Docs HKQuantityTypeIdentifierDietarySodium}
284
- */
285
- | 'HKQuantityTypeIdentifierDietarySodium'
286
- /**
287
- * Dietary Carbohydrates
288
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycarbohydrates Apple Docs HKQuantityTypeIdentifierDietaryCarbohydrates}
289
- */
290
- | 'HKQuantityTypeIdentifierDietaryCarbohydrates'
291
- /**
292
- * Dietary Fiber
293
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfiber Apple Docs HKQuantityTypeIdentifierDietaryFiber}
294
- */
295
- | 'HKQuantityTypeIdentifierDietaryFiber'
296
- /**
297
- * Dietary Sugar
298
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarysugar Apple Docs HKQuantityTypeIdentifierDietarySugar}
299
- */
300
- | 'HKQuantityTypeIdentifierDietarySugar'
301
- /**
302
- * Dietary Energy Consumed
303
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryenergyconsumed Apple Docs HKQuantityTypeIdentifierDietaryEnergyConsumed}
304
- */
305
- | 'HKQuantityTypeIdentifierDietaryEnergyConsumed'
306
- /**
307
- * Dietary Protein
308
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryprotein Apple Docs HKQuantityTypeIdentifierDietaryProtein}
309
- */
310
- | 'HKQuantityTypeIdentifierDietaryProtein'
311
- /**
312
- * Dietary Vitamin A
313
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamina Apple Docs HKQuantityTypeIdentifierDietaryVitaminA}
314
- */
315
- | 'HKQuantityTypeIdentifierDietaryVitaminA'
316
- /**
317
- * Dietary Vitamin B6
318
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitaminb6 Apple Docs HKQuantityTypeIdentifierDietaryVitaminB6}
319
- */
320
- | 'HKQuantityTypeIdentifierDietaryVitaminB6'
321
- /**
322
- * Dietary Vitamin B12
323
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitaminb12 Apple Docs HKQuantityTypeIdentifierDietaryVitaminB12}
324
- */
325
- | 'HKQuantityTypeIdentifierDietaryVitaminB12'
326
- /**
327
- * Dietary Vitamin C
328
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitaminc Apple Docs HKQuantityTypeIdentifierDietaryVitaminC}
329
- */
330
- | 'HKQuantityTypeIdentifierDietaryVitaminC'
331
- /**
332
- * Dietary Vitamin D
333
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamind Apple Docs HKQuantityTypeIdentifierDietaryVitaminD}
334
- */
335
- | 'HKQuantityTypeIdentifierDietaryVitaminD'
336
- /**
337
- * Dietary Vitamin E
338
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamine Apple Docs HKQuantityTypeIdentifierDietaryVitaminE}
339
- */
340
- | 'HKQuantityTypeIdentifierDietaryVitaminE'
341
- /**
342
- * Dietary Vitamin K
343
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryvitamink Apple Docs HKQuantityTypeIdentifierDietaryVitaminK}
344
- */
345
- | 'HKQuantityTypeIdentifierDietaryVitaminK'
346
- /**
347
- * Dietary Calcium
348
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycalcium Apple Docs HKQuantityTypeIdentifierDietaryCalcium}
349
- */
350
- | 'HKQuantityTypeIdentifierDietaryCalcium'
351
- /**
352
- * Dietary Iron
353
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryiron Apple Docs HKQuantityTypeIdentifierDietaryIron}
354
- */
355
- | 'HKQuantityTypeIdentifierDietaryIron'
356
- /**
357
- * Dietary Thiamin
358
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarythiamin Apple Docs HKQuantityTypeIdentifierDietaryThiamin}
359
- */
360
- | 'HKQuantityTypeIdentifierDietaryThiamin'
361
- /**
362
- * Dietary Riboflavin
363
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryriboflavin Apple Docs HKQuantityTypeIdentifierDietaryRiboflavin}
364
- */
365
- | 'HKQuantityTypeIdentifierDietaryRiboflavin'
366
- /**
367
- * Dietary Niacin
368
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryniacin Apple Docs HKQuantityTypeIdentifierDietaryNiacin}
369
- */
370
- | 'HKQuantityTypeIdentifierDietaryNiacin'
371
- /**
372
- * Dietary Folate
373
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryfolate Apple Docs HKQuantityTypeIdentifierDietaryFolate}
374
- */
375
- | 'HKQuantityTypeIdentifierDietaryFolate'
376
- /**
377
- * Dietary Biotin
378
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarybiotin Apple Docs HKQuantityTypeIdentifierDietaryBiotin}
379
- */
380
- | 'HKQuantityTypeIdentifierDietaryBiotin'
381
- /**
382
- * Dietary Pantothenic Acid
383
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarypantothenicacid Apple Docs HKQuantityTypeIdentifierDietaryPantothenicAcid}
384
- */
385
- | 'HKQuantityTypeIdentifierDietaryPantothenicAcid'
386
- /**
387
- * Dietary Phosphorus
388
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryphosphorus Apple Docs HKQuantityTypeIdentifierDietaryPhosphorus}
389
- */
390
- | 'HKQuantityTypeIdentifierDietaryPhosphorus'
391
- /**
392
- * Dietary Iodine
393
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryiodine Apple Docs HKQuantityTypeIdentifierDietaryIodine}
394
- */
395
- | 'HKQuantityTypeIdentifierDietaryIodine'
396
- /**
397
- * Dietary Magnesium
398
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarymagnesium Apple Docs HKQuantityTypeIdentifierDietaryMagnesium}
399
- */
400
- | 'HKQuantityTypeIdentifierDietaryMagnesium'
401
- /**
402
- * Dietary Zinc
403
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryzinc Apple Docs HKQuantityTypeIdentifierDietaryZinc}
404
- */
405
- | 'HKQuantityTypeIdentifierDietaryZinc'
406
- /**
407
- * Dietary Selenium
408
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietaryselenium Apple Docs HKQuantityTypeIdentifierDietarySelenium}
409
- */
410
- | 'HKQuantityTypeIdentifierDietarySelenium'
411
- /**
412
- * Dietary Copper
413
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycopper Apple Docs HKQuantityTypeIdentifierDietaryCopper}
414
- */
415
- | 'HKQuantityTypeIdentifierDietaryCopper'
416
- /**
417
- * Dietary Manganese
418
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarymanganese Apple Docs HKQuantityTypeIdentifierDietaryManganese}
419
- */
420
- | 'HKQuantityTypeIdentifierDietaryManganese'
421
- /**
422
- * Dietary Chromium
423
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarychromium Apple Docs HKQuantityTypeIdentifierDietaryChromium}
424
- */
425
- | 'HKQuantityTypeIdentifierDietaryChromium'
426
- /**
427
- * Dietary Molybdenum
428
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarymolybdenum Apple Docs HKQuantityTypeIdentifierDietaryMolybdenum}
429
- */
430
- | 'HKQuantityTypeIdentifierDietaryMolybdenum'
431
- /**
432
- * Dietary Chloride
433
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarychloride Apple Docs HKQuantityTypeIdentifierDietaryChloride}
434
- * @since iOS 8
435
- */
436
- | 'HKQuantityTypeIdentifierDietaryChloride'
437
- /**
438
- * Dietary Potassium
439
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarypotassium Apple Docs HKQuantityTypeIdentifierDietaryPotassium}
440
- * @since iOS 8
441
- */
442
- | 'HKQuantityTypeIdentifierDietaryPotassium'
443
- /**
444
- * Dietary Caffeine
445
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarycaffeine Apple Docs HKQuantityTypeIdentifierDietaryCaffeine}
446
- * @since iOS 8
447
- */
448
- | 'HKQuantityTypeIdentifierDietaryCaffeine'
449
- /**
450
- * Dietary Water
451
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierdietarywater Apple Docs HKQuantityTypeIdentifierDietaryWater}
452
- * @since iOS 9
453
- */
454
- | 'HKQuantityTypeIdentifierDietaryWater'
455
- /**
456
- * Six Minute Walk Test Distance
457
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiersixminutewalktestdistance Apple Docs HKQuantityTypeIdentifierSixMinuteWalkTestDistance}
458
- * @since iOS 14
459
- */
460
- | 'HKQuantityTypeIdentifierSixMinuteWalkTestDistance'
461
- /**
462
- * Walking Speed
463
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingspeed Apple Docs HKQuantityTypeIdentifierWalkingSpeed}
464
- * @since iOS 14
465
- */
466
- | 'HKQuantityTypeIdentifierWalkingSpeed'
467
- /**
468
- * Walking Step Length
469
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingsteplength Apple Docs HKQuantityTypeIdentifierWalkingStepLength}
470
- * @since iOS 14
471
- */
472
- | 'HKQuantityTypeIdentifierWalkingStepLength'
473
- /**
474
- * Walking Asymmetry Percentage
475
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingasymmetrypercentage Apple Docs HKQuantityTypeIdentifierWalkingAsymmetryPercentage}
476
- * @since iOS 14
477
- */
478
- | 'HKQuantityTypeIdentifierWalkingAsymmetryPercentage'
479
- /**
480
- * Walking Double Support Percentage
481
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwalkingdoublesupportpercentage Apple Docs HKQuantityTypeIdentifierWalkingDoubleSupportPercentage}
482
- * @since iOS 14
483
- */
484
- | 'HKQuantityTypeIdentifierWalkingDoubleSupportPercentage'
485
- /**
486
- * Stair Ascent Speed
487
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierstairascentspeed Apple Docs HKQuantityTypeIdentifierStairAscentSpeed}
488
- * @since iOS 14
489
- */
490
- | 'HKQuantityTypeIdentifierStairAscentSpeed'
491
- /**
492
- * Stair Descent Speed
493
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierstairdescentspeed Apple Docs HKQuantityTypeIdentifierStairDescentSpeed}
494
- * @since iOS 14
495
- */
496
- | 'HKQuantityTypeIdentifierStairDescentSpeed'
497
- /**
498
- * UV Exposure
499
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifieruvexposure Apple Docs HKQuantityTypeIdentifierUVExposure}
500
- * @since iOS 9
501
- */
502
- | 'HKQuantityTypeIdentifierUVExposure'
503
- /**
504
- * Apple Move Time
505
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplemovetime Apple Docs HKQuantityTypeIdentifierAppleMoveTime}
506
- * @since iOS 14.5
507
- */
508
- | 'HKQuantityTypeIdentifierAppleMoveTime'
509
- /**
510
- * Number Of Alcoholic Beverages
511
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiernumberofalcoholicbeverages Apple Docs HKQuantityTypeIdentifierNumberOfAlcoholicBeverages}
512
- * @since iOS 15
513
- */
514
- | 'HKQuantityTypeIdentifierNumberOfAlcoholicBeverages'
515
- /**
516
- * Underwater Depth
517
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierunderwaterdepth Apple Docs HKQuantityTypeIdentifierUnderwaterDepth}
518
- * @since iOS 16
519
- */
520
- | 'HKQuantityTypeIdentifierUnderwaterDepth'
521
- /**
522
- * Water Temperature
523
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierwatertemperature Apple Docs HKQuantityTypeIdentifierWaterTemperature}
524
- * @since iOS 16
525
- */
526
- | 'HKQuantityTypeIdentifierWaterTemperature'
527
- /**
528
- * Apple Sleeping Wrist Temperature
529
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierapplesleepingwristtemperature Apple Docs HKQuantityTypeIdentifierAppleSleepingWristTemperature}
530
- * @since iOS 17
531
- */
532
- | 'HKQuantityTypeIdentifierAppleSleepingWristTemperature'
533
- /**
534
- * Apple Sleeping Breathing Disturbances
535
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifier/applesleepingbreathingdisturbances Apple Docs HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances}
536
- * @since iOS 18
537
- */
538
- | 'HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances'
539
- /**
540
- * Time In Daylight
541
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiertimeindaylight Apple Docs HKQuantityTypeIdentifierTimeInDaylight}
542
- * @since iOS 17
543
- */
544
- | 'HKQuantityTypeIdentifierTimeInDaylight'
545
- /**
546
- * Physical Effort
547
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierphysicaleffort Apple Docs HKQuantityTypeIdentifierPhysicalEffort}
548
- * @since iOS 17
549
- */
550
- | 'HKQuantityTypeIdentifierPhysicalEffort'
551
- /**
552
- * Cycling Speed
553
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingspeed Apple Docs HKQuantityTypeIdentifierCyclingSpeed}
554
- * @since iOS 17
555
- */
556
- | 'HKQuantityTypeIdentifierCyclingSpeed'
557
- /**
558
- * Cycling Power
559
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingpower Apple Docs HKQuantityTypeIdentifierCyclingPower}
560
- * @since iOS 17
561
- */
562
- | 'HKQuantityTypeIdentifierCyclingPower'
563
- /**
564
- * Cycling Functional Threshold Power
565
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingfunctionalthresholdpower Apple Docs HKQuantityTypeIdentifierCyclingFunctionalThresholdPower}
566
- * @since iOS 17
567
- */
568
- | 'HKQuantityTypeIdentifierCyclingFunctionalThresholdPower'
569
- /**
570
- * Cycling Cadence
571
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifiercyclingcadence Apple Docs HKQuantityTypeIdentifierCyclingCadence}
572
- * @since iOS 17
573
- */
574
- | 'HKQuantityTypeIdentifierCyclingCadence'
575
- /**
576
- * Environmental Sound Reduction
577
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierenvironmentalsoundreduction Apple Docs HKQuantityTypeIdentifierEnvironmentalSoundReduction}
578
- * @since iOS 16
579
- */
580
- | 'HKQuantityTypeIdentifierEnvironmentalSoundReduction'
581
- /**
582
- * Heart Rate Recovery One Minute
583
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierheartraterecoveryoneminute Apple Docs HKQuantityTypeIdentifierHeartRateRecoveryOneMinute}
584
- * @since iOS 16
585
- */
586
- | 'HKQuantityTypeIdentifierHeartRateRecoveryOneMinute'
587
- /**
588
- * Running Ground Contact Time
589
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunninggroundcontacttime Apple Docs HKQuantityTypeIdentifierRunningGroundContactTime}
590
- * @since iOS 16
591
- */
592
- | 'HKQuantityTypeIdentifierRunningGroundContactTime'
593
- /**
594
- * Running Stride Length
595
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningstridelength Apple Docs HKQuantityTypeIdentifierRunningStrideLength}
596
- * @since iOS 16
597
- */
598
- | 'HKQuantityTypeIdentifierRunningStrideLength'
599
- /**
600
- * Running Power
601
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningpower Apple Docs HKQuantityTypeIdentifierRunningPower}
602
- * @since iOS 16
603
- */
604
- | 'HKQuantityTypeIdentifierRunningPower'
605
- /**
606
- * Running Vertical Oscillation
607
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningverticaloscillation Apple Docs HKQuantityTypeIdentifierRunningVerticalOscillation}
608
- * @since iOS 16
609
- */
610
- | 'HKQuantityTypeIdentifierRunningVerticalOscillation'
611
- /**
612
- * Running Speed
613
- * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifierrunningspeed Apple Docs HKQuantityTypeIdentifierRunningSpeed}
614
- * @since iOS 16
615
- */
616
- | 'HKQuantityTypeIdentifierRunningSpeed'
617
- /**
618
- * Cross Country Skiing Speed
619
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierCrossCountrySkiingSpeed Apple Docs HKQuantityTypeIdentifierCrossCountrySkiingSpeed}
620
- * @since iOS 18
621
- */
622
- | 'HKQuantityTypeIdentifierCrossCountrySkiingSpeed'
623
- /**
624
- * Cross Country Skiing Distance
625
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierDistanceCrossCountrySkiing Apple Docs HKQuantityTypeIdentifierCrossCountrySkiingDistance}
626
- * @since iOS 18
627
- */
628
- | 'HKQuantityTypeIdentifierDistanceCrossCountrySkiing'
629
- /**
630
- * Paddle Sports Distance
631
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierDistancePaddleSports Apple Docs HKQuantityTypeIdentifierDistancePaddleSports}
632
- * @since iOS 18
633
- */
634
- | 'HKQuantityTypeIdentifierDistancePaddleSports'
635
- /**
636
- * Rowing Distance
637
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierDistanceRowing Apple Docs HKQuantityTypeIdentifierDistanceRowing}
638
- * @since iOS 18
639
- */
640
- | 'HKQuantityTypeIdentifierDistanceRowing'
641
- /**
642
- * Skating Sports Distance
643
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierDistanceSkatingSports Apple Docs HKQuantityTypeIdentifierDistanceSkatingSports}
644
- * @since iOS 18
645
- */
646
- | 'HKQuantityTypeIdentifierDistanceSkatingSports'
647
- /**
648
- * Estimated Workout Effort Score
649
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierEstimatedWorkoutEffortScore Apple Docs HKQuantityTypeIdentifierEstimatedWorkoutEffortScore}
650
- * @since iOS 18
651
- */
652
- | 'HKQuantityTypeIdentifierEstimatedWorkoutEffortScore'
653
- /**
654
- * Paddle Sports Speed
655
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierPaddleSportsSpeed Apple Docs HKQuantityTypeIdentifierPaddleSportsSpeed}
656
- * @since iOS 18
657
- */
658
- | 'HKQuantityTypeIdentifierPaddleSportsSpeed'
659
- /**
660
- * Rowing Speed
661
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierRowingSpeed Apple Docs HKQuantityTypeIdentifierRowingSpeed}
662
- * @since iOS 18
663
- */
664
- | 'HKQuantityTypeIdentifierRowingSpeed'
665
- /**
666
- * Workout Effort Score
667
- * @see {@link https://developer.apple.com/documentation/healthkit/HKQuantityTypeIdentifierWorkoutEffortScore Apple Docs HKQuantityTypeIdentifierWorkoutEffortScore}
668
- * @since iOS 18
669
- */
670
- | 'HKQuantityTypeIdentifierWorkoutEffortScore';
671
- export type QuantityTypeIdentifier = QuantityTypeIdentifierReadOnly | QuantityTypeIdentifierWriteable;
1
+ export type { QuantityTypeIdentifier, QuantityTypeIdentifierReadOnly, QuantityTypeIdentifierWriteable, } from '../generated/healthkit.generated';