@tryvital/vital-health-react-native 1.12.0 → 1.13.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.
- package/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin +0 -0
- package/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin +0 -0
- package/android/build.gradle +1 -1
- package/lib/commonjs/health_config.js +1 -1
- package/lib/module/health_config.js +1 -1
- package/package.json +1 -1
- package/src/health_config.ts +1 -1
- package/vital-health-react-native.podspec +1 -1
|
Binary file
|
|
Binary file
|
package/android/build.gradle
CHANGED
|
@@ -10,7 +10,7 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
10
10
|
class HealthConfig {
|
|
11
11
|
constructor() {
|
|
12
12
|
_defineProperty(this, "logsEnabled", true);
|
|
13
|
-
_defineProperty(this, "numberOfDaysToBackFill",
|
|
13
|
+
_defineProperty(this, "numberOfDaysToBackFill", 30);
|
|
14
14
|
_defineProperty(this, "androidConfig", new AndroidHealthConfig());
|
|
15
15
|
_defineProperty(this, "iOSConfig", new IOSHealthConfig());
|
|
16
16
|
}
|
|
@@ -4,7 +4,7 @@ function _toPrimitive(input, hint) { if (typeof input !== "object" || input ===
|
|
|
4
4
|
export class HealthConfig {
|
|
5
5
|
constructor() {
|
|
6
6
|
_defineProperty(this, "logsEnabled", true);
|
|
7
|
-
_defineProperty(this, "numberOfDaysToBackFill",
|
|
7
|
+
_defineProperty(this, "numberOfDaysToBackFill", 30);
|
|
8
8
|
_defineProperty(this, "androidConfig", new AndroidHealthConfig());
|
|
9
9
|
_defineProperty(this, "iOSConfig", new IOSHealthConfig());
|
|
10
10
|
}
|
package/package.json
CHANGED
package/src/health_config.ts
CHANGED
|
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
18
|
|
|
19
19
|
s.dependency "React-Core"
|
|
20
|
-
s.dependency "VitalHealthKit", "~> 0.10.
|
|
20
|
+
s.dependency "VitalHealthKit", "~> 0.10.6"
|
|
21
21
|
|
|
22
22
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
23
23
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|