Skip to content

Commit 40e8200

Browse files
release: v0.1.25
1 parent 7889ba9 commit 40e8200

4 files changed

Lines changed: 25 additions & 6 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@
8484
"/tests"
8585
]
8686
},
87-
"version": "0.1.24"
87+
"version": "0.1.25"
8888
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "roxyapi-sdk-php-tooling",
33
"private": true,
4-
"version": "0.1.24",
4+
"version": "0.1.25",
55
"description": "Codegen tooling for the roxyapi/sdk Composer package. Not published.",
66
"type": "module",
77
"scripts": {

specs/openapi.json

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7746,6 +7746,11 @@
77467746
"type": "string",
77477747
"description": "Zodiac sign of the Ascendant."
77487748
},
7749+
"signLord": {
7750+
"type": "string",
7751+
"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.",
7752+
"example": "Venus"
7753+
},
77497754
"nakshatra": {
77507755
"type": "string",
77517756
"description": "Nakshatra (star) of the Ascendant."
@@ -7778,6 +7783,7 @@
77787783
"required": [
77797784
"longitude",
77807785
"sign",
7786+
"signLord",
77817787
"nakshatra",
77827788
"nakshatraLord",
77837789
"pada",
@@ -7958,6 +7964,11 @@
79587964
"subSubLord": {
79597965
"type": "string",
79607966
"description": "KP sub-sub lord (SSL) of Rahu."
7967+
},
7968+
"kpNumber": {
7969+
"type": "number",
7970+
"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.",
7971+
"example": 194
79617972
}
79627973
},
79637974
"required": [
@@ -7967,7 +7978,8 @@
79677978
"nakshatra",
79687979
"starLord",
79697980
"subLord",
7970-
"subSubLord"
7981+
"subSubLord",
7982+
"kpNumber"
79717983
],
79727984
"description": "Rahu (North Lunar Node), shadow planet, always retrograde, acts as agent of its sign lord and star lord."
79737985
},
@@ -8001,6 +8013,11 @@
80018013
"subSubLord": {
80028014
"type": "string",
80038015
"description": "KP sub-sub lord (SSL) of Ketu."
8016+
},
8017+
"kpNumber": {
8018+
"type": "number",
8019+
"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.",
8020+
"example": 194
80048021
}
80058022
},
80068023
"required": [
@@ -8010,7 +8027,8 @@
80108027
"nakshatra",
80118028
"starLord",
80128029
"subLord",
8013-
"subSubLord"
8030+
"subSubLord",
8031+
"kpNumber"
80148032
],
80158033
"description": "Ketu (South Lunar Node), shadow planet, spiritual karmic indicator."
80168034
}
@@ -35195,7 +35213,8 @@
3519535213
"properties": {
3519635214
"datetime": {
3519735215
"type": "string",
35198-
"description": "UTC datetime used for aspect calculation (ISO 8601)."
35216+
"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.",
35217+
"example": "1990-06-15T14:30:00"
3519935218
},
3520035219
"planets": {
3520135220
"type": "array",

src/Version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
*/
1010
final class Version
1111
{
12-
public const VERSION = '0.1.24';
12+
public const VERSION = '0.1.25';
1313
}

0 commit comments

Comments
 (0)