Skip to content

Commit ff4610f

Browse files
release: v0.1.42
1 parent a6af782 commit ff4610f

6 files changed

Lines changed: 15 additions & 11 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.41"
87+
"version": "0.1.42"
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.41",
4+
"version": "0.1.42",
55
"description": "Codegen tooling for the roxyapi/sdk Composer package. Not published.",
66
"type": "module",
77
"scripts": {

specs/openapi.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23358,7 +23358,7 @@
2335823358
"Western Astrology"
2335923359
],
2336023360
"summary": "Composite Chart - Midpoint relationship chart with interpretations",
23361-
"description": "Generate a composite chart by calculating midpoints between two natal charts. The composite chart represents the relationship as a single entity, showing its core identity, emotional bond, communication style, and growth direction. Returns composite planetary positions, house cusps, Ascendant, Midheaven, aspects, and relationship interpretation. Composite chart API, midpoint chart calculator, relationship astrology, couple chart analysis.",
23361+
"description": "Generate a composite chart by calculating midpoints between two natal charts. The composite chart represents the relationship as a single entity, showing its core identity, emotional bond, communication style, and growth direction. Uses the midpoint method: planets, angles and house cusps are each the midpoint of the two natal values, so the Ascendant always sits on the first cusp. Returns composite planetary positions, house cusps, Ascendant, Midheaven, aspects, and relationship interpretation. Composite chart API, midpoint chart calculator, relationship astrology, couple chart analysis.",
2336223362
"security": [
2336323363
{
2336423364
"apiKey": []
@@ -23810,7 +23810,7 @@
2381023810
"longitude"
2381123811
]
2381223812
},
23813-
"description": "Composite house cusps. Each house represents shared life areas in the relationship."
23813+
"description": "Composite house cusps, each the midpoint of the two natal cusps. Each house represents shared life areas in the relationship."
2381423814
},
2381523815
"compositeAscendant": {
2381623816
"type": "object",

src/Generated/Requests/GenerateCompositeChartRequest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
*
2020
* Generate a composite chart by calculating midpoints between two natal charts. The composite
2121
* chart represents the relationship as a single entity, showing its core identity, emotional
22-
* bond, communication style, and growth direction. Returns composite planetary positions,
23-
* house cusps, Ascendant, Midheaven, aspects, and relationship interpretation. Composite chart
24-
* API, midpoint chart calculator, relationship astrology, couple chart analysis.
22+
* bond, communication style, and growth direction. Uses the midpoint method: planets, angles
23+
* and house cusps are each the midpoint of the two natal values, so the Ascendant always sits
24+
* on the first cusp. Returns composite planetary positions, house cusps, Ascendant, Midheaven,
25+
* aspects, and relationship interpretation. Composite chart API, midpoint chart calculator,
26+
* relationship astrology, couple chart analysis.
2527
*
2628
* POST /astrology/composite-chart
2729
*/

src/Generated/Resources/AstrologyResource.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -555,9 +555,11 @@ public function generateAstrocartography(
555555
*
556556
* Generate a composite chart by calculating midpoints between two natal charts. The composite
557557
* chart represents the relationship as a single entity, showing its core identity, emotional
558-
* bond, communication style, and growth direction. Returns composite planetary positions,
559-
* house cusps, Ascendant, Midheaven, aspects, and relationship interpretation. Composite chart
560-
* API, midpoint chart calculator, relationship astrology, couple chart analysis.
558+
* bond, communication style, and growth direction. Uses the midpoint method: planets, angles
559+
* and house cusps are each the midpoint of the two natal values, so the Ascendant always sits
560+
* on the first cusp. Returns composite planetary positions, house cusps, Ascendant, Midheaven,
561+
* aspects, and relationship interpretation. Composite chart API, midpoint chart calculator,
562+
* relationship astrology, couple chart analysis.
561563
*
562564
* POST /astrology/composite-chart
563565
*

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.41';
12+
public const VERSION = '0.1.42';
1313
}

0 commit comments

Comments
 (0)