@arkeytyp/valu-api 1.0.0 → 1.0.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 +5 -0
- package/package.json +3 -3
- package/src/ValuApi.js +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
The `valu-api` package enables developers to create custom iframe applications for Valu Social. It provides tools to invoke functions of registered Valu applications and subscribe to their events. With features like API versioning, event handling, and console command testing, developers can seamlessly integrate and extend functionality within the Valu Social ecosystem.
|
|
2
2
|
|
|
3
|
+
# install
|
|
4
|
+
```
|
|
5
|
+
npm install @arkeytyp/valu-api
|
|
6
|
+
```
|
|
7
|
+
|
|
3
8
|
# Usage
|
|
4
9
|
|
|
5
10
|
## 1. Initialize ValuApi
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkeytyp/valu-api",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "A package for developing iframe applications for Valu Social. Allows invoking functions of registered Valu applications and subscribing to events, as well as other features that enable developers creating own ifram apps for the value social",
|
|
5
|
-
"main": "ValuApi.js",
|
|
5
|
+
"main": "src/ValuApi.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"No test specified\" && exit 1"
|
|
8
8
|
},
|
|
@@ -13,4 +13,4 @@
|
|
|
13
13
|
"type": "git",
|
|
14
14
|
"url": "https://github.com/arkeytyp/valu-api.git"
|
|
15
15
|
}
|
|
16
|
-
}
|
|
16
|
+
}
|