@hayanmind/monetai-react-native 0.2.4 โ 0.2.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/README.md +5 -25
- package/lib/commonjs/lib.js +2 -2
- package/lib/module/lib.js +2 -2
- package/package.json +2 -9
package/README.md
CHANGED
|
@@ -1,31 +1,11 @@
|
|
|
1
1
|
# @hayanmind/monetai-react-native
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
### Monetai
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Unlock hidden app revenue with AI from non-converting users
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
npm install @hayanmind/monetai-react-native
|
|
9
|
-
```
|
|
7
|
+
### Documentation
|
|
10
8
|
|
|
11
|
-
|
|
9
|
+
For detailed usage and documentation, please refer to the link below:
|
|
12
10
|
|
|
13
|
-
|
|
14
|
-
import { multiply } from '@hayanmind/monetai-react-native';
|
|
15
|
-
|
|
16
|
-
// ...
|
|
17
|
-
|
|
18
|
-
const result = await multiply(3, 7);
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
## Contributing
|
|
22
|
-
|
|
23
|
-
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
|
|
24
|
-
|
|
25
|
-
## License
|
|
26
|
-
|
|
27
|
-
MIT
|
|
28
|
-
|
|
29
|
-
---
|
|
30
|
-
|
|
31
|
-
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
|
|
11
|
+
๐ **Documentation**: https://hayanmind.notion.site/monetai-sdk-react-native
|
package/lib/commonjs/lib.js
CHANGED
|
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.getSDKVersion = getSDKVersion;
|
|
7
7
|
function getSDKVersion() {
|
|
8
8
|
// __SDK_VERSION__์ด ์ ์๋์ด ์์ผ๋ฉด ํด๋น ๊ฐ์ ์ฌ์ฉ
|
|
9
|
-
if (typeof "0.2.
|
|
10
|
-
return "0.2.
|
|
9
|
+
if (typeof "0.2.5" === 'string') {
|
|
10
|
+
return "0.2.5";
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
// ๊ทธ๋ ์ง ์์ผ๋ฉด, package.json์ lazyํ๊ฒ ๋ถ๋ฌ์ version์ ๋ฐํ
|
package/lib/module/lib.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
export function getSDKVersion() {
|
|
4
4
|
// __SDK_VERSION__์ด ์ ์๋์ด ์์ผ๋ฉด ํด๋น ๊ฐ์ ์ฌ์ฉ
|
|
5
|
-
if (typeof "0.2.
|
|
6
|
-
return "0.2.
|
|
5
|
+
if (typeof "0.2.5" === 'string') {
|
|
6
|
+
return "0.2.5";
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
// ๊ทธ๋ ์ง ์์ผ๋ฉด, package.json์ lazyํ๊ฒ ๋ถ๋ฌ์ version์ ๋ฐํ
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hayanmind/monetai-react-native",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": ".",
|
|
5
5
|
"source": "./src/index.tsx",
|
|
6
6
|
"main": "./lib/commonjs/index.js",
|
|
@@ -52,16 +52,9 @@
|
|
|
52
52
|
"ios",
|
|
53
53
|
"android"
|
|
54
54
|
],
|
|
55
|
-
"repository": {
|
|
56
|
-
"type": "git",
|
|
57
|
-
"url": "git+https://monetai.io.git"
|
|
58
|
-
},
|
|
59
55
|
"author": "Daehoon Kim <dhkim@hayanmind.com> (https://monetai.io)",
|
|
60
56
|
"license": "MIT",
|
|
61
|
-
"
|
|
62
|
-
"url": "https://monetai.io/issues"
|
|
63
|
-
},
|
|
64
|
-
"homepage": "https://monetai.io#readme",
|
|
57
|
+
"homepage": "https://monetai.io",
|
|
65
58
|
"publishConfig": {
|
|
66
59
|
"registry": "https://registry.npmjs.org/",
|
|
67
60
|
"access": "public"
|