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