@apiverve/horoscope 1.0.3 → 1.1.4
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 +14 -8
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -71,18 +71,24 @@ api.execute(query, function (error, data) {
|
|
|
71
71
|
"status": "ok",
|
|
72
72
|
"error": null,
|
|
73
73
|
"data": {
|
|
74
|
-
"color": "
|
|
74
|
+
"color": "green",
|
|
75
75
|
"compatibility": [
|
|
76
76
|
"leo",
|
|
77
77
|
"sagittarius"
|
|
78
78
|
],
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
79
|
+
"horoscope": "Today is a day to focus on your inner self, Aries. Take some time to reflect on your emotions and address any unresolved issues. Trust your intuition and don't be afraid to express your feelings openly. Remember to take care of yourself both mentally and physically. You may also feel a strong urge to connect with nature or spend time outdoors. Embrace this opportunity to ground yourself and find peace in the beauty of the natural world.",
|
|
80
|
+
"luckyNumber": 62,
|
|
81
|
+
"luckyTime": "10:00 AM",
|
|
82
|
+
"mood": "stressed",
|
|
83
|
+
"sign": "aries",
|
|
84
|
+
"zodiac": {
|
|
85
|
+
"element": "fire",
|
|
86
|
+
"name": "Aries",
|
|
87
|
+
"stone": "bloodstone",
|
|
88
|
+
"symbol": "♈"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"code": 200
|
|
86
92
|
}
|
|
87
93
|
```
|
|
88
94
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apiverve/horoscope",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Horoscope is a simple tool for getting horoscope data. It returns the horoscope for the day.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/apiverve/horoscope-API/issues"
|
|
20
20
|
},
|
|
21
|
-
"homepage": "https://
|
|
21
|
+
"homepage": "https://apiverve.com/marketplace/api/horoscope",
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"mocha": "^10.
|
|
23
|
+
"mocha": "^10.7.3",
|
|
24
24
|
"chai": "^5.1.1",
|
|
25
25
|
"dotenv": "^16.4.5"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"node-fetch": "3.3.2",
|
|
28
|
+
"node-fetch": "^3.3.2",
|
|
29
29
|
"promise": "^8.3.0",
|
|
30
|
-
"axios": "1.
|
|
30
|
+
"axios": "1.7.4"
|
|
31
31
|
}
|
|
32
32
|
}
|