@kingstinct/react-native-healthkit 7.0.5 → 7.1.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 (37) hide show
  1. package/README.md +7 -31
  2. package/ios/ReactNativeHealthkit.swift +68 -2
  3. package/lib/commonjs/hooks/useIsHealthDataAvailable.js +5 -0
  4. package/lib/commonjs/hooks/useIsHealthDataAvailable.js.map +1 -1
  5. package/lib/commonjs/index.ios.js +121 -15
  6. package/lib/commonjs/index.ios.js.map +1 -1
  7. package/lib/commonjs/index.js +3 -1
  8. package/lib/commonjs/index.js.map +1 -1
  9. package/lib/commonjs/jest.setup.js +1 -0
  10. package/lib/commonjs/jest.setup.js.map +1 -1
  11. package/lib/commonjs/native-types.js +68 -32
  12. package/lib/commonjs/native-types.js.map +1 -1
  13. package/lib/commonjs/types.js.map +1 -1
  14. package/lib/module/hooks/useIsHealthDataAvailable.js +6 -0
  15. package/lib/module/hooks/useIsHealthDataAvailable.js.map +1 -1
  16. package/lib/module/index.ios.js +119 -15
  17. package/lib/module/index.ios.js.map +1 -1
  18. package/lib/module/index.js +3 -1
  19. package/lib/module/index.js.map +1 -1
  20. package/lib/module/jest.setup.js +1 -0
  21. package/lib/module/jest.setup.js.map +1 -1
  22. package/lib/module/native-types.js +65 -29
  23. package/lib/module/native-types.js.map +1 -1
  24. package/lib/module/types.js +59 -0
  25. package/lib/module/types.js.map +1 -1
  26. package/lib/typescript/src/hooks/useIsHealthDataAvailable.d.ts +5 -0
  27. package/lib/typescript/src/index.d.ts +50 -3
  28. package/lib/typescript/src/index.ios.d.ts +84 -3
  29. package/lib/typescript/src/native-types.d.ts +583 -38
  30. package/lib/typescript/src/types.d.ts +49 -0
  31. package/package.json +1 -1
  32. package/src/hooks/useIsHealthDataAvailable.ts +5 -0
  33. package/src/index.ios.tsx +132 -21
  34. package/src/index.tsx +6 -4
  35. package/src/jest.setup.ts +1 -0
  36. package/src/native-types.ts +692 -93
  37. package/src/types.ts +51 -2
@@ -1,10 +1,11 @@
1
+ import { Platform } from 'react-native';
1
2
  import useHealthkitAuthorization from './hooks/useHealthkitAuthorization';
2
3
  import useIsHealthDataAvailable from './hooks/useIsHealthDataAvailable';
3
4
  import useMostRecentCategorySample from './hooks/useMostRecentCategorySample';
4
5
  import useMostRecentQuantitySample from './hooks/useMostRecentQuantitySample';
5
6
  import useMostRecentWorkout from './hooks/useMostRecentWorkout';
6
7
  import useSubscribeToChanges from './hooks/useSubscribeToChanges';
7
- import Native from './native-types';
8
+ import Native, { HKQuantityTypeIdentifier } from './native-types';
8
9
  import deleteQuantitySample from './utils/deleteQuantitySample';
9
10
  import deleteSamples from './utils/deleteSamples';
10
11
  import getDateOfBirth from './utils/getDateOfBirth';
@@ -30,23 +31,105 @@ import saveCorrelationSample from './utils/saveCorrelationSample';
30
31
  import saveQuantitySample from './utils/saveQuantitySample';
31
32
  import saveWorkoutSample from './utils/saveWorkoutSample';
32
33
  import subscribeToChanges from './utils/subscribeToChanges';
