Skip to content

Commit 275d05c

Browse files
release: v0.1.10
1 parent b8fe51c commit 275d05c

3 files changed

Lines changed: 34 additions & 6 deletions

File tree

roxyapi.gen.go

Lines changed: 11 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specs/openapi.json

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4852,6 +4852,11 @@
48524852
"description": "Zodiac sign of the Ascendant.",
48534853
"type": "string"
48544854
},
4855+
"signLord": {
4856+
"description": "Ruling planet of the Ascendant sign (the rashi lord). In KP this is the weakest of the four lords, ranked below the star lord and sub lord, but it still sets the broad temperament of the Lagna.",
4857+
"example": "Venus",
4858+
"type": "string"
4859+
},
48554860
"starLord": {
48564861
"description": "KP star lord of the Ascendant position.",
48574862
"type": "string"
@@ -4868,6 +4873,7 @@
48684873
"required": [
48694874
"longitude",
48704875
"sign",
4876+
"signLord",
48714877
"nakshatra",
48724878
"nakshatraLord",
48734879
"pada",
@@ -5007,6 +5013,11 @@
50075013
"description": "Occupied house number (1-12) based on Placidus cusps.",
50085014
"type": "number"
50095015
},
5016+
"kpNumber": {
5017+
"description": "KP number (1-249) locating Ketu in the 249-division sub-lord scheme. Each of the 249 divisions maps to a unique sign, star lord and sub lord triple, so one integer pins the position precisely enough for KP event timing.",
5018+
"example": 194,
5019+
"type": "number"
5020+
},
50105021
"longitude": {
50115022
"description": "Sidereal longitude of Ketu (South Node). Always 180 degrees from Rahu.",
50125023
"type": "number"
@@ -5039,7 +5050,8 @@
50395050
"nakshatra",
50405051
"starLord",
50415052
"subLord",
5042-
"subSubLord"
5053+
"subSubLord",
5054+
"kpNumber"
50435055
],
50445056
"type": "object"
50455057
},
@@ -5050,6 +5062,11 @@
50505062
"description": "Occupied house number (1-12) based on Placidus cusps.",
50515063
"type": "number"
50525064
},
5065+
"kpNumber": {
5066+
"description": "KP number (1-249) locating Rahu in the 249-division sub-lord scheme. Each of the 249 divisions maps to a unique sign, star lord and sub lord triple, so one integer pins the position precisely enough for KP event timing.",
5067+
"example": 194,
5068+
"type": "number"
5069+
},
50535070
"longitude": {
50545071
"description": "Sidereal longitude of Rahu (North Node).",
50555072
"type": "number"
@@ -5082,7 +5099,8 @@
50825099
"nakshatra",
50835100
"starLord",
50845101
"subLord",
5085-
"subSubLord"
5102+
"subSubLord",
5103+
"kpNumber"
50865104
],
50875105
"type": "object"
50885106
}
@@ -42918,7 +42936,8 @@
4291842936
"type": "array"
4291942937
},
4292042938
"datetime": {
42921-
"description": "UTC datetime used for aspect calculation (ISO 8601).",
42939+
"description": "Chart time the aspects were calculated for, echoed back as the local wall clock of the request (ISO 8601, no offset). This is the `date` and `time` you sent, NOT a UTC instant: hold them fixed and vary `timezone` and every longitude moves while this field does not. Combine it with the `timezone` you sent to recover the absolute moment.",
42940+
"example": "1990-06-15T14:30:00",
4292242941
"type": "string"
4292342942
},
4292442943
"mutualAspects": {

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ package roxyapi
22

33
// Version is the published SDK version. It is sent as the X-SDK-Client header on
44
// every request. The release workflow rewrites this constant to the next git tag.
5-
const Version = "0.1.9"
5+
const Version = "0.1.10"

0 commit comments

Comments
 (0)