Skip to content

Commit d110949

Browse files
release: v0.1.38
1 parent ed57866 commit d110949

24 files changed

Lines changed: 1224 additions & 271 deletions

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ $result = $roxy->location->searchCities(q: 'New York');
4747
| `$roxy->crystals` | Crystal healing API covering the most popular and widely-searched healing crystals and gemstones, from Amethyst and R... |
4848
| `$roxy->dreams` | Dream interpretation API with a 2,000+ symbol dream dictionary and psychological meanings covering animals, objects,... |
4949
| `$roxy->angelNumbers` | Angel numbers API with meanings for 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, and 75+ sequences covering eve... |
50-
| `$roxy->location` | Location and timezone API with city search and geocoding across 23,000+ cities in 240+ countries, returning latitude,... |
50+
| `$roxy->location` | Location and timezone API with city search and geocoding across 235,000+ cities in 240+ countries, returning latitude... |
5151
| `$roxy->usage` | Monitor your API usage, check rate limits, and track request consumption |
5252
| `$roxy->languages` | List the response languages accepted by the `lang` query parameter on every i18n-aware endpoint |
5353
<!-- END:DOMAINS -->

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Get an API key at [roxyapi.com/pricing](https://roxyapi.com/pricing). All endpoi
6666
| `$roxy->crystals` | Crystal healing API covering the most popular and widely-searched healing crystals and gemstones, from Amethyst and R... |
6767
| `$roxy->dreams` | Dream interpretation API with a 2,000+ symbol dream dictionary and psychological meanings covering animals, objects,... |
6868
| `$roxy->angelNumbers` | Angel numbers API with meanings for 111, 222, 333, 444, 555, 666, 777, 888, 999, 1111, and 75+ sequences covering eve... |
69-
| `$roxy->location` | Location and timezone API with city search and geocoding across 23,000+ cities in 240+ countries, returning latitude,... |
69+
| `$roxy->location` | Location and timezone API with city search and geocoding across 235,000+ cities in 240+ countries, returning latitude... |
7070
| `$roxy->usage` | Monitor your API usage, check rate limits, and track request consumption |
7171
| `$roxy->languages` | List the response languages accepted by the `lang` query parameter on every i18n-aware endpoint |
7272
<!-- END:DOMAINS -->

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.37"
87+
"version": "0.1.38"
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.37",
4+
"version": "0.1.38",
55
"description": "Codegen tooling for the roxyapi/sdk Composer package. Not published.",
66
"type": "module",
77
"scripts": {

specs/openapi.json

Lines changed: 852 additions & 129 deletions
Large diffs are not rendered by default.

src/Generated/Requests/CalculateArabicLotsRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ public function __construct(
3939
public readonly string $time,
4040
public readonly mixed $timezone,
4141
public readonly ?string $houseSystem = null,
42+
public readonly ?string $nodeType = null,
4243
public readonly ?string $lang = null,
4344
) {
4445
}
@@ -60,6 +61,9 @@ protected function defaultBody(): array
6061
}
6162
$body['latitude'] = $this->latitude;
6263
$body['longitude'] = $this->longitude;
64+
if ($this->nodeType !== null) {
65+
$body['nodeType'] = $this->nodeType;
66+
}
6367
$body['time'] = $this->time;
6468
$body['timezone'] = $this->timezone;
6569

src/Generated/Requests/CalculateTransitRequest.php

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@
1717
/**
1818
* Transit Analysis - Compare current planets to natal chart (Gochar)
1919
*
20-
* Analyze planetary transits (Gochar) over natal chart positions. Returns transiting planets
21-
* with their natal house positions, aspects to natal planets, and highlights key transits from
22-
* slow-moving planets (Jupiter, Saturn, Rahu, Ketu). Essential for timing predictions, event
23-
* forecasting, and understanding current planetary influences. Transit analysis API, gochar
24-
* calculator, vedic transit predictions.
20+
* Analyze planetary transits (Gochar) over natal chart positions. Each transiting graha comes
21+
* back with TWO whole-sign house numbers, because the two readings answer different questions:
22+
* houseFromMoon is counted from the natal Moon sign (Janma Rashi), which is the reference
23+
* classical Gochara uses, and natalHouse is counted from the Lagna. Also returns graha drishti
24+
* onto the natal grahas (7th for every graha, plus Mars 4th and 8th, Jupiter 5th and 9th,
25+
* Saturn 3rd and 10th), degree-based angular aspects with orbs, the Gochara Kaksha verdict,
26+
* and highlighted transits from the slow-moving grahas (Jupiter, Saturn, Rahu, Ketu).
27+
* Essential for timing predictions, event forecasting, and understanding current planetary
28+
* influences. Transit analysis API, gochar calculator, vedic transit predictions, Chandra
29+
* Lagna gochara, graha drishti.
2530
*
2631
* POST /vedic-astrology/transit
2732
*/

src/Generated/Requests/CalculateTransitsRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class CalculateTransitsRequest extends Request implements HasBody
3535
public function __construct(
3636
public readonly ?string $date = null,
3737
public readonly ?array $natalChart = null,
38+
public readonly ?string $nodeType = null,
3839
public readonly ?string $time = null,
3940
public readonly mixed $timezone = null,
4041
public readonly ?string $lang = null,
@@ -58,6 +59,9 @@ protected function defaultBody(): array
5859
if ($this->natalChart !== null) {
5960
$body['natalChart'] = $this->natalChart;
6061
}
62+
if ($this->nodeType !== null) {
63+
$body['nodeType'] = $this->nodeType;
64+
}
6165
if ($this->time !== null) {
6266
$body['time'] = $this->time;
6367
}

src/Generated/Requests/DetectAspectPatternsRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function __construct(
4141
public readonly float $longitude,
4242
public readonly string $time,
4343
public readonly mixed $timezone,
44+
public readonly ?string $nodeType = null,
4445
public readonly ?string $include = null,
4546
public readonly ?string $lang = null,
4647
public readonly ?string $strictOrbs = null,
@@ -61,6 +62,9 @@ protected function defaultBody(): array
6162
$body['date'] = $this->date;
6263
$body['latitude'] = $this->latitude;
6364
$body['longitude'] = $this->longitude;
65+
if ($this->nodeType !== null) {
66+
$body['nodeType'] = $this->nodeType;
67+
}
6468
$body['time'] = $this->time;
6569
$body['timezone'] = $this->timezone;
6670

src/Generated/Requests/GenerateAsteroidsRequest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ public function __construct(
3838
public readonly string $time,
3939
public readonly mixed $timezone,
4040
public readonly ?string $houseSystem = null,
41+
public readonly ?string $nodeType = null,
4142
public readonly ?string $lang = null,
4243
) {
4344
}
@@ -59,6 +60,9 @@ protected function defaultBody(): array
5960
}
6061
$body['latitude'] = $this->latitude;
6162
$body['longitude'] = $this->longitude;
63+
if ($this->nodeType !== null) {
64+
$body['nodeType'] = $this->nodeType;
65+
}
6266
$body['time'] = $this->time;
6367
$body['timezone'] = $this->timezone;
6468

0 commit comments

Comments
 (0)