@wayq/beekon-rn 0.0.3 → 0.0.5
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/BeekonRn.podspec +1 -1
- package/README.md +91 -39
- package/android/build.gradle +9 -4
- package/android/src/main/java/in/wayq/beekonrn/BeekonRnModule.kt +306 -60
- package/ios/BeekonRn.mm +90 -24
- package/ios/BeekonRn.swift +360 -60
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64/BeekonKit.framework/BeekonKit +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64/BeekonKit.framework/Info.plist +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64/BeekonKit.framework/Modules/BeekonKit.swiftmodule/arm64-apple-ios.abi.json +7521 -1312
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64/BeekonKit.framework/Modules/BeekonKit.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64/BeekonKit.framework/Modules/BeekonKit.swiftmodule/arm64-apple-ios.swiftinterface +191 -40
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/BeekonKit +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Info.plist +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Modules/BeekonKit.swiftmodule/arm64-apple-ios-simulator.abi.json +7521 -1312
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Modules/BeekonKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Modules/BeekonKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface +191 -40
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Modules/BeekonKit.swiftmodule/x86_64-apple-ios-simulator.abi.json +7521 -1312
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Modules/BeekonKit.swiftmodule/x86_64-apple-ios-simulator.swiftdoc +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/Modules/BeekonKit.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +191 -40
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64_x86_64-simulator/BeekonKit.framework/_CodeSignature/CodeResources +2 -80
- package/lib/module/NativeBeekonRn.js +22 -7
- package/lib/module/NativeBeekonRn.js.map +1 -1
- package/lib/module/beekon.js +198 -46
- package/lib/module/beekon.js.map +1 -1
- package/lib/module/index.js.map +1 -1
- package/lib/module/internal/mappers.js +122 -28
- package/lib/module/internal/mappers.js.map +1 -1
- package/lib/module/types/config.js +2 -0
- package/lib/module/types/enums.js +2 -0
- package/lib/module/types/enums.js.map +1 -0
- package/lib/module/types/error.js +10 -4
- package/lib/module/types/error.js.map +1 -1
- package/lib/module/types/geofence.js +2 -0
- package/lib/module/types/geofence.js.map +1 -0
- package/lib/module/types/location.js +2 -0
- package/lib/module/types/sync.js +2 -0
- package/lib/module/types/sync.js.map +1 -0
- package/lib/typescript/src/NativeBeekonRn.d.ts +102 -20
- package/lib/typescript/src/NativeBeekonRn.d.ts.map +1 -1
- package/lib/typescript/src/beekon.d.ts +81 -33
- package/lib/typescript/src/beekon.d.ts.map +1 -1
- package/lib/typescript/src/index.d.ts +5 -2
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/internal/mappers.d.ts +12 -6
- package/lib/typescript/src/internal/mappers.d.ts.map +1 -1
- package/lib/typescript/src/types/config.d.ts +50 -20
- package/lib/typescript/src/types/config.d.ts.map +1 -1
- package/lib/typescript/src/types/enums.d.ts +48 -0
- package/lib/typescript/src/types/enums.d.ts.map +1 -0
- package/lib/typescript/src/types/error.d.ts +11 -5
- package/lib/typescript/src/types/error.d.ts.map +1 -1
- package/lib/typescript/src/types/geofence.d.ts +36 -0
- package/lib/typescript/src/types/geofence.d.ts.map +1 -0
- package/lib/typescript/src/types/location.d.ts +22 -8
- package/lib/typescript/src/types/location.d.ts.map +1 -1
- package/lib/typescript/src/types/state.d.ts +13 -4
- package/lib/typescript/src/types/state.d.ts.map +1 -1
- package/lib/typescript/src/types/sync.d.ts +27 -0
- package/lib/typescript/src/types/sync.d.ts.map +1 -0
- package/package.json +4 -5
- package/scripts/fetch-beekonkit.sh +5 -5
- package/src/NativeBeekonRn.ts +110 -20
- package/src/beekon.ts +219 -49
- package/src/index.tsx +21 -2
- package/src/internal/mappers.ts +187 -30
- package/src/types/config.ts +52 -20
- package/src/types/enums.ts +64 -0
- package/src/types/error.ts +11 -8
- package/src/types/geofence.ts +37 -0
- package/src/types/location.ts +28 -8
- package/src/types/state.ts +13 -3
- package/src/types/sync.ts +23 -0
- package/ios/Frameworks/BeekonKit.xcframework/_CodeSignature/CodeDirectory +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/_CodeSignature/CodeRequirements +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/_CodeSignature/CodeResources +0 -296
- package/ios/Frameworks/BeekonKit.xcframework/_CodeSignature/CodeSignature +0 -0
- package/ios/Frameworks/BeekonKit.xcframework/ios-arm64/BeekonKit.framework/_CodeSignature/CodeResources +0 -146
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
-
<plist version="1.0">
|
|
4
|
-
<dict>
|
|
5
|
-
<key>files</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Info.plist</key>
|
|
8
|
-
<data>
|
|
9
|
-
J2Q8IsOOK4KAiFaP40/M4N6vym0=
|
|
10
|
-
</data>
|
|
11
|
-
<key>Modules/BeekonKit.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
12
|
-
<data>
|
|
13
|
-
g3XuCRuM2juW8XYn4Y2Xe208MbM=
|
|
14
|
-
</data>
|
|
15
|
-
<key>Modules/BeekonKit.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
16
|
-
<data>
|
|
17
|
-
GYBAar6iPnb1XJGupWqUhKVBjKU=
|
|
18
|
-
</data>
|
|
19
|
-
<key>Modules/BeekonKit.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
20
|
-
<data>
|
|
21
|
-
v4db5W67RIw4bayliPlZv35/sFU=
|
|
22
|
-
</data>
|
|
23
|
-
<key>PrivacyInfo.xcprivacy</key>
|
|
24
|
-
<data>
|
|
25
|
-
9ZHPJ6MUYP0Ios5LKP+bfuWVxJk=
|
|
26
|
-
</data>
|
|
27
|
-
</dict>
|
|
28
|
-
<key>files2</key>
|
|
29
|
-
<dict>
|
|
30
|
-
<key>Modules/BeekonKit.swiftmodule/arm64-apple-ios.abi.json</key>
|
|
31
|
-
<dict>
|
|
32
|
-
<key>hash2</key>
|
|
33
|
-
<data>
|
|
34
|
-
vc71j/YWrI9vpX+HcsT84p2Mh+AIR7i4y90BFkENP3w=
|
|
35
|
-
</data>
|
|
36
|
-
</dict>
|
|
37
|
-
<key>Modules/BeekonKit.swiftmodule/arm64-apple-ios.swiftdoc</key>
|
|
38
|
-
<dict>
|
|
39
|
-
<key>hash2</key>
|
|
40
|
-
<data>
|
|
41
|
-
gKcGwL/AcvR3lotu9XY2suukPsj+jWsSJvD7sm2jQXw=
|
|
42
|
-
</data>
|
|
43
|
-
</dict>
|
|
44
|
-
<key>Modules/BeekonKit.swiftmodule/arm64-apple-ios.swiftinterface</key>
|
|
45
|
-
<dict>
|
|
46
|
-
<key>hash2</key>
|
|
47
|
-
<data>
|
|
48
|
-
mitVvWaJ1tpzwgWCfcEIK3u3ybZ7hSpmykZJnK8vf00=
|
|
49
|
-
</data>
|
|
50
|
-
</dict>
|
|
51
|
-
<key>PrivacyInfo.xcprivacy</key>
|
|
52
|
-
<dict>
|
|
53
|
-
<key>hash2</key>
|
|
54
|
-
<data>
|
|
55
|
-
KNi008FJ9ZF/nLOH4DadbEUqysKXh/HjMAmdLdidn4c=
|
|
56
|
-
</data>
|
|
57
|
-
</dict>
|
|
58
|
-
</dict>
|
|
59
|
-
<key>rules</key>
|
|
60
|
-
<dict>
|
|
61
|
-
<key>^.*</key>
|
|
62
|
-
<true/>
|
|
63
|
-
<key>^.*\.lproj/</key>
|
|
64
|
-
<dict>
|
|
65
|
-
<key>optional</key>
|
|
66
|
-
<true/>
|
|
67
|
-
<key>weight</key>
|
|
68
|
-
<real>1000</real>
|
|
69
|
-
</dict>
|
|
70
|
-
<key>^.*\.lproj/locversion.plist$</key>
|
|
71
|
-
<dict>
|
|
72
|
-
<key>omit</key>
|
|
73
|
-
<true/>
|
|
74
|
-
<key>weight</key>
|
|
75
|
-
<real>1100</real>
|
|
76
|
-
</dict>
|
|
77
|
-
<key>^Base\.lproj/</key>
|
|
78
|
-
<dict>
|
|
79
|
-
<key>weight</key>
|
|
80
|
-
<real>1010</real>
|
|
81
|
-
</dict>
|
|
82
|
-
<key>^version.plist$</key>
|
|
83
|
-
<true/>
|
|
84
|
-
</dict>
|
|
85
|
-
<key>rules2</key>
|
|
86
|
-
<dict>
|
|
87
|
-
<key>.*\.dSYM($|/)</key>
|
|
88
|
-
<dict>
|
|
89
|
-
<key>weight</key>
|
|
90
|
-
<real>11</real>
|
|
91
|
-
</dict>
|
|
92
|
-
<key>^(.*/)?\.DS_Store$</key>
|
|
93
|
-
<dict>
|
|
94
|
-
<key>omit</key>
|
|
95
|
-
<true/>
|
|
96
|
-
<key>weight</key>
|
|
97
|
-
<real>2000</real>
|
|
98
|
-
</dict>
|
|
99
|
-
<key>^.*</key>
|
|
100
|
-
<true/>
|
|
101
|
-
<key>^.*\.lproj/</key>
|
|
102
|
-
<dict>
|
|
103
|
-
<key>optional</key>
|
|
104
|
-
<true/>
|
|
105
|
-
<key>weight</key>
|
|
106
|
-
<real>1000</real>
|
|
107
|
-
</dict>
|
|
108
|
-
<key>^.*\.lproj/locversion.plist$</key>
|
|
109
|
-
<dict>
|
|
110
|
-
<key>omit</key>
|
|
111
|
-
<true/>
|
|
112
|
-
<key>weight</key>
|
|
113
|
-
<real>1100</real>
|
|
114
|
-
</dict>
|
|
115
|
-
<key>^Base\.lproj/</key>
|
|
116
|
-
<dict>
|
|
117
|
-
<key>weight</key>
|
|
118
|
-
<real>1010</real>
|
|
119
|
-
</dict>
|
|
120
|
-
<key>^Info\.plist$</key>
|
|
121
|
-
<dict>
|
|
122
|
-
<key>omit</key>
|
|
123
|
-
<true/>
|
|
124
|
-
<key>weight</key>
|
|
125
|
-
<real>20</real>
|
|
126
|
-
</dict>
|
|
127
|
-
<key>^PkgInfo$</key>
|
|
128
|
-
<dict>
|
|
129
|
-
<key>omit</key>
|
|
130
|
-
<true/>
|
|
131
|
-
<key>weight</key>
|
|
132
|
-
<real>20</real>
|
|
133
|
-
</dict>
|
|
134
|
-
<key>^embedded\.provisionprofile$</key>
|
|
135
|
-
<dict>
|
|
136
|
-
<key>weight</key>
|
|
137
|
-
<real>20</real>
|
|
138
|
-
</dict>
|
|
139
|
-
<key>^version\.plist$</key>
|
|
140
|
-
<dict>
|
|
141
|
-
<key>weight</key>
|
|
142
|
-
<real>20</real>
|
|
143
|
-
</dict>
|
|
144
|
-
</dict>
|
|
145
|
-
</dict>
|
|
146
|
-
</plist>
|