Skip to content

Commit 4cd076b

Browse files
release: v0.1.28
1 parent 7885c31 commit 4cd076b

4 files changed

Lines changed: 17 additions & 17 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.27"
7+
version = "0.1.28"
88
description = "Python SDK for RoxyAPI. Astrology, tarot, numerology, and more."
99
readme = "README.md"
1010
license = "MIT"

specs/openapi.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24513,25 +24513,25 @@
2451324513
"active": {
2451424514
"type": "boolean",
2451524515
"example": false,
24516-
"description": "Whether Panchaka is currently active. Panchaka occurs when Moon transits through the last 5 nakshatras (Dhanishta to Revati)."
24516+
"description": "Whether Panchaka is in force at sunrise, the panchang day reference. Can be false while startsAt and endsAt are populated when Panchaka begins later in the day."
2451724517
},
2451824518
"type": {
2451924519
"type": "string",
2452024520
"nullable": true,
24521-
"example": null,
24522-
"description": "Panchaka type when active: Mrityu (death-related), Agni (fire-related), Raja (government-related), Chora (theft-related), or Roga (disease-related). Null when Panchaka is not active."
24521+
"example": "Mrityu",
24522+
"description": "Panchaka dosha, set by the weekday the period BEGINS (not the nakshatra): Roga (Sunday, disease), Raja (Monday, government), Agni (Tuesday, fire), Chora (Friday, theft), Mrityu (Saturday, death). Null when Panchaka begins on Wednesday or Thursday (no dosha) or when no Panchaka touches this date."
2452324523
},
2452424524
"startsAt": {
2452524525
"type": "string",
2452624526
"nullable": true,
24527-
"example": null,
24528-
"description": "When the current Panchaka period started (Moon entered Dhanishta nakshatra). Null when not active. In requested timezone."
24527+
"example": "2026-06-06T19:03:00",
24528+
"description": "When the Panchaka period starts (Moon enters 300 degrees, Dhanishta 3rd pada). May predate this date when Panchaka is already running. Null when no Panchaka is in force or begins on this date. In requested timezone."
2452924529
},
2453024530
"endsAt": {
2453124531
"type": "string",
2453224532
"nullable": true,
24533-
"example": null,
24534-
"description": "When the current Panchaka period ends (Moon exits Revati nakshatra). Null when not active. In requested timezone."
24533+
"example": "2026-06-11T08:15:00",
24534+
"description": "When the Panchaka period ends (Moon exits Revati at 360 degrees), about five days after it starts. Null when no Panchaka. In requested timezone."
2453524535
}
2453624536
},
2453724537
"required": [
@@ -24540,35 +24540,35 @@
2454024540
"startsAt",
2454124541
"endsAt"
2454224542
],
24543-
"description": "Panchaka, inauspicious period when Moon transits nakshatras 23-27. Five types based on the specific nakshatra. Includes timing when active. Avoid major activities during Panchaka."
24543+
"description": "Panchaka, the inauspicious ~5-day window while the Moon transits the last five nakshatras (Dhanishta 3rd pada through Revati, 300 to 360 degrees sidereal). The dosha type depends on the weekday it begins; startsAt and endsAt report the period in force at sunrise or beginning later this day. Avoid major activities during Panchaka."
2454424544
},
2454524545
"bhadra": {
2454624546
"type": "object",
2454724547
"properties": {
2454824548
"active": {
2454924549
"type": "boolean",
2455024550
"example": false,
24551-
"description": "Whether Bhadra (Vishti Karana) is currently active. Bhadra is considered inauspicious for starting new ventures."
24551+
"description": "Whether Bhadra (Vishti Karana) is in force at sunrise, the panchang day reference moment. Can be false while startsAt and endsAt are populated when Bhadra begins later in the day."
2455224552
},
2455324553
"startsAt": {
2455424554
"type": "string",
2455524555
"nullable": true,
24556-
"example": null,
24557-
"description": "When the current Bhadra (Vishti) period started. Null when not active. In requested timezone."
24556+
"example": "2026-06-10T13:53:00",
24557+
"description": "When the Bhadra (Vishti) period that begins on this date starts. Null when no Bhadra begins on this date. In requested timezone."
2455824558
},
2455924559
"endsAt": {
2456024560
"type": "string",
2456124561
"nullable": true,
24562-
"example": null,
24563-
"description": "When the current Bhadra (Vishti) period ends. Null when not active. In requested timezone."
24562+
"example": "2026-06-11T00:58:00",
24563+
"description": "When the Bhadra (Vishti) period that begins on this date ends. May fall on the next calendar day. Null when no Bhadra begins on this date. In requested timezone."
2456424564
}
2456524565
},
2456624566
"required": [
2456724567
"active",
2456824568
"startsAt",
2456924569
"endsAt"
2457024570
],
24571-
"description": "Bhadra, occurs during Vishti Karana period. One of the 7 movable karanas, Vishti (also called Bhadra) is avoided for all auspicious activities. Includes timing when active."
24571+
"description": "Bhadra (Vishti Karana), the 7th movable karana, avoided for all auspicious activities. Bhadra recurs roughly every 3 to 5 days and lasts about half a tithi, so most occurrences begin after sunrise rather than at it. startsAt and endsAt report the Bhadra beginning on this date regardless of whether it is active at sunrise."
2457224572
},
2457324573
"transitions": {
2457424574
"type": "object",

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.27"
1+
VERSION = "0.1.28"

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)