Skip to content

Commit 659d8ab

Browse files
release: v1.2.65
1 parent 7375c57 commit 659d8ab

5 files changed

Lines changed: 19 additions & 10 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@roxyapi/sdk",
3-
"version": "1.2.64",
3+
"version": "1.2.65",
44
"description": "TypeScript SDK for Roxy — the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {

specs/openapi.json

Lines changed: 9 additions & 4 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",
@@ -63346,12 +63346,17 @@
6334663346
"planet": {
6334763347
"type": "string",
6334863348
"example": "Sun",
63349-
"description": "Activating body whose substructure feeds this arrow. Determination and Motivation come from the Sun, Environment and Perspective from the North Node."
63349+
"description": "Activating body whose substructure feeds this arrow. Determination and Motivation come from the Sun, Environment and Perspective from the North Node. Always English, whatever the lang parameter says, so it stays safe to compare against in code and to key a glyph table on. Use planetLocalized for anything a reader sees."
63350+
},
63351+
"planetLocalized": {
63352+
"type": "string",
63353+
"example": "Sol",
63354+
"description": "Activating body name in the requested language, for display only. Present only when lang is set to a language other than English, since in English it would repeat its canonical partner field exactly. Never compare against this value, compare against the canonical field beside it."
6335063355
},
6335163356
"side": {
6335263357
"type": "string",
6335363358
"example": "design",
63354-
"description": "Chart side of the activation. Determination and Environment come from the design side, Perspective and Motivation from the personality side."
63359+
"description": "Chart side of the activation. Determination and Environment come from the design side, Perspective and Motivation from the personality side. Always English, whatever the lang parameter says, so it stays safe to compare against in code."
6335563360
}
6335663361
},
6335763362
"required": [

src/sdk.gen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ export class Astrology extends HeyApiClient {
356356
/**
357357
* Composite Chart - Midpoint relationship chart with interpretations
358358
*
359-
* 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.
359+
* 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.
360360
*/
361361
public generateCompositeChart<ThrowOnError extends boolean = false>(options?: Options<PostAstrologyCompositeChartData, ThrowOnError>): RequestResult<PostAstrologyCompositeChartResponses, PostAstrologyCompositeChartErrors, ThrowOnError> {
362362
return (options?.client ?? this.client).post<PostAstrologyCompositeChartResponses, PostAstrologyCompositeChartErrors, ThrowOnError>({

src/types.gen.ts

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12008,7 +12008,7 @@ export type PostAstrologyCompositeChartResponses = {
1200812008
};
1200912009
}>;
1201012010
/**
12011-
* Composite house cusps. Each house represents shared life areas in the relationship.
12011+
* Composite house cusps, each the midpoint of the two natal cusps. Each house represents shared life areas in the relationship.
1201212012
*/
1201312013
compositeHouses: Array<{
1201412014
/**
@@ -30737,11 +30737,15 @@ export type PostHumanDesignVariablesResponses = {
3073730737
*/
3073830738
activation: {
3073930739
/**
30740-
* Activating body whose substructure feeds this arrow. Determination and Motivation come from the Sun, Environment and Perspective from the North Node.
30740+
* Activating body whose substructure feeds this arrow. Determination and Motivation come from the Sun, Environment and Perspective from the North Node. Always English, whatever the lang parameter says, so it stays safe to compare against in code and to key a glyph table on. Use planetLocalized for anything a reader sees.
3074130741
*/
3074230742
planet: string;
3074330743
/**
30744-
* Chart side of the activation. Determination and Environment come from the design side, Perspective and Motivation from the personality side.
30744+
* Activating body name in the requested language, for display only. Present only when lang is set to a language other than English, since in English it would repeat its canonical partner field exactly. Never compare against this value, compare against the canonical field beside it.
30745+
*/
30746+
planetLocalized?: string;
30747+
/**
30748+
* Chart side of the activation. Determination and Environment come from the design side, Perspective and Motivation from the personality side. Always English, whatever the lang parameter says, so it stays safe to compare against in code.
3074530749
*/
3074630750
side: string;
3074730751
};

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = '1.2.64';
1+
export const VERSION = '1.2.65';

0 commit comments

Comments
 (0)