@subcortex-ai/sdk 0.3.10 → 0.3.11

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/dist/index.cjs CHANGED
@@ -1473,6 +1473,14 @@ var RelationshipsNamespace = class {
1473
1473
  `/api/v1/relationships/list/${enc4(tenantId)}`
1474
1474
  );
1475
1475
  }
1476
+ /** Retract (hard-delete) a relationship by id. Returns the removed relationship. */
1477
+ async retract(relationshipId, options) {
1478
+ const tenantId = options?.tenantId || this.tenantId;
1479
+ return this.http.post(
1480
+ `/api/v1/relationships/retract/${enc4(tenantId)}/${enc4(relationshipId)}`,
1481
+ {}
1482
+ );
1483
+ }
1476
1484
  };
1477
1485
  var AgentsNamespace = class {
1478
1486
  constructor(http, tenantId) {