Entities resource
conduit.entities.* is not part of the stable SDK surface anymore.
Current recommendation​
- Keep stable SDK usage focused on
reports+webhooks. - Use
conduitClient.primitives.entities.get(...),list(...), andupdate(...)for stable entity-management workflows. - Use
conduitClient.matching.*for stable matching workflows.
Migration​
const entity = await conduitClient.primitives.entities.get("ent_abc123")
const page = await conduitClient.primitives.entities.list({ limit: 20 })
await conduitClient.primitives.entities.update(entity.id, { label: "candidate:john-doe" })