react-native-gizwits-sdk-v5 1.6.1 → 1.6.3
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/.DS_Store +0 -0
- package/.eslintignore +3 -0
- package/.eslintrc.js +11 -0
- package/.gitignore +67 -0
- package/.idea/.gitignore +3 -0
- package/.idea/MarsCodeWorkspaceAppSettings.xml +6 -0
- package/.idea/caches/deviceStreaming.xml +1041 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/react-native-gizwits-sdk-v5.iml +9 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +52 -0
- package/.prettierrc.js +5 -0
- package/android/.DS_Store +0 -0
- package/android/build.gradle +4 -4
- package/android/src/main/java/com/gizwits/.DS_Store +0 -0
- package/babel.config.js +3 -0
- package/ios/.DS_Store +0 -0
- package/ios/RNGizSDKManagerModule.xcodeproj/project.xcworkspace/xcuserdata/roc.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RNGizSDKManagerModule.xcodeproj/xcuserdata/roc.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
- package/lib/types.d.ts +3 -2
- package/package.json +1 -1
- package/react-native-gizwits-sdk-v5.podspec +1 -1
- package/src/Base.tsx +28 -0
- package/src/__tests__/index.test.ts +5 -0
- package/src/device.tsx +314 -0
- package/src/index.tsx +433 -0
- package/src/types.ts +253 -0
- package/src/user.tsx +125 -0
- package/tsconfig.json +18 -0
- package/yarn.lock +6942 -0
package/.DS_Store
ADDED
|
Binary file
|
package/.eslintignore
ADDED
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
extends: ['@react-native-community', 'plugin:prettier/recommended'],
|
|
3
|
+
plugins: ['simple-import-sort'],
|
|
4
|
+
root: true,
|
|
5
|
+
rules: {
|
|
6
|
+
'import/order': 'off',
|
|
7
|
+
'simple-import-sort/exports': 'error',
|
|
8
|
+
'simple-import-sort/imports': 'error',
|
|
9
|
+
'sort-imports': 'off',
|
|
10
|
+
},
|
|
11
|
+
}
|
package/.gitignore
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# OSX
|
|
2
|
+
#
|
|
3
|
+
.DS_Store
|
|
4
|
+
|
|
5
|
+
# Xcode
|
|
6
|
+
#
|
|
7
|
+
build/
|
|
8
|
+
*.pbxuser
|
|
9
|
+
!default.pbxuser
|
|
10
|
+
*.mode1v3
|
|
11
|
+
!default.mode1v3
|
|
12
|
+
*.mode2v3
|
|
13
|
+
!default.mode2v3
|
|
14
|
+
*.perspectivev3
|
|
15
|
+
!default.perspectivev3
|
|
16
|
+
xcuserdata
|
|
17
|
+
*.xccheckout
|
|
18
|
+
*.moved-aside
|
|
19
|
+
DerivedData
|
|
20
|
+
*.hmap
|
|
21
|
+
*.ipa
|
|
22
|
+
*.xcuserstate
|
|
23
|
+
|
|
24
|
+
# Android/IntelliJ
|
|
25
|
+
#
|
|
26
|
+
build/
|
|
27
|
+
.idea
|
|
28
|
+
.gradle
|
|
29
|
+
local.properties
|
|
30
|
+
*.iml
|
|
31
|
+
*.hprof
|
|
32
|
+
/android/gradlew
|
|
33
|
+
/android/gradlew.bat
|
|
34
|
+
/android/gradle/
|
|
35
|
+
|
|
36
|
+
# node.js
|
|
37
|
+
#
|
|
38
|
+
node_modules/
|
|
39
|
+
npm-debug.log
|
|
40
|
+
yarn-error.log
|
|
41
|
+
|
|
42
|
+
# BUCK
|
|
43
|
+
buck-out/
|
|
44
|
+
\.buckd/
|
|
45
|
+
*.keystore
|
|
46
|
+
!debug.keystore
|
|
47
|
+
|
|
48
|
+
# fastlane
|
|
49
|
+
#
|
|
50
|
+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
|
|
51
|
+
# screenshots whenever they are needed.
|
|
52
|
+
# For more information about the recommended setup visit:
|
|
53
|
+
# https://docs.fastlane.tools/best-practices/source-control/
|
|
54
|
+
|
|
55
|
+
*/fastlane/report.xml
|
|
56
|
+
*/fastlane/Preview.html
|
|
57
|
+
*/fastlane/screenshots
|
|
58
|
+
|
|
59
|
+
# Bundle artifact
|
|
60
|
+
*.jsbundle
|
|
61
|
+
|
|
62
|
+
# CocoaPods
|
|
63
|
+
/ios/Pods/
|
|
64
|
+
|
|
65
|
+
# Library
|
|
66
|
+
lib/
|
|
67
|
+
docs
|
package/.idea/.gitignore
ADDED