@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
@@ -30,196 +30,196 @@ namespace margelo::nitro::healthkit {
30
30
  */
31
31
  enum class SampleTypeIdentifier {
32
32
  HKCATEGORYTYPEIDENTIFIERAPPLESTANDHOUR SWIFT_NAME(hkcategorytypeidentifierapplestandhour) = 0,
33
- HKCATEGORYTYPEIDENTIFIERHIGHHEARTRATEEVENT SWIFT_NAME(hkcategorytypeidentifierhighheartrateevent) = 1,
34
- HKCATEGORYTYPEIDENTIFIERLOWHEARTRATEEVENT SWIFT_NAME(hkcategorytypeidentifierlowheartrateevent) = 2,
35
- HKCATEGORYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSUREEVENT SWIFT_NAME(hkcategorytypeidentifierheadphoneaudioexposureevent) = 3,
36
- HKCATEGORYTYPEIDENTIFIERSLEEPANALYSIS SWIFT_NAME(hkcategorytypeidentifiersleepanalysis) = 4,
37
- HKCATEGORYTYPEIDENTIFIERCERVICALMUCUSQUALITY SWIFT_NAME(hkcategorytypeidentifiercervicalmucusquality) = 5,
38
- HKCATEGORYTYPEIDENTIFIEROVULATIONTESTRESULT SWIFT_NAME(hkcategorytypeidentifierovulationtestresult) = 6,
39
- HKCATEGORYTYPEIDENTIFIERMENSTRUALFLOW SWIFT_NAME(hkcategorytypeidentifiermenstrualflow) = 7,
40
- HKCATEGORYTYPEIDENTIFIERINTERMENSTRUALBLEEDING SWIFT_NAME(hkcategorytypeidentifierintermenstrualbleeding) = 8,
41
- HKCATEGORYTYPEIDENTIFIERSEXUALACTIVITY SWIFT_NAME(hkcategorytypeidentifiersexualactivity) = 9,
42
- HKCATEGORYTYPEIDENTIFIERMINDFULSESSION SWIFT_NAME(hkcategorytypeidentifiermindfulsession) = 10,
43
- HKCATEGORYTYPEIDENTIFIERIRREGULARHEARTRHYTHMEVENT SWIFT_NAME(hkcategorytypeidentifierirregularheartrhythmevent) = 11,
44
- HKCATEGORYTYPEIDENTIFIERAUDIOEXPOSUREEVENT SWIFT_NAME(hkcategorytypeidentifieraudioexposureevent) = 12,
45
- HKCATEGORYTYPEIDENTIFIERTOOTHBRUSHINGEVENT SWIFT_NAME(hkcategorytypeidentifiertoothbrushingevent) = 13,
46
- HKCATEGORYTYPEIDENTIFIERLOWCARDIOFITNESSEVENT SWIFT_NAME(hkcategorytypeidentifierlowcardiofitnessevent) = 14,
47
- HKCATEGORYTYPEIDENTIFIERCONTRACEPTIVE SWIFT_NAME(hkcategorytypeidentifiercontraceptive) = 15,
48
- HKCATEGORYTYPEIDENTIFIERLACTATION SWIFT_NAME(hkcategorytypeidentifierlactation) = 16,
49
- HKCATEGORYTYPEIDENTIFIERPREGNANCY SWIFT_NAME(hkcategorytypeidentifierpregnancy) = 17,
50
- HKCATEGORYTYPEIDENTIFIERPREGNANCYTESTRESULT SWIFT_NAME(hkcategorytypeidentifierpregnancytestresult) = 18,
51
- HKCATEGORYTYPEIDENTIFIERPROGESTERONETESTRESULT SWIFT_NAME(hkcategorytypeidentifierprogesteronetestresult) = 19,
52
- HKCATEGORYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSUREEVENT SWIFT_NAME(hkcategorytypeidentifierenvironmentalaudioexposureevent) = 20,
53
- HKCATEGORYTYPEIDENTIFIERAPPLEWALKINGSTEADINESSEVENT SWIFT_NAME(hkcategorytypeidentifierapplewalkingsteadinessevent) = 21,
54
- HKCATEGORYTYPEIDENTIFIERHANDWASHINGEVENT SWIFT_NAME(hkcategorytypeidentifierhandwashingevent) = 22,
55
- HKCATEGORYTYPEIDENTIFIERABDOMINALCRAMPS SWIFT_NAME(hkcategorytypeidentifierabdominalcramps) = 23,
56
- HKCATEGORYTYPEIDENTIFIERACNE SWIFT_NAME(hkcategorytypeidentifieracne) = 24,
57
- HKCATEGORYTYPEIDENTIFIERAPPETITECHANGES SWIFT_NAME(hkcategorytypeidentifierappetitechanges) = 25,
58
- HKCATEGORYTYPEIDENTIFIERBLADDERINCONTINENCE SWIFT_NAME(hkcategorytypeidentifierbladderincontinence) = 26,
59
- HKCATEGORYTYPEIDENTIFIERBLOATING SWIFT_NAME(hkcategorytypeidentifierbloating) = 27,
60
- HKCATEGORYTYPEIDENTIFIERBREASTPAIN SWIFT_NAME(hkcategorytypeidentifierbreastpain) = 28,
61
- HKCATEGORYTYPEIDENTIFIERCHESTTIGHTNESSORPAIN SWIFT_NAME(hkcategorytypeidentifierchesttightnessorpain) = 29,
62
- HKCATEGORYTYPEIDENTIFIERCHILLS SWIFT_NAME(hkcategorytypeidentifierchills) = 30,
63
- HKCATEGORYTYPEIDENTIFIERCONSTIPATION SWIFT_NAME(hkcategorytypeidentifierconstipation) = 31,
64
- HKCATEGORYTYPEIDENTIFIERCOUGHING SWIFT_NAME(hkcategorytypeidentifiercoughing) = 32,
65
- HKCATEGORYTYPEIDENTIFIERDIARRHEA SWIFT_NAME(hkcategorytypeidentifierdiarrhea) = 33,
66
- HKCATEGORYTYPEIDENTIFIERDIZZINESS SWIFT_NAME(hkcategorytypeidentifierdizziness) = 34,
67
- HKCATEGORYTYPEIDENTIFIERDRYSKIN SWIFT_NAME(hkcategorytypeidentifierdryskin) = 35,
68
- HKCATEGORYTYPEIDENTIFIERFAINTING SWIFT_NAME(hkcategorytypeidentifierfainting) = 36,
69
- HKCATEGORYTYPEIDENTIFIERFATIGUE SWIFT_NAME(hkcategorytypeidentifierfatigue) = 37,
70
- HKCATEGORYTYPEIDENTIFIERFEVER SWIFT_NAME(hkcategorytypeidentifierfever) = 38,
71
- HKCATEGORYTYPEIDENTIFIERGENERALIZEDBODYACHE SWIFT_NAME(hkcategorytypeidentifiergeneralizedbodyache) = 39,
72
- HKCATEGORYTYPEIDENTIFIERHAIRLOSS SWIFT_NAME(hkcategorytypeidentifierhairloss) = 40,
73
- HKCATEGORYTYPEIDENTIFIERHEADACHE SWIFT_NAME(hkcategorytypeidentifierheadache) = 41,
74
- HKCATEGORYTYPEIDENTIFIERHEARTBURN SWIFT_NAME(hkcategorytypeidentifierheartburn) = 42,
75
- HKCATEGORYTYPEIDENTIFIERHOTFLASHES SWIFT_NAME(hkcategorytypeidentifierhotflashes) = 43,
76
- HKCATEGORYTYPEIDENTIFIERLOSSOFSMELL SWIFT_NAME(hkcategorytypeidentifierlossofsmell) = 44,
77
- HKCATEGORYTYPEIDENTIFIERLOSSOFTASTE SWIFT_NAME(hkcategorytypeidentifierlossoftaste) = 45,
78
- HKCATEGORYTYPEIDENTIFIERLOWERBACKPAIN SWIFT_NAME(hkcategorytypeidentifierlowerbackpain) = 46,
79
- HKCATEGORYTYPEIDENTIFIERMEMORYLAPSE SWIFT_NAME(hkcategorytypeidentifiermemorylapse) = 47,
80
- HKCATEGORYTYPEIDENTIFIERMOODCHANGES SWIFT_NAME(hkcategorytypeidentifiermoodchanges) = 48,
81
- HKCATEGORYTYPEIDENTIFIERNAUSEA SWIFT_NAME(hkcategorytypeidentifiernausea) = 49,
82
- HKCATEGORYTYPEIDENTIFIERNIGHTSWEATS SWIFT_NAME(hkcategorytypeidentifiernightsweats) = 50,
83
- HKCATEGORYTYPEIDENTIFIERPELVICPAIN SWIFT_NAME(hkcategorytypeidentifierpelvicpain) = 51,
84
- HKCATEGORYTYPEIDENTIFIERRAPIDPOUNDINGORFLUTTERINGHEARTBEAT SWIFT_NAME(hkcategorytypeidentifierrapidpoundingorflutteringheartbeat) = 52,
85
- HKCATEGORYTYPEIDENTIFIERRUNNYNOSE SWIFT_NAME(hkcategorytypeidentifierrunnynose) = 53,
86
- HKCATEGORYTYPEIDENTIFIERSHORTNESSOFBREATH SWIFT_NAME(hkcategorytypeidentifiershortnessofbreath) = 54,
87
- HKCATEGORYTYPEIDENTIFIERSINUSCONGESTION SWIFT_NAME(hkcategorytypeidentifiersinuscongestion) = 55,
88
- HKCATEGORYTYPEIDENTIFIERSKIPPEDHEARTBEAT SWIFT_NAME(hkcategorytypeidentifierskippedheartbeat) = 56,
89
- HKCATEGORYTYPEIDENTIFIERSLEEPCHANGES SWIFT_NAME(hkcategorytypeidentifiersleepchanges) = 57,
90
- HKCATEGORYTYPEIDENTIFIERSORETHROAT SWIFT_NAME(hkcategorytypeidentifiersorethroat) = 58,
91
- HKCATEGORYTYPEIDENTIFIERVAGINALDRYNESS SWIFT_NAME(hkcategorytypeidentifiervaginaldryness) = 59,
92
- HKCATEGORYTYPEIDENTIFIERVOMITING SWIFT_NAME(hkcategorytypeidentifiervomiting) = 60,
93
- HKCATEGORYTYPEIDENTIFIERWHEEZING SWIFT_NAME(hkcategorytypeidentifierwheezing) = 61,
94
- HKCATEGORYTYPEIDENTIFIERBLEEDINGAFTERPREGNANCY SWIFT_NAME(hkcategorytypeidentifierbleedingafterpregnancy) = 62,
95
- HKCATEGORYTYPEIDENTIFIERBLEEDINGDURINGPREGNANCY SWIFT_NAME(hkcategorytypeidentifierbleedingduringpregnancy) = 63,
96
- HKCATEGORYTYPEIDENTIFIERINFREQUENTMENSTRUALCYCLES SWIFT_NAME(hkcategorytypeidentifierinfrequentmenstrualcycles) = 64,
97
- HKCATEGORYTYPEIDENTIFIERIRREGULARMENSTRUALCYCLES SWIFT_NAME(hkcategorytypeidentifierirregularmenstrualcycles) = 65,
98
- HKCATEGORYTYPEIDENTIFIERPERSISTENTINTERMENSTRUALBLEEDING SWIFT_NAME(hkcategorytypeidentifierpersistentintermenstrualbleeding) = 66,
99
- HKCATEGORYTYPEIDENTIFIERPROLONGEDMENSTRUALPERIODS SWIFT_NAME(hkcategorytypeidentifierprolongedmenstrualperiods) = 67,
100
- HKCATEGORYTYPEIDENTIFIERSLEEPAPNEAEVENT SWIFT_NAME(hkcategorytypeidentifiersleepapneaevent) = 68,
101
- HKCORRELATIONTYPEIDENTIFIERBLOODPRESSURE SWIFT_NAME(hkcorrelationtypeidentifierbloodpressure) = 69,
102
- HKCORRELATIONTYPEIDENTIFIERFOOD SWIFT_NAME(hkcorrelationtypeidentifierfood) = 70,
103
- HKQUANTITYTYPEIDENTIFIERWALKINGHEARTRATEAVERAGE SWIFT_NAME(hkquantitytypeidentifierwalkingheartrateaverage) = 71,
104
- HKQUANTITYTYPEIDENTIFIERATRIALFIBRILLATIONBURDEN SWIFT_NAME(hkquantitytypeidentifieratrialfibrillationburden) = 72,
105
- HKQUANTITYTYPEIDENTIFIERAPPLEEXERCISETIME SWIFT_NAME(hkquantitytypeidentifierappleexercisetime) = 73,
106
- HKQUANTITYTYPEIDENTIFIERAPPLESTANDTIME SWIFT_NAME(hkquantitytypeidentifierapplestandtime) = 74,
107
- HKQUANTITYTYPEIDENTIFIERAPPLEWALKINGSTEADINESS SWIFT_NAME(hkquantitytypeidentifierapplewalkingsteadiness) = 75,
108
- HKQUANTITYTYPEIDENTIFIERBODYMASSINDEX SWIFT_NAME(hkquantitytypeidentifierbodymassindex) = 76,
109
- HKQUANTITYTYPEIDENTIFIERBODYFATPERCENTAGE SWIFT_NAME(hkquantitytypeidentifierbodyfatpercentage) = 77,
110
- HKQUANTITYTYPEIDENTIFIERHEIGHT SWIFT_NAME(hkquantitytypeidentifierheight) = 78,
111
- HKQUANTITYTYPEIDENTIFIERBODYMASS SWIFT_NAME(hkquantitytypeidentifierbodymass) = 79,
112
- HKQUANTITYTYPEIDENTIFIERLEANBODYMASS SWIFT_NAME(hkquantitytypeidentifierleanbodymass) = 80,
113
- HKQUANTITYTYPEIDENTIFIERWAISTCIRCUMFERENCE SWIFT_NAME(hkquantitytypeidentifierwaistcircumference) = 81,
114
- HKQUANTITYTYPEIDENTIFIERSTEPCOUNT SWIFT_NAME(hkquantitytypeidentifierstepcount) = 82,
115
- HKQUANTITYTYPEIDENTIFIERDISTANCEWALKINGRUNNING SWIFT_NAME(hkquantitytypeidentifierdistancewalkingrunning) = 83,
116
- HKQUANTITYTYPEIDENTIFIERDISTANCECYCLING SWIFT_NAME(hkquantitytypeidentifierdistancecycling) = 84,
117
- HKQUANTITYTYPEIDENTIFIERDISTANCEWHEELCHAIR SWIFT_NAME(hkquantitytypeidentifierdistancewheelchair) = 85,
118
- HKQUANTITYTYPEIDENTIFIERBASALENERGYBURNED SWIFT_NAME(hkquantitytypeidentifierbasalenergyburned) = 86,
119
- HKQUANTITYTYPEIDENTIFIERACTIVEENERGYBURNED SWIFT_NAME(hkquantitytypeidentifieractiveenergyburned) = 87,
120
- HKQUANTITYTYPEIDENTIFIERFLIGHTSCLIMBED SWIFT_NAME(hkquantitytypeidentifierflightsclimbed) = 88,
121
- HKQUANTITYTYPEIDENTIFIERNIKEFUEL SWIFT_NAME(hkquantitytypeidentifiernikefuel) = 89,
122
- HKQUANTITYTYPEIDENTIFIERPUSHCOUNT SWIFT_NAME(hkquantitytypeidentifierpushcount) = 90,
123
- HKQUANTITYTYPEIDENTIFIERDISTANCESWIMMING SWIFT_NAME(hkquantitytypeidentifierdistanceswimming) = 91,
124
- HKQUANTITYTYPEIDENTIFIERSWIMMINGSTROKECOUNT SWIFT_NAME(hkquantitytypeidentifierswimmingstrokecount) = 92,
125
- HKQUANTITYTYPEIDENTIFIERVO2MAX SWIFT_NAME(hkquantitytypeidentifiervo2max) = 93,
126
- HKQUANTITYTYPEIDENTIFIERDISTANCEDOWNHILLSNOWSPORTS SWIFT_NAME(hkquantitytypeidentifierdistancedownhillsnowsports) = 94,
127
- HKQUANTITYTYPEIDENTIFIERHEARTRATE SWIFT_NAME(hkquantitytypeidentifierheartrate) = 95,
128
- HKQUANTITYTYPEIDENTIFIERBODYTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierbodytemperature) = 96,
129
- HKQUANTITYTYPEIDENTIFIERBASALBODYTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierbasalbodytemperature) = 97,
130
- HKQUANTITYTYPEIDENTIFIERBLOODPRESSURESYSTOLIC SWIFT_NAME(hkquantitytypeidentifierbloodpressuresystolic) = 98,
131
- HKQUANTITYTYPEIDENTIFIERBLOODPRESSUREDIASTOLIC SWIFT_NAME(hkquantitytypeidentifierbloodpressurediastolic) = 99,
132
- HKQUANTITYTYPEIDENTIFIERRESPIRATORYRATE SWIFT_NAME(hkquantitytypeidentifierrespiratoryrate) = 100,
133
- HKQUANTITYTYPEIDENTIFIERRESTINGHEARTRATE SWIFT_NAME(hkquantitytypeidentifierrestingheartrate) = 101,
134
- HKQUANTITYTYPEIDENTIFIERHEARTRATEVARIABILITYSDNN SWIFT_NAME(hkquantitytypeidentifierheartratevariabilitysdnn) = 102,
135
- HKQUANTITYTYPEIDENTIFIEROXYGENSATURATION SWIFT_NAME(hkquantitytypeidentifieroxygensaturation) = 103,
136
- HKQUANTITYTYPEIDENTIFIERPERIPHERALPERFUSIONINDEX SWIFT_NAME(hkquantitytypeidentifierperipheralperfusionindex) = 104,
137
- HKQUANTITYTYPEIDENTIFIERBLOODGLUCOSE SWIFT_NAME(hkquantitytypeidentifierbloodglucose) = 105,
138
- HKQUANTITYTYPEIDENTIFIERBLOODKETONES SWIFT_NAME(hkquantitytypeidentifierbloodketones) = 106,
139
- HKQUANTITYTYPEIDENTIFIERNUMBEROFTIMESFALLEN SWIFT_NAME(hkquantitytypeidentifiernumberoftimesfallen) = 107,
140
- HKQUANTITYTYPEIDENTIFIERELECTRODERMALACTIVITY SWIFT_NAME(hkquantitytypeidentifierelectrodermalactivity) = 108,
141
- HKQUANTITYTYPEIDENTIFIERINHALERUSAGE SWIFT_NAME(hkquantitytypeidentifierinhalerusage) = 109,
142
- HKQUANTITYTYPEIDENTIFIERINSULINDELIVERY SWIFT_NAME(hkquantitytypeidentifierinsulindelivery) = 110,
143
- HKQUANTITYTYPEIDENTIFIERBLOODALCOHOLCONTENT SWIFT_NAME(hkquantitytypeidentifierbloodalcoholcontent) = 111,
144
- HKQUANTITYTYPEIDENTIFIERFORCEDVITALCAPACITY SWIFT_NAME(hkquantitytypeidentifierforcedvitalcapacity) = 112,
145
- HKQUANTITYTYPEIDENTIFIERFORCEDEXPIRATORYVOLUME1 SWIFT_NAME(hkquantitytypeidentifierforcedexpiratoryvolume1) = 113,
146
- HKQUANTITYTYPEIDENTIFIERPEAKEXPIRATORYFLOWRATE SWIFT_NAME(hkquantitytypeidentifierpeakexpiratoryflowrate) = 114,
147
- HKQUANTITYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSURE SWIFT_NAME(hkquantitytypeidentifierenvironmentalaudioexposure) = 115,
148
- HKQUANTITYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSURE SWIFT_NAME(hkquantitytypeidentifierheadphoneaudioexposure) = 116,
149
- HKQUANTITYTYPEIDENTIFIERDIETARYFATTOTAL SWIFT_NAME(hkquantitytypeidentifierdietaryfattotal) = 117,
150
- HKQUANTITYTYPEIDENTIFIERDIETARYFATPOLYUNSATURATED SWIFT_NAME(hkquantitytypeidentifierdietaryfatpolyunsaturated) = 118,
151
- HKQUANTITYTYPEIDENTIFIERDIETARYFATMONOUNSATURATED SWIFT_NAME(hkquantitytypeidentifierdietaryfatmonounsaturated) = 119,
152
- HKQUANTITYTYPEIDENTIFIERDIETARYFATSATURATED SWIFT_NAME(hkquantitytypeidentifierdietaryfatsaturated) = 120,
153
- HKQUANTITYTYPEIDENTIFIERDIETARYCHOLESTEROL SWIFT_NAME(hkquantitytypeidentifierdietarycholesterol) = 121,
154
- HKQUANTITYTYPEIDENTIFIERDIETARYSODIUM SWIFT_NAME(hkquantitytypeidentifierdietarysodium) = 122,
155
- HKQUANTITYTYPEIDENTIFIERDIETARYCARBOHYDRATES SWIFT_NAME(hkquantitytypeidentifierdietarycarbohydrates) = 123,
156
- HKQUANTITYTYPEIDENTIFIERDIETARYFIBER SWIFT_NAME(hkquantitytypeidentifierdietaryfiber) = 124,
157
- HKQUANTITYTYPEIDENTIFIERDIETARYSUGAR SWIFT_NAME(hkquantitytypeidentifierdietarysugar) = 125,
158
- HKQUANTITYTYPEIDENTIFIERDIETARYENERGYCONSUMED SWIFT_NAME(hkquantitytypeidentifierdietaryenergyconsumed) = 126,
159
- HKQUANTITYTYPEIDENTIFIERDIETARYPROTEIN SWIFT_NAME(hkquantitytypeidentifierdietaryprotein) = 127,
160
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINA SWIFT_NAME(hkquantitytypeidentifierdietaryvitamina) = 128,
161
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB6 SWIFT_NAME(hkquantitytypeidentifierdietaryvitaminb6) = 129,
162
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB12 SWIFT_NAME(hkquantitytypeidentifierdietaryvitaminb12) = 130,
163
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINC SWIFT_NAME(hkquantitytypeidentifierdietaryvitaminc) = 131,
164
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMIND SWIFT_NAME(hkquantitytypeidentifierdietaryvitamind) = 132,
165
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINE SWIFT_NAME(hkquantitytypeidentifierdietaryvitamine) = 133,
166
- HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINK SWIFT_NAME(hkquantitytypeidentifierdietaryvitamink) = 134,
167
- HKQUANTITYTYPEIDENTIFIERDIETARYCALCIUM SWIFT_NAME(hkquantitytypeidentifierdietarycalcium) = 135,
168
- HKQUANTITYTYPEIDENTIFIERDIETARYIRON SWIFT_NAME(hkquantitytypeidentifierdietaryiron) = 136,
169
- HKQUANTITYTYPEIDENTIFIERDIETARYTHIAMIN SWIFT_NAME(hkquantitytypeidentifierdietarythiamin) = 137,
170
- HKQUANTITYTYPEIDENTIFIERDIETARYRIBOFLAVIN SWIFT_NAME(hkquantitytypeidentifierdietaryriboflavin) = 138,
171
- HKQUANTITYTYPEIDENTIFIERDIETARYNIACIN SWIFT_NAME(hkquantitytypeidentifierdietaryniacin) = 139,
172
- HKQUANTITYTYPEIDENTIFIERDIETARYFOLATE SWIFT_NAME(hkquantitytypeidentifierdietaryfolate) = 140,
173
- HKQUANTITYTYPEIDENTIFIERDIETARYBIOTIN SWIFT_NAME(hkquantitytypeidentifierdietarybiotin) = 141,
174
- HKQUANTITYTYPEIDENTIFIERDIETARYPANTOTHENICACID SWIFT_NAME(hkquantitytypeidentifierdietarypantothenicacid) = 142,
175
- HKQUANTITYTYPEIDENTIFIERDIETARYPHOSPHORUS SWIFT_NAME(hkquantitytypeidentifierdietaryphosphorus) = 143,
176
- HKQUANTITYTYPEIDENTIFIERDIETARYIODINE SWIFT_NAME(hkquantitytypeidentifierdietaryiodine) = 144,
177
- HKQUANTITYTYPEIDENTIFIERDIETARYMAGNESIUM SWIFT_NAME(hkquantitytypeidentifierdietarymagnesium) = 145,
178
- HKQUANTITYTYPEIDENTIFIERDIETARYZINC SWIFT_NAME(hkquantitytypeidentifierdietaryzinc) = 146,
179
- HKQUANTITYTYPEIDENTIFIERDIETARYSELENIUM SWIFT_NAME(hkquantitytypeidentifierdietaryselenium) = 147,
180
- HKQUANTITYTYPEIDENTIFIERDIETARYCOPPER SWIFT_NAME(hkquantitytypeidentifierdietarycopper) = 148,
181
- HKQUANTITYTYPEIDENTIFIERDIETARYMANGANESE SWIFT_NAME(hkquantitytypeidentifierdietarymanganese) = 149,
182
- HKQUANTITYTYPEIDENTIFIERDIETARYCHROMIUM SWIFT_NAME(hkquantitytypeidentifierdietarychromium) = 150,
183
- HKQUANTITYTYPEIDENTIFIERDIETARYMOLYBDENUM SWIFT_NAME(hkquantitytypeidentifierdietarymolybdenum) = 151,
184
- HKQUANTITYTYPEIDENTIFIERDIETARYCHLORIDE SWIFT_NAME(hkquantitytypeidentifierdietarychloride) = 152,
185
- HKQUANTITYTYPEIDENTIFIERDIETARYPOTASSIUM SWIFT_NAME(hkquantitytypeidentifierdietarypotassium) = 153,
186
- HKQUANTITYTYPEIDENTIFIERDIETARYCAFFEINE SWIFT_NAME(hkquantitytypeidentifierdietarycaffeine) = 154,
187
- HKQUANTITYTYPEIDENTIFIERDIETARYWATER SWIFT_NAME(hkquantitytypeidentifierdietarywater) = 155,
188
- HKQUANTITYTYPEIDENTIFIERSIXMINUTEWALKTESTDISTANCE SWIFT_NAME(hkquantitytypeidentifiersixminutewalktestdistance) = 156,
189
- HKQUANTITYTYPEIDENTIFIERWALKINGSPEED SWIFT_NAME(hkquantitytypeidentifierwalkingspeed) = 157,
190
- HKQUANTITYTYPEIDENTIFIERWALKINGSTEPLENGTH SWIFT_NAME(hkquantitytypeidentifierwalkingsteplength) = 158,
191
- HKQUANTITYTYPEIDENTIFIERWALKINGASYMMETRYPERCENTAGE SWIFT_NAME(hkquantitytypeidentifierwalkingasymmetrypercentage) = 159,
192
- HKQUANTITYTYPEIDENTIFIERWALKINGDOUBLESUPPORTPERCENTAGE SWIFT_NAME(hkquantitytypeidentifierwalkingdoublesupportpercentage) = 160,
193
- HKQUANTITYTYPEIDENTIFIERSTAIRASCENTSPEED SWIFT_NAME(hkquantitytypeidentifierstairascentspeed) = 161,
194
- HKQUANTITYTYPEIDENTIFIERSTAIRDESCENTSPEED SWIFT_NAME(hkquantitytypeidentifierstairdescentspeed) = 162,
195
- HKQUANTITYTYPEIDENTIFIERUVEXPOSURE SWIFT_NAME(hkquantitytypeidentifieruvexposure) = 163,
196
- HKQUANTITYTYPEIDENTIFIERAPPLEMOVETIME SWIFT_NAME(hkquantitytypeidentifierapplemovetime) = 164,
197
- HKQUANTITYTYPEIDENTIFIERNUMBEROFALCOHOLICBEVERAGES SWIFT_NAME(hkquantitytypeidentifiernumberofalcoholicbeverages) = 165,
198
- HKQUANTITYTYPEIDENTIFIERUNDERWATERDEPTH SWIFT_NAME(hkquantitytypeidentifierunderwaterdepth) = 166,
199
- HKQUANTITYTYPEIDENTIFIERWATERTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierwatertemperature) = 167,
200
- HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGWRISTTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierapplesleepingwristtemperature) = 168,
201
- HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGBREATHINGDISTURBANCES SWIFT_NAME(hkquantitytypeidentifierapplesleepingbreathingdisturbances) = 169,
202
- HKQUANTITYTYPEIDENTIFIERTIMEINDAYLIGHT SWIFT_NAME(hkquantitytypeidentifiertimeindaylight) = 170,
203
- HKQUANTITYTYPEIDENTIFIERPHYSICALEFFORT SWIFT_NAME(hkquantitytypeidentifierphysicaleffort) = 171,
204
- HKQUANTITYTYPEIDENTIFIERCYCLINGSPEED SWIFT_NAME(hkquantitytypeidentifiercyclingspeed) = 172,
205
- HKQUANTITYTYPEIDENTIFIERCYCLINGPOWER SWIFT_NAME(hkquantitytypeidentifiercyclingpower) = 173,
206
- HKQUANTITYTYPEIDENTIFIERCYCLINGFUNCTIONALTHRESHOLDPOWER SWIFT_NAME(hkquantitytypeidentifiercyclingfunctionalthresholdpower) = 174,
207
- HKQUANTITYTYPEIDENTIFIERCYCLINGCADENCE SWIFT_NAME(hkquantitytypeidentifiercyclingcadence) = 175,
208
- HKQUANTITYTYPEIDENTIFIERENVIRONMENTALSOUNDREDUCTION SWIFT_NAME(hkquantitytypeidentifierenvironmentalsoundreduction) = 176,
209
- HKQUANTITYTYPEIDENTIFIERHEARTRATERECOVERYONEMINUTE SWIFT_NAME(hkquantitytypeidentifierheartraterecoveryoneminute) = 177,
210
- HKQUANTITYTYPEIDENTIFIERRUNNINGGROUNDCONTACTTIME SWIFT_NAME(hkquantitytypeidentifierrunninggroundcontacttime) = 178,
211
- HKQUANTITYTYPEIDENTIFIERRUNNINGSTRIDELENGTH SWIFT_NAME(hkquantitytypeidentifierrunningstridelength) = 179,
212
- HKQUANTITYTYPEIDENTIFIERRUNNINGPOWER SWIFT_NAME(hkquantitytypeidentifierrunningpower) = 180,
213
- HKQUANTITYTYPEIDENTIFIERRUNNINGVERTICALOSCILLATION SWIFT_NAME(hkquantitytypeidentifierrunningverticaloscillation) = 181,
214
- HKQUANTITYTYPEIDENTIFIERRUNNINGSPEED SWIFT_NAME(hkquantitytypeidentifierrunningspeed) = 182,
215
- HKQUANTITYTYPEIDENTIFIERCROSSCOUNTRYSKIINGSPEED SWIFT_NAME(hkquantitytypeidentifiercrosscountryskiingspeed) = 183,
216
- HKQUANTITYTYPEIDENTIFIERDISTANCECROSSCOUNTRYSKIING SWIFT_NAME(hkquantitytypeidentifierdistancecrosscountryskiing) = 184,
217
- HKQUANTITYTYPEIDENTIFIERDISTANCEPADDLESPORTS SWIFT_NAME(hkquantitytypeidentifierdistancepaddlesports) = 185,
218
- HKQUANTITYTYPEIDENTIFIERDISTANCEROWING SWIFT_NAME(hkquantitytypeidentifierdistancerowing) = 186,
219
- HKQUANTITYTYPEIDENTIFIERDISTANCESKATINGSPORTS SWIFT_NAME(hkquantitytypeidentifierdistanceskatingsports) = 187,
220
- HKQUANTITYTYPEIDENTIFIERESTIMATEDWORKOUTEFFORTSCORE SWIFT_NAME(hkquantitytypeidentifierestimatedworkouteffortscore) = 188,
221
- HKQUANTITYTYPEIDENTIFIERPADDLESPORTSSPEED SWIFT_NAME(hkquantitytypeidentifierpaddlesportsspeed) = 189,
222
- HKQUANTITYTYPEIDENTIFIERROWINGSPEED SWIFT_NAME(hkquantitytypeidentifierrowingspeed) = 190,
33
+ HKCATEGORYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSUREEVENT SWIFT_NAME(hkcategorytypeidentifierheadphoneaudioexposureevent) = 1,
34
+ HKCATEGORYTYPEIDENTIFIERHIGHHEARTRATEEVENT SWIFT_NAME(hkcategorytypeidentifierhighheartrateevent) = 2,
35
+ HKCATEGORYTYPEIDENTIFIERHYPERTENSIONEVENT SWIFT_NAME(hkcategorytypeidentifierhypertensionevent) = 3,
36
+ HKCATEGORYTYPEIDENTIFIERLOWHEARTRATEEVENT SWIFT_NAME(hkcategorytypeidentifierlowheartrateevent) = 4,
37
+ HKCATEGORYTYPEIDENTIFIERABDOMINALCRAMPS SWIFT_NAME(hkcategorytypeidentifierabdominalcramps) = 5,
38
+ HKCATEGORYTYPEIDENTIFIERACNE SWIFT_NAME(hkcategorytypeidentifieracne) = 6,
39
+ HKCATEGORYTYPEIDENTIFIERAPPETITECHANGES SWIFT_NAME(hkcategorytypeidentifierappetitechanges) = 7,
40
+ HKCATEGORYTYPEIDENTIFIERAPPLEWALKINGSTEADINESSEVENT SWIFT_NAME(hkcategorytypeidentifierapplewalkingsteadinessevent) = 8,
41
+ HKCATEGORYTYPEIDENTIFIERAUDIOEXPOSUREEVENT SWIFT_NAME(hkcategorytypeidentifieraudioexposureevent) = 9,
42
+ HKCATEGORYTYPEIDENTIFIERBLADDERINCONTINENCE SWIFT_NAME(hkcategorytypeidentifierbladderincontinence) = 10,
43
+ HKCATEGORYTYPEIDENTIFIERBLEEDINGAFTERPREGNANCY SWIFT_NAME(hkcategorytypeidentifierbleedingafterpregnancy) = 11,
44
+ HKCATEGORYTYPEIDENTIFIERBLEEDINGDURINGPREGNANCY SWIFT_NAME(hkcategorytypeidentifierbleedingduringpregnancy) = 12,
45
+ HKCATEGORYTYPEIDENTIFIERBLOATING SWIFT_NAME(hkcategorytypeidentifierbloating) = 13,
46
+ HKCATEGORYTYPEIDENTIFIERBREASTPAIN SWIFT_NAME(hkcategorytypeidentifierbreastpain) = 14,
47
+ HKCATEGORYTYPEIDENTIFIERCERVICALMUCUSQUALITY SWIFT_NAME(hkcategorytypeidentifiercervicalmucusquality) = 15,
48
+ HKCATEGORYTYPEIDENTIFIERCHESTTIGHTNESSORPAIN SWIFT_NAME(hkcategorytypeidentifierchesttightnessorpain) = 16,
49
+ HKCATEGORYTYPEIDENTIFIERCHILLS SWIFT_NAME(hkcategorytypeidentifierchills) = 17,
50
+ HKCATEGORYTYPEIDENTIFIERCONSTIPATION SWIFT_NAME(hkcategorytypeidentifierconstipation) = 18,
51
+ HKCATEGORYTYPEIDENTIFIERCONTRACEPTIVE SWIFT_NAME(hkcategorytypeidentifiercontraceptive) = 19,
52
+ HKCATEGORYTYPEIDENTIFIERCOUGHING SWIFT_NAME(hkcategorytypeidentifiercoughing) = 20,
53
+ HKCATEGORYTYPEIDENTIFIERDIARRHEA SWIFT_NAME(hkcategorytypeidentifierdiarrhea) = 21,
54
+ HKCATEGORYTYPEIDENTIFIERDIZZINESS SWIFT_NAME(hkcategorytypeidentifierdizziness) = 22,
55
+ HKCATEGORYTYPEIDENTIFIERDRYSKIN SWIFT_NAME(hkcategorytypeidentifierdryskin) = 23,
56
+ HKCATEGORYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSUREEVENT SWIFT_NAME(hkcategorytypeidentifierenvironmentalaudioexposureevent) = 24,
57
+ HKCATEGORYTYPEIDENTIFIERFAINTING SWIFT_NAME(hkcategorytypeidentifierfainting) = 25,
58
+ HKCATEGORYTYPEIDENTIFIERFATIGUE SWIFT_NAME(hkcategorytypeidentifierfatigue) = 26,
59
+ HKCATEGORYTYPEIDENTIFIERFEVER SWIFT_NAME(hkcategorytypeidentifierfever) = 27,
60
+ HKCATEGORYTYPEIDENTIFIERGENERALIZEDBODYACHE SWIFT_NAME(hkcategorytypeidentifiergeneralizedbodyache) = 28,
61
+ HKCATEGORYTYPEIDENTIFIERHAIRLOSS SWIFT_NAME(hkcategorytypeidentifierhairloss) = 29,
62
+ HKCATEGORYTYPEIDENTIFIERHANDWASHINGEVENT SWIFT_NAME(hkcategorytypeidentifierhandwashingevent) = 30,
63
+ HKCATEGORYTYPEIDENTIFIERHEADACHE SWIFT_NAME(hkcategorytypeidentifierheadache) = 31,
64
+ HKCATEGORYTYPEIDENTIFIERHEARTBURN SWIFT_NAME(hkcategorytypeidentifierheartburn) = 32,
65
+ HKCATEGORYTYPEIDENTIFIERHOTFLASHES SWIFT_NAME(hkcategorytypeidentifierhotflashes) = 33,
66
+ HKCATEGORYTYPEIDENTIFIERINFREQUENTMENSTRUALCYCLES SWIFT_NAME(hkcategorytypeidentifierinfrequentmenstrualcycles) = 34,
67
+ HKCATEGORYTYPEIDENTIFIERINTERMENSTRUALBLEEDING SWIFT_NAME(hkcategorytypeidentifierintermenstrualbleeding) = 35,
68
+ HKCATEGORYTYPEIDENTIFIERIRREGULARHEARTRHYTHMEVENT SWIFT_NAME(hkcategorytypeidentifierirregularheartrhythmevent) = 36,
69
+ HKCATEGORYTYPEIDENTIFIERIRREGULARMENSTRUALCYCLES SWIFT_NAME(hkcategorytypeidentifierirregularmenstrualcycles) = 37,
70
+ HKCATEGORYTYPEIDENTIFIERLACTATION SWIFT_NAME(hkcategorytypeidentifierlactation) = 38,
71
+ HKCATEGORYTYPEIDENTIFIERLOSSOFSMELL SWIFT_NAME(hkcategorytypeidentifierlossofsmell) = 39,
72
+ HKCATEGORYTYPEIDENTIFIERLOSSOFTASTE SWIFT_NAME(hkcategorytypeidentifierlossoftaste) = 40,
73
+ HKCATEGORYTYPEIDENTIFIERLOWCARDIOFITNESSEVENT SWIFT_NAME(hkcategorytypeidentifierlowcardiofitnessevent) = 41,
74
+ HKCATEGORYTYPEIDENTIFIERLOWERBACKPAIN SWIFT_NAME(hkcategorytypeidentifierlowerbackpain) = 42,
75
+ HKCATEGORYTYPEIDENTIFIERMEMORYLAPSE SWIFT_NAME(hkcategorytypeidentifiermemorylapse) = 43,
76
+ HKCATEGORYTYPEIDENTIFIERMENSTRUALFLOW SWIFT_NAME(hkcategorytypeidentifiermenstrualflow) = 44,
77
+ HKCATEGORYTYPEIDENTIFIERMINDFULSESSION SWIFT_NAME(hkcategorytypeidentifiermindfulsession) = 45,
78
+ HKCATEGORYTYPEIDENTIFIERMOODCHANGES SWIFT_NAME(hkcategorytypeidentifiermoodchanges) = 46,
79
+ HKCATEGORYTYPEIDENTIFIERNAUSEA SWIFT_NAME(hkcategorytypeidentifiernausea) = 47,
80
+ HKCATEGORYTYPEIDENTIFIERNIGHTSWEATS SWIFT_NAME(hkcategorytypeidentifiernightsweats) = 48,
81
+ HKCATEGORYTYPEIDENTIFIEROVULATIONTESTRESULT SWIFT_NAME(hkcategorytypeidentifierovulationtestresult) = 49,
82
+ HKCATEGORYTYPEIDENTIFIERPELVICPAIN SWIFT_NAME(hkcategorytypeidentifierpelvicpain) = 50,
83
+ HKCATEGORYTYPEIDENTIFIERPERSISTENTINTERMENSTRUALBLEEDING SWIFT_NAME(hkcategorytypeidentifierpersistentintermenstrualbleeding) = 51,
84
+ HKCATEGORYTYPEIDENTIFIERPREGNANCY SWIFT_NAME(hkcategorytypeidentifierpregnancy) = 52,
85
+ HKCATEGORYTYPEIDENTIFIERPREGNANCYTESTRESULT SWIFT_NAME(hkcategorytypeidentifierpregnancytestresult) = 53,
86
+ HKCATEGORYTYPEIDENTIFIERPROGESTERONETESTRESULT SWIFT_NAME(hkcategorytypeidentifierprogesteronetestresult) = 54,
87
+ HKCATEGORYTYPEIDENTIFIERPROLONGEDMENSTRUALPERIODS SWIFT_NAME(hkcategorytypeidentifierprolongedmenstrualperiods) = 55,
88
+ HKCATEGORYTYPEIDENTIFIERRAPIDPOUNDINGORFLUTTERINGHEARTBEAT SWIFT_NAME(hkcategorytypeidentifierrapidpoundingorflutteringheartbeat) = 56,
89
+ HKCATEGORYTYPEIDENTIFIERRUNNYNOSE SWIFT_NAME(hkcategorytypeidentifierrunnynose) = 57,
90
+ HKCATEGORYTYPEIDENTIFIERSEXUALACTIVITY SWIFT_NAME(hkcategorytypeidentifiersexualactivity) = 58,
91
+ HKCATEGORYTYPEIDENTIFIERSHORTNESSOFBREATH SWIFT_NAME(hkcategorytypeidentifiershortnessofbreath) = 59,
92
+ HKCATEGORYTYPEIDENTIFIERSINUSCONGESTION SWIFT_NAME(hkcategorytypeidentifiersinuscongestion) = 60,
93
+ HKCATEGORYTYPEIDENTIFIERSKIPPEDHEARTBEAT SWIFT_NAME(hkcategorytypeidentifierskippedheartbeat) = 61,
94
+ HKCATEGORYTYPEIDENTIFIERSLEEPANALYSIS SWIFT_NAME(hkcategorytypeidentifiersleepanalysis) = 62,
95
+ HKCATEGORYTYPEIDENTIFIERSLEEPAPNEAEVENT SWIFT_NAME(hkcategorytypeidentifiersleepapneaevent) = 63,
96
+ HKCATEGORYTYPEIDENTIFIERSLEEPCHANGES SWIFT_NAME(hkcategorytypeidentifiersleepchanges) = 64,
97
+ HKCATEGORYTYPEIDENTIFIERSORETHROAT SWIFT_NAME(hkcategorytypeidentifiersorethroat) = 65,
98
+ HKCATEGORYTYPEIDENTIFIERTOOTHBRUSHINGEVENT SWIFT_NAME(hkcategorytypeidentifiertoothbrushingevent) = 66,
99
+ HKCATEGORYTYPEIDENTIFIERVAGINALDRYNESS SWIFT_NAME(hkcategorytypeidentifiervaginaldryness) = 67,
100
+ HKCATEGORYTYPEIDENTIFIERVOMITING SWIFT_NAME(hkcategorytypeidentifiervomiting) = 68,
101
+ HKCATEGORYTYPEIDENTIFIERWHEEZING SWIFT_NAME(hkcategorytypeidentifierwheezing) = 69,
102
+ HKCORRELATIONTYPEIDENTIFIERBLOODPRESSURE SWIFT_NAME(hkcorrelationtypeidentifierbloodpressure) = 70,
103
+ HKCORRELATIONTYPEIDENTIFIERFOOD SWIFT_NAME(hkcorrelationtypeidentifierfood) = 71,
104
+ HKQUANTITYTYPEIDENTIFIERAPPLEEXERCISETIME SWIFT_NAME(hkquantitytypeidentifierappleexercisetime) = 72,
105
+ HKQUANTITYTYPEIDENTIFIERAPPLESTANDTIME SWIFT_NAME(hkquantitytypeidentifierapplestandtime) = 73,
106
+ HKQUANTITYTYPEIDENTIFIERAPPLEWALKINGSTEADINESS SWIFT_NAME(hkquantitytypeidentifierapplewalkingsteadiness) = 74,
107
+ HKQUANTITYTYPEIDENTIFIERATRIALFIBRILLATIONBURDEN SWIFT_NAME(hkquantitytypeidentifieratrialfibrillationburden) = 75,
108
+ HKQUANTITYTYPEIDENTIFIERWALKINGHEARTRATEAVERAGE SWIFT_NAME(hkquantitytypeidentifierwalkingheartrateaverage) = 76,
109
+ HKQUANTITYTYPEIDENTIFIERACTIVEENERGYBURNED SWIFT_NAME(hkquantitytypeidentifieractiveenergyburned) = 77,
110
+ HKQUANTITYTYPEIDENTIFIERAPPLEMOVETIME SWIFT_NAME(hkquantitytypeidentifierapplemovetime) = 78,
111
+ HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGBREATHINGDISTURBANCES SWIFT_NAME(hkquantitytypeidentifierapplesleepingbreathingdisturbances) = 79,
112
+ HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGWRISTTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierapplesleepingwristtemperature) = 80,
113
+ HKQUANTITYTYPEIDENTIFIERBASALBODYTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierbasalbodytemperature) = 81,
114
+ HKQUANTITYTYPEIDENTIFIERBASALENERGYBURNED SWIFT_NAME(hkquantitytypeidentifierbasalenergyburned) = 82,
115
+ HKQUANTITYTYPEIDENTIFIERBLOODALCOHOLCONTENT SWIFT_NAME(hkquantitytypeidentifierbloodalcoholcontent) = 83,
116
+ HKQUANTITYTYPEIDENTIFIERBLOODGLUCOSE SWIFT_NAME(hkquantitytypeidentifierbloodglucose) = 84,
117
+ HKQUANTITYTYPEIDENTIFIERBLOODPRESSUREDIASTOLIC SWIFT_NAME(hkquantitytypeidentifierbloodpressurediastolic) = 85,
118
+ HKQUANTITYTYPEIDENTIFIERBLOODPRESSURESYSTOLIC SWIFT_NAME(hkquantitytypeidentifierbloodpressuresystolic) = 86,
119
+ HKQUANTITYTYPEIDENTIFIERBODYFATPERCENTAGE SWIFT_NAME(hkquantitytypeidentifierbodyfatpercentage) = 87,
120
+ HKQUANTITYTYPEIDENTIFIERBODYMASS SWIFT_NAME(hkquantitytypeidentifierbodymass) = 88,
121
+ HKQUANTITYTYPEIDENTIFIERBODYMASSINDEX SWIFT_NAME(hkquantitytypeidentifierbodymassindex) = 89,
122
+ HKQUANTITYTYPEIDENTIFIERBODYTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierbodytemperature) = 90,
123
+ HKQUANTITYTYPEIDENTIFIERCROSSCOUNTRYSKIINGSPEED SWIFT_NAME(hkquantitytypeidentifiercrosscountryskiingspeed) = 91,
124
+ HKQUANTITYTYPEIDENTIFIERCYCLINGCADENCE SWIFT_NAME(hkquantitytypeidentifiercyclingcadence) = 92,
125
+ HKQUANTITYTYPEIDENTIFIERCYCLINGFUNCTIONALTHRESHOLDPOWER SWIFT_NAME(hkquantitytypeidentifiercyclingfunctionalthresholdpower) = 93,
126
+ HKQUANTITYTYPEIDENTIFIERCYCLINGPOWER SWIFT_NAME(hkquantitytypeidentifiercyclingpower) = 94,
127
+ HKQUANTITYTYPEIDENTIFIERCYCLINGSPEED SWIFT_NAME(hkquantitytypeidentifiercyclingspeed) = 95,
128
+ HKQUANTITYTYPEIDENTIFIERDIETARYBIOTIN SWIFT_NAME(hkquantitytypeidentifierdietarybiotin) = 96,
129
+ HKQUANTITYTYPEIDENTIFIERDIETARYCAFFEINE SWIFT_NAME(hkquantitytypeidentifierdietarycaffeine) = 97,
130
+ HKQUANTITYTYPEIDENTIFIERDIETARYCALCIUM SWIFT_NAME(hkquantitytypeidentifierdietarycalcium) = 98,
131
+ HKQUANTITYTYPEIDENTIFIERDIETARYCARBOHYDRATES SWIFT_NAME(hkquantitytypeidentifierdietarycarbohydrates) = 99,
132
+ HKQUANTITYTYPEIDENTIFIERDIETARYCHLORIDE SWIFT_NAME(hkquantitytypeidentifierdietarychloride) = 100,
133
+ HKQUANTITYTYPEIDENTIFIERDIETARYCHOLESTEROL SWIFT_NAME(hkquantitytypeidentifierdietarycholesterol) = 101,
134
+ HKQUANTITYTYPEIDENTIFIERDIETARYCHROMIUM SWIFT_NAME(hkquantitytypeidentifierdietarychromium) = 102,
135
+ HKQUANTITYTYPEIDENTIFIERDIETARYCOPPER SWIFT_NAME(hkquantitytypeidentifierdietarycopper) = 103,
136
+ HKQUANTITYTYPEIDENTIFIERDIETARYENERGYCONSUMED SWIFT_NAME(hkquantitytypeidentifierdietaryenergyconsumed) = 104,
137
+ HKQUANTITYTYPEIDENTIFIERDIETARYFATMONOUNSATURATED SWIFT_NAME(hkquantitytypeidentifierdietaryfatmonounsaturated) = 105,
138
+ HKQUANTITYTYPEIDENTIFIERDIETARYFATPOLYUNSATURATED SWIFT_NAME(hkquantitytypeidentifierdietaryfatpolyunsaturated) = 106,
139
+ HKQUANTITYTYPEIDENTIFIERDIETARYFATSATURATED SWIFT_NAME(hkquantitytypeidentifierdietaryfatsaturated) = 107,
140
+ HKQUANTITYTYPEIDENTIFIERDIETARYFATTOTAL SWIFT_NAME(hkquantitytypeidentifierdietaryfattotal) = 108,
141
+ HKQUANTITYTYPEIDENTIFIERDIETARYFIBER SWIFT_NAME(hkquantitytypeidentifierdietaryfiber) = 109,
142
+ HKQUANTITYTYPEIDENTIFIERDIETARYFOLATE SWIFT_NAME(hkquantitytypeidentifierdietaryfolate) = 110,
143
+ HKQUANTITYTYPEIDENTIFIERDIETARYIODINE SWIFT_NAME(hkquantitytypeidentifierdietaryiodine) = 111,
144
+ HKQUANTITYTYPEIDENTIFIERDIETARYIRON SWIFT_NAME(hkquantitytypeidentifierdietaryiron) = 112,
145
+ HKQUANTITYTYPEIDENTIFIERDIETARYMAGNESIUM SWIFT_NAME(hkquantitytypeidentifierdietarymagnesium) = 113,
146
+ HKQUANTITYTYPEIDENTIFIERDIETARYMANGANESE SWIFT_NAME(hkquantitytypeidentifierdietarymanganese) = 114,
147
+ HKQUANTITYTYPEIDENTIFIERDIETARYMOLYBDENUM SWIFT_NAME(hkquantitytypeidentifierdietarymolybdenum) = 115,
148
+ HKQUANTITYTYPEIDENTIFIERDIETARYNIACIN SWIFT_NAME(hkquantitytypeidentifierdietaryniacin) = 116,
149
+ HKQUANTITYTYPEIDENTIFIERDIETARYPANTOTHENICACID SWIFT_NAME(hkquantitytypeidentifierdietarypantothenicacid) = 117,
150
+ HKQUANTITYTYPEIDENTIFIERDIETARYPHOSPHORUS SWIFT_NAME(hkquantitytypeidentifierdietaryphosphorus) = 118,
151
+ HKQUANTITYTYPEIDENTIFIERDIETARYPOTASSIUM SWIFT_NAME(hkquantitytypeidentifierdietarypotassium) = 119,
152
+ HKQUANTITYTYPEIDENTIFIERDIETARYPROTEIN SWIFT_NAME(hkquantitytypeidentifierdietaryprotein) = 120,
153
+ HKQUANTITYTYPEIDENTIFIERDIETARYRIBOFLAVIN SWIFT_NAME(hkquantitytypeidentifierdietaryriboflavin) = 121,
154
+ HKQUANTITYTYPEIDENTIFIERDIETARYSELENIUM SWIFT_NAME(hkquantitytypeidentifierdietaryselenium) = 122,
155
+ HKQUANTITYTYPEIDENTIFIERDIETARYSODIUM SWIFT_NAME(hkquantitytypeidentifierdietarysodium) = 123,
156
+ HKQUANTITYTYPEIDENTIFIERDIETARYSUGAR SWIFT_NAME(hkquantitytypeidentifierdietarysugar) = 124,
157
+ HKQUANTITYTYPEIDENTIFIERDIETARYTHIAMIN SWIFT_NAME(hkquantitytypeidentifierdietarythiamin) = 125,
158
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINA SWIFT_NAME(hkquantitytypeidentifierdietaryvitamina) = 126,
159
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB12 SWIFT_NAME(hkquantitytypeidentifierdietaryvitaminb12) = 127,
160
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB6 SWIFT_NAME(hkquantitytypeidentifierdietaryvitaminb6) = 128,
161
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINC SWIFT_NAME(hkquantitytypeidentifierdietaryvitaminc) = 129,
162
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMIND SWIFT_NAME(hkquantitytypeidentifierdietaryvitamind) = 130,
163
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINE SWIFT_NAME(hkquantitytypeidentifierdietaryvitamine) = 131,
164
+ HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINK SWIFT_NAME(hkquantitytypeidentifierdietaryvitamink) = 132,
165
+ HKQUANTITYTYPEIDENTIFIERDIETARYWATER SWIFT_NAME(hkquantitytypeidentifierdietarywater) = 133,
166
+ HKQUANTITYTYPEIDENTIFIERDIETARYZINC SWIFT_NAME(hkquantitytypeidentifierdietaryzinc) = 134,
167
+ HKQUANTITYTYPEIDENTIFIERDISTANCECROSSCOUNTRYSKIING SWIFT_NAME(hkquantitytypeidentifierdistancecrosscountryskiing) = 135,
168
+ HKQUANTITYTYPEIDENTIFIERDISTANCECYCLING SWIFT_NAME(hkquantitytypeidentifierdistancecycling) = 136,
169
+ HKQUANTITYTYPEIDENTIFIERDISTANCEDOWNHILLSNOWSPORTS SWIFT_NAME(hkquantitytypeidentifierdistancedownhillsnowsports) = 137,
170
+ HKQUANTITYTYPEIDENTIFIERDISTANCEPADDLESPORTS SWIFT_NAME(hkquantitytypeidentifierdistancepaddlesports) = 138,
171
+ HKQUANTITYTYPEIDENTIFIERDISTANCEROWING SWIFT_NAME(hkquantitytypeidentifierdistancerowing) = 139,
172
+ HKQUANTITYTYPEIDENTIFIERDISTANCESKATINGSPORTS SWIFT_NAME(hkquantitytypeidentifierdistanceskatingsports) = 140,
173
+ HKQUANTITYTYPEIDENTIFIERDISTANCESWIMMING SWIFT_NAME(hkquantitytypeidentifierdistanceswimming) = 141,
174
+ HKQUANTITYTYPEIDENTIFIERDISTANCEWALKINGRUNNING SWIFT_NAME(hkquantitytypeidentifierdistancewalkingrunning) = 142,
175
+ HKQUANTITYTYPEIDENTIFIERDISTANCEWHEELCHAIR SWIFT_NAME(hkquantitytypeidentifierdistancewheelchair) = 143,
176
+ HKQUANTITYTYPEIDENTIFIERELECTRODERMALACTIVITY SWIFT_NAME(hkquantitytypeidentifierelectrodermalactivity) = 144,
177
+ HKQUANTITYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSURE SWIFT_NAME(hkquantitytypeidentifierenvironmentalaudioexposure) = 145,
178
+ HKQUANTITYTYPEIDENTIFIERENVIRONMENTALSOUNDREDUCTION SWIFT_NAME(hkquantitytypeidentifierenvironmentalsoundreduction) = 146,
179
+ HKQUANTITYTYPEIDENTIFIERESTIMATEDWORKOUTEFFORTSCORE SWIFT_NAME(hkquantitytypeidentifierestimatedworkouteffortscore) = 147,
180
+ HKQUANTITYTYPEIDENTIFIERFLIGHTSCLIMBED SWIFT_NAME(hkquantitytypeidentifierflightsclimbed) = 148,
181
+ HKQUANTITYTYPEIDENTIFIERFORCEDEXPIRATORYVOLUME1 SWIFT_NAME(hkquantitytypeidentifierforcedexpiratoryvolume1) = 149,
182
+ HKQUANTITYTYPEIDENTIFIERFORCEDVITALCAPACITY SWIFT_NAME(hkquantitytypeidentifierforcedvitalcapacity) = 150,
183
+ HKQUANTITYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSURE SWIFT_NAME(hkquantitytypeidentifierheadphoneaudioexposure) = 151,
184
+ HKQUANTITYTYPEIDENTIFIERHEARTRATE SWIFT_NAME(hkquantitytypeidentifierheartrate) = 152,
185
+ HKQUANTITYTYPEIDENTIFIERHEARTRATERECOVERYONEMINUTE SWIFT_NAME(hkquantitytypeidentifierheartraterecoveryoneminute) = 153,
186
+ HKQUANTITYTYPEIDENTIFIERHEARTRATEVARIABILITYSDNN SWIFT_NAME(hkquantitytypeidentifierheartratevariabilitysdnn) = 154,
187
+ HKQUANTITYTYPEIDENTIFIERHEIGHT SWIFT_NAME(hkquantitytypeidentifierheight) = 155,
188
+ HKQUANTITYTYPEIDENTIFIERINHALERUSAGE SWIFT_NAME(hkquantitytypeidentifierinhalerusage) = 156,
189
+ HKQUANTITYTYPEIDENTIFIERINSULINDELIVERY SWIFT_NAME(hkquantitytypeidentifierinsulindelivery) = 157,
190
+ HKQUANTITYTYPEIDENTIFIERLEANBODYMASS SWIFT_NAME(hkquantitytypeidentifierleanbodymass) = 158,
191
+ HKQUANTITYTYPEIDENTIFIERNIKEFUEL SWIFT_NAME(hkquantitytypeidentifiernikefuel) = 159,
192
+ HKQUANTITYTYPEIDENTIFIERNUMBEROFALCOHOLICBEVERAGES SWIFT_NAME(hkquantitytypeidentifiernumberofalcoholicbeverages) = 160,
193
+ HKQUANTITYTYPEIDENTIFIERNUMBEROFTIMESFALLEN SWIFT_NAME(hkquantitytypeidentifiernumberoftimesfallen) = 161,
194
+ HKQUANTITYTYPEIDENTIFIEROXYGENSATURATION SWIFT_NAME(hkquantitytypeidentifieroxygensaturation) = 162,
195
+ HKQUANTITYTYPEIDENTIFIERPADDLESPORTSSPEED SWIFT_NAME(hkquantitytypeidentifierpaddlesportsspeed) = 163,
196
+ HKQUANTITYTYPEIDENTIFIERPEAKEXPIRATORYFLOWRATE SWIFT_NAME(hkquantitytypeidentifierpeakexpiratoryflowrate) = 164,
197
+ HKQUANTITYTYPEIDENTIFIERPERIPHERALPERFUSIONINDEX SWIFT_NAME(hkquantitytypeidentifierperipheralperfusionindex) = 165,
198
+ HKQUANTITYTYPEIDENTIFIERPHYSICALEFFORT SWIFT_NAME(hkquantitytypeidentifierphysicaleffort) = 166,
199
+ HKQUANTITYTYPEIDENTIFIERPUSHCOUNT SWIFT_NAME(hkquantitytypeidentifierpushcount) = 167,
200
+ HKQUANTITYTYPEIDENTIFIERRESPIRATORYRATE SWIFT_NAME(hkquantitytypeidentifierrespiratoryrate) = 168,
201
+ HKQUANTITYTYPEIDENTIFIERRESTINGHEARTRATE SWIFT_NAME(hkquantitytypeidentifierrestingheartrate) = 169,
202
+ HKQUANTITYTYPEIDENTIFIERROWINGSPEED SWIFT_NAME(hkquantitytypeidentifierrowingspeed) = 170,
203
+ HKQUANTITYTYPEIDENTIFIERRUNNINGGROUNDCONTACTTIME SWIFT_NAME(hkquantitytypeidentifierrunninggroundcontacttime) = 171,
204
+ HKQUANTITYTYPEIDENTIFIERRUNNINGPOWER SWIFT_NAME(hkquantitytypeidentifierrunningpower) = 172,
205
+ HKQUANTITYTYPEIDENTIFIERRUNNINGSPEED SWIFT_NAME(hkquantitytypeidentifierrunningspeed) = 173,
206
+ HKQUANTITYTYPEIDENTIFIERRUNNINGSTRIDELENGTH SWIFT_NAME(hkquantitytypeidentifierrunningstridelength) = 174,
207
+ HKQUANTITYTYPEIDENTIFIERRUNNINGVERTICALOSCILLATION SWIFT_NAME(hkquantitytypeidentifierrunningverticaloscillation) = 175,
208
+ HKQUANTITYTYPEIDENTIFIERSIXMINUTEWALKTESTDISTANCE SWIFT_NAME(hkquantitytypeidentifiersixminutewalktestdistance) = 176,
209
+ HKQUANTITYTYPEIDENTIFIERSTAIRASCENTSPEED SWIFT_NAME(hkquantitytypeidentifierstairascentspeed) = 177,
210
+ HKQUANTITYTYPEIDENTIFIERSTAIRDESCENTSPEED SWIFT_NAME(hkquantitytypeidentifierstairdescentspeed) = 178,
211
+ HKQUANTITYTYPEIDENTIFIERSTEPCOUNT SWIFT_NAME(hkquantitytypeidentifierstepcount) = 179,
212
+ HKQUANTITYTYPEIDENTIFIERSWIMMINGSTROKECOUNT SWIFT_NAME(hkquantitytypeidentifierswimmingstrokecount) = 180,
213
+ HKQUANTITYTYPEIDENTIFIERTIMEINDAYLIGHT SWIFT_NAME(hkquantitytypeidentifiertimeindaylight) = 181,
214
+ HKQUANTITYTYPEIDENTIFIERUNDERWATERDEPTH SWIFT_NAME(hkquantitytypeidentifierunderwaterdepth) = 182,
215
+ HKQUANTITYTYPEIDENTIFIERUVEXPOSURE SWIFT_NAME(hkquantitytypeidentifieruvexposure) = 183,
216
+ HKQUANTITYTYPEIDENTIFIERVO2MAX SWIFT_NAME(hkquantitytypeidentifiervo2max) = 184,
217
+ HKQUANTITYTYPEIDENTIFIERWAISTCIRCUMFERENCE SWIFT_NAME(hkquantitytypeidentifierwaistcircumference) = 185,
218
+ HKQUANTITYTYPEIDENTIFIERWALKINGASYMMETRYPERCENTAGE SWIFT_NAME(hkquantitytypeidentifierwalkingasymmetrypercentage) = 186,
219
+ HKQUANTITYTYPEIDENTIFIERWALKINGDOUBLESUPPORTPERCENTAGE SWIFT_NAME(hkquantitytypeidentifierwalkingdoublesupportpercentage) = 187,
220
+ HKQUANTITYTYPEIDENTIFIERWALKINGSPEED SWIFT_NAME(hkquantitytypeidentifierwalkingspeed) = 188,
221
+ HKQUANTITYTYPEIDENTIFIERWALKINGSTEPLENGTH SWIFT_NAME(hkquantitytypeidentifierwalkingsteplength) = 189,
222
+ HKQUANTITYTYPEIDENTIFIERWATERTEMPERATURE SWIFT_NAME(hkquantitytypeidentifierwatertemperature) = 190,
223
223
  HKQUANTITYTYPEIDENTIFIERWORKOUTEFFORTSCORE SWIFT_NAME(hkquantitytypeidentifierworkouteffortscore) = 191,
