@kingstinct/react-native-healthkit 4.2.0 → 4.4.1
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/README.md +1 -1
- package/ios/ReactNativeHealthkit.m +6 -1
- package/ios/ReactNativeHealthkit.swift +365 -176
- package/lib/commonjs/index.ios.js +129 -105
- package/lib/commonjs/index.ios.js.map +1 -1
- package/lib/commonjs/index.js +58 -44
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/native-types.js +136 -106
- package/lib/commonjs/native-types.js.map +1 -1
- package/lib/commonjs/types.js +4 -0
- package/lib/commonjs/types.js.map +1 -1
- package/lib/example/App.js +197 -0
- package/lib/index.ios.js +310 -0
- package/lib/index.js +44 -0
- package/lib/module/index.ios.js +130 -106
- package/lib/module/index.ios.js.map +1 -1
- package/lib/module/index.js +52 -37
- package/lib/module/index.js.map +1 -1
- package/lib/module/native-types.js +127 -104
- package/lib/module/native-types.js.map +1 -1
- package/lib/module/types.js +1 -1
- package/lib/module/types.js.map +1 -1
- package/lib/native-types.js +447 -0
- package/lib/src/index.ios.js +314 -0
- package/lib/src/index.js +45 -0
- package/lib/src/native-types.js +453 -0
- package/lib/src/types.js +1 -0
- package/lib/types.js +1 -0
- package/lib/typescript/src/index.d.ts +1 -1
- package/lib/typescript/src/index.ios.d.ts +1 -1
- package/lib/typescript/src/native-types.d.ts +458 -205
- package/lib/typescript/src/types.d.ts +87 -81
- package/package.json +21 -35
- package/src/index.ios.tsx +303 -269
- package/src/index.tsx +63 -45
- package/src/native-types.ts +318 -290
- package/src/types.ts +120 -105
- package/.DS_Store +0 -0
- package/.circleci/config.yml +0 -98
- package/.editorconfig +0 -15
- package/.gitattributes +0 -3
- package/.github/workflows/main.yml +0 -32
- package/.gitignore +0 -60
- package/CONTRIBUTING.md +0 -184
- package/babel.config.js +0 -3
- package/example-expo/.expo/README.md +0 -15
- package/example-expo/.expo/devices.json +0 -8
- package/example-expo/.expo/packager-info.json +0 -5
- package/example-expo/.expo/settings.json +0 -9
- package/example-expo/.expo-shared/assets.json +0 -4
- package/example-expo/.gitignore +0 -14
- package/example-expo/App.tsx +0 -376
- package/example-expo/app.json +0 -43
- package/example-expo/assets/adaptive-icon.png +0 -0
- package/example-expo/assets/favicon.png +0 -0
- package/example-expo/assets/icon.png +0 -0
- package/example-expo/assets/splash.png +0 -0
- package/example-expo/babel.config.js +0 -8
- package/example-expo/build-1653040579600.ipa +0 -0
- package/example-expo/build-1653041063216.ipa +0 -0
- package/example-expo/eas.json +0 -18
- package/example-expo/package.json +0 -32
- package/example-expo/tsconfig.json +0 -6
- package/example-expo/yarn.lock +0 -6857
- package/lib/typescript/example-expo/App.d.ts +0 -3
- package/lib/typescript/src/__tests__/index.test.d.ts +0 -0
- package/src/__tests__/index.test.tsx +0 -1
- package/tsconfig.json +0 -27
- package/yarn.lock +0 -10241
|
Binary file
|
|
Binary file
|
package/example-expo/eas.json
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"cli": {
|
|
3
|
-
"version": ">= 0.51.0"
|
|
4
|
-
},
|
|
5
|
-
"build": {
|
|
6
|
-
"development": {
|
|
7
|
-
"developmentClient": true,
|
|
8
|
-
"distribution": "internal"
|
|
9
|
-
},
|
|
10
|
-
"preview": {
|
|
11
|
-
"distribution": "internal"
|
|
12
|
-
},
|
|
13
|
-
"production": {}
|
|
14
|
-
},
|
|
15
|
-
"submit": {
|
|
16
|
-
"production": {}
|
|
17
|
-
}
|
|
18
|
-
}
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "healthkit-example-expo",
|
|
3
|
-
"version": "1.0.0",
|
|
4
|
-
"main": "node_modules/expo/AppEntry.js",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"start": "expo start",
|
|
7
|
-
"ios": "expo start --ios",
|
|
8
|
-
"eject": "expo eject",
|
|
9
|
-
"build-local": "eas build --platform=ios --profile=development --local"
|
|
10
|
-
},
|
|
11
|
-
"dependencies": {
|
|
12
|
-
"@kingstinct/react-native-healthkit": "^4.1.1",
|
|
13
|
-
"expo": "~45.0.0",
|
|
14
|
-
"expo-dev-client": "~0.9.6",
|
|
15
|
-
"expo-status-bar": "~1.3.0",
|
|
16
|
-
"react": "17.0.2",
|
|
17
|
-
"react-dom": "17.0.2",
|
|
18
|
-
"react-native": "0.68.2",
|
|
19
|
-
"react-native-paper": "^4.12.1",
|
|
20
|
-
"react-native-web": "0.17.7"
|
|
21
|
-
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@babel/core": "^7.12.9",
|
|
24
|
-
"@types/react": "~17.0.21",
|
|
25
|
-
"@types/react-native": "0.67",
|
|
26
|
-
"typescript": "4"
|
|
27
|
-
},
|
|
28
|
-
"resolutions": {
|
|
29
|
-
"@types/react": "17.0.2"
|
|
30
|
-
},
|
|
31
|
-
"private": true
|
|
32
|
-
}
|