Skip to content

Commit 975e3c3

Browse files
release: v1.2.49
1 parent 4373b69 commit 975e3c3

5 files changed

Lines changed: 170 additions & 5 deletions

File tree

docs/llms-full.txt

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,6 +1032,7 @@ const { data } = await roxy.humanDesign.generateBodygraph({
10321032
timezone: 'America/New_York',
10331033
latitude: 0,
10341034
longitude: 0,
1035+
nodeType: 'true',
10351036
},
10361037
});
10371038

@@ -1044,13 +1045,15 @@ const { data } = await roxy.humanDesign.calculateConnection({
10441045
timezone: 'America/New_York',
10451046
latitude: 0,
10461047
longitude: 0,
1048+
nodeType: 'true',
10471049
},
10481050
personB: {
10491051
date: '1990-07-15',
10501052
time: '13:00:00',
10511053
timezone: 'America/New_York',
10521054
latitude: 0,
10531055
longitude: 0,
1056+
nodeType: 'true',
10541057
},
10551058
},
10561059
});
@@ -1065,6 +1068,7 @@ const { data } = await roxy.humanDesign.calculatePenta({
10651068
timezone: 'America/New_York',
10661069
latitude: 0,
10671070
longitude: 0,
1071+
nodeType: 'true',
10681072
},
10691073
],
10701074
},
@@ -1079,6 +1083,7 @@ const { data } = await roxy.humanDesign.generateTransit({
10791083
timezone: 'America/New_York',
10801084
latitude: 0,
10811085
longitude: 0,
1086+
nodeType: 'true',
10821087
},
10831088
date: '2026-05-23',
10841089
time: '12:00:00',
@@ -1093,6 +1098,7 @@ const { data } = await roxy.humanDesign.calculateType({
10931098
timezone: 'America/New_York',
10941099
latitude: 0,
10951100
longitude: 0,
1101+
nodeType: 'true',
10961102
},
10971103
});
10981104

@@ -1104,6 +1110,7 @@ const { data } = await roxy.humanDesign.calculateGates({
11041110
timezone: 'America/New_York',
11051111
latitude: 0,
11061112
longitude: 0,
1113+
nodeType: 'true',
11071114
},
11081115
});
11091116

@@ -1118,6 +1125,7 @@ const { data } = await roxy.humanDesign.calculateChannels({
11181125
timezone: 'America/New_York',
11191126
latitude: 0,
11201127
longitude: 0,
1128+
nodeType: 'true',
11211129
},
11221130
});
11231131

@@ -1129,6 +1137,7 @@ const { data } = await roxy.humanDesign.calculateCenters({
11291137
timezone: 'America/New_York',
11301138
latitude: 0,
11311139
longitude: 0,
1140+
nodeType: 'true',
11321141
},
11331142
});
11341143

@@ -1143,6 +1152,7 @@ const { data } = await roxy.humanDesign.calculateProfile({
11431152
timezone: 'America/New_York',
11441153
latitude: 0,
11451154
longitude: 0,
1155+
nodeType: 'true',
11461156
},
11471157
});
11481158