224
224
  HKSTATEOFMINDTYPEIDENTIFIER SWIFT_NAME(hkstateofmindtypeidentifier) = 192,
225
225
  HKAUDIOGRAMSAMPLETYPE SWIFT_NAME(hkaudiogramsampletype) = 193,
@@ -240,196 +240,196 @@ namespace margelo::nitro {
240
240
  std::string unionValue = JSIConverter<std::string>::fromJSI(runtime, arg);
241
241
  switch (hashString(unionValue.c_str(), unionValue.size())) {
242
242
  case hashString("HKCategoryTypeIdentifierAppleStandHour"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPLESTANDHOUR;
243
+ case hashString("HKCategoryTypeIdentifierHeadphoneAudioExposureEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSUREEVENT;
243
244
  case hashString("HKCategoryTypeIdentifierHighHeartRateEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHIGHHEARTRATEEVENT;
245
+ case hashString("HKCategoryTypeIdentifierHypertensionEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHYPERTENSIONEVENT;
244
246
  case hashString("HKCategoryTypeIdentifierLowHeartRateEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWHEARTRATEEVENT;
245
- case hashString("HKCategoryTypeIdentifierHeadphoneAudioExposureEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSUREEVENT;
246
- case hashString("HKCategoryTypeIdentifierSleepAnalysis"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPANALYSIS;
247
- case hashString("HKCategoryTypeIdentifierCervicalMucusQuality"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCERVICALMUCUSQUALITY;
248
- case hashString("HKCategoryTypeIdentifierOvulationTestResult"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIEROVULATIONTESTRESULT;
249
- case hashString("HKCategoryTypeIdentifierMenstrualFlow"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMENSTRUALFLOW;
250
- case hashString("HKCategoryTypeIdentifierIntermenstrualBleeding"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINTERMENSTRUALBLEEDING;
251
- case hashString("HKCategoryTypeIdentifierSexualActivity"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSEXUALACTIVITY;
252
- case hashString("HKCategoryTypeIdentifierMindfulSession"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMINDFULSESSION;
253
- case hashString("HKCategoryTypeIdentifierIrregularHeartRhythmEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARHEARTRHYTHMEVENT;
254
- case hashString("HKCategoryTypeIdentifierAudioExposureEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAUDIOEXPOSUREEVENT;
255
- case hashString("HKCategoryTypeIdentifierToothbrushingEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERTOOTHBRUSHINGEVENT;
256
- case hashString("HKCategoryTypeIdentifierLowCardioFitnessEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWCARDIOFITNESSEVENT;
257
- case hashString("HKCategoryTypeIdentifierContraceptive"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCONTRACEPTIVE;
258
- case hashString("HKCategoryTypeIdentifierLactation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLACTATION;
259
- case hashString("HKCategoryTypeIdentifierPregnancy"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCY;
260
- case hashString("HKCategoryTypeIdentifierPregnancyTestResult"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCYTESTRESULT;
261
- case hashString("HKCategoryTypeIdentifierProgesteroneTestResult"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROGESTERONETESTRESULT;
262
- case hashString("HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSUREEVENT;
263
- case hashString("HKCategoryTypeIdentifierAppleWalkingSteadinessEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPLEWALKINGSTEADINESSEVENT;
264
- case hashString("HKCategoryTypeIdentifierHandwashingEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHANDWASHINGEVENT;
265
247
  case hashString("HKCategoryTypeIdentifierAbdominalCramps"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERABDOMINALCRAMPS;
266
248
  case hashString("HKCategoryTypeIdentifierAcne"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERACNE;
267
249
  case hashString("HKCategoryTypeIdentifierAppetiteChanges"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPETITECHANGES;
250
+ case hashString("HKCategoryTypeIdentifierAppleWalkingSteadinessEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPLEWALKINGSTEADINESSEVENT;
251
+ case hashString("HKCategoryTypeIdentifierAudioExposureEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAUDIOEXPOSUREEVENT;
268
252
  case hashString("HKCategoryTypeIdentifierBladderIncontinence"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLADDERINCONTINENCE;
253
+ case hashString("HKCategoryTypeIdentifierBleedingAfterPregnancy"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGAFTERPREGNANCY;
254
+ case hashString("HKCategoryTypeIdentifierBleedingDuringPregnancy"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGDURINGPREGNANCY;
269
255
  case hashString("HKCategoryTypeIdentifierBloating"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLOATING;
270
256
  case hashString("HKCategoryTypeIdentifierBreastPain"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBREASTPAIN;
257
+ case hashString("HKCategoryTypeIdentifierCervicalMucusQuality"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCERVICALMUCUSQUALITY;
271
258
  case hashString("HKCategoryTypeIdentifierChestTightnessOrPain"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCHESTTIGHTNESSORPAIN;
272
259
  case hashString("HKCategoryTypeIdentifierChills"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCHILLS;
273
260
  case hashString("HKCategoryTypeIdentifierConstipation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCONSTIPATION;
261
+ case hashString("HKCategoryTypeIdentifierContraceptive"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCONTRACEPTIVE;
274
262
  case hashString("HKCategoryTypeIdentifierCoughing"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCOUGHING;
275
263
  case hashString("HKCategoryTypeIdentifierDiarrhea"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERDIARRHEA;
276
264
  case hashString("HKCategoryTypeIdentifierDizziness"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERDIZZINESS;
277
265
  case hashString("HKCategoryTypeIdentifierDrySkin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERDRYSKIN;
266
+ case hashString("HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSUREEVENT;
278
267
  case hashString("HKCategoryTypeIdentifierFainting"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERFAINTING;
279
268
  case hashString("HKCategoryTypeIdentifierFatigue"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERFATIGUE;
280
269
  case hashString("HKCategoryTypeIdentifierFever"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERFEVER;
281
270
  case hashString("HKCategoryTypeIdentifierGeneralizedBodyAche"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERGENERALIZEDBODYACHE;
282
271
  case hashString("HKCategoryTypeIdentifierHairLoss"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHAIRLOSS;
272
+ case hashString("HKCategoryTypeIdentifierHandwashingEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHANDWASHINGEVENT;
283
273
  case hashString("HKCategoryTypeIdentifierHeadache"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEADACHE;
284
274
  case hashString("HKCategoryTypeIdentifierHeartburn"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEARTBURN;
285
275
  case hashString("HKCategoryTypeIdentifierHotFlashes"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHOTFLASHES;
276
+ case hashString("HKCategoryTypeIdentifierInfrequentMenstrualCycles"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINFREQUENTMENSTRUALCYCLES;
277
+ case hashString("HKCategoryTypeIdentifierIntermenstrualBleeding"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINTERMENSTRUALBLEEDING;
278
+ case hashString("HKCategoryTypeIdentifierIrregularHeartRhythmEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARHEARTRHYTHMEVENT;
279
+ case hashString("HKCategoryTypeIdentifierIrregularMenstrualCycles"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARMENSTRUALCYCLES;
280
+ case hashString("HKCategoryTypeIdentifierLactation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLACTATION;
286
281
  case hashString("HKCategoryTypeIdentifierLossOfSmell"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOSSOFSMELL;
287
282
  case hashString("HKCategoryTypeIdentifierLossOfTaste"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOSSOFTASTE;
283
+ case hashString("HKCategoryTypeIdentifierLowCardioFitnessEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWCARDIOFITNESSEVENT;
288
284
  case hashString("HKCategoryTypeIdentifierLowerBackPain"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWERBACKPAIN;
289
285
  case hashString("HKCategoryTypeIdentifierMemoryLapse"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMEMORYLAPSE;
286
+ case hashString("HKCategoryTypeIdentifierMenstrualFlow"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMENSTRUALFLOW;
287
+ case hashString("HKCategoryTypeIdentifierMindfulSession"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMINDFULSESSION;
290
288
  case hashString("HKCategoryTypeIdentifierMoodChanges"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMOODCHANGES;
291
289
  case hashString("HKCategoryTypeIdentifierNausea"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERNAUSEA;
292
290
  case hashString("HKCategoryTypeIdentifierNightSweats"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERNIGHTSWEATS;
291
+ case hashString("HKCategoryTypeIdentifierOvulationTestResult"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIEROVULATIONTESTRESULT;
293
292
  case hashString("HKCategoryTypeIdentifierPelvicPain"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPELVICPAIN;
293
+ case hashString("HKCategoryTypeIdentifierPersistentIntermenstrualBleeding"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPERSISTENTINTERMENSTRUALBLEEDING;
294
+ case hashString("HKCategoryTypeIdentifierPregnancy"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCY;
295
+ case hashString("HKCategoryTypeIdentifierPregnancyTestResult"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCYTESTRESULT;
296
+ case hashString("HKCategoryTypeIdentifierProgesteroneTestResult"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROGESTERONETESTRESULT;
297
+ case hashString("HKCategoryTypeIdentifierProlongedMenstrualPeriods"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROLONGEDMENSTRUALPERIODS;
294
298
  case hashString("HKCategoryTypeIdentifierRapidPoundingOrFlutteringHeartbeat"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERRAPIDPOUNDINGORFLUTTERINGHEARTBEAT;
295
299
  case hashString("HKCategoryTypeIdentifierRunnyNose"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERRUNNYNOSE;
300
+ case hashString("HKCategoryTypeIdentifierSexualActivity"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSEXUALACTIVITY;
296
301
  case hashString("HKCategoryTypeIdentifierShortnessOfBreath"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSHORTNESSOFBREATH;
297
302
  case hashString("HKCategoryTypeIdentifierSinusCongestion"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSINUSCONGESTION;
298
303
  case hashString("HKCategoryTypeIdentifierSkippedHeartbeat"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSKIPPEDHEARTBEAT;
304
+ case hashString("HKCategoryTypeIdentifierSleepAnalysis"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPANALYSIS;
305
+ case hashString("HKCategoryTypeIdentifierSleepApneaEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPAPNEAEVENT;
299
306
  case hashString("HKCategoryTypeIdentifierSleepChanges"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPCHANGES;
300
307
  case hashString("HKCategoryTypeIdentifierSoreThroat"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSORETHROAT;
308
+ case hashString("HKCategoryTypeIdentifierToothbrushingEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERTOOTHBRUSHINGEVENT;
301
309
  case hashString("HKCategoryTypeIdentifierVaginalDryness"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERVAGINALDRYNESS;
302
310
  case hashString("HKCategoryTypeIdentifierVomiting"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERVOMITING;
303
311
  case hashString("HKCategoryTypeIdentifierWheezing"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERWHEEZING;
304
- case hashString("HKCategoryTypeIdentifierBleedingAfterPregnancy"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGAFTERPREGNANCY;
305
- case hashString("HKCategoryTypeIdentifierBleedingDuringPregnancy"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGDURINGPREGNANCY;
306
- case hashString("HKCategoryTypeIdentifierInfrequentMenstrualCycles"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINFREQUENTMENSTRUALCYCLES;
307
- case hashString("HKCategoryTypeIdentifierIrregularMenstrualCycles"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARMENSTRUALCYCLES;
308
- case hashString("HKCategoryTypeIdentifierPersistentIntermenstrualBleeding"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPERSISTENTINTERMENSTRUALBLEEDING;
309
- case hashString("HKCategoryTypeIdentifierProlongedMenstrualPeriods"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROLONGEDMENSTRUALPERIODS;
310
- case hashString("HKCategoryTypeIdentifierSleepApneaEvent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPAPNEAEVENT;
311
312
  case hashString("HKCorrelationTypeIdentifierBloodPressure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCORRELATIONTYPEIDENTIFIERBLOODPRESSURE;
312
313
  case hashString("HKCorrelationTypeIdentifierFood"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKCORRELATIONTYPEIDENTIFIERFOOD;
313
- case hashString("HKQuantityTypeIdentifierWalkingHeartRateAverage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGHEARTRATEAVERAGE;
314
- case hashString("HKQuantityTypeIdentifierAtrialFibrillationBurden"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERATRIALFIBRILLATIONBURDEN;
315
314
  case hashString("HKQuantityTypeIdentifierAppleExerciseTime"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEEXERCISETIME;
316
315
  case hashString("HKQuantityTypeIdentifierAppleStandTime"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESTANDTIME;
317
316
  case hashString("HKQuantityTypeIdentifierAppleWalkingSteadiness"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEWALKINGSTEADINESS;
318
- case hashString("HKQuantityTypeIdentifierBodyMassIndex"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASSINDEX;
319
- case hashString("HKQuantityTypeIdentifierBodyFatPercentage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYFATPERCENTAGE;
320
- case hashString("HKQuantityTypeIdentifierHeight"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEIGHT;
321
- case hashString("HKQuantityTypeIdentifierBodyMass"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASS;
322
- case hashString("HKQuantityTypeIdentifierLeanBodyMass"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERLEANBODYMASS;
323
- case hashString("HKQuantityTypeIdentifierWaistCircumference"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWAISTCIRCUMFERENCE;
324
- case hashString("HKQuantityTypeIdentifierStepCount"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTEPCOUNT;
325
- case hashString("HKQuantityTypeIdentifierDistanceWalkingRunning"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWALKINGRUNNING;
326
- case hashString("HKQuantityTypeIdentifierDistanceCycling"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCECYCLING;
327
- case hashString("HKQuantityTypeIdentifierDistanceWheelchair"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWHEELCHAIR;
328
- case hashString("HKQuantityTypeIdentifierBasalEnergyBurned"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBASALENERGYBURNED;
317
+ case hashString("HKQuantityTypeIdentifierAtrialFibrillationBurden"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERATRIALFIBRILLATIONBURDEN;
318
+ case hashString("HKQuantityTypeIdentifierWalkingHeartRateAverage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGHEARTRATEAVERAGE;
329
319
  case hashString("HKQuantityTypeIdentifierActiveEnergyBurned"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERACTIVEENERGYBURNED;
330
- case hashString("HKQuantityTypeIdentifierFlightsClimbed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFLIGHTSCLIMBED;
331
- case hashString("HKQuantityTypeIdentifierNikeFuel"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNIKEFUEL;
332
- case hashString("HKQuantityTypeIdentifierPushCount"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPUSHCOUNT;
333
- case hashString("HKQuantityTypeIdentifierDistanceSwimming"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCESWIMMING;
334
- case hashString("HKQuantityTypeIdentifierSwimmingStrokeCount"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSWIMMINGSTROKECOUNT;
335
- case hashString("HKQuantityTypeIdentifierVO2Max"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERVO2MAX;
336
- case hashString("HKQuantityTypeIdentifierDistanceDownhillSnowSports"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEDOWNHILLSNOWSPORTS;
337
- case hashString("HKQuantityTypeIdentifierHeartRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATE;
338
- case hashString("HKQuantityTypeIdentifierBodyTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYTEMPERATURE;
320
+ case hashString("HKQuantityTypeIdentifierAppleMoveTime"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEMOVETIME;
321
+ case hashString("HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGBREATHINGDISTURBANCES;
322
+ case hashString("HKQuantityTypeIdentifierAppleSleepingWristTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGWRISTTEMPERATURE;
339
323
  case hashString("HKQuantityTypeIdentifierBasalBodyTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBASALBODYTEMPERATURE;
340
- case hashString("HKQuantityTypeIdentifierBloodPressureSystolic"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSURESYSTOLIC;
341
- case hashString("HKQuantityTypeIdentifierBloodPressureDiastolic"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSUREDIASTOLIC;
342
- case hashString("HKQuantityTypeIdentifierRespiratoryRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESPIRATORYRATE;
343
- case hashString("HKQuantityTypeIdentifierRestingHeartRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESTINGHEARTRATE;
344
- case hashString("HKQuantityTypeIdentifierHeartRateVariabilitySDNN"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATEVARIABILITYSDNN;
345
- case hashString("HKQuantityTypeIdentifierOxygenSaturation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIEROXYGENSATURATION;
346
- case hashString("HKQuantityTypeIdentifierPeripheralPerfusionIndex"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPERIPHERALPERFUSIONINDEX;
347
- case hashString("HKQuantityTypeIdentifierBloodGlucose"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODGLUCOSE;
348
- case hashString("HKQuantityTypeIdentifierBloodKetones"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODKETONES;
349
- case hashString("HKQuantityTypeIdentifierNumberOfTimesFallen"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFTIMESFALLEN;
350
- case hashString("HKQuantityTypeIdentifierElectrodermalActivity"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERELECTRODERMALACTIVITY;
351
- case hashString("HKQuantityTypeIdentifierInhalerUsage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINHALERUSAGE;
352
- case hashString("HKQuantityTypeIdentifierInsulinDelivery"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINSULINDELIVERY;
324
+ case hashString("HKQuantityTypeIdentifierBasalEnergyBurned"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBASALENERGYBURNED;
353
325
  case hashString("HKQuantityTypeIdentifierBloodAlcoholContent"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODALCOHOLCONTENT;
354
- case hashString("HKQuantityTypeIdentifierForcedVitalCapacity"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDVITALCAPACITY;
355
- case hashString("HKQuantityTypeIdentifierForcedExpiratoryVolume1"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDEXPIRATORYVOLUME1;
356
- case hashString("HKQuantityTypeIdentifierPeakExpiratoryFlowRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPEAKEXPIRATORYFLOWRATE;
357
- case hashString("HKQuantityTypeIdentifierEnvironmentalAudioExposure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSURE;
358
- case hashString("HKQuantityTypeIdentifierHeadphoneAudioExposure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSURE;
359
- case hashString("HKQuantityTypeIdentifierDietaryFatTotal"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATTOTAL;
360
- case hashString("HKQuantityTypeIdentifierDietaryFatPolyunsaturated"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATPOLYUNSATURATED;
326
+ case hashString("HKQuantityTypeIdentifierBloodGlucose"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODGLUCOSE;
327
+ case hashString("HKQuantityTypeIdentifierBloodPressureDiastolic"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSUREDIASTOLIC;
328
+ case hashString("HKQuantityTypeIdentifierBloodPressureSystolic"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSURESYSTOLIC;
329
+ case hashString("HKQuantityTypeIdentifierBodyFatPercentage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYFATPERCENTAGE;
330
+ case hashString("HKQuantityTypeIdentifierBodyMass"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASS;
331
+ case hashString("HKQuantityTypeIdentifierBodyMassIndex"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASSINDEX;
332
+ case hashString("HKQuantityTypeIdentifierBodyTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYTEMPERATURE;
333
+ case hashString("HKQuantityTypeIdentifierCrossCountrySkiingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCROSSCOUNTRYSKIINGSPEED;
334
+ case hashString("HKQuantityTypeIdentifierCyclingCadence"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGCADENCE;
335
+ case hashString("HKQuantityTypeIdentifierCyclingFunctionalThresholdPower"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGFUNCTIONALTHRESHOLDPOWER;
336
+ case hashString("HKQuantityTypeIdentifierCyclingPower"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGPOWER;
337
+ case hashString("HKQuantityTypeIdentifierCyclingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGSPEED;
338
+ case hashString("HKQuantityTypeIdentifierDietaryBiotin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYBIOTIN;
339
+ case hashString("HKQuantityTypeIdentifierDietaryCaffeine"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCAFFEINE;
340
+ case hashString("HKQuantityTypeIdentifierDietaryCalcium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCALCIUM;
341
+ case hashString("HKQuantityTypeIdentifierDietaryCarbohydrates"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCARBOHYDRATES;
342
+ case hashString("HKQuantityTypeIdentifierDietaryChloride"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHLORIDE;
343
+ case hashString("HKQuantityTypeIdentifierDietaryCholesterol"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHOLESTEROL;
344
+ case hashString("HKQuantityTypeIdentifierDietaryChromium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHROMIUM;
345
+ case hashString("HKQuantityTypeIdentifierDietaryCopper"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCOPPER;
346
+ case hashString("HKQuantityTypeIdentifierDietaryEnergyConsumed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYENERGYCONSUMED;
361
347
  case hashString("HKQuantityTypeIdentifierDietaryFatMonounsaturated"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATMONOUNSATURATED;
348
+ case hashString("HKQuantityTypeIdentifierDietaryFatPolyunsaturated"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATPOLYUNSATURATED;
362
349
  case hashString("HKQuantityTypeIdentifierDietaryFatSaturated"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATSATURATED;
363
- case hashString("HKQuantityTypeIdentifierDietaryCholesterol"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHOLESTEROL;
364
- case hashString("HKQuantityTypeIdentifierDietarySodium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSODIUM;
365
- case hashString("HKQuantityTypeIdentifierDietaryCarbohydrates"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCARBOHYDRATES;
350
+ case hashString("HKQuantityTypeIdentifierDietaryFatTotal"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATTOTAL;
366
351
  case hashString("HKQuantityTypeIdentifierDietaryFiber"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFIBER;
367
- case hashString("HKQuantityTypeIdentifierDietarySugar"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSUGAR;
368
- case hashString("HKQuantityTypeIdentifierDietaryEnergyConsumed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYENERGYCONSUMED;
352
+ case hashString("HKQuantityTypeIdentifierDietaryFolate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFOLATE;
353
+ case hashString("HKQuantityTypeIdentifierDietaryIodine"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIODINE;
354
+ case hashString("HKQuantityTypeIdentifierDietaryIron"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIRON;
355
+ case hashString("HKQuantityTypeIdentifierDietaryMagnesium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMAGNESIUM;
356
+ case hashString("HKQuantityTypeIdentifierDietaryManganese"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMANGANESE;
357
+ case hashString("HKQuantityTypeIdentifierDietaryMolybdenum"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMOLYBDENUM;
358
+ case hashString("HKQuantityTypeIdentifierDietaryNiacin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYNIACIN;
359
+ case hashString("HKQuantityTypeIdentifierDietaryPantothenicAcid"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPANTOTHENICACID;
360
+ case hashString("HKQuantityTypeIdentifierDietaryPhosphorus"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPHOSPHORUS;
361
+ case hashString("HKQuantityTypeIdentifierDietaryPotassium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPOTASSIUM;
369
362
  case hashString("HKQuantityTypeIdentifierDietaryProtein"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPROTEIN;
363
+ case hashString("HKQuantityTypeIdentifierDietaryRiboflavin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYRIBOFLAVIN;
364
+ case hashString("HKQuantityTypeIdentifierDietarySelenium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSELENIUM;
365
+ case hashString("HKQuantityTypeIdentifierDietarySodium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSODIUM;
366
+ case hashString("HKQuantityTypeIdentifierDietarySugar"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSUGAR;
367
+ case hashString("HKQuantityTypeIdentifierDietaryThiamin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYTHIAMIN;
370
368
  case hashString("HKQuantityTypeIdentifierDietaryVitaminA"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINA;
371
- case hashString("HKQuantityTypeIdentifierDietaryVitaminB6"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB6;
372
369
  case hashString("HKQuantityTypeIdentifierDietaryVitaminB12"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB12;
370
+ case hashString("HKQuantityTypeIdentifierDietaryVitaminB6"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB6;
373
371
  case hashString("HKQuantityTypeIdentifierDietaryVitaminC"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINC;
374
372
  case hashString("HKQuantityTypeIdentifierDietaryVitaminD"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMIND;
375
373
  case hashString("HKQuantityTypeIdentifierDietaryVitaminE"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINE;
376
374
  case hashString("HKQuantityTypeIdentifierDietaryVitaminK"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINK;
377
- case hashString("HKQuantityTypeIdentifierDietaryCalcium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCALCIUM;
378
- case hashString("HKQuantityTypeIdentifierDietaryIron"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIRON;
379
- case hashString("HKQuantityTypeIdentifierDietaryThiamin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYTHIAMIN;
380
- case hashString("HKQuantityTypeIdentifierDietaryRiboflavin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYRIBOFLAVIN;
381
- case hashString("HKQuantityTypeIdentifierDietaryNiacin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYNIACIN;
382
- case hashString("HKQuantityTypeIdentifierDietaryFolate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFOLATE;
383
- case hashString("HKQuantityTypeIdentifierDietaryBiotin"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYBIOTIN;
384
- case hashString("HKQuantityTypeIdentifierDietaryPantothenicAcid"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPANTOTHENICACID;
385
- case hashString("HKQuantityTypeIdentifierDietaryPhosphorus"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPHOSPHORUS;
386
- case hashString("HKQuantityTypeIdentifierDietaryIodine"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIODINE;
387
- case hashString("HKQuantityTypeIdentifierDietaryMagnesium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMAGNESIUM;
388
- case hashString("HKQuantityTypeIdentifierDietaryZinc"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYZINC;
389
- case hashString("HKQuantityTypeIdentifierDietarySelenium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSELENIUM;
390
- case hashString("HKQuantityTypeIdentifierDietaryCopper"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCOPPER;
391
- case hashString("HKQuantityTypeIdentifierDietaryManganese"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMANGANESE;
392
- case hashString("HKQuantityTypeIdentifierDietaryChromium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHROMIUM;
393
- case hashString("HKQuantityTypeIdentifierDietaryMolybdenum"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMOLYBDENUM;
394
- case hashString("HKQuantityTypeIdentifierDietaryChloride"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHLORIDE;
395
- case hashString("HKQuantityTypeIdentifierDietaryPotassium"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPOTASSIUM;
396
- case hashString("HKQuantityTypeIdentifierDietaryCaffeine"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCAFFEINE;
397
375
  case hashString("HKQuantityTypeIdentifierDietaryWater"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYWATER;
398
- case hashString("HKQuantityTypeIdentifierSixMinuteWalkTestDistance"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSIXMINUTEWALKTESTDISTANCE;
399
- case hashString("HKQuantityTypeIdentifierWalkingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSPEED;
400
- case hashString("HKQuantityTypeIdentifierWalkingStepLength"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSTEPLENGTH;
401
- case hashString("HKQuantityTypeIdentifierWalkingAsymmetryPercentage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGASYMMETRYPERCENTAGE;
402
- case hashString("HKQuantityTypeIdentifierWalkingDoubleSupportPercentage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGDOUBLESUPPORTPERCENTAGE;
403
- case hashString("HKQuantityTypeIdentifierStairAscentSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRASCENTSPEED;
404
- case hashString("HKQuantityTypeIdentifierStairDescentSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRDESCENTSPEED;
405
- case hashString("HKQuantityTypeIdentifierUVExposure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUVEXPOSURE;
406
- case hashString("HKQuantityTypeIdentifierAppleMoveTime"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEMOVETIME;
407
- case hashString("HKQuantityTypeIdentifierNumberOfAlcoholicBeverages"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFALCOHOLICBEVERAGES;
408
- case hashString("HKQuantityTypeIdentifierUnderwaterDepth"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUNDERWATERDEPTH;
409
- case hashString("HKQuantityTypeIdentifierWaterTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWATERTEMPERATURE;
410
- case hashString("HKQuantityTypeIdentifierAppleSleepingWristTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGWRISTTEMPERATURE;
411
- case hashString("HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGBREATHINGDISTURBANCES;
412
- case hashString("HKQuantityTypeIdentifierTimeInDaylight"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERTIMEINDAYLIGHT;
413
- case hashString("HKQuantityTypeIdentifierPhysicalEffort"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPHYSICALEFFORT;
414
- case hashString("HKQuantityTypeIdentifierCyclingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGSPEED;
415
- case hashString("HKQuantityTypeIdentifierCyclingPower"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGPOWER;
416
- case hashString("HKQuantityTypeIdentifierCyclingFunctionalThresholdPower"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGFUNCTIONALTHRESHOLDPOWER;
417
- case hashString("HKQuantityTypeIdentifierCyclingCadence"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGCADENCE;
418
- case hashString("HKQuantityTypeIdentifierEnvironmentalSoundReduction"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALSOUNDREDUCTION;
419
- case hashString("HKQuantityTypeIdentifierHeartRateRecoveryOneMinute"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATERECOVERYONEMINUTE;
420
- case hashString("HKQuantityTypeIdentifierRunningGroundContactTime"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGGROUNDCONTACTTIME;
421
- case hashString("HKQuantityTypeIdentifierRunningStrideLength"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSTRIDELENGTH;
422
- case hashString("HKQuantityTypeIdentifierRunningPower"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGPOWER;
423
- case hashString("HKQuantityTypeIdentifierRunningVerticalOscillation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGVERTICALOSCILLATION;
424
- case hashString("HKQuantityTypeIdentifierRunningSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSPEED;
425
- case hashString("HKQuantityTypeIdentifierCrossCountrySkiingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCROSSCOUNTRYSKIINGSPEED;
376
+ case hashString("HKQuantityTypeIdentifierDietaryZinc"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYZINC;
426
377
  case hashString("HKQuantityTypeIdentifierDistanceCrossCountrySkiing"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCECROSSCOUNTRYSKIING;
378
+ case hashString("HKQuantityTypeIdentifierDistanceCycling"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCECYCLING;
379
+ case hashString("HKQuantityTypeIdentifierDistanceDownhillSnowSports"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEDOWNHILLSNOWSPORTS;
427
380
  case hashString("HKQuantityTypeIdentifierDistancePaddleSports"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEPADDLESPORTS;
428
381
  case hashString("HKQuantityTypeIdentifierDistanceRowing"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEROWING;
429
382
  case hashString("HKQuantityTypeIdentifierDistanceSkatingSports"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCESKATINGSPORTS;
383
+ case hashString("HKQuantityTypeIdentifierDistanceSwimming"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCESWIMMING;
384
+ case hashString("HKQuantityTypeIdentifierDistanceWalkingRunning"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWALKINGRUNNING;
385
+ case hashString("HKQuantityTypeIdentifierDistanceWheelchair"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWHEELCHAIR;
386
+ case hashString("HKQuantityTypeIdentifierElectrodermalActivity"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERELECTRODERMALACTIVITY;
387
+ case hashString("HKQuantityTypeIdentifierEnvironmentalAudioExposure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSURE;
388
+ case hashString("HKQuantityTypeIdentifierEnvironmentalSoundReduction"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALSOUNDREDUCTION;
430
389
  case hashString("HKQuantityTypeIdentifierEstimatedWorkoutEffortScore"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERESTIMATEDWORKOUTEFFORTSCORE;
390
+ case hashString("HKQuantityTypeIdentifierFlightsClimbed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFLIGHTSCLIMBED;
391
+ case hashString("HKQuantityTypeIdentifierForcedExpiratoryVolume1"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDEXPIRATORYVOLUME1;
392
+ case hashString("HKQuantityTypeIdentifierForcedVitalCapacity"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDVITALCAPACITY;
393
+ case hashString("HKQuantityTypeIdentifierHeadphoneAudioExposure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSURE;
394
+ case hashString("HKQuantityTypeIdentifierHeartRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATE;
395
+ case hashString("HKQuantityTypeIdentifierHeartRateRecoveryOneMinute"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATERECOVERYONEMINUTE;
396
+ case hashString("HKQuantityTypeIdentifierHeartRateVariabilitySDNN"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATEVARIABILITYSDNN;
397
+ case hashString("HKQuantityTypeIdentifierHeight"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEIGHT;
398
+ case hashString("HKQuantityTypeIdentifierInhalerUsage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINHALERUSAGE;
399
+ case hashString("HKQuantityTypeIdentifierInsulinDelivery"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINSULINDELIVERY;
400
+ case hashString("HKQuantityTypeIdentifierLeanBodyMass"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERLEANBODYMASS;
401
+ case hashString("HKQuantityTypeIdentifierNikeFuel"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNIKEFUEL;
402
+ case hashString("HKQuantityTypeIdentifierNumberOfAlcoholicBeverages"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFALCOHOLICBEVERAGES;
403
+ case hashString("HKQuantityTypeIdentifierNumberOfTimesFallen"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFTIMESFALLEN;
404
+ case hashString("HKQuantityTypeIdentifierOxygenSaturation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIEROXYGENSATURATION;
431
405
  case hashString("HKQuantityTypeIdentifierPaddleSportsSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPADDLESPORTSSPEED;
406
+ case hashString("HKQuantityTypeIdentifierPeakExpiratoryFlowRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPEAKEXPIRATORYFLOWRATE;
407
+ case hashString("HKQuantityTypeIdentifierPeripheralPerfusionIndex"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPERIPHERALPERFUSIONINDEX;
408
+ case hashString("HKQuantityTypeIdentifierPhysicalEffort"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPHYSICALEFFORT;
409
+ case hashString("HKQuantityTypeIdentifierPushCount"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPUSHCOUNT;
410
+ case hashString("HKQuantityTypeIdentifierRespiratoryRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESPIRATORYRATE;
411
+ case hashString("HKQuantityTypeIdentifierRestingHeartRate"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESTINGHEARTRATE;
432
412
  case hashString("HKQuantityTypeIdentifierRowingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERROWINGSPEED;
413
+ case hashString("HKQuantityTypeIdentifierRunningGroundContactTime"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGGROUNDCONTACTTIME;
414
+ case hashString("HKQuantityTypeIdentifierRunningPower"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGPOWER;
415
+ case hashString("HKQuantityTypeIdentifierRunningSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSPEED;
416
+ case hashString("HKQuantityTypeIdentifierRunningStrideLength"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSTRIDELENGTH;
417
+ case hashString("HKQuantityTypeIdentifierRunningVerticalOscillation"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGVERTICALOSCILLATION;
418
+ case hashString("HKQuantityTypeIdentifierSixMinuteWalkTestDistance"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSIXMINUTEWALKTESTDISTANCE;
419
+ case hashString("HKQuantityTypeIdentifierStairAscentSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRASCENTSPEED;
420
+ case hashString("HKQuantityTypeIdentifierStairDescentSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRDESCENTSPEED;
421
+ case hashString("HKQuantityTypeIdentifierStepCount"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTEPCOUNT;
422
+ case hashString("HKQuantityTypeIdentifierSwimmingStrokeCount"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSWIMMINGSTROKECOUNT;
423
+ case hashString("HKQuantityTypeIdentifierTimeInDaylight"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERTIMEINDAYLIGHT;
424
+ case hashString("HKQuantityTypeIdentifierUnderwaterDepth"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUNDERWATERDEPTH;
425
+ case hashString("HKQuantityTypeIdentifierUVExposure"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUVEXPOSURE;
426
+ case hashString("HKQuantityTypeIdentifierVO2Max"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERVO2MAX;
427
+ case hashString("HKQuantityTypeIdentifierWaistCircumference"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWAISTCIRCUMFERENCE;
428
+ case hashString("HKQuantityTypeIdentifierWalkingAsymmetryPercentage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGASYMMETRYPERCENTAGE;
429
+ case hashString("HKQuantityTypeIdentifierWalkingDoubleSupportPercentage"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGDOUBLESUPPORTPERCENTAGE;
430
+ case hashString("HKQuantityTypeIdentifierWalkingSpeed"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSPEED;
431
+ case hashString("HKQuantityTypeIdentifierWalkingStepLength"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSTEPLENGTH;
432
+ case hashString("HKQuantityTypeIdentifierWaterTemperature"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWATERTEMPERATURE;
433
433
  case hashString("HKQuantityTypeIdentifierWorkoutEffortScore"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWORKOUTEFFORTSCORE;
434
434
  case hashString("HKStateOfMindTypeIdentifier"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKSTATEOFMINDTYPEIDENTIFIER;
435
435
  case hashString("HKAudiogramSampleType"): return margelo::nitro::healthkit::SampleTypeIdentifier::HKAUDIOGRAMSAMPLETYPE;
@@ -444,196 +444,196 @@ namespace margelo::nitro {
444
444
  static inline jsi::Value toJSI(jsi::Runtime& runtime, margelo::nitro::healthkit::SampleTypeIdentifier arg) {
445
445
  switch (arg) {
446
446
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPLESTANDHOUR: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAppleStandHour");
447
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSUREEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHeadphoneAudioExposureEvent");
447
448
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHIGHHEARTRATEEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHighHeartRateEvent");
449
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHYPERTENSIONEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHypertensionEvent");
448
450
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWHEARTRATEEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLowHeartRateEvent");
449
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSUREEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHeadphoneAudioExposureEvent");
450
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPANALYSIS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSleepAnalysis");
451
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCERVICALMUCUSQUALITY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierCervicalMucusQuality");
452
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIEROVULATIONTESTRESULT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierOvulationTestResult");
453
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMENSTRUALFLOW: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierMenstrualFlow");
454
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINTERMENSTRUALBLEEDING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierIntermenstrualBleeding");
455
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSEXUALACTIVITY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSexualActivity");
456
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMINDFULSESSION: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierMindfulSession");
457
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARHEARTRHYTHMEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierIrregularHeartRhythmEvent");
458
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAUDIOEXPOSUREEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAudioExposureEvent");
459
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERTOOTHBRUSHINGEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierToothbrushingEvent");
460
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWCARDIOFITNESSEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLowCardioFitnessEvent");
461
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCONTRACEPTIVE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierContraceptive");
462
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLACTATION: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLactation");
463
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPregnancy");
464
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCYTESTRESULT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPregnancyTestResult");
465
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROGESTERONETESTRESULT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierProgesteroneTestResult");
466
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSUREEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent");
467
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPLEWALKINGSTEADINESSEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAppleWalkingSteadinessEvent");
468
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHANDWASHINGEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHandwashingEvent");
469
451
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERABDOMINALCRAMPS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAbdominalCramps");
470
452
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERACNE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAcne");
471
453
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPETITECHANGES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAppetiteChanges");
454
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAPPLEWALKINGSTEADINESSEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAppleWalkingSteadinessEvent");
455
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERAUDIOEXPOSUREEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierAudioExposureEvent");
472
456
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLADDERINCONTINENCE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBladderIncontinence");
457
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGAFTERPREGNANCY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBleedingAfterPregnancy");
458
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGDURINGPREGNANCY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBleedingDuringPregnancy");
473
459
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLOATING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBloating");
474
460
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBREASTPAIN: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBreastPain");
461
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCERVICALMUCUSQUALITY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierCervicalMucusQuality");
475
462
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCHESTTIGHTNESSORPAIN: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierChestTightnessOrPain");
476
463
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCHILLS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierChills");
477
464
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCONSTIPATION: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierConstipation");
465
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCONTRACEPTIVE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierContraceptive");
478
466
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERCOUGHING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierCoughing");
479
467
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERDIARRHEA: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierDiarrhea");
480
468
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERDIZZINESS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierDizziness");
481
469
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERDRYSKIN: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierDrySkin");
470
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSUREEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent");
482
471
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERFAINTING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierFainting");
483
472
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERFATIGUE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierFatigue");
484
473
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERFEVER: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierFever");
485
474
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERGENERALIZEDBODYACHE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierGeneralizedBodyAche");
486
475
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHAIRLOSS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHairLoss");
476
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHANDWASHINGEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHandwashingEvent");
487
477
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEADACHE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHeadache");
488
478
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHEARTBURN: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHeartburn");
489
479
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERHOTFLASHES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierHotFlashes");
480
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINFREQUENTMENSTRUALCYCLES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierInfrequentMenstrualCycles");
481
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINTERMENSTRUALBLEEDING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierIntermenstrualBleeding");
482
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARHEARTRHYTHMEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierIrregularHeartRhythmEvent");
483
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARMENSTRUALCYCLES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierIrregularMenstrualCycles");
484
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLACTATION: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLactation");
490
485
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOSSOFSMELL: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLossOfSmell");
491
486
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOSSOFTASTE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLossOfTaste");
487
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWCARDIOFITNESSEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLowCardioFitnessEvent");
492
488
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERLOWERBACKPAIN: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierLowerBackPain");
493
489
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMEMORYLAPSE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierMemoryLapse");
490
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMENSTRUALFLOW: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierMenstrualFlow");
491
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMINDFULSESSION: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierMindfulSession");
494
492
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERMOODCHANGES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierMoodChanges");
495
493
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERNAUSEA: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierNausea");
496
494
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERNIGHTSWEATS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierNightSweats");
495
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIEROVULATIONTESTRESULT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierOvulationTestResult");
497
496
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPELVICPAIN: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPelvicPain");
497
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPERSISTENTINTERMENSTRUALBLEEDING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPersistentIntermenstrualBleeding");
498
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPregnancy");
499
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPREGNANCYTESTRESULT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPregnancyTestResult");
500
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROGESTERONETESTRESULT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierProgesteroneTestResult");
501
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROLONGEDMENSTRUALPERIODS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierProlongedMenstrualPeriods");
498
502
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERRAPIDPOUNDINGORFLUTTERINGHEARTBEAT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierRapidPoundingOrFlutteringHeartbeat");
499
503
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERRUNNYNOSE: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierRunnyNose");
504
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSEXUALACTIVITY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSexualActivity");
500
505
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSHORTNESSOFBREATH: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierShortnessOfBreath");
501
506
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSINUSCONGESTION: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSinusCongestion");
502
507
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSKIPPEDHEARTBEAT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSkippedHeartbeat");
508
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPANALYSIS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSleepAnalysis");
509
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPAPNEAEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSleepApneaEvent");
503
510
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPCHANGES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSleepChanges");
504
511
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSORETHROAT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSoreThroat");
512
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERTOOTHBRUSHINGEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierToothbrushingEvent");
505
513
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERVAGINALDRYNESS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierVaginalDryness");
506
514
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERVOMITING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierVomiting");
507
515
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERWHEEZING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierWheezing");
508
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGAFTERPREGNANCY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBleedingAfterPregnancy");
509
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERBLEEDINGDURINGPREGNANCY: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierBleedingDuringPregnancy");
510
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERINFREQUENTMENSTRUALCYCLES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierInfrequentMenstrualCycles");
511
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERIRREGULARMENSTRUALCYCLES: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierIrregularMenstrualCycles");
512
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPERSISTENTINTERMENSTRUALBLEEDING: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierPersistentIntermenstrualBleeding");
513
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERPROLONGEDMENSTRUALPERIODS: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierProlongedMenstrualPeriods");
514
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKCATEGORYTYPEIDENTIFIERSLEEPAPNEAEVENT: return JSIConverter<std::string>::toJSI(runtime, "HKCategoryTypeIdentifierSleepApneaEvent");
515
516
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCORRELATIONTYPEIDENTIFIERBLOODPRESSURE: return JSIConverter<std::string>::toJSI(runtime, "HKCorrelationTypeIdentifierBloodPressure");
516
517
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKCORRELATIONTYPEIDENTIFIERFOOD: return JSIConverter<std::string>::toJSI(runtime, "HKCorrelationTypeIdentifierFood");
517
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGHEARTRATEAVERAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingHeartRateAverage");
518
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERATRIALFIBRILLATIONBURDEN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAtrialFibrillationBurden");
519
518
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEEXERCISETIME: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleExerciseTime");
520
519
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESTANDTIME: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleStandTime");
521
520
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEWALKINGSTEADINESS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleWalkingSteadiness");
522
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASSINDEX: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyMassIndex");
523
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYFATPERCENTAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyFatPercentage");
524
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEIGHT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeight");
525
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyMass");
526
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERLEANBODYMASS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierLeanBodyMass");
527
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWAISTCIRCUMFERENCE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWaistCircumference");
528
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTEPCOUNT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierStepCount");
529
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWALKINGRUNNING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceWalkingRunning");
530
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCECYCLING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceCycling");
531
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWHEELCHAIR: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceWheelchair");
532
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBASALENERGYBURNED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBasalEnergyBurned");
521
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERATRIALFIBRILLATIONBURDEN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAtrialFibrillationBurden");
522
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGHEARTRATEAVERAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingHeartRateAverage");
533
523
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERACTIVEENERGYBURNED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierActiveEnergyBurned");
534
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFLIGHTSCLIMBED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierFlightsClimbed");
535
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNIKEFUEL: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierNikeFuel");
536
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPUSHCOUNT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPushCount");
537
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCESWIMMING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceSwimming");
538
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSWIMMINGSTROKECOUNT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierSwimmingStrokeCount");
539
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERVO2MAX: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierVO2Max");
540
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEDOWNHILLSNOWSPORTS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceDownhillSnowSports");
541
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeartRate");
542
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyTemperature");
524
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEMOVETIME: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleMoveTime");
525
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGBREATHINGDISTURBANCES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances");
526
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGWRISTTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleSleepingWristTemperature");
543
527
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBASALBODYTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBasalBodyTemperature");
544
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSURESYSTOLIC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodPressureSystolic");
545
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSUREDIASTOLIC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodPressureDiastolic");
546
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESPIRATORYRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRespiratoryRate");
547
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESTINGHEARTRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRestingHeartRate");
548
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATEVARIABILITYSDNN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeartRateVariabilitySDNN");
549
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIEROXYGENSATURATION: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierOxygenSaturation");
550
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPERIPHERALPERFUSIONINDEX: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPeripheralPerfusionIndex");
551
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODGLUCOSE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodGlucose");
552
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODKETONES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodKetones");
553
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFTIMESFALLEN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierNumberOfTimesFallen");
554
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERELECTRODERMALACTIVITY: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierElectrodermalActivity");
555
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINHALERUSAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierInhalerUsage");
556
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINSULINDELIVERY: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierInsulinDelivery");
528
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBASALENERGYBURNED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBasalEnergyBurned");
557
529
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODALCOHOLCONTENT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodAlcoholContent");
558
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDVITALCAPACITY: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierForcedVitalCapacity");
559
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDEXPIRATORYVOLUME1: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierForcedExpiratoryVolume1");
560
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPEAKEXPIRATORYFLOWRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPeakExpiratoryFlowRate");
561
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierEnvironmentalAudioExposure");
562
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeadphoneAudioExposure");
563
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATTOTAL: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFatTotal");
564
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATPOLYUNSATURATED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFatPolyunsaturated");
530
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODGLUCOSE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodGlucose");
531
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSUREDIASTOLIC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodPressureDiastolic");
532
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBLOODPRESSURESYSTOLIC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBloodPressureSystolic");
533
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYFATPERCENTAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyFatPercentage");
534
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyMass");
535
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYMASSINDEX: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyMassIndex");
536
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERBODYTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierBodyTemperature");
537
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCROSSCOUNTRYSKIINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCrossCountrySkiingSpeed");
538
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGCADENCE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingCadence");
539
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGFUNCTIONALTHRESHOLDPOWER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingFunctionalThresholdPower");
540
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGPOWER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingPower");
541
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingSpeed");
542
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYBIOTIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryBiotin");
543
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCAFFEINE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCaffeine");
544
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCALCIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCalcium");
545
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCARBOHYDRATES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCarbohydrates");
546
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHLORIDE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryChloride");
547
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHOLESTEROL: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCholesterol");
548
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHROMIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryChromium");
549
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCOPPER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCopper");
550
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYENERGYCONSUMED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryEnergyConsumed");
565
551
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATMONOUNSATURATED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFatMonounsaturated");
552
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATPOLYUNSATURATED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFatPolyunsaturated");
566
553
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATSATURATED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFatSaturated");
567
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHOLESTEROL: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCholesterol");
568
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSODIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietarySodium");
569
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCARBOHYDRATES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCarbohydrates");
554
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFATTOTAL: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFatTotal");
570
555
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFIBER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFiber");
571
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSUGAR: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietarySugar");
572
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYENERGYCONSUMED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryEnergyConsumed");
556
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFOLATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFolate");
557
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIODINE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryIodine");
558
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIRON: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryIron");
559
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMAGNESIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryMagnesium");
560
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMANGANESE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryManganese");
561
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMOLYBDENUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryMolybdenum");
562
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYNIACIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryNiacin");
563
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPANTOTHENICACID: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryPantothenicAcid");
564
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPHOSPHORUS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryPhosphorus");
565
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPOTASSIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryPotassium");
573
566
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPROTEIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryProtein");
567
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYRIBOFLAVIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryRiboflavin");
568
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSELENIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietarySelenium");
569
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSODIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietarySodium");
570
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSUGAR: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietarySugar");
571
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYTHIAMIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryThiamin");
574
572
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINA: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminA");
575
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB6: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminB6");
576
573
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB12: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminB12");
574
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINB6: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminB6");
577
575
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminC");
578
576
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMIND: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminD");
579
577
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminE");
580
578
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYVITAMINK: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryVitaminK");
581
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCALCIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCalcium");
582
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIRON: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryIron");
583
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYTHIAMIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryThiamin");
584
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYRIBOFLAVIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryRiboflavin");
585
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYNIACIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryNiacin");
586
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYFOLATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryFolate");
587
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYBIOTIN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryBiotin");
588
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPANTOTHENICACID: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryPantothenicAcid");
589
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPHOSPHORUS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryPhosphorus");
590
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYIODINE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryIodine");
591
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMAGNESIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryMagnesium");
592
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYZINC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryZinc");
593
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYSELENIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietarySelenium");
594
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCOPPER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCopper");
595
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMANGANESE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryManganese");
596
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHROMIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryChromium");
597
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYMOLYBDENUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryMolybdenum");
598
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCHLORIDE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryChloride");
599
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYPOTASSIUM: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryPotassium");
600
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYCAFFEINE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryCaffeine");
601
579
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYWATER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryWater");
602
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSIXMINUTEWALKTESTDISTANCE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierSixMinuteWalkTestDistance");
603
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingSpeed");
604
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSTEPLENGTH: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingStepLength");
605
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGASYMMETRYPERCENTAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingAsymmetryPercentage");
606
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGDOUBLESUPPORTPERCENTAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingDoubleSupportPercentage");
607
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRASCENTSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierStairAscentSpeed");
608
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRDESCENTSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierStairDescentSpeed");
609
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUVEXPOSURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierUVExposure");
610
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLEMOVETIME: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleMoveTime");
611
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFALCOHOLICBEVERAGES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierNumberOfAlcoholicBeverages");
612
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUNDERWATERDEPTH: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierUnderwaterDepth");
613
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWATERTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWaterTemperature");
614
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGWRISTTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleSleepingWristTemperature");
615
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERAPPLESLEEPINGBREATHINGDISTURBANCES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances");
616
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERTIMEINDAYLIGHT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierTimeInDaylight");
617
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPHYSICALEFFORT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPhysicalEffort");
618
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingSpeed");
619
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGPOWER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingPower");
620
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGFUNCTIONALTHRESHOLDPOWER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingFunctionalThresholdPower");
621
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCYCLINGCADENCE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCyclingCadence");
622
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALSOUNDREDUCTION: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierEnvironmentalSoundReduction");
623
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATERECOVERYONEMINUTE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeartRateRecoveryOneMinute");
624
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGGROUNDCONTACTTIME: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningGroundContactTime");
625
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSTRIDELENGTH: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningStrideLength");
626
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGPOWER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningPower");
627
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGVERTICALOSCILLATION: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningVerticalOscillation");
628
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningSpeed");
629
- case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERCROSSCOUNTRYSKIINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierCrossCountrySkiingSpeed");
580
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDIETARYZINC: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDietaryZinc");
630
581
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCECROSSCOUNTRYSKIING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceCrossCountrySkiing");
582
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCECYCLING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceCycling");
583
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEDOWNHILLSNOWSPORTS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceDownhillSnowSports");
631
584
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEPADDLESPORTS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistancePaddleSports");
632
585
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEROWING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceRowing");
633
586
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCESKATINGSPORTS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceSkatingSports");
587
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCESWIMMING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceSwimming");
588
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWALKINGRUNNING: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceWalkingRunning");
589
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERDISTANCEWHEELCHAIR: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierDistanceWheelchair");
590
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERELECTRODERMALACTIVITY: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierElectrodermalActivity");
591
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALAUDIOEXPOSURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierEnvironmentalAudioExposure");
592
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERENVIRONMENTALSOUNDREDUCTION: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierEnvironmentalSoundReduction");
634
593
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERESTIMATEDWORKOUTEFFORTSCORE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierEstimatedWorkoutEffortScore");
594
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFLIGHTSCLIMBED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierFlightsClimbed");
595
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDEXPIRATORYVOLUME1: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierForcedExpiratoryVolume1");
596
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERFORCEDVITALCAPACITY: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierForcedVitalCapacity");
597
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEADPHONEAUDIOEXPOSURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeadphoneAudioExposure");
598
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeartRate");
599
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATERECOVERYONEMINUTE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeartRateRecoveryOneMinute");
600
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEARTRATEVARIABILITYSDNN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeartRateVariabilitySDNN");
601
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERHEIGHT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierHeight");
602
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINHALERUSAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierInhalerUsage");
603
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERINSULINDELIVERY: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierInsulinDelivery");
604
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERLEANBODYMASS: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierLeanBodyMass");
605
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNIKEFUEL: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierNikeFuel");
606
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFALCOHOLICBEVERAGES: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierNumberOfAlcoholicBeverages");
607
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERNUMBEROFTIMESFALLEN: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierNumberOfTimesFallen");
608
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIEROXYGENSATURATION: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierOxygenSaturation");
635
609
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPADDLESPORTSSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPaddleSportsSpeed");
610
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPEAKEXPIRATORYFLOWRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPeakExpiratoryFlowRate");
611
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPERIPHERALPERFUSIONINDEX: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPeripheralPerfusionIndex");
612
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPHYSICALEFFORT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPhysicalEffort");
613
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERPUSHCOUNT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierPushCount");
614
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESPIRATORYRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRespiratoryRate");
615
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRESTINGHEARTRATE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRestingHeartRate");
636
616
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERROWINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRowingSpeed");
617
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGGROUNDCONTACTTIME: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningGroundContactTime");
618
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGPOWER: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningPower");
619
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningSpeed");
620
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGSTRIDELENGTH: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningStrideLength");
621
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERRUNNINGVERTICALOSCILLATION: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierRunningVerticalOscillation");
622
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSIXMINUTEWALKTESTDISTANCE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierSixMinuteWalkTestDistance");
623
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRASCENTSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierStairAscentSpeed");
624
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTAIRDESCENTSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierStairDescentSpeed");
625
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSTEPCOUNT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierStepCount");
626
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERSWIMMINGSTROKECOUNT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierSwimmingStrokeCount");
627
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERTIMEINDAYLIGHT: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierTimeInDaylight");
628
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUNDERWATERDEPTH: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierUnderwaterDepth");
629
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERUVEXPOSURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierUVExposure");
630
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERVO2MAX: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierVO2Max");
631
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWAISTCIRCUMFERENCE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWaistCircumference");
632
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGASYMMETRYPERCENTAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingAsymmetryPercentage");
633
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGDOUBLESUPPORTPERCENTAGE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingDoubleSupportPercentage");
634
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSPEED: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingSpeed");
635
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWALKINGSTEPLENGTH: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWalkingStepLength");
636
+ case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWATERTEMPERATURE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWaterTemperature");
637
637
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKQUANTITYTYPEIDENTIFIERWORKOUTEFFORTSCORE: return JSIConverter<std::string>::toJSI(runtime, "HKQuantityTypeIdentifierWorkoutEffortScore");
638
638
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKSTATEOFMINDTYPEIDENTIFIER: return JSIConverter<std::string>::toJSI(runtime, "HKStateOfMindTypeIdentifier");
639
639
  case margelo::nitro::healthkit::SampleTypeIdentifier::HKAUDIOGRAMSAMPLETYPE: return JSIConverter<std::string>::toJSI(runtime, "HKAudiogramSampleType");
@@ -653,196 +653,196 @@ namespace margelo::nitro {
653
653
  std::string unionValue = JSIConverter<std::string>::fromJSI(runtime, value);
654
654
  switch (hashString(unionValue.c_str(), unionValue.size())) {
655
655
  case hashString("HKCategoryTypeIdentifierAppleStandHour"):
656
+ case hashString("HKCategoryTypeIdentifierHeadphoneAudioExposureEvent"):
656
657
  case hashString("HKCategoryTypeIdentifierHighHeartRateEvent"):
658
+ case hashString("HKCategoryTypeIdentifierHypertensionEvent"):
657
659
  case hashString("HKCategoryTypeIdentifierLowHeartRateEvent"):
658
- case hashString("HKCategoryTypeIdentifierHeadphoneAudioExposureEvent"):
659
- case hashString("HKCategoryTypeIdentifierSleepAnalysis"):
660
- case hashString("HKCategoryTypeIdentifierCervicalMucusQuality"):
661
- case hashString("HKCategoryTypeIdentifierOvulationTestResult"):
662
- case hashString("HKCategoryTypeIdentifierMenstrualFlow"):
663
- case hashString("HKCategoryTypeIdentifierIntermenstrualBleeding"):
664
- case hashString("HKCategoryTypeIdentifierSexualActivity"):
665
- case hashString("HKCategoryTypeIdentifierMindfulSession"):
666
- case hashString("HKCategoryTypeIdentifierIrregularHeartRhythmEvent"):
667
- case hashString("HKCategoryTypeIdentifierAudioExposureEvent"):
668
- case hashString("HKCategoryTypeIdentifierToothbrushingEvent"):
669
- case hashString("HKCategoryTypeIdentifierLowCardioFitnessEvent"):
670
- case hashString("HKCategoryTypeIdentifierContraceptive"):
671
- case hashString("HKCategoryTypeIdentifierLactation"):
672
- case hashString("HKCategoryTypeIdentifierPregnancy"):
673
- case hashString("HKCategoryTypeIdentifierPregnancyTestResult"):
674
- case hashString("HKCategoryTypeIdentifierProgesteroneTestResult"):
675
- case hashString("HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent"):
676
- case hashString("HKCategoryTypeIdentifierAppleWalkingSteadinessEvent"):
677
- case hashString("HKCategoryTypeIdentifierHandwashingEvent"):
678
660
  case hashString("HKCategoryTypeIdentifierAbdominalCramps"):
679
661
  case hashString("HKCategoryTypeIdentifierAcne"):
680
662
  case hashString("HKCategoryTypeIdentifierAppetiteChanges"):
663
+ case hashString("HKCategoryTypeIdentifierAppleWalkingSteadinessEvent"):
664
+ case hashString("HKCategoryTypeIdentifierAudioExposureEvent"):
681
665
  case hashString("HKCategoryTypeIdentifierBladderIncontinence"):
666
+ case hashString("HKCategoryTypeIdentifierBleedingAfterPregnancy"):
667
+ case hashString("HKCategoryTypeIdentifierBleedingDuringPregnancy"):
682
668
  case hashString("HKCategoryTypeIdentifierBloating"):
683
669
  case hashString("HKCategoryTypeIdentifierBreastPain"):
670
+ case hashString("HKCategoryTypeIdentifierCervicalMucusQuality"):
684
671
  case hashString("HKCategoryTypeIdentifierChestTightnessOrPain"):
685
672
  case hashString("HKCategoryTypeIdentifierChills"):
686
673
  case hashString("HKCategoryTypeIdentifierConstipation"):
674
+ case hashString("HKCategoryTypeIdentifierContraceptive"):
687
675
  case hashString("HKCategoryTypeIdentifierCoughing"):
688
676
  case hashString("HKCategoryTypeIdentifierDiarrhea"):
689
677
  case hashString("HKCategoryTypeIdentifierDizziness"):
690
678
  case hashString("HKCategoryTypeIdentifierDrySkin"):
679
+ case hashString("HKCategoryTypeIdentifierEnvironmentalAudioExposureEvent"):
691
680
  case hashString("HKCategoryTypeIdentifierFainting"):
692
681
  case hashString("HKCategoryTypeIdentifierFatigue"):
693
682
  case hashString("HKCategoryTypeIdentifierFever"):
694
683
  case hashString("HKCategoryTypeIdentifierGeneralizedBodyAche"):
695
684
  case hashString("HKCategoryTypeIdentifierHairLoss"):
685
+ case hashString("HKCategoryTypeIdentifierHandwashingEvent"):
696
686
  case hashString("HKCategoryTypeIdentifierHeadache"):
697
687
  case hashString("HKCategoryTypeIdentifierHeartburn"):
698
688
  case hashString("HKCategoryTypeIdentifierHotFlashes"):
689
+ case hashString("HKCategoryTypeIdentifierInfrequentMenstrualCycles"):
690
+ case hashString("HKCategoryTypeIdentifierIntermenstrualBleeding"):
691
+ case hashString("HKCategoryTypeIdentifierIrregularHeartRhythmEvent"):
692
+ case hashString("HKCategoryTypeIdentifierIrregularMenstrualCycles"):
693
+ case hashString("HKCategoryTypeIdentifierLactation"):
699
694
  case hashString("HKCategoryTypeIdentifierLossOfSmell"):
700
695
  case hashString("HKCategoryTypeIdentifierLossOfTaste"):
696
+ case hashString("HKCategoryTypeIdentifierLowCardioFitnessEvent"):
701
697
  case hashString("HKCategoryTypeIdentifierLowerBackPain"):
702
698
  case hashString("HKCategoryTypeIdentifierMemoryLapse"):
699
+ case hashString("HKCategoryTypeIdentifierMenstrualFlow"):
700
+ case hashString("HKCategoryTypeIdentifierMindfulSession"):
703
701
  case hashString("HKCategoryTypeIdentifierMoodChanges"):
704
702
  case hashString("HKCategoryTypeIdentifierNausea"):
705
703
  case hashString("HKCategoryTypeIdentifierNightSweats"):
704
+ case hashString("HKCategoryTypeIdentifierOvulationTestResult"):
706
705
  case hashString("HKCategoryTypeIdentifierPelvicPain"):
706
+ case hashString("HKCategoryTypeIdentifierPersistentIntermenstrualBleeding"):
707
+ case hashString("HKCategoryTypeIdentifierPregnancy"):
708
+ case hashString("HKCategoryTypeIdentifierPregnancyTestResult"):
709
+ case hashString("HKCategoryTypeIdentifierProgesteroneTestResult"):
710
+ case hashString("HKCategoryTypeIdentifierProlongedMenstrualPeriods"):
707
711
  case hashString("HKCategoryTypeIdentifierRapidPoundingOrFlutteringHeartbeat"):
708
712
  case hashString("HKCategoryTypeIdentifierRunnyNose"):
713
+ case hashString("HKCategoryTypeIdentifierSexualActivity"):
709
714
  case hashString("HKCategoryTypeIdentifierShortnessOfBreath"):
710
715
  case hashString("HKCategoryTypeIdentifierSinusCongestion"):
711
716
  case hashString("HKCategoryTypeIdentifierSkippedHeartbeat"):
717
+ case hashString("HKCategoryTypeIdentifierSleepAnalysis"):
718
+ case hashString("HKCategoryTypeIdentifierSleepApneaEvent"):
712
719
  case hashString("HKCategoryTypeIdentifierSleepChanges"):
713
720
  case hashString("HKCategoryTypeIdentifierSoreThroat"):
721
+ case hashString("HKCategoryTypeIdentifierToothbrushingEvent"):
714
722
  case hashString("HKCategoryTypeIdentifierVaginalDryness"):
715
723
  case hashString("HKCategoryTypeIdentifierVomiting"):
716
724
  case hashString("HKCategoryTypeIdentifierWheezing"):
717
- case hashString("HKCategoryTypeIdentifierBleedingAfterPregnancy"):
718
- case hashString("HKCategoryTypeIdentifierBleedingDuringPregnancy"):
719
- case hashString("HKCategoryTypeIdentifierInfrequentMenstrualCycles"):
720
- case hashString("HKCategoryTypeIdentifierIrregularMenstrualCycles"):
721
- case hashString("HKCategoryTypeIdentifierPersistentIntermenstrualBleeding"):
722
- case hashString("HKCategoryTypeIdentifierProlongedMenstrualPeriods"):
723
- case hashString("HKCategoryTypeIdentifierSleepApneaEvent"):
724
725
  case hashString("HKCorrelationTypeIdentifierBloodPressure"):
725
726
  case hashString("HKCorrelationTypeIdentifierFood"):
726
- case hashString("HKQuantityTypeIdentifierWalkingHeartRateAverage"):
727
- case hashString("HKQuantityTypeIdentifierAtrialFibrillationBurden"):
728
727
  case hashString("HKQuantityTypeIdentifierAppleExerciseTime"):
729
728
  case hashString("HKQuantityTypeIdentifierAppleStandTime"):
730
729
  case hashString("HKQuantityTypeIdentifierAppleWalkingSteadiness"):
731
- case hashString("HKQuantityTypeIdentifierBodyMassIndex"):
732
- case hashString("HKQuantityTypeIdentifierBodyFatPercentage"):
733
- case hashString("HKQuantityTypeIdentifierHeight"):
734
- case hashString("HKQuantityTypeIdentifierBodyMass"):
735
- case hashString("HKQuantityTypeIdentifierLeanBodyMass"):
736
- case hashString("HKQuantityTypeIdentifierWaistCircumference"):
737
- case hashString("HKQuantityTypeIdentifierStepCount"):
738
- case hashString("HKQuantityTypeIdentifierDistanceWalkingRunning"):
739
- case hashString("HKQuantityTypeIdentifierDistanceCycling"):
740
- case hashString("HKQuantityTypeIdentifierDistanceWheelchair"):
741
- case hashString("HKQuantityTypeIdentifierBasalEnergyBurned"):
730
+ case hashString("HKQuantityTypeIdentifierAtrialFibrillationBurden"):
731
+ case hashString("HKQuantityTypeIdentifierWalkingHeartRateAverage"):
742
732
  case hashString("HKQuantityTypeIdentifierActiveEnergyBurned"):
743
- case hashString("HKQuantityTypeIdentifierFlightsClimbed"):
744
- case hashString("HKQuantityTypeIdentifierNikeFuel"):
745
- case hashString("HKQuantityTypeIdentifierPushCount"):
746
- case hashString("HKQuantityTypeIdentifierDistanceSwimming"):
747
- case hashString("HKQuantityTypeIdentifierSwimmingStrokeCount"):
748
- case hashString("HKQuantityTypeIdentifierVO2Max"):
749
- case hashString("HKQuantityTypeIdentifierDistanceDownhillSnowSports"):
750
- case hashString("HKQuantityTypeIdentifierHeartRate"):
751
- case hashString("HKQuantityTypeIdentifierBodyTemperature"):
733
+ case hashString("HKQuantityTypeIdentifierAppleMoveTime"):
734
+ case hashString("HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances"):
735
+ case hashString("HKQuantityTypeIdentifierAppleSleepingWristTemperature"):
752
736
  case hashString("HKQuantityTypeIdentifierBasalBodyTemperature"):
753
- case hashString("HKQuantityTypeIdentifierBloodPressureSystolic"):
754
- case hashString("HKQuantityTypeIdentifierBloodPressureDiastolic"):
755
- case hashString("HKQuantityTypeIdentifierRespiratoryRate"):
756
- case hashString("HKQuantityTypeIdentifierRestingHeartRate"):
757
- case hashString("HKQuantityTypeIdentifierHeartRateVariabilitySDNN"):
758
- case hashString("HKQuantityTypeIdentifierOxygenSaturation"):
759
- case hashString("HKQuantityTypeIdentifierPeripheralPerfusionIndex"):
760
- case hashString("HKQuantityTypeIdentifierBloodGlucose"):
761
- case hashString("HKQuantityTypeIdentifierBloodKetones"):
762
- case hashString("HKQuantityTypeIdentifierNumberOfTimesFallen"):
763
- case hashString("HKQuantityTypeIdentifierElectrodermalActivity"):
764
- case hashString("HKQuantityTypeIdentifierInhalerUsage"):
765
- case hashString("HKQuantityTypeIdentifierInsulinDelivery"):
737
+ case hashString("HKQuantityTypeIdentifierBasalEnergyBurned"):
766
738
  case hashString("HKQuantityTypeIdentifierBloodAlcoholContent"):
767
- case hashString("HKQuantityTypeIdentifierForcedVitalCapacity"):
768
- case hashString("HKQuantityTypeIdentifierForcedExpiratoryVolume1"):
769
- case hashString("HKQuantityTypeIdentifierPeakExpiratoryFlowRate"):
770
- case hashString("HKQuantityTypeIdentifierEnvironmentalAudioExposure"):
771
- case hashString("HKQuantityTypeIdentifierHeadphoneAudioExposure"):
772
- case hashString("HKQuantityTypeIdentifierDietaryFatTotal"):
773
- case hashString("HKQuantityTypeIdentifierDietaryFatPolyunsaturated"):
739
+ case hashString("HKQuantityTypeIdentifierBloodGlucose"):
740
+ case hashString("HKQuantityTypeIdentifierBloodPressureDiastolic"):
741
+ case hashString("HKQuantityTypeIdentifierBloodPressureSystolic"):
742
+ case hashString("HKQuantityTypeIdentifierBodyFatPercentage"):
743
+ case hashString("HKQuantityTypeIdentifierBodyMass"):
744
+ case hashString("HKQuantityTypeIdentifierBodyMassIndex"):
745
+ case hashString("HKQuantityTypeIdentifierBodyTemperature"):
746
+ case hashString("HKQuantityTypeIdentifierCrossCountrySkiingSpeed"):
747
+ case hashString("HKQuantityTypeIdentifierCyclingCadence"):
748
+ case hashString("HKQuantityTypeIdentifierCyclingFunctionalThresholdPower"):
749
+ case hashString("HKQuantityTypeIdentifierCyclingPower"):
750
+ case hashString("HKQuantityTypeIdentifierCyclingSpeed"):
751
+ case hashString("HKQuantityTypeIdentifierDietaryBiotin"):
752
+ case hashString("HKQuantityTypeIdentifierDietaryCaffeine"):
753
+ case hashString("HKQuantityTypeIdentifierDietaryCalcium"):
754
+ case hashString("HKQuantityTypeIdentifierDietaryCarbohydrates"):
755
+ case hashString("HKQuantityTypeIdentifierDietaryChloride"):
756
+ case hashString("HKQuantityTypeIdentifierDietaryCholesterol"):
757
+ case hashString("HKQuantityTypeIdentifierDietaryChromium"):
758
+ case hashString("HKQuantityTypeIdentifierDietaryCopper"):
759
+ case hashString("HKQuantityTypeIdentifierDietaryEnergyConsumed"):
774
760
  case hashString("HKQuantityTypeIdentifierDietaryFatMonounsaturated"):
761
+ case hashString("HKQuantityTypeIdentifierDietaryFatPolyunsaturated"):
775
762
  case hashString("HKQuantityTypeIdentifierDietaryFatSaturated"):
776
- case hashString("HKQuantityTypeIdentifierDietaryCholesterol"):
777
- case hashString("HKQuantityTypeIdentifierDietarySodium"):
778
- case hashString("HKQuantityTypeIdentifierDietaryCarbohydrates"):
763
+ case hashString("HKQuantityTypeIdentifierDietaryFatTotal"):
779
764
  case hashString("HKQuantityTypeIdentifierDietaryFiber"):
780
- case hashString("HKQuantityTypeIdentifierDietarySugar"):
781
- case hashString("HKQuantityTypeIdentifierDietaryEnergyConsumed"):
765
+ case hashString("HKQuantityTypeIdentifierDietaryFolate"):
766
+ case hashString("HKQuantityTypeIdentifierDietaryIodine"):
767
+ case hashString("HKQuantityTypeIdentifierDietaryIron"):
768
+ case hashString("HKQuantityTypeIdentifierDietaryMagnesium"):
769
+ case hashString("HKQuantityTypeIdentifierDietaryManganese"):
770
+ case hashString("HKQuantityTypeIdentifierDietaryMolybdenum"):
771
+ case hashString("HKQuantityTypeIdentifierDietaryNiacin"):
772
+ case hashString("HKQuantityTypeIdentifierDietaryPantothenicAcid"):
773
+ case hashString("HKQuantityTypeIdentifierDietaryPhosphorus"):
774
+ case hashString("HKQuantityTypeIdentifierDietaryPotassium"):
782
775
  case hashString("HKQuantityTypeIdentifierDietaryProtein"):
776
+ case hashString("HKQuantityTypeIdentifierDietaryRiboflavin"):
777
+ case hashString("HKQuantityTypeIdentifierDietarySelenium"):
778
+ case hashString("HKQuantityTypeIdentifierDietarySodium"):
779
+ case hashString("HKQuantityTypeIdentifierDietarySugar"):
780
+ case hashString("HKQuantityTypeIdentifierDietaryThiamin"):
783
781
  case hashString("HKQuantityTypeIdentifierDietaryVitaminA"):
784
- case hashString("HKQuantityTypeIdentifierDietaryVitaminB6"):
785
782
  case hashString("HKQuantityTypeIdentifierDietaryVitaminB12"):
783
+ case hashString("HKQuantityTypeIdentifierDietaryVitaminB6"):
786
784
  case hashString("HKQuantityTypeIdentifierDietaryVitaminC"):
787
785
  case hashString("HKQuantityTypeIdentifierDietaryVitaminD"):
788
786
  case hashString("HKQuantityTypeIdentifierDietaryVitaminE"):
789
787
  case hashString("HKQuantityTypeIdentifierDietaryVitaminK"):
790
- case hashString("HKQuantityTypeIdentifierDietaryCalcium"):
791
- case hashString("HKQuantityTypeIdentifierDietaryIron"):
792
- case hashString("HKQuantityTypeIdentifierDietaryThiamin"):
793
- case hashString("HKQuantityTypeIdentifierDietaryRiboflavin"):
794
- case hashString("HKQuantityTypeIdentifierDietaryNiacin"):
795
- case hashString("HKQuantityTypeIdentifierDietaryFolate"):
796
- case hashString("HKQuantityTypeIdentifierDietaryBiotin"):
797
- case hashString("HKQuantityTypeIdentifierDietaryPantothenicAcid"):
798
- case hashString("HKQuantityTypeIdentifierDietaryPhosphorus"):
799
- case hashString("HKQuantityTypeIdentifierDietaryIodine"):
800
- case hashString("HKQuantityTypeIdentifierDietaryMagnesium"):
801
- case hashString("HKQuantityTypeIdentifierDietaryZinc"):
802
- case hashString("HKQuantityTypeIdentifierDietarySelenium"):
803
- case hashString("HKQuantityTypeIdentifierDietaryCopper"):
804
- case hashString("HKQuantityTypeIdentifierDietaryManganese"):
805
- case hashString("HKQuantityTypeIdentifierDietaryChromium"):
806
- case hashString("HKQuantityTypeIdentifierDietaryMolybdenum"):
807
- case hashString("HKQuantityTypeIdentifierDietaryChloride"):
808
- case hashString("HKQuantityTypeIdentifierDietaryPotassium"):
809
- case hashString("HKQuantityTypeIdentifierDietaryCaffeine"):
810
788
  case hashString("HKQuantityTypeIdentifierDietaryWater"):
811
- case hashString("HKQuantityTypeIdentifierSixMinuteWalkTestDistance"):
812
- case hashString("HKQuantityTypeIdentifierWalkingSpeed"):
813
- case hashString("HKQuantityTypeIdentifierWalkingStepLength"):
814
- case hashString("HKQuantityTypeIdentifierWalkingAsymmetryPercentage"):
815
- case hashString("HKQuantityTypeIdentifierWalkingDoubleSupportPercentage"):
816
- case hashString("HKQuantityTypeIdentifierStairAscentSpeed"):
817
- case hashString("HKQuantityTypeIdentifierStairDescentSpeed"):
818
- case hashString("HKQuantityTypeIdentifierUVExposure"):
819
- case hashString("HKQuantityTypeIdentifierAppleMoveTime"):
820
- case hashString("HKQuantityTypeIdentifierNumberOfAlcoholicBeverages"):
821
- case hashString("HKQuantityTypeIdentifierUnderwaterDepth"):
822
- case hashString("HKQuantityTypeIdentifierWaterTemperature"):
823
- case hashString("HKQuantityTypeIdentifierAppleSleepingWristTemperature"):
824
- case hashString("HKQuantityTypeIdentifierAppleSleepingBreathingDisturbances"):
825
- case hashString("HKQuantityTypeIdentifierTimeInDaylight"):
826
- case hashString("HKQuantityTypeIdentifierPhysicalEffort"):
827
- case hashString("HKQuantityTypeIdentifierCyclingSpeed"):
828
- case hashString("HKQuantityTypeIdentifierCyclingPower"):
829
- case hashString("HKQuantityTypeIdentifierCyclingFunctionalThresholdPower"):
830
- case hashString("HKQuantityTypeIdentifierCyclingCadence"):
831
- case hashString("HKQuantityTypeIdentifierEnvironmentalSoundReduction"):
832
- case hashString("HKQuantityTypeIdentifierHeartRateRecoveryOneMinute"):
833
- case hashString("HKQuantityTypeIdentifierRunningGroundContactTime"):
834
- case hashString("HKQuantityTypeIdentifierRunningStrideLength"):
835
- case hashString("HKQuantityTypeIdentifierRunningPower"):
836
- case hashString("HKQuantityTypeIdentifierRunningVerticalOscillation"):
837
- case hashString("HKQuantityTypeIdentifierRunningSpeed"):
838
- case hashString("HKQuantityTypeIdentifierCrossCountrySkiingSpeed"):
789
+ case hashString("HKQuantityTypeIdentifierDietaryZinc"):
839
790
  case hashString("HKQuantityTypeIdentifierDistanceCrossCountrySkiing"):
791
+ case hashString("HKQuantityTypeIdentifierDistanceCycling"):
792
+ case hashString("HKQuantityTypeIdentifierDistanceDownhillSnowSports"):
840
793
  case hashString("HKQuantityTypeIdentifierDistancePaddleSports"):
841
794
  case hashString("HKQuantityTypeIdentifierDistanceRowing"):
842
795
  case hashString("HKQuantityTypeIdentifierDistanceSkatingSports"):
796
+ case hashString("HKQuantityTypeIdentifierDistanceSwimming"):
797
+ case hashString("HKQuantityTypeIdentifierDistanceWalkingRunning"):
798
+ case hashString("HKQuantityTypeIdentifierDistanceWheelchair"):
799
+ case hashString("HKQuantityTypeIdentifierElectrodermalActivity"):
800
+ case hashString("HKQuantityTypeIdentifierEnvironmentalAudioExposure"):
801
+ case hashString("HKQuantityTypeIdentifierEnvironmentalSoundReduction"):
843
802
  case hashString("HKQuantityTypeIdentifierEstimatedWorkoutEffortScore"):
803
+ case hashString("HKQuantityTypeIdentifierFlightsClimbed"):
804
+ case hashString("HKQuantityTypeIdentifierForcedExpiratoryVolume1"):
805
+ case hashString("HKQuantityTypeIdentifierForcedVitalCapacity"):
806
+ case hashString("HKQuantityTypeIdentifierHeadphoneAudioExposure"):
807
+ case hashString("HKQuantityTypeIdentifierHeartRate"):
808
+ case hashString("HKQuantityTypeIdentifierHeartRateRecoveryOneMinute"):
809
+ case hashString("HKQuantityTypeIdentifierHeartRateVariabilitySDNN"):
810
+ case hashString("HKQuantityTypeIdentifierHeight"):
811
+ case hashString("HKQuantityTypeIdentifierInhalerUsage"):
812
+ case hashString("HKQuantityTypeIdentifierInsulinDelivery"):
813
+ case hashString("HKQuantityTypeIdentifierLeanBodyMass"):
814
+ case hashString("HKQuantityTypeIdentifierNikeFuel"):
815
+ case hashString("HKQuantityTypeIdentifierNumberOfAlcoholicBeverages"):
816
+ case hashString("HKQuantityTypeIdentifierNumberOfTimesFallen"):
817
+ case hashString("HKQuantityTypeIdentifierOxygenSaturation"):
844
818
  case hashString("HKQuantityTypeIdentifierPaddleSportsSpeed"):
819
+ case hashString("HKQuantityTypeIdentifierPeakExpiratoryFlowRate"):
820
+ case hashString("HKQuantityTypeIdentifierPeripheralPerfusionIndex"):
821
+ case hashString("HKQuantityTypeIdentifierPhysicalEffort"):
822
+ case hashString("HKQuantityTypeIdentifierPushCount"):
823
+ case hashString("HKQuantityTypeIdentifierRespiratoryRate"):
824
+ case hashString("HKQuantityTypeIdentifierRestingHeartRate"):
845
825
  case hashString("HKQuantityTypeIdentifierRowingSpeed"):
826
+ case hashString("HKQuantityTypeIdentifierRunningGroundContactTime"):
827
+ case hashString("HKQuantityTypeIdentifierRunningPower"):
828
+ case hashString("HKQuantityTypeIdentifierRunningSpeed"):
829
+ case hashString("HKQuantityTypeIdentifierRunningStrideLength"):
830
+ case hashString("HKQuantityTypeIdentifierRunningVerticalOscillation"):
831
+ case hashString("HKQuantityTypeIdentifierSixMinuteWalkTestDistance"):
832
+ case hashString("HKQuantityTypeIdentifierStairAscentSpeed"):
833
+ case hashString("HKQuantityTypeIdentifierStairDescentSpeed"):
834
+ case hashString("HKQuantityTypeIdentifierStepCount"):
835
+ case hashString("HKQuantityTypeIdentifierSwimmingStrokeCount"):
836
+ case hashString("HKQuantityTypeIdentifierTimeInDaylight"):
837
+ case hashString("HKQuantityTypeIdentifierUnderwaterDepth"):
838
+ case hashString("HKQuantityTypeIdentifierUVExposure"):
839
+ case hashString("HKQuantityTypeIdentifierVO2Max"):
840
+ case hashString("HKQuantityTypeIdentifierWaistCircumference"):
841
+ case hashString("HKQuantityTypeIdentifierWalkingAsymmetryPercentage"):
842
+ case hashString("HKQuantityTypeIdentifierWalkingDoubleSupportPercentage"):
843
+ case hashString("HKQuantityTypeIdentifierWalkingSpeed"):
844
+ case hashString("HKQuantityTypeIdentifierWalkingStepLength"):
845
+ case hashString("HKQuantityTypeIdentifierWaterTemperature"):
846
846
  case hashString("HKQuantityTypeIdentifierWorkoutEffortScore"):
847
847
  case hashString("HKStateOfMindTypeIdentifier"):
848
848
  case hashString("HKAudiogramSampleType"):