33
- const Healthkit = {
34
- authorizationStatusFor: Native.authorizationStatusFor.bind(Native),
35
- isHealthDataAvailable: Native.isHealthDataAvailable.bind(Native),
36
- canAccessProtectedData: Native.canAccessProtectedData.bind(Native),
37
- disableAllBackgroundDelivery: Native.disableAllBackgroundDelivery.bind(Native),
38
- disableBackgroundDelivery: Native.disableBackgroundDelivery.bind(Native),
39
- enableBackgroundDelivery: Native.enableBackgroundDelivery.bind(Native),
34
+ const currentMajorVersionIOS = Platform.OS === 'ios' ? parseInt(Platform.Version, 10) : 0;
35
+ const allQuantityTypesList = [...Object.values(HKQuantityTypeIdentifier)];
36
+ const availableQuantityTypes = function () {
37
+ let majorVersionIOS = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : currentMajorVersionIOS;
38
+ if (majorVersionIOS >= 17) {
39
+ return allQuantityTypesList;
40
+ }
41
+
42
+ // remove types that are not available before iOS 17
43
+ return allQuantityTypesList.filter(type => ![HKQuantityTypeIdentifier.cyclingCadence, HKQuantityTypeIdentifier.cyclingFunctionalThresholdPower, HKQuantityTypeIdentifier.cyclingPower, HKQuantityTypeIdentifier.cyclingSpeed, HKQuantityTypeIdentifier.physicalEffort, HKQuantityTypeIdentifier.timeInDaylight].includes(type));
44
+ };
45
+ const authorizationStatusFor = Native.authorizationStatusFor.bind(Native);
46
+ const isHealthDataAvailable = Native.isHealthDataAvailable.bind(Native);
47
+ // Todo [>8]: Rename to align with Apple function name (isProtectedDataAvailable)
48
+ const canAccessProtectedData = Native.canAccessProtectedData.bind(Native);
49
+ const disableBackgroundDelivery = Native.disableBackgroundDelivery.bind(Native);
50
+ const disableAllBackgroundDelivery = Native.disableAllBackgroundDelivery.bind(Native);
51
+ const enableBackgroundDelivery = Native.enableBackgroundDelivery.bind(Native);
52
+ const getBiologicalSex = Native.getBiologicalSex.bind(Native);
53
+ const getFitzpatrickSkinType = Native.getFitzpatrickSkinType.bind(Native);
54
+ const getWheelchairUse = Native.getWheelchairUse.bind(Native);
55
+ const getBloodType = Native.getBloodType.bind(Native);
56
+ const getWorkoutRoutes = Native.getWorkoutRoutes.bind(Native);
57
+
58
+ /**
59
+ * @see {@link https://developer.apple.com/documentation/healthkit/about_the_healthkit_framework About the HealthKit Framework (Apple Docs)}
60
+ */
61
+ export default {
62
+ /**
63
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614154-authorizationstatus authorizationStatus(for:) (Apple Docs) }
64
+ * @see {@link https://developer.apple.com/documentation/healthkit/authorizing_access_to_health_data Authorizing access to health data (Apple Docs) }
65
+ */
66
+ authorizationStatusFor,
67
+ /**
68
+ *
69
+ * @returns All available quantity types for the current iOS version (currently excluding types that are not available before iOS 17)
70
+ */
71
+ availableQuantityTypes,
72
+ /**
73
+ * @description By default, HealthKit data is available on iOS and watchOS. HealthKit data is also available on iPadOS 17 or later. However, devices running in an enterprise environment may restrict access to HealthKit data.
74
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614180-ishealthdataavailable isHealthDataAvailable() (Apple Docs)}
75
+ * @returns {boolean} true if HealthKit is available; otherwise, false.
76
+ */
77
+ isHealthDataAvailable,
78
+ /**
79
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614181-isprotecteddataavailable isProtectedDataAvailable() (Apple Docs)}
80
+ * @see {@link https://developer.apple.com/documentation/healthkit/protecting_user_privacy#3705074 Protecting User Privacy - Access encrypted data (Apple Docs)}
81
+ * @returns {boolean} A Boolean value that indicates whether content protection is active.
82
+ */
83
+ isProtectedDataAvailable: canAccessProtectedData,
84
+ // Todo [>8]: Remove to align with Apple function name (isProtectedDataAvailable)
85
+ /**
86
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614181-isprotecteddataavailable isProtectedDataAvailable() (Apple Docs)}
87
+ * @see {@link https://developer.apple.com/documentation/healthkit/protecting_user_privacy#3705074 Protecting User Privacy - Access encrypted data (Apple Docs)}
88
+ * @deprecated Use {@link isProtectedDataAvailable} instead. Will be removed in next major version.
89
+ * @returns {boolean} A Boolean value that indicates whether content protection is active.
90
+ */
91
+ canAccessProtectedData,
92
+ /**
93
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614158-disableallbackgrounddelivery disableAllBackgroundDelivery(completion:) (Apple Docs)}
94
+ */
95
+ disableAllBackgroundDelivery,
96
+ /**
97
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614177-disablebackgrounddelivery disableBackgroundDelivery(for:withCompletion:) (Apple Docs)}
98
+ */
99
+ disableBackgroundDelivery,
100
+ /**
101
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614175-enablebackgrounddelivery enableBackgroundDelivery(for:frequency:withCompletion:) (Apple Docs)}
102
+ */
103
+ enableBackgroundDelivery,
40
104
  // simple convenience getters
41
- getBiologicalSex: Native.getBiologicalSex.bind(Native),
42
- getFitzpatrickSkinType: Native.getFitzpatrickSkinType.bind(Native),
43
- getWheelchairUse: Native.getWheelchairUse.bind(Native),
44
- getBloodType: Native.getBloodType.bind(Native),
45
- getWorkoutRoutes: Native.getWorkoutRoutes.bind(Native),
105
+ /**
106
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614171-biologicalsex biologicalSex() (Apple Docs)}
107
+ */
108
+ getBiologicalSex,
109
+ /**
110
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614161-fitzpatrickskintype fitzpatrickSkinType() (Apple Docs)}
111
+ */
112
+ getFitzpatrickSkinType,
113
+ /**
114
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1648356-wheelchairuse wheelchairUse() (Apple Docs)}
115
+ */
116
+ getWheelchairUse,
117
+ /**
118
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614164-bloodtype bloodType() (Apple Docs)}
119
+ */
120
+ getBloodType,
121
+ /**
122
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1648357-dateofbirthcomponents dateOfBirthComponents() (Apple Docs)}
123
+ */
46
124
  getDateOfBirth,
47
125
  getMostRecentQuantitySample,
48
126
  getMostRecentCategorySample,
49
127
  getMostRecentWorkout,
128
+ /**
129
+ * @see {@link https://developer.apple.com/documentation/healthkit/workouts_and_activity_rings/reading_route_data Reading route data (Apple Docs)}
130
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkworkoutroutequery HKWorkoutRouteQuery (Apple Docs)}
131
+ */
132
+ getWorkoutRoutes,
50
133
  getPreferredUnit,
51
134
  getPreferredUnits,
52
135
  getRequestStatusForAuthorization,
@@ -66,20 +149,41 @@ const Healthkit = {
66
149
  deleteQuantitySample,
67
150
  deleteSamples,
68
151
  // save methods
152
+ /**
153
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614168-savecategorysample save(_:withCompletion:) (Apple Docs)}
154
+ * @see {@link https://developer.apple.com/documentation/healthkit/saving_data_to_healthkit Saving data to HealthKit (Apple Docs)}
155
+ */
69
156
  saveCategorySample,
70
157
  saveCorrelationSample,
71
158
  saveQuantitySample,
72
159
  saveWorkoutSample,
73
160
  // subscriptions
74
161
  subscribeToChanges,
75
- // hooks
162
+ /**
163
+ * @returns the most recent sample for the given category type.
164
+ */
76
165
  useMostRecentCategorySample,
166
+ /**
167
+ * @returns the most recent sample for the given quantity type.
168
+ */
77
169
  useMostRecentQuantitySample,
170
+ /**
171
+ * @returns the most recent workout sample.
172
+ */
78
173
  useMostRecentWorkout,
79
174
  useSubscribeToChanges,
175
+ /**
176
+ * @description By default, HealthKit data is available on iOS and watchOS. HealthKit data is also available on iPadOS 17 or later. However, devices running in an enterprise environment may restrict access to HealthKit data.
177
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614180-ishealthdataavailable Apple Docs}
178
+ * @returns {boolean | null} true if HealthKit is available; otherwise, false. null while initializing.
179
+ */
80
180
  useIsHealthDataAvailable,
181
+ /**
182
+ * @description Hook to retrieve the current authorization status for the given types, and request authorization if needed.
183
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614152-requestauthorization Apple Docs - requestAuthorization}
184
+ * @see {@link https://developer.apple.com/documentation/healthkit/authorizing_access_to_health_data Apple Docs - Authorizing access to health data}
185
+ */
81
186
  useHealthkitAuthorization
82
187
  };
83
188
  export * from './types';
84
- export default Healthkit;
85
189
  //# sourceMappingURL=index.ios.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["useHealthkitAuthorization","useIsHealthDataAvailable","useMostRecentCategorySample","useMostRecentQuantitySample","useMostRecentWorkout","useSubscribeToChanges","Native","deleteQuantitySample","deleteSamples","getDateOfBirth","getMostRecentCategorySample","getMostRecentQuantitySample","getMostRecentWorkout","getPreferredUnit","getPreferredUnits","getRequestStatusForAuthorization","queryCategorySamples","queryCategorySamplesWithAnchor","queryCorrelationSamples","queryHeartbeatSeriesSamples","queryHeartbeatSeriesSamplesWithAnchor","queryQuantitySamples","queryQuantitySamplesWithAnchor","querySources","queryStatisticsForQuantity","queryWorkouts","requestAuthorization","saveCategorySample","saveCorrelationSample","saveQuantitySample","saveWorkoutSample","subscribeToChanges","Healthkit","authorizationStatusFor","bind","isHealthDataAvailable","canAccessProtectedData","disableAllBackgroundDelivery","disableBackgroundDelivery","enableBackgroundDelivery","getBiologicalSex","getFitzpatrickSkinType","getWheelchairUse","getBloodType","getWorkoutRoutes"],"sources":["index.ios.tsx"],"sourcesContent":["import useHealthkitAuthorization from './hooks/useHealthkitAuthorization'\nimport useIsHealthDataAvailable from './hooks/useIsHealthDataAvailable'\nimport useMostRecentCategorySample from './hooks/useMostRecentCategorySample'\nimport useMostRecentQuantitySample from './hooks/useMostRecentQuantitySample'\nimport useMostRecentWorkout from './hooks/useMostRecentWorkout'\nimport useSubscribeToChanges from './hooks/useSubscribeToChanges'\nimport Native from './native-types'\nimport deleteQuantitySample from './utils/deleteQuantitySample'\nimport deleteSamples from './utils/deleteSamples'\nimport getDateOfBirth from './utils/getDateOfBirth'\nimport getMostRecentCategorySample from './utils/getMostRecentCategorySample'\nimport getMostRecentQuantitySample from './utils/getMostRecentQuantitySample'\nimport getMostRecentWorkout from './utils/getMostRecentWorkout'\nimport getPreferredUnit from './utils/getPreferredUnit'\nimport getPreferredUnits from './utils/getPreferredUnits'\nimport getRequestStatusForAuthorization from './utils/getRequestStatusForAuthorization'\nimport queryCategorySamples from './utils/queryCategorySamples'\nimport queryCategorySamplesWithAnchor from './utils/queryCategorySamplesWithAnchor'\nimport queryCorrelationSamples from './utils/queryCorrelationSamples'\nimport queryHeartbeatSeriesSamples from './utils/queryHeartbeatSeriesSamples'\nimport queryHeartbeatSeriesSamplesWithAnchor from './utils/queryHeartbeatSeriesSamplesWithAnchor'\nimport queryQuantitySamples from './utils/queryQuantitySamples'\nimport queryQuantitySamplesWithAnchor from './utils/queryQuantitySamplesWithAnchor'\nimport querySources from './utils/querySources'\nimport queryStatisticsForQuantity from './utils/queryStatisticsForQuantity'\nimport queryWorkouts from './utils/queryWorkouts'\nimport requestAuthorization from './utils/requestAuthorization'\nimport saveCategorySample from './utils/saveCategorySample'\nimport saveCorrelationSample from './utils/saveCorrelationSample'\nimport saveQuantitySample from './utils/saveQuantitySample'\nimport saveWorkoutSample from './utils/saveWorkoutSample'\nimport subscribeToChanges from './utils/subscribeToChanges'\n\nconst Healthkit = {\n authorizationStatusFor: Native.authorizationStatusFor.bind(Native),\n\n isHealthDataAvailable: Native.isHealthDataAvailable.bind(Native),\n canAccessProtectedData: Native.canAccessProtectedData.bind(Native),\n\n disableAllBackgroundDelivery:\n Native.disableAllBackgroundDelivery.bind(Native),\n disableBackgroundDelivery: Native.disableBackgroundDelivery.bind(Native),\n enableBackgroundDelivery: Native.enableBackgroundDelivery.bind(Native),\n\n // simple convenience getters\n getBiologicalSex: Native.getBiologicalSex.bind(Native),\n getFitzpatrickSkinType: Native.getFitzpatrickSkinType.bind(Native),\n getWheelchairUse: Native.getWheelchairUse.bind(Native),\n getBloodType: Native.getBloodType.bind(Native),\n\n getWorkoutRoutes: Native.getWorkoutRoutes.bind(Native),\n\n getDateOfBirth,\n\n getMostRecentQuantitySample,\n getMostRecentCategorySample,\n getMostRecentWorkout,\n\n getPreferredUnit,\n getPreferredUnits,\n getRequestStatusForAuthorization,\n\n // query methods\n queryCategorySamples,\n queryCategorySamplesWithAnchor,\n queryCorrelationSamples,\n queryHeartbeatSeriesSamples,\n queryHeartbeatSeriesSamplesWithAnchor,\n queryQuantitySamples,\n queryQuantitySamplesWithAnchor,\n queryStatisticsForQuantity,\n queryWorkouts,\n querySources,\n\n requestAuthorization,\n\n // delete methods\n deleteQuantitySample,\n deleteSamples,\n\n // save methods\n saveCategorySample,\n saveCorrelationSample,\n saveQuantitySample,\n saveWorkoutSample,\n\n // subscriptions\n subscribeToChanges,\n\n // hooks\n useMostRecentCategorySample,\n\n useMostRecentQuantitySample,\n useMostRecentWorkout,\n\n useSubscribeToChanges,\n\n useIsHealthDataAvailable,\n useHealthkitAuthorization,\n}\n\nexport * from './types'\n\nexport default Healthkit\n"],"mappings":"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"}
1
+ {"version":3,"names":["Platform","useHealthkitAuthorization","useIsHealthDataAvailable","useMostRecentCategorySample","useMostRecentQuantitySample","useMostRecentWorkout","useSubscribeToChanges","Native","HKQuantityTypeIdentifier","deleteQuantitySample","deleteSamples","getDateOfBirth","getMostRecentCategorySample","getMostRecentQuantitySample","getMostRecentWorkout","getPreferredUnit","getPreferredUnits","getRequestStatusForAuthorization","queryCategorySamples","queryCategorySamplesWithAnchor","queryCorrelationSamples","queryHeartbeatSeriesSamples","queryHeartbeatSeriesSamplesWithAnchor","queryQuantitySamples","queryQuantitySamplesWithAnchor","querySources","queryStatisticsForQuantity","queryWorkouts","requestAuthorization","saveCategorySample","saveCorrelationSample","saveQuantitySample","saveWorkoutSample","subscribeToChanges","currentMajorVersionIOS","OS","parseInt","Version","allQuantityTypesList","Object","values","availableQuantityTypes","majorVersionIOS","arguments","length","undefined","filter","type","cyclingCadence","cyclingFunctionalThresholdPower","cyclingPower","cyclingSpeed","physicalEffort","timeInDaylight","includes","authorizationStatusFor","bind","isHealthDataAvailable","canAccessProtectedData","disableBackgroundDelivery","disableAllBackgroundDelivery","enableBackgroundDelivery","getBiologicalSex","getFitzpatrickSkinType","getWheelchairUse","getBloodType","getWorkoutRoutes","isProtectedDataAvailable"],"sources":["index.ios.tsx"],"sourcesContent":["import { Platform } from 'react-native'\n\nimport useHealthkitAuthorization from './hooks/useHealthkitAuthorization'\nimport useIsHealthDataAvailable from './hooks/useIsHealthDataAvailable'\nimport useMostRecentCategorySample from './hooks/useMostRecentCategorySample'\nimport useMostRecentQuantitySample from './hooks/useMostRecentQuantitySample'\nimport useMostRecentWorkout from './hooks/useMostRecentWorkout'\nimport useSubscribeToChanges from './hooks/useSubscribeToChanges'\nimport Native, { HKQuantityTypeIdentifier } from './native-types'\nimport deleteQuantitySample from './utils/deleteQuantitySample'\nimport deleteSamples from './utils/deleteSamples'\nimport getDateOfBirth from './utils/getDateOfBirth'\nimport getMostRecentCategorySample from './utils/getMostRecentCategorySample'\nimport getMostRecentQuantitySample from './utils/getMostRecentQuantitySample'\nimport getMostRecentWorkout from './utils/getMostRecentWorkout'\nimport getPreferredUnit from './utils/getPreferredUnit'\nimport getPreferredUnits from './utils/getPreferredUnits'\nimport getRequestStatusForAuthorization from './utils/getRequestStatusForAuthorization'\nimport queryCategorySamples from './utils/queryCategorySamples'\nimport queryCategorySamplesWithAnchor from './utils/queryCategorySamplesWithAnchor'\nimport queryCorrelationSamples from './utils/queryCorrelationSamples'\nimport queryHeartbeatSeriesSamples from './utils/queryHeartbeatSeriesSamples'\nimport queryHeartbeatSeriesSamplesWithAnchor from './utils/queryHeartbeatSeriesSamplesWithAnchor'\nimport queryQuantitySamples from './utils/queryQuantitySamples'\nimport queryQuantitySamplesWithAnchor from './utils/queryQuantitySamplesWithAnchor'\nimport querySources from './utils/querySources'\nimport queryStatisticsForQuantity from './utils/queryStatisticsForQuantity'\nimport queryWorkouts from './utils/queryWorkouts'\nimport requestAuthorization from './utils/requestAuthorization'\nimport saveCategorySample from './utils/saveCategorySample'\nimport saveCorrelationSample from './utils/saveCorrelationSample'\nimport saveQuantitySample from './utils/saveQuantitySample'\nimport saveWorkoutSample from './utils/saveWorkoutSample'\nimport subscribeToChanges from './utils/subscribeToChanges'\n\nconst currentMajorVersionIOS = Platform.OS === 'ios' ? parseInt(Platform.Version, 10) : 0\n\nconst allQuantityTypesList = [...Object.values(HKQuantityTypeIdentifier)]\n\nconst availableQuantityTypes = (majorVersionIOS = currentMajorVersionIOS) => {\n if (majorVersionIOS >= 17) {\n return allQuantityTypesList\n }\n\n // remove types that are not available before iOS 17\n return allQuantityTypesList.filter((type) => ![\n HKQuantityTypeIdentifier.cyclingCadence,\n HKQuantityTypeIdentifier.cyclingFunctionalThresholdPower,\n HKQuantityTypeIdentifier.cyclingPower,\n HKQuantityTypeIdentifier.cyclingSpeed,\n HKQuantityTypeIdentifier.physicalEffort,\n HKQuantityTypeIdentifier.timeInDaylight,\n ].includes(type))\n}\n\nconst authorizationStatusFor = Native.authorizationStatusFor.bind(Native)\nconst isHealthDataAvailable = Native.isHealthDataAvailable.bind(Native)\n// Todo [>8]: Rename to align with Apple function name (isProtectedDataAvailable)\nconst canAccessProtectedData = Native.canAccessProtectedData.bind(Native)\nconst disableBackgroundDelivery = Native.disableBackgroundDelivery.bind(Native)\nconst disableAllBackgroundDelivery = Native.disableAllBackgroundDelivery.bind(Native)\nconst enableBackgroundDelivery = Native.enableBackgroundDelivery.bind(Native)\nconst getBiologicalSex = Native.getBiologicalSex.bind(Native)\nconst getFitzpatrickSkinType = Native.getFitzpatrickSkinType.bind(Native)\nconst getWheelchairUse = Native.getWheelchairUse.bind(Native)\nconst getBloodType = Native.getBloodType.bind(Native)\nconst getWorkoutRoutes = Native.getWorkoutRoutes.bind(Native)\n\n/**\n * @see {@link https://developer.apple.com/documentation/healthkit/about_the_healthkit_framework About the HealthKit Framework (Apple Docs)}\n */\nexport default {\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614154-authorizationstatus authorizationStatus(for:) (Apple Docs) }\n * @see {@link https://developer.apple.com/documentation/healthkit/authorizing_access_to_health_data Authorizing access to health data (Apple Docs) }\n */\n authorizationStatusFor,\n\n /**\n *\n * @returns All available quantity types for the current iOS version (currently excluding types that are not available before iOS 17)\n */\n availableQuantityTypes,\n\n /**\n * @description By default, HealthKit data is available on iOS and watchOS. HealthKit data is also available on iPadOS 17 or later. However, devices running in an enterprise environment may restrict access to HealthKit data.\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614180-ishealthdataavailable isHealthDataAvailable() (Apple Docs)}\n * @returns {boolean} true if HealthKit is available; otherwise, false.\n */\n isHealthDataAvailable,\n\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614181-isprotecteddataavailable isProtectedDataAvailable() (Apple Docs)}\n * @see {@link https://developer.apple.com/documentation/healthkit/protecting_user_privacy#3705074 Protecting User Privacy - Access encrypted data (Apple Docs)}\n * @returns {boolean} A Boolean value that indicates whether content protection is active.\n */\n isProtectedDataAvailable: canAccessProtectedData,\n\n // Todo [>8]: Remove to align with Apple function name (isProtectedDataAvailable)\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614181-isprotecteddataavailable isProtectedDataAvailable() (Apple Docs)}\n * @see {@link https://developer.apple.com/documentation/healthkit/protecting_user_privacy#3705074 Protecting User Privacy - Access encrypted data (Apple Docs)}\n * @deprecated Use {@link isProtectedDataAvailable} instead. Will be removed in next major version.\n * @returns {boolean} A Boolean value that indicates whether content protection is active.\n */\n canAccessProtectedData,\n\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614158-disableallbackgrounddelivery disableAllBackgroundDelivery(completion:) (Apple Docs)}\n */\n disableAllBackgroundDelivery,\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614177-disablebackgrounddelivery disableBackgroundDelivery(for:withCompletion:) (Apple Docs)}\n */\n disableBackgroundDelivery,\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614175-enablebackgrounddelivery enableBackgroundDelivery(for:frequency:withCompletion:) (Apple Docs)}\n */\n enableBackgroundDelivery,\n\n // simple convenience getters\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614171-biologicalsex biologicalSex() (Apple Docs)}\n */\n getBiologicalSex,\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614161-fitzpatrickskintype fitzpatrickSkinType() (Apple Docs)}\n */\n getFitzpatrickSkinType,\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1648356-wheelchairuse wheelchairUse() (Apple Docs)}\n */\n getWheelchairUse,\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614164-bloodtype bloodType() (Apple Docs)}\n */\n getBloodType,\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1648357-dateofbirthcomponents dateOfBirthComponents() (Apple Docs)}\n */\n getDateOfBirth,\n\n getMostRecentQuantitySample,\n getMostRecentCategorySample,\n getMostRecentWorkout,\n\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/workouts_and_activity_rings/reading_route_data Reading route data (Apple Docs)}\n * @see {@link https://developer.apple.com/documentation/healthkit/hkworkoutroutequery HKWorkoutRouteQuery (Apple Docs)}\n */\n getWorkoutRoutes,\n\n getPreferredUnit,\n getPreferredUnits,\n getRequestStatusForAuthorization,\n\n // query methods\n queryCategorySamples,\n queryCategorySamplesWithAnchor,\n queryCorrelationSamples,\n queryHeartbeatSeriesSamples,\n queryHeartbeatSeriesSamplesWithAnchor,\n queryQuantitySamples,\n queryQuantitySamplesWithAnchor,\n queryStatisticsForQuantity,\n queryWorkouts,\n querySources,\n\n requestAuthorization,\n\n // delete methods\n deleteQuantitySample,\n deleteSamples,\n\n // save methods\n /**\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614168-savecategorysample save(_:withCompletion:) (Apple Docs)}\n * @see {@link https://developer.apple.com/documentation/healthkit/saving_data_to_healthkit Saving data to HealthKit (Apple Docs)}\n */\n saveCategorySample,\n saveCorrelationSample,\n saveQuantitySample,\n saveWorkoutSample,\n\n // subscriptions\n subscribeToChanges,\n\n /**\n * @returns the most recent sample for the given category type.\n */\n useMostRecentCategorySample,\n /**\n * @returns the most recent sample for the given quantity type.\n */\n useMostRecentQuantitySample,\n /**\n * @returns the most recent workout sample.\n */\n useMostRecentWorkout,\n useSubscribeToChanges,\n /**\n * @description By default, HealthKit data is available on iOS and watchOS. HealthKit data is also available on iPadOS 17 or later. However, devices running in an enterprise environment may restrict access to HealthKit data.\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614180-ishealthdataavailable Apple Docs}\n * @returns {boolean | null} true if HealthKit is available; otherwise, false. null while initializing.\n */\n useIsHealthDataAvailable,\n /**\n * @description Hook to retrieve the current authorization status for the given types, and request authorization if needed.\n * @see {@link https://developer.apple.com/documentation/healthkit/hkhealthstore/1614152-requestauthorization Apple Docs - requestAuthorization}\n * @see {@link https://developer.apple.com/documentation/healthkit/authorizing_access_to_health_data Apple Docs - Authorizing access to health data}\n */\n useHealthkitAuthorization,\n}\n\nexport * from './types'\n"],"mappings":"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;AACrD,MAAM2D,gBAAgB,GAAG3D,MAAM,CAAC2D,gBAAgB,CAACV,IAAI,CAACjD,MAAM,CAAC;;AAE7D;AACA;AACA;AACA,eAAe;EACb;AACF;AACA;AACA;EACEgD,sBAAsB;EAEtB;AACF;AACA;AACA;EACEd,sBAAsB;EAEtB;AACF;AACA;AACA;AACA;EACEgB,qBAAqB;EAErB;AACF;AACA;AACA;AACA;EACEU,wBAAwB,EAAET,sBAAsB;EAEhD;EACA;AACF;AACA;AACA;AACA;AACA;EACEA,sBAAsB;EAEtB;AACF;AACA;EACEE,4BAA4B;EAC5B;AACF;AACA;EACED,yBAAyB;EACzB;AACF;AACA;EACEE,wBAAwB;EAExB;EACA;AACF;AACA;EACEC,gBAAgB;EAChB;AACF;AACA;EACEC,sBAAsB;EACtB;AACF;AACA;EACEC,gBAAgB;EAChB;AACF;AACA;EACEC,YAAY;EACZ;AACF;AACA;EACEtD,cAAc;EAEdE,2BAA2B;EAC3BD,2BAA2B;EAC3BE,oBAAoB;EAEpB;AACF;AACA;AACA;EACEoD,gBAAgB;EAEhBnD,gBAAgB;EAChBC,iBAAiB;EACjBC,gCAAgC;EAEhC;EACAC,oBAAoB;EACpBC,8BAA8B;EAC9BC,uBAAuB;EACvBC,2BAA2B;EAC3BC,qCAAqC;EACrCC,oBAAoB;EACpBC,8BAA8B;EAC9BE,0BAA0B;EAC1BC,aAAa;EACbF,YAAY;EAEZG,oBAAoB;EAEpB;EACAnB,oBAAoB;EACpBC,aAAa;EAEb;EACA;AACF;AACA;AACA;EACEmB,kBAAkB;EAClBC,qBAAqB;EACrBC,kBAAkB;EAClBC,iBAAiB;EAEjB;EACAC,kBAAkB;EAElB;AACF;AACA;EACE9B,2BAA2B;EAC3B;AACF;AACA;EACEC,2BAA2B;EAC3B;AACF;AACA;EACEC,oBAAoB;EACpBC,qBAAqB;EACrB;AACF;AACA;AACA;AACA;EACEJ,wBAAwB;EACxB;AACF;AACA;AACA;AACA;EACED;AACF,CAAC;AAED,cAAc,SAAS"}
@@ -14,6 +14,7 @@ function UnavailableFn(retVal) {
14
14
  }
15
15
  const Healthkit = {
16
16
  authorizationStatusFor: UnavailableFn(Promise.resolve(HKAuthorizationStatus.notDetermined)),
17
+ availableQuantityTypes: UnavailableFn([]),
17
18
  disableAllBackgroundDelivery: UnavailableFn(Promise.resolve(false)),
18
19
  disableBackgroundDelivery: UnavailableFn(Promise.resolve(false)),
19
20
  enableBackgroundDelivery: UnavailableFn(Promise.resolve(false)),
@@ -74,7 +75,8 @@ const Healthkit = {
74
75
  useSubscribeToChanges: UnavailableFn([null, () => null]),
75
76
  useHealthkitAuthorization: UnavailableFn([null, async () => Promise.resolve(HKAuthorizationRequestStatus.unknown)]),
76
77
  useIsHealthDataAvailable: () => false,
77
- canAccessProtectedData: async () => Promise.resolve(false)
78
+ canAccessProtectedData: async () => Promise.resolve(false),
79
+ isProtectedDataAvailable: async () => Promise.resolve(false)
78
80
  };
79
81
  export * from './types';
80
82
  export default Healthkit;
@@ -1 +1 @@
1
- {"version":3,"names":["Platform","HKAuthorizationRequestStatus","HKAuthorizationStatus","HKBiologicalSex","HKBloodType","HKFitzpatrickSkinType","HKUnits","HKWheelchairUse","notAvailableError","OS","hasWarned","UnavailableFn","retVal","console","warn","Healthkit","authorizationStatusFor","Promise","resolve","notDetermined","disableAllBackgroundDelivery","disableBackgroundDelivery","enableBackgroundDelivery","getBiologicalSex","notSet","getBloodType","getDateOfBirth","Date","getFitzpatrickSkinType","getMostRecentCategorySample","getMostRecentQuantitySample","getMostRecentWorkout","getPreferredUnit","Count","getPreferredUnits","getRequestStatusForAuthorization","unknown","getWheelchairUse","getWorkoutRoutes","isHealthDataAvailable","queryCategorySamples","queryCategorySamplesWithAnchor","samples","deletedSamples","newAnchor","queryCorrelationSamples","queryHeartbeatSeriesSamples","queryHeartbeatSeriesSamplesWithAnchor","queryQuantitySamples","queryQuantitySamplesWithAnchor","queryStatisticsForQuantity","averageQuantity","undefined","maximumQuantity","minimumQuantity","sumQuantity","mostRecentQuantity","mostRecentQuantityDateInterval","duration","queryWorkouts","querySources","requestAuthorization","deleteQuantitySample","deleteSamples","saveCategorySample","saveCorrelationSample","saveQuantitySample","saveWorkoutSample","subscribeToChanges","useMostRecentCategorySample","useMostRecentQuantitySample","useMostRecentWorkout","useSubscribeToChanges","useHealthkitAuthorization","useIsHealthDataAvailable","canAccessProtectedData"],"sources":["index.tsx"],"sourcesContent":["import { Platform } from 'react-native'\n\nimport {\n HKAuthorizationRequestStatus, HKAuthorizationStatus, HKBiologicalSex, HKBloodType, HKFitzpatrickSkinType, HKUnits, HKWheelchairUse, QueryQuantitySamplesResponseRaw,\n} from './native-types'\n\nimport type ReactNativeHealthkit from './index.ios'\nimport type { QueryCategorySamplesFn } from './utils/queryCategorySamples'\nimport type { QueryQuantitySamplesFn } from './utils/queryQuantitySamples'\n\nconst notAvailableError = `[@kingstinct/react-native-healthkit] Platform \"${\n Platform.OS\n}\" not supported`\n\nlet hasWarned = false\n\nfunction UnavailableFn<T = unknown>(retVal: T) {\n return () => {\n if (!hasWarned) {\n // eslint-disable-next-line no-console\n console.warn(notAvailableError)\n hasWarned = true\n }\n return retVal\n }\n}\n\nconst Healthkit: typeof ReactNativeHealthkit = {\n authorizationStatusFor: UnavailableFn(Promise.resolve(HKAuthorizationStatus.notDetermined)),\n disableAllBackgroundDelivery: UnavailableFn(Promise.resolve(false)),\n disableBackgroundDelivery: UnavailableFn(Promise.resolve(false)),\n enableBackgroundDelivery: UnavailableFn(Promise.resolve(false)),\n getBiologicalSex: UnavailableFn(Promise.resolve(HKBiologicalSex.notSet)),\n getBloodType: UnavailableFn(Promise.resolve(HKBloodType.notSet)),\n getDateOfBirth: UnavailableFn(Promise.resolve(new Date(0))),\n getFitzpatrickSkinType: UnavailableFn(Promise.resolve(HKFitzpatrickSkinType.notSet)),\n getMostRecentCategorySample: UnavailableFn(Promise.resolve(null)),\n getMostRecentQuantitySample: UnavailableFn(Promise.resolve(null)),\n getMostRecentWorkout: UnavailableFn(Promise.resolve(null)),\n getPreferredUnit: UnavailableFn(Promise.resolve(HKUnits.Count)),\n getPreferredUnits: UnavailableFn(Promise.resolve([])),\n getRequestStatusForAuthorization: UnavailableFn(Promise.resolve(HKAuthorizationRequestStatus.unknown)),\n getWheelchairUse: UnavailableFn(Promise.resolve(HKWheelchairUse.notSet)),\n getWorkoutRoutes: UnavailableFn(Promise.resolve([])),\n isHealthDataAvailable: async () => Promise.resolve(false),\n queryCategorySamples: UnavailableFn(Promise.resolve([])) as unknown as QueryCategorySamplesFn,\n queryCategorySamplesWithAnchor: UnavailableFn(Promise.resolve({\n samples: [],\n deletedSamples: [],\n newAnchor: '',\n })),\n queryCorrelationSamples: UnavailableFn(Promise.resolve([])),\n queryHeartbeatSeriesSamples: UnavailableFn(Promise.resolve([])),\n queryHeartbeatSeriesSamplesWithAnchor: UnavailableFn(Promise.resolve({\n samples: [],\n deletedSamples: [],\n newAnchor: '',\n })),\n queryQuantitySamples: UnavailableFn(Promise.resolve([])) as unknown as QueryQuantitySamplesFn,\n queryQuantitySamplesWithAnchor: UnavailableFn(Promise.resolve({\n samples: [],\n deletedSamples: [],\n newAnchor: '',\n })),\n queryStatisticsForQuantity: UnavailableFn(Promise.resolve({\n averageQuantity: undefined,\n maximumQuantity: undefined,\n minimumQuantity: undefined,\n sumQuantity: undefined,\n mostRecentQuantity: undefined,\n mostRecentQuantityDateInterval: undefined,\n duration: undefined,\n })),\n queryWorkouts: UnavailableFn(Promise.resolve([])),\n querySources: UnavailableFn(Promise.resolve([])),\n requestAuthorization: UnavailableFn(Promise.resolve(false)),\n deleteQuantitySample: UnavailableFn(Promise.resolve(false)),\n deleteSamples: UnavailableFn(Promise.resolve(false)),\n saveCategorySample: UnavailableFn(Promise.resolve(false)),\n saveCorrelationSample: UnavailableFn(Promise.resolve(false)),\n saveQuantitySample: UnavailableFn(Promise.resolve(false)),\n saveWorkoutSample: UnavailableFn(Promise.resolve(false)),\n subscribeToChanges: UnavailableFn(Promise.resolve(async () => Promise.resolve(false))),\n useMostRecentCategorySample: UnavailableFn(null),\n useMostRecentQuantitySample: UnavailableFn(null),\n useMostRecentWorkout: UnavailableFn(null),\n useSubscribeToChanges: UnavailableFn([null, () => null]),\n useHealthkitAuthorization: UnavailableFn([null, async () => Promise.resolve(HKAuthorizationRequestStatus.unknown)] as const),\n useIsHealthDataAvailable: () => false,\n canAccessProtectedData: async () => Promise.resolve(false),\n}\n\nexport * from './types'\n\nexport default Healthkit\n"],"mappings":"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"}
1
+ {"version":3,"names":["Platform","HKAuthorizationRequestStatus","HKAuthorizationStatus","HKBiologicalSex","HKBloodType","HKFitzpatrickSkinType","HKUnits","HKWheelchairUse","notAvailableError","OS","hasWarned","UnavailableFn","retVal","console","warn","Healthkit","authorizationStatusFor","Promise","resolve","notDetermined","availableQuantityTypes","disableAllBackgroundDelivery","disableBackgroundDelivery","enableBackgroundDelivery","getBiologicalSex","notSet","getBloodType","getDateOfBirth","Date","getFitzpatrickSkinType","getMostRecentCategorySample","getMostRecentQuantitySample","getMostRecentWorkout","getPreferredUnit","Count","getPreferredUnits","getRequestStatusForAuthorization","unknown","getWheelchairUse","getWorkoutRoutes","isHealthDataAvailable","queryCategorySamples","queryCategorySamplesWithAnchor","samples","deletedSamples","newAnchor","queryCorrelationSamples","queryHeartbeatSeriesSamples","queryHeartbeatSeriesSamplesWithAnchor","queryQuantitySamples","queryQuantitySamplesWithAnchor","queryStatisticsForQuantity","averageQuantity","undefined","maximumQuantity","minimumQuantity","sumQuantity","mostRecentQuantity","mostRecentQuantityDateInterval","duration","queryWorkouts","querySources","requestAuthorization","deleteQuantitySample","deleteSamples","saveCategorySample","saveCorrelationSample","saveQuantitySample","saveWorkoutSample","subscribeToChanges","useMostRecentCategorySample","useMostRecentQuantitySample","useMostRecentWorkout","useSubscribeToChanges","useHealthkitAuthorization","useIsHealthDataAvailable","canAccessProtectedData","isProtectedDataAvailable"],"sources":["index.tsx"],"sourcesContent":["import { Platform } from 'react-native'\n\nimport {\n HKAuthorizationRequestStatus, HKAuthorizationStatus, HKBiologicalSex, HKBloodType, HKFitzpatrickSkinType, HKUnits, HKWheelchairUse,\n} from './native-types'\n\nimport type ReactNativeHealthkit from './index.ios'\nimport type { QueryCategorySamplesFn } from './utils/queryCategorySamples'\nimport type { QueryQuantitySamplesFn } from './utils/queryQuantitySamples'\n\nconst notAvailableError = `[@kingstinct/react-native-healthkit] Platform \"${\n Platform.OS\n}\" not supported`\n\nlet hasWarned = false\n\nfunction UnavailableFn<T = unknown>(retVal: T) {\n return () => {\n if (!hasWarned) {\n // eslint-disable-next-line no-console\n console.warn(notAvailableError)\n hasWarned = true\n }\n return retVal\n }\n}\n\nconst Healthkit = {\n authorizationStatusFor: UnavailableFn(Promise.resolve(HKAuthorizationStatus.notDetermined)),\n availableQuantityTypes: UnavailableFn([]),\n disableAllBackgroundDelivery: UnavailableFn(Promise.resolve(false)),\n disableBackgroundDelivery: UnavailableFn(Promise.resolve(false)),\n enableBackgroundDelivery: UnavailableFn(Promise.resolve(false)),\n getBiologicalSex: UnavailableFn(Promise.resolve(HKBiologicalSex.notSet)),\n getBloodType: UnavailableFn(Promise.resolve(HKBloodType.notSet)),\n getDateOfBirth: UnavailableFn(Promise.resolve(new Date(0))),\n getFitzpatrickSkinType: UnavailableFn(Promise.resolve(HKFitzpatrickSkinType.notSet)),\n getMostRecentCategorySample: UnavailableFn(Promise.resolve(null)),\n getMostRecentQuantitySample: UnavailableFn(Promise.resolve(null)),\n getMostRecentWorkout: UnavailableFn(Promise.resolve(null)),\n getPreferredUnit: UnavailableFn(Promise.resolve(HKUnits.Count)),\n getPreferredUnits: UnavailableFn(Promise.resolve([])),\n getRequestStatusForAuthorization: UnavailableFn(Promise.resolve(HKAuthorizationRequestStatus.unknown)),\n getWheelchairUse: UnavailableFn(Promise.resolve(HKWheelchairUse.notSet)),\n getWorkoutRoutes: UnavailableFn(Promise.resolve([])),\n isHealthDataAvailable: async () => Promise.resolve(false),\n queryCategorySamples: UnavailableFn(Promise.resolve([])) as unknown as QueryCategorySamplesFn,\n queryCategorySamplesWithAnchor: UnavailableFn(Promise.resolve({\n samples: [],\n deletedSamples: [],\n newAnchor: '',\n })),\n queryCorrelationSamples: UnavailableFn(Promise.resolve([])),\n queryHeartbeatSeriesSamples: UnavailableFn(Promise.resolve([])),\n queryHeartbeatSeriesSamplesWithAnchor: UnavailableFn(Promise.resolve({\n samples: [],\n deletedSamples: [],\n newAnchor: '',\n })),\n queryQuantitySamples: UnavailableFn(Promise.resolve([])) as unknown as QueryQuantitySamplesFn,\n queryQuantitySamplesWithAnchor: UnavailableFn(Promise.resolve({\n samples: [],\n deletedSamples: [],\n newAnchor: '',\n })),\n queryStatisticsForQuantity: UnavailableFn(Promise.resolve({\n averageQuantity: undefined,\n maximumQuantity: undefined,\n minimumQuantity: undefined,\n sumQuantity: undefined,\n mostRecentQuantity: undefined,\n mostRecentQuantityDateInterval: undefined,\n duration: undefined,\n })),\n queryWorkouts: UnavailableFn(Promise.resolve([])),\n querySources: UnavailableFn(Promise.resolve([])),\n requestAuthorization: UnavailableFn(Promise.resolve(false)),\n deleteQuantitySample: UnavailableFn(Promise.resolve(false)),\n deleteSamples: UnavailableFn(Promise.resolve(false)),\n saveCategorySample: UnavailableFn(Promise.resolve(false)),\n saveCorrelationSample: UnavailableFn(Promise.resolve(false)),\n saveQuantitySample: UnavailableFn(Promise.resolve(false)),\n saveWorkoutSample: UnavailableFn(Promise.resolve(false)),\n subscribeToChanges: UnavailableFn(Promise.resolve(async () => Promise.resolve(false))),\n useMostRecentCategorySample: UnavailableFn(null),\n useMostRecentQuantitySample: UnavailableFn(null),\n useMostRecentWorkout: UnavailableFn(null),\n useSubscribeToChanges: UnavailableFn([null, () => null]),\n useHealthkitAuthorization: UnavailableFn([null, async () => Promise.resolve(HKAuthorizationRequestStatus.unknown)] as const),\n useIsHealthDataAvailable: () => false,\n canAccessProtectedData: async () => Promise.resolve(false),\n isProtectedDataAvailable: async () => Promise.resolve(false),\n} as typeof ReactNativeHealthkit\n\nexport * from './types'\n\nexport default Healthkit as typeof ReactNativeHealthkit\n"],"mappings":"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"}
@@ -34,6 +34,7 @@ const mockModule = {
34
34
  saveWorkoutSample: jest.fn(),
35
35
  subscribeToObserverQuery: jest.fn(),
36
36
  unsubscribeQuery: jest.fn(),
37
+ // Todo [>8]: Remove to align with Apple function name (isProtectedDataAvailable)
37
38
  canAccessProtectedData: jest.fn()
38
39
  };
39
40
  NativeModules.ReactNativeHealthkit = mockModule;
@@ -1 +1 @@
1
- {"version":3,"names":["NativeModules","mockModule","isHealthDataAvailable","jest","fn","addListener","removeListeners","authorizationStatusFor","requestAuthorization","saveQuantitySample","deleteQuantitySample","deleteSamples","disableAllBackgroundDelivery","disableBackgroundDelivery","enableBackgroundDelivery","queryCategorySamplesWithAnchor","queryQuantitySamplesWithAnchor","getBiologicalSex","getBloodType","getDateOfBirth","getFitzpatrickSkinType","getPreferredUnits","getRequestStatusForAuthorization","getWheelchairUse","getWorkoutRoutes","queryCategorySamples","queryCorrelationSamples","queryHeartbeatSeriesSamples","queryHeartbeatSeriesSamplesWithAnchor","queryQuantitySamples","querySources","queryStatisticsForQuantity","queryWorkoutSamples","saveCategorySample","saveCorrelationSample","saveWorkoutSample","subscribeToObserverQuery","unsubscribeQuery","canAccessProtectedData","ReactNativeHealthkit"],"sources":["jest.setup.ts"],"sourcesContent":["import { NativeModule, NativeModules } from 'react-native'\n\nimport type Native from './native-types'\n\nconst mockModule: (NativeModule & typeof Native) = {\n isHealthDataAvailable: jest.fn(),\n addListener: jest.fn(),\n removeListeners: jest.fn(),\n authorizationStatusFor: jest.fn(),\n requestAuthorization: jest.fn(),\n saveQuantitySample: jest.fn(),\n deleteQuantitySample: jest.fn(),\n deleteSamples: jest.fn(),\n disableAllBackgroundDelivery: jest.fn(),\n disableBackgroundDelivery: jest.fn(),\n enableBackgroundDelivery: jest.fn(),\n queryCategorySamplesWithAnchor: jest.fn(),\n queryQuantitySamplesWithAnchor: jest.fn(),\n getBiologicalSex: jest.fn(),\n getBloodType: jest.fn(),\n getDateOfBirth: jest.fn(),\n getFitzpatrickSkinType: jest.fn(),\n getPreferredUnits: jest.fn(),\n getRequestStatusForAuthorization: jest.fn(),\n getWheelchairUse: jest.fn(),\n getWorkoutRoutes: jest.fn(),\n queryCategorySamples: jest.fn(),\n queryCorrelationSamples: jest.fn(),\n queryHeartbeatSeriesSamples: jest.fn(),\n queryHeartbeatSeriesSamplesWithAnchor: jest.fn(),\n queryQuantitySamples: jest.fn(),\n querySources: jest.fn(),\n queryStatisticsForQuantity: jest.fn(),\n queryWorkoutSamples: jest.fn(),\n saveCategorySample: jest.fn(),\n saveCorrelationSample: jest.fn(),\n saveWorkoutSample: jest.fn(),\n subscribeToObserverQuery: jest.fn(),\n unsubscribeQuery: jest.fn(),\n canAccessProtectedData: jest.fn(),\n}\n\nNativeModules.ReactNativeHealthkit = mockModule\n"],"mappings":"AAAA,SAAuBA,aAAa,QAAQ,cAAc;AAI1D,MAAMC,UAA0C,GAAG;EACjDC,qBAAqB,EAAEC,IAAI,CAACC,EAAE,CAAC,CAAC;EAChCC,WAAW,EAAEF,IAAI,CAACC,EAAE,CAAC,CAAC;EACtBE,eAAe,EAAEH,IAAI,CAACC,EAAE,CAAC,CAAC;EAC1BG,sBAAsB,EAAEJ,IAAI,CAACC,EAAE,CAAC,CAAC;EACjCI,oBAAoB,EAAEL,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/BK,kBAAkB,EAAEN,IAAI,CAACC,EAAE,CAAC,CAAC;EAC7BM,oBAAoB,EAAEP,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/BO,aAAa,EAAER,IAAI,CAACC,EAAE,CAAC,CAAC;EACxBQ,4BAA4B,EAAET,IAAI,CAACC,EAAE,CAAC,CAAC;EACvCS,yBAAyB,EAAEV,IAAI,CAACC,EAAE,CAAC,CAAC;EACpCU,wBAAwB,EAAEX,IAAI,CAACC,EAAE,CAAC,CAAC;EACnCW,8BAA8B,EAAEZ,IAAI,CAACC,EAAE,CAAC,CAAC;EACzCY,8BAA8B,EAAEb,IAAI,CAACC,EAAE,CAAC,CAAC;EACzCa,gBAAgB,EAAEd,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3Bc,YAAY,EAAEf,IAAI,CAACC,EAAE,CAAC,CAAC;EACvBe,cAAc,EAAEhB,IAAI,CAACC,EAAE,CAAC,CAAC;EACzBgB,sBAAsB,EAAEjB,IAAI,CAACC,EAAE,CAAC,CAAC;EACjCiB,iBAAiB,EAAElB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC5BkB,gCAAgC,EAAEnB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3CmB,gBAAgB,EAAEpB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3BoB,gBAAgB,EAAErB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3BqB,oBAAoB,EAAEtB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/BsB,uBAAuB,EAAEvB,IAAI,CAACC,EAAE,CAAC,CAAC;EAClCuB,2BAA2B,EAAExB,IAAI,CAACC,EAAE,CAAC,CAAC;EACtCwB,qCAAqC,EAAEzB,IAAI,CAACC,EAAE,CAAC,CAAC;EAChDyB,oBAAoB,EAAE1B,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/B0B,YAAY,EAAE3B,IAAI,CAACC,EAAE,CAAC,CAAC;EACvB2B,0BAA0B,EAAE5B,IAAI,CAACC,EAAE,CAAC,CAAC;EACrC4B,mBAAmB,EAAE7B,IAAI,CAACC,EAAE,CAAC,CAAC;EAC9B6B,kBAAkB,EAAE9B,IAAI,CAACC,EAAE,CAAC,CAAC;EAC7B8B,qBAAqB,EAAE/B,IAAI,CAACC,EAAE,CAAC,CAAC;EAChC+B,iBAAiB,EAAEhC,IAAI,CAACC,EAAE,CAAC,CAAC;EAC5BgC,wBAAwB,EAAEjC,IAAI,CAACC,EAAE,CAAC,CAAC;EACnCiC,gBAAgB,EAAElC,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3BkC,sBAAsB,EAAEnC,IAAI,CAACC,EAAE,CAAC;AAClC,CAAC;AAEDJ,aAAa,CAACuC,oBAAoB,GAAGtC,UAAU"}
1
+ {"version":3,"names":["NativeModules","mockModule","isHealthDataAvailable","jest","fn","addListener","removeListeners","authorizationStatusFor","requestAuthorization","saveQuantitySample","deleteQuantitySample","deleteSamples","disableAllBackgroundDelivery","disableBackgroundDelivery","enableBackgroundDelivery","queryCategorySamplesWithAnchor","queryQuantitySamplesWithAnchor","getBiologicalSex","getBloodType","getDateOfBirth","getFitzpatrickSkinType","getPreferredUnits","getRequestStatusForAuthorization","getWheelchairUse","getWorkoutRoutes","queryCategorySamples","queryCorrelationSamples","queryHeartbeatSeriesSamples","queryHeartbeatSeriesSamplesWithAnchor","queryQuantitySamples","querySources","queryStatisticsForQuantity","queryWorkoutSamples","saveCategorySample","saveCorrelationSample","saveWorkoutSample","subscribeToObserverQuery","unsubscribeQuery","canAccessProtectedData","ReactNativeHealthkit"],"sources":["jest.setup.ts"],"sourcesContent":["import { NativeModule, NativeModules } from 'react-native'\n\nimport type Native from './native-types'\n\nconst mockModule: (NativeModule & typeof Native) = {\n isHealthDataAvailable: jest.fn(),\n addListener: jest.fn(),\n removeListeners: jest.fn(),\n authorizationStatusFor: jest.fn(),\n requestAuthorization: jest.fn(),\n saveQuantitySample: jest.fn(),\n deleteQuantitySample: jest.fn(),\n deleteSamples: jest.fn(),\n disableAllBackgroundDelivery: jest.fn(),\n disableBackgroundDelivery: jest.fn(),\n enableBackgroundDelivery: jest.fn(),\n queryCategorySamplesWithAnchor: jest.fn(),\n queryQuantitySamplesWithAnchor: jest.fn(),\n getBiologicalSex: jest.fn(),\n getBloodType: jest.fn(),\n getDateOfBirth: jest.fn(),\n getFitzpatrickSkinType: jest.fn(),\n getPreferredUnits: jest.fn(),\n getRequestStatusForAuthorization: jest.fn(),\n getWheelchairUse: jest.fn(),\n getWorkoutRoutes: jest.fn(),\n queryCategorySamples: jest.fn(),\n queryCorrelationSamples: jest.fn(),\n queryHeartbeatSeriesSamples: jest.fn(),\n queryHeartbeatSeriesSamplesWithAnchor: jest.fn(),\n queryQuantitySamples: jest.fn(),\n querySources: jest.fn(),\n queryStatisticsForQuantity: jest.fn(),\n queryWorkoutSamples: jest.fn(),\n saveCategorySample: jest.fn(),\n saveCorrelationSample: jest.fn(),\n saveWorkoutSample: jest.fn(),\n subscribeToObserverQuery: jest.fn(),\n unsubscribeQuery: jest.fn(),\n // Todo [>8]: Remove to align with Apple function name (isProtectedDataAvailable)\n canAccessProtectedData: jest.fn(),\n}\n\nNativeModules.ReactNativeHealthkit = mockModule\n"],"mappings":"AAAA,SAAuBA,aAAa,QAAQ,cAAc;AAI1D,MAAMC,UAA0C,GAAG;EACjDC,qBAAqB,EAAEC,IAAI,CAACC,EAAE,CAAC,CAAC;EAChCC,WAAW,EAAEF,IAAI,CAACC,EAAE,CAAC,CAAC;EACtBE,eAAe,EAAEH,IAAI,CAACC,EAAE,CAAC,CAAC;EAC1BG,sBAAsB,EAAEJ,IAAI,CAACC,EAAE,CAAC,CAAC;EACjCI,oBAAoB,EAAEL,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/BK,kBAAkB,EAAEN,IAAI,CAACC,EAAE,CAAC,CAAC;EAC7BM,oBAAoB,EAAEP,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/BO,aAAa,EAAER,IAAI,CAACC,EAAE,CAAC,CAAC;EACxBQ,4BAA4B,EAAET,IAAI,CAACC,EAAE,CAAC,CAAC;EACvCS,yBAAyB,EAAEV,IAAI,CAACC,EAAE,CAAC,CAAC;EACpCU,wBAAwB,EAAEX,IAAI,CAACC,EAAE,CAAC,CAAC;EACnCW,8BAA8B,EAAEZ,IAAI,CAACC,EAAE,CAAC,CAAC;EACzCY,8BAA8B,EAAEb,IAAI,CAACC,EAAE,CAAC,CAAC;EACzCa,gBAAgB,EAAEd,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3Bc,YAAY,EAAEf,IAAI,CAACC,EAAE,CAAC,CAAC;EACvBe,cAAc,EAAEhB,IAAI,CAACC,EAAE,CAAC,CAAC;EACzBgB,sBAAsB,EAAEjB,IAAI,CAACC,EAAE,CAAC,CAAC;EACjCiB,iBAAiB,EAAElB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC5BkB,gCAAgC,EAAEnB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3CmB,gBAAgB,EAAEpB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3BoB,gBAAgB,EAAErB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3BqB,oBAAoB,EAAEtB,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/BsB,uBAAuB,EAAEvB,IAAI,CAACC,EAAE,CAAC,CAAC;EAClCuB,2BAA2B,EAAExB,IAAI,CAACC,EAAE,CAAC,CAAC;EACtCwB,qCAAqC,EAAEzB,IAAI,CAACC,EAAE,CAAC,CAAC;EAChDyB,oBAAoB,EAAE1B,IAAI,CAACC,EAAE,CAAC,CAAC;EAC/B0B,YAAY,EAAE3B,IAAI,CAACC,EAAE,CAAC,CAAC;EACvB2B,0BAA0B,EAAE5B,IAAI,CAACC,EAAE,CAAC,CAAC;EACrC4B,mBAAmB,EAAE7B,IAAI,CAACC,EAAE,CAAC,CAAC;EAC9B6B,kBAAkB,EAAE9B,IAAI,CAACC,EAAE,CAAC,CAAC;EAC7B8B,qBAAqB,EAAE/B,IAAI,CAACC,EAAE,CAAC,CAAC;EAChC+B,iBAAiB,EAAEhC,IAAI,CAACC,EAAE,CAAC,CAAC;EAC5BgC,wBAAwB,EAAEjC,IAAI,CAACC,EAAE,CAAC,CAAC;EACnCiC,gBAAgB,EAAElC,IAAI,CAACC,EAAE,CAAC,CAAC;EAC3B;EACAkC,sBAAsB,EAAEnC,IAAI,CAACC,EAAE,CAAC;AAClC,CAAC;AAEDJ,aAAa,CAACuC,oBAAoB,GAAGtC,UAAU"}
@@ -1,18 +1,36 @@
1
1
  import { NativeEventEmitter, NativeModules } from 'react-native';
2
2
  /**
3
- * See https://developer.apple.com/documentation/healthkit/hkworkouttypeidentifier
3
+ * Represents a workout type identifier.
4
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkworkouttypeidentifier Apple Docs HKWorkoutTypeIdentifier}
4
5
  */
5
6
  export const HKWorkoutTypeIdentifier = 'HKWorkoutTypeIdentifier';
6
- export const HKAudiogramTypeIdentifier = 'HKAudiogramTypeIdentifier';
7
7
 
8
8
  /**
9
- * See https://developer.apple.com/documentation/healthkit/hkworkoutroutetypeidentifier
9
+ * Represents a type that identifies activity summary objects.
10
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkactivitysummarytype Apple Docs HKActivitySummaryType}
11
+ */
12
+ export const HKActivitySummaryType = 'HKActivitySummaryType';
13
+
14
+ /**
15
+ * Represents an audiogram type identifier.
16
+ * @see {@link https://developer.apple.com/documentation/healthkit/HKAudiogramSampleType Apple Docs HKAudiogramSampleType}
17
+ */
18
+ export const HKAudiogramTypeIdentifier = 'HKAudiogramSampleType';
19
+
20
+ /**
21
+ * Represents a workout route type identifier.
22
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkworkoutroutetypeidentifier Apple Docs HKWorkoutRouteTypeIdentifier}
10
23
  */
11
24
  export const HKWorkoutRouteTypeIdentifier = 'HKWorkoutRouteTypeIdentifier';
12
- export const HKDataTypeIdentifierHeartbeatSeries = 'HKDataTypeIdentifierHeartbeatSeries';
13
25
 
14
26
  /**
15
- * See https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifier
27
+ * Represents a series sample containing heartbeat data..
28
+ * @see {@link https://developer.apple.com/documentation/healthkit/HKDataTypeIdentifierHeartbeatSeries Apple Docs HKDataTypeIdentifierHeartbeatSeries}
29
+ */
30
+
31
+ /**
32
+ * Represents a quantity type identifier.
33
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitytypeidentifier Apple Docs HKQuantityTypeIdentifier}
16
34
  */
17
35
  export let HKQuantityTypeIdentifier = /*#__PURE__*/function (HKQuantityTypeIdentifier) {
18
36
  HKQuantityTypeIdentifier["bodyMassIndex"] = "HKQuantityTypeIdentifierBodyMassIndex";
@@ -120,6 +138,11 @@ export let HKQuantityTypeIdentifier = /*#__PURE__*/function (HKQuantityTypeIdent
120
138
  HKQuantityTypeIdentifier["cyclingCadence"] = "HKQuantityTypeIdentifierCyclingCadence";
121
139
  HKQuantityTypeIdentifier["environmentalSoundReduction"] = "HKQuantityTypeIdentifierEnvironmentalSoundReduction";
122
140
  HKQuantityTypeIdentifier["heartRateRecoveryOneMinute"] = "HKQuantityTypeIdentifierHeartRateRecoveryOneMinute";
141
+ HKQuantityTypeIdentifier["runningGroundContactTime"] = "HKQuantityTypeIdentifierRunningGroundContactTime";
142
+ HKQuantityTypeIdentifier["runningStrideLength"] = "HKQuantityTypeIdentifierRunningStrideLength";
143
+ HKQuantityTypeIdentifier["runningPower"] = "HKQuantityTypeIdentifierRunningPower";
144
+ HKQuantityTypeIdentifier["runningVerticalOscillation"] = "HKQuantityTypeIdentifierRunningVerticalOscillation";
145
+ HKQuantityTypeIdentifier["runningSpeed"] = "HKQuantityTypeIdentifierRunningSpeed";
123
146
  return HKQuantityTypeIdentifier;
124
147
  }({});
125
148
  export let HKCategoryValueLowCardioFitnessEvent = /*#__PURE__*/function (HKCategoryValueLowCardioFitnessEvent) {
@@ -134,7 +157,7 @@ export let HKHeartRateMotionContext = /*#__PURE__*/function (HKHeartRateMotionCo
134
157
  }({});
135
158
 
136
159
  /**
137
- * See https://developer.apple.com/documentation/healthkit/hkcorrelationtypeidentifier
160
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcorrelationtypeidentifier Apple Docs }
138
161
  */
139
162
  export let HKCorrelationTypeIdentifier = /*#__PURE__*/function (HKCorrelationTypeIdentifier) {
140
163
  HKCorrelationTypeIdentifier["bloodPressure"] = "HKCorrelationTypeIdentifierBloodPressure";
@@ -143,7 +166,7 @@ export let HKCorrelationTypeIdentifier = /*#__PURE__*/function (HKCorrelationTyp
143
166
  }({});
144
167
 
145
168
  /**
146
- * See https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifier
169
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategorytypeidentifier Apple Docs }
147
170
  */
148
171
  export let HKCategoryTypeIdentifier = /*#__PURE__*/function (HKCategoryTypeIdentifier) {
149
172
  HKCategoryTypeIdentifier["sleepAnalysis"] = "HKCategoryTypeIdentifierSleepAnalysis";
@@ -333,7 +356,7 @@ var HKIndoorWorkout = /*#__PURE__*/function (HKIndoorWorkout) {
333
356
  return HKIndoorWorkout;
334
357
  }(HKIndoorWorkout || {});
335
358
  /**
336
- * See https://developer.apple.com/documentation/healthkit/hkauthorizationrequeststatus
359
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkauthorizationrequeststatus Apple Docs }
337
360
  */
338
361
  export let HKAuthorizationRequestStatus = /*#__PURE__*/function (HKAuthorizationRequestStatus) {
339
362
  HKAuthorizationRequestStatus[HKAuthorizationRequestStatus["unknown"] = 0] = "unknown";
@@ -343,7 +366,7 @@ export let HKAuthorizationRequestStatus = /*#__PURE__*/function (HKAuthorization
343
366
  }({});
344
367
 
345
368
  /**
346
- * See https://developer.apple.com/documentation/healthkit/hkauthorizationstatus
369
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkauthorizationstatus Apple Docs }
347
370
  */
348
371
  export let HKAuthorizationStatus = /*#__PURE__*/function (HKAuthorizationStatus) {
349
372
  HKAuthorizationStatus[HKAuthorizationStatus["notDetermined"] = 0] = "notDetermined";
@@ -352,7 +375,7 @@ export let HKAuthorizationStatus = /*#__PURE__*/function (HKAuthorizationStatus)
352
375
  return HKAuthorizationStatus;
353
376
  }({});
354
377
  /**
355
- * See https://developer.apple.com/documentation/healthkit/hkbloodtype
378
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkbloodtype Apple Docs }
356
379
  */
357
380
  export let HKBloodType = /*#__PURE__*/function (HKBloodType) {
358
381
  HKBloodType[HKBloodType["notSet"] = 0] = "notSet";
@@ -368,7 +391,7 @@ export let HKBloodType = /*#__PURE__*/function (HKBloodType) {
368
391
  }({});
369
392
 
370
393
  /**
371
- * See https://developer.apple.com/documentation/healthkit/hkbiologicalsex
394
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkbiologicalsex Apple Docs }
372
395
  */
373
396
  export let HKBiologicalSex = /*#__PURE__*/function (HKBiologicalSex) {
374
397
  HKBiologicalSex[HKBiologicalSex["notSet"] = 0] = "notSet";
@@ -379,7 +402,7 @@ export let HKBiologicalSex = /*#__PURE__*/function (HKBiologicalSex) {
379
402
  }({});
380
403
 
381
404
  /**
382
- * See https://developer.apple.com/documentation/healthkit/hkfitzpatrickskintype
405
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkfitzpatrickskintype Apple Docs }
383
406
  */
384
407
  export let HKFitzpatrickSkinType = /*#__PURE__*/function (HKFitzpatrickSkinType) {
385
408
  HKFitzpatrickSkinType[HKFitzpatrickSkinType["notSet"] = 0] = "notSet";
@@ -393,7 +416,7 @@ export let HKFitzpatrickSkinType = /*#__PURE__*/function (HKFitzpatrickSkinType)
393
416
  }({});
394
417
 
395
418
  /**
396
- * See https://developer.apple.com/documentation/healthkit/hkstatisticsoptions
419
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkstatisticsoptions Apple Docs }
397
420
  */
398
421
  export let HKStatisticsOptions = /*#__PURE__*/function (HKStatisticsOptions) {
399
422
  HKStatisticsOptions["cumulativeSum"] = "cumulativeSum";
@@ -407,7 +430,7 @@ export let HKStatisticsOptions = /*#__PURE__*/function (HKStatisticsOptions) {
407
430
  return HKStatisticsOptions;
408
431
  }({});
409
432
  /**
410
- * https://developer.apple.com/documentation/healthkit/hkcategoryvaluecervicalmucusquality
433
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvaluecervicalmucusquality Apple Docs }
411
434
  */
412
435
  export let HKCategoryValueCervicalMucusQuality = /*#__PURE__*/function (HKCategoryValueCervicalMucusQuality) {
413
436
  HKCategoryValueCervicalMucusQuality[HKCategoryValueCervicalMucusQuality["dry"] = 1] = "dry";
@@ -419,7 +442,7 @@ export let HKCategoryValueCervicalMucusQuality = /*#__PURE__*/function (HKCatego
419
442
  }({});
420
443
 
421
444
  /**
422
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvaluemenstrualflow
445
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvaluemenstrualflow Apple Docs }
423
446
  */
424
447
  export let HKCategoryValueMenstrualFlow = /*#__PURE__*/function (HKCategoryValueMenstrualFlow) {
425
448
  HKCategoryValueMenstrualFlow[HKCategoryValueMenstrualFlow["unspecified"] = 1] = "unspecified";
@@ -431,7 +454,7 @@ export let HKCategoryValueMenstrualFlow = /*#__PURE__*/function (HKCategoryValue
431
454
  }({});
432
455
 
433
456
  /**
434
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvalueovulationtestresult
457
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvalueovulationtestresult Apple Docs }
435
458
  */
436
459
  export let HKCategoryValueOvulationTestResult = /*#__PURE__*/function (HKCategoryValueOvulationTestResult) {
437
460
  HKCategoryValueOvulationTestResult[HKCategoryValueOvulationTestResult["negative"] = 1] = "negative";
@@ -442,7 +465,7 @@ export let HKCategoryValueOvulationTestResult = /*#__PURE__*/function (HKCategor
442
465
  }({});
443
466
 
444
467
  /**
445
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvaluesleepanalysis
468
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvaluesleepanalysis Apple Docs }
446
469
  */
447
470
  export let HKCategoryValueSleepAnalysis = /*#__PURE__*/function (HKCategoryValueSleepAnalysis) {
448
471
  HKCategoryValueSleepAnalysis[HKCategoryValueSleepAnalysis["inBed"] = 0] = "inBed";
@@ -455,7 +478,7 @@ export let HKCategoryValueSleepAnalysis = /*#__PURE__*/function (HKCategoryValue
455
478
  }({});
456
479
 
457
480
  /**
458
- * https://developer.apple.com/documentation/healthkit/hkcategoryvalueappetitechanges
481
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvalueappetitechanges
459
482
  */
460
483
  export let HKCategoryValueAppetiteChanges = /*#__PURE__*/function (HKCategoryValueAppetiteChanges) {
461
484
  HKCategoryValueAppetiteChanges[HKCategoryValueAppetiteChanges["decreased"] = 2] = "decreased";
@@ -466,7 +489,7 @@ export let HKCategoryValueAppetiteChanges = /*#__PURE__*/function (HKCategoryVal
466
489
  }({});
467
490
 
468
491
  /**
469
- * https://developer.apple.com/documentation/healthkit/hkcategoryvaluepresence
492
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvaluepresence
470
493
  */
471
494
  export let HKCategoryValuePresence = /*#__PURE__*/function (HKCategoryValuePresence) {
472
495
  HKCategoryValuePresence[HKCategoryValuePresence["notPresent"] = 1] = "notPresent";
@@ -475,7 +498,7 @@ export let HKCategoryValuePresence = /*#__PURE__*/function (HKCategoryValuePrese
475
498
  }({});
476
499
 
477
500
  /**
478
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvalueseverity
501
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvalueseverity Apple Docs }
479
502
  */
480
503
  export let HKCategoryValueSeverity = /*#__PURE__*/function (HKCategoryValueSeverity) {
481
504
  HKCategoryValueSeverity[HKCategoryValueSeverity["notPresent"] = 1] = "notPresent";
@@ -487,7 +510,7 @@ export let HKCategoryValueSeverity = /*#__PURE__*/function (HKCategoryValueSever
487
510
  }({});
488
511
 
489
512
  /**
490
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvalue/notapplicable
513
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvalue/notapplicable Apple Docs }
491
514
  */
492
515
  export let HKCategoryValueNotApplicable = /*#__PURE__*/function (HKCategoryValueNotApplicable) {
493
516
  HKCategoryValueNotApplicable[HKCategoryValueNotApplicable["notApplicable"] = 0] = "notApplicable";
@@ -495,11 +518,11 @@ export let HKCategoryValueNotApplicable = /*#__PURE__*/function (HKCategoryValue
495
518
  }({});
496
519
 
497
520
  /**
498
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvalue
521
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvalue Apple Docs }
499
522
  */
500
523
 
501
524
  /**
502
- * See https://developer.apple.com/documentation/healthkit/hkinsulindeliveryreason
525
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkinsulindeliveryreason Apple Docs }
503
526
  */
504
527
  export let HKInsulinDeliveryReason = /*#__PURE__*/function (HKInsulinDeliveryReason) {
505
528
  HKInsulinDeliveryReason[HKInsulinDeliveryReason["basal"] = 1] = "basal";
@@ -507,7 +530,7 @@ export let HKInsulinDeliveryReason = /*#__PURE__*/function (HKInsulinDeliveryRea
507
530
  return HKInsulinDeliveryReason;
508
531
  }({});
509
532
  /**
510
- * See https://developer.apple.com/documentation/healthkit/hkcategoryvaluepregnancytestresult
533
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkcategoryvaluepregnancytestresult Apple Docs }
511
534
  */
512
535
  var HKCategoryValuePregnancyTestResult = /*#__PURE__*/function (HKCategoryValuePregnancyTestResult) {
513
536
  HKCategoryValuePregnancyTestResult[HKCategoryValuePregnancyTestResult["positive"] = 2] = "positive";
@@ -678,21 +701,32 @@ export let BloodGlucoseUnit = /*#__PURE__*/function (BloodGlucoseUnit) {
678
701
  }({});
679
702
 
680
703
  /**
681
- * See https://developer.apple.com/documentation/healthkit/hkdevice
704
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkdevice Apple Docs }
682
705
  */
683
706
 
684
707
  /**
685
- * See https://developer.apple.com/documentation/healthkit/hkobject/1615781-source
708
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkobject/1615781-source Apple Docs }
686
709
  */
687
710
 
688
711
  /**
689
- * See https://developer.apple.com/documentation/healthkit/hkobject/1615483-sourcerevision
712
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkobject/1615483-sourcerevision Apple Docs }
690
713
  */
691
714
 
692
715
  /**
693
- * See https://developer.apple.com/documentation/healthkit/hkquantitysample
716
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkquantitysample Apple Docs }
694
717
  */
695
718
 
719
+ export let HKWorkoutEventType = /*#__PURE__*/function (HKWorkoutEventType) {
720
+ HKWorkoutEventType[HKWorkoutEventType["pause"] = 1] = "pause";
721
+ HKWorkoutEventType[HKWorkoutEventType["resume"] = 2] = "resume";
722
+ HKWorkoutEventType[HKWorkoutEventType["lap"] = 3] = "lap";
723
+ HKWorkoutEventType[HKWorkoutEventType["marker"] = 4] = "marker";
724
+ HKWorkoutEventType[HKWorkoutEventType["motionPaused"] = 5] = "motionPaused";
725
+ HKWorkoutEventType[HKWorkoutEventType["motionResumed"] = 6] = "motionResumed";
726
+ HKWorkoutEventType[HKWorkoutEventType["segment"] = 7] = "segment";
727
+ HKWorkoutEventType[HKWorkoutEventType["pauseOrResumeRequest"] = 8] = "pauseOrResumeRequest";
728
+ return HKWorkoutEventType;
729
+ }({});
696
730
  // Straight mapping to https://developer.apple.com/documentation/healthkit/hkcharacteristictypeidentifier
697
731
  export let HKCharacteristicTypeIdentifier = /*#__PURE__*/function (HKCharacteristicTypeIdentifier) {
698
732
  HKCharacteristicTypeIdentifier["fitzpatrickSkinType"] = "HKCharacteristicTypeIdentifierFitzpatrickSkinType";
@@ -703,7 +737,9 @@ export let HKCharacteristicTypeIdentifier = /*#__PURE__*/function (HKCharacteris
703
737
  HKCharacteristicTypeIdentifier["activityMoveMode"] = "HKCharacteristicTypeIdentifierActivityMoveMode";
704
738
  return HKCharacteristicTypeIdentifier;
705
739
  }({}); // HKActivityMoveModeObject
706
- /** See https://developer.apple.com/documentation/healthkit/hkupdatefrequency */
740
+ /**
741
+ * @see {@link https://developer.apple.com/documentation/healthkit/hkupdatefrequency Apple Docs }
742
+ */
707
743
  export let HKUpdateFrequency = /*#__PURE__*/function (HKUpdateFrequency) {
708
744
  HKUpdateFrequency[HKUpdateFrequency["immediate"] = 1] = "immediate";
709
745
  HKUpdateFrequency[HKUpdateFrequency["hourly"] = 2] = "hourly";