@roxyapi/sdk 1.2.20 → 1.2.21
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 +3 -3
- package/dist/factory.cjs +1 -1
- package/dist/factory.js +1 -1
- package/dist/types.gen.d.ts +6 -6
- package/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/types.gen.ts +6 -6
- package/src/version.ts +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<a href="https://roxyapi.com">
|
|
3
|
-
<img src="https://raw.githubusercontent.com/RoxyAPI/sdk-typescript/main/assets/hero.png" alt="Roxy TypeScript SDK. Astrology, Vedic,
|
|
3
|
+
<img src="https://raw.githubusercontent.com/RoxyAPI/sdk-typescript/main/assets/hero.png" alt="Roxy TypeScript SDK. Astrology, Vedic, numerology, tarot, and more behind one API key." width="100%">
|
|
4
4
|
</a>
|
|
5
5
|
</p>
|
|
6
6
|
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
[](https://roxyapi.com/api-reference)
|
|
12
12
|
[](https://roxyapi.com/pricing)
|
|
13
13
|
|
|
14
|
-
TypeScript SDK for astrology, Vedic astrology,
|
|
14
|
+
TypeScript SDK for astrology, Vedic astrology, numerology, tarot, and more.
|
|
15
15
|
|
|
16
16
|
One API key. Fully typed. Verified against NASA JPL Horizons.
|
|
17
17
|
|
|
@@ -38,7 +38,7 @@ const { data } = await roxy.astrology.getDailyHoroscope({ path: { sign: 'aries'
|
|
|
38
38
|
console.log(data.overview, data.love, data.luckyNumber);
|
|
39
39
|
```
|
|
40
40
|
|
|
41
|
-
Then expand into charts, compatibility,
|
|
41
|
+
Then expand into charts, compatibility, numerology, tarot, and more.
|
|
42
42
|
|
|
43
43
|
## Quick start
|
|
44
44
|
|
package/dist/factory.cjs
CHANGED
package/dist/factory.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -23569,9 +23569,9 @@ export type GetCrystalsZodiacBySignData = {
|
|
|
23569
23569
|
body?: never;
|
|
23570
23570
|
path: {
|
|
23571
23571
|
/**
|
|
23572
|
-
* Zodiac sign name, case-insensitive (e.g., pisces, Pisces, PISCES all work). Valid:
|
|
23572
|
+
* Zodiac sign name, case-insensitive (e.g., pisces, Pisces, PISCES all work). Valid: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces.
|
|
23573
23573
|
*/
|
|
23574
|
-
sign: '
|
|
23574
|
+
sign: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
|
|
23575
23575
|
};
|
|
23576
23576
|
query?: {
|
|
23577
23577
|
/**
|
|
@@ -25159,15 +25159,15 @@ export type GetCrystalsData = {
|
|
|
25159
25159
|
*/
|
|
25160
25160
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
25161
25161
|
/**
|
|
25162
|
-
* Filter by chakra association. Valid values: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
|
|
25162
|
+
* Filter by chakra association, case-insensitive. Valid values: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
|
|
25163
25163
|
*/
|
|
25164
25164
|
chakra?: 'Root' | 'Sacral' | 'Solar Plexus' | 'Heart' | 'Throat' | 'Third Eye' | 'Crown';
|
|
25165
25165
|
/**
|
|
25166
|
-
* Filter by zodiac sign. Valid values:
|
|
25166
|
+
* Filter by zodiac sign, case-insensitive. Valid values: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces.
|
|
25167
25167
|
*/
|
|
25168
|
-
zodiac?: '
|
|
25168
|
+
zodiac?: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
|
|
25169
25169
|
/**
|
|
25170
|
-
* Filter by elemental association. Valid values: Earth, Water, Fire, Air, Storm.
|
|
25170
|
+
* Filter by elemental association, case-insensitive. Valid values: Earth, Water, Fire, Air, Storm.
|
|
25171
25171
|
*/
|
|
25172
25172
|
element?: 'Earth' | 'Water' | 'Fire' | 'Air' | 'Storm';
|
|
25173
25173
|
/**
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.2.
|
|
1
|
+
export declare const VERSION = "1.2.21";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/types.gen.ts
CHANGED
|
@@ -24156,9 +24156,9 @@ export type GetCrystalsZodiacBySignData = {
|
|
|
24156
24156
|
body?: never;
|
|
24157
24157
|
path: {
|
|
24158
24158
|
/**
|
|
24159
|
-
* Zodiac sign name, case-insensitive (e.g., pisces, Pisces, PISCES all work). Valid:
|
|
24159
|
+
* Zodiac sign name, case-insensitive (e.g., pisces, Pisces, PISCES all work). Valid: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces.
|
|
24160
24160
|
*/
|
|
24161
|
-
sign: '
|
|
24161
|
+
sign: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
|
|
24162
24162
|
};
|
|
24163
24163
|
query?: {
|
|
24164
24164
|
/**
|
|
@@ -25796,15 +25796,15 @@ export type GetCrystalsData = {
|
|
|
25796
25796
|
*/
|
|
25797
25797
|
lang?: 'en' | 'tr' | 'de' | 'es' | 'hi' | 'pt' | 'fr' | 'ru';
|
|
25798
25798
|
/**
|
|
25799
|
-
* Filter by chakra association. Valid values: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
|
|
25799
|
+
* Filter by chakra association, case-insensitive. Valid values: Root, Sacral, Solar Plexus, Heart, Throat, Third Eye, Crown.
|
|
25800
25800
|
*/
|
|
25801
25801
|
chakra?: 'Root' | 'Sacral' | 'Solar Plexus' | 'Heart' | 'Throat' | 'Third Eye' | 'Crown';
|
|
25802
25802
|
/**
|
|
25803
|
-
* Filter by zodiac sign. Valid values:
|
|
25803
|
+
* Filter by zodiac sign, case-insensitive. Valid values: aries, taurus, gemini, cancer, leo, virgo, libra, scorpio, sagittarius, capricorn, aquarius, pisces.
|
|
25804
25804
|
*/
|
|
25805
|
-
zodiac?: '
|
|
25805
|
+
zodiac?: 'aries' | 'taurus' | 'gemini' | 'cancer' | 'leo' | 'virgo' | 'libra' | 'scorpio' | 'sagittarius' | 'capricorn' | 'aquarius' | 'pisces';
|
|
25806
25806
|
/**
|
|
25807
|
-
* Filter by elemental association. Valid values: Earth, Water, Fire, Air, Storm.
|
|
25807
|
+
* Filter by elemental association, case-insensitive. Valid values: Earth, Water, Fire, Air, Storm.
|
|
25808
25808
|
*/
|
|
25809
25809
|
element?: 'Earth' | 'Water' | 'Fire' | 'Air' | 'Storm';
|
|
25810
25810
|
/**
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.2.
|
|
1
|
+
export const VERSION = '1.2.21';
|