Skip to content

Commit 8645a00

Browse files
release: v0.1.54
1 parent 532be09 commit 8645a00

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "uv_build"
44

55
[project]
66
name = "roxy-sdk"
7-
version = "0.1.53"
7+
version = "0.1.54"
88
description = "Python SDK for RoxyAPI. Astrology, tarot, numerology, and more."
99
readme = "README.md"
1010
license = "MIT"

specs/openapi.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5964,7 +5964,7 @@
59645964
"id": {
59655965
"type": "string",
59665966
"example": "gajakesari",
5967-
"description": "Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text."
5967+
"description": "Glossary id (lowercase, kebab-case) matching an entry in the 301-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text."
59685968
},
59695969
"name": {
59705970
"type": "string",
@@ -8065,7 +8065,7 @@
80658065
"id": {
80668066
"type": "string",
80678067
"example": "gajakesari",
8068-
"description": "Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text."
8068+
"description": "Glossary id (lowercase, kebab-case) matching an entry in the 301-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text."
80698069
},
80708070
"name": {
80718071
"type": "string",
@@ -8124,7 +8124,7 @@
81248124
"id": {
81258125
"type": "string",
81268126
"example": "gajakesari",
8127-
"description": "Glossary id (lowercase, kebab-case) matching an entry in the 300-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text."
8127+
"description": "Glossary id (lowercase, kebab-case) matching an entry in the 301-entry planetary-yoga catalog. Use with GET /yoga/{id} to retrieve the full glossary text."
81288128
},
81298129
"name": {
81308130
"type": "string",
@@ -40417,8 +40417,8 @@
4041740417
"tags": [
4041840418
"Vedic Astrology"
4041940419
],
40420-
"summary": "List all planetary yogas - 300+ Vedic Yoga Glossary",
40421-
"description": "Browse the 300+ entry Vedic planetary-yoga glossary. Returns id and name for every cataloged yoga (Raja, Dhana, Pancha Mahapurusha, Nabhasa, Chandra-Mangala, and more). This is a dictionary lookup, not chart-driven detection: it does not inspect a birth chart. Use GET /yoga/{id} for the full glossary entry, or POST /yoga/detect to run all 44 detection rules against a specific kundli. Ideal for yoga-browser UIs, search, and progressive data loading.",
40420+
"summary": "List all planetary yogas - 301 entry Vedic Yoga Glossary",
40421+
"description": "Browse the 301-entry Vedic planetary-yoga glossary. Returns id and name for every cataloged yoga (Raja, Dhana, Pancha Mahapurusha, Nabhasa, Chandra-Mangala, and more). This is a dictionary lookup, not chart-driven detection: it does not inspect a birth chart. Use GET /yoga/{id} for the full glossary entry, or POST /yoga/detect to run all 44 detection rules against a specific kundli. Ideal for yoga-browser UIs, search, and progressive data loading.",
4042240422
"security": [
4042340423
{
4042440424
"apiKey": []
@@ -72643,12 +72643,12 @@
7264372643
"question": {
7264472644
"type": "string",
7264572645
"example": "What do I need to know about my career path?",
72646-
"description": "Optional querent question to focus the career spread. It is echoed back on the reading and gives the five career positions their context. Omit for general work and vocation guidance."
72646+
"description": "Optional querent question to focus the career spread. It is echoed back on the reading and gives the seven career positions their context. Omit for general work and vocation guidance."
7264772647
},
7264872648
"seed": {
7264972649
"type": "string",
7265072650
"example": "reading-2f9c1a",
72651-
"description": "Optional seed for reproducible results. The same seed always draws the same five cards into the same career positions, which is what lets a reading be shared or re-rendered. Omit for a random draw."
72651+
"description": "Optional seed for reproducible results. The same seed always draws the same seven cards into the same career positions, which is what lets a reading be shared or re-rendered. Omit for a random draw."
7265272652
}
7265372653
}
7265472654
}

src/roxy_sdk/factory.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2526,7 +2526,7 @@ async def list_rashis_async(self, *, lang: str | None = None) -> Any:
25262526
return await self._get_async(f"/vedic-astrology/rashis", params=params or None)
25272527

25282528
def list_yogas(self, *, family: str | None = None, lang: str | None = None) -> Any:
2529-
"""List all planetary yogas - 300+ Vedic Yoga Glossary"""
2529+
"""List all planetary yogas - 301 entry Vedic Yoga Glossary"""
25302530
params: dict[str, Any] = {}
25312531
if lang is not None:
25322532
params["lang"] = lang
@@ -2535,7 +2535,7 @@ def list_yogas(self, *, family: str | None = None, lang: str | None = None) -> A
25352535
return self._get(f"/vedic-astrology/yoga", params=params or None)
25362536

25372537
async def list_yogas_async(self, *, family: str | None = None, lang: str | None = None) -> Any:
2538-
"""List all planetary yogas - 300+ Vedic Yoga Glossary (async)"""
2538+
"""List all planetary yogas - 301 entry Vedic Yoga Glossary (async)"""
25392539
params: dict[str, Any] = {}
25402540
if lang is not None:
25412541
params["lang"] = lang

src/roxy_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.1.53"
1+
VERSION = "0.1.54"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)