trucontext 0.8.5 → 0.8.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trucontext",
3
- "version": "0.8.5",
3
+ "version": "0.8.6",
4
4
  "description": "TruContext CLI — contextual memory for AI applications",
5
5
  "type": "module",
6
6
  "bin": {
@@ -16,7 +16,7 @@ export async function relationshipTypesListCommand(options) {
16
16
  const path = `/apps/${appId}/relationship-types${qs ? `?${qs}` : ''}`;
17
17
 
18
18
  const res = await controlPlane('GET', path);
19
- const types = res.data;
19
+ const types = res.data.types;
20
20
 
21
21
  if (Array.isArray(types) && types.length === 0) {
22
22
  console.log(chalk.yellow('No relationship types found.'));