Skip to content

Commit 46530df

Browse files
release: v1.2.20
1 parent f033d75 commit 46530df

4 files changed

Lines changed: 26 additions & 9 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roxyapi/sdk",
3-
"version": "1.2.19",
3+
"version": "1.2.20",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

specs/openapi.json

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6812,6 +6812,18 @@
68126812
"weapon": {
68136813
"type": "string",
68146814
"description": "Secret weapon or superpower of this sign."
6815+
},
6816+
"compatibleSigns": {
6817+
"type": "array",
6818+
"items": {
6819+
"type": "string"
6820+
},
6821+
"example": [
6822+
"Leo",
6823+
"Sagittarius",
6824+
"Gemini"
6825+
],
6826+
"description": "Most compatible zodiac signs for this sign. Trine partners (same element, 120 degrees apart) listed first, followed by a sextile partner (complementary element, 60 degrees apart). Use for compatibility widgets, dating app onboarding, sign profile cards, and zodiac matchmaking."
68156827
}
68166828
},
68176829
"required": [
@@ -6823,7 +6835,8 @@
68236835
"rulingPlanet",
68246836
"dates",
68256837
"keywords",
6826-
"description"
6838+
"description",
6839+
"compatibleSigns"
68276840
]
68286841
}
68296842
}
@@ -15336,7 +15349,7 @@
1533615349
"Sagittarius",
1533715350
"Gemini"
1533815351
],
15339-
"description": "Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony."
15352+
"description": "Most compatible zodiac signs for this sign. Trine partners (same element) followed by a sextile partner (complementary element). Use for compatibility widgets, dating app onboarding, and horoscope cards."
1534015353
},
1534115354
"activeTransits": {
1534215355
"type": "array",
@@ -15734,7 +15747,7 @@
1573415747
"Sagittarius",
1573515748
"Gemini"
1573615749
],
15737-
"description": "Most compatible signs this week."
15750+
"description": "Most compatible zodiac signs for this sign. Trine partners (same element) followed by a sextile partner (complementary element)."
1573815751
}
1573915752
},
1574015753
"required": [
@@ -16139,7 +16152,7 @@
1613916152
"Sagittarius",
1614016153
"Gemini"
1614116154
],
16142-
"description": "Most compatible signs this month."
16155+
"description": "Most compatible zodiac signs for this sign. Trine partners (same element) followed by a sextile partner (complementary element)."
1614316156
}
1614416157
},
1614516158
"required": [

src/types.gen.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3729,6 +3729,10 @@ export type GetAstrologySignsByIdResponses = {
37293729
* Secret weapon or superpower of this sign.
37303730
*/
37313731
weapon?: string;
3732+
/**
3733+
* Most compatible zodiac signs for this sign. Trine partners (same element, 120 degrees apart) listed first, followed by a sextile partner (complementary element, 60 degrees apart). Use for compatibility widgets, dating app onboarding, sign profile cards, and zodiac matchmaking.
3734+
*/
3735+
compatibleSigns: Array<string>;
37323736
};
37333737
};
37343738

@@ -7868,7 +7872,7 @@ export type GetAstrologyHoroscopeBySignDailyResponses = {
78687872
*/
78697873
luckyColor: string;
78707874
/**
7871-
* Most compatible zodiac signs today. First sign is where Venus transits, second is the Moon sign, remainder from elemental harmony.
7875+
* Most compatible zodiac signs for this sign. Trine partners (same element) followed by a sextile partner (complementary element). Use for compatibility widgets, dating app onboarding, and horoscope cards.
78727876
*/
78737877
compatibleSigns: Array<string>;
78747878
/**
@@ -8059,7 +8063,7 @@ export type GetAstrologyHoroscopeBySignWeeklyResponses = {
80598063
*/
80608064
luckyNumbers: Array<number>;
80618065
/**
8062-
* Most compatible signs this week.
8066+
* Most compatible zodiac signs for this sign. Trine partners (same element) followed by a sextile partner (complementary element).
80638067
*/
80648068
compatibleSigns: Array<string>;
80658069
};
@@ -8260,7 +8264,7 @@ export type GetAstrologyHoroscopeBySignMonthlyResponses = {
82608264
*/
82618265
luckyColor: string;
82628266
/**
8263-
* Most compatible signs this month.
8267+
* Most compatible zodiac signs for this sign. Trine partners (same element) followed by a sextile partner (complementary element).
82648268
*/
82658269
compatibleSigns: Array<string>;
82668270
};

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.2.19';
1+
export const VERSION = '1.2.20';

0 commit comments

Comments
 (0)