Skip to content

Commit 0409c1d

Browse files
release: v0.1.33
1 parent 4250106 commit 0409c1d

6 files changed

Lines changed: 27 additions & 12 deletions

File tree

specs/openapi.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20592,7 +20592,7 @@
2059220592
"Western Astrology"
2059320593
],
2059420594
"summary": "Composite Chart - Midpoint relationship chart with interpretations",
20595-
"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.",
20595+
"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.",
2059620596
"security": [
2059720597
{
2059820598
"apiKey": []
@@ -21044,7 +21044,7 @@
2104421044
"longitude"
2104521045
]
2104621046
},
21047-
"description": "Composite house cusps. Each house represents shared life areas in the relationship."
21047+
"description": "Composite house cusps, each the midpoint of the two natal cusps. Each house represents shared life areas in the relationship."
2104821048
},
2104921049
"compositeAscendant": {
2105021050
"type": "object",
@@ -47711,12 +47711,17 @@
4771147711
"planet": {
4771247712
"type": "string",
4771347713
"example": "Sun",
47714-
"description": "Activating body whose substructure feeds this arrow. Determination and Motivation come from the Sun, Environment and Perspective from the North Node."
47714+
"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."
47715+
},
47716+
"planetLocalized": {
47717+
"type": "string",
47718+
"example": "Sol",
47719+
"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."
4771547720
},
4771647721
"side": {
4771747722
"type": "string",
4771847723
"example": "design",
47719-
"description": "Chart side of the activation. Determination and Environment come from the design side, Perspective and Motivation from the personality side."
47724+
"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."
4772047725
}
4772147726
},
4772247727
"required": [

src/Generated/Astrology/CompositeChart/CompositeChartPostResponse.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public partial class CompositeChartPostResponse : IAdditionalDataHolder, IParsab
3030
#else
3131
public global::RoxyApi.Astrology.CompositeChart.CompositeChartPostResponse_compositeAscendant CompositeAscendant { get; set; }
3232
#endif
33-
/// <summary>Composite house cusps. Each house represents shared life areas in the relationship.</summary>
33+
/// <summary>Composite house cusps, each the midpoint of the two natal cusps. Each house represents shared life areas in the relationship.</summary>
3434
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
3535
#nullable enable
3636
public List<global::RoxyApi.Astrology.CompositeChart.CompositeChartPostResponse_compositeHouses>? CompositeHouses { get; set; }

src/Generated/Astrology/CompositeChart/CompositeChartRequestBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public CompositeChartRequestBuilder(string rawUrl, IRequestAdapter requestAdapte
3434
{
3535
}
3636
/// <summary>
37-
/// 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.
37+
/// 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.
3838
/// </summary>
3939
/// <returns>A <see cref="global::RoxyApi.Astrology.CompositeChart.CompositeChartPostResponse"/></returns>
4040
/// <param name="body">The request body</param>
@@ -67,7 +67,7 @@ public CompositeChartRequestBuilder(string rawUrl, IRequestAdapter requestAdapte
6767
return await RequestAdapter.SendAsync<global::RoxyApi.Astrology.CompositeChart.CompositeChartPostResponse>(requestInfo, global::RoxyApi.Astrology.CompositeChart.CompositeChartPostResponse.CreateFromDiscriminatorValue, errorMapping, cancellationToken).ConfigureAwait(false);
6868
}
6969
/// <summary>
70-
/// 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.
70+
/// 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.
7171
/// </summary>
7272
/// <returns>A <see cref="RequestInformation"/></returns>
7373
/// <param name="body">The request body</param>
@@ -98,7 +98,7 @@ public RequestInformation ToPostRequestInformation(global::RoxyApi.Astrology.Com
9898
return new global::RoxyApi.Astrology.CompositeChart.CompositeChartRequestBuilder(rawUrl, RequestAdapter);
9999
}
100100
/// <summary>
101-
/// 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.
101+
/// 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.
102102
/// </summary>
103103
[global::System.CodeDom.Compiler.GeneratedCode("Kiota", "1.0.0")]
104104
public partial class CompositeChartRequestBuilderPostQueryParameters

src/Generated/HumanDesign/Variables/VariablesPostResponse_arrows_activation.cs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,23 @@ public partial class VariablesPostResponse_arrows_activation : IAdditionalDataHo
1515
{
1616
/// <summary>Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.</summary>
1717
public IDictionary<string, object> AdditionalData { get; set; }
18-
/// <summary>Activating body whose substructure feeds this arrow. Determination and Motivation come from the Sun, Environment and Perspective from the North Node.</summary>
18+
/// <summary>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.</summary>
1919
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
2020
#nullable enable
2121
public string? Planet { get; set; }
2222
#nullable restore
2323
#else
2424
public string Planet { get; set; }
2525
#endif
26-
/// <summary>Chart side of the activation. Determination and Environment come from the design side, Perspective and Motivation from the personality side.</summary>
26+
/// <summary>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.</summary>
27+
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
28+
#nullable enable
29+
public string? PlanetLocalized { get; set; }
30+
#nullable restore
31+
#else
32+
public string PlanetLocalized { get; set; }
33+
#endif
34+
/// <summary>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.</summary>
2735
#if NETSTANDARD2_1_OR_GREATER || NETCOREAPP3_1_OR_GREATER
2836
#nullable enable
2937
public string? Side { get; set; }
@@ -57,6 +65,7 @@ public virtual IDictionary<string, Action<IParseNode>> GetFieldDeserializers()
5765
return new Dictionary<string, Action<IParseNode>>
5866
{
5967
{ "planet", n => { Planet = n.GetStringValue(); } },
68+
{ "planetLocalized", n => { PlanetLocalized = n.GetStringValue(); } },
6069
{ "side", n => { Side = n.GetStringValue(); } },
6170
};
6271
}
@@ -68,6 +77,7 @@ public virtual void Serialize(ISerializationWriter writer)
6877
{
6978
if(ReferenceEquals(writer, null)) throw new ArgumentNullException(nameof(writer));
7079
writer.WriteStringValue("planet", Planet);
80+
writer.WriteStringValue("planetLocalized", PlanetLocalized);
7181
writer.WriteStringValue("side", Side);
7282
writer.WriteAdditionalData(AdditionalData);
7383
}

src/Generated/kiota-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"descriptionHash": "A2B278A32C7796A0FB6BB5DB4F850FB5C425DC5EEF173DF463E198CE8FAEC7661885A441525E7C0437ECA58990DAE9C61FFE329B71A7D11BCD5D625FFF819C0C",
2+
"descriptionHash": "E96CD76761CA72AFF1F687D7958EAB03EDD1739E4BF0EBB00914F80B4D312D14B6F4FF1EA8AFFC4457390808C05852E5A34122E4A31724CA835162AEA0235ED8",
33
"descriptionLocation": "../../specs/openapi.json",
44
"lockFileVersion": "1.0.0",
55
"kiotaVersion": "1.34.1",

src/RoxyApi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<PropertyGroup Label="Package">
1414
<PackageId>RoxyApi.Sdk</PackageId>
15-
<Version>0.1.32</Version>
15+
<Version>0.1.33</Version>
1616
<Authors>RoxyAPI</Authors>
1717
<Company>RoxyAPI</Company>
1818
<Product>RoxyAPI .NET SDK</Product>

0 commit comments

Comments
 (0)