@@ -1154,6 +1164,7 @@ const { data } = await roxy.humanDesign.calculateVariables({
11541164
timezone: 'America/New_York',
11551165
latitude: 0,
11561166
longitude: 0,
1167+
nodeType: 'true',
11571168
},
11581169
});
11591170
```

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@roxyapi/sdk",
3-
"version": "1.2.48",
4-
"description": "TypeScript SDK for Roxy \u2014 the multi-domain spiritual intelligence API",
3+
"version": "1.2.49",
4+
"description": "TypeScript SDK for Roxy the multi-domain spiritual intelligence API",
55
"type": "module",
66
"exports": {
77
".": {

specs/openapi.json

Lines changed: 111 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@
15881588
"strength": {
15891589
"type": "number",
15901590
"example": 88,
1591-
"description": "Aspect strength percentage (0-100). Based on orb tightness 100 is exact."
1591+
"description": "Aspect strength percentage (0-100) based on orb tightness, where 100 is exact."
15921592
},
15931593
"nature": {
15941594
"type": "string",
@@ -52946,6 +52946,16 @@
5294652946
"default": 0,
5294752947
"example": 0,
5294852948
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
52949+
},
52950+
"nodeType": {
52951+
"type": "string",
52952+
"enum": [
52953+
"mean",
52954+
"true"
52955+
],
52956+
"default": "true",
52957+
"example": "true",
52958+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5294952959
}
5295052960
},
5295152961
"required": [
@@ -53634,6 +53644,16 @@
5363453644
"default": 0,
5363553645
"example": 0,
5363653646
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
53647+
},
53648+
"nodeType": {
53649+
"type": "string",
53650+
"enum": [
53651+
"mean",
53652+
"true"
53653+
],
53654+
"default": "true",
53655+
"example": "true",
53656+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5363753657
}
5363853658
},
5363953659
"required": [
@@ -53687,6 +53707,16 @@
5368753707
"default": 0,
5368853708
"example": 0,
5368953709
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
53710+
},
53711+
"nodeType": {
53712+
"type": "string",
53713+
"enum": [
53714+
"mean",
53715+
"true"
53716+
],
53717+
"default": "true",
53718+
"example": "true",
53719+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5369053720
}
5369153721
},
5369253722
"required": [
@@ -54179,6 +54209,16 @@
5417954209
"default": 0,
5418054210
"example": 0,
5418154211
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
54212+
},
54213+
"nodeType": {
54214+
"type": "string",
54215+
"enum": [
54216+
"mean",
54217+
"true"
54218+
],
54219+
"default": "true",
54220+
"example": "true",
54221+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5418254222
}
5418354223
},
5418454224
"required": [
@@ -54673,6 +54713,16 @@
5467354713
"default": 0,
5467454714
"example": 0,
5467554715
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
54716+
},
54717+
"nodeType": {
54718+
"type": "string",
54719+
"enum": [
54720+
"mean",
54721+
"true"
54722+
],
54723+
"default": "true",
54724+
"example": "true",
54725+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5467654726
}
5467754727
},
5467854728
"required": [
@@ -55196,6 +55246,16 @@
5519655246
"default": 0,
5519755247
"example": 0,
5519855248
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
55249+
},
55250+
"nodeType": {
55251+
"type": "string",
55252+
"enum": [
55253+
"mean",
55254+
"true"
55255+
],
55256+
"default": "true",
55257+
"example": "true",
55258+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5519955259
}
5520055260
},
5520155261
"required": [
@@ -55571,6 +55631,16 @@
5557155631
"default": 0,
5557255632
"example": 0,
5557355633
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
55634+
},
55635+
"nodeType": {
55636+
"type": "string",
55637+
"enum": [
55638+
"mean",
55639+
"true"
55640+
],
55641+
"default": "true",
55642+
"example": "true",
55643+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5557455644
}
5557555645
},
5557655646
"required": [
@@ -56412,6 +56482,16 @@
5641256482
"default": 0,
5641356483
"example": 0,
5641456484
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
56485+
},
56486+
"nodeType": {
56487+
"type": "string",
56488+
"enum": [
56489+
"mean",
56490+
"true"
56491+
],
56492+
"default": "true",
56493+
"example": "true",
56494+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5641556495
}
5641656496
},
5641756497
"required": [
@@ -56807,6 +56887,16 @@
5680756887
"default": 0,
5680856888
"example": 0,
5680956889
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
56890+
},
56891+
"nodeType": {
56892+
"type": "string",
56893+
"enum": [
56894+
"mean",
56895+
"true"
56896+
],
56897+
"default": "true",
56898+
"example": "true",
56899+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5681056900
}
5681156901
},
5681256902
"required": [
@@ -57519,6 +57609,16 @@
5751957609
"default": 0,
5752057610
"example": 0,
5752157611
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
57612+
},
57613+
"nodeType": {
57614+
"type": "string",
57615+
"enum": [
57616+
"mean",
57617+
"true"
57618+
],
57619+
"default": "true",
57620+
"example": "true",
57621+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5752257622
}
5752357623
},
5752457624
"required": [
@@ -57865,6 +57965,16 @@
5786557965
"default": 0,
5786657966
"example": 0,
5786757967
"description": "Birth longitude in decimal degrees. Optional and does not affect the bodygraph. Defaults to 0."
57968+
},
57969+
"nodeType": {
57970+
"type": "string",
57971+
"enum": [
57972+
"mean",
57973+
"true"
57974+
],
57975+
"default": "true",
57976+
"example": "true",
57977+
"description": "Lunar node convention for the North and South Node activations. Leave unset (or \"true\") for the standard Human Design chart: \"true\" is the osculating node used by professional Human Design software (HumanDesign.ai, Total Human Design) and is the value RoxyAPI verifies against. Pass \"mean\" to match a calculator that uses the smoothed mean node (the traditional Western-astrology default, common in free chart tools). The two agree on almost every chart; they diverge by up to ~1.75 degrees only when a node sits on a gate boundary, where the choice can move a node gate and, rarely, change the completed channels and therefore the type, authority, or definition. If another calculator shows a different type, it is likely using the mean node: pass \"mean\" to match it."
5786857978
}
5786957979
},
5787057980
"required": [

0 commit comments

Comments
 (0)