@@ -920,6 +920,21 @@ const { data } = await roxy.humanDesign.calculateConnection({
920920 },
921921});
922922
923+ // Calculate Human Design Penta - Small-group BG5 operating system for three to five people
924+ const { data } = await roxy.humanDesign.calculatePenta({
925+ body: {
926+ members: [
927+ {
928+ date: '1990-07-15',
929+ time: '13:00:00',
930+ timezone: 5.5,
931+ latitude: 0,
932+ longitude: 0,
933+ },
934+ ],
935+ },
936+ });
937+
923938// Generate Human Design transit overlay - Current planetary activations on a natal bodygraph
924939const { data } = await roxy.humanDesign.generateTransit({
925940 body: {
@@ -995,6 +1010,17 @@ const { data } = await roxy.humanDesign.calculateProfile({
9951010 longitude: 0,
9961011 },
9971012});
1013+
1014+ // Calculate Human Design Variables - The four arrows and Color, Tone, Base substructure
1015+ const { data } = await roxy.humanDesign.calculateVariables({
1016+ body: {
1017+ date: '1990-07-15',
1018+ time: '13:00:00',
1019+ timezone: 5.5,
1020+ latitude: 0,
1021+ longitude: 0,
1022+ },
1023+ });
9981024```
9991025
10001026---
@@ -1018,6 +1044,7 @@ const { data } = await roxy.forecast.generateTimeline({
10181044 endDate: '2026-08-30',
10191045 domains: ['western', 'vedic', 'biorhythm'],
10201046 minSignificance: 0,
1047+ domainWeights: { vedic: 1.5, biorhythm: 0.5 },
10211048 },
10221049});
10231050
@@ -1051,6 +1078,38 @@ const { data } = await roxy.forecast.findSignificantDates({
10511078 endDate: '2026-08-30',
10521079 domains: ['western', 'vedic', 'biorhythm'],
10531080 minSignificance: 70,
1081+ domainWeights: { vedic: 1.5, biorhythm: 0.5 },
1082+ },
1083+ });
1084+
1085+ // Forecast digest - Pre-summarized next 24h, 7d, 30d, and 90d rollups
1086+ const { data } = await roxy.forecast.generateDigest({
1087+ body: {
1088+ birthData: {
1089+ date: '1990-07-15',
1090+ time: '13:30:00',
1091+ timezone: 5.5,
1092+ latitude: 0,
1093+ longitude: 0,
1094+ },
1095+ startDate: '2026-06-01',
1096+ domains: ['western', 'vedic', 'biorhythm'],
1097+ minSignificance: 0,
1098+ domainWeights: { vedic: 1.5, biorhythm: 0.5 },
1099+ top: 3,
1100+ },
1101+ });
1102+
1103+ // Solar return chart - Annual birthday forecast chart for a single subject
1104+ const { data } = await roxy.forecast.forecastSolarReturn({
1105+ body: {
1106+ date: '1990-07-15',
1107+ time: '14:30:00',
1108+ year: 2026,
1109+ latitude: 40.7128,
1110+ longitude: -74.006,
1111+ timezone: 5.5,
1112+ houseSystem: 'placidus',
10541113 },
10551114});
10561115```
0 commit